
    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_d62b7abfb5caa9b266adfd75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068000;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_490db346c7f4b36f3c7aa575.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_829f7df267ad2e7f2a03bf92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707000;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_ee32c16d046fc4211a038d78.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_49478f22aa52762b765c63da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;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_35ac814b6feb6284e0c95fbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_8d468639b0c6f7370fbaef7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_1b45e0892bc78a353496f780.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-2.124000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.124000px;}
.v4{vertical-align:23.975400px;}
.v1{vertical-align:75.923400px;}
.ls33{letter-spacing:-9.600000px;}
.ls2{letter-spacing:-3.888000px;}
.ls4d{letter-spacing:-3.780000px;}
.ls46{letter-spacing:-3.240000px;}
.ls38{letter-spacing:-3.180000px;}
.ls9{letter-spacing:-3.132000px;}
.ls47{letter-spacing:-2.760000px;}
.ls51{letter-spacing:-2.040000px;}
.ls50{letter-spacing:-1.860000px;}
.ls1e{letter-spacing:-1.836000px;}
.ls4b{letter-spacing:-1.800000px;}
.ls26{letter-spacing:-1.780249px;}
.ls39{letter-spacing:-1.740000px;}
.ls3c{letter-spacing:-1.680000px;}
.ls1c{letter-spacing:-1.656000px;}
.ls3a{letter-spacing:-1.560000px;}
.ls35{letter-spacing:-1.500000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.380000px;}
.ls2b{letter-spacing:-1.368000px;}
.ls3b{letter-spacing:-1.320000px;}
.ls3{letter-spacing:-1.296000px;}
.lsa{letter-spacing:-1.248000px;}
.ls36{letter-spacing:-1.140000px;}
.ls3f{letter-spacing:-1.080000px;}
.ls3e{letter-spacing:-1.020000px;}
.ls4f{letter-spacing:-0.960000px;}
.ls2a{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.912000px;}
.ls1f{letter-spacing:-0.867301px;}
.ls15{letter-spacing:-0.864000px;}
.ls40{letter-spacing:-0.840000px;}
.ls1{letter-spacing:-0.798000px;}
.ls11{letter-spacing:-0.780000px;}
.ls18{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.624000px;}
.ls1d{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.593416px;}
.ls6{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.547769px;}
.ls31{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.502121px;}
.ls29{letter-spacing:-0.432000px;}
.ls49{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.252000px;}
.ls34{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.228237px;}
.ls10{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.192000px;}
.ls25{letter-spacing:-0.182590px;}
.ls32{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.136942px;}
.ls0{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.228237px;}
.lsf{letter-spacing:0.240000px;}
.ls30{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.576000px;}
.ls42{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.720000px;}
.ls45{letter-spacing:1.080000px;}
.ls44{letter-spacing:1.140000px;}
.ls12{letter-spacing:1.152000px;}
.ls8{letter-spacing:1.200000px;}
.ls2f{letter-spacing:1.289400px;}
.ls2e{letter-spacing:1.290000px;}
.ls41{letter-spacing:1.320000px;}
.ls7{letter-spacing:1.440000px;}
.ls43{letter-spacing:1.680000px;}
.ls5{letter-spacing:2.538000px;}
.ls4{letter-spacing:2.542200px;}
.ls2d{letter-spacing:5.522400px;}
.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:-51.756000px;}
.ws1{word-spacing:-35.431200px;}
.ws4{word-spacing:-19.068000px;}
.wse5{word-spacing:-17.064000px;}
.ws136{word-spacing:-16.920000px;}
.ws15a{word-spacing:-16.704000px;}
.ws40{word-spacing:-16.488000px;}
.ws6{word-spacing:-16.344000px;}
.ws112{word-spacing:-16.056000px;}
.ws137{word-spacing:-15.912000px;}
.wsc5{word-spacing:-15.768000px;}
.wsff{word-spacing:-15.696000px;}
.wsd1{word-spacing:-15.480000px;}
.ws138{word-spacing:-15.408000px;}
.ws191{word-spacing:-15.300000px;}
.ws139{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.048000px;}
.ws18f{word-spacing:-14.940000px;}
.ws192{word-spacing:-14.910000px;}
.ws113{word-spacing:-14.832000px;}
.ws193{word-spacing:-14.760000px;}
.ws194{word-spacing:-14.700000px;}
.ws188{word-spacing:-14.340000px;}
.ws1d5{word-spacing:-14.280000px;}
.ws190{word-spacing:-14.220000px;}
.ws198{word-spacing:-14.160000px;}
.ws17e{word-spacing:-13.920000px;}
.ws19b{word-spacing:-13.800000px;}
.ws195{word-spacing:-13.740000px;}
.ws178{word-spacing:-13.620000px;}
.ws181{word-spacing:-13.500000px;}
.ws180{word-spacing:-13.440000px;}
.ws19a{word-spacing:-13.320000px;}
.ws199{word-spacing:-13.260000px;}
.ws17f{word-spacing:-13.080000px;}
.ws185{word-spacing:-13.020000px;}
.ws186{word-spacing:-12.960000px;}
.ws183{word-spacing:-12.900000px;}
.ws1d3{word-spacing:-12.840000px;}
.ws18d{word-spacing:-12.600000px;}
.ws18e{word-spacing:-12.540000px;}
.ws184{word-spacing:-12.480000px;}
.ws5{word-spacing:-12.456000px;}
.ws18a{word-spacing:-12.300000px;}
.ws41{word-spacing:-12.258000px;}
.ws18c{word-spacing:-12.240000px;}
.ws182{word-spacing:-12.120000px;}
.ws189{word-spacing:-12.060000px;}
.ws18b{word-spacing:-11.940000px;}
.ws1d4{word-spacing:-11.760000px;}
.ws59{word-spacing:-11.718000px;}
.ws1d6{word-spacing:-11.580000px;}
.ws3f{word-spacing:-11.440800px;}
.wsd2{word-spacing:-11.188800px;}
.ws61{word-spacing:-11.136000px;}
.ws197{word-spacing:-10.980000px;}
.ws5d{word-spacing:-10.896000px;}
.ws5c{word-spacing:-10.752000px;}
.ws60{word-spacing:-10.704000px;}
.ws118{word-spacing:-10.590197px;}
.ws187{word-spacing:-10.560000px;}
.ws196{word-spacing:-10.380000px;}
.ws115{word-spacing:-10.361960px;}
.ws5f{word-spacing:-10.272000px;}
.ws119{word-spacing:-10.225018px;}
.ws11c{word-spacing:-10.179370px;}
.ws11b{word-spacing:-10.133723px;}
.ws5e{word-spacing:-9.984000px;}
.ws114{word-spacing:-9.882000px;}
.ws15b{word-spacing:-9.864000px;}
.ws11a{word-spacing:-9.859838px;}
.ws1b4{word-spacing:-9.840000px;}
.ws117{word-spacing:-9.814191px;}
.ws11e{word-spacing:-9.768544px;}
.ws5b{word-spacing:-9.648000px;}
.ws116{word-spacing:-9.494659px;}
.ws161{word-spacing:-9.288000px;}
.ws1a3{word-spacing:-9.000000px;}
.ws5a{word-spacing:-8.586000px;}
.ws11d{word-spacing:-8.581711px;}
.ws2f{word-spacing:-8.496000px;}
.wsa9{word-spacing:-8.064000px;}
.ws19d{word-spacing:-8.040000px;}
.ws3b{word-spacing:-7.992000px;}
.wse6{word-spacing:-7.848000px;}
.ws9f{word-spacing:-7.416000px;}
.ws68{word-spacing:-7.128000px;}
.ws141{word-spacing:-7.056000px;}
.ws7e{word-spacing:-6.768000px;}
.ws1c5{word-spacing:-6.420000px;}
.ws42{word-spacing:-6.408000px;}
.ws4a{word-spacing:-6.336000px;}
.ws80{word-spacing:-6.192000px;}
.wsfb{word-spacing:-6.120000px;}
.wse4{word-spacing:-6.048000px;}
.ws13b{word-spacing:-5.976000px;}
.ws1d0{word-spacing:-5.940000px;}
.ws12e{word-spacing:-5.832000px;}
.ws76{word-spacing:-5.760000px;}
.ws17{word-spacing:-5.544000px;}
.ws171{word-spacing:-5.400000px;}
.ws49{word-spacing:-4.824000px;}
.ws10a{word-spacing:-4.680000px;}
.ws101{word-spacing:-4.536000px;}
.wsf6{word-spacing:-4.464000px;}
.ws1b0{word-spacing:-4.440000px;}
.ws3a{word-spacing:-4.392000px;}
.ws1af{word-spacing:-4.380000px;}
.ws83{word-spacing:-4.248000px;}
.ws39{word-spacing:-4.176000px;}
.ws14f{word-spacing:-4.104000px;}
.ws149{word-spacing:-4.032000px;}
.ws106{word-spacing:-3.960000px;}
.wsfa{word-spacing:-3.888000px;}
.ws18{word-spacing:-3.744000px;}
.wse9{word-spacing:-3.600000px;}
.ws1b2{word-spacing:-3.540000px;}
.ws142{word-spacing:-3.528000px;}
.wscf{word-spacing:-3.456000px;}
.wsa1{word-spacing:-3.384000px;}
.ws12c{word-spacing:-3.312000px;}
.ws1bd{word-spacing:-3.240000px;}
.ws1be{word-spacing:-3.180000px;}
.wsce{word-spacing:-3.168000px;}
.wsd{word-spacing:-3.096000px;}
.ws1bc{word-spacing:-3.000000px;}
.ws90{word-spacing:-2.952000px;}
.wsa6{word-spacing:-2.880000px;}
.ws6f{word-spacing:-2.808000px;}
.ws23{word-spacing:-2.736000px;}
.ws173{word-spacing:-2.664000px;}
.ws1b8{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.592000px;}
.ws133{word-spacing:-2.520000px;}
.wsdb{word-spacing:-2.448000px;}
.ws14b{word-spacing:-2.376000px;}
.ws121{word-spacing:-2.304000px;}
.ws1da{word-spacing:-2.280000px;}
.wsb9{word-spacing:-2.232000px;}
.ws67{word-spacing:-2.160000px;}
.ws97{word-spacing:-2.088000px;}
.ws1ac{word-spacing:-2.040000px;}
.ws8d{word-spacing:-2.016000px;}
.wse3{word-spacing:-1.944000px;}
.ws4d{word-spacing:-1.800000px;}
.ws92{word-spacing:-1.728000px;}
.ws44{word-spacing:-1.656000px;}
.ws70{word-spacing:-1.584000px;}
.ws1bf{word-spacing:-1.560000px;}
.ws1b{word-spacing:-1.512000px;}
.ws1c3{word-spacing:-1.500000px;}
.ws58{word-spacing:-1.488000px;}
.ws91{word-spacing:-1.440000px;}
.ws1a5{word-spacing:-1.320000px;}
.wsc0{word-spacing:-1.224000px;}
.ws8c{word-spacing:-1.200000px;}
.ws11f{word-spacing:-1.152000px;}
.ws1c2{word-spacing:-1.140000px;}
.ws6e{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.008000px;}
.ws145{word-spacing:-0.936000px;}
.ws69{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.648000px;}
.wse0{word-spacing:-0.576000px;}
.wsba{word-spacing:-0.504000px;}
.ws30{word-spacing:-0.432000px;}
.ws1d7{word-spacing:-0.420000px;}
.ws10f{word-spacing:-0.360000px;}
.wsa2{word-spacing:-0.288000px;}
.ws65{word-spacing:-0.240000px;}
.wse7{word-spacing:-0.216000px;}
.ws1c4{word-spacing:-0.180000px;}
.ws8b{word-spacing:-0.144000px;}
.wsd3{word-spacing:-0.072000px;}
.ws1a2{word-spacing:-0.060000px;}
.ws26{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wse1{word-spacing:0.144000px;}
.ws1cf{word-spacing:0.180000px;}
.ws124{word-spacing:0.182590px;}
.ws62{word-spacing:0.192000px;}
.ws131{word-spacing:0.216000px;}
.ws1a1{word-spacing:0.240000px;}
.ws7b{word-spacing:0.288000px;}
.ws1ad{word-spacing:0.420000px;}
.ws6a{word-spacing:0.432000px;}
.wsaa{word-spacing:0.504000px;}
.ws1e0{word-spacing:0.540000px;}
.ws125{word-spacing:0.547769px;}
.ws8a{word-spacing:0.576000px;}
.ws122{word-spacing:0.600000px;}
.ws63{word-spacing:0.624000px;}
.ws7f{word-spacing:0.648000px;}
.ws1aa{word-spacing:0.660000px;}
.ws13a{word-spacing:0.720000px;}
.ws89{word-spacing:0.780000px;}
.ws16e{word-spacing:0.792000px;}
.ws1d1{word-spacing:0.840000px;}
.ws111{word-spacing:0.864000px;}
.ws123{word-spacing:0.867301px;}
.wsdd{word-spacing:0.900000px;}
.ws64{word-spacing:0.912000px;}
.ws3d{word-spacing:0.936000px;}
.ws1d2{word-spacing:0.960000px;}
.ws6c{word-spacing:1.008000px;}
.ws38{word-spacing:1.080000px;}
.ws1b3{word-spacing:1.140000px;}
.ws1e{word-spacing:1.152000px;}
.ws88{word-spacing:1.260000px;}
.ws3c{word-spacing:1.296000px;}
.ws1c7{word-spacing:1.320000px;}
.wsf0{word-spacing:1.440000px;}
.wsb{word-spacing:1.512000px;}
.wsc7{word-spacing:1.584000px;}
.ws1a0{word-spacing:1.620000px;}
.ws31{word-spacing:1.656000px;}
.ws1e6{word-spacing:1.674000px;}
.ws95{word-spacing:1.728000px;}
.wsa4{word-spacing:1.735200px;}
.ws54{word-spacing:1.800000px;}
.ws140{word-spacing:1.872000px;}
.ws1a9{word-spacing:1.920000px;}
.wsd6{word-spacing:1.944000px;}
.ws1a6{word-spacing:1.980000px;}
.ws45{word-spacing:2.016000px;}
.wsc4{word-spacing:2.088000px;}
.ws1e7{word-spacing:2.106000px;}
.wsb8{word-spacing:2.160000px;}
.ws132{word-spacing:2.232000px;}
.wsc3{word-spacing:2.304000px;}
.ws28{word-spacing:2.376000px;}
.ws162{word-spacing:2.448000px;}
.ws2e{word-spacing:2.520000px;}
.wscc{word-spacing:2.664000px;}
.ws7c{word-spacing:2.736000px;}
.ws1e2{word-spacing:2.760000px;}
.ws108{word-spacing:2.808000px;}
.wsed{word-spacing:2.880000px;}
.wseb{word-spacing:2.952000px;}
.ws1ce{word-spacing:3.000000px;}
.ws148{word-spacing:3.024000px;}
.ws1cd{word-spacing:3.060000px;}
.wsca{word-spacing:3.096000px;}
.ws99{word-spacing:3.168000px;}
.ws93{word-spacing:3.312000px;}
.ws14d{word-spacing:3.384000px;}
.ws19f{word-spacing:3.420000px;}
.ws13{word-spacing:3.456000px;}
.ws1b7{word-spacing:3.480000px;}
.ws134{word-spacing:3.528000px;}
.ws1b6{word-spacing:3.540000px;}
.ws48{word-spacing:3.600000px;}
.ws107{word-spacing:3.672000px;}
.ws166{word-spacing:3.744000px;}
.ws2d{word-spacing:3.888000px;}
.ws85{word-spacing:3.960000px;}
.ws78{word-spacing:4.032000px;}
.wsa7{word-spacing:4.104000px;}
.ws53{word-spacing:4.176000px;}
.wsdc{word-spacing:4.248000px;}
.wsac{word-spacing:4.320000px;}
.wse2{word-spacing:4.392000px;}
.ws13f{word-spacing:4.464000px;}
.ws19{word-spacing:4.536000px;}
.ws159{word-spacing:4.608000px;}
.wsd0{word-spacing:4.680000px;}
.ws56{word-spacing:4.752000px;}
.ws126{word-spacing:4.824000px;}
.wsb0{word-spacing:4.896000px;}
.ws14e{word-spacing:4.968000px;}
.ws87{word-spacing:5.040000px;}
.wsf{word-spacing:5.112000px;}
.ws4b{word-spacing:5.184000px;}
.wsa8{word-spacing:5.256000px;}
.wsde{word-spacing:5.328000px;}
.ws50{word-spacing:5.400000px;}
.ws17a{word-spacing:5.460000px;}
.wsef{word-spacing:5.472000px;}
.ws17d{word-spacing:5.520000px;}
.ws21{word-spacing:5.616000px;}
.wsa{word-spacing:5.688000px;}
.wsab{word-spacing:5.760000px;}
.ws79{word-spacing:5.832000px;}
.ws7a{word-spacing:5.904000px;}
.ws17b{word-spacing:5.940000px;}
.ws1f{word-spacing:5.976000px;}
.ws7d{word-spacing:6.048000px;}
.ws12d{word-spacing:6.120000px;}
.ws75{word-spacing:6.192000px;}
.ws1e1{word-spacing:6.240000px;}
.wscd{word-spacing:6.264000px;}
.ws1a7{word-spacing:6.300000px;}
.ws110{word-spacing:6.336000px;}
.ws1a8{word-spacing:6.360000px;}
.ws100{word-spacing:6.408000px;}
.ws1b1{word-spacing:6.420000px;}
.ws175{word-spacing:6.480000px;}
.wsda{word-spacing:6.552000px;}
.ws1a{word-spacing:6.696000px;}
.ws15{word-spacing:6.768000px;}
.ws4c{word-spacing:6.840000px;}
.ws86{word-spacing:6.912000px;}
.wsbb{word-spacing:6.984000px;}
.ws2b{word-spacing:7.056000px;}
.ws167{word-spacing:7.128000px;}
.ws1bb{word-spacing:7.140000px;}
.wse{word-spacing:7.200000px;}
.ws160{word-spacing:7.272000px;}
.ws1b5{word-spacing:7.320000px;}
.ws11{word-spacing:7.344000px;}
.ws8e{word-spacing:7.416000px;}
.ws1e5{word-spacing:7.452000px;}
.wsf5{word-spacing:7.488000px;}
.ws105{word-spacing:7.560000px;}
.ws84{word-spacing:7.632000px;}
.wsfe{word-spacing:7.704000px;}
.wsbc{word-spacing:7.776000px;}
.ws12{word-spacing:7.848000px;}
.ws1ab{word-spacing:7.860000px;}
.ws1d{word-spacing:7.920000px;}
.ws2c{word-spacing:7.992000px;}
.ws14{word-spacing:8.064000px;}
.wsc1{word-spacing:8.136000px;}
.ws3e{word-spacing:8.208000px;}
.ws32{word-spacing:8.280000px;}
.wsf1{word-spacing:8.496000px;}
.wsd8{word-spacing:8.568000px;}
.wsf3{word-spacing:8.640000px;}
.wsea{word-spacing:8.712000px;}
.wsa0{word-spacing:8.856000px;}
.ws1de{word-spacing:9.000000px;}
.ws8f{word-spacing:9.072000px;}
.ws1df{word-spacing:9.120000px;}
.ws156{word-spacing:9.144000px;}
.ws144{word-spacing:9.216000px;}
.ws36{word-spacing:9.288000px;}
.ws9d{word-spacing:9.360000px;}
.ws1db{word-spacing:9.420000px;}
.ws24{word-spacing:9.432000px;}
.ws9e{word-spacing:9.504000px;}
.ws19e{word-spacing:9.600000px;}
.ws22{word-spacing:9.648000px;}
.wsbd{word-spacing:9.720000px;}
.ws10e{word-spacing:9.792000px;}
.ws34{word-spacing:9.864000px;}
.ws1c1{word-spacing:9.900000px;}
.ws172{word-spacing:9.936000px;}
.ws1d9{word-spacing:9.960000px;}
.wsad{word-spacing:10.080000px;}
.wsb3{word-spacing:10.152000px;}
.ws1e3{word-spacing:10.200000px;}
.ws1e4{word-spacing:10.260000px;}
.wsd9{word-spacing:10.296000px;}
.wsf2{word-spacing:10.368000px;}
.ws109{word-spacing:10.440000px;}
.wsfc{word-spacing:10.512000px;}
.ws1c9{word-spacing:10.560000px;}
.ws10c{word-spacing:10.656000px;}
.ws1ca{word-spacing:10.680000px;}
.ws135{word-spacing:10.728000px;}
.ws1dc{word-spacing:10.740000px;}
.ws150{word-spacing:10.872000px;}
.wsc6{word-spacing:10.944000px;}
.ws29{word-spacing:11.016000px;}
.ws15c{word-spacing:11.160000px;}
.ws102{word-spacing:11.232000px;}
.ws17c{word-spacing:11.280000px;}
.ws16a{word-spacing:11.304000px;}
.wsae{word-spacing:11.448000px;}
.wsd7{word-spacing:11.520000px;}
.wsb5{word-spacing:11.592000px;}
.ws147{word-spacing:11.664000px;}
.ws1dd{word-spacing:11.700000px;}
.ws9a{word-spacing:11.736000px;}
.wsb2{word-spacing:11.808000px;}
.ws71{word-spacing:11.880000px;}
.ws1cb{word-spacing:12.000000px;}
.ws158{word-spacing:12.024000px;}
.ws1d8{word-spacing:12.120000px;}
.ws43{word-spacing:12.240000px;}
.ws94{word-spacing:12.384000px;}
.ws104{word-spacing:12.456000px;}
.ws1ae{word-spacing:12.540000px;}
.ws16{word-spacing:12.600000px;}
.ws4e{word-spacing:12.816000px;}
.ws13c{word-spacing:12.960000px;}
.ws13e{word-spacing:13.032000px;}
.ws33{word-spacing:13.104000px;}
.wsf8{word-spacing:13.176000px;}
.wsf9{word-spacing:13.320000px;}
.ws27{word-spacing:13.327200px;}
.ws127{word-spacing:13.392000px;}
.ws155{word-spacing:13.608000px;}
.ws1ba{word-spacing:13.620000px;}
.ws1b9{word-spacing:13.740000px;}
.ws120{word-spacing:13.752000px;}
.ws14c{word-spacing:13.968000px;}
.ws1c0{word-spacing:13.980000px;}
.ws174{word-spacing:14.040000px;}
.ws1c6{word-spacing:14.160000px;}
.ws25{word-spacing:14.328000px;}
.ws1cc{word-spacing:14.460000px;}
.wsb4{word-spacing:14.472000px;}
.wscb{word-spacing:14.760000px;}
.wsc8{word-spacing:15.120000px;}
.wsdf{word-spacing:15.192000px;}
.ws12b{word-spacing:15.408000px;}
.ws4f{word-spacing:15.552000px;}
.ws168{word-spacing:15.624000px;}
.ws46{word-spacing:15.768000px;}
.ws151{word-spacing:15.840000px;}
.ws165{word-spacing:15.912000px;}
.ws96{word-spacing:15.984000px;}
.wsec{word-spacing:16.056000px;}
.ws1a4{word-spacing:16.200000px;}
.ws9c{word-spacing:16.416000px;}
.ws6d{word-spacing:16.488000px;}
.ws72{word-spacing:16.560000px;}
.wsc9{word-spacing:16.632000px;}
.wsc2{word-spacing:16.704000px;}
.ws9b{word-spacing:16.848000px;}
.ws15d{word-spacing:17.136000px;}
.ws16b{word-spacing:17.424000px;}
.ws153{word-spacing:17.496000px;}
.wsbe{word-spacing:17.640000px;}
.ws152{word-spacing:17.928000px;}
.ws1c8{word-spacing:18.120000px;}
.wsf4{word-spacing:18.216000px;}
.ws170{word-spacing:18.288000px;}
.ws163{word-spacing:18.360000px;}
.ws10{word-spacing:18.576000px;}
.ws74{word-spacing:18.864000px;}
.ws154{word-spacing:19.080000px;}
.ws12a{word-spacing:19.152000px;}
.ws103{word-spacing:19.368000px;}
.ws157{word-spacing:19.440000px;}
.wsfd{word-spacing:19.656000px;}
.ws98{word-spacing:19.728000px;}
.ws1c{word-spacing:19.800000px;}
.ws129{word-spacing:19.872000px;}
.wsa3{word-spacing:20.016000px;}
.ws130{word-spacing:20.232000px;}
.wsf7{word-spacing:20.448000px;}
.ws128{word-spacing:20.880000px;}
.ws35{word-spacing:20.952000px;}
.ws12f{word-spacing:21.024000px;}
.ws16d{word-spacing:21.384000px;}
.ws51{word-spacing:21.456000px;}
.ws15f{word-spacing:21.600000px;}
.ws77{word-spacing:21.888000px;}
.ws52{word-spacing:22.032000px;}
.wse8{word-spacing:22.392000px;}
.ws169{word-spacing:22.464000px;}
.ws16c{word-spacing:23.184000px;}
.ws6b{word-spacing:23.328000px;}
.ws37{word-spacing:23.904000px;}
.ws9{word-spacing:25.128000px;}
.wsee{word-spacing:25.488000px;}
.ws8{word-spacing:25.776000px;}
.ws13d{word-spacing:25.848000px;}
.ws20{word-spacing:26.136000px;}
.ws15e{word-spacing:26.712000px;}
.ws176{word-spacing:27.576000px;}
.wsbf{word-spacing:28.728000px;}
.ws10b{word-spacing:29.448000px;}
.wsd4{word-spacing:29.736000px;}
.ws10d{word-spacing:30.024000px;}
.ws146{word-spacing:30.384000px;}
.ws2a{word-spacing:30.744000px;}
.ws143{word-spacing:31.896000px;}
.wsb6{word-spacing:32.184000px;}
.wsb7{word-spacing:32.400000px;}
.ws47{word-spacing:32.544000px;}
.ws73{word-spacing:37.152000px;}
.ws16f{word-spacing:38.304000px;}
.ws14a{word-spacing:39.960000px;}
.ws57{word-spacing:41.742000px;}
.wsa5{word-spacing:42.264000px;}
.wsaf{word-spacing:43.488000px;}
.wsd5{word-spacing:44.064000px;}
.ws66{word-spacing:65.103600px;}
.ws3{word-spacing:67.983000px;}
.ws177{word-spacing:67.983600px;}
.ws164{word-spacing:67.984200px;}
.ws179{word-spacing:72.156000px;}
.ws19c{word-spacing:80.388000px;}
.ws81{word-spacing:216.529800px;}
.ws82{word-spacing:267.837000px;}
._1f{margin-left:-37.620000px;}
._22{margin-left:-30.031200px;}
._21{margin-left:-27.561600px;}
._1b{margin-left:-24.756000px;}
._d{margin-left:-19.632000px;}
._1d{margin-left:-18.484800px;}
._19{margin-left:-16.752000px;}
._20{margin-left:-14.968800px;}
._b{margin-left:-13.684800px;}
._8{margin-left:-11.760000px;}
._1c{margin-left:-9.948000px;}
._e{margin-left:-8.844000px;}
._a{margin-left:-7.219200px;}
._7{margin-left:-5.556000px;}
._3{margin-left:-4.332000px;}
._2{margin-left:-3.192000px;}
._0{margin-left:-2.052000px;}
._6{margin-left:-1.051200px;}
._1{width:1.596000px;}
._5{width:2.848800px;}
._9{width:3.869400px;}
._f{width:5.663400px;}
._4{width:7.154400px;}
._10{width:8.580000px;}
._11{width:9.664800px;}
._25{width:10.822200px;}
._23{width:16.027800px;}
._24{width:18.626400px;}
._1a{width:40.615200px;}
._12{width:41.741400px;}
._1e{width:46.064400px;}
._13{width:61.098000px;}
._c{width:68.140800px;}
._14{width:122.097000px;}
._17{width:135.537000px;}
._16{width:184.797000px;}
._15{width:209.365200px;}
._18{width:210.669000px;}
.fc2{color:rgb(78,147,122);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:45.647400px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.fs1{font-size:159.600000px;}
.fs2{font-size:192.000000px;}
.fs0{font-size:228.000000px;}
.fs4{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y1d1{bottom:85.039350px;}
.y77{bottom:85.039500px;}
.yce{bottom:86.276250px;}
.y19d{bottom:88.639200px;}
.y35{bottom:88.906500px;}
.y121{bottom:89.583300px;}
.y59{bottom:91.087350px;}
.ycc{bottom:91.087500px;}
.yc0{bottom:91.092600px;}
.yf9{bottom:91.264500px;}
.yde{bottom:91.796100px;}
.y11d{bottom:92.178000px;}
.y1cb{bottom:93.268500px;}
.y1d0{bottom:103.039350px;}
.y170{bottom:103.723350px;}
.ybf{bottom:106.092600px;}
.y19c{bottom:106.639200px;}
.y146{bottom:107.084100px;}
.ya5{bottom:110.907300px;}
.y1ca{bottom:111.268500px;}
.y34{bottom:111.406500px;}
.y76{bottom:111.543450px;}
.y58{bottom:113.587350px;}
.ycb{bottom:113.587500px;}
.yf8{bottom:113.764500px;}
.ydd{bottom:114.296100px;}
.y11c{bottom:114.678000px;}
.y16f{bottom:117.223350px;}
.y1cf{bottom:121.039350px;}
.y145{bottom:121.348950px;}
.y19b{bottom:124.639200px;}
.yf{bottom:124.825350px;}
.ya4{bottom:125.907300px;}
.y1c9{bottom:129.268500px;}
.y142{bottom:132.154200px;}
.y33{bottom:133.906500px;}
.y16e{bottom:135.223350px;}
.y144{bottom:135.613800px;}
.y57{bottom:136.087350px;}
.yca{bottom:136.087500px;}
.yf7{bottom:136.264500px;}
.ydc{bottom:136.796100px;}
.y11b{bottom:137.178000px;}
.y75{bottom:138.047250px;}
.y1ce{bottom:139.039350px;}
.ybe{bottom:140.886450px;}
.ya3{bottom:140.907300px;}
.y19a{bottom:142.639200px;}
.y141{bottom:146.419050px;}
.y1c8{bottom:147.268500px;}
.y143{bottom:149.878650px;}
.y16d{bottom:153.223350px;}
.ybd{bottom:155.886450px;}
.ya2{bottom:155.907300px;}
.y74{bottom:156.047250px;}
.y32{bottom:156.406500px;}
.y1cd{bottom:157.039350px;}
.yc9{bottom:158.587500px;}
.yf6{bottom:158.764500px;}
.ydb{bottom:159.296100px;}
.ye{bottom:159.325350px;}
.y11a{bottom:159.678000px;}
.y199{bottom:160.639350px;}
.y140{bottom:160.683900px;}
.y1c7{bottom:165.268500px;}
.ya1{bottom:170.907300px;}
.y16c{bottom:171.223350px;}
.y13f{bottom:174.948750px;}
.y1cc{bottom:175.039350px;}
.y198{bottom:178.639350px;}
.y31{bottom:178.906500px;}
.y56{bottom:181.087350px;}
.yc8{bottom:181.087500px;}
.yf5{bottom:181.264500px;}
.yda{bottom:181.796100px;}
.y119{bottom:182.178000px;}
.y1c6{bottom:183.268500px;}
.ya0{bottom:185.907300px;}
.ybc{bottom:187.421850px;}
.y16b{bottom:193.723350px;}
.yd{bottom:193.825350px;}
.y197{bottom:196.639350px;}
.y9f{bottom:200.907300px;}
.y1c5{bottom:201.268500px;}
.y30{bottom:201.406500px;}
.yba{bottom:202.421850px;}
.y55{bottom:203.587350px;}
.yc7{bottom:203.587500px;}
.yf4{bottom:203.764500px;}
.yd9{bottom:204.296100px;}
.y118{bottom:204.678000px;}
.y16a{bottom:207.223350px;}
.y13b{bottom:209.993250px;}
.y196{bottom:214.639350px;}
.y9e{bottom:215.907300px;}
.y13e{bottom:217.125600px;}
.ybb{bottom:217.421850px;}
.y1c4{bottom:219.268500px;}
.y2f{bottom:223.906500px;}
.y13a{bottom:224.257950px;}
.y169{bottom:225.223350px;}
.y54{bottom:226.087350px;}
.yc6{bottom:226.087500px;}
.yf3{bottom:226.264500px;}
.yd8{bottom:226.796100px;}
.y117{bottom:227.178000px;}
.yc{bottom:228.325350px;}
.y13d{bottom:231.390450px;}
.yb9{bottom:232.421850px;}
.y195{bottom:232.639350px;}
.y1c3{bottom:237.268500px;}
.y139{bottom:238.522800px;}
.y12a{bottom:242.238450px;}
.y168{bottom:243.223350px;}
.y13c{bottom:245.655300px;}
.y9d{bottom:245.907300px;}
.y2e{bottom:246.406500px;}
.y53{bottom:248.587350px;}
.yc5{bottom:248.587500px;}
.yf2{bottom:248.764500px;}
.yd7{bottom:249.296100px;}
.y116{bottom:249.678000px;}
.y194{bottom:250.639350px;}
.y138{bottom:252.787650px;}
.y1c2{bottom:255.268500px;}
.y129{bottom:255.738450px;}
.y9c{bottom:260.907300px;}
.y167{bottom:261.223350px;}
.yb{bottom:262.825350px;}
.yb8{bottom:263.721000px;}
.y193{bottom:268.639350px;}
.y2d{bottom:268.906500px;}
.y128{bottom:269.238450px;}
.y52{bottom:271.087350px;}
.yc4{bottom:271.087500px;}
.yf1{bottom:271.264500px;}
.yd6{bottom:271.796100px;}
.y115{bottom:272.178000px;}
.y1c1{bottom:273.268500px;}
.y9b{bottom:275.907300px;}
.yb7{bottom:278.721000px;}
.y127{bottom:282.738450px;}
.y166{bottom:283.723350px;}
.y192{bottom:286.639350px;}
.y9a{bottom:290.907300px;}
.y1c0{bottom:291.268500px;}
.y2c{bottom:291.406500px;}
.y51{bottom:293.587350px;}
.yc3{bottom:293.587500px;}
.yf0{bottom:293.764500px;}
.yd5{bottom:294.296100px;}
.y114{bottom:294.678000px;}
.y126{bottom:296.238450px;}
.y165{bottom:297.223350px;}
.ya{bottom:297.325350px;}
.y137{bottom:301.984650px;}
.y191{bottom:304.639350px;}
.y99{bottom:305.907300px;}
.yb6{bottom:308.721000px;}
.y1bf{bottom:309.268500px;}
.y125{bottom:309.738450px;}
.y2b{bottom:313.906500px;}
.y164{bottom:315.223350px;}
.y50{bottom:316.087350px;}
.yc2{bottom:316.087500px;}
.y136{bottom:316.249350px;}
.yef{bottom:316.264500px;}
.yd4{bottom:316.796100px;}
.y113{bottom:317.178000px;}
.y98{bottom:320.907300px;}
.y190{bottom:322.639350px;}
.y1be{bottom:327.268500px;}
.y135{bottom:330.514200px;}
.y163{bottom:333.223350px;}
.y97{bottom:335.907300px;}
.y2a{bottom:336.406500px;}
.y124{bottom:336.738450px;}
.y4f{bottom:338.587350px;}
.y73{bottom:338.587500px;}
.yb5{bottom:338.721000px;}
.yee{bottom:338.764500px;}
.yd3{bottom:339.296100px;}
.y112{bottom:339.678000px;}
.y18f{bottom:340.639350px;}
.y134{bottom:344.779050px;}
.y1bd{bottom:345.268500px;}
.y123{bottom:350.238450px;}
.y96{bottom:350.907300px;}
.y162{bottom:351.223350px;}
.y9{bottom:354.325350px;}
.y18e{bottom:358.639350px;}
.y29{bottom:358.906500px;}
.y4e{bottom:361.087350px;}
.y72{bottom:361.087500px;}
.yed{bottom:361.264500px;}
.yd2{bottom:361.796100px;}
.y111{bottom:362.178000px;}
.y1bc{bottom:363.268500px;}
.y95{bottom:365.907300px;}
.yb4{bottom:372.264300px;}
.y161{bottom:373.723350px;}
.y18d{bottom:376.639350px;}
.y1bb{bottom:381.268500px;}
.y28{bottom:381.406500px;}
.y71{bottom:383.587500px;}
.yec{bottom:383.764500px;}
.yd1{bottom:384.296100px;}
.y133{bottom:384.619650px;}
.y110{bottom:384.678000px;}
.y160{bottom:387.223350px;}
.yb3{bottom:387.264300px;}
.y18c{bottom:394.639350px;}
.y94{bottom:396.721650px;}
.y132{bottom:398.884500px;}
.y1ba{bottom:399.268500px;}
.y27{bottom:403.906500px;}
.y15f{bottom:405.223350px;}
.y4d{bottom:406.087350px;}
.y70{bottom:406.087500px;}
.yeb{bottom:406.264500px;}
.yd0{bottom:406.796100px;}
.y10f{bottom:407.178000px;}
.y8{bottom:408.325350px;}
.y93{bottom:411.721650px;}
.y18b{bottom:412.639350px;}
.y131{bottom:413.149350px;}
.yb2{bottom:417.264300px;}
.y1b9{bottom:417.268500px;}
.y15e{bottom:423.223350px;}
.y26{bottom:426.406500px;}
.y92{bottom:426.721650px;}
.y130{bottom:427.414200px;}
.y4c{bottom:428.587350px;}
.y6f{bottom:428.587500px;}
.yea{bottom:428.764500px;}
.y10e{bottom:429.678000px;}
.y18a{bottom:430.639350px;}
.yb1{bottom:432.264300px;}
.ycf{bottom:433.650150px;}
.ycd{bottom:434.276250px;}
.y1b8{bottom:435.268500px;}
.y15d{bottom:441.223350px;}
.y12f{bottom:441.679050px;}
.y91{bottom:441.721650px;}
.y12e{bottom:444.116400px;}
.y189{bottom:448.639350px;}
.y25{bottom:448.906500px;}
.y4b{bottom:451.087350px;}
.y6e{bottom:451.087500px;}
.ye9{bottom:451.264500px;}
.y10d{bottom:452.178000px;}
.y1b7{bottom:453.268500px;}
.y12d{bottom:458.381250px;}
.y7{bottom:462.325350px;}
.y15c{bottom:463.723350px;}
.yb0{bottom:465.335250px;}
.y188{bottom:466.639350px;}
.y1b6{bottom:471.268500px;}
.y24{bottom:471.406500px;}
.y12c{bottom:472.646100px;}
.y90{bottom:472.784700px;}
.y4a{bottom:473.587350px;}
.y6d{bottom:473.587500px;}
.ye8{bottom:473.764500px;}
.y10c{bottom:474.678000px;}
.y15b{bottom:477.223350px;}
.yaf{bottom:480.335250px;}
.y187{bottom:484.639350px;}
.y12b{bottom:486.910950px;}
.y8f{bottom:487.784700px;}
.y1b5{bottom:489.268500px;}
.y23{bottom:493.906500px;}
.y15a{bottom:495.223350px;}
.y49{bottom:496.087350px;}
.y6c{bottom:496.087500px;}
.ye7{bottom:496.264500px;}
.y10b{bottom:497.178000px;}
.y186{bottom:502.639350px;}
.y8e{bottom:502.784700px;}
.y1b4{bottom:507.268500px;}
.yae{bottom:510.335250px;}
.y159{bottom:513.223350px;}
.y6{bottom:516.325350px;}
.y22{bottom:516.406500px;}
.y8d{bottom:517.784700px;}
.y48{bottom:518.587350px;}
.y6b{bottom:518.587500px;}
.ye6{bottom:518.764500px;}
.y10a{bottom:519.678000px;}
.y185{bottom:520.639350px;}
.y1b3{bottom:525.268500px;}
.y158{bottom:531.223350px;}
.y8c{bottom:532.784700px;}
.y120{bottom:538.083300px;}
.y184{bottom:538.639200px;}
.y21{bottom:538.906500px;}
.yad{bottom:540.335250px;}
.y47{bottom:541.087350px;}
.y6a{bottom:541.087500px;}
.ye5{bottom:541.264500px;}
.y109{bottom:542.178000px;}
.y1b2{bottom:543.268500px;}
.y122{bottom:546.327300px;}
.y8b{bottom:547.784700px;}
.y157{bottom:553.723350px;}
.yac{bottom:555.335250px;}
.y183{bottom:556.639200px;}
.y11f{bottom:557.583300px;}
.y1b1{bottom:561.268500px;}
.y20{bottom:561.406500px;}
.y8a{bottom:562.784700px;}
.y46{bottom:563.587350px;}
.y69{bottom:563.587500px;}
.ye4{bottom:563.764500px;}
.y108{bottom:564.678000px;}
.y156{bottom:567.223350px;}
.y5{bottom:570.325350px;}
.y182{bottom:574.639200px;}
.y89{bottom:577.784700px;}
.y1b0{bottom:579.268500px;}
.y1f{bottom:583.906500px;}
.y155{bottom:585.223350px;}
.yab{bottom:585.335250px;}
.y45{bottom:586.087350px;}
.y68{bottom:586.087500px;}
.ye3{bottom:586.264500px;}
.y107{bottom:587.178000px;}
.y181{bottom:592.639200px;}
.y1af{bottom:597.268500px;}
.y154{bottom:603.223350px;}
.y1e{bottom:606.406500px;}
.y88{bottom:608.139000px;}
.y44{bottom:608.587350px;}
.y67{bottom:608.587500px;}
.ye2{bottom:608.764500px;}
.y106{bottom:609.678000px;}
.yaa{bottom:609.756600px;}
.y180{bottom:610.639200px;}
.y1ae{bottom:615.268500px;}
.y153{bottom:621.223350px;}
.y87{bottom:623.139000px;}
.y4{bottom:627.325350px;}
.y17f{bottom:628.639200px;}
.y1d{bottom:628.906500px;}
.y43{bottom:631.087350px;}
.y66{bottom:631.087500px;}
.y105{bottom:632.178000px;}
.y1ad{bottom:633.268500px;}
.ya9{bottom:634.074750px;}
.y86{bottom:638.139000px;}
.y152{bottom:639.223350px;}
.yc1{bottom:643.381650px;}
.y17e{bottom:646.639200px;}
.y1ac{bottom:651.268500px;}
.y1c{bottom:651.406500px;}
.y85{bottom:653.139000px;}
.ya8{bottom:653.574750px;}
.y42{bottom:653.587350px;}
.y65{bottom:653.587500px;}
.y104{bottom:654.678000px;}
.y151{bottom:661.723350px;}
.y17d{bottom:664.639200px;}
.y11e{bottom:664.837500px;}
.y84{bottom:668.139000px;}
.y1ab{bottom:669.268500px;}
.y1b{bottom:673.906500px;}
.y41{bottom:676.087350px;}
.y64{bottom:676.087500px;}
.y103{bottom:677.178000px;}
.y17c{bottom:682.639200px;}
.y83{bottom:683.139000px;}
.y3{bottom:684.325350px;}
.y1aa{bottom:687.268500px;}
.y1a{bottom:696.406500px;}
.y82{bottom:698.139000px;}
.y40{bottom:698.587350px;}
.y63{bottom:698.587500px;}
.y102{bottom:699.678000px;}
.y17b{bottom:700.639200px;}
.y1a9{bottom:705.268500px;}
.y81{bottom:713.139000px;}
.y17a{bottom:718.639200px;}
.y19{bottom:718.906500px;}
.y150{bottom:720.223350px;}
.y3f{bottom:721.087350px;}
.y62{bottom:721.087500px;}
.y101{bottom:722.178000px;}
.y1a8{bottom:723.268500px;}
.y80{bottom:728.139000px;}
.y10{bottom:730.716750px;}
.y179{bottom:736.639200px;}
.y14f{bottom:738.223350px;}
.y1a7{bottom:741.268500px;}
.y2{bottom:741.325350px;}
.y18{bottom:741.406500px;}
.y7f{bottom:743.139000px;}
.y3e{bottom:743.587350px;}
.y61{bottom:743.587500px;}
.y100{bottom:744.678000px;}
.y178{bottom:754.639200px;}
.y14e{bottom:756.223350px;}
.y7e{bottom:758.139000px;}
.y1a6{bottom:759.268500px;}
.y17{bottom:763.906500px;}
.y3d{bottom:766.087350px;}
.y60{bottom:766.087500px;}
.yff{bottom:767.178000px;}
.y177{bottom:772.639200px;}
.y7d{bottom:773.139000px;}
.y14d{bottom:774.223350px;}
.y1a5{bottom:777.268500px;}
.y16{bottom:786.406500px;}
.y7c{bottom:788.139000px;}
.y3c{bottom:788.587350px;}
.y5f{bottom:788.587500px;}
.yfe{bottom:789.678000px;}
.y176{bottom:790.639200px;}
.y14c{bottom:792.223350px;}
.y1a4{bottom:795.268500px;}
.y1{bottom:798.325350px;}
.y7b{bottom:803.139000px;}
.y175{bottom:808.639200px;}
.y15{bottom:808.906500px;}
.y14b{bottom:810.223350px;}
.y3b{bottom:811.087350px;}
.y5e{bottom:811.087500px;}
.yfd{bottom:812.178000px;}
.y1a3{bottom:813.268500px;}
.y174{bottom:826.639200px;}
.y14a{bottom:828.223350px;}
.y7a{bottom:829.969350px;}
.y1a2{bottom:831.268500px;}
.y14{bottom:831.406500px;}
.y3a{bottom:833.587350px;}
.y5d{bottom:833.587500px;}
.yfc{bottom:834.678000px;}
.y79{bottom:843.469350px;}
.y173{bottom:844.639200px;}
.y149{bottom:846.223350px;}
.y1a1{bottom:849.268500px;}
.y13{bottom:853.906500px;}
.y39{bottom:856.087350px;}
.y5c{bottom:856.087500px;}
.yfb{bottom:857.178000px;}
.y172{bottom:862.639200px;}
.y148{bottom:864.223350px;}
.y1a0{bottom:867.268500px;}
.ya7{bottom:876.406500px;}
.ye0{bottom:878.453400px;}
.y38{bottom:878.587350px;}
.y5b{bottom:878.587500px;}
.y19f{bottom:885.268500px;}
.ye1{bottom:887.460900px;}
.ya6{bottom:887.760300px;}
.y78{bottom:888.386400px;}
.ydf{bottom:897.953400px;}
.y171{bottom:898.639200px;}
.y12{bottom:898.906500px;}
.y37{bottom:901.087350px;}
.y5a{bottom:901.087500px;}
.yfa{bottom:902.178000px;}
.y19e{bottom:903.268500px;}
.y147{bottom:904.723350px;}
.y11{bottom:961.339350px;}
.y36{bottom:961.870350px;}
.h14{height:37.020041px;}
.hf{height:38.556000px;}
.h10{height:38.928000px;}
.h11{height:42.420000px;}
.hd{height:43.794000px;}
.he{height:45.240000px;}
.ha{height:48.660000px;}
.h7{height:50.784000px;}
.hb{height:51.264000px;}
.h13{height:53.526000px;}
.h9{height:58.392000px;}
.hc{height:64.849800px;}
.h12{height:64.850400px;}
.h8{height:68.124000px;}
.h5{height:97.320000px;}
.h4{height:155.712000px;}
.h2{height:184.908000px;}
.h6{height:186.648000px;}
.h3{height:205.359000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:36.145200px;}
.x3{left:44.559600px;}
.xf{left:72.115200px;}
.xc{left:80.515050px;}
.x4{left:85.039350px;}
.x3f{left:94.201350px;}
.x31{left:96.177750px;}
.x32{left:105.141300px;}
.x5{left:106.299150px;}
.x33{left:110.493450px;}
.x30{left:120.467250px;}
.x34{left:125.670900px;}
.x7{left:127.559100px;}
.x35{left:135.730500px;}
.x1e{left:151.055400px;}
.x1c{left:153.052350px;}
.x1d{left:154.536000px;}
.x6{left:157.262700px;}
.x1f{left:160.127850px;}
.x1b{left:175.293900px;}
.x8{left:182.834700px;}
.xd{left:187.086600px;}
.x1{left:191.338650px;}
.x38{left:197.311800px;}
.x37{left:201.117750px;}
.x36{left:229.584000px;}
.x1a{left:258.977100px;}
.x19{left:269.498550px;}
.x11{left:275.353200px;}
.x12{left:276.480750px;}
.x16{left:278.951550px;}
.x14{left:284.804100px;}
.x18{left:286.119750px;}
.x13{left:293.558400px;}
.x15{left:297.189900px;}
.x10{left:319.741350px;}
.x3b{left:322.917600px;}
.x39{left:328.349550px;}
.x3a{left:336.856650px;}
.x9{left:340.157400px;}
.x17{left:342.961200px;}
.x21{left:404.161050px;}
.x22{left:405.981000px;}
.x20{left:407.561550px;}
.x23{left:410.266200px;}
.xe{left:412.440900px;}
.xa{left:437.952750px;}
.x3d{left:450.052500px;}
.x3c{left:457.538400px;}
.x3e{left:458.645250px;}
.x2c{left:499.786350px;}
.x2e{left:503.632050px;}
.x2b{left:506.182500px;}
.x2f{left:509.046750px;}
.x2d{left:510.216750px;}
.xb{left:540.000000px;}
.x28{left:541.299750px;}
.x29{left:545.293650px;}
.x27{left:552.420150px;}
.x2a{left:557.555550px;}
.x26{left:559.004550px;}
.x25{left:568.419150px;}
.x24{left:575.671350px;}
@media print{
.v3{vertical-align:-1.888000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.888000pt;}
.v4{vertical-align:21.311467pt;}
.v1{vertical-align:67.487467pt;}
.ls33{letter-spacing:-8.533333pt;}
.ls2{letter-spacing:-3.456000pt;}
.ls4d{letter-spacing:-3.360000pt;}
.ls46{letter-spacing:-2.880000pt;}
.ls38{letter-spacing:-2.826667pt;}
.ls9{letter-spacing:-2.784000pt;}
.ls47{letter-spacing:-2.453333pt;}
.ls51{letter-spacing:-1.813333pt;}
.ls50{letter-spacing:-1.653333pt;}
.ls1e{letter-spacing:-1.632000pt;}
.ls4b{letter-spacing:-1.600000pt;}
.ls26{letter-spacing:-1.582443pt;}
.ls39{letter-spacing:-1.546667pt;}
.ls3c{letter-spacing:-1.493333pt;}
.ls1c{letter-spacing:-1.472000pt;}
.ls3a{letter-spacing:-1.386667pt;}
.ls35{letter-spacing:-1.333333pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.226667pt;}
.ls2b{letter-spacing:-1.216000pt;}
.ls3b{letter-spacing:-1.173333pt;}
.ls3{letter-spacing:-1.152000pt;}
.lsa{letter-spacing:-1.109333pt;}
.ls36{letter-spacing:-1.013333pt;}
.ls3f{letter-spacing:-0.960000pt;}
.ls3e{letter-spacing:-0.906667pt;}
.ls4f{letter-spacing:-0.853333pt;}
.ls2a{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.810667pt;}
.ls1f{letter-spacing:-0.770934pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls40{letter-spacing:-0.746667pt;}
.ls1{letter-spacing:-0.709333pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.554667pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.527481pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.486906pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.446330pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls49{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.202877pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.170667pt;}
.ls25{letter-spacing:-0.162302pt;}
.ls32{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.121726pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.202877pt;}
.lsf{letter-spacing:0.213333pt;}
.ls30{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls42{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.960000pt;}
.ls44{letter-spacing:1.013333pt;}
.ls12{letter-spacing:1.024000pt;}
.ls8{letter-spacing:1.066667pt;}
.ls2f{letter-spacing:1.146133pt;}
.ls2e{letter-spacing:1.146667pt;}
.ls41{letter-spacing:1.173333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls43{letter-spacing:1.493333pt;}
.ls5{letter-spacing:2.256000pt;}
.ls4{letter-spacing:2.259733pt;}
.ls2d{letter-spacing:4.908800pt;}
.ws0{word-spacing:-46.005333pt;}
.ws1{word-spacing:-31.494400pt;}
.ws4{word-spacing:-16.949333pt;}
.wse5{word-spacing:-15.168000pt;}
.ws136{word-spacing:-15.040000pt;}
.ws15a{word-spacing:-14.848000pt;}
.ws40{word-spacing:-14.656000pt;}
.ws6{word-spacing:-14.528000pt;}
.ws112{word-spacing:-14.272000pt;}
.ws137{word-spacing:-14.144000pt;}
.wsc5{word-spacing:-14.016000pt;}
.wsff{word-spacing:-13.952000pt;}
.wsd1{word-spacing:-13.760000pt;}
.ws138{word-spacing:-13.696000pt;}
.ws191{word-spacing:-13.600000pt;}
.ws139{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.376000pt;}
.ws18f{word-spacing:-13.280000pt;}
.ws192{word-spacing:-13.253333pt;}
.ws113{word-spacing:-13.184000pt;}
.ws193{word-spacing:-13.120000pt;}
.ws194{word-spacing:-13.066667pt;}
.ws188{word-spacing:-12.746667pt;}
.ws1d5{word-spacing:-12.693333pt;}
.ws190{word-spacing:-12.640000pt;}
.ws198{word-spacing:-12.586667pt;}
.ws17e{word-spacing:-12.373333pt;}
.ws19b{word-spacing:-12.266667pt;}
.ws195{word-spacing:-12.213333pt;}
.ws178{word-spacing:-12.106667pt;}
.ws181{word-spacing:-12.000000pt;}
.ws180{word-spacing:-11.946667pt;}
.ws19a{word-spacing:-11.840000pt;}
.ws199{word-spacing:-11.786667pt;}
.ws17f{word-spacing:-11.626667pt;}
.ws185{word-spacing:-11.573333pt;}
.ws186{word-spacing:-11.520000pt;}
.ws183{word-spacing:-11.466667pt;}
.ws1d3{word-spacing:-11.413333pt;}
.ws18d{word-spacing:-11.200000pt;}
.ws18e{word-spacing:-11.146667pt;}
.ws184{word-spacing:-11.093333pt;}
.ws5{word-spacing:-11.072000pt;}
.ws18a{word-spacing:-10.933333pt;}
.ws41{word-spacing:-10.896000pt;}
.ws18c{word-spacing:-10.880000pt;}
.ws182{word-spacing:-10.773333pt;}
.ws189{word-spacing:-10.720000pt;}
.ws18b{word-spacing:-10.613333pt;}
.ws1d4{word-spacing:-10.453333pt;}
.ws59{word-spacing:-10.416000pt;}
.ws1d6{word-spacing:-10.293333pt;}
.ws3f{word-spacing:-10.169600pt;}
.wsd2{word-spacing:-9.945600pt;}
.ws61{word-spacing:-9.898667pt;}
.ws197{word-spacing:-9.760000pt;}
.ws5d{word-spacing:-9.685333pt;}
.ws5c{word-spacing:-9.557333pt;}
.ws60{word-spacing:-9.514667pt;}
.ws118{word-spacing:-9.413508pt;}
.ws187{word-spacing:-9.386667pt;}
.ws196{word-spacing:-9.226667pt;}
.ws115{word-spacing:-9.210631pt;}
.ws5f{word-spacing:-9.130667pt;}
.ws119{word-spacing:-9.088905pt;}
.ws11c{word-spacing:-9.048329pt;}
.ws11b{word-spacing:-9.007754pt;}
.ws5e{word-spacing:-8.874667pt;}
.ws114{word-spacing:-8.784000pt;}
.ws15b{word-spacing:-8.768000pt;}
.ws11a{word-spacing:-8.764301pt;}
.ws1b4{word-spacing:-8.746667pt;}
.ws117{word-spacing:-8.723725pt;}
.ws11e{word-spacing:-8.683150pt;}
.ws5b{word-spacing:-8.576000pt;}
.ws116{word-spacing:-8.439697pt;}
.ws161{word-spacing:-8.256000pt;}
.ws1a3{word-spacing:-8.000000pt;}
.ws5a{word-spacing:-7.632000pt;}
.ws11d{word-spacing:-7.628188pt;}
.ws2f{word-spacing:-7.552000pt;}
.wsa9{word-spacing:-7.168000pt;}
.ws19d{word-spacing:-7.146667pt;}
.ws3b{word-spacing:-7.104000pt;}
.wse6{word-spacing:-6.976000pt;}
.ws9f{word-spacing:-6.592000pt;}
.ws68{word-spacing:-6.336000pt;}
.ws141{word-spacing:-6.272000pt;}
.ws7e{word-spacing:-6.016000pt;}
.ws1c5{word-spacing:-5.706667pt;}
.ws42{word-spacing:-5.696000pt;}
.ws4a{word-spacing:-5.632000pt;}
.ws80{word-spacing:-5.504000pt;}
.wsfb{word-spacing:-5.440000pt;}
.wse4{word-spacing:-5.376000pt;}
.ws13b{word-spacing:-5.312000pt;}
.ws1d0{word-spacing:-5.280000pt;}
.ws12e{word-spacing:-5.184000pt;}
.ws76{word-spacing:-5.120000pt;}
.ws17{word-spacing:-4.928000pt;}
.ws171{word-spacing:-4.800000pt;}
.ws49{word-spacing:-4.288000pt;}
.ws10a{word-spacing:-4.160000pt;}
.ws101{word-spacing:-4.032000pt;}
.wsf6{word-spacing:-3.968000pt;}
.ws1b0{word-spacing:-3.946667pt;}
.ws3a{word-spacing:-3.904000pt;}
.ws1af{word-spacing:-3.893333pt;}
.ws83{word-spacing:-3.776000pt;}
.ws39{word-spacing:-3.712000pt;}
.ws14f{word-spacing:-3.648000pt;}
.ws149{word-spacing:-3.584000pt;}
.ws106{word-spacing:-3.520000pt;}
.wsfa{word-spacing:-3.456000pt;}
.ws18{word-spacing:-3.328000pt;}
.wse9{word-spacing:-3.200000pt;}
.ws1b2{word-spacing:-3.146667pt;}
.ws142{word-spacing:-3.136000pt;}
.wscf{word-spacing:-3.072000pt;}
.wsa1{word-spacing:-3.008000pt;}
.ws12c{word-spacing:-2.944000pt;}
.ws1bd{word-spacing:-2.880000pt;}
.ws1be{word-spacing:-2.826667pt;}
.wsce{word-spacing:-2.816000pt;}
.wsd{word-spacing:-2.752000pt;}
.ws1bc{word-spacing:-2.666667pt;}
.ws90{word-spacing:-2.624000pt;}
.wsa6{word-spacing:-2.560000pt;}
.ws6f{word-spacing:-2.496000pt;}
.ws23{word-spacing:-2.432000pt;}
.ws173{word-spacing:-2.368000pt;}
.ws1b8{word-spacing:-2.346667pt;}
.wsc{word-spacing:-2.304000pt;}
.ws133{word-spacing:-2.240000pt;}
.wsdb{word-spacing:-2.176000pt;}
.ws14b{word-spacing:-2.112000pt;}
.ws121{word-spacing:-2.048000pt;}
.ws1da{word-spacing:-2.026667pt;}
.wsb9{word-spacing:-1.984000pt;}
.ws67{word-spacing:-1.920000pt;}
.ws97{word-spacing:-1.856000pt;}
.ws1ac{word-spacing:-1.813333pt;}
.ws8d{word-spacing:-1.792000pt;}
.wse3{word-spacing:-1.728000pt;}
.ws4d{word-spacing:-1.600000pt;}
.ws92{word-spacing:-1.536000pt;}
.ws44{word-spacing:-1.472000pt;}
.ws70{word-spacing:-1.408000pt;}
.ws1bf{word-spacing:-1.386667pt;}
.ws1b{word-spacing:-1.344000pt;}
.ws1c3{word-spacing:-1.333333pt;}
.ws58{word-spacing:-1.322667pt;}
.ws91{word-spacing:-1.280000pt;}
.ws1a5{word-spacing:-1.173333pt;}
.wsc0{word-spacing:-1.088000pt;}
.ws8c{word-spacing:-1.066667pt;}
.ws11f{word-spacing:-1.024000pt;}
.ws1c2{word-spacing:-1.013333pt;}
.ws6e{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.896000pt;}
.ws145{word-spacing:-0.832000pt;}
.ws69{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.576000pt;}
.wse0{word-spacing:-0.512000pt;}
.wsba{word-spacing:-0.448000pt;}
.ws30{word-spacing:-0.384000pt;}
.ws1d7{word-spacing:-0.373333pt;}
.ws10f{word-spacing:-0.320000pt;}
.wsa2{word-spacing:-0.256000pt;}
.ws65{word-spacing:-0.213333pt;}
.wse7{word-spacing:-0.192000pt;}
.ws1c4{word-spacing:-0.160000pt;}
.ws8b{word-spacing:-0.128000pt;}
.wsd3{word-spacing:-0.064000pt;}
.ws1a2{word-spacing:-0.053333pt;}
.ws26{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wse1{word-spacing:0.128000pt;}
.ws1cf{word-spacing:0.160000pt;}
.ws124{word-spacing:0.162302pt;}
.ws62{word-spacing:0.170667pt;}
.ws131{word-spacing:0.192000pt;}
.ws1a1{word-spacing:0.213333pt;}
.ws7b{word-spacing:0.256000pt;}
.ws1ad{word-spacing:0.373333pt;}
.ws6a{word-spacing:0.384000pt;}
.wsaa{word-spacing:0.448000pt;}
.ws1e0{word-spacing:0.480000pt;}
.ws125{word-spacing:0.486906pt;}
.ws8a{word-spacing:0.512000pt;}
.ws122{word-spacing:0.533333pt;}
.ws63{word-spacing:0.554667pt;}
.ws7f{word-spacing:0.576000pt;}
.ws1aa{word-spacing:0.586667pt;}
.ws13a{word-spacing:0.640000pt;}
.ws89{word-spacing:0.693333pt;}
.ws16e{word-spacing:0.704000pt;}
.ws1d1{word-spacing:0.746667pt;}
.ws111{word-spacing:0.768000pt;}
.ws123{word-spacing:0.770934pt;}
.wsdd{word-spacing:0.800000pt;}
.ws64{word-spacing:0.810667pt;}
.ws3d{word-spacing:0.832000pt;}
.ws1d2{word-spacing:0.853333pt;}
.ws6c{word-spacing:0.896000pt;}
.ws38{word-spacing:0.960000pt;}
.ws1b3{word-spacing:1.013333pt;}
.ws1e{word-spacing:1.024000pt;}
.ws88{word-spacing:1.120000pt;}
.ws3c{word-spacing:1.152000pt;}
.ws1c7{word-spacing:1.173333pt;}
.wsf0{word-spacing:1.280000pt;}
.wsb{word-spacing:1.344000pt;}
.wsc7{word-spacing:1.408000pt;}
.ws1a0{word-spacing:1.440000pt;}
.ws31{word-spacing:1.472000pt;}
.ws1e6{word-spacing:1.488000pt;}
.ws95{word-spacing:1.536000pt;}
.wsa4{word-spacing:1.542400pt;}
.ws54{word-spacing:1.600000pt;}
.ws140{word-spacing:1.664000pt;}
.ws1a9{word-spacing:1.706667pt;}
.wsd6{word-spacing:1.728000pt;}
.ws1a6{word-spacing:1.760000pt;}
.ws45{word-spacing:1.792000pt;}
.wsc4{word-spacing:1.856000pt;}
.ws1e7{word-spacing:1.872000pt;}
.wsb8{word-spacing:1.920000pt;}
.ws132{word-spacing:1.984000pt;}
.wsc3{word-spacing:2.048000pt;}
.ws28{word-spacing:2.112000pt;}
.ws162{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.240000pt;}
.wscc{word-spacing:2.368000pt;}
.ws7c{word-spacing:2.432000pt;}
.ws1e2{word-spacing:2.453333pt;}
.ws108{word-spacing:2.496000pt;}
.wsed{word-spacing:2.560000pt;}
.wseb{word-spacing:2.624000pt;}
.ws1ce{word-spacing:2.666667pt;}
.ws148{word-spacing:2.688000pt;}
.ws1cd{word-spacing:2.720000pt;}
.wsca{word-spacing:2.752000pt;}
.ws99{word-spacing:2.816000pt;}
.ws93{word-spacing:2.944000pt;}
.ws14d{word-spacing:3.008000pt;}
.ws19f{word-spacing:3.040000pt;}
.ws13{word-spacing:3.072000pt;}
.ws1b7{word-spacing:3.093333pt;}
.ws134{word-spacing:3.136000pt;}
.ws1b6{word-spacing:3.146667pt;}
.ws48{word-spacing:3.200000pt;}
.ws107{word-spacing:3.264000pt;}
.ws166{word-spacing:3.328000pt;}
.ws2d{word-spacing:3.456000pt;}
.ws85{word-spacing:3.520000pt;}
.ws78{word-spacing:3.584000pt;}
.wsa7{word-spacing:3.648000pt;}
.ws53{word-spacing:3.712000pt;}
.wsdc{word-spacing:3.776000pt;}
.wsac{word-spacing:3.840000pt;}
.wse2{word-spacing:3.904000pt;}
.ws13f{word-spacing:3.968000pt;}
.ws19{word-spacing:4.032000pt;}
.ws159{word-spacing:4.096000pt;}
.wsd0{word-spacing:4.160000pt;}
.ws56{word-spacing:4.224000pt;}
.ws126{word-spacing:4.288000pt;}
.wsb0{word-spacing:4.352000pt;}
.ws14e{word-spacing:4.416000pt;}
.ws87{word-spacing:4.480000pt;}
.wsf{word-spacing:4.544000pt;}
.ws4b{word-spacing:4.608000pt;}
.wsa8{word-spacing:4.672000pt;}
.wsde{word-spacing:4.736000pt;}
.ws50{word-spacing:4.800000pt;}
.ws17a{word-spacing:4.853333pt;}
.wsef{word-spacing:4.864000pt;}
.ws17d{word-spacing:4.906667pt;}
.ws21{word-spacing:4.992000pt;}
.wsa{word-spacing:5.056000pt;}
.wsab{word-spacing:5.120000pt;}
.ws79{word-spacing:5.184000pt;}
.ws7a{word-spacing:5.248000pt;}
.ws17b{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.312000pt;}
.ws7d{word-spacing:5.376000pt;}
.ws12d{word-spacing:5.440000pt;}
.ws75{word-spacing:5.504000pt;}
.ws1e1{word-spacing:5.546667pt;}
.wscd{word-spacing:5.568000pt;}
.ws1a7{word-spacing:5.600000pt;}
.ws110{word-spacing:5.632000pt;}
.ws1a8{word-spacing:5.653333pt;}
.ws100{word-spacing:5.696000pt;}
.ws1b1{word-spacing:5.706667pt;}
.ws175{word-spacing:5.760000pt;}
.wsda{word-spacing:5.824000pt;}
.ws1a{word-spacing:5.952000pt;}
.ws15{word-spacing:6.016000pt;}
.ws4c{word-spacing:6.080000pt;}
.ws86{word-spacing:6.144000pt;}
.wsbb{word-spacing:6.208000pt;}
.ws2b{word-spacing:6.272000pt;}
.ws167{word-spacing:6.336000pt;}
.ws1bb{word-spacing:6.346667pt;}
.wse{word-spacing:6.400000pt;}
.ws160{word-spacing:6.464000pt;}
.ws1b5{word-spacing:6.506667pt;}
.ws11{word-spacing:6.528000pt;}
.ws8e{word-spacing:6.592000pt;}
.ws1e5{word-spacing:6.624000pt;}
.wsf5{word-spacing:6.656000pt;}
.ws105{word-spacing:6.720000pt;}
.ws84{word-spacing:6.784000pt;}
.wsfe{word-spacing:6.848000pt;}
.wsbc{word-spacing:6.912000pt;}
.ws12{word-spacing:6.976000pt;}
.ws1ab{word-spacing:6.986667pt;}
.ws1d{word-spacing:7.040000pt;}
.ws2c{word-spacing:7.104000pt;}
.ws14{word-spacing:7.168000pt;}
.wsc1{word-spacing:7.232000pt;}
.ws3e{word-spacing:7.296000pt;}
.ws32{word-spacing:7.360000pt;}
.wsf1{word-spacing:7.552000pt;}
.wsd8{word-spacing:7.616000pt;}
.wsf3{word-spacing:7.680000pt;}
.wsea{word-spacing:7.744000pt;}
.wsa0{word-spacing:7.872000pt;}
.ws1de{word-spacing:8.000000pt;}
.ws8f{word-spacing:8.064000pt;}
.ws1df{word-spacing:8.106667pt;}
.ws156{word-spacing:8.128000pt;}
.ws144{word-spacing:8.192000pt;}
.ws36{word-spacing:8.256000pt;}
.ws9d{word-spacing:8.320000pt;}
.ws1db{word-spacing:8.373333pt;}
.ws24{word-spacing:8.384000pt;}
.ws9e{word-spacing:8.448000pt;}
.ws19e{word-spacing:8.533333pt;}
.ws22{word-spacing:8.576000pt;}
.wsbd{word-spacing:8.640000pt;}
.ws10e{word-spacing:8.704000pt;}
.ws34{word-spacing:8.768000pt;}
.ws1c1{word-spacing:8.800000pt;}
.ws172{word-spacing:8.832000pt;}
.ws1d9{word-spacing:8.853333pt;}
.wsad{word-spacing:8.960000pt;}
.wsb3{word-spacing:9.024000pt;}
.ws1e3{word-spacing:9.066667pt;}
.ws1e4{word-spacing:9.120000pt;}
.wsd9{word-spacing:9.152000pt;}
.wsf2{word-spacing:9.216000pt;}
.ws109{word-spacing:9.280000pt;}
.wsfc{word-spacing:9.344000pt;}
.ws1c9{word-spacing:9.386667pt;}
.ws10c{word-spacing:9.472000pt;}
.ws1ca{word-spacing:9.493333pt;}
.ws135{word-spacing:9.536000pt;}
.ws1dc{word-spacing:9.546667pt;}
.ws150{word-spacing:9.664000pt;}
.wsc6{word-spacing:9.728000pt;}
.ws29{word-spacing:9.792000pt;}
.ws15c{word-spacing:9.920000pt;}
.ws102{word-spacing:9.984000pt;}
.ws17c{word-spacing:10.026667pt;}
.ws16a{word-spacing:10.048000pt;}
.wsae{word-spacing:10.176000pt;}
.wsd7{word-spacing:10.240000pt;}
.wsb5{word-spacing:10.304000pt;}
.ws147{word-spacing:10.368000pt;}
.ws1dd{word-spacing:10.400000pt;}
.ws9a{word-spacing:10.432000pt;}
.wsb2{word-spacing:10.496000pt;}
.ws71{word-spacing:10.560000pt;}
.ws1cb{word-spacing:10.666667pt;}
.ws158{word-spacing:10.688000pt;}
.ws1d8{word-spacing:10.773333pt;}
.ws43{word-spacing:10.880000pt;}
.ws94{word-spacing:11.008000pt;}
.ws104{word-spacing:11.072000pt;}
.ws1ae{word-spacing:11.146667pt;}
.ws16{word-spacing:11.200000pt;}
.ws4e{word-spacing:11.392000pt;}
.ws13c{word-spacing:11.520000pt;}
.ws13e{word-spacing:11.584000pt;}
.ws33{word-spacing:11.648000pt;}
.wsf8{word-spacing:11.712000pt;}
.wsf9{word-spacing:11.840000pt;}
.ws27{word-spacing:11.846400pt;}
.ws127{word-spacing:11.904000pt;}
.ws155{word-spacing:12.096000pt;}
.ws1ba{word-spacing:12.106667pt;}
.ws1b9{word-spacing:12.213333pt;}
.ws120{word-spacing:12.224000pt;}
.ws14c{word-spacing:12.416000pt;}
.ws1c0{word-spacing:12.426667pt;}
.ws174{word-spacing:12.480000pt;}
.ws1c6{word-spacing:12.586667pt;}
.ws25{word-spacing:12.736000pt;}
.ws1cc{word-spacing:12.853333pt;}
.wsb4{word-spacing:12.864000pt;}
.wscb{word-spacing:13.120000pt;}
.wsc8{word-spacing:13.440000pt;}
.wsdf{word-spacing:13.504000pt;}
.ws12b{word-spacing:13.696000pt;}
.ws4f{word-spacing:13.824000pt;}
.ws168{word-spacing:13.888000pt;}
.ws46{word-spacing:14.016000pt;}
.ws151{word-spacing:14.080000pt;}
.ws165{word-spacing:14.144000pt;}
.ws96{word-spacing:14.208000pt;}
.wsec{word-spacing:14.272000pt;}
.ws1a4{word-spacing:14.400000pt;}
.ws9c{word-spacing:14.592000pt;}
.ws6d{word-spacing:14.656000pt;}
.ws72{word-spacing:14.720000pt;}
.wsc9{word-spacing:14.784000pt;}
.wsc2{word-spacing:14.848000pt;}
.ws9b{word-spacing:14.976000pt;}
.ws15d{word-spacing:15.232000pt;}
.ws16b{word-spacing:15.488000pt;}
.ws153{word-spacing:15.552000pt;}
.wsbe{word-spacing:15.680000pt;}
.ws152{word-spacing:15.936000pt;}
.ws1c8{word-spacing:16.106667pt;}
.wsf4{word-spacing:16.192000pt;}
.ws170{word-spacing:16.256000pt;}
.ws163{word-spacing:16.320000pt;}
.ws10{word-spacing:16.512000pt;}
.ws74{word-spacing:16.768000pt;}
.ws154{word-spacing:16.960000pt;}
.ws12a{word-spacing:17.024000pt;}
.ws103{word-spacing:17.216000pt;}
.ws157{word-spacing:17.280000pt;}
.wsfd{word-spacing:17.472000pt;}
.ws98{word-spacing:17.536000pt;}
.ws1c{word-spacing:17.600000pt;}
.ws129{word-spacing:17.664000pt;}
.wsa3{word-spacing:17.792000pt;}
.ws130{word-spacing:17.984000pt;}
.wsf7{word-spacing:18.176000pt;}
.ws128{word-spacing:18.560000pt;}
.ws35{word-spacing:18.624000pt;}
.ws12f{word-spacing:18.688000pt;}
.ws16d{word-spacing:19.008000pt;}
.ws51{word-spacing:19.072000pt;}
.ws15f{word-spacing:19.200000pt;}
.ws77{word-spacing:19.456000pt;}
.ws52{word-spacing:19.584000pt;}
.wse8{word-spacing:19.904000pt;}
.ws169{word-spacing:19.968000pt;}
.ws16c{word-spacing:20.608000pt;}
.ws6b{word-spacing:20.736000pt;}
.ws37{word-spacing:21.248000pt;}
.ws9{word-spacing:22.336000pt;}
.wsee{word-spacing:22.656000pt;}
.ws8{word-spacing:22.912000pt;}
.ws13d{word-spacing:22.976000pt;}
.ws20{word-spacing:23.232000pt;}
.ws15e{word-spacing:23.744000pt;}
.ws176{word-spacing:24.512000pt;}
.wsbf{word-spacing:25.536000pt;}
.ws10b{word-spacing:26.176000pt;}
.wsd4{word-spacing:26.432000pt;}
.ws10d{word-spacing:26.688000pt;}
.ws146{word-spacing:27.008000pt;}
.ws2a{word-spacing:27.328000pt;}
.ws143{word-spacing:28.352000pt;}
.wsb6{word-spacing:28.608000pt;}
.wsb7{word-spacing:28.800000pt;}
.ws47{word-spacing:28.928000pt;}
.ws73{word-spacing:33.024000pt;}
.ws16f{word-spacing:34.048000pt;}
.ws14a{word-spacing:35.520000pt;}
.ws57{word-spacing:37.104000pt;}
.wsa5{word-spacing:37.568000pt;}
.wsaf{word-spacing:38.656000pt;}
.wsd5{word-spacing:39.168000pt;}
.ws66{word-spacing:57.869867pt;}
.ws3{word-spacing:60.429333pt;}
.ws177{word-spacing:60.429867pt;}
.ws164{word-spacing:60.430400pt;}
.ws179{word-spacing:64.138667pt;}
.ws19c{word-spacing:71.456000pt;}
.ws81{word-spacing:192.470933pt;}
.ws82{word-spacing:238.077333pt;}
._1f{margin-left:-33.440000pt;}
._22{margin-left:-26.694400pt;}
._21{margin-left:-24.499200pt;}
._1b{margin-left:-22.005333pt;}
._d{margin-left:-17.450667pt;}
._1d{margin-left:-16.430933pt;}
._19{margin-left:-14.890667pt;}
._20{margin-left:-13.305600pt;}
._b{margin-left:-12.164267pt;}
._8{margin-left:-10.453333pt;}
._1c{margin-left:-8.842667pt;}
._e{margin-left:-7.861333pt;}
._a{margin-left:-6.417067pt;}
._7{margin-left:-4.938667pt;}
._3{margin-left:-3.850667pt;}
._2{margin-left:-2.837333pt;}
._0{margin-left:-1.824000pt;}
._6{margin-left:-0.934400pt;}
._1{width:1.418667pt;}
._5{width:2.532267pt;}
._9{width:3.439467pt;}
._f{width:5.034133pt;}
._4{width:6.359467pt;}
._10{width:7.626667pt;}
._11{width:8.590933pt;}
._25{width:9.619733pt;}
._23{width:14.246933pt;}
._24{width:16.556800pt;}
._1a{width:36.102400pt;}
._12{width:37.103467pt;}
._1e{width:40.946133pt;}
._13{width:54.309333pt;}
._c{width:60.569600pt;}
._14{width:108.530667pt;}
._17{width:120.477333pt;}
._16{width:164.264000pt;}
._15{width:186.102400pt;}
._18{width:187.261333pt;}
.fsc{font-size:40.575467pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.fs1{font-size:141.866667pt;}
.fs2{font-size:170.666667pt;}
.fs0{font-size:202.666667pt;}
.fs4{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y1d1{bottom:75.590533pt;}
.y77{bottom:75.590667pt;}
.yce{bottom:76.690000pt;}
.y19d{bottom:78.790400pt;}
.y35{bottom:79.028000pt;}
.y121{bottom:79.629600pt;}
.y59{bottom:80.966533pt;}
.ycc{bottom:80.966667pt;}
.yc0{bottom:80.971200pt;}
.yf9{bottom:81.124000pt;}
.yde{bottom:81.596533pt;}
.y11d{bottom:81.936000pt;}
.y1cb{bottom:82.905333pt;}
.y1d0{bottom:91.590533pt;}
.y170{bottom:92.198533pt;}
.ybf{bottom:94.304533pt;}
.y19c{bottom:94.790400pt;}
.y146{bottom:95.185867pt;}
.ya5{bottom:98.584267pt;}
.y1ca{bottom:98.905333pt;}
.y34{bottom:99.028000pt;}
.y76{bottom:99.149733pt;}
.y58{bottom:100.966533pt;}
.ycb{bottom:100.966667pt;}
.yf8{bottom:101.124000pt;}
.ydd{bottom:101.596533pt;}
.y11c{bottom:101.936000pt;}
.y16f{bottom:104.198533pt;}
.y1cf{bottom:107.590533pt;}
.y145{bottom:107.865733pt;}
.y19b{bottom:110.790400pt;}
.yf{bottom:110.955867pt;}
.ya4{bottom:111.917600pt;}
.y1c9{bottom:114.905333pt;}
.y142{bottom:117.470400pt;}
.y33{bottom:119.028000pt;}
.y16e{bottom:120.198533pt;}
.y144{bottom:120.545600pt;}
.y57{bottom:120.966533pt;}
.yca{bottom:120.966667pt;}
.yf7{bottom:121.124000pt;}
.ydc{bottom:121.596533pt;}
.y11b{bottom:121.936000pt;}
.y75{bottom:122.708667pt;}
.y1ce{bottom:123.590533pt;}
.ybe{bottom:125.232400pt;}
.ya3{bottom:125.250933pt;}
.y19a{bottom:126.790400pt;}
.y141{bottom:130.150267pt;}
.y1c8{bottom:130.905333pt;}
.y143{bottom:133.225467pt;}
.y16d{bottom:136.198533pt;}
.ybd{bottom:138.565733pt;}
.ya2{bottom:138.584267pt;}
.y74{bottom:138.708667pt;}
.y32{bottom:139.028000pt;}
.y1cd{bottom:139.590533pt;}
.yc9{bottom:140.966667pt;}
.yf6{bottom:141.124000pt;}
.ydb{bottom:141.596533pt;}
.ye{bottom:141.622533pt;}
.y11a{bottom:141.936000pt;}
.y199{bottom:142.790533pt;}
.y140{bottom:142.830133pt;}
.y1c7{bottom:146.905333pt;}
.ya1{bottom:151.917600pt;}
.y16c{bottom:152.198533pt;}
.y13f{bottom:155.510000pt;}
.y1cc{bottom:155.590533pt;}
.y198{bottom:158.790533pt;}
.y31{bottom:159.028000pt;}
.y56{bottom:160.966533pt;}
.yc8{bottom:160.966667pt;}
.yf5{bottom:161.124000pt;}
.yda{bottom:161.596533pt;}
.y119{bottom:161.936000pt;}
.y1c6{bottom:162.905333pt;}
.ya0{bottom:165.250933pt;}
.ybc{bottom:166.597200pt;}
.y16b{bottom:172.198533pt;}
.yd{bottom:172.289200pt;}
.y197{bottom:174.790533pt;}
.y9f{bottom:178.584267pt;}
.y1c5{bottom:178.905333pt;}
.y30{bottom:179.028000pt;}
.yba{bottom:179.930533pt;}
.y55{bottom:180.966533pt;}
.yc7{bottom:180.966667pt;}
.yf4{bottom:181.124000pt;}
.yd9{bottom:181.596533pt;}
.y118{bottom:181.936000pt;}
.y16a{bottom:184.198533pt;}
.y13b{bottom:186.660667pt;}
.y196{bottom:190.790533pt;}
.y9e{bottom:191.917600pt;}
.y13e{bottom:193.000533pt;}
.ybb{bottom:193.263867pt;}
.y1c4{bottom:194.905333pt;}
.y2f{bottom:199.028000pt;}
.y13a{bottom:199.340400pt;}
.y169{bottom:200.198533pt;}
.y54{bottom:200.966533pt;}
.yc6{bottom:200.966667pt;}
.yf3{bottom:201.124000pt;}
.yd8{bottom:201.596533pt;}
.y117{bottom:201.936000pt;}
.yc{bottom:202.955867pt;}
.y13d{bottom:205.680400pt;}
.yb9{bottom:206.597200pt;}
.y195{bottom:206.790533pt;}
.y1c3{bottom:210.905333pt;}
.y139{bottom:212.020267pt;}
.y12a{bottom:215.323067pt;}
.y168{bottom:216.198533pt;}
.y13c{bottom:218.360267pt;}
.y9d{bottom:218.584267pt;}
.y2e{bottom:219.028000pt;}
.y53{bottom:220.966533pt;}
.yc5{bottom:220.966667pt;}
.yf2{bottom:221.124000pt;}
.yd7{bottom:221.596533pt;}
.y116{bottom:221.936000pt;}
.y194{bottom:222.790533pt;}
.y138{bottom:224.700133pt;}
.y1c2{bottom:226.905333pt;}
.y129{bottom:227.323067pt;}
.y9c{bottom:231.917600pt;}
.y167{bottom:232.198533pt;}
.yb{bottom:233.622533pt;}
.yb8{bottom:234.418667pt;}
.y193{bottom:238.790533pt;}
.y2d{bottom:239.028000pt;}
.y128{bottom:239.323067pt;}
.y52{bottom:240.966533pt;}
.yc4{bottom:240.966667pt;}
.yf1{bottom:241.124000pt;}
.yd6{bottom:241.596533pt;}
.y115{bottom:241.936000pt;}
.y1c1{bottom:242.905333pt;}
.y9b{bottom:245.250933pt;}
.yb7{bottom:247.752000pt;}
.y127{bottom:251.323067pt;}
.y166{bottom:252.198533pt;}
.y192{bottom:254.790533pt;}
.y9a{bottom:258.584267pt;}
.y1c0{bottom:258.905333pt;}
.y2c{bottom:259.028000pt;}
.y51{bottom:260.966533pt;}
.yc3{bottom:260.966667pt;}
.yf0{bottom:261.124000pt;}
.yd5{bottom:261.596533pt;}
.y114{bottom:261.936000pt;}
.y126{bottom:263.323067pt;}
.y165{bottom:264.198533pt;}
.ya{bottom:264.289200pt;}
.y137{bottom:268.430800pt;}
.y191{bottom:270.790533pt;}
.y99{bottom:271.917600pt;}
.yb6{bottom:274.418667pt;}
.y1bf{bottom:274.905333pt;}
.y125{bottom:275.323067pt;}
.y2b{bottom:279.028000pt;}
.y164{bottom:280.198533pt;}
.y50{bottom:280.966533pt;}
.yc2{bottom:280.966667pt;}
.y136{bottom:281.110533pt;}
.yef{bottom:281.124000pt;}
.yd4{bottom:281.596533pt;}
.y113{bottom:281.936000pt;}
.y98{bottom:285.250933pt;}
.y190{bottom:286.790533pt;}
.y1be{bottom:290.905333pt;}
.y135{bottom:293.790400pt;}
.y163{bottom:296.198533pt;}
.y97{bottom:298.584267pt;}
.y2a{bottom:299.028000pt;}
.y124{bottom:299.323067pt;}
.y4f{bottom:300.966533pt;}
.y73{bottom:300.966667pt;}
.yb5{bottom:301.085333pt;}
.yee{bottom:301.124000pt;}
.yd3{bottom:301.596533pt;}
.y112{bottom:301.936000pt;}
.y18f{bottom:302.790533pt;}
.y134{bottom:306.470267pt;}
.y1bd{bottom:306.905333pt;}
.y123{bottom:311.323067pt;}
.y96{bottom:311.917600pt;}
.y162{bottom:312.198533pt;}
.y9{bottom:314.955867pt;}
.y18e{bottom:318.790533pt;}
.y29{bottom:319.028000pt;}
.y4e{bottom:320.966533pt;}
.y72{bottom:320.966667pt;}
.yed{bottom:321.124000pt;}
.yd2{bottom:321.596533pt;}
.y111{bottom:321.936000pt;}
.y1bc{bottom:322.905333pt;}
.y95{bottom:325.250933pt;}
.yb4{bottom:330.901600pt;}
.y161{bottom:332.198533pt;}
.y18d{bottom:334.790533pt;}
.y1bb{bottom:338.905333pt;}
.y28{bottom:339.028000pt;}
.y71{bottom:340.966667pt;}
.yec{bottom:341.124000pt;}
.yd1{bottom:341.596533pt;}
.y133{bottom:341.884133pt;}
.y110{bottom:341.936000pt;}
.y160{bottom:344.198533pt;}
.yb3{bottom:344.234933pt;}
.y18c{bottom:350.790533pt;}
.y94{bottom:352.641467pt;}
.y132{bottom:354.564000pt;}
.y1ba{bottom:354.905333pt;}
.y27{bottom:359.028000pt;}
.y15f{bottom:360.198533pt;}
.y4d{bottom:360.966533pt;}
.y70{bottom:360.966667pt;}
.yeb{bottom:361.124000pt;}
.yd0{bottom:361.596533pt;}
.y10f{bottom:361.936000pt;}
.y8{bottom:362.955867pt;}
.y93{bottom:365.974800pt;}
.y18b{bottom:366.790533pt;}
.y131{bottom:367.243867pt;}
.yb2{bottom:370.901600pt;}
.y1b9{bottom:370.905333pt;}
.y15e{bottom:376.198533pt;}
.y26{bottom:379.028000pt;}
.y92{bottom:379.308133pt;}
.y130{bottom:379.923733pt;}
.y4c{bottom:380.966533pt;}
.y6f{bottom:380.966667pt;}
.yea{bottom:381.124000pt;}
.y10e{bottom:381.936000pt;}
.y18a{bottom:382.790533pt;}
.yb1{bottom:384.234933pt;}
.ycf{bottom:385.466800pt;}
.ycd{bottom:386.023333pt;}
.y1b8{bottom:386.905333pt;}
.y15d{bottom:392.198533pt;}
.y12f{bottom:392.603600pt;}
.y91{bottom:392.641467pt;}
.y12e{bottom:394.770133pt;}
.y189{bottom:398.790533pt;}
.y25{bottom:399.028000pt;}
.y4b{bottom:400.966533pt;}
.y6e{bottom:400.966667pt;}
.ye9{bottom:401.124000pt;}
.y10d{bottom:401.936000pt;}
.y1b7{bottom:402.905333pt;}
.y12d{bottom:407.450000pt;}
.y7{bottom:410.955867pt;}
.y15c{bottom:412.198533pt;}
.yb0{bottom:413.631333pt;}
.y188{bottom:414.790533pt;}
.y1b6{bottom:418.905333pt;}
.y24{bottom:419.028000pt;}
.y12c{bottom:420.129867pt;}
.y90{bottom:420.253067pt;}
.y4a{bottom:420.966533pt;}
.y6d{bottom:420.966667pt;}
.ye8{bottom:421.124000pt;}
.y10c{bottom:421.936000pt;}
.y15b{bottom:424.198533pt;}
.yaf{bottom:426.964667pt;}
.y187{bottom:430.790533pt;}
.y12b{bottom:432.809733pt;}
.y8f{bottom:433.586400pt;}
.y1b5{bottom:434.905333pt;}
.y23{bottom:439.028000pt;}
.y15a{bottom:440.198533pt;}
.y49{bottom:440.966533pt;}
.y6c{bottom:440.966667pt;}
.ye7{bottom:441.124000pt;}
.y10b{bottom:441.936000pt;}
.y186{bottom:446.790533pt;}
.y8e{bottom:446.919733pt;}
.y1b4{bottom:450.905333pt;}
.yae{bottom:453.631333pt;}
.y159{bottom:456.198533pt;}
.y6{bottom:458.955867pt;}
.y22{bottom:459.028000pt;}
.y8d{bottom:460.253067pt;}
.y48{bottom:460.966533pt;}
.y6b{bottom:460.966667pt;}
.ye6{bottom:461.124000pt;}
.y10a{bottom:461.936000pt;}
.y185{bottom:462.790533pt;}
.y1b3{bottom:466.905333pt;}
.y158{bottom:472.198533pt;}
.y8c{bottom:473.586400pt;}
.y120{bottom:478.296267pt;}
.y184{bottom:478.790400pt;}
.y21{bottom:479.028000pt;}
.yad{bottom:480.298000pt;}
.y47{bottom:480.966533pt;}
.y6a{bottom:480.966667pt;}
.ye5{bottom:481.124000pt;}
.y109{bottom:481.936000pt;}
.y1b2{bottom:482.905333pt;}
.y122{bottom:485.624267pt;}
.y8b{bottom:486.919733pt;}
.y157{bottom:492.198533pt;}
.yac{bottom:493.631333pt;}
.y183{bottom:494.790400pt;}
.y11f{bottom:495.629600pt;}
.y1b1{bottom:498.905333pt;}
.y20{bottom:499.028000pt;}
.y8a{bottom:500.253067pt;}
.y46{bottom:500.966533pt;}
.y69{bottom:500.966667pt;}
.ye4{bottom:501.124000pt;}
.y108{bottom:501.936000pt;}
.y156{bottom:504.198533pt;}
.y5{bottom:506.955867pt;}
.y182{bottom:510.790400pt;}
.y89{bottom:513.586400pt;}
.y1b0{bottom:514.905333pt;}
.y1f{bottom:519.028000pt;}
.y155{bottom:520.198533pt;}
.yab{bottom:520.298000pt;}
.y45{bottom:520.966533pt;}
.y68{bottom:520.966667pt;}
.ye3{bottom:521.124000pt;}
.y107{bottom:521.936000pt;}
.y181{bottom:526.790400pt;}
.y1af{bottom:530.905333pt;}
.y154{bottom:536.198533pt;}
.y1e{bottom:539.028000pt;}
.y88{bottom:540.568000pt;}
.y44{bottom:540.966533pt;}
.y67{bottom:540.966667pt;}
.ye2{bottom:541.124000pt;}
.y106{bottom:541.936000pt;}
.yaa{bottom:542.005867pt;}
.y180{bottom:542.790400pt;}
.y1ae{bottom:546.905333pt;}
.y153{bottom:552.198533pt;}
.y87{bottom:553.901333pt;}
.y4{bottom:557.622533pt;}
.y17f{bottom:558.790400pt;}
.y1d{bottom:559.028000pt;}
.y43{bottom:560.966533pt;}
.y66{bottom:560.966667pt;}
.y105{bottom:561.936000pt;}
.y1ad{bottom:562.905333pt;}
.ya9{bottom:563.622000pt;}
.y86{bottom:567.234667pt;}
.y152{bottom:568.198533pt;}
.yc1{bottom:571.894800pt;}
.y17e{bottom:574.790400pt;}
.y1ac{bottom:578.905333pt;}
.y1c{bottom:579.028000pt;}
.y85{bottom:580.568000pt;}
.ya8{bottom:580.955333pt;}
.y42{bottom:580.966533pt;}
.y65{bottom:580.966667pt;}
.y104{bottom:581.936000pt;}
.y151{bottom:588.198533pt;}
.y17d{bottom:590.790400pt;}
.y11e{bottom:590.966667pt;}
.y84{bottom:593.901333pt;}
.y1ab{bottom:594.905333pt;}
.y1b{bottom:599.028000pt;}
.y41{bottom:600.966533pt;}
.y64{bottom:600.966667pt;}
.y103{bottom:601.936000pt;}
.y17c{bottom:606.790400pt;}
.y83{bottom:607.234667pt;}
.y3{bottom:608.289200pt;}
.y1aa{bottom:610.905333pt;}
.y1a{bottom:619.028000pt;}
.y82{bottom:620.568000pt;}
.y40{bottom:620.966533pt;}
.y63{bottom:620.966667pt;}
.y102{bottom:621.936000pt;}
.y17b{bottom:622.790400pt;}
.y1a9{bottom:626.905333pt;}
.y81{bottom:633.901333pt;}
.y17a{bottom:638.790400pt;}
.y19{bottom:639.028000pt;}
.y150{bottom:640.198533pt;}
.y3f{bottom:640.966533pt;}
.y62{bottom:640.966667pt;}
.y101{bottom:641.936000pt;}
.y1a8{bottom:642.905333pt;}
.y80{bottom:647.234667pt;}
.y10{bottom:649.526000pt;}
.y179{bottom:654.790400pt;}
.y14f{bottom:656.198533pt;}
.y1a7{bottom:658.905333pt;}
.y2{bottom:658.955867pt;}
.y18{bottom:659.028000pt;}
.y7f{bottom:660.568000pt;}
.y3e{bottom:660.966533pt;}
.y61{bottom:660.966667pt;}
.y100{bottom:661.936000pt;}
.y178{bottom:670.790400pt;}
.y14e{bottom:672.198533pt;}
.y7e{bottom:673.901333pt;}
.y1a6{bottom:674.905333pt;}
.y17{bottom:679.028000pt;}
.y3d{bottom:680.966533pt;}
.y60{bottom:680.966667pt;}
.yff{bottom:681.936000pt;}
.y177{bottom:686.790400pt;}
.y7d{bottom:687.234667pt;}
.y14d{bottom:688.198533pt;}
.y1a5{bottom:690.905333pt;}
.y16{bottom:699.028000pt;}
.y7c{bottom:700.568000pt;}
.y3c{bottom:700.966533pt;}
.y5f{bottom:700.966667pt;}
.yfe{bottom:701.936000pt;}
.y176{bottom:702.790400pt;}
.y14c{bottom:704.198533pt;}
.y1a4{bottom:706.905333pt;}
.y1{bottom:709.622533pt;}
.y7b{bottom:713.901333pt;}
.y175{bottom:718.790400pt;}
.y15{bottom:719.028000pt;}
.y14b{bottom:720.198533pt;}
.y3b{bottom:720.966533pt;}
.y5e{bottom:720.966667pt;}
.yfd{bottom:721.936000pt;}
.y1a3{bottom:722.905333pt;}
.y174{bottom:734.790400pt;}
.y14a{bottom:736.198533pt;}
.y7a{bottom:737.750533pt;}
.y1a2{bottom:738.905333pt;}
.y14{bottom:739.028000pt;}
.y3a{bottom:740.966533pt;}
.y5d{bottom:740.966667pt;}
.yfc{bottom:741.936000pt;}
.y79{bottom:749.750533pt;}
.y173{bottom:750.790400pt;}
.y149{bottom:752.198533pt;}
.y1a1{bottom:754.905333pt;}
.y13{bottom:759.028000pt;}
.y39{bottom:760.966533pt;}
.y5c{bottom:760.966667pt;}
.yfb{bottom:761.936000pt;}
.y172{bottom:766.790400pt;}
.y148{bottom:768.198533pt;}
.y1a0{bottom:770.905333pt;}
.ya7{bottom:779.028000pt;}
.ye0{bottom:780.847467pt;}
.y38{bottom:780.966533pt;}
.y5b{bottom:780.966667pt;}
.y19f{bottom:786.905333pt;}
.ye1{bottom:788.854133pt;}
.ya6{bottom:789.120267pt;}
.y78{bottom:789.676800pt;}
.ydf{bottom:798.180800pt;}
.y171{bottom:798.790400pt;}
.y12{bottom:799.028000pt;}
.y37{bottom:800.966533pt;}
.y5a{bottom:800.966667pt;}
.yfa{bottom:801.936000pt;}
.y19e{bottom:802.905333pt;}
.y147{bottom:804.198533pt;}
.y11{bottom:854.523867pt;}
.y36{bottom:854.995867pt;}
.h14{height:32.906703pt;}
.hf{height:34.272000pt;}
.h10{height:34.602667pt;}
.h11{height:37.706667pt;}
.hd{height:38.928000pt;}
.he{height:40.213333pt;}
.ha{height:43.253333pt;}
.h7{height:45.141333pt;}
.hb{height:45.568000pt;}
.h13{height:47.578667pt;}
.h9{height:51.904000pt;}
.hc{height:57.644267pt;}
.h12{height:57.644800pt;}
.h8{height:60.554667pt;}
.h5{height:86.506667pt;}
.h4{height:138.410667pt;}
.h2{height:164.362667pt;}
.h6{height:165.909333pt;}
.h3{height:182.541333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:32.129067pt;}
.x3{left:39.608533pt;}
.xf{left:64.102400pt;}
.xc{left:71.568933pt;}
.x4{left:75.590533pt;}
.x3f{left:83.734533pt;}
.x31{left:85.491333pt;}
.x32{left:93.458933pt;}
.x5{left:94.488133pt;}
.x33{left:98.216400pt;}
.x30{left:107.082000pt;}
.x34{left:111.707467pt;}
.x7{left:113.385867pt;}
.x35{left:120.649333pt;}
.x1e{left:134.271467pt;}
.x1c{left:136.046533pt;}
.x1d{left:137.365333pt;}
.x6{left:139.789067pt;}
.x1f{left:142.335867pt;}
.x1b{left:155.816800pt;}
.x8{left:162.519733pt;}
.xd{left:166.299200pt;}
.x1{left:170.078800pt;}
.x38{left:175.388267pt;}
.x37{left:178.771333pt;}
.x36{left:204.074667pt;}
.x1a{left:230.201867pt;}
.x19{left:239.554267pt;}
.x11{left:244.758400pt;}
.x12{left:245.760667pt;}
.x16{left:247.956933pt;}
.x14{left:253.159200pt;}
.x18{left:254.328667pt;}
.x13{left:260.940800pt;}
.x15{left:264.168800pt;}
.x10{left:284.214533pt;}
.x3b{left:287.037867pt;}
.x39{left:291.866267pt;}
.x3a{left:299.428133pt;}
.x9{left:302.362133pt;}
.x17{left:304.854400pt;}
.x21{left:359.254267pt;}
.x22{left:360.872000pt;}
.x20{left:362.276933pt;}
.x23{left:364.681067pt;}
.xe{left:366.614133pt;}
.xa{left:389.291333pt;}
.x3d{left:400.046667pt;}
.x3c{left:406.700800pt;}
.x3e{left:407.684667pt;}
.x2c{left:444.254533pt;}
.x2e{left:447.672933pt;}
.x2b{left:449.940000pt;}
.x2f{left:452.486000pt;}
.x2d{left:453.526000pt;}
.xb{left:480.000000pt;}
.x28{left:481.155333pt;}
.x29{left:484.705467pt;}
.x27{left:491.040133pt;}
.x2a{left:495.604933pt;}
.x26{left:496.892933pt;}
.x25{left:505.261467pt;}
.x24{left:511.707867pt;}
}




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