
    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_54dacb5e7eb48f7c5e1ed635.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_aa5b2479b1e05f6e9b28ce8b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977000;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_8b7da1983e3abc1cdde557bc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_8060f58b3032d80710334642.woff')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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_fad9a6205b48f2adf175d64b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.763000;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_7a58d758121c5ef2e980d384.woff')format("woff");}.ff6{font-family:ff6;line-height:0.711000;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_c8b8db838fea9594904ab291.woff')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_54a8a737131d4af715c602a2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730469;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_53a3dfab61f9b0cdc0f1bbc3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.968262;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_bff18e20712c0842934c6951.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063000;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_527e9f26f5ad50b00f0d92f5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.017000;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_67250155757e29b536823588.woff')format("woff");}.ffc{font-family:ffc;line-height:0.633000;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_fce8defb26e57fc46cfd8d06.woff')format("woff");}.ffd{font-family:ffd;line-height:1.032000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ac0e4295f919187447f96144.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f8514e6f67e89296671d4bd5.woff')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bcce7db509199a40422072d5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.951000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375050,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.375054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375054,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-37.080360px;}
.v5{vertical-align:-12.246000px;}
.v9{vertical-align:-7.824000px;}
.v2{vertical-align:-3.060000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.020000px;}
.v1{vertical-align:6.126000px;}
.v7{vertical-align:19.051354px;}
.v6{vertical-align:21.086400px;}
.v3{vertical-align:23.460000px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006000px;}
.ls1c{letter-spacing:0.015411px;}
.ls1f{letter-spacing:0.021411px;}
.lsf{letter-spacing:0.024000px;}
.ls23{letter-spacing:0.024120px;}
.ls7{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.044400px;}
.ls17{letter-spacing:0.060000px;}
.ls5c{letter-spacing:0.084000px;}
.ls48{letter-spacing:0.085270px;}
.lsb{letter-spacing:0.120928px;}
.lse{letter-spacing:0.174000px;}
.ls33{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.186000px;}
.ls6c{letter-spacing:0.189000px;}
.ls55{letter-spacing:0.270097px;}
.ls22{letter-spacing:0.280196px;}
.ls1d{letter-spacing:0.306000px;}
.ls26{letter-spacing:0.474000px;}
.ls54{letter-spacing:0.510000px;}
.ls3f{letter-spacing:0.511941px;}
.ls51{letter-spacing:0.546000px;}
.ls3c{letter-spacing:0.576000px;}
.ls6f{letter-spacing:0.583200px;}
.ls3a{letter-spacing:0.654000px;}
.ls5e{letter-spacing:0.744000px;}
.ls60{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.888000px;}
.ls1b{letter-spacing:0.966000px;}
.ls3b{letter-spacing:1.008000px;}
.ls67{letter-spacing:1.020600px;}
.ls44{letter-spacing:1.158000px;}
.lsa{letter-spacing:1.194000px;}
.ls5b{letter-spacing:1.242000px;}
.ls21{letter-spacing:1.266000px;}
.ls5f{letter-spacing:1.692000px;}
.ls3d{letter-spacing:1.860000px;}
.ls45{letter-spacing:13.100413px;}
.ls2d{letter-spacing:14.070928px;}
.ls6e{letter-spacing:14.293800px;}
.ls35{letter-spacing:14.406928px;}
.ls5a{letter-spacing:14.412928px;}
.lsd{letter-spacing:14.742928px;}
.ls2b{letter-spacing:14.748928px;}
.ls3e{letter-spacing:14.804413px;}
.ls2a{letter-spacing:14.896897px;}
.ls10{letter-spacing:15.426928px;}
.ls11{letter-spacing:15.660000px;}
.ls13{letter-spacing:15.666000px;}
.ls4c{letter-spacing:15.763003px;}
.ls12{letter-spacing:16.044000px;}
.ls49{letter-spacing:16.087465px;}
.ls4b{letter-spacing:16.103799px;}
.ls1{letter-spacing:16.104928px;}
.ls27{letter-spacing:16.109128px;}
.ls0{letter-spacing:16.110928px;}
.ls28{letter-spacing:16.262497px;}
.ls2c{letter-spacing:16.446928px;}
.ls30{letter-spacing:16.592497px;}
.ls59{letter-spacing:16.844413px;}
.ls2e{letter-spacing:17.124928px;}
.ls6{letter-spacing:17.130928px;}
.ls66{letter-spacing:17.695800px;}
.ls37{letter-spacing:17.808928px;}
.ls6d{letter-spacing:18.030600px;}
.ls64{letter-spacing:18.036000px;}
.ls34{letter-spacing:18.150928px;}
.ls4d{letter-spacing:18.302497px;}
.ls42{letter-spacing:18.486928px;}
.ls3{letter-spacing:18.828928px;}
.ls39{letter-spacing:18.834928px;}
.ls50{letter-spacing:18.980497px;}
.ls5{letter-spacing:19.062000px;}
.ls2{letter-spacing:19.170928px;}
.ls46{letter-spacing:19.330196px;}
.ls47{letter-spacing:19.407600px;}
.ls4{letter-spacing:19.446000px;}
.ls2f{letter-spacing:19.848928px;}
.ls63{letter-spacing:20.124000px;}
.ls62{letter-spacing:20.130000px;}
.ls68{letter-spacing:20.190928px;}
.ls41{letter-spacing:20.526928px;}
.ls40{letter-spacing:20.874928px;}
.ls14{letter-spacing:21.204928px;}
.ls29{letter-spacing:21.552928px;}
.ls65{letter-spacing:22.118400px;}
.ls16{letter-spacing:22.146000px;}
.ls4e{letter-spacing:23.251528px;}
.ls4f{letter-spacing:23.252128px;}
.ls20{letter-spacing:23.487411px;}
.ls6b{letter-spacing:24.159600px;}
.ls24{letter-spacing:24.270928px;}
.ls5d{letter-spacing:25.290928px;}
.ls36{letter-spacing:26.310928px;}
.ls56{letter-spacing:26.316928px;}
.ls19{letter-spacing:26.804497px;}
.ls43{letter-spacing:27.672928px;}
.ls57{letter-spacing:27.824497px;}
.ls1e{letter-spacing:29.034928px;}
.lsc{letter-spacing:30.054928px;}
.ls32{letter-spacing:30.390928px;}
.ls31{letter-spacing:30.732928px;}
.ls38{letter-spacing:30.738928px;}
.ls58{letter-spacing:31.410928px;}
.ls6a{letter-spacing:33.350400px;}
.ls69{letter-spacing:33.420600px;}
.ls18{letter-spacing:33.929086px;}
.ls53{letter-spacing:35.306497px;}
.ls52{letter-spacing:36.516928px;}
.ls61{letter-spacing:38.082000px;}
.ls4a{letter-spacing:197.372330px;}
.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;}
}
.ws0{word-spacing:-54.345280px;}
.ws212{word-spacing:-52.101000px;}
.ws1{word-spacing:-50.377504px;}
.ws1fe{word-spacing:-31.222800px;}
.ws1f9{word-spacing:-31.059000px;}
.wse8{word-spacing:-29.766000px;}
.ws1ff{word-spacing:-28.163700px;}
.ws1fb{word-spacing:-28.135200px;}
.ws210{word-spacing:-28.009800px;}
.ws59{word-spacing:-27.071662px;}
.ws21a{word-spacing:-26.838000px;}
.ws8{word-spacing:-26.746200px;}
.wsb{word-spacing:-26.676000px;}
.ws254{word-spacing:-25.704000px;}
.ws5c{word-spacing:-20.304000px;}
.ws1b9{word-spacing:-15.000000px;}
.ws204{word-spacing:-14.748000px;}
.ws205{word-spacing:-14.580000px;}
.ws20d{word-spacing:-14.574000px;}
.wsc1{word-spacing:-14.340000px;}
.ws169{word-spacing:-13.932000px;}
.ws2{word-spacing:-13.213098px;}
.ws3{word-spacing:-13.205298px;}
.ws4{word-spacing:-13.057100px;}
.ws16f{word-spacing:-12.984000px;}
.ws6{word-spacing:-12.706102px;}
.ws5{word-spacing:-12.690502px;}
.ws233{word-spacing:-12.636000px;}
.ws7{word-spacing:-12.620303px;}
.wsa{word-spacing:-12.598200px;}
.ws14b{word-spacing:-12.231000px;}
.ws266{word-spacing:-11.831400px;}
.ws253{word-spacing:-11.307600px;}
.ws24f{word-spacing:-10.843200px;}
.ws1ca{word-spacing:-10.189800px;}
.ws231{word-spacing:-10.032000px;}
.ws208{word-spacing:-9.978000px;}
.ws20a{word-spacing:-9.912000px;}
.ws200{word-spacing:-9.810000px;}
.ws232{word-spacing:-9.804000px;}
.ws16e{word-spacing:-9.690000px;}
.ws170{word-spacing:-9.654000px;}
.ws28{word-spacing:-9.607657px;}
.ws9{word-spacing:-9.309600px;}
.ws5b{word-spacing:-8.981280px;}
.ws5a{word-spacing:-8.928360px;}
.ws201{word-spacing:-8.874000px;}
.ws34{word-spacing:-8.862000px;}
.ws202{word-spacing:-8.790000px;}
.ws20b{word-spacing:-8.772000px;}
.ws209{word-spacing:-8.760000px;}
.ws20e{word-spacing:-8.682000px;}
.ws206{word-spacing:-8.676000px;}
.ws35{word-spacing:-8.664000px;}
.ws14e{word-spacing:-8.646733px;}
.ws5e{word-spacing:-8.467200px;}
.ws203{word-spacing:-8.466000px;}
.ws20c{word-spacing:-8.424000px;}
.ws25c{word-spacing:-7.992000px;}
.ws246{word-spacing:-7.862400px;}
.ws24b{word-spacing:-7.803000px;}
.ws26a{word-spacing:-7.797600px;}
.ws22f{word-spacing:-7.781400px;}
.ws258{word-spacing:-7.776000px;}
.ws228{word-spacing:-7.754400px;}
.ws262{word-spacing:-7.657200px;}
.ws223{word-spacing:-7.570800px;}
.ws219{word-spacing:-7.500600px;}
.ws5d{word-spacing:-6.152400px;}
.wsd{word-spacing:-5.524731px;}
.wsf{word-spacing:-5.404732px;}
.ws21e{word-spacing:-3.299400px;}
.ws248{word-spacing:-1.533600px;}
.ws1ae{word-spacing:-0.450000px;}
.ws1ad{word-spacing:-0.408000px;}
.ws10d{word-spacing:-0.366000px;}
.ws1ab{word-spacing:-0.360000px;}
.ws148{word-spacing:-0.348000px;}
.ws123{word-spacing:-0.342000px;}
.ws65{word-spacing:-0.312000px;}
.ws31{word-spacing:-0.276000px;}
.ws150{word-spacing:-0.270000px;}
.ws7c{word-spacing:-0.264000px;}
.ws10e{word-spacing:-0.252000px;}
.ws1b7{word-spacing:-0.216000px;}
.ws14f{word-spacing:-0.210000px;}
.ws122{word-spacing:-0.186000px;}
.ws10f{word-spacing:-0.174000px;}
.ws17{word-spacing:-0.144000px;}
.wsd2{word-spacing:-0.126000px;}
.ws1ac{word-spacing:-0.114000px;}
.ws1d0{word-spacing:-0.108000px;}
.ws15e{word-spacing:-0.066000px;}
.ws124{word-spacing:-0.048000px;}
.ws256{word-spacing:-0.027000px;}
.wsd1{word-spacing:-0.018000px;}
.ws5f{word-spacing:0.000000px;}
.ws33{word-spacing:0.042000px;}
.ws16a{word-spacing:0.086400px;}
.ws259{word-spacing:0.091800px;}
.ws8c{word-spacing:0.126000px;}
.ws10{word-spacing:0.156000px;}
.ws243{word-spacing:0.189000px;}
.ws30{word-spacing:0.198000px;}
.wsa1{word-spacing:0.204000px;}
.ws92{word-spacing:0.240000px;}
.wsc2{word-spacing:0.288000px;}
.ws81{word-spacing:0.444000px;}
.ws107{word-spacing:0.468000px;}
.ws1c3{word-spacing:0.474000px;}
.ws108{word-spacing:0.510000px;}
.wsee{word-spacing:0.540000px;}
.wscc{word-spacing:0.552000px;}
.wscb{word-spacing:0.618000px;}
.ws1e9{word-spacing:0.624000px;}
.wscd{word-spacing:0.630000px;}
.ws22c{word-spacing:0.637200px;}
.ws267{word-spacing:0.653400px;}
.ws18c{word-spacing:0.678000px;}
.ws265{word-spacing:0.707400px;}
.ws1d5{word-spacing:0.708000px;}
.ws18b{word-spacing:0.726000px;}
.wsc0{word-spacing:0.756000px;}
.wsa2{word-spacing:0.804000px;}
.wsa5{word-spacing:0.810000px;}
.wsf2{word-spacing:0.822000px;}
.ws1f0{word-spacing:0.870000px;}
.ws22b{word-spacing:0.874800px;}
.wsa6{word-spacing:0.876000px;}
.ws1c2{word-spacing:0.894000px;}
.ws4f{word-spacing:0.906000px;}
.wsc9{word-spacing:0.954000px;}
.wsdc{word-spacing:0.966000px;}
.wsb8{word-spacing:0.978000px;}
.ws9a{word-spacing:0.984000px;}
.ws22a{word-spacing:0.988200px;}
.wsdb{word-spacing:1.020000px;}
.ws9c{word-spacing:1.080000px;}
.ws47{word-spacing:1.098000px;}
.ws4c{word-spacing:1.104000px;}
.ws137{word-spacing:1.218000px;}
.ws130{word-spacing:1.230000px;}
.ws1c7{word-spacing:1.242000px;}
.ws9e{word-spacing:1.248000px;}
.ws9b{word-spacing:1.254000px;}
.ws220{word-spacing:1.328400px;}
.ws252{word-spacing:1.339200px;}
.ws4b{word-spacing:1.344000px;}
.ws255{word-spacing:1.350000px;}
.ws9d{word-spacing:1.440000px;}
.ws46{word-spacing:1.488000px;}
.ws16{word-spacing:1.500000px;}
.ws1c{word-spacing:1.560000px;}
.wsff{word-spacing:1.590000px;}
.wsfe{word-spacing:1.608000px;}
.wse2{word-spacing:1.620000px;}
.ws1d{word-spacing:1.644000px;}
.ws14c{word-spacing:1.668600px;}
.ws51{word-spacing:1.674000px;}
.ws1e{word-spacing:1.704000px;}
.ws1f{word-spacing:1.722000px;}
.ws138{word-spacing:1.758000px;}
.ws100{word-spacing:1.764000px;}
.ws19d{word-spacing:1.824000px;}
.ws37{word-spacing:1.830000px;}
.ws50{word-spacing:1.872000px;}
.ws20{word-spacing:1.902000px;}
.ws22{word-spacing:1.908000px;}
.ws24e{word-spacing:1.911600px;}
.wsfd{word-spacing:1.926000px;}
.ws1b{word-spacing:1.980000px;}
.ws1b5{word-spacing:1.998000px;}
.ws10c{word-spacing:2.082000px;}
.ws21{word-spacing:2.088000px;}
.ws131{word-spacing:2.130000px;}
.ws14a{word-spacing:2.190000px;}
.ws141{word-spacing:2.244000px;}
.ws118{word-spacing:2.286000px;}
.wsa8{word-spacing:2.298000px;}
.ws2e{word-spacing:2.304000px;}
.ws61{word-spacing:2.322000px;}
.ws1f7{word-spacing:2.400000px;}
.ws117{word-spacing:2.424000px;}
.ws1ba{word-spacing:2.454000px;}
.ws261{word-spacing:2.478600px;}
.ws1c5{word-spacing:2.502000px;}
.wsd4{word-spacing:2.556000px;}
.ws2f{word-spacing:2.580000px;}
.wsd3{word-spacing:2.604000px;}
.ws109{word-spacing:2.616000px;}
.ws197{word-spacing:2.730000px;}
.ws111{word-spacing:2.760000px;}
.wsd7{word-spacing:2.784000px;}
.ws88{word-spacing:2.868000px;}
.ws1b8{word-spacing:2.916000px;}
.ws18{word-spacing:2.946000px;}
.ws112{word-spacing:2.952000px;}
.ws73{word-spacing:2.970000px;}
.ws158{word-spacing:3.006000px;}
.ws196{word-spacing:3.012000px;}
.ws74{word-spacing:3.030000px;}
.ws1bb{word-spacing:3.042000px;}
.ws215{word-spacing:3.054000px;}
.ws1ef{word-spacing:3.066000px;}
.ws1c6{word-spacing:3.126000px;}
.ws1d3{word-spacing:3.150000px;}
.ws1b2{word-spacing:3.180000px;}
.wsa7{word-spacing:3.258000px;}
.ws129{word-spacing:3.264000px;}
.ws128{word-spacing:3.270000px;}
.wse6{word-spacing:3.288600px;}
.ws1d1{word-spacing:3.312000px;}
.ws1d2{word-spacing:3.360000px;}
.ws106{word-spacing:3.420000px;}
.wse5{word-spacing:3.461400px;}
.ws84{word-spacing:3.468000px;}
.ws18d{word-spacing:3.480000px;}
.ws25a{word-spacing:3.488400px;}
.ws3d{word-spacing:3.516000px;}
.ws18e{word-spacing:3.528000px;}
.ws18f{word-spacing:3.606000px;}
.ws156{word-spacing:3.624000px;}
.ws120{word-spacing:3.690000px;}
.ws17f{word-spacing:3.702000px;}
.ws250{word-spacing:3.709800px;}
.ws1a1{word-spacing:3.714000px;}
.ws121{word-spacing:3.744000px;}
.ws1cb{word-spacing:3.753000px;}
.ws1cc{word-spacing:3.801600px;}
.ws180{word-spacing:3.804000px;}
.ws1d6{word-spacing:3.816000px;}
.ws79{word-spacing:3.834000px;}
.ws14{word-spacing:3.864000px;}
.ws1d7{word-spacing:3.888000px;}
.ws1cd{word-spacing:3.893400px;}
.ws15c{word-spacing:4.026000px;}
.ws1ec{word-spacing:4.092000px;}
.ws162{word-spacing:4.194000px;}
.ws163{word-spacing:4.206000px;}
.wsf7{word-spacing:4.230000px;}
.ws173{word-spacing:4.247947px;}
.ws57{word-spacing:4.249800px;}
.ws15d{word-spacing:4.278000px;}
.ws2b{word-spacing:4.284000px;}
.ws172{word-spacing:4.291146px;}
.ws11d{word-spacing:4.296000px;}
.ws171{word-spacing:4.343946px;}
.wsaf{word-spacing:4.356000px;}
.ws3b{word-spacing:4.362000px;}
.ws7f{word-spacing:4.368000px;}
.wsca{word-spacing:4.380000px;}
.ws234{word-spacing:4.401545px;}
.ws13f{word-spacing:4.410000px;}
.ws238{word-spacing:4.415945px;}
.ws13e{word-spacing:4.422000px;}
.ws25{word-spacing:4.428000px;}
.ws7e{word-spacing:4.458000px;}
.ws189{word-spacing:4.464000px;}
.ws23c{word-spacing:4.473544px;}
.ws236{word-spacing:4.483144px;}
.ws177{word-spacing:4.497544px;}
.ws18a{word-spacing:4.542000px;}
.ws157{word-spacing:4.620000px;}
.ws24{word-spacing:4.662000px;}
.ws179{word-spacing:4.679942px;}
.ws178{word-spacing:4.684741px;}
.ws2c{word-spacing:4.704000px;}
.ws235{word-spacing:4.713541px;}
.ws13{word-spacing:4.716000px;}
.ws23{word-spacing:4.722000px;}
.ws2d{word-spacing:4.752000px;}
.ws21b{word-spacing:4.800600px;}
.ws99{word-spacing:4.848000px;}
.ws25f{word-spacing:4.854600px;}
.ws53{word-spacing:4.865400px;}
.ws26c{word-spacing:4.870800px;}
.ws1ce{word-spacing:4.876200px;}
.ws188{word-spacing:4.902000px;}
.ws242{word-spacing:4.919400px;}
.ws25b{word-spacing:4.924800px;}
.ws17b{word-spacing:4.930200px;}
.ws269{word-spacing:4.935600px;}
.ws187{word-spacing:4.944000px;}
.ws58{word-spacing:4.946400px;}
.ws24c{word-spacing:4.951800px;}
.ws245{word-spacing:4.957200px;}
.ws55{word-spacing:4.962600px;}
.ws14d{word-spacing:4.973400px;}
.wsd8{word-spacing:4.986000px;}
.wsc3{word-spacing:5.052000px;}
.ws222{word-spacing:5.065200px;}
.ws17a{word-spacing:5.081400px;}
.ws224{word-spacing:5.092200px;}
.ws230{word-spacing:5.097600px;}
.ws21f{word-spacing:5.113800px;}
.ws10a{word-spacing:5.172000px;}
.wse7{word-spacing:5.178600px;}
.ws15a{word-spacing:5.190000px;}
.ws229{word-spacing:5.286600px;}
.ws10b{word-spacing:5.328000px;}
.ws227{word-spacing:5.340600px;}
.wsb0{word-spacing:5.358000px;}
.ws22e{word-spacing:5.362200px;}
.ws86{word-spacing:5.370000px;}
.ws85{word-spacing:5.382000px;}
.ws8d{word-spacing:5.388000px;}
.ws2a{word-spacing:5.394000px;}
.ws66{word-spacing:5.406000px;}
.ws20f{word-spacing:5.418000px;}
.ws44{word-spacing:5.448000px;}
.wsb1{word-spacing:5.454000px;}
.ws32{word-spacing:5.460000px;}
.wsda{word-spacing:5.466000px;}
.ws1a4{word-spacing:5.472000px;}
.wsf1{word-spacing:5.484000px;}
.ws207{word-spacing:5.514000px;}
.ws77{word-spacing:5.532000px;}
.ws110{word-spacing:5.538000px;}
.ws217{word-spacing:5.544000px;}
.ws139{word-spacing:5.550000px;}
.ws1e4{word-spacing:5.562000px;}
.ws116{word-spacing:5.628000px;}
.wsfc{word-spacing:5.646000px;}
.ws1b3{word-spacing:5.664000px;}
.ws6a{word-spacing:5.670000px;}
.wsfb{word-spacing:5.736000px;}
.ws27{word-spacing:5.742000px;}
.ws26{word-spacing:5.748000px;}
.ws168{word-spacing:5.754000px;}
.ws29{word-spacing:5.760000px;}
.ws69{word-spacing:5.790000px;}
.ws6d{word-spacing:5.976000px;}
.ws159{word-spacing:5.982000px;}
.ws1c4{word-spacing:6.018000px;}
.wsf5{word-spacing:6.066000px;}
.ws6e{word-spacing:6.084000px;}
.ws1e0{word-spacing:6.120000px;}
.ws16b{word-spacing:6.129000px;}
.ws16c{word-spacing:6.166800px;}
.ws16d{word-spacing:6.199200px;}
.ws8b{word-spacing:6.210000px;}
.ws1a5{word-spacing:6.258000px;}
.ws1bf{word-spacing:6.276000px;}
.wsa4{word-spacing:6.300000px;}
.ws155{word-spacing:6.324000px;}
.wsa3{word-spacing:6.336000px;}
.ws15{word-spacing:6.438000px;}
.ws13a{word-spacing:6.492000px;}
.ws190{word-spacing:6.504000px;}
.wse1{word-spacing:6.588000px;}
.ws93{word-spacing:6.660000px;}
.ws195{word-spacing:6.750000px;}
.ws161{word-spacing:6.762000px;}
.ws48{word-spacing:6.810000px;}
.ws102{word-spacing:6.954000px;}
.ws17d{word-spacing:6.990000px;}
.ws82{word-spacing:7.002000px;}
.wse3{word-spacing:7.041600px;}
.ws21c{word-spacing:7.090200px;}
.ws1e8{word-spacing:7.092000px;}
.ws8f{word-spacing:7.098000px;}
.ws103{word-spacing:7.140000px;}
.ws244{word-spacing:7.365600px;}
.wsf8{word-spacing:7.368000px;}
.ws136{word-spacing:7.398000px;}
.ws153{word-spacing:7.446000px;}
.ws101{word-spacing:7.548000px;}
.ws152{word-spacing:7.554000px;}
.ws154{word-spacing:7.596000px;}
.ws22d{word-spacing:7.603200px;}
.ws80{word-spacing:7.614000px;}
.wsbc{word-spacing:7.638000px;}
.ws64{word-spacing:7.776000px;}
.ws13b{word-spacing:7.794000px;}
.wsad{word-spacing:7.800000px;}
.wsac{word-spacing:7.890000px;}
.ws249{word-spacing:7.959600px;}
.ws11c{word-spacing:8.010000px;}
.ws7a{word-spacing:8.022000px;}
.ws1a{word-spacing:8.112000px;}
.ws13c{word-spacing:8.166000px;}
.ws1cf{word-spacing:8.178000px;}
.ws72{word-spacing:8.238000px;}
.ws194{word-spacing:8.310000px;}
.ws3a{word-spacing:8.358000px;}
.ws1c9{word-spacing:8.394000px;}
.ws7d{word-spacing:8.472000px;}
.wsbb{word-spacing:8.490000px;}
.ws39{word-spacing:8.502000px;}
.ws214{word-spacing:8.562000px;}
.ws1c8{word-spacing:8.658000px;}
.ws186{word-spacing:8.802000px;}
.ws113{word-spacing:8.898000px;}
.ws114{word-spacing:8.904000px;}
.ws21d{word-spacing:8.958600px;}
.ws183{word-spacing:8.964000px;}
.wsd5{word-spacing:8.970000px;}
.ws1be{word-spacing:9.036000px;}
.wsd6{word-spacing:9.042000px;}
.ws184{word-spacing:9.126000px;}
.ws105{word-spacing:9.222000px;}
.ws1d9{word-spacing:9.342000px;}
.ws140{word-spacing:9.354000px;}
.ws104{word-spacing:9.384000px;}
.ws1da{word-spacing:9.402000px;}
.ws13d{word-spacing:9.408000px;}
.wsf4{word-spacing:9.582000px;}
.ws19{word-spacing:9.654000px;}
.wsf3{word-spacing:9.660000px;}
.ws15f{word-spacing:9.696000px;}
.ws1e2{word-spacing:9.726000px;}
.wsaa{word-spacing:9.750000px;}
.ws160{word-spacing:9.810000px;}
.ws3e{word-spacing:9.828000px;}
.wsab{word-spacing:9.858000px;}
.ws4e{word-spacing:9.894000px;}
.ws60{word-spacing:9.990000px;}
.wsa9{word-spacing:10.062000px;}
.wse0{word-spacing:10.152000px;}
.wseb{word-spacing:10.248000px;}
.ws1fa{word-spacing:10.275000px;}
.ws263{word-spacing:10.292400px;}
.wsed{word-spacing:10.326000px;}
.ws89{word-spacing:10.350000px;}
.wsec{word-spacing:10.422000px;}
.ws1f6{word-spacing:10.470000px;}
.ws185{word-spacing:10.488000px;}
.ws1dd{word-spacing:10.506000px;}
.ws12b{word-spacing:10.536000px;}
.ws1dc{word-spacing:10.548000px;}
.ws12d{word-spacing:10.608000px;}
.ws49{word-spacing:10.614000px;}
.ws12c{word-spacing:10.644000px;}
.ws1bc{word-spacing:10.710000px;}
.ws70{word-spacing:10.884000px;}
.wse{word-spacing:10.924800px;}
.ws1bd{word-spacing:10.926000px;}
.wsa0{word-spacing:11.082000px;}
.ws247{word-spacing:11.140200px;}
.ws1c0{word-spacing:11.184000px;}
.ws68{word-spacing:11.226000px;}
.ws26b{word-spacing:11.275200px;}
.ws7b{word-spacing:11.394000px;}
.ws1c1{word-spacing:11.598000px;}
.ws17c{word-spacing:11.634000px;}
.ws1eb{word-spacing:11.664000px;}
.ws19f{word-spacing:11.766000px;}
.ws127{word-spacing:11.772000px;}
.ws1a0{word-spacing:11.796000px;}
.ws126{word-spacing:11.850000px;}
.ws125{word-spacing:11.928000px;}
.ws19e{word-spacing:11.952000px;}
.ws264{word-spacing:12.015000px;}
.wsfa{word-spacing:12.156000px;}
.ws1b0{word-spacing:12.192000px;}
.ws1af{word-spacing:12.204000px;}
.wsba{word-spacing:12.210000px;}
.ws1fd{word-spacing:12.270000px;}
.wsb9{word-spacing:12.288000px;}
.ws97{word-spacing:12.444000px;}
.ws1f1{word-spacing:12.528000px;}
.ws225{word-spacing:12.549600px;}
.ws1a8{word-spacing:12.594000px;}
.ws1e3{word-spacing:12.618000px;}
.wsd0{word-spacing:12.672000px;}
.wscf{word-spacing:12.696000px;}
.ws12a{word-spacing:12.714000px;}
.ws151{word-spacing:12.888000px;}
.wsf9{word-spacing:12.972000px;}
.ws62{word-spacing:12.990000px;}
.wsef{word-spacing:12.996000px;}
.ws1e5{word-spacing:13.002000px;}
.ws3f{word-spacing:13.050000px;}
.ws164{word-spacing:13.212000px;}
.ws36{word-spacing:13.290000px;}
.ws1de{word-spacing:13.296000px;}
.ws1a6{word-spacing:13.356000px;}
.ws8e{word-spacing:13.398000px;}
.ws24d{word-spacing:13.456800px;}
.ws1a7{word-spacing:13.470000px;}
.ws67{word-spacing:13.506000px;}
.ws257{word-spacing:13.527000px;}
.wsf6{word-spacing:13.554000px;}
.ws1ed{word-spacing:13.806000px;}
.ws15b{word-spacing:13.842000px;}
.ws211{word-spacing:13.896000px;}
.ws182{word-spacing:14.034000px;}
.ws181{word-spacing:14.172000px;}
.ws11f{word-spacing:14.382000px;}
.ws167{word-spacing:14.442000px;}
.ws1e7{word-spacing:14.466000px;}
.ws1e6{word-spacing:14.472000px;}
.ws221{word-spacing:14.493600px;}
.ws11e{word-spacing:14.622000px;}
.wsc8{word-spacing:14.658000px;}
.ws87{word-spacing:14.688000px;}
.ws213{word-spacing:14.718000px;}
.ws83{word-spacing:14.730000px;}
.wsce{word-spacing:14.826000px;}
.wsf0{word-spacing:14.922000px;}
.ws43{word-spacing:15.036000px;}
.ws251{word-spacing:15.157800px;}
.ws1ee{word-spacing:15.192000px;}
.wsdd{word-spacing:15.426000px;}
.ws90{word-spacing:15.504000px;}
.ws98{word-spacing:15.510000px;}
.ws91{word-spacing:15.528000px;}
.ws115{word-spacing:15.846000px;}
.ws63{word-spacing:15.870000px;}
.ws1f5{word-spacing:15.936000px;}
.ws268{word-spacing:15.989400px;}
.ws218{word-spacing:16.075800px;}
.ws119{word-spacing:16.086000px;}
.ws11a{word-spacing:16.110000px;}
.ws76{word-spacing:16.212000px;}
.ws12f{word-spacing:16.386000px;}
.ws71{word-spacing:16.416000px;}
.ws12e{word-spacing:16.626000px;}
.ws41{word-spacing:16.710000px;}
.ws1aa{word-spacing:16.758000px;}
.ws1a9{word-spacing:16.794000px;}
.ws42{word-spacing:16.818000px;}
.wsbf{word-spacing:16.926000px;}
.ws260{word-spacing:16.977600px;}
.ws1a3{word-spacing:17.082000px;}
.ws132{word-spacing:17.136000px;}
.ws1a2{word-spacing:17.322000px;}
.ws146{word-spacing:17.424000px;}
.ws1d8{word-spacing:17.526000px;}
.wsc4{word-spacing:17.766000px;}
.ws78{word-spacing:17.892000px;}
.wsb2{word-spacing:17.958000px;}
.ws6c{word-spacing:17.964000px;}
.wsb3{word-spacing:17.976000px;}
.wsae{word-spacing:18.024000px;}
.ws1b4{word-spacing:18.096000px;}
.ws8a{word-spacing:18.252000px;}
.ws40{word-spacing:18.282000px;}
.ws4a{word-spacing:18.486000px;}
.ws75{word-spacing:18.564000px;}
.ws1b6{word-spacing:18.666000px;}
.ws1fc{word-spacing:18.684000px;}
.ws95{word-spacing:18.834000px;}
.ws9f{word-spacing:18.906000px;}
.ws12{word-spacing:19.158000px;}
.ws56{word-spacing:19.261800px;}
.wsb7{word-spacing:19.578000px;}
.ws1df{word-spacing:19.584000px;}
.wsb6{word-spacing:19.710000px;}
.wsc5{word-spacing:20.010000px;}
.ws23f{word-spacing:20.012400px;}
.ws1f4{word-spacing:20.016000px;}
.ws23e{word-spacing:20.115000px;}
.ws240{word-spacing:20.147400px;}
.ws135{word-spacing:20.268000px;}
.ws241{word-spacing:20.298600px;}
.wse4{word-spacing:20.763000px;}
.ws19a{word-spacing:20.778000px;}
.ws149{word-spacing:20.814000px;}
.wsb5{word-spacing:20.826000px;}
.ws3c{word-spacing:20.952000px;}
.ws11b{word-spacing:20.976000px;}
.ws19b{word-spacing:21.102000px;}
.ws1b1{word-spacing:21.288000px;}
.ws134{word-spacing:21.378000px;}
.ws226{word-spacing:21.459600px;}
.wsc6{word-spacing:21.846000px;}
.ws198{word-spacing:21.906000px;}
.ws199{word-spacing:21.996000px;}
.ws216{word-spacing:22.290000px;}
.ws96{word-spacing:22.308000px;}
.ws25e{word-spacing:22.555800px;}
.ws24a{word-spacing:22.901400px;}
.ws25d{word-spacing:22.912200px;}
.ws17e{word-spacing:22.950000px;}
.ws142{word-spacing:22.980000px;}
.ws133{word-spacing:23.154000px;}
.ws45{word-spacing:23.886000px;}
.ws6f{word-spacing:24.012000px;}
.ws1ea{word-spacing:24.174000px;}
.ws52{word-spacing:24.229800px;}
.wsde{word-spacing:24.438000px;}
.wsd9{word-spacing:24.444000px;}
.ws11{word-spacing:24.774000px;}
.wsea{word-spacing:24.828000px;}
.ws1f8{word-spacing:25.122000px;}
.ws19c{word-spacing:25.338000px;}
.ws143{word-spacing:25.350000px;}
.wsb4{word-spacing:25.374000px;}
.wsdf{word-spacing:25.404000px;}
.ws1f2{word-spacing:25.410000px;}
.ws1d4{word-spacing:25.416000px;}
.wsc7{word-spacing:25.422000px;}
.ws4d{word-spacing:25.440000px;}
.ws147{word-spacing:25.458000px;}
.wsbd{word-spacing:25.464000px;}
.ws145{word-spacing:25.470000px;}
.ws1f3{word-spacing:25.482000px;}
.ws1db{word-spacing:25.494000px;}
.ws166{word-spacing:25.506000px;}
.ws38{word-spacing:25.512000px;}
.ws191{word-spacing:25.518000px;}
.ws1e1{word-spacing:25.524000px;}
.wsbe{word-spacing:25.596000px;}
.ws193{word-spacing:25.602000px;}
.ws94{word-spacing:25.608000px;}
.ws144{word-spacing:25.632000px;}
.ws192{word-spacing:25.650000px;}
.ws6b{word-spacing:25.698000px;}
.ws165{word-spacing:25.752000px;}
.ws54{word-spacing:50.743800px;}
.ws239{word-spacing:139.169460px;}
.ws23a{word-spacing:139.174260px;}
.ws23d{word-spacing:161.964375px;}
.ws237{word-spacing:179.637754px;}
.ws23b{word-spacing:209.229385px;}
.wsc{word-spacing:321.527400px;}
.ws174{word-spacing:341.438932px;}
.ws175{word-spacing:353.059587px;}
.ws176{word-spacing:364.286646px;}
.wse9{word-spacing:761.275284px;}
._11{margin-left:-2981.991525px;}
._1f{margin-left:-1.236600px;}
._c{width:1.002000px;}
._10{width:14.016000px;}
._9{width:15.372000px;}
._8{width:17.160000px;}
._2{width:19.018800px;}
._6{width:20.154000px;}
._7{width:22.062000px;}
._b{width:23.622000px;}
._a{width:25.008000px;}
._1{width:26.909793px;}
._d{width:28.692000px;}
._19{width:29.958000px;}
._0{width:31.028217px;}
._f{width:32.190000px;}
._14{width:33.456000px;}
._5{width:34.524000px;}
._15{width:36.246000px;}
._18{width:38.334000px;}
._13{width:39.492000px;}
._e{width:40.902000px;}
._16{width:42.204000px;}
._22{width:99.363558px;}
._20{width:108.766640px;}
._12{width:111.338280px;}
._21{width:120.728091px;}
._28{width:133.750328px;}
._25{width:145.030187px;}
._27{width:168.319496px;}
._24{width:179.887351px;}
._2b{width:191.109611px;}
._1a{width:197.330333px;}
._2a{width:202.672667px;}
._4{width:280.619744px;}
._1e{width:310.152923px;}
._3{width:457.807763px;}
._23{width:505.649679px;}
._26{width:510.416020px;}
._29{width:545.892376px;}
._1c{width:577.807177px;}
._1d{width:589.034237px;}
._1b{width:600.654892px;}
._17{width:759.317400px;}
.fc5{color:rgb(209,163,84);}
.fc3{color:rgb(64,148,209);}
.fc2{color:rgb(31,76,161);}
.fc6{color:rgb(0,25,255);}
.fc1{color:rgb(13,84,166);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:31.995000px;}
.fs10{font-size:32.158200px;}
.fs12{font-size:35.995200px;}
.fsc{font-size:36.000000px;}
.fsf{font-size:36.178800px;}
.fsa{font-size:37.800000px;}
.fs16{font-size:39.186000px;}
.fs9{font-size:39.995400px;}
.fs8{font-size:40.199400px;}
.fs6{font-size:41.248800px;}
.fsd{font-size:42.000000px;}
.fsb{font-size:44.999400px;}
.fs4{font-size:47.999400px;}
.fse{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs17{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs14{font-size:63.000000px;}
.fs15{font-size:71.248800px;}
.fs5{font-size:74.999400px;}
.fs1{font-size:77.999400px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:101.999400px;}
.fs13{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.436250px;}
.yd5{bottom:22.621350px;}
.y4d{bottom:27.553650px;}
.yd4{bottom:32.399850px;}
.y4b{bottom:35.207040px;}
.y4c{bottom:37.332150px;}
.y4a{bottom:43.880250px;}
.y13e{bottom:59.952600px;}
.y13b{bottom:59.952900px;}
.y97{bottom:59.953050px;}
.ycf{bottom:59.953650px;}
.y170{bottom:59.953800px;}
.y185{bottom:59.954100px;}
.y124{bottom:59.954250px;}
.y1ab{bottom:59.955750px;}
.y38{bottom:68.711700px;}
.y36{bottom:68.712750px;}
.y1e2{bottom:75.005400px;}
.y37{bottom:75.344850px;}
.y13d{bottom:76.449600px;}
.yce{bottom:76.450650px;}
.y1aa{bottom:76.452750px;}
.y96{bottom:76.535550px;}
.y184{bottom:76.620600px;}
.y16f{bottom:76.620750px;}
.y13a{bottom:76.790400px;}
.y138{bottom:76.791300px;}
.yfe{bottom:76.876050px;}
.y123{bottom:76.877250px;}
.y139{bottom:83.508600px;}
.y35{bottom:85.466250px;}
.y1e1{bottom:89.972850px;}
.y13c{bottom:92.946600px;}
.ycd{bottom:92.949150px;}
.y1a9{bottom:92.949750px;}
.y95{bottom:93.118050px;}
.y93{bottom:93.119250px;}
.y16e{bottom:93.203250px;}
.y183{bottom:93.206250px;}
.y137{bottom:93.628800px;}
.yfd{bottom:93.713550px;}
.y122{bottom:93.714750px;}
.y94{bottom:99.836100px;}
.y34{bottom:102.218250px;}
.y1e0{bottom:105.024000px;}
.y48{bottom:107.405400px;}
.ycc{bottom:109.446150px;}
.y1a8{bottom:109.448250px;}
.y92{bottom:109.701750px;}
.y16d{bottom:109.785750px;}
.y182{bottom:109.788750px;}
.y136{bottom:110.466300px;}
.yfc{bottom:110.551350px;}
.y121{bottom:110.552250px;}
.y33{bottom:118.800750px;}
.y1df{bottom:119.991450px;}
.y47{bottom:123.903750px;}
.ycb{bottom:125.943750px;}
.y1a7{bottom:125.945250px;}
.y91{bottom:126.284250px;}
.y16c{bottom:126.368250px;}
.y181{bottom:126.456750px;}
.y135{bottom:127.304250px;}
.yfb{bottom:127.389750px;}
.y152{bottom:129.089700px;}
.y1de{bottom:134.958900px;}
.y151{bottom:135.127500px;}
.y32{bottom:135.554250px;}
.y46{bottom:140.400750px;}
.yca{bottom:142.440750px;}
.y1a6{bottom:142.442250px;}
.y90{bottom:142.866750px;}
.y16b{bottom:142.950750px;}
.y180{bottom:143.039250px;}
.yfa{bottom:144.141750px;}
.y120{bottom:144.227250px;}
.y11e{bottom:144.228750px;}
.y14e{bottom:148.649185px;}
.y150{bottom:148.649250px;}
.y1dd{bottom:150.010050px;}
.y11f{bottom:150.944250px;}
.y31{bottom:152.306250px;}
.y14f{bottom:153.921750px;}
.y45{bottom:156.897750px;}
.yc9{bottom:158.939250px;}
.y1a5{bottom:158.940750px;}
.y8f{bottom:159.449250px;}
.y16a{bottom:159.534750px;}
.y17f{bottom:159.536250px;}
.y134{bottom:160.895250px;}
.yf9{bottom:160.979250px;}
.y11d{bottom:161.151750px;}
.y14d{bottom:164.977381px;}
.y1dc{bottom:164.977500px;}
.y30{bottom:169.058250px;}
.y2e{bottom:169.059750px;}
.yc8{bottom:175.521750px;}
.y1a4{bottom:175.523250px;}
.y2f{bottom:175.691250px;}
.y8e{bottom:176.031750px;}
.y169{bottom:176.202750px;}
.y17e{bottom:176.204250px;}
.y133{bottom:177.732750px;}
.yf8{bottom:177.816750px;}
.y11c{bottom:177.989250px;}
.y1db{bottom:179.943600px;}
.y14c{bottom:181.389576px;}
.y2d{bottom:185.811750px;}
.yc6{bottom:192.020250px;}
.y8d{bottom:192.615750px;}
.y168{bottom:192.785250px;}
.y17d{bottom:192.786750px;}
.y132{bottom:194.570250px;}
.yf7{bottom:194.657250px;}
.y11b{bottom:194.826750px;}
.y1da{bottom:194.996100px;}
.y44{bottom:195.167250px;}
.y14b{bottom:197.801771px;}
.yc7{bottom:198.651750px;}
.y2c{bottom:202.565250px;}
.yc5{bottom:208.517250px;}
.y1a3{bottom:208.518750px;}
.y8c{bottom:209.198250px;}
.y167{bottom:209.367750px;}
.y17c{bottom:209.369250px;}
.y1d9{bottom:209.963550px;}
.y131{bottom:211.407750px;}
.yf6{bottom:211.578750px;}
.y11a{bottom:211.664250px;}
.y43{bottom:212.685750px;}
.y14a{bottom:214.215165px;}
.y2b{bottom:219.317250px;}
.y1d8{bottom:225.014700px;}
.yc4{bottom:225.015750px;}
.y8b{bottom:225.695250px;}
.y166{bottom:226.034250px;}
.y17b{bottom:226.037250px;}
.y130{bottom:228.246750px;}
.yf5{bottom:228.416250px;}
.y119{bottom:228.501750px;}
.y42{bottom:230.288250px;}
.y149{bottom:230.627360px;}
.y2a{bottom:236.070750px;}
.y1d7{bottom:239.982150px;}
.yc3{bottom:241.512750px;}
.y8a{bottom:242.277750px;}
.y165{bottom:242.616750px;}
.y17a{bottom:242.619750px;}
.y12f{bottom:245.084250px;}
.yf4{bottom:245.253750px;}
.y118{bottom:245.424750px;}
.y148{bottom:247.039555px;}
.y41{bottom:247.890750px;}
.y29{bottom:252.822750px;}
.y1d6{bottom:254.948250px;}
.yc2{bottom:258.009750px;}
.y1a2{bottom:258.011250px;}
.y89{bottom:258.860250px;}
.y164{bottom:259.202250px;}
.y12e{bottom:261.836250px;}
.yf3{bottom:262.092750px;}
.y117{bottom:262.262250px;}
.y147{bottom:263.451750px;}
.y40{bottom:265.494750px;}
.y1d5{bottom:268.979250px;}
.y28{bottom:269.576250px;}
.yc1{bottom:274.508250px;}
.y88{bottom:275.442750px;}
.y163{bottom:275.784750px;}
.y12d{bottom:278.673750px;}
.yf2{bottom:279.014250px;}
.y116{bottom:279.099750px;}
.y146{bottom:282.840411px;}
.y3f{bottom:283.097250px;}
.y27{bottom:286.328250px;}
.yc0{bottom:291.005250px;}
.y87{bottom:292.025250px;}
.y162{bottom:292.367250px;}
.y179{bottom:292.452750px;}
.y12c{bottom:295.512750px;}
.yf1{bottom:295.853250px;}
.y115{bottom:295.938750px;}
.y3c{bottom:300.697200px;}
.y3e{bottom:300.699750px;}
.y26{bottom:303.080250px;}
.y24{bottom:303.081750px;}
.y145{bottom:303.759750px;}
.y3d{bottom:307.332750px;}
.ybf{bottom:307.502250px;}
.y1a1{bottom:307.503750px;}
.y86{bottom:308.607750px;}
.y161{bottom:308.949750px;}
.y178{bottom:309.035250px;}
.y25{bottom:309.713250px;}
.y12b{bottom:312.350250px;}
.yf0{bottom:312.690750px;}
.y114{bottom:312.776250px;}
.y3b{bottom:318.214200px;}
.y23{bottom:319.835250px;}
.y1d4{bottom:323.831250px;}
.y1a0{bottom:324.000750px;}
.ybe{bottom:324.002250px;}
.y85{bottom:325.190250px;}
.y160{bottom:325.616250px;}
.y177{bottom:325.617750px;}
.y12a{bottom:329.187750px;}
.yef{bottom:329.529750px;}
.y113{bottom:329.697750px;}
.y3a{bottom:335.818200px;}
.y22{bottom:336.587250px;}
.y1d3{bottom:340.328250px;}
.y19f{bottom:340.497750px;}
.y84{bottom:341.772750px;}
.y15f{bottom:342.198750px;}
.y176{bottom:342.284250px;}
.y144{bottom:345.684750px;}
.y129{bottom:346.025250px;}
.y111{bottom:346.365750px;}
.yee{bottom:346.451250px;}
.y112{bottom:352.998750px;}
.y21{bottom:353.340750px;}
.y39{bottom:353.420700px;}
.y1d2{bottom:356.825250px;}
.y19e{bottom:356.996250px;}
.y50{bottom:357.195000px;}
.y83{bottom:358.355250px;}
.y15e{bottom:358.782750px;}
.y175{bottom:358.866750px;}
.y4f{bottom:360.210000px;}
.y143{bottom:362.181750px;}
.y128{bottom:362.693250px;}
.y110{bottom:363.203250px;}
.yed{bottom:363.288750px;}
.yd2{bottom:370.431600px;}
.y1d1{bottom:373.323750px;}
.y19d{bottom:373.493250px;}
.y82{bottom:374.939250px;}
.y15d{bottom:375.449250px;}
.y174{bottom:375.450750px;}
.y142{bottom:378.680250px;}
.y127{bottom:379.445250px;}
.y10f{bottom:380.040750px;}
.yec{bottom:380.126250px;}
.yd1{bottom:385.483650px;}
.y1d0{bottom:389.820750px;}
.y19c{bottom:389.991750px;}
.y81{bottom:391.437750px;}
.y15c{bottom:392.031750px;}
.y173{bottom:392.033250px;}
.y10e{bottom:396.879750px;}
.yeb{bottom:396.965250px;}
.yd0{bottom:400.449750px;}
.y20{bottom:405.213750px;}
.y1cf{bottom:406.317750px;}
.y19b{bottom:406.490250px;}
.y80{bottom:408.020250px;}
.y15b{bottom:408.615750px;}
.y141{bottom:411.760650px;}
.y10d{bottom:413.802750px;}
.yea{bottom:413.886750px;}
.y1f{bottom:421.710750px;}
.y1ce{bottom:421.880250px;}
.y19a{bottom:422.987250px;}
.y7f{bottom:424.602750px;}
.y15a{bottom:425.198250px;}
.y140{bottom:426.727650px;}
.ye8{bottom:430.556250px;}
.y10c{bottom:430.640250px;}
.ye9{bottom:437.187750px;}
.y199{bottom:439.485750px;}
.y7e{bottom:441.185250px;}
.y13f{bottom:441.693750px;}
.y159{bottom:441.864750px;}
.y172{bottom:441.866250px;}
.y1e{bottom:442.715250px;}
.ye7{bottom:447.393750px;}
.y10b{bottom:447.477750px;}
.y198{bottom:455.982750px;}
.y7d{bottom:457.767750px;}
.y158{bottom:458.448750px;}
.y1d{bottom:459.213750px;}
.y1cd{bottom:460.232250px;}
.ye6{bottom:464.231250px;}
.y10a{bottom:464.315250px;}
.y197{bottom:472.479750px;}
.y7c{bottom:474.350250px;}
.y157{bottom:475.031250px;}
.y1c{bottom:475.710750px;}
.ye5{bottom:481.154250px;}
.y1cc{bottom:481.748250px;}
.y196{bottom:488.978250px;}
.y7b{bottom:490.847250px;}
.y156{bottom:491.697750px;}
.y1b{bottom:492.209250px;}
.ye4{bottom:497.991750px;}
.y109{bottom:498.075750px;}
.y1cb{bottom:502.073250px;}
.y195{bottom:505.475250px;}
.y7a{bottom:507.429750px;}
.y155{bottom:508.280250px;}
.y1a{bottom:508.706250px;}
.ye3{bottom:514.829250px;}
.y108{bottom:514.913250px;}
.y1ca{bottom:518.570250px;}
.y194{bottom:521.972250px;}
.y79{bottom:524.012250px;}
.y154{bottom:524.862750px;}
.y19{bottom:525.204750px;}
.ye2{bottom:531.668250px;}
.y106{bottom:531.750750px;}
.y107{bottom:538.383750px;}
.y193{bottom:538.470750px;}
.y1c9{bottom:540.084750px;}
.y78{bottom:540.594750px;}
.y76{bottom:540.596250px;}
.y171{bottom:541.441800px;}
.y153{bottom:541.445250px;}
.y18{bottom:541.701750px;}
.y77{bottom:547.227750px;}
.ye1{bottom:548.589750px;}
.y222{bottom:549.014250px;}
.y192{bottom:554.967750px;}
.y75{bottom:557.178750px;}
.y17{bottom:558.198750px;}
.ybd{bottom:559.473750px;}
.y221{bottom:563.981700px;}
.ye0{bottom:565.427250px;}
.y104{bottom:565.428750px;}
.y191{bottom:571.469250px;}
.y105{bottom:572.144250px;}
.y1c8{bottom:572.400750px;}
.y187{bottom:573.760650px;}
.y74{bottom:573.761250px;}
.y16{bottom:574.697250px;}
.ybc{bottom:575.972250px;}
.y220{bottom:578.949150px;}
.ydf{bottom:582.264750px;}
.y103{bottom:582.351750px;}
.y190{bottom:587.966250px;}
.y186{bottom:588.726750px;}
.y1c7{bottom:588.897750px;}
.y73{bottom:590.343750px;}
.y15{bottom:591.194250px;}
.ybb{bottom:592.469250px;}
.y21f{bottom:594.000300px;}
.yde{bottom:599.103750px;}
.y102{bottom:599.189250px;}
.y18f{bottom:604.463250px;}
.y72{bottom:606.926250px;}
.y14{bottom:607.694250px;}
.yba{bottom:608.966250px;}
.yb8{bottom:608.967750px;}
.y1c6{bottom:611.432250px;}
.yb9{bottom:615.599250px;}
.y101{bottom:615.855750px;}
.ydd{bottom:616.026750px;}
.y18e{bottom:620.961750px;}
.y71{bottom:623.508750px;}
.y21e{bottom:623.935200px;}
.y13{bottom:624.191250px;}
.yb7{bottom:625.464750px;}
.y1c5{bottom:627.932250px;}
.ydc{bottom:632.693250px;}
.y18d{bottom:637.458750px;}
.y21d{bottom:638.986350px;}
.y70{bottom:640.091250px;}
.y6e{bottom:640.092750px;}
.y12{bottom:640.688250px;}
.yb6{bottom:641.963250px;}
.y1c4{bottom:644.429250px;}
.y6f{bottom:646.724250px;}
.ydb{bottom:649.530750px;}
.y100{bottom:649.532250px;}
.y21c{bottom:653.953800px;}
.y18c{bottom:653.957250px;}
.y6d{bottom:656.591250px;}
.y11{bottom:657.186750px;}
.yb5{bottom:658.460250px;}
.y1c3{bottom:660.926250px;}
.yda{bottom:666.368250px;}
.yff{bottom:666.453750px;}
.y21b{bottom:669.004950px;}
.y18b{bottom:670.454250px;}
.y6c{bottom:673.173750px;}
.y10{bottom:673.683750px;}
.yb4{bottom:674.957250px;}
.y1c2{bottom:677.424750px;}
.yd8{bottom:683.291250px;}
.y21a{bottom:683.972400px;}
.y18a{bottom:686.951250px;}
.y6b{bottom:689.756250px;}
.yd9{bottom:689.924250px;}
.yf{bottom:690.180750px;}
.yb3{bottom:691.455750px;}
.y1c1{bottom:693.921750px;}
.y219{bottom:698.939850px;}
.yd7{bottom:700.128750px;}
.y189{bottom:703.449750px;}
.y6a{bottom:706.338750px;}
.ye{bottom:706.679250px;}
.yb2{bottom:707.952750px;}
.y1c0{bottom:710.418750px;}
.y218{bottom:713.991000px;}
.yd6{bottom:716.966250px;}
.y188{bottom:720.032250px;}
.y69{bottom:722.921250px;}
.yd{bottom:723.176250px;}
.yb1{bottom:724.451250px;}
.y1bf{bottom:726.917250px;}
.y217{bottom:728.958450px;}
.y68{bottom:739.503750px;}
.yc{bottom:739.673250px;}
.yb0{bottom:740.948250px;}
.y1be{bottom:743.414250px;}
.y216{bottom:744.009600px;}
.y126{bottom:749.198100px;}
.y67{bottom:756.000750px;}
.yb{bottom:756.171750px;}
.yaf{bottom:757.446750px;}
.y215{bottom:758.977050px;}
.y1bd{bottom:759.911250px;}
.y1fe{bottom:759.997650px;}
.y125{bottom:764.249250px;}
.y66{bottom:772.583250px;}
.ya{bottom:772.668750px;}
.yae{bottom:773.943750px;}
.y214{bottom:773.944500px;}
.y1fd{bottom:774.963750px;}
.y1fc{bottom:781.001250px;}
.y1bc{bottom:781.427250px;}
.y213{bottom:788.995650px;}
.y9{bottom:789.165750px;}
.yad{bottom:790.442250px;}
.y1fb{bottom:794.522250px;}
.y1f9{bottom:794.523860px;}
.y1fa{bottom:799.794750px;}
.y212{bottom:803.963100px;}
.y65{bottom:805.748250px;}
.yac{bottom:806.939250px;}
.y1bb{bottom:809.319750px;}
.y1f8{bottom:810.936055px;}
.y211{bottom:819.014250px;}
.y64{bottom:822.330750px;}
.yab{bottom:823.436250px;}
.y7{bottom:824.370750px;}
.y1ba{bottom:825.816750px;}
.y8{bottom:826.497750px;}
.y1f7{bottom:827.348250px;}
.y1f5{bottom:827.349559px;}
.y1f6{bottom:832.620750px;}
.y210{bottom:833.981700px;}
.y63{bottom:838.913250px;}
.yaa{bottom:839.933250px;}
.y1b9{bottom:842.315250px;}
.y1f4{bottom:843.761754px;}
.y20f{bottom:848.949150px;}
.y62{bottom:855.495750px;}
.ya9{bottom:856.517250px;}
.y1b8{bottom:858.812250px;}
.y1f3{bottom:860.088750px;}
.y1f1{bottom:860.088860px;}
.y20e{bottom:864.000300px;}
.y1f2{bottom:865.445250px;}
.y61{bottom:872.078250px;}
.ya8{bottom:873.015750px;}
.y1b7{bottom:875.310750px;}
.y1f0{bottom:876.501055px;}
.y6{bottom:878.286750px;}
.y20d{bottom:878.967750px;}
.y60{bottom:888.660750px;}
.y5e{bottom:888.662250px;}
.ya7{bottom:889.512750px;}
.y1b6{bottom:891.807750px;}
.y1ef{bottom:892.913250px;}
.y1ed{bottom:892.913360px;}
.y20c{bottom:894.020250px;}
.y5f{bottom:895.293750px;}
.y1ee{bottom:898.271250px;}
.y5d{bottom:905.159250px;}
.ya5{bottom:906.009750px;}
.y1b5{bottom:908.304750px;}
.y20b{bottom:908.986350px;}
.y1ec{bottom:909.325555px;}
.ya6{bottom:912.642750px;}
.y5{bottom:914.939181px;}
.y5c{bottom:921.741750px;}
.ya4{bottom:922.508250px;}
.y20a{bottom:923.953800px;}
.y1eb{bottom:925.737750px;}
.y1e9{bottom:925.739699px;}
.y1b4{bottom:929.820750px;}
.y1ea{bottom:931.095750px;}
.y5b{bottom:938.324250px;}
.y209{bottom:939.004950px;}
.ya3{bottom:939.005250px;}
.y1e8{bottom:942.151893px;}
.y1b3{bottom:944.702250px;}
.y4{bottom:944.957250px;}
.y208{bottom:953.972400px;}
.y5a{bottom:954.906750px;}
.ya2{bottom:955.502250px;}
.ya0{bottom:955.503750px;}
.y1e6{bottom:961.625250px;}
.ya1{bottom:962.135250px;}
.y1e7{bottom:966.897750px;}
.y207{bottom:968.939850px;}
.y59{bottom:971.489250px;}
.y9f{bottom:972.002250px;}
.y3{bottom:974.978709px;}
.y206{bottom:983.991000px;}
.y1e5{bottom:986.967750px;}
.y57{bottom:988.073250px;}
.y9e{bottom:988.499250px;}
.y1b2{bottom:988.922250px;}
.y58{bottom:994.704750px;}
.y205{bottom:998.958450px;}
.y2{bottom:1002.018750px;}
.y1e4{bottom:1003.464750px;}
.y56{bottom:1004.570250px;}
.y9d{bottom:1004.996250px;}
.y1b1{bottom:1005.420750px;}
.y204{bottom:1014.009600px;}
.y1e3{bottom:1019.961750px;}
.y55{bottom:1021.152750px;}
.y9c{bottom:1021.494750px;}
.y1b0{bottom:1027.871250px;}
.y203{bottom:1028.977050px;}
.y54{bottom:1037.735250px;}
.y9b{bottom:1037.991750px;}
.y202{bottom:1043.944500px;}
.y1af{bottom:1044.368250px;}
.y49{bottom:1050.746250px;}
.y53{bottom:1054.317750px;}
.y9a{bottom:1054.488750px;}
.y201{bottom:1058.995650px;}
.y1ad{bottom:1065.882750px;}
.y1ae{bottom:1067.838750px;}
.y52{bottom:1070.900250px;}
.y99{bottom:1070.985750px;}
.y200{bottom:1073.963100px;}
.y1ac{bottom:1080.765750px;}
.y4e{bottom:1087.350000px;}
.y98{bottom:1087.476600px;}
.y51{bottom:1087.482750px;}
.y1ff{bottom:1089.014250px;}
.yd3{bottom:1117.502250px;}
.h2a{height:24.444180px;}
.h13{height:25.560000px;}
.h12{height:26.838000px;}
.h2b{height:27.500333px;}
.hf{height:30.316513px;}
.h20{height:32.444567px;}
.h34{height:33.273000px;}
.h11{height:34.079574px;}
.h8{height:34.109731px;}
.h28{height:36.383545px;}
.h6{height:38.934000px;}
.h10{height:40.932000px;}
.h35{height:41.097000px;}
.h36{height:41.256000px;}
.h1f{height:43.260000px;}
.h29{height:43.427270px;}
.h14{height:43.804688px;}
.h27{height:45.420000px;}
.h9{height:45.480000px;}
.he{height:45.840000px;}
.h16{height:47.109375px;}
.h24{height:48.508130px;}
.h1e{height:48.509930px;}
.h23{height:48.513530px;}
.h1b{height:50.304794px;}
.h1a{height:50.646794px;}
.h33{height:51.156638px;}
.hd{height:53.595145px;}
.h25{height:53.599945px;}
.h2d{height:53.600545px;}
.h17{height:53.601145px;}
.h26{height:53.902946px;}
.h31{height:53.925145px;}
.h2f{height:53.929345px;}
.ha{height:53.931145px;}
.h30{height:53.935945px;}
.hb{height:53.937145px;}
.h1d{height:53.937745px;}
.h21{height:53.938345px;}
.h1c{height:53.939545px;}
.h18{height:53.940145px;}
.h22{height:53.940745px;}
.h2c{height:53.942545px;}
.hc{height:53.943145px;}
.h2e{height:53.956945px;}
.h19{height:53.967745px;}
.h4{height:54.599580px;}
.h5{height:59.123545px;}
.h7{height:64.863281px;}
.h3{height:73.541567px;}
.h32{height:145.536000px;}
.h2{height:1174.479000px;}
.h15{height:1201.350000px;}
.h0{height:1201.351500px;}
.h1{height:1201.500000px;}
.w2{width:884.239500px;}
.w0{width:911.112000px;}
.w1{width:911.250000px;}
.x0{left:0.000000px;}
.x1{left:13.436250px;}
.x16{left:27.000000px;}
.x2{left:63.779400px;}
.x44{left:69.817200px;}
.x3d{left:72.878700px;}
.xa{left:77.217750px;}
.x40{left:85.976847px;}
.x3{left:99.325950px;}
.x27{left:120.245550px;}
.x6{left:161.744250px;}
.x1a{left:169.058250px;}
.x7{left:173.055750px;}
.x1b{left:197.546250px;}
.x1c{left:229.605750px;}
.x3e{left:244.317750px;}
.x1d{left:245.423250px;}
.x11{left:269.489250px;}
.x3f{left:277.739250px;}
.x45{left:279.948750px;}
.x17{left:283.181250px;}
.x46{left:285.987750px;}
.x8{left:294.321750px;}
.x12{left:298.827720px;}
.x43{left:302.994750px;}
.x41{left:305.886750px;}
.x9{left:307.671750px;}
.x1e{left:325.020750px;}
.x18{left:327.827250px;}
.x2f{left:342.878250px;}
.x19{left:351.383250px;}
.x1f{left:357.845250px;}
.xb{left:364.053750px;}
.xc{left:373.493250px;}
.x42{left:378.339750px;}
.x26{left:400.025250px;}
.x25{left:435.741750px;}
.xd{left:459.722250px;}
.x36{left:465.845250px;}
.x20{left:473.244750px;}
.x3a{left:474.774750px;}
.x31{left:481.068529px;}
.x3b{left:486.764250px;}
.x4{left:492.717750px;}
.x39{left:495.777750px;}
.x3c{left:498.755250px;}
.x32{left:503.603250px;}
.x2d{left:543.315750px;}
.x2e{left:564.576750px;}
.xe{left:566.532750px;}
.xf{left:575.970750px;}
.x15{left:608.550000px;}
.x23{left:623.339250px;}
.x13{left:632.607750px;}
.x5{left:638.559750px;}
.x37{left:639.836250px;}
.x38{left:645.959250px;}
.x24{left:673.596750px;}
.x30{left:679.379250px;}
.x33{left:684.821250px;}
.x14{left:693.154350px;}
.x2c{left:695.027250px;}
.x28{left:744.264750px;}
.x2a{left:749.876250px;}
.x34{left:751.067250px;}
.x29{left:761.442750px;}
.x2b{left:764.673750px;}
.x10{left:779.726250px;}
.x21{left:780.831750px;}
.x35{left:790.185750px;}
.x22{left:796.394250px;}
@media print{
.v4{vertical-align:-32.960320pt;}
.v5{vertical-align:-10.885333pt;}
.v9{vertical-align:-6.954667pt;}
.v2{vertical-align:-2.720000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:0.906667pt;}
.v1{vertical-align:5.445333pt;}
.v7{vertical-align:16.934537pt;}
.v6{vertical-align:18.743467pt;}
.v3{vertical-align:20.853333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.005333pt;}
.ls1c{letter-spacing:0.013699pt;}
.ls1f{letter-spacing:0.019032pt;}
.lsf{letter-spacing:0.021333pt;}
.ls23{letter-spacing:0.021440pt;}
.ls7{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.039467pt;}
.ls17{letter-spacing:0.053333pt;}
.ls5c{letter-spacing:0.074667pt;}
.ls48{letter-spacing:0.075796pt;}
.lsb{letter-spacing:0.107492pt;}
.lse{letter-spacing:0.154667pt;}
.ls33{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165333pt;}
.ls6c{letter-spacing:0.168000pt;}
.ls55{letter-spacing:0.240086pt;}
.ls22{letter-spacing:0.249063pt;}
.ls1d{letter-spacing:0.272000pt;}
.ls26{letter-spacing:0.421333pt;}
.ls54{letter-spacing:0.453333pt;}
.ls3f{letter-spacing:0.455059pt;}
.ls51{letter-spacing:0.485333pt;}
.ls3c{letter-spacing:0.512000pt;}
.ls6f{letter-spacing:0.518400pt;}
.ls3a{letter-spacing:0.581333pt;}
.ls5e{letter-spacing:0.661333pt;}
.ls60{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.789333pt;}
.ls1b{letter-spacing:0.858667pt;}
.ls3b{letter-spacing:0.896000pt;}
.ls67{letter-spacing:0.907200pt;}
.ls44{letter-spacing:1.029333pt;}
.lsa{letter-spacing:1.061333pt;}
.ls5b{letter-spacing:1.104000pt;}
.ls21{letter-spacing:1.125333pt;}
.ls5f{letter-spacing:1.504000pt;}
.ls3d{letter-spacing:1.653333pt;}
.ls45{letter-spacing:11.644812pt;}
.ls2d{letter-spacing:12.507492pt;}
.ls6e{letter-spacing:12.705600pt;}
.ls35{letter-spacing:12.806158pt;}
.ls5a{letter-spacing:12.811492pt;}
.lsd{letter-spacing:13.104825pt;}
.ls2b{letter-spacing:13.110158pt;}
.ls3e{letter-spacing:13.159478pt;}
.ls2a{letter-spacing:13.241686pt;}
.ls10{letter-spacing:13.712825pt;}
.ls11{letter-spacing:13.920000pt;}
.ls13{letter-spacing:13.925333pt;}
.ls4c{letter-spacing:14.011558pt;}
.ls12{letter-spacing:14.261333pt;}
.ls49{letter-spacing:14.299969pt;}
.ls4b{letter-spacing:14.314488pt;}
.ls1{letter-spacing:14.315492pt;}
.ls27{letter-spacing:14.319225pt;}
.ls0{letter-spacing:14.320825pt;}
.ls28{letter-spacing:14.455553pt;}
.ls2c{letter-spacing:14.619492pt;}
.ls30{letter-spacing:14.748886pt;}
.ls59{letter-spacing:14.972812pt;}
.ls2e{letter-spacing:15.222158pt;}
.ls6{letter-spacing:15.227492pt;}
.ls66{letter-spacing:15.729600pt;}
.ls37{letter-spacing:15.830158pt;}
.ls6d{letter-spacing:16.027200pt;}
.ls64{letter-spacing:16.032000pt;}
.ls34{letter-spacing:16.134158pt;}
.ls4d{letter-spacing:16.268886pt;}
.ls42{letter-spacing:16.432825pt;}
.ls3{letter-spacing:16.736825pt;}
.ls39{letter-spacing:16.742158pt;}
.ls50{letter-spacing:16.871553pt;}
.ls5{letter-spacing:16.944000pt;}
.ls2{letter-spacing:17.040825pt;}
.ls46{letter-spacing:17.182397pt;}
.ls47{letter-spacing:17.251200pt;}
.ls4{letter-spacing:17.285333pt;}
.ls2f{letter-spacing:17.643492pt;}
.ls63{letter-spacing:17.888000pt;}
.ls62{letter-spacing:17.893333pt;}
.ls68{letter-spacing:17.947492pt;}
.ls41{letter-spacing:18.246158pt;}
.ls40{letter-spacing:18.555492pt;}
.ls14{letter-spacing:18.848825pt;}
.ls29{letter-spacing:19.158158pt;}
.ls65{letter-spacing:19.660800pt;}
.ls16{letter-spacing:19.685333pt;}
.ls4e{letter-spacing:20.668025pt;}
.ls4f{letter-spacing:20.668558pt;}
.ls20{letter-spacing:20.877699pt;}
.ls6b{letter-spacing:21.475200pt;}
.ls24{letter-spacing:21.574158pt;}
.ls5d{letter-spacing:22.480825pt;}
.ls36{letter-spacing:23.387492pt;}
.ls56{letter-spacing:23.392825pt;}
.ls19{letter-spacing:23.826219pt;}
.ls43{letter-spacing:24.598158pt;}
.ls57{letter-spacing:24.732886pt;}
.ls1e{letter-spacing:25.808825pt;}
.lsc{letter-spacing:26.715492pt;}
.ls32{letter-spacing:27.014158pt;}
.ls31{letter-spacing:27.318158pt;}
.ls38{letter-spacing:27.323492pt;}
.ls58{letter-spacing:27.920825pt;}
.ls6a{letter-spacing:29.644800pt;}
.ls69{letter-spacing:29.707200pt;}
.ls18{letter-spacing:30.159187pt;}
.ls53{letter-spacing:31.383553pt;}
.ls52{letter-spacing:32.459492pt;}
.ls61{letter-spacing:33.850667pt;}
.ls4a{letter-spacing:175.442071pt;}
.ws0{word-spacing:-48.306916pt;}
.ws212{word-spacing:-46.312000pt;}
.ws1{word-spacing:-44.780003pt;}
.ws1fe{word-spacing:-27.753600pt;}
.ws1f9{word-spacing:-27.608000pt;}
.wse8{word-spacing:-26.458667pt;}
.ws1ff{word-spacing:-25.034400pt;}
.ws1fb{word-spacing:-25.009067pt;}
.ws210{word-spacing:-24.897600pt;}
.ws59{word-spacing:-24.063699pt;}
.ws21a{word-spacing:-23.856000pt;}
.ws8{word-spacing:-23.774400pt;}
.wsb{word-spacing:-23.712000pt;}
.ws254{word-spacing:-22.848000pt;}
.ws5c{word-spacing:-18.048000pt;}
.ws1b9{word-spacing:-13.333333pt;}
.ws204{word-spacing:-13.109333pt;}
.ws205{word-spacing:-12.960000pt;}
.ws20d{word-spacing:-12.954667pt;}
.wsc1{word-spacing:-12.746667pt;}
.ws169{word-spacing:-12.384000pt;}
.ws2{word-spacing:-11.744976pt;}
.ws3{word-spacing:-11.738043pt;}
.ws4{word-spacing:-11.606311pt;}
.ws16f{word-spacing:-11.541333pt;}
.ws6{word-spacing:-11.294313pt;}
.ws5{word-spacing:-11.280447pt;}
.ws233{word-spacing:-11.232000pt;}
.ws7{word-spacing:-11.218047pt;}
.wsa{word-spacing:-11.198400pt;}
.ws14b{word-spacing:-10.872000pt;}
.ws266{word-spacing:-10.516800pt;}
.ws253{word-spacing:-10.051200pt;}
.ws24f{word-spacing:-9.638400pt;}
.ws1ca{word-spacing:-9.057600pt;}
.ws231{word-spacing:-8.917333pt;}
.ws208{word-spacing:-8.869333pt;}
.ws20a{word-spacing:-8.810667pt;}
.ws200{word-spacing:-8.720000pt;}
.ws232{word-spacing:-8.714667pt;}
.ws16e{word-spacing:-8.613333pt;}
.ws170{word-spacing:-8.581333pt;}
.ws28{word-spacing:-8.540139pt;}
.ws9{word-spacing:-8.275200pt;}
.ws5b{word-spacing:-7.983360pt;}
.ws5a{word-spacing:-7.936320pt;}
.ws201{word-spacing:-7.888000pt;}
.ws34{word-spacing:-7.877333pt;}
.ws202{word-spacing:-7.813333pt;}
.ws20b{word-spacing:-7.797333pt;}
.ws209{word-spacing:-7.786667pt;}
.ws20e{word-spacing:-7.717333pt;}
.ws206{word-spacing:-7.712000pt;}
.ws35{word-spacing:-7.701333pt;}
.ws14e{word-spacing:-7.685985pt;}
.ws5e{word-spacing:-7.526400pt;}
.ws203{word-spacing:-7.525333pt;}
.ws20c{word-spacing:-7.488000pt;}
.ws25c{word-spacing:-7.104000pt;}
.ws246{word-spacing:-6.988800pt;}
.ws24b{word-spacing:-6.936000pt;}
.ws26a{word-spacing:-6.931200pt;}
.ws22f{word-spacing:-6.916800pt;}
.ws258{word-spacing:-6.912000pt;}
.ws228{word-spacing:-6.892800pt;}
.ws262{word-spacing:-6.806400pt;}
.ws223{word-spacing:-6.729600pt;}
.ws219{word-spacing:-6.667200pt;}
.ws5d{word-spacing:-5.468800pt;}
.wsd{word-spacing:-4.910872pt;}
.wsf{word-spacing:-4.804207pt;}
.ws21e{word-spacing:-2.932800pt;}
.ws248{word-spacing:-1.363200pt;}
.ws1ae{word-spacing:-0.400000pt;}
.ws1ad{word-spacing:-0.362667pt;}
.ws10d{word-spacing:-0.325333pt;}
.ws1ab{word-spacing:-0.320000pt;}
.ws148{word-spacing:-0.309333pt;}
.ws123{word-spacing:-0.304000pt;}
.ws65{word-spacing:-0.277333pt;}
.ws31{word-spacing:-0.245333pt;}
.ws150{word-spacing:-0.240000pt;}
.ws7c{word-spacing:-0.234667pt;}
.ws10e{word-spacing:-0.224000pt;}
.ws1b7{word-spacing:-0.192000pt;}
.ws14f{word-spacing:-0.186667pt;}
.ws122{word-spacing:-0.165333pt;}
.ws10f{word-spacing:-0.154667pt;}
.ws17{word-spacing:-0.128000pt;}
.wsd2{word-spacing:-0.112000pt;}
.ws1ac{word-spacing:-0.101333pt;}
.ws1d0{word-spacing:-0.096000pt;}
.ws15e{word-spacing:-0.058667pt;}
.ws124{word-spacing:-0.042667pt;}
.ws256{word-spacing:-0.024000pt;}
.wsd1{word-spacing:-0.016000pt;}
.ws5f{word-spacing:0.000000pt;}
.ws33{word-spacing:0.037333pt;}
.ws16a{word-spacing:0.076800pt;}
.ws259{word-spacing:0.081600pt;}
.ws8c{word-spacing:0.112000pt;}
.ws10{word-spacing:0.138667pt;}
.ws243{word-spacing:0.168000pt;}
.ws30{word-spacing:0.176000pt;}
.wsa1{word-spacing:0.181333pt;}
.ws92{word-spacing:0.213333pt;}
.wsc2{word-spacing:0.256000pt;}
.ws81{word-spacing:0.394667pt;}
.ws107{word-spacing:0.416000pt;}
.ws1c3{word-spacing:0.421333pt;}
.ws108{word-spacing:0.453333pt;}
.wsee{word-spacing:0.480000pt;}
.wscc{word-spacing:0.490667pt;}
.wscb{word-spacing:0.549333pt;}
.ws1e9{word-spacing:0.554667pt;}
.wscd{word-spacing:0.560000pt;}
.ws22c{word-spacing:0.566400pt;}
.ws267{word-spacing:0.580800pt;}
.ws18c{word-spacing:0.602667pt;}
.ws265{word-spacing:0.628800pt;}
.ws1d5{word-spacing:0.629333pt;}
.ws18b{word-spacing:0.645333pt;}
.wsc0{word-spacing:0.672000pt;}
.wsa2{word-spacing:0.714667pt;}
.wsa5{word-spacing:0.720000pt;}
.wsf2{word-spacing:0.730667pt;}
.ws1f0{word-spacing:0.773333pt;}
.ws22b{word-spacing:0.777600pt;}
.wsa6{word-spacing:0.778667pt;}
.ws1c2{word-spacing:0.794667pt;}
.ws4f{word-spacing:0.805333pt;}
.wsc9{word-spacing:0.848000pt;}
.wsdc{word-spacing:0.858667pt;}
.wsb8{word-spacing:0.869333pt;}
.ws9a{word-spacing:0.874667pt;}
.ws22a{word-spacing:0.878400pt;}
.wsdb{word-spacing:0.906667pt;}
.ws9c{word-spacing:0.960000pt;}
.ws47{word-spacing:0.976000pt;}
.ws4c{word-spacing:0.981333pt;}
.ws137{word-spacing:1.082667pt;}
.ws130{word-spacing:1.093333pt;}
.ws1c7{word-spacing:1.104000pt;}
.ws9e{word-spacing:1.109333pt;}
.ws9b{word-spacing:1.114667pt;}
.ws220{word-spacing:1.180800pt;}
.ws252{word-spacing:1.190400pt;}
.ws4b{word-spacing:1.194667pt;}
.ws255{word-spacing:1.200000pt;}
.ws9d{word-spacing:1.280000pt;}
.ws46{word-spacing:1.322667pt;}
.ws16{word-spacing:1.333333pt;}
.ws1c{word-spacing:1.386667pt;}
.wsff{word-spacing:1.413333pt;}
.wsfe{word-spacing:1.429333pt;}
.wse2{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.461333pt;}
.ws14c{word-spacing:1.483200pt;}
.ws51{word-spacing:1.488000pt;}
.ws1e{word-spacing:1.514667pt;}
.ws1f{word-spacing:1.530667pt;}
.ws138{word-spacing:1.562667pt;}
.ws100{word-spacing:1.568000pt;}
.ws19d{word-spacing:1.621333pt;}
.ws37{word-spacing:1.626667pt;}
.ws50{word-spacing:1.664000pt;}
.ws20{word-spacing:1.690667pt;}
.ws22{word-spacing:1.696000pt;}
.ws24e{word-spacing:1.699200pt;}
.wsfd{word-spacing:1.712000pt;}
.ws1b{word-spacing:1.760000pt;}
.ws1b5{word-spacing:1.776000pt;}
.ws10c{word-spacing:1.850667pt;}
.ws21{word-spacing:1.856000pt;}
.ws131{word-spacing:1.893333pt;}
.ws14a{word-spacing:1.946667pt;}
.ws141{word-spacing:1.994667pt;}
.ws118{word-spacing:2.032000pt;}
.wsa8{word-spacing:2.042667pt;}
.ws2e{word-spacing:2.048000pt;}
.ws61{word-spacing:2.064000pt;}
.ws1f7{word-spacing:2.133333pt;}
.ws117{word-spacing:2.154667pt;}
.ws1ba{word-spacing:2.181333pt;}
.ws261{word-spacing:2.203200pt;}
.ws1c5{word-spacing:2.224000pt;}
.wsd4{word-spacing:2.272000pt;}
.ws2f{word-spacing:2.293333pt;}
.wsd3{word-spacing:2.314667pt;}
.ws109{word-spacing:2.325333pt;}
.ws197{word-spacing:2.426667pt;}
.ws111{word-spacing:2.453333pt;}
.wsd7{word-spacing:2.474667pt;}
.ws88{word-spacing:2.549333pt;}
.ws1b8{word-spacing:2.592000pt;}
.ws18{word-spacing:2.618667pt;}
.ws112{word-spacing:2.624000pt;}
.ws73{word-spacing:2.640000pt;}
.ws158{word-spacing:2.672000pt;}
.ws196{word-spacing:2.677333pt;}
.ws74{word-spacing:2.693333pt;}
.ws1bb{word-spacing:2.704000pt;}
.ws215{word-spacing:2.714667pt;}
.ws1ef{word-spacing:2.725333pt;}
.ws1c6{word-spacing:2.778667pt;}
.ws1d3{word-spacing:2.800000pt;}
.ws1b2{word-spacing:2.826667pt;}
.wsa7{word-spacing:2.896000pt;}
.ws129{word-spacing:2.901333pt;}
.ws128{word-spacing:2.906667pt;}
.wse6{word-spacing:2.923200pt;}
.ws1d1{word-spacing:2.944000pt;}
.ws1d2{word-spacing:2.986667pt;}
.ws106{word-spacing:3.040000pt;}
.wse5{word-spacing:3.076800pt;}
.ws84{word-spacing:3.082667pt;}
.ws18d{word-spacing:3.093333pt;}
.ws25a{word-spacing:3.100800pt;}
.ws3d{word-spacing:3.125333pt;}
.ws18e{word-spacing:3.136000pt;}
.ws18f{word-spacing:3.205333pt;}
.ws156{word-spacing:3.221333pt;}
.ws120{word-spacing:3.280000pt;}
.ws17f{word-spacing:3.290667pt;}
.ws250{word-spacing:3.297600pt;}
.ws1a1{word-spacing:3.301333pt;}
.ws121{word-spacing:3.328000pt;}
.ws1cb{word-spacing:3.336000pt;}
.ws1cc{word-spacing:3.379200pt;}
.ws180{word-spacing:3.381333pt;}
.ws1d6{word-spacing:3.392000pt;}
.ws79{word-spacing:3.408000pt;}
.ws14{word-spacing:3.434667pt;}
.ws1d7{word-spacing:3.456000pt;}
.ws1cd{word-spacing:3.460800pt;}
.ws15c{word-spacing:3.578667pt;}
.ws1ec{word-spacing:3.637333pt;}
.ws162{word-spacing:3.728000pt;}
.ws163{word-spacing:3.738667pt;}
.wsf7{word-spacing:3.760000pt;}
.ws173{word-spacing:3.775953pt;}
.ws57{word-spacing:3.777600pt;}
.ws15d{word-spacing:3.802667pt;}
.ws2b{word-spacing:3.808000pt;}
.ws172{word-spacing:3.814352pt;}
.ws11d{word-spacing:3.818667pt;}
.ws171{word-spacing:3.861285pt;}
.wsaf{word-spacing:3.872000pt;}
.ws3b{word-spacing:3.877333pt;}
.ws7f{word-spacing:3.882667pt;}
.wsca{word-spacing:3.893333pt;}
.ws234{word-spacing:3.912484pt;}
.ws13f{word-spacing:3.920000pt;}
.ws238{word-spacing:3.925284pt;}
.ws13e{word-spacing:3.930667pt;}
.ws25{word-spacing:3.936000pt;}
.ws7e{word-spacing:3.962667pt;}
.ws189{word-spacing:3.968000pt;}
.ws23c{word-spacing:3.976484pt;}
.ws236{word-spacing:3.985017pt;}
.ws177{word-spacing:3.997817pt;}
.ws18a{word-spacing:4.037333pt;}
.ws157{word-spacing:4.106667pt;}
.ws24{word-spacing:4.144000pt;}
.ws179{word-spacing:4.159948pt;}
.ws178{word-spacing:4.164215pt;}
.ws2c{word-spacing:4.181333pt;}
.ws235{word-spacing:4.189814pt;}
.ws13{word-spacing:4.192000pt;}
.ws23{word-spacing:4.197333pt;}
.ws2d{word-spacing:4.224000pt;}
.ws21b{word-spacing:4.267200pt;}
.ws99{word-spacing:4.309333pt;}
.ws25f{word-spacing:4.315200pt;}
.ws53{word-spacing:4.324800pt;}
.ws26c{word-spacing:4.329600pt;}
.ws1ce{word-spacing:4.334400pt;}
.ws188{word-spacing:4.357333pt;}
.ws242{word-spacing:4.372800pt;}
.ws25b{word-spacing:4.377600pt;}
.ws17b{word-spacing:4.382400pt;}
.ws269{word-spacing:4.387200pt;}
.ws187{word-spacing:4.394667pt;}
.ws58{word-spacing:4.396800pt;}
.ws24c{word-spacing:4.401600pt;}
.ws245{word-spacing:4.406400pt;}
.ws55{word-spacing:4.411200pt;}
.ws14d{word-spacing:4.420800pt;}
.wsd8{word-spacing:4.432000pt;}
.wsc3{word-spacing:4.490667pt;}
.ws222{word-spacing:4.502400pt;}
.ws17a{word-spacing:4.516800pt;}
.ws224{word-spacing:4.526400pt;}
.ws230{word-spacing:4.531200pt;}
.ws21f{word-spacing:4.545600pt;}
.ws10a{word-spacing:4.597333pt;}
.wse7{word-spacing:4.603200pt;}
.ws15a{word-spacing:4.613333pt;}
.ws229{word-spacing:4.699200pt;}
.ws10b{word-spacing:4.736000pt;}
.ws227{word-spacing:4.747200pt;}
.wsb0{word-spacing:4.762667pt;}
.ws22e{word-spacing:4.766400pt;}
.ws86{word-spacing:4.773333pt;}
.ws85{word-spacing:4.784000pt;}
.ws8d{word-spacing:4.789333pt;}
.ws2a{word-spacing:4.794667pt;}
.ws66{word-spacing:4.805333pt;}
.ws20f{word-spacing:4.816000pt;}
.ws44{word-spacing:4.842667pt;}
.wsb1{word-spacing:4.848000pt;}
.ws32{word-spacing:4.853333pt;}
.wsda{word-spacing:4.858667pt;}
.ws1a4{word-spacing:4.864000pt;}
.wsf1{word-spacing:4.874667pt;}
.ws207{word-spacing:4.901333pt;}
.ws77{word-spacing:4.917333pt;}
.ws110{word-spacing:4.922667pt;}
.ws217{word-spacing:4.928000pt;}
.ws139{word-spacing:4.933333pt;}
.ws1e4{word-spacing:4.944000pt;}
.ws116{word-spacing:5.002667pt;}
.wsfc{word-spacing:5.018667pt;}
.ws1b3{word-spacing:5.034667pt;}
.ws6a{word-spacing:5.040000pt;}
.wsfb{word-spacing:5.098667pt;}
.ws27{word-spacing:5.104000pt;}
.ws26{word-spacing:5.109333pt;}
.ws168{word-spacing:5.114667pt;}
.ws29{word-spacing:5.120000pt;}
.ws69{word-spacing:5.146667pt;}
.ws6d{word-spacing:5.312000pt;}
.ws159{word-spacing:5.317333pt;}
.ws1c4{word-spacing:5.349333pt;}
.wsf5{word-spacing:5.392000pt;}
.ws6e{word-spacing:5.408000pt;}
.ws1e0{word-spacing:5.440000pt;}
.ws16b{word-spacing:5.448000pt;}
.ws16c{word-spacing:5.481600pt;}
.ws16d{word-spacing:5.510400pt;}
.ws8b{word-spacing:5.520000pt;}
.ws1a5{word-spacing:5.562667pt;}
.ws1bf{word-spacing:5.578667pt;}
.wsa4{word-spacing:5.600000pt;}
.ws155{word-spacing:5.621333pt;}
.wsa3{word-spacing:5.632000pt;}
.ws15{word-spacing:5.722667pt;}
.ws13a{word-spacing:5.770667pt;}
.ws190{word-spacing:5.781333pt;}
.wse1{word-spacing:5.856000pt;}
.ws93{word-spacing:5.920000pt;}
.ws195{word-spacing:6.000000pt;}
.ws161{word-spacing:6.010667pt;}
.ws48{word-spacing:6.053333pt;}
.ws102{word-spacing:6.181333pt;}
.ws17d{word-spacing:6.213333pt;}
.ws82{word-spacing:6.224000pt;}
.wse3{word-spacing:6.259200pt;}
.ws21c{word-spacing:6.302400pt;}
.ws1e8{word-spacing:6.304000pt;}
.ws8f{word-spacing:6.309333pt;}
.ws103{word-spacing:6.346667pt;}
.ws244{word-spacing:6.547200pt;}
.wsf8{word-spacing:6.549333pt;}
.ws136{word-spacing:6.576000pt;}
.ws153{word-spacing:6.618667pt;}
.ws101{word-spacing:6.709333pt;}
.ws152{word-spacing:6.714667pt;}
.ws154{word-spacing:6.752000pt;}
.ws22d{word-spacing:6.758400pt;}
.ws80{word-spacing:6.768000pt;}
.wsbc{word-spacing:6.789333pt;}
.ws64{word-spacing:6.912000pt;}
.ws13b{word-spacing:6.928000pt;}
.wsad{word-spacing:6.933333pt;}
.wsac{word-spacing:7.013333pt;}
.ws249{word-spacing:7.075200pt;}
.ws11c{word-spacing:7.120000pt;}
.ws7a{word-spacing:7.130667pt;}
.ws1a{word-spacing:7.210667pt;}
.ws13c{word-spacing:7.258667pt;}
.ws1cf{word-spacing:7.269333pt;}
.ws72{word-spacing:7.322667pt;}
.ws194{word-spacing:7.386667pt;}
.ws3a{word-spacing:7.429333pt;}
.ws1c9{word-spacing:7.461333pt;}
.ws7d{word-spacing:7.530667pt;}
.wsbb{word-spacing:7.546667pt;}
.ws39{word-spacing:7.557333pt;}
.ws214{word-spacing:7.610667pt;}
.ws1c8{word-spacing:7.696000pt;}
.ws186{word-spacing:7.824000pt;}
.ws113{word-spacing:7.909333pt;}
.ws114{word-spacing:7.914667pt;}
.ws21d{word-spacing:7.963200pt;}
.ws183{word-spacing:7.968000pt;}
.wsd5{word-spacing:7.973333pt;}
.ws1be{word-spacing:8.032000pt;}
.wsd6{word-spacing:8.037333pt;}
.ws184{word-spacing:8.112000pt;}
.ws105{word-spacing:8.197333pt;}
.ws1d9{word-spacing:8.304000pt;}
.ws140{word-spacing:8.314667pt;}
.ws104{word-spacing:8.341333pt;}
.ws1da{word-spacing:8.357333pt;}
.ws13d{word-spacing:8.362667pt;}
.wsf4{word-spacing:8.517333pt;}
.ws19{word-spacing:8.581333pt;}
.wsf3{word-spacing:8.586667pt;}
.ws15f{word-spacing:8.618667pt;}
.ws1e2{word-spacing:8.645333pt;}
.wsaa{word-spacing:8.666667pt;}
.ws160{word-spacing:8.720000pt;}
.ws3e{word-spacing:8.736000pt;}
.wsab{word-spacing:8.762667pt;}
.ws4e{word-spacing:8.794667pt;}
.ws60{word-spacing:8.880000pt;}
.wsa9{word-spacing:8.944000pt;}
.wse0{word-spacing:9.024000pt;}
.wseb{word-spacing:9.109333pt;}
.ws1fa{word-spacing:9.133333pt;}
.ws263{word-spacing:9.148800pt;}
.wsed{word-spacing:9.178667pt;}
.ws89{word-spacing:9.200000pt;}
.wsec{word-spacing:9.264000pt;}
.ws1f6{word-spacing:9.306667pt;}
.ws185{word-spacing:9.322667pt;}
.ws1dd{word-spacing:9.338667pt;}
.ws12b{word-spacing:9.365333pt;}
.ws1dc{word-spacing:9.376000pt;}
.ws12d{word-spacing:9.429333pt;}
.ws49{word-spacing:9.434667pt;}
.ws12c{word-spacing:9.461333pt;}
.ws1bc{word-spacing:9.520000pt;}
.ws70{word-spacing:9.674667pt;}
.wse{word-spacing:9.710933pt;}
.ws1bd{word-spacing:9.712000pt;}
.wsa0{word-spacing:9.850667pt;}
.ws247{word-spacing:9.902400pt;}
.ws1c0{word-spacing:9.941333pt;}
.ws68{word-spacing:9.978667pt;}
.ws26b{word-spacing:10.022400pt;}
.ws7b{word-spacing:10.128000pt;}
.ws1c1{word-spacing:10.309333pt;}
.ws17c{word-spacing:10.341333pt;}
.ws1eb{word-spacing:10.368000pt;}
.ws19f{word-spacing:10.458667pt;}
.ws127{word-spacing:10.464000pt;}
.ws1a0{word-spacing:10.485333pt;}
.ws126{word-spacing:10.533333pt;}
.ws125{word-spacing:10.602667pt;}
.ws19e{word-spacing:10.624000pt;}
.ws264{word-spacing:10.680000pt;}
.wsfa{word-spacing:10.805333pt;}
.ws1b0{word-spacing:10.837333pt;}
.ws1af{word-spacing:10.848000pt;}
.wsba{word-spacing:10.853333pt;}
.ws1fd{word-spacing:10.906667pt;}
.wsb9{word-spacing:10.922667pt;}
.ws97{word-spacing:11.061333pt;}
.ws1f1{word-spacing:11.136000pt;}
.ws225{word-spacing:11.155200pt;}
.ws1a8{word-spacing:11.194667pt;}
.ws1e3{word-spacing:11.216000pt;}
.wsd0{word-spacing:11.264000pt;}
.wscf{word-spacing:11.285333pt;}
.ws12a{word-spacing:11.301333pt;}
.ws151{word-spacing:11.456000pt;}
.wsf9{word-spacing:11.530667pt;}
.ws62{word-spacing:11.546667pt;}
.wsef{word-spacing:11.552000pt;}
.ws1e5{word-spacing:11.557333pt;}
.ws3f{word-spacing:11.600000pt;}
.ws164{word-spacing:11.744000pt;}
.ws36{word-spacing:11.813333pt;}
.ws1de{word-spacing:11.818667pt;}
.ws1a6{word-spacing:11.872000pt;}
.ws8e{word-spacing:11.909333pt;}
.ws24d{word-spacing:11.961600pt;}
.ws1a7{word-spacing:11.973333pt;}
.ws67{word-spacing:12.005333pt;}
.ws257{word-spacing:12.024000pt;}
.wsf6{word-spacing:12.048000pt;}
.ws1ed{word-spacing:12.272000pt;}
.ws15b{word-spacing:12.304000pt;}
.ws211{word-spacing:12.352000pt;}
.ws182{word-spacing:12.474667pt;}
.ws181{word-spacing:12.597333pt;}
.ws11f{word-spacing:12.784000pt;}
.ws167{word-spacing:12.837333pt;}
.ws1e7{word-spacing:12.858667pt;}
.ws1e6{word-spacing:12.864000pt;}
.ws221{word-spacing:12.883200pt;}
.ws11e{word-spacing:12.997333pt;}
.wsc8{word-spacing:13.029333pt;}
.ws87{word-spacing:13.056000pt;}
.ws213{word-spacing:13.082667pt;}
.ws83{word-spacing:13.093333pt;}
.wsce{word-spacing:13.178667pt;}
.wsf0{word-spacing:13.264000pt;}
.ws43{word-spacing:13.365333pt;}
.ws251{word-spacing:13.473600pt;}
.ws1ee{word-spacing:13.504000pt;}
.wsdd{word-spacing:13.712000pt;}
.ws90{word-spacing:13.781333pt;}
.ws98{word-spacing:13.786667pt;}
.ws91{word-spacing:13.802667pt;}
.ws115{word-spacing:14.085333pt;}
.ws63{word-spacing:14.106667pt;}
.ws1f5{word-spacing:14.165333pt;}
.ws268{word-spacing:14.212800pt;}
.ws218{word-spacing:14.289600pt;}
.ws119{word-spacing:14.298667pt;}
.ws11a{word-spacing:14.320000pt;}
.ws76{word-spacing:14.410667pt;}
.ws12f{word-spacing:14.565333pt;}
.ws71{word-spacing:14.592000pt;}
.ws12e{word-spacing:14.778667pt;}
.ws41{word-spacing:14.853333pt;}
.ws1aa{word-spacing:14.896000pt;}
.ws1a9{word-spacing:14.928000pt;}
.ws42{word-spacing:14.949333pt;}
.wsbf{word-spacing:15.045333pt;}
.ws260{word-spacing:15.091200pt;}
.ws1a3{word-spacing:15.184000pt;}
.ws132{word-spacing:15.232000pt;}
.ws1a2{word-spacing:15.397333pt;}
.ws146{word-spacing:15.488000pt;}
.ws1d8{word-spacing:15.578667pt;}
.wsc4{word-spacing:15.792000pt;}
.ws78{word-spacing:15.904000pt;}
.wsb2{word-spacing:15.962667pt;}
.ws6c{word-spacing:15.968000pt;}
.wsb3{word-spacing:15.978667pt;}
.wsae{word-spacing:16.021333pt;}
.ws1b4{word-spacing:16.085333pt;}
.ws8a{word-spacing:16.224000pt;}
.ws40{word-spacing:16.250667pt;}
.ws4a{word-spacing:16.432000pt;}
.ws75{word-spacing:16.501333pt;}
.ws1b6{word-spacing:16.592000pt;}
.ws1fc{word-spacing:16.608000pt;}
.ws95{word-spacing:16.741333pt;}
.ws9f{word-spacing:16.805333pt;}
.ws12{word-spacing:17.029333pt;}
.ws56{word-spacing:17.121600pt;}
.wsb7{word-spacing:17.402667pt;}
.ws1df{word-spacing:17.408000pt;}
.wsb6{word-spacing:17.520000pt;}
.wsc5{word-spacing:17.786667pt;}
.ws23f{word-spacing:17.788800pt;}
.ws1f4{word-spacing:17.792000pt;}
.ws23e{word-spacing:17.880000pt;}
.ws240{word-spacing:17.908800pt;}
.ws135{word-spacing:18.016000pt;}
.ws241{word-spacing:18.043200pt;}
.wse4{word-spacing:18.456000pt;}
.ws19a{word-spacing:18.469333pt;}
.ws149{word-spacing:18.501333pt;}
.wsb5{word-spacing:18.512000pt;}
.ws3c{word-spacing:18.624000pt;}
.ws11b{word-spacing:18.645333pt;}
.ws19b{word-spacing:18.757333pt;}
.ws1b1{word-spacing:18.922667pt;}
.ws134{word-spacing:19.002667pt;}
.ws226{word-spacing:19.075200pt;}
.wsc6{word-spacing:19.418667pt;}
.ws198{word-spacing:19.472000pt;}
.ws199{word-spacing:19.552000pt;}
.ws216{word-spacing:19.813333pt;}
.ws96{word-spacing:19.829333pt;}
.ws25e{word-spacing:20.049600pt;}
.ws24a{word-spacing:20.356800pt;}
.ws25d{word-spacing:20.366400pt;}
.ws17e{word-spacing:20.400000pt;}
.ws142{word-spacing:20.426667pt;}
.ws133{word-spacing:20.581333pt;}
.ws45{word-spacing:21.232000pt;}
.ws6f{word-spacing:21.344000pt;}
.ws1ea{word-spacing:21.488000pt;}
.ws52{word-spacing:21.537600pt;}
.wsde{word-spacing:21.722667pt;}
.wsd9{word-spacing:21.728000pt;}
.ws11{word-spacing:22.021333pt;}
.wsea{word-spacing:22.069333pt;}
.ws1f8{word-spacing:22.330667pt;}
.ws19c{word-spacing:22.522667pt;}
.ws143{word-spacing:22.533333pt;}
.wsb4{word-spacing:22.554667pt;}
.wsdf{word-spacing:22.581333pt;}
.ws1f2{word-spacing:22.586667pt;}
.ws1d4{word-spacing:22.592000pt;}
.wsc7{word-spacing:22.597333pt;}
.ws4d{word-spacing:22.613333pt;}
.ws147{word-spacing:22.629333pt;}
.wsbd{word-spacing:22.634667pt;}
.ws145{word-spacing:22.640000pt;}
.ws1f3{word-spacing:22.650667pt;}
.ws1db{word-spacing:22.661333pt;}
.ws166{word-spacing:22.672000pt;}
.ws38{word-spacing:22.677333pt;}
.ws191{word-spacing:22.682667pt;}
.ws1e1{word-spacing:22.688000pt;}
.wsbe{word-spacing:22.752000pt;}
.ws193{word-spacing:22.757333pt;}
.ws94{word-spacing:22.762667pt;}
.ws144{word-spacing:22.784000pt;}
.ws192{word-spacing:22.800000pt;}
.ws6b{word-spacing:22.842667pt;}
.ws165{word-spacing:22.890667pt;}
.ws54{word-spacing:45.105600pt;}
.ws239{word-spacing:123.706187pt;}
.ws23a{word-spacing:123.710454pt;}
.ws23d{word-spacing:143.968334pt;}
.ws237{word-spacing:159.678004pt;}
.ws23b{word-spacing:185.981675pt;}
.wsc{word-spacing:285.802133pt;}
.ws174{word-spacing:303.501273pt;}
.ws175{word-spacing:313.830744pt;}
.ws176{word-spacing:323.810352pt;}
.wse9{word-spacing:676.689141pt;}
._11{margin-left:-2650.659133pt;}
._1f{margin-left:-1.099200pt;}
._c{width:0.890667pt;}
._10{width:12.458667pt;}
._9{width:13.664000pt;}
._8{width:15.253333pt;}
._2{width:16.905600pt;}
._6{width:17.914667pt;}
._7{width:19.610667pt;}
._b{width:20.997333pt;}
._a{width:22.229333pt;}
._1{width:23.919816pt;}
._d{width:25.504000pt;}
._19{width:26.629333pt;}
._0{width:27.580638pt;}
._f{width:28.613333pt;}
._14{width:29.738667pt;}
._5{width:30.688000pt;}
._15{width:32.218667pt;}
._18{width:34.074667pt;}
._13{width:35.104000pt;}
._e{width:36.357333pt;}
._16{width:37.514667pt;}
._22{width:88.323163pt;}
._20{width:96.681458pt;}
._12{width:98.967360pt;}
._21{width:107.313859pt;}
._28{width:118.889181pt;}
._25{width:128.915722pt;}
._27{width:149.617330pt;}
._24{width:159.899868pt;}
._2b{width:169.875210pt;}
._1a{width:175.404741pt;}
._2a{width:180.153481pt;}
._4{width:249.439772pt;}
._1e{width:275.691487pt;}
._3{width:406.940234pt;}
._23{width:449.466382pt;}
._26{width:453.703129pt;}
._29{width:485.237668pt;}
._1c{width:513.606380pt;}
._1d{width:523.585988pt;}
._1b{width:533.915459pt;}
._17{width:674.948800pt;}
.fs11{font-size:28.440000pt;}
.fs10{font-size:28.585067pt;}
.fs12{font-size:31.995733pt;}
.fsc{font-size:32.000000pt;}
.fsf{font-size:32.158933pt;}
.fsa{font-size:33.600000pt;}
.fs16{font-size:34.832000pt;}
.fs9{font-size:35.551467pt;}
.fs8{font-size:35.732800pt;}
.fs6{font-size:36.665600pt;}
.fsd{font-size:37.333333pt;}
.fsb{font-size:39.999467pt;}
.fs4{font-size:42.666133pt;}
.fse{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs17{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs14{font-size:56.000000pt;}
.fs15{font-size:63.332267pt;}
.fs5{font-size:66.666133pt;}
.fs1{font-size:69.332800pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:90.666133pt;}
.fs13{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:11.943333pt;}
.yd5{bottom:20.107867pt;}
.y4d{bottom:24.492133pt;}
.yd4{bottom:28.799867pt;}
.y4b{bottom:31.295147pt;}
.y4c{bottom:33.184133pt;}
.y4a{bottom:39.004667pt;}
.y13e{bottom:53.291200pt;}
.y13b{bottom:53.291467pt;}
.y97{bottom:53.291600pt;}
.ycf{bottom:53.292133pt;}
.y170{bottom:53.292267pt;}
.y185{bottom:53.292533pt;}
.y124{bottom:53.292667pt;}
.y1ab{bottom:53.294000pt;}
.y38{bottom:61.077067pt;}
.y36{bottom:61.078000pt;}
.y1e2{bottom:66.671467pt;}
.y37{bottom:66.973200pt;}
.y13d{bottom:67.955200pt;}
.yce{bottom:67.956133pt;}
.y1aa{bottom:67.958000pt;}
.y96{bottom:68.031600pt;}
.y184{bottom:68.107200pt;}
.y16f{bottom:68.107333pt;}
.y13a{bottom:68.258133pt;}
.y138{bottom:68.258933pt;}
.yfe{bottom:68.334267pt;}
.y123{bottom:68.335333pt;}
.y139{bottom:74.229867pt;}
.y35{bottom:75.970000pt;}
.y1e1{bottom:79.975867pt;}
.y13c{bottom:82.619200pt;}
.ycd{bottom:82.621467pt;}
.y1a9{bottom:82.622000pt;}
.y95{bottom:82.771600pt;}
.y93{bottom:82.772667pt;}
.y16e{bottom:82.847333pt;}
.y183{bottom:82.850000pt;}
.y137{bottom:83.225600pt;}
.yfd{bottom:83.300933pt;}
.y122{bottom:83.302000pt;}
.y94{bottom:88.743200pt;}
.y34{bottom:90.860667pt;}
.y1e0{bottom:93.354667pt;}
.y48{bottom:95.471467pt;}
.ycc{bottom:97.285467pt;}
.y1a8{bottom:97.287333pt;}
.y92{bottom:97.512667pt;}
.y16d{bottom:97.587333pt;}
.y182{bottom:97.590000pt;}
.y136{bottom:98.192267pt;}
.yfc{bottom:98.267867pt;}
.y121{bottom:98.268667pt;}
.y33{bottom:105.600667pt;}
.y1df{bottom:106.659067pt;}
.y47{bottom:110.136667pt;}
.ycb{bottom:111.950000pt;}
.y1a7{bottom:111.951333pt;}
.y91{bottom:112.252667pt;}
.y16c{bottom:112.327333pt;}
.y181{bottom:112.406000pt;}
.y135{bottom:113.159333pt;}
.yfb{bottom:113.235333pt;}
.y152{bottom:114.746400pt;}
.y1de{bottom:119.963467pt;}
.y151{bottom:120.113333pt;}
.y32{bottom:120.492667pt;}
.y46{bottom:124.800667pt;}
.yca{bottom:126.614000pt;}
.y1a6{bottom:126.615333pt;}
.y90{bottom:126.992667pt;}
.y16b{bottom:127.067333pt;}
.y180{bottom:127.146000pt;}
.yfa{bottom:128.126000pt;}
.y120{bottom:128.202000pt;}
.y11e{bottom:128.203333pt;}
.y14e{bottom:132.132609pt;}
.y150{bottom:132.132667pt;}
.y1dd{bottom:133.342267pt;}
.y11f{bottom:134.172667pt;}
.y31{bottom:135.383333pt;}
.y14f{bottom:136.819333pt;}
.y45{bottom:139.464667pt;}
.yc9{bottom:141.279333pt;}
.y1a5{bottom:141.280667pt;}
.y8f{bottom:141.732667pt;}
.y16a{bottom:141.808667pt;}
.y17f{bottom:141.810000pt;}
.y134{bottom:143.018000pt;}
.yf9{bottom:143.092667pt;}
.y11d{bottom:143.246000pt;}
.y14d{bottom:146.646561pt;}
.y1dc{bottom:146.646667pt;}
.y30{bottom:150.274000pt;}
.y2e{bottom:150.275333pt;}
.yc8{bottom:156.019333pt;}
.y1a4{bottom:156.020667pt;}
.y2f{bottom:156.170000pt;}
.y8e{bottom:156.472667pt;}
.y169{bottom:156.624667pt;}
.y17e{bottom:156.626000pt;}
.y133{bottom:157.984667pt;}
.yf8{bottom:158.059333pt;}
.y11c{bottom:158.212667pt;}
.y1db{bottom:159.949867pt;}
.y14c{bottom:161.235178pt;}
.y2d{bottom:165.166000pt;}
.yc6{bottom:170.684667pt;}
.y8d{bottom:171.214000pt;}
.y168{bottom:171.364667pt;}
.y17d{bottom:171.366000pt;}
.y132{bottom:172.951333pt;}
.yf7{bottom:173.028667pt;}
.y11b{bottom:173.179333pt;}
.y1da{bottom:173.329867pt;}
.y44{bottom:173.482000pt;}
.y14b{bottom:175.823796pt;}
.yc7{bottom:176.579333pt;}
.y2c{bottom:180.058000pt;}
.yc5{bottom:185.348667pt;}
.y1a3{bottom:185.350000pt;}
.y8c{bottom:185.954000pt;}
.y167{bottom:186.104667pt;}
.y17c{bottom:186.106000pt;}
.y1d9{bottom:186.634267pt;}
.y131{bottom:187.918000pt;}
.yf6{bottom:188.070000pt;}
.y11a{bottom:188.146000pt;}
.y43{bottom:189.054000pt;}
.y14a{bottom:190.413480pt;}
.y2b{bottom:194.948667pt;}
.y1d8{bottom:200.013067pt;}
.yc4{bottom:200.014000pt;}
.y8b{bottom:200.618000pt;}
.y166{bottom:200.919333pt;}
.y17b{bottom:200.922000pt;}
.y130{bottom:202.886000pt;}
.yf5{bottom:203.036667pt;}
.y119{bottom:203.112667pt;}
.y42{bottom:204.700667pt;}
.y149{bottom:205.002098pt;}
.y2a{bottom:209.840667pt;}
.y1d7{bottom:213.317467pt;}
.yc3{bottom:214.678000pt;}
.y8a{bottom:215.358000pt;}
.y165{bottom:215.659333pt;}
.y17a{bottom:215.662000pt;}
.y12f{bottom:217.852667pt;}
.yf4{bottom:218.003333pt;}
.y118{bottom:218.155333pt;}
.y148{bottom:219.590716pt;}
.y41{bottom:220.347333pt;}
.y29{bottom:224.731333pt;}
.y1d6{bottom:226.620667pt;}
.yc2{bottom:229.342000pt;}
.y1a2{bottom:229.343333pt;}
.y89{bottom:230.098000pt;}
.y164{bottom:230.402000pt;}
.y12e{bottom:232.743333pt;}
.yf3{bottom:232.971333pt;}
.y117{bottom:233.122000pt;}
.y147{bottom:234.179333pt;}
.y40{bottom:235.995333pt;}
.y1d5{bottom:239.092667pt;}
.y28{bottom:239.623333pt;}
.yc1{bottom:244.007333pt;}
.y88{bottom:244.838000pt;}
.y163{bottom:245.142000pt;}
.y12d{bottom:247.710000pt;}
.yf2{bottom:248.012667pt;}
.y116{bottom:248.088667pt;}
.y146{bottom:251.413699pt;}
.y3f{bottom:251.642000pt;}
.y27{bottom:254.514000pt;}
.yc0{bottom:258.671333pt;}
.y87{bottom:259.578000pt;}
.y162{bottom:259.882000pt;}
.y179{bottom:259.958000pt;}
.y12c{bottom:262.678000pt;}
.yf1{bottom:262.980667pt;}
.y115{bottom:263.056667pt;}
.y3c{bottom:267.286400pt;}
.y3e{bottom:267.288667pt;}
.y26{bottom:269.404667pt;}
.y24{bottom:269.406000pt;}
.y145{bottom:270.008667pt;}
.y3d{bottom:273.184667pt;}
.ybf{bottom:273.335333pt;}
.y1a1{bottom:273.336667pt;}
.y86{bottom:274.318000pt;}
.y161{bottom:274.622000pt;}
.y178{bottom:274.698000pt;}
.y25{bottom:275.300667pt;}
.y12b{bottom:277.644667pt;}
.yf0{bottom:277.947333pt;}
.y114{bottom:278.023333pt;}
.y3b{bottom:282.857067pt;}
.y23{bottom:284.298000pt;}
.y1d4{bottom:287.850000pt;}
.y1a0{bottom:288.000667pt;}
.ybe{bottom:288.002000pt;}
.y85{bottom:289.058000pt;}
.y160{bottom:289.436667pt;}
.y177{bottom:289.438000pt;}
.y12a{bottom:292.611333pt;}
.yef{bottom:292.915333pt;}
.y113{bottom:293.064667pt;}
.y3a{bottom:298.505067pt;}
.y22{bottom:299.188667pt;}
.y1d3{bottom:302.514000pt;}
.y19f{bottom:302.664667pt;}
.y84{bottom:303.798000pt;}
.y15f{bottom:304.176667pt;}
.y176{bottom:304.252667pt;}
.y144{bottom:307.275333pt;}
.y129{bottom:307.578000pt;}
.y111{bottom:307.880667pt;}
.yee{bottom:307.956667pt;}
.y112{bottom:313.776667pt;}
.y21{bottom:314.080667pt;}
.y39{bottom:314.151733pt;}
.y1d2{bottom:317.178000pt;}
.y19e{bottom:317.330000pt;}
.y50{bottom:317.506667pt;}
.y83{bottom:318.538000pt;}
.y15e{bottom:318.918000pt;}
.y175{bottom:318.992667pt;}
.y4f{bottom:320.186667pt;}
.y143{bottom:321.939333pt;}
.y128{bottom:322.394000pt;}
.y110{bottom:322.847333pt;}
.yed{bottom:322.923333pt;}
.yd2{bottom:329.272533pt;}
.y1d1{bottom:331.843333pt;}
.y19d{bottom:331.994000pt;}
.y82{bottom:333.279333pt;}
.y15d{bottom:333.732667pt;}
.y174{bottom:333.734000pt;}
.y142{bottom:336.604667pt;}
.y127{bottom:337.284667pt;}
.y10f{bottom:337.814000pt;}
.yec{bottom:337.890000pt;}
.yd1{bottom:342.652133pt;}
.y1d0{bottom:346.507333pt;}
.y19c{bottom:346.659333pt;}
.y81{bottom:347.944667pt;}
.y15c{bottom:348.472667pt;}
.y173{bottom:348.474000pt;}
.y10e{bottom:352.782000pt;}
.yeb{bottom:352.858000pt;}
.yd0{bottom:355.955333pt;}
.y20{bottom:360.190000pt;}
.y1cf{bottom:361.171333pt;}
.y19b{bottom:361.324667pt;}
.y80{bottom:362.684667pt;}
.y15b{bottom:363.214000pt;}
.y141{bottom:366.009467pt;}
.y10d{bottom:367.824667pt;}
.yea{bottom:367.899333pt;}
.y1f{bottom:374.854000pt;}
.y1ce{bottom:375.004667pt;}
.y19a{bottom:375.988667pt;}
.y7f{bottom:377.424667pt;}
.y15a{bottom:377.954000pt;}
.y140{bottom:379.313467pt;}
.ye8{bottom:382.716667pt;}
.y10c{bottom:382.791333pt;}
.ye9{bottom:388.611333pt;}
.y199{bottom:390.654000pt;}
.y7e{bottom:392.164667pt;}
.y13f{bottom:392.616667pt;}
.y159{bottom:392.768667pt;}
.y172{bottom:392.770000pt;}
.y1e{bottom:393.524667pt;}
.ye7{bottom:397.683333pt;}
.y10b{bottom:397.758000pt;}
.y198{bottom:405.318000pt;}
.y7d{bottom:406.904667pt;}
.y158{bottom:407.510000pt;}
.y1d{bottom:408.190000pt;}
.y1cd{bottom:409.095333pt;}
.ye6{bottom:412.650000pt;}
.y10a{bottom:412.724667pt;}
.y197{bottom:419.982000pt;}
.y7c{bottom:421.644667pt;}
.y157{bottom:422.250000pt;}
.y1c{bottom:422.854000pt;}
.ye5{bottom:427.692667pt;}
.y1cc{bottom:428.220667pt;}
.y196{bottom:434.647333pt;}
.y7b{bottom:436.308667pt;}
.y156{bottom:437.064667pt;}
.y1b{bottom:437.519333pt;}
.ye4{bottom:442.659333pt;}
.y109{bottom:442.734000pt;}
.y1cb{bottom:446.287333pt;}
.y195{bottom:449.311333pt;}
.y7a{bottom:451.048667pt;}
.y155{bottom:451.804667pt;}
.y1a{bottom:452.183333pt;}
.ye3{bottom:457.626000pt;}
.y108{bottom:457.700667pt;}
.y1ca{bottom:460.951333pt;}
.y194{bottom:463.975333pt;}
.y79{bottom:465.788667pt;}
.y154{bottom:466.544667pt;}
.y19{bottom:466.848667pt;}
.ye2{bottom:472.594000pt;}
.y106{bottom:472.667333pt;}
.y107{bottom:478.563333pt;}
.y193{bottom:478.640667pt;}
.y1c9{bottom:480.075333pt;}
.y78{bottom:480.528667pt;}
.y76{bottom:480.530000pt;}
.y171{bottom:481.281600pt;}
.y153{bottom:481.284667pt;}
.y18{bottom:481.512667pt;}
.y77{bottom:486.424667pt;}
.ye1{bottom:487.635333pt;}
.y222{bottom:488.012667pt;}
.y192{bottom:493.304667pt;}
.y75{bottom:495.270000pt;}
.y17{bottom:496.176667pt;}
.ybd{bottom:497.310000pt;}
.y221{bottom:501.317067pt;}
.ye0{bottom:502.602000pt;}
.y104{bottom:502.603333pt;}
.y191{bottom:507.972667pt;}
.y105{bottom:508.572667pt;}
.y1c8{bottom:508.800667pt;}
.y187{bottom:510.009467pt;}
.y74{bottom:510.010000pt;}
.y16{bottom:510.842000pt;}
.ybc{bottom:511.975333pt;}
.y220{bottom:514.621467pt;}
.ydf{bottom:517.568667pt;}
.y103{bottom:517.646000pt;}
.y190{bottom:522.636667pt;}
.y186{bottom:523.312667pt;}
.y1c7{bottom:523.464667pt;}
.y73{bottom:524.750000pt;}
.y15{bottom:525.506000pt;}
.ybb{bottom:526.639333pt;}
.y21f{bottom:528.000267pt;}
.yde{bottom:532.536667pt;}
.y102{bottom:532.612667pt;}
.y18f{bottom:537.300667pt;}
.y72{bottom:539.490000pt;}
.y14{bottom:540.172667pt;}
.yba{bottom:541.303333pt;}
.yb8{bottom:541.304667pt;}
.y1c6{bottom:543.495333pt;}
.yb9{bottom:547.199333pt;}
.y101{bottom:547.427333pt;}
.ydd{bottom:547.579333pt;}
.y18e{bottom:551.966000pt;}
.y71{bottom:554.230000pt;}
.y21e{bottom:554.609067pt;}
.y13{bottom:554.836667pt;}
.yb7{bottom:555.968667pt;}
.y1c5{bottom:558.162000pt;}
.ydc{bottom:562.394000pt;}
.y18d{bottom:566.630000pt;}
.y21d{bottom:567.987867pt;}
.y70{bottom:568.970000pt;}
.y6e{bottom:568.971333pt;}
.y12{bottom:569.500667pt;}
.yb6{bottom:570.634000pt;}
.y1c4{bottom:572.826000pt;}
.y6f{bottom:574.866000pt;}
.ydb{bottom:577.360667pt;}
.y100{bottom:577.362000pt;}
.y21c{bottom:581.292267pt;}
.y18c{bottom:581.295333pt;}
.y6d{bottom:583.636667pt;}
.y11{bottom:584.166000pt;}
.yb5{bottom:585.298000pt;}
.y1c3{bottom:587.490000pt;}
.yda{bottom:592.327333pt;}
.yff{bottom:592.403333pt;}
.y21b{bottom:594.671067pt;}
.y18b{bottom:595.959333pt;}
.y6c{bottom:598.376667pt;}
.y10{bottom:598.830000pt;}
.yb4{bottom:599.962000pt;}
.y1c2{bottom:602.155333pt;}
.yd8{bottom:607.370000pt;}
.y21a{bottom:607.975467pt;}
.y18a{bottom:610.623333pt;}
.y6b{bottom:613.116667pt;}
.yd9{bottom:613.266000pt;}
.yf{bottom:613.494000pt;}
.yb3{bottom:614.627333pt;}
.y1c1{bottom:616.819333pt;}
.y219{bottom:621.279867pt;}
.yd7{bottom:622.336667pt;}
.y189{bottom:625.288667pt;}
.y6a{bottom:627.856667pt;}
.ye{bottom:628.159333pt;}
.yb2{bottom:629.291333pt;}
.y1c0{bottom:631.483333pt;}
.y218{bottom:634.658667pt;}
.yd6{bottom:637.303333pt;}
.y188{bottom:640.028667pt;}
.y69{bottom:642.596667pt;}
.yd{bottom:642.823333pt;}
.yb1{bottom:643.956667pt;}
.y1bf{bottom:646.148667pt;}
.y217{bottom:647.963067pt;}
.y68{bottom:657.336667pt;}
.yc{bottom:657.487333pt;}
.yb0{bottom:658.620667pt;}
.y1be{bottom:660.812667pt;}
.y216{bottom:661.341867pt;}
.y126{bottom:665.953867pt;}
.y67{bottom:672.000667pt;}
.yb{bottom:672.152667pt;}
.yaf{bottom:673.286000pt;}
.y215{bottom:674.646267pt;}
.y1bd{bottom:675.476667pt;}
.y1fe{bottom:675.553467pt;}
.y125{bottom:679.332667pt;}
.y66{bottom:686.740667pt;}
.ya{bottom:686.816667pt;}
.yae{bottom:687.950000pt;}
.y214{bottom:687.950667pt;}
.y1fd{bottom:688.856667pt;}
.y1fc{bottom:694.223333pt;}
.y1bc{bottom:694.602000pt;}
.y213{bottom:701.329467pt;}
.y9{bottom:701.480667pt;}
.yad{bottom:702.615333pt;}
.y1fb{bottom:706.242000pt;}
.y1f9{bottom:706.243431pt;}
.y1fa{bottom:710.928667pt;}
.y212{bottom:714.633867pt;}
.y65{bottom:716.220667pt;}
.yac{bottom:717.279333pt;}
.y1bb{bottom:719.395333pt;}
.y1f8{bottom:720.832049pt;}
.y211{bottom:728.012667pt;}
.y64{bottom:730.960667pt;}
.yab{bottom:731.943333pt;}
.y7{bottom:732.774000pt;}
.y1ba{bottom:734.059333pt;}
.y8{bottom:734.664667pt;}
.y1f7{bottom:735.420667pt;}
.y1f5{bottom:735.421830pt;}
.y1f6{bottom:740.107333pt;}
.y210{bottom:741.317067pt;}
.y63{bottom:745.700667pt;}
.yaa{bottom:746.607333pt;}
.y1b9{bottom:748.724667pt;}
.y1f4{bottom:750.010448pt;}
.y20f{bottom:754.621467pt;}
.y62{bottom:760.440667pt;}
.ya9{bottom:761.348667pt;}
.y1b8{bottom:763.388667pt;}
.y1f3{bottom:764.523333pt;}
.y1f1{bottom:764.523431pt;}
.y20e{bottom:768.000267pt;}
.y1f2{bottom:769.284667pt;}
.y61{bottom:775.180667pt;}
.ya8{bottom:776.014000pt;}
.y1b7{bottom:778.054000pt;}
.y1f0{bottom:779.112049pt;}
.y6{bottom:780.699333pt;}
.y20d{bottom:781.304667pt;}
.y60{bottom:789.920667pt;}
.y5e{bottom:789.922000pt;}
.ya7{bottom:790.678000pt;}
.y1b6{bottom:792.718000pt;}
.y1ef{bottom:793.700667pt;}
.y1ed{bottom:793.700765pt;}
.y20c{bottom:794.684667pt;}
.y5f{bottom:795.816667pt;}
.y1ee{bottom:798.463333pt;}
.y5d{bottom:804.586000pt;}
.ya5{bottom:805.342000pt;}
.y1b5{bottom:807.382000pt;}
.y20b{bottom:807.987867pt;}
.y1ec{bottom:808.289382pt;}
.ya6{bottom:811.238000pt;}
.y5{bottom:813.279272pt;}
.y5c{bottom:819.326000pt;}
.ya4{bottom:820.007333pt;}
.y20a{bottom:821.292267pt;}
.y1eb{bottom:822.878000pt;}
.y1e9{bottom:822.879732pt;}
.y1b4{bottom:826.507333pt;}
.y1ea{bottom:827.640667pt;}
.y5b{bottom:834.066000pt;}
.y209{bottom:834.671067pt;}
.ya3{bottom:834.671333pt;}
.y1e8{bottom:837.468350pt;}
.y1b3{bottom:839.735333pt;}
.y4{bottom:839.962000pt;}
.y208{bottom:847.975467pt;}
.y5a{bottom:848.806000pt;}
.ya2{bottom:849.335333pt;}
.ya0{bottom:849.336667pt;}
.y1e6{bottom:854.778000pt;}
.ya1{bottom:855.231333pt;}
.y1e7{bottom:859.464667pt;}
.y207{bottom:861.279867pt;}
.y59{bottom:863.546000pt;}
.y9f{bottom:864.002000pt;}
.y3{bottom:866.647741pt;}
.y206{bottom:874.658667pt;}
.y1e5{bottom:877.304667pt;}
.y57{bottom:878.287333pt;}
.y9e{bottom:878.666000pt;}
.y1b2{bottom:879.042000pt;}
.y58{bottom:884.182000pt;}
.y205{bottom:887.963067pt;}
.y2{bottom:890.683333pt;}
.y1e4{bottom:891.968667pt;}
.y56{bottom:892.951333pt;}
.y9d{bottom:893.330000pt;}
.y1b1{bottom:893.707333pt;}
.y204{bottom:901.341867pt;}
.y1e3{bottom:906.632667pt;}
.y55{bottom:907.691333pt;}
.y9c{bottom:907.995333pt;}
.y1b0{bottom:913.663333pt;}
.y203{bottom:914.646267pt;}
.y54{bottom:922.431333pt;}
.y9b{bottom:922.659333pt;}
.y202{bottom:927.950667pt;}
.y1af{bottom:928.327333pt;}
.y49{bottom:933.996667pt;}
.y53{bottom:937.171333pt;}
.y9a{bottom:937.323333pt;}
.y201{bottom:941.329467pt;}
.y1ad{bottom:947.451333pt;}
.y1ae{bottom:949.190000pt;}
.y52{bottom:951.911333pt;}
.y99{bottom:951.987333pt;}
.y200{bottom:954.633867pt;}
.y1ac{bottom:960.680667pt;}
.y4e{bottom:966.533333pt;}
.y98{bottom:966.645867pt;}
.y51{bottom:966.651333pt;}
.y1ff{bottom:968.012667pt;}
.yd3{bottom:993.335333pt;}
.h2a{height:21.728160pt;}
.h13{height:22.720000pt;}
.h12{height:23.856000pt;}
.h2b{height:24.444740pt;}
.hf{height:26.948012pt;}
.h20{height:28.839615pt;}
.h34{height:29.576000pt;}
.h11{height:30.292955pt;}
.h8{height:30.319761pt;}
.h28{height:32.340929pt;}
.h6{height:34.608000pt;}
.h10{height:36.384000pt;}
.h35{height:36.530667pt;}
.h36{height:36.672000pt;}
.h1f{height:38.453333pt;}
.h29{height:38.602017pt;}
.h14{height:38.937500pt;}
.h27{height:40.373333pt;}
.h9{height:40.426667pt;}
.he{height:40.746667pt;}
.h16{height:41.875000pt;}
.h24{height:43.118338pt;}
.h1e{height:43.119938pt;}
.h23{height:43.123138pt;}
.h1b{height:44.715373pt;}
.h1a{height:45.019373pt;}
.h33{height:45.472567pt;}
.hd{height:47.640129pt;}
.h25{height:47.644396pt;}
.h2d{height:47.644929pt;}
.h17{height:47.645462pt;}
.h26{height:47.913730pt;}
.h31{height:47.933462pt;}
.h2f{height:47.937196pt;}
.ha{height:47.938796pt;}
.h30{height:47.943062pt;}
.hb{height:47.944129pt;}
.h1d{height:47.944662pt;}
.h21{height:47.945196pt;}
.h1c{height:47.946262pt;}
.h18{height:47.946796pt;}
.h22{height:47.947329pt;}
.h2c{height:47.948929pt;}
.hc{height:47.949462pt;}
.h2e{height:47.961729pt;}
.h19{height:47.971329pt;}
.h4{height:48.532960pt;}
.h5{height:52.554262pt;}
.h7{height:57.656250pt;}
.h3{height:65.370282pt;}
.h32{height:129.365333pt;}
.h2{height:1043.981333pt;}
.h15{height:1067.866667pt;}
.h0{height:1067.868000pt;}
.h1{height:1068.000000pt;}
.w2{width:785.990667pt;}
.w0{width:809.877333pt;}
.w1{width:810.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.943333pt;}
.x16{left:24.000000pt;}
.x2{left:56.692800pt;}
.x44{left:62.059733pt;}
.x3d{left:64.781067pt;}
.xa{left:68.638000pt;}
.x40{left:76.423864pt;}
.x3{left:88.289733pt;}
.x27{left:106.884933pt;}
.x6{left:143.772667pt;}
.x1a{left:150.274000pt;}
.x7{left:153.827333pt;}
.x1b{left:175.596667pt;}
.x1c{left:204.094000pt;}
.x3e{left:217.171333pt;}
.x1d{left:218.154000pt;}
.x11{left:239.546000pt;}
.x3f{left:246.879333pt;}
.x45{left:248.843333pt;}
.x17{left:251.716667pt;}
.x46{left:254.211333pt;}
.x8{left:261.619333pt;}
.x12{left:265.624640pt;}
.x43{left:269.328667pt;}
.x41{left:271.899333pt;}
.x9{left:273.486000pt;}
.x1e{left:288.907333pt;}
.x18{left:291.402000pt;}
.x2f{left:304.780667pt;}
.x19{left:312.340667pt;}
.x1f{left:318.084667pt;}
.xb{left:323.603333pt;}
.xc{left:331.994000pt;}
.x42{left:336.302000pt;}
.x26{left:355.578000pt;}
.x25{left:387.326000pt;}
.xd{left:408.642000pt;}
.x36{left:414.084667pt;}
.x20{left:420.662000pt;}
.x3a{left:422.022000pt;}
.x31{left:427.616470pt;}
.x3b{left:432.679333pt;}
.x4{left:437.971333pt;}
.x39{left:440.691333pt;}
.x3c{left:443.338000pt;}
.x32{left:447.647333pt;}
.x2d{left:482.947333pt;}
.x2e{left:501.846000pt;}
.xe{left:503.584667pt;}
.xf{left:511.974000pt;}
.x15{left:540.933333pt;}
.x23{left:554.079333pt;}
.x13{left:562.318000pt;}
.x5{left:567.608667pt;}
.x37{left:568.743333pt;}
.x38{left:574.186000pt;}
.x24{left:598.752667pt;}
.x30{left:603.892667pt;}
.x33{left:608.730000pt;}
.x14{left:616.137200pt;}
.x2c{left:617.802000pt;}
.x28{left:661.568667pt;}
.x2a{left:666.556667pt;}
.x34{left:667.615333pt;}
.x29{left:676.838000pt;}
.x2b{left:679.710000pt;}
.x10{left:693.090000pt;}
.x21{left:694.072667pt;}
.x35{left:702.387333pt;}
.x22{left:707.906000pt;}
}




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