
    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_da76c3d8548afca9bd12f9a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120117;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_3c9210286513ec8664c6e828.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_58f44286bf0a155e7f7f8225.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136719;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_bf976d59ba6df04eeef5fd99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900879;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_4742731dfd96cd10ea0d2693.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.709473;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_681d39e24bfa7987986d0999.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_03e5d9aa91b966ed4a20927d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1985261997f4934cf1eb9aa5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8871c6eccd4852748cd3531.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m5{transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245000,0.250000,0.000000,0,0);}
.m4{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);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257489,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-18.900000px;}
.v1{vertical-align:-15.300000px;}
.v5{vertical-align:-12.000000px;}
.vc{vertical-align:-10.080000px;}
.ve{vertical-align:-8.640000px;}
.v10{vertical-align:-7.200000px;}
.vb{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.va{vertical-align:4.320000px;}
.vf{vertical-align:5.760000px;}
.vd{vertical-align:7.200000px;}
.v2{vertical-align:12.000000px;}
.v4{vertical-align:15.300600px;}
.v3{vertical-align:18.900600px;}
.ls1b{letter-spacing:-6.999300px;}
.ls22{letter-spacing:-4.899510px;}
.ls21{letter-spacing:-4.662000px;}
.ls4{letter-spacing:-4.088700px;}
.ls18{letter-spacing:-4.085100px;}
.ls1c{letter-spacing:-3.284400px;}
.ls19{letter-spacing:-3.277260px;}
.ls23{letter-spacing:-3.065100px;}
.ls16{letter-spacing:-2.321550px;}
.ls1a{letter-spacing:-1.879350px;}
.ls15{letter-spacing:-0.239400px;}
.ls2a{letter-spacing:-0.018900px;}
.ls17{letter-spacing:-0.014280px;}
.ls11{letter-spacing:-0.012600px;}
.lsa{letter-spacing:-0.010710px;}
.ls9{letter-spacing:-0.010200px;}
.ls10{letter-spacing:-0.008820px;}
.lsb{letter-spacing:-0.007200px;}
.ls6{letter-spacing:-0.007140px;}
.ls5{letter-spacing:-0.006300px;}
.lsd{letter-spacing:-0.006000px;}
.ls12{letter-spacing:-0.005610px;}
.ls2b{letter-spacing:-0.005400px;}
.ls7{letter-spacing:-0.005100px;}
.ls20{letter-spacing:-0.004410px;}
.lsc{letter-spacing:-0.004200px;}
.ls8{letter-spacing:-0.003570px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.006300px;}
.ls3{letter-spacing:0.012600px;}
.ls26{letter-spacing:0.182700px;}
.ls14{letter-spacing:17.034000px;}
.lse{letter-spacing:20.417100px;}
.ls1d{letter-spacing:20.418300px;}
.ls24{letter-spacing:21.023100px;}
.ls1f{letter-spacing:23.700600px;}
.ls13{letter-spacing:24.595800px;}
.ls1e{letter-spacing:25.830000px;}
.ls28{letter-spacing:31.399200px;}
.ls27{letter-spacing:31.405500px;}
.ls29{letter-spacing:31.487400px;}
.ls25{letter-spacing:31.500000px;}
.ls0{letter-spacing:51.024000px;}
.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;}
}
.ws159{word-spacing:-47.149200px;}
.wsc{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.750000px;}
.ws38{word-spacing:-15.743700px;}
.ws190{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.750000px;}
.ws15b{word-spacing:-12.744900px;}
.ws9{word-spacing:-12.739800px;}
.wsdd{word-spacing:-11.088000px;}
.wsdb{word-spacing:-11.025000px;}
.ws112{word-spacing:-9.684900px;}
.ws191{word-spacing:-9.431100px;}
.wsa4{word-spacing:-8.925000px;}
.ws8{word-spacing:-8.921430px;}
.ws3{word-spacing:-8.917860px;}
.wsa{word-spacing:-8.914290px;}
.wsa1{word-spacing:-8.750700px;}
.ws33{word-spacing:-8.662500px;}
.ws135{word-spacing:-7.425000px;}
.ws61{word-spacing:-6.340950px;}
.ws110{word-spacing:-6.125490px;}
.ws65{word-spacing:-5.647740px;}
.wsab{word-spacing:-5.640600px;}
.wsca{word-spacing:-2.179800px;}
.ws7b{word-spacing:-2.123100px;}
.ws10d{word-spacing:-1.611600px;}
.ws55{word-spacing:-1.581000px;}
.ws58{word-spacing:-1.545300px;}
.wsed{word-spacing:-1.461600px;}
.ws9c{word-spacing:-1.402500px;}
.ws125{word-spacing:-1.108800px;}
.ws129{word-spacing:-1.064700px;}
.ws20{word-spacing:-0.081600px;}
.wsa0{word-spacing:-0.051000px;}
.ws71{word-spacing:-0.030600px;}
.ws13{word-spacing:0.000000px;}
.ws153{word-spacing:0.012600px;}
.ws128{word-spacing:0.056700px;}
.ws10c{word-spacing:0.127500px;}
.wse8{word-spacing:0.170100px;}
.ws167{word-spacing:0.233100px;}
.ws120{word-spacing:0.441000px;}
.ws77{word-spacing:0.573300px;}
.ws78{word-spacing:0.579600px;}
.wsfa{word-spacing:0.648900px;}
.ws12e{word-spacing:0.674100px;}
.ws17a{word-spacing:0.825300px;}
.wsff{word-spacing:0.836400px;}
.wscd{word-spacing:0.995400px;}
.ws162{word-spacing:1.064700px;}
.ws11d{word-spacing:1.241100px;}
.ws49{word-spacing:1.310400px;}
.ws18d{word-spacing:1.366800px;}
.ws164{word-spacing:1.411200px;}
.ws163{word-spacing:1.417500px;}
.ws169{word-spacing:1.518300px;}
.ws3c{word-spacing:1.524600px;}
.ws139{word-spacing:1.587600px;}
.wsd8{word-spacing:1.637100px;}
.wsf8{word-spacing:1.694700px;}
.ws7d{word-spacing:1.757700px;}
.ws185{word-spacing:1.959300px;}
.ws106{word-spacing:1.963500px;}
.ws16e{word-spacing:1.997100px;}
.ws155{word-spacing:2.004300px;}
.ws137{word-spacing:2.047500px;}
.wsc8{word-spacing:2.097900px;}
.ws186{word-spacing:2.142000px;}
.wsc7{word-spacing:2.179800px;}
.ws14f{word-spacing:2.192400px;}
.ws39{word-spacing:2.244720px;}
.ws16a{word-spacing:2.312100px;}
.ws40{word-spacing:2.318400px;}
.ws121{word-spacing:2.337300px;}
.ws85{word-spacing:2.346000px;}
.ws79{word-spacing:2.400300px;}
.wsad{word-spacing:2.431800px;}
.wsf1{word-spacing:2.608200px;}
.ws5d{word-spacing:2.611200px;}
.wsae{word-spacing:2.715300px;}
.ws87{word-spacing:2.718300px;}
.ws44{word-spacing:2.740500px;}
.ws102{word-spacing:2.769300px;}
.ws57{word-spacing:2.794800px;}
.ws11e{word-spacing:2.828700px;}
.wse7{word-spacing:2.885400px;}
.ws172{word-spacing:2.942700px;}
.ws140{word-spacing:2.967300px;}
.ws4d{word-spacing:2.973600px;}
.wsce{word-spacing:2.978400px;}
.ws56{word-spacing:2.993700px;}
.ws143{word-spacing:3.007800px;}
.ws9a{word-spacing:3.019200px;}
.ws10a{word-spacing:3.039600px;}
.ws109{word-spacing:3.044700px;}
.ws13b{word-spacing:3.068100px;}
.ws152{word-spacing:3.093300px;}
.ws52{word-spacing:3.099600px;}
.ws177{word-spacing:3.112200px;}
.ws12c{word-spacing:3.143700px;}
.wsd3{word-spacing:3.162000px;}
.wsd4{word-spacing:3.167100px;}
.ws184{word-spacing:3.200400px;}
.ws50{word-spacing:3.206700px;}
.ws46{word-spacing:3.238200px;}
.ws5c{word-spacing:3.248700px;}
.ws75{word-spacing:3.257100px;}
.ws18a{word-spacing:3.294900px;}
.wsf9{word-spacing:3.345300px;}
.ws9e{word-spacing:3.427200px;}
.wseb{word-spacing:3.446100px;}
.ws4c{word-spacing:3.496500px;}
.ws21{word-spacing:3.513900px;}
.ws43{word-spacing:3.515400px;}
.ws81{word-spacing:3.578400px;}
.ws99{word-spacing:3.580200px;}
.ws24{word-spacing:3.595500px;}
.ws133{word-spacing:3.597300px;}
.ws14c{word-spacing:3.622500px;}
.ws100{word-spacing:3.626100px;}
.ws149{word-spacing:3.647700px;}
.wsb3{word-spacing:3.654000px;}
.wsb2{word-spacing:3.660300px;}
.ws101{word-spacing:3.672000px;}
.ws107{word-spacing:3.738300px;}
.wsc6{word-spacing:3.767400px;}
.ws70{word-spacing:3.770760px;}
.ws82{word-spacing:3.784200px;}
.ws2e{word-spacing:3.789300px;}
.ws9d{word-spacing:3.814800px;}
.ws5f{word-spacing:3.860700px;}
.wsf2{word-spacing:3.874500px;}
.ws26{word-spacing:3.947400px;}
.ws92{word-spacing:4.018800px;}
.ws158{word-spacing:4.034100px;}
.ws89{word-spacing:4.120800px;}
.ws165{word-spacing:4.151700px;}
.wse6{word-spacing:4.164300px;}
.ws31{word-spacing:4.200000px;}
.wsd{word-spacing:4.208400px;}
.wsea{word-spacing:4.246200px;}
.wsbf{word-spacing:4.309200px;}
.wsd2{word-spacing:4.360500px;}
.ws160{word-spacing:4.365900px;}
.wsa6{word-spacing:4.375800px;}
.ws14b{word-spacing:4.391100px;}
.ws188{word-spacing:4.397400px;}
.ws7c{word-spacing:4.422600px;}
.ws145{word-spacing:4.509000px;}
.ws14d{word-spacing:4.523400px;}
.wsfe{word-spacing:4.533900px;}
.ws4{word-spacing:4.609140px;}
.ws10b{word-spacing:4.615500px;}
.ws173{word-spacing:4.676700px;}
.ws2b{word-spacing:4.681800px;}
.ws2a{word-spacing:4.686900px;}
.ws1a{word-spacing:4.687200px;}
.wsd7{word-spacing:4.722600px;}
.ws10{word-spacing:4.743900px;}
.ws105{word-spacing:4.763400px;}
.ws16b{word-spacing:4.769100px;}
.ws104{word-spacing:4.778700px;}
.ws192{word-spacing:4.800600px;}
.ws193{word-spacing:4.806000px;}
.ws42{word-spacing:4.813200px;}
.ws17f{word-spacing:4.857300px;}
.ws83{word-spacing:4.921500px;}
.wse3{word-spacing:4.939140px;}
.wsb1{word-spacing:4.970700px;}
.ws12d{word-spacing:5.002200px;}
.wsa7{word-spacing:5.054340px;}
.ws10f{word-spacing:5.094900px;}
.ws29{word-spacing:5.100000px;}
.ws5a{word-spacing:5.110200px;}
.ws59{word-spacing:5.115300px;}
.wsc1{word-spacing:5.115600px;}
.ws134{word-spacing:5.120400px;}
.ws1e{word-spacing:5.121900px;}
.ws144{word-spacing:5.130000px;}
.ws84{word-spacing:5.145900px;}
.wsc9{word-spacing:5.153400px;}
.ws93{word-spacing:5.181600px;}
.ws11c{word-spacing:5.184900px;}
.ws19{word-spacing:5.197500px;}
.ws9b{word-spacing:5.202000px;}
.ws23{word-spacing:5.212200px;}
.ws22{word-spacing:5.217300px;}
.wsda{word-spacing:5.222400px;}
.wsd9{word-spacing:5.227500px;}
.ws12a{word-spacing:5.254200px;}
.ws13c{word-spacing:5.260500px;}
.wscb{word-spacing:5.273100px;}
.ws180{word-spacing:5.310900px;}
.ws189{word-spacing:5.329800px;}
.wsf6{word-spacing:5.342400px;}
.ws10e{word-spacing:5.355000px;}
.ws80{word-spacing:5.361300px;}
.ws53{word-spacing:5.386500px;}
.wsb6{word-spacing:5.392800px;}
.ws146{word-spacing:5.400000px;}
.wsc0{word-spacing:5.449500px;}
.ws142{word-spacing:5.459400px;}
.wsa9{word-spacing:5.467530px;}
.ws88{word-spacing:5.508000px;}
.ws12b{word-spacing:5.518800px;}
.ws103{word-spacing:5.523300px;}
.wsfc{word-spacing:5.525100px;}
.wsaf{word-spacing:5.594400px;}
.ws183{word-spacing:5.607000px;}
.ws8b{word-spacing:5.610000px;}
.ws18b{word-spacing:5.632200px;}
.ws73{word-spacing:5.670000px;}
.ws97{word-spacing:5.763000px;}
.ws2f{word-spacing:5.798700px;}
.ws2c{word-spacing:5.803800px;}
.ws136{word-spacing:5.827920px;}
.wsbe{word-spacing:5.852700px;}
.ws4e{word-spacing:5.890500px;}
.ws69{word-spacing:5.911140px;}
.ws132{word-spacing:5.997600px;}
.ws2d{word-spacing:6.038400px;}
.ws108{word-spacing:6.053700px;}
.wsd1{word-spacing:6.058800px;}
.wsee{word-spacing:6.092100px;}
.ws187{word-spacing:6.111000px;}
.ws4f{word-spacing:6.136200px;}
.ws114{word-spacing:6.199200px;}
.wsf7{word-spacing:6.293700px;}
.ws18{word-spacing:6.300000px;}
.wsef{word-spacing:6.331500px;}
.wsb{word-spacing:6.344760px;}
.ws5e{word-spacing:6.359700px;}
.wsc4{word-spacing:6.363000px;}
.ws8c{word-spacing:6.375000px;}
.ws9f{word-spacing:6.385200px;}
.wscf{word-spacing:6.410700px;}
.wsd0{word-spacing:6.415800px;}
.ws16c{word-spacing:6.419700px;}
.ws16d{word-spacing:6.426000px;}
.wsd5{word-spacing:6.461700px;}
.ws3e{word-spacing:6.470100px;}
.ws67{word-spacing:6.487140px;}
.ws18f{word-spacing:6.487200px;}
.ws18e{word-spacing:6.492300px;}
.ws91{word-spacing:6.563700px;}
.ws90{word-spacing:6.568800px;}
.wscc{word-spacing:6.577200px;}
.ws123{word-spacing:6.583500px;}
.ws7f{word-spacing:6.589800px;}
.ws1d{word-spacing:6.627600px;}
.ws1c{word-spacing:6.633900px;}
.wsec{word-spacing:6.646500px;}
.ws3a{word-spacing:6.651240px;}
.wse0{word-spacing:6.652740px;}
.ws60{word-spacing:6.655500px;}
.ws96{word-spacing:6.665700px;}
.ws8a{word-spacing:6.721800px;}
.ws11f{word-spacing:6.722100px;}
.ws28{word-spacing:6.757500px;}
.ws15a{word-spacing:6.792150px;}
.ws1f{word-spacing:6.798300px;}
.wsa2{word-spacing:6.816090px;}
.wsb7{word-spacing:6.867000px;}
.wsb8{word-spacing:6.873300px;}
.ws3d{word-spacing:6.879600px;}
.wsfd{word-spacing:6.892200px;}
.ws86{word-spacing:6.895200px;}
.wsf{word-spacing:6.917400px;}
.ws13e{word-spacing:6.942600px;}
.wsdf{word-spacing:6.991740px;}
.wsbd{word-spacing:6.993000px;}
.wsbc{word-spacing:6.999300px;}
.ws138{word-spacing:7.018200px;}
.ws17d{word-spacing:7.037100px;}
.ws17c{word-spacing:7.043400px;}
.ws25{word-spacing:7.119600px;}
.wsc2{word-spacing:7.131600px;}
.ws157{word-spacing:7.155300px;}
.ws156{word-spacing:7.160400px;}
.ws168{word-spacing:7.169400px;}
.ws8f{word-spacing:7.175700px;}
.ws27{word-spacing:7.196100px;}
.ws30{word-spacing:7.200000px;}
.ws15{word-spacing:7.213500px;}
.ws175{word-spacing:7.298100px;}
.ws15f{word-spacing:7.308000px;}
.ws15e{word-spacing:7.314300px;}
.ws95{word-spacing:7.349100px;}
.ws94{word-spacing:7.354200px;}
.ws171{word-spacing:7.364700px;}
.ws6b{word-spacing:7.369500px;}
.ws8d{word-spacing:7.384800px;}
.ws8e{word-spacing:7.389900px;}
.ws76{word-spacing:7.408800px;}
.ws6f{word-spacing:7.426500px;}
.ws17e{word-spacing:7.440300px;}
.ws4a{word-spacing:7.478100px;}
.ws179{word-spacing:7.553700px;}
.wse2{word-spacing:7.581660px;}
.wsc5{word-spacing:7.610400px;}
.ws7{word-spacing:7.635900px;}
.ws6{word-spacing:7.696140px;}
.ws5b{word-spacing:7.762200px;}
.ws18c{word-spacing:7.767900px;}
.wsb5{word-spacing:7.780500px;}
.ws131{word-spacing:7.805700px;}
.ws174{word-spacing:7.808100px;}
.ws4b{word-spacing:7.824600px;}
.wsf0{word-spacing:7.849800px;}
.wsc3{word-spacing:7.856100px;}
.ws13a{word-spacing:7.862400px;}
.wsba{word-spacing:7.925400px;}
.wsb9{word-spacing:7.931700px;}
.wsf4{word-spacing:7.944300px;}
.wsf3{word-spacing:7.950600px;}
.wse9{word-spacing:7.963200px;}
.ws62{word-spacing:7.995750px;}
.ws47{word-spacing:8.007300px;}
.ws98{word-spacing:8.129400px;}
.ws124{word-spacing:8.171100px;}
.ws63{word-spacing:8.180400px;}
.ws7a{word-spacing:8.215200px;}
.ws161{word-spacing:8.253000px;}
.wsa3{word-spacing:8.306940px;}
.wsa8{word-spacing:8.362740px;}
.ws176{word-spacing:8.383140px;}
.wsde{word-spacing:8.391240px;}
.ws45{word-spacing:8.416800px;}
.ws127{word-spacing:8.486100px;}
.ws126{word-spacing:8.492400px;}
.wse1{word-spacing:8.609850px;}
.ws1b{word-spacing:8.631000px;}
.ws151{word-spacing:8.662500px;}
.ws13f{word-spacing:8.681400px;}
.ws16f{word-spacing:8.706600px;}
.ws170{word-spacing:8.712900px;}
.ws154{word-spacing:8.738100px;}
.ws166{word-spacing:8.794800px;}
.ws122{word-spacing:8.832600px;}
.ws74{word-spacing:8.845200px;}
.wsb4{word-spacing:8.895600px;}
.ws111{word-spacing:8.932380px;}
.wsfb{word-spacing:8.933400px;}
.ws15c{word-spacing:8.947350px;}
.ws113{word-spacing:8.952840px;}
.wsac{word-spacing:8.973480px;}
.ws11b{word-spacing:8.990100px;}
.ws11a{word-spacing:8.996400px;}
.ws3b{word-spacing:9.004680px;}
.ws14e{word-spacing:9.015300px;}
.ws6a{word-spacing:9.064470px;}
.ws115{word-spacing:9.109800px;}
.ws119{word-spacing:9.116100px;}
.ws6c{word-spacing:9.259050px;}
.ws64{word-spacing:9.261690px;}
.ws72{word-spacing:9.330300px;}
.ws12{word-spacing:9.342900px;}
.wsdc{word-spacing:9.406530px;}
.ws7e{word-spacing:9.418500px;}
.ws181{word-spacing:9.462600px;}
.ws182{word-spacing:9.468900px;}
.ws13d{word-spacing:9.538200px;}
.ws5{word-spacing:9.657240px;}
.ws37{word-spacing:9.708300px;}
.ws17{word-spacing:9.765000px;}
.wsbb{word-spacing:9.859500px;}
.wsa5{word-spacing:9.896490px;}
.ws41{word-spacing:9.960300px;}
.ws141{word-spacing:10.010700px;}
.wsf5{word-spacing:10.048500px;}
.ws16{word-spacing:10.073700px;}
.wse4{word-spacing:10.086300px;}
.wse5{word-spacing:10.092600px;}
.ws3f{word-spacing:10.187100px;}
.ws48{word-spacing:10.199700px;}
.ws68{word-spacing:10.393050px;}
.wsd6{word-spacing:10.409100px;}
.ws2{word-spacing:10.645350px;}
.ws51{word-spacing:10.653300px;}
.ws6d{word-spacing:10.677300px;}
.wsaa{word-spacing:10.843680px;}
.ws116{word-spacing:10.848600px;}
.ws36{word-spacing:11.042640px;}
.ws35{word-spacing:11.054700px;}
.ws34{word-spacing:11.055120px;}
.ws117{word-spacing:11.088000px;}
.ws118{word-spacing:11.094300px;}
.ws178{word-spacing:11.491200px;}
.ws14a{word-spacing:11.982600px;}
.ws147{word-spacing:12.039300px;}
.ws148{word-spacing:12.045600px;}
.ws15d{word-spacing:12.291300px;}
.wsb0{word-spacing:12.392100px;}
.ws11{word-spacing:12.461400px;}
.wse{word-spacing:12.789000px;}
.ws12f{word-spacing:12.877200px;}
.ws130{word-spacing:12.883500px;}
.ws17b{word-spacing:13.160700px;}
.ws54{word-spacing:15.201900px;}
.ws150{word-spacing:15.561000px;}
.ws14{word-spacing:15.737400px;}
.ws66{word-spacing:44.011500px;}
.ws6e{word-spacing:47.769750px;}
.ws32{word-spacing:616.794600px;}
._16{margin-left:-33.711300px;}
._17{margin-left:-31.392900px;}
._19{margin-left:-25.281900px;}
._18{margin-left:-24.223500px;}
._d{margin-left:-8.127000px;}
._10{margin-left:-7.049700px;}
._a{margin-left:-6.046410px;}
._5{margin-left:-4.595190px;}
._3{margin-left:-3.458700px;}
._1{margin-left:-2.324700px;}
._0{margin-left:-1.121400px;}
._11{width:1.178100px;}
._e{width:2.796420px;}
._2{width:4.082400px;}
._6{width:5.100000px;}
._4{width:6.615000px;}
._1c{width:7.760580px;}
._1e{width:8.771580px;}
._14{width:9.805290px;}
._1d{width:10.890000px;}
._b{width:12.230670px;}
._7{width:13.311630px;}
._13{width:15.309780px;}
._12{width:16.829370px;}
._15{width:18.039570px;}
._c{width:19.619520px;}
._8{width:21.254400px;}
._9{width:23.345100px;}
._1a{width:25.470900px;}
._1b{width:54.021000px;}
._f{width:1494.102600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:27.000000px;}
.fs2{font-size:28.050000px;}
.fsb{font-size:29.700000px;}
.fs1{font-size:34.650000px;}
.fs4{font-size:35.700000px;}
.fs14{font-size:36.000000px;}
.fsc{font-size:37.800000px;}
.fs12{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:44.100000px;}
.fs11{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs10{font-size:66.000000px;}
.fs15{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fse{font-size:78.000000px;}
.fsf{font-size:84.000000px;}
.fs16{font-size:93.000000px;}
.y0{bottom:0.000000px;}
.y161{bottom:56.333424px;}
.y58{bottom:56.333574px;}
.y1b1{bottom:58.320000px;}
.y1b0{bottom:63.000000px;}
.y18b{bottom:77.400000px;}
.y19a{bottom:78.120000px;}
.y86{bottom:89.660124px;}
.y57{bottom:89.664924px;}
.ya9{bottom:89.665074px;}
.yd5{bottom:89.665224px;}
.y25{bottom:89.666274px;}
.y168{bottom:90.423774px;}
.y164{bottom:90.423924px;}
.y160{bottom:93.487974px;}
.y13b{bottom:93.488424px;}
.yf7{bottom:93.488874px;}
.y18a{bottom:98.280000px;}
.y199{bottom:99.360000px;}
.y85{bottom:104.960124px;}
.yd4{bottom:104.965224px;}
.y24{bottom:104.966274px;}
.y15f{bottom:108.787974px;}
.y13a{bottom:108.788424px;}
.y118{bottom:108.788724px;}
.yf6{bottom:108.788874px;}
.y56{bottom:108.790074px;}
.y16b{bottom:112.856520px;}
.y189{bottom:114.840000px;}
.y84{bottom:120.260124px;}
.y117{bottom:120.263574px;}
.ya8{bottom:120.264774px;}
.y55{bottom:120.265074px;}
.yd3{bottom:120.265374px;}
.y23{bottom:120.266274px;}
.y16a{bottom:121.993524px;}
.y15e{bottom:124.087974px;}
.y139{bottom:124.088424px;}
.yf5{bottom:124.088874px;}
.y83{bottom:135.560124px;}
.y116{bottom:135.563574px;}
.yf4{bottom:135.563874px;}
.ya7{bottom:135.564924px;}
.y54{bottom:135.565074px;}
.yd2{bottom:135.565374px;}
.y22{bottom:135.566274px;}
.y188{bottom:135.720000px;}
.y198{bottom:136.440000px;}
.y15d{bottom:139.387974px;}
.y138{bottom:139.388424px;}
.y1af{bottom:142.920000px;}
.y82{bottom:150.860124px;}
.y115{bottom:150.863574px;}
.ya6{bottom:150.864924px;}
.y53{bottom:150.865074px;}
.yd1{bottom:150.865374px;}
.y15c{bottom:154.687824px;}
.y137{bottom:154.688274px;}
.yf3{bottom:154.689024px;}
.y21{bottom:154.691274px;}
.y187{bottom:156.600000px;}
.y197{bottom:156.960000px;}
.y81{bottom:166.159974px;}
.y52{bottom:166.164774px;}
.ya5{bottom:166.164924px;}
.yd0{bottom:166.165224px;}
.y20{bottom:166.166124px;}
.y15b{bottom:169.987974px;}
.y136{bottom:169.988274px;}
.y114{bottom:169.988874px;}
.y186{bottom:173.160000px;}
.y80{bottom:181.459974px;}
.y15a{bottom:181.462674px;}
.y51{bottom:181.464774px;}
.y135{bottom:185.288424px;}
.ya4{bottom:185.290074px;}
.ycf{bottom:185.290374px;}
.y1f{bottom:185.291274px;}
.yf2{bottom:187.405824px;}
.y185{bottom:194.040000px;}
.y196{bottom:194.400000px;}
.y7f{bottom:196.759974px;}
.y134{bottom:196.763124px;}
.y50{bottom:196.764774px;}
.yce{bottom:196.765224px;}
.y1e{bottom:196.765974px;}
.y159{bottom:200.587824px;}
.y113{bottom:206.207724px;}
.yf1{bottom:206.305824px;}
.y184{bottom:210.600000px;}
.y158{bottom:212.062524px;}
.y133{bottom:212.063124px;}
.y4f{bottom:212.064774px;}
.y1d{bottom:212.065974px;}
.y7e{bottom:215.884974px;}
.ycd{bottom:215.890224px;}
.y112{bottom:225.107724px;}
.yf0{bottom:225.205824px;}
.y7d{bottom:227.359974px;}
.y157{bottom:227.362674px;}
.y132{bottom:227.363124px;}
.ycc{bottom:227.365224px;}
.y1c{bottom:227.365974px;}
.y4e{bottom:231.189774px;}
.y183{bottom:231.480000px;}
.y195{bottom:231.840000px;}
.y7c{bottom:242.659824px;}
.y4d{bottom:242.664624px;}
.ya3{bottom:242.664774px;}
.ycb{bottom:242.665224px;}
.y1b{bottom:242.665974px;}
.yef{bottom:244.105824px;}
.y111{bottom:246.140274px;}
.y156{bottom:246.487674px;}
.y131{bottom:246.488124px;}
.y182{bottom:248.040000px;}
.y7b{bottom:257.959824px;}
.y4c{bottom:257.964624px;}
.ya2{bottom:257.964924px;}
.yca{bottom:257.965074px;}
.y1a{bottom:257.965974px;}
.yee{bottom:263.005824px;}
.y110{bottom:265.040274px;}
.y181{bottom:268.920000px;}
.y194{bottom:269.280000px;}
.y7a{bottom:273.259824px;}
.yc9{bottom:273.264924px;}
.y19{bottom:273.265974px;}
.y4b{bottom:277.089774px;}
.y130{bottom:283.768299px;}
.y10f{bottom:283.940274px;}
.y79{bottom:288.559824px;}
.yc8{bottom:288.564924px;}
.y18{bottom:288.565974px;}
.y180{bottom:289.800000px;}
.y193{bottom:290.160000px;}
.yed{bottom:295.304049px;}
.y12f{bottom:302.668299px;}
.y10e{bottom:302.840274px;}
.y78{bottom:303.859824px;}
.y17{bottom:303.865974px;}
.yc7{bottom:307.690074px;}
.ya1{bottom:308.011974px;}
.y17f{bottom:310.680000px;}
.y192{bottom:311.040000px;}
.y4a{bottom:313.295724px;}
.yc6{bottom:319.165074px;}
.y16{bottom:319.165974px;}
.y12e{bottom:321.568299px;}
.y10d{bottom:321.740274px;}
.y77{bottom:322.984824px;}
.ya0{bottom:326.911974px;}
.y17e{bottom:327.240000px;}
.y49{bottom:332.195724px;}
.y155{bottom:333.777924px;}
.y76{bottom:334.459674px;}
.yc5{bottom:338.290074px;}
.y15{bottom:338.290974px;}
.yec{bottom:340.357299px;}
.y12d{bottom:340.468299px;}
.y10c{bottom:340.640274px;}
.y9f{bottom:345.811974px;}
.y17d{bottom:348.120000px;}
.y191{bottom:348.480000px;}
.y48{bottom:351.095574px;}
.y154{bottom:352.677924px;}
.y75{bottom:353.584824px;}
.yeb{bottom:359.257299px;}
.y10b{bottom:359.540274px;}
.y12c{bottom:363.297249px;}
.y17c{bottom:364.680000px;}
.y9e{bottom:364.711974px;}
.y74{bottom:365.059674px;}
.y47{bottom:369.995574px;}
.y153{bottom:371.577924px;}
.y14{bottom:371.609874px;}
.yea{bottom:378.157299px;}
.y10a{bottom:378.440274px;}
.yc4{bottom:378.718899px;}
.y73{bottom:380.359674px;}
.y9d{bottom:383.611974px;}
.y17b{bottom:385.560000px;}
.y190{bottom:385.920000px;}
.y12b{bottom:386.126199px;}
.y46{bottom:388.895574px;}
.y13{bottom:390.509874px;}
.y152{bottom:392.603724px;}
.y72{bottom:395.659674px;}
.ye9{bottom:397.057299px;}
.y109{bottom:397.340274px;}
.yc3{bottom:397.618899px;}
.y17a{bottom:402.120000px;}
.y9c{bottom:402.511974px;}
.y12a{bottom:405.026199px;}
.y45{bottom:407.794974px;}
.y12{bottom:409.409874px;}
.y151{bottom:411.503724px;}
.y71{bottom:414.784674px;}
.y108{bottom:416.240274px;}
.yc2{bottom:416.518899px;}
.ye8{bottom:418.724424px;}
.y9b{bottom:421.411974px;}
.y179{bottom:423.000000px;}
.y18f{bottom:423.360000px;}
.y70{bottom:426.259524px;}
.y44{bottom:426.694974px;}
.y129{bottom:427.855149px;}
.y11{bottom:428.309874px;}
.y150{bottom:430.403724px;}
.y107{bottom:435.140274px;}
.yc1{bottom:435.418899px;}
.ye7{bottom:437.624424px;}
.y163{bottom:438.487824px;}
.y178{bottom:439.560000px;}
.y9a{bottom:440.311974px;}
.y6f{bottom:441.559524px;}
.y43{bottom:445.594974px;}
.y128{bottom:446.755149px;}
.y10{bottom:447.209874px;}
.y14f{bottom:451.429674px;}
.y167{bottom:453.369474px;}
.y106{bottom:454.040349px;}
.yc0{bottom:454.318899px;}
.y162{bottom:454.687824px;}
.ye6{bottom:456.524424px;}
.y6e{bottom:456.859374px;}
.y99{bottom:459.211974px;}
.y177{bottom:460.800000px;}
.y18e{bottom:461.160000px;}
.y42{bottom:464.494974px;}
.y127{bottom:465.655149px;}
.yd{bottom:469.415574px;}
.yf{bottom:469.415724px;}
.y166{bottom:469.569474px;}
.y14e{bottom:470.329674px;}
.y6d{bottom:472.159374px;}
.y105{bottom:472.940349px;}
.ybf{bottom:473.218899px;}
.ye{bottom:474.140724px;}
.ye5{bottom:475.424274px;}
.y176{bottom:477.360000px;}
.y98{bottom:478.111974px;}
.y41{bottom:483.394974px;}
.y165{bottom:485.769624px;}
.y6c{bottom:487.459374px;}
.yc{bottom:488.315574px;}
.y126{bottom:488.484099px;}
.y14d{bottom:489.229674px;}
.ye4{bottom:494.324274px;}
.ybe{bottom:496.555524px;}
.y97{bottom:497.011974px;}
.y175{bottom:498.600000px;}
.y6b{bottom:502.759374px;}
.y104{bottom:504.602574px;}
.yb{bottom:507.215574px;}
.y125{bottom:507.384099px;}
.y40{bottom:508.144524px;}
.y14c{bottom:510.255474px;}
.ye3{bottom:513.224274px;}
.y174{bottom:514.440000px;}
.ybd{bottom:515.455524px;}
.y96{bottom:515.911974px;}
.y6a{bottom:518.059374px;}
.y9{bottom:526.115574px;}
.y124{bottom:526.284099px;}
.y3f{bottom:527.044524px;}
.y14b{bottom:529.155474px;}
.ya{bottom:530.840574px;}
.ye2{bottom:532.124274px;}
.y69{bottom:533.359374px;}
.ybc{bottom:534.355524px;}
.y95{bottom:534.811974px;}
.y103{bottom:535.103424px;}
.y173{bottom:536.040000px;}
.y6{bottom:545.015274px;}
.y8{bottom:545.015574px;}
.y3e{bottom:545.944524px;}
.y123{bottom:549.113049px;}
.y7{bottom:549.740574px;}
.y14a{bottom:550.181424px;}
.ye1{bottom:551.024274px;}
.y102{bottom:551.303424px;}
.y172{bottom:552.240000px;}
.y68{bottom:552.484374px;}
.ybb{bottom:553.255524px;}
.y94{bottom:553.711974px;}
.y5{bottom:563.915274px;}
.y3d{bottom:564.844524px;}
.y101{bottom:567.503424px;}
.y122{bottom:568.013049px;}
.y149{bottom:569.081424px;}
.ye0{bottom:569.924274px;}
.yba{bottom:572.155749px;}
.y93{bottom:572.611974px;}
.y171{bottom:573.120000px;}
.y18d{bottom:573.480000px;}
.y4{bottom:582.815274px;}
.y100{bottom:583.703424px;}
.y3c{bottom:583.744524px;}
.y148{bottom:587.981424px;}
.y67{bottom:588.271824px;}
.y170{bottom:589.320000px;}
.y121{bottom:590.841999px;}
.yb9{bottom:591.055749px;}
.y92{bottom:591.511974px;}
.ydf{bottom:591.591624px;}
.y1aa{bottom:594.360000px;}
.yff{bottom:599.903424px;}
.y3{bottom:601.715274px;}
.y3b{bottom:602.644524px;}
.y16f{bottom:605.880000px;}
.y147{bottom:606.881424px;}
.y66{bottom:607.171824px;}
.y120{bottom:609.741999px;}
.y91{bottom:610.411974px;}
.yde{bottom:610.491624px;}
.yb8{bottom:614.392524px;}
.y2{bottom:620.615274px;}
.y3a{bottom:621.544524px;}
.y65{bottom:626.071824px;}
.y1a9{bottom:627.480000px;}
.y146{bottom:627.907374px;}
.y11f{bottom:628.641999px;}
.y90{bottom:629.311974px;}
.ydd{bottom:629.391624px;}
.yfe{bottom:630.026874px;}
.y18c{bottom:631.800000px;}
.yb7{bottom:633.292224px;}
.y169{bottom:635.403174px;}
.y1{bottom:639.515274px;}
.y39{bottom:640.444524px;}
.y1a8{bottom:643.680000px;}
.y64{bottom:644.971524px;}
.y145{bottom:646.807374px;}
.y8f{bottom:648.211974px;}
.ydc{bottom:648.291624px;}
.yfd{bottom:648.926874px;}
.y11e{bottom:651.470199px;}
.yb6{bottom:652.192224px;}
.y38{bottom:659.344524px;}
.y63{bottom:663.871524px;}
.y1a7{bottom:664.200000px;}
.y144{bottom:665.707374px;}
.ydb{bottom:667.191624px;}
.yfc{bottom:667.826874px;}
.y8e{bottom:669.959574px;}
.y11d{bottom:670.370199px;}
.yb5{bottom:671.092224px;}
.y37{bottom:678.244524px;}
.y1a6{bottom:680.400000px;}
.y62{bottom:682.771524px;}
.y143{bottom:684.607374px;}
.yda{bottom:686.091624px;}
.yfb{bottom:686.726874px;}
.y8d{bottom:688.859574px;}
.y11c{bottom:689.270199px;}
.yb4{bottom:689.992224px;}
.y36{bottom:697.144524px;}
.y1a5{bottom:700.920000px;}
.y61{bottom:701.671524px;}
.y142{bottom:703.507374px;}
.yd9{bottom:704.991624px;}
.yfa{bottom:705.626874px;}
.y8c{bottom:707.759574px;}
.y11b{bottom:708.170199px;}
.yb3{bottom:708.892224px;}
.y29{bottom:710.267274px;}
.y35{bottom:716.044524px;}
.y1a4{bottom:717.120000px;}
.y60{bottom:720.571524px;}
.yd8{bottom:723.891624px;}
.yf9{bottom:724.526874px;}
.y141{bottom:724.533024px;}
.y8b{bottom:726.659274px;}
.yb2{bottom:727.792224px;}
.y34{bottom:734.944524px;}
.y1a3{bottom:737.280000px;}
.y1ae{bottom:737.640000px;}
.y5f{bottom:739.471524px;}
.y11a{bottom:741.629499px;}
.yd7{bottom:742.791624px;}
.y140{bottom:743.433024px;}
.yf8{bottom:745.559124px;}
.y8a{bottom:745.559274px;}
.yb1{bottom:746.692224px;}
.y28{bottom:752.099274px;}
.y16e{bottom:756.000000px;}
.y5e{bottom:758.371524px;}
.y1a2{bottom:759.960000px;}
.y119{bottom:760.529499px;}
.y13f{bottom:762.333024px;}
.yd6{bottom:764.459124px;}
.y89{bottom:764.459274px;}
.yb0{bottom:765.592224px;}
.y33{bottom:771.485199px;}
.y27{bottom:773.699274px;}
.y5d{bottom:777.271524px;}
.y13e{bottom:781.233024px;}
.y88{bottom:783.359124px;}
.yaf{bottom:784.492224px;}
.y1a1{bottom:793.440000px;}
.y26{bottom:795.299274px;}
.y5c{bottom:796.171524px;}
.y13d{bottom:800.133024px;}
.y87{bottom:802.259124px;}
.yae{bottom:803.392224px;}
.y1a0{bottom:813.960000px;}
.y5b{bottom:815.071749px;}
.y32{bottom:821.159124px;}
.y13c{bottom:821.159274px;}
.yad{bottom:822.292224px;}
.y19f{bottom:830.160000px;}
.y5a{bottom:833.971749px;}
.y31{bottom:840.059124px;}
.yac{bottom:841.191849px;}
.y19e{bottom:850.680000px;}
.y1ad{bottom:851.040000px;}
.y30{bottom:858.959124px;}
.yab{bottom:859.838274px;}
.y16d{bottom:865.080000px;}
.y19d{bottom:866.880000px;}
.y2f{bottom:877.859124px;}
.y16c{bottom:884.880000px;}
.y19c{bottom:887.760000px;}
.y1ac{bottom:888.120000px;}
.yaa{bottom:895.220424px;}
.y2e{bottom:896.759124px;}
.y2c{bottom:909.826974px;}
.y19b{bottom:921.240000px;}
.y1ab{bottom:924.120000px;}
.y2d{bottom:931.287774px;}
.y59{bottom:934.287774px;}
.y2a{bottom:934.365024px;}
.y2b{bottom:1058.220474px;}
.hf{height:29.162109px;}
.h21{height:29.897154px;}
.h1d{height:30.444405px;}
.h8{height:30.445005px;}
.h6{height:30.445605px;}
.h19{height:30.446205px;}
.h5{height:31.080103px;}
.he{height:33.843750px;}
.hd{height:37.672852px;}
.h15{height:41.818359px;}
.h39{height:43.804688px;}
.h17{height:45.197754px;}
.ha{height:45.745005px;}
.h7{height:45.745605px;}
.h9{height:45.746205px;}
.h14{height:45.746805px;}
.h3a{height:46.933594px;}
.h22{height:47.856445px;}
.h1b{height:48.436523px;}
.h1c{height:48.437123px;}
.h2a{height:50.062500px;}
.h32{height:52.942500px;}
.h38{height:53.191406px;}
.h10{height:53.818359px;}
.h30{height:54.631406px;}
.h2c{height:54.880313px;}
.h2f{height:56.320312px;}
.h4{height:56.509277px;}
.h13{height:56.509877px;}
.h11{height:56.510177px;}
.h16{height:56.510477px;}
.h1a{height:56.510777px;}
.h20{height:56.511077px;}
.h12{height:56.511677px;}
.h1f{height:56.511977px;}
.h1e{height:56.514977px;}
.h18{height:56.515277px;}
.h2d{height:57.760313px;}
.h34{height:59.200313px;}
.h2e{height:59.449219px;}
.h33{height:60.889219px;}
.h3c{height:62.329219px;}
.h31{height:62.578125px;}
.hc{height:63.808594px;}
.h25{height:64.018125px;}
.h2b{height:65.458125px;}
.h3b{height:65.707031px;}
.h37{height:66.649219px;}
.hb{height:67.007812px;}
.h35{height:68.835938px;}
.h29{height:71.715938px;}
.h3d{height:71.964844px;}
.h28{height:73.155938px;}
.h36{height:75.093750px;}
.h26{height:81.351562px;}
.h27{height:87.609375px;}
.h3e{height:96.996094px;}
.h23{height:1007.639985px;}
.h24{height:1008.000000px;}
.h0{height:1010.160000px;}
.h1{height:1010.250000px;}
.h2{height:1019.940999px;}
.h3{height:1020.000000px;}
.w6{width:667.284090px;}
.w7{width:667.500000px;}
.w5{width:671.250000px;}
.w4{width:671.536080px;}
.w1{width:709.500000px;}
.w0{width:709.560000px;}
.w2{width:722.940999px;}
.w3{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:3.720474px;}
.x1b{left:43.200000px;}
.x1c{left:60.120000px;}
.x22{left:73.800000px;}
.x23{left:90.000000px;}
.xb{left:91.204974px;}
.x2{left:92.839479px;}
.x13{left:96.846924px;}
.x3{left:110.873424px;}
.x1{left:116.232324px;}
.xd{left:117.343224px;}
.x8{left:120.379524px;}
.x11{left:129.406899px;}
.x6{left:154.364274px;}
.xf{left:156.625974px;}
.x7{left:158.825574px;}
.xe{left:177.885774px;}
.x18{left:200.160000px;}
.x19{left:213.840000px;}
.xc{left:240.161424px;}
.x1a{left:280.800000px;}
.x10{left:341.032974px;}
.x14{left:401.114124px;}
.x12{left:409.618074px;}
.x9{left:421.382424px;}
.x26{left:476.280000px;}
.x4{left:483.891624px;}
.x27{left:486.000000px;}
.x5{left:494.266224px;}
.x21{left:533.520000px;}
.x20{left:535.320000px;}
.x1d{left:536.760000px;}
.x1f{left:547.560000px;}
.x1e{left:554.040000px;}
.x25{left:564.480000px;}
.x24{left:573.840000px;}
.x16{left:612.314574px;}
.x17{left:628.514574px;}
.x15{left:629.919624px;}
@media print{
.v6{vertical-align:-16.800000pt;}
.v1{vertical-align:-13.600000pt;}
.v5{vertical-align:-10.666667pt;}
.vc{vertical-align:-8.960000pt;}
.ve{vertical-align:-7.680000pt;}
.v10{vertical-align:-6.400000pt;}
.vb{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.va{vertical-align:3.840000pt;}
.vf{vertical-align:5.120000pt;}
.vd{vertical-align:6.400000pt;}
.v2{vertical-align:10.666667pt;}
.v4{vertical-align:13.600533pt;}
.v3{vertical-align:16.800533pt;}
.ls1b{letter-spacing:-6.221600pt;}
.ls22{letter-spacing:-4.355120pt;}
.ls21{letter-spacing:-4.144000pt;}
.ls4{letter-spacing:-3.634400pt;}
.ls18{letter-spacing:-3.631200pt;}
.ls1c{letter-spacing:-2.919467pt;}
.ls19{letter-spacing:-2.913120pt;}
.ls23{letter-spacing:-2.724533pt;}
.ls16{letter-spacing:-2.063600pt;}
.ls1a{letter-spacing:-1.670533pt;}
.ls15{letter-spacing:-0.212800pt;}
.ls2a{letter-spacing:-0.016800pt;}
.ls17{letter-spacing:-0.012693pt;}
.ls11{letter-spacing:-0.011200pt;}
.lsa{letter-spacing:-0.009520pt;}
.ls9{letter-spacing:-0.009067pt;}
.ls10{letter-spacing:-0.007840pt;}
.lsb{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:-0.006347pt;}
.ls5{letter-spacing:-0.005600pt;}
.lsd{letter-spacing:-0.005333pt;}
.ls12{letter-spacing:-0.004987pt;}
.ls2b{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:-0.004533pt;}
.ls20{letter-spacing:-0.003920pt;}
.lsc{letter-spacing:-0.003733pt;}
.ls8{letter-spacing:-0.003173pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.005600pt;}
.ls3{letter-spacing:0.011200pt;}
.ls26{letter-spacing:0.162400pt;}
.ls14{letter-spacing:15.141333pt;}
.lse{letter-spacing:18.148533pt;}
.ls1d{letter-spacing:18.149600pt;}
.ls24{letter-spacing:18.687200pt;}
.ls1f{letter-spacing:21.067200pt;}
.ls13{letter-spacing:21.862933pt;}
.ls1e{letter-spacing:22.960000pt;}
.ls28{letter-spacing:27.910400pt;}
.ls27{letter-spacing:27.916000pt;}
.ls29{letter-spacing:27.988800pt;}
.ls25{letter-spacing:28.000000pt;}
.ls0{letter-spacing:45.354667pt;}
.ws159{word-spacing:-41.910400pt;}
.wsc{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.000000pt;}
.ws38{word-spacing:-13.994400pt;}
.ws190{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.333333pt;}
.ws15b{word-spacing:-11.328800pt;}
.ws9{word-spacing:-11.324267pt;}
.wsdd{word-spacing:-9.856000pt;}
.wsdb{word-spacing:-9.800000pt;}
.ws112{word-spacing:-8.608800pt;}
.ws191{word-spacing:-8.383200pt;}
.wsa4{word-spacing:-7.933333pt;}
.ws8{word-spacing:-7.930160pt;}
.ws3{word-spacing:-7.926987pt;}
.wsa{word-spacing:-7.923813pt;}
.wsa1{word-spacing:-7.778400pt;}
.ws33{word-spacing:-7.700000pt;}
.ws135{word-spacing:-6.600000pt;}
.ws61{word-spacing:-5.636400pt;}
.ws110{word-spacing:-5.444880pt;}
.ws65{word-spacing:-5.020213pt;}
.wsab{word-spacing:-5.013867pt;}
.wsca{word-spacing:-1.937600pt;}
.ws7b{word-spacing:-1.887200pt;}
.ws10d{word-spacing:-1.432533pt;}
.ws55{word-spacing:-1.405333pt;}
.ws58{word-spacing:-1.373600pt;}
.wsed{word-spacing:-1.299200pt;}
.ws9c{word-spacing:-1.246667pt;}
.ws125{word-spacing:-0.985600pt;}
.ws129{word-spacing:-0.946400pt;}
.ws20{word-spacing:-0.072533pt;}
.wsa0{word-spacing:-0.045333pt;}
.ws71{word-spacing:-0.027200pt;}
.ws13{word-spacing:0.000000pt;}
.ws153{word-spacing:0.011200pt;}
.ws128{word-spacing:0.050400pt;}
.ws10c{word-spacing:0.113333pt;}
.wse8{word-spacing:0.151200pt;}
.ws167{word-spacing:0.207200pt;}
.ws120{word-spacing:0.392000pt;}
.ws77{word-spacing:0.509600pt;}
.ws78{word-spacing:0.515200pt;}
.wsfa{word-spacing:0.576800pt;}
.ws12e{word-spacing:0.599200pt;}
.ws17a{word-spacing:0.733600pt;}
.wsff{word-spacing:0.743467pt;}
.wscd{word-spacing:0.884800pt;}
.ws162{word-spacing:0.946400pt;}
.ws11d{word-spacing:1.103200pt;}
.ws49{word-spacing:1.164800pt;}
.ws18d{word-spacing:1.214933pt;}
.ws164{word-spacing:1.254400pt;}
.ws163{word-spacing:1.260000pt;}
.ws169{word-spacing:1.349600pt;}
.ws3c{word-spacing:1.355200pt;}
.ws139{word-spacing:1.411200pt;}
.wsd8{word-spacing:1.455200pt;}
.wsf8{word-spacing:1.506400pt;}
.ws7d{word-spacing:1.562400pt;}
.ws185{word-spacing:1.741600pt;}
.ws106{word-spacing:1.745333pt;}
.ws16e{word-spacing:1.775200pt;}
.ws155{word-spacing:1.781600pt;}
.ws137{word-spacing:1.820000pt;}
.wsc8{word-spacing:1.864800pt;}
.ws186{word-spacing:1.904000pt;}
.wsc7{word-spacing:1.937600pt;}
.ws14f{word-spacing:1.948800pt;}
.ws39{word-spacing:1.995307pt;}
.ws16a{word-spacing:2.055200pt;}
.ws40{word-spacing:2.060800pt;}
.ws121{word-spacing:2.077600pt;}
.ws85{word-spacing:2.085333pt;}
.ws79{word-spacing:2.133600pt;}
.wsad{word-spacing:2.161600pt;}
.wsf1{word-spacing:2.318400pt;}
.ws5d{word-spacing:2.321067pt;}
.wsae{word-spacing:2.413600pt;}
.ws87{word-spacing:2.416267pt;}
.ws44{word-spacing:2.436000pt;}
.ws102{word-spacing:2.461600pt;}
.ws57{word-spacing:2.484267pt;}
.ws11e{word-spacing:2.514400pt;}
.wse7{word-spacing:2.564800pt;}
.ws172{word-spacing:2.615733pt;}
.ws140{word-spacing:2.637600pt;}
.ws4d{word-spacing:2.643200pt;}
.wsce{word-spacing:2.647467pt;}
.ws56{word-spacing:2.661067pt;}
.ws143{word-spacing:2.673600pt;}
.ws9a{word-spacing:2.683733pt;}
.ws10a{word-spacing:2.701867pt;}
.ws109{word-spacing:2.706400pt;}
.ws13b{word-spacing:2.727200pt;}
.ws152{word-spacing:2.749600pt;}
.ws52{word-spacing:2.755200pt;}
.ws177{word-spacing:2.766400pt;}
.ws12c{word-spacing:2.794400pt;}
.wsd3{word-spacing:2.810667pt;}
.wsd4{word-spacing:2.815200pt;}
.ws184{word-spacing:2.844800pt;}
.ws50{word-spacing:2.850400pt;}
.ws46{word-spacing:2.878400pt;}
.ws5c{word-spacing:2.887733pt;}
.ws75{word-spacing:2.895200pt;}
.ws18a{word-spacing:2.928800pt;}
.wsf9{word-spacing:2.973600pt;}
.ws9e{word-spacing:3.046400pt;}
.wseb{word-spacing:3.063200pt;}
.ws4c{word-spacing:3.108000pt;}
.ws21{word-spacing:3.123467pt;}
.ws43{word-spacing:3.124800pt;}
.ws81{word-spacing:3.180800pt;}
.ws99{word-spacing:3.182400pt;}
.ws24{word-spacing:3.196000pt;}
.ws133{word-spacing:3.197600pt;}
.ws14c{word-spacing:3.220000pt;}
.ws100{word-spacing:3.223200pt;}
.ws149{word-spacing:3.242400pt;}
.wsb3{word-spacing:3.248000pt;}
.wsb2{word-spacing:3.253600pt;}
.ws101{word-spacing:3.264000pt;}
.ws107{word-spacing:3.322933pt;}
.wsc6{word-spacing:3.348800pt;}
.ws70{word-spacing:3.351787pt;}
.ws82{word-spacing:3.363733pt;}
.ws2e{word-spacing:3.368267pt;}
.ws9d{word-spacing:3.390933pt;}
.ws5f{word-spacing:3.431733pt;}
.wsf2{word-spacing:3.444000pt;}
.ws26{word-spacing:3.508800pt;}
.ws92{word-spacing:3.572267pt;}
.ws158{word-spacing:3.585867pt;}
.ws89{word-spacing:3.662933pt;}
.ws165{word-spacing:3.690400pt;}
.wse6{word-spacing:3.701600pt;}
.ws31{word-spacing:3.733333pt;}
.wsd{word-spacing:3.740800pt;}
.wsea{word-spacing:3.774400pt;}
.wsbf{word-spacing:3.830400pt;}
.wsd2{word-spacing:3.876000pt;}
.ws160{word-spacing:3.880800pt;}
.wsa6{word-spacing:3.889600pt;}
.ws14b{word-spacing:3.903200pt;}
.ws188{word-spacing:3.908800pt;}
.ws7c{word-spacing:3.931200pt;}
.ws145{word-spacing:4.008000pt;}
.ws14d{word-spacing:4.020800pt;}
.wsfe{word-spacing:4.030133pt;}
.ws4{word-spacing:4.097013pt;}
.ws10b{word-spacing:4.102667pt;}
.ws173{word-spacing:4.157067pt;}
.ws2b{word-spacing:4.161600pt;}
.ws2a{word-spacing:4.166133pt;}
.ws1a{word-spacing:4.166400pt;}
.wsd7{word-spacing:4.197867pt;}
.ws10{word-spacing:4.216800pt;}
.ws105{word-spacing:4.234133pt;}
.ws16b{word-spacing:4.239200pt;}
.ws104{word-spacing:4.247733pt;}
.ws192{word-spacing:4.267200pt;}
.ws193{word-spacing:4.272000pt;}
.ws42{word-spacing:4.278400pt;}
.ws17f{word-spacing:4.317600pt;}
.ws83{word-spacing:4.374667pt;}
.wse3{word-spacing:4.390347pt;}
.wsb1{word-spacing:4.418400pt;}
.ws12d{word-spacing:4.446400pt;}
.wsa7{word-spacing:4.492747pt;}
.ws10f{word-spacing:4.528800pt;}
.ws29{word-spacing:4.533333pt;}
.ws5a{word-spacing:4.542400pt;}
.ws59{word-spacing:4.546933pt;}
.wsc1{word-spacing:4.547200pt;}
.ws134{word-spacing:4.551467pt;}
.ws1e{word-spacing:4.552800pt;}
.ws144{word-spacing:4.560000pt;}
.ws84{word-spacing:4.574133pt;}
.wsc9{word-spacing:4.580800pt;}
.ws93{word-spacing:4.605867pt;}
.ws11c{word-spacing:4.608800pt;}
.ws19{word-spacing:4.620000pt;}
.ws9b{word-spacing:4.624000pt;}
.ws23{word-spacing:4.633067pt;}
.ws22{word-spacing:4.637600pt;}
.wsda{word-spacing:4.642133pt;}
.wsd9{word-spacing:4.646667pt;}
.ws12a{word-spacing:4.670400pt;}
.ws13c{word-spacing:4.676000pt;}
.wscb{word-spacing:4.687200pt;}
.ws180{word-spacing:4.720800pt;}
.ws189{word-spacing:4.737600pt;}
.wsf6{word-spacing:4.748800pt;}
.ws10e{word-spacing:4.760000pt;}
.ws80{word-spacing:4.765600pt;}
.ws53{word-spacing:4.788000pt;}
.wsb6{word-spacing:4.793600pt;}
.ws146{word-spacing:4.800000pt;}
.wsc0{word-spacing:4.844000pt;}
.ws142{word-spacing:4.852800pt;}
.wsa9{word-spacing:4.860027pt;}
.ws88{word-spacing:4.896000pt;}
.ws12b{word-spacing:4.905600pt;}
.ws103{word-spacing:4.909600pt;}
.wsfc{word-spacing:4.911200pt;}
.wsaf{word-spacing:4.972800pt;}
.ws183{word-spacing:4.984000pt;}
.ws8b{word-spacing:4.986667pt;}
.ws18b{word-spacing:5.006400pt;}
.ws73{word-spacing:5.040000pt;}
.ws97{word-spacing:5.122667pt;}
.ws2f{word-spacing:5.154400pt;}
.ws2c{word-spacing:5.158933pt;}
.ws136{word-spacing:5.180373pt;}
.wsbe{word-spacing:5.202400pt;}
.ws4e{word-spacing:5.236000pt;}
.ws69{word-spacing:5.254347pt;}
.ws132{word-spacing:5.331200pt;}
.ws2d{word-spacing:5.367467pt;}
.ws108{word-spacing:5.381067pt;}
.wsd1{word-spacing:5.385600pt;}
.wsee{word-spacing:5.415200pt;}
.ws187{word-spacing:5.432000pt;}
.ws4f{word-spacing:5.454400pt;}
.ws114{word-spacing:5.510400pt;}
.wsf7{word-spacing:5.594400pt;}
.ws18{word-spacing:5.600000pt;}
.wsef{word-spacing:5.628000pt;}
.wsb{word-spacing:5.639787pt;}
.ws5e{word-spacing:5.653067pt;}
.wsc4{word-spacing:5.656000pt;}
.ws8c{word-spacing:5.666667pt;}
.ws9f{word-spacing:5.675733pt;}
.wscf{word-spacing:5.698400pt;}
.wsd0{word-spacing:5.702933pt;}
.ws16c{word-spacing:5.706400pt;}
.ws16d{word-spacing:5.712000pt;}
.wsd5{word-spacing:5.743733pt;}
.ws3e{word-spacing:5.751200pt;}
.ws67{word-spacing:5.766347pt;}
.ws18f{word-spacing:5.766400pt;}
.ws18e{word-spacing:5.770933pt;}
.ws91{word-spacing:5.834400pt;}
.ws90{word-spacing:5.838933pt;}
.wscc{word-spacing:5.846400pt;}
.ws123{word-spacing:5.852000pt;}
.ws7f{word-spacing:5.857600pt;}
.ws1d{word-spacing:5.891200pt;}
.ws1c{word-spacing:5.896800pt;}
.wsec{word-spacing:5.908000pt;}
.ws3a{word-spacing:5.912213pt;}
.wse0{word-spacing:5.913547pt;}
.ws60{word-spacing:5.916000pt;}
.ws96{word-spacing:5.925067pt;}
.ws8a{word-spacing:5.974933pt;}
.ws11f{word-spacing:5.975200pt;}
.ws28{word-spacing:6.006667pt;}
.ws15a{word-spacing:6.037467pt;}
.ws1f{word-spacing:6.042933pt;}
.wsa2{word-spacing:6.058747pt;}
.wsb7{word-spacing:6.104000pt;}
.wsb8{word-spacing:6.109600pt;}
.ws3d{word-spacing:6.115200pt;}
.wsfd{word-spacing:6.126400pt;}
.ws86{word-spacing:6.129067pt;}
.wsf{word-spacing:6.148800pt;}
.ws13e{word-spacing:6.171200pt;}
.wsdf{word-spacing:6.214880pt;}
.wsbd{word-spacing:6.216000pt;}
.wsbc{word-spacing:6.221600pt;}
.ws138{word-spacing:6.238400pt;}
.ws17d{word-spacing:6.255200pt;}
.ws17c{word-spacing:6.260800pt;}
.ws25{word-spacing:6.328533pt;}
.wsc2{word-spacing:6.339200pt;}
.ws157{word-spacing:6.360267pt;}
.ws156{word-spacing:6.364800pt;}
.ws168{word-spacing:6.372800pt;}
.ws8f{word-spacing:6.378400pt;}
.ws27{word-spacing:6.396533pt;}
.ws30{word-spacing:6.400000pt;}
.ws15{word-spacing:6.412000pt;}
.ws175{word-spacing:6.487200pt;}
.ws15f{word-spacing:6.496000pt;}
.ws15e{word-spacing:6.501600pt;}
.ws95{word-spacing:6.532533pt;}
.ws94{word-spacing:6.537067pt;}
.ws171{word-spacing:6.546400pt;}
.ws6b{word-spacing:6.550667pt;}
.ws8d{word-spacing:6.564267pt;}
.ws8e{word-spacing:6.568800pt;}
.ws76{word-spacing:6.585600pt;}
.ws6f{word-spacing:6.601333pt;}
.ws17e{word-spacing:6.613600pt;}
.ws4a{word-spacing:6.647200pt;}
.ws179{word-spacing:6.714400pt;}
.wse2{word-spacing:6.739253pt;}
.wsc5{word-spacing:6.764800pt;}
.ws7{word-spacing:6.787467pt;}
.ws6{word-spacing:6.841013pt;}
.ws5b{word-spacing:6.899733pt;}
.ws18c{word-spacing:6.904800pt;}
.wsb5{word-spacing:6.916000pt;}
.ws131{word-spacing:6.938400pt;}
.ws174{word-spacing:6.940533pt;}
.ws4b{word-spacing:6.955200pt;}
.wsf0{word-spacing:6.977600pt;}
.wsc3{word-spacing:6.983200pt;}
.ws13a{word-spacing:6.988800pt;}
.wsba{word-spacing:7.044800pt;}
.wsb9{word-spacing:7.050400pt;}
.wsf4{word-spacing:7.061600pt;}
.wsf3{word-spacing:7.067200pt;}
.wse9{word-spacing:7.078400pt;}
.ws62{word-spacing:7.107333pt;}
.ws47{word-spacing:7.117600pt;}
.ws98{word-spacing:7.226133pt;}
.ws124{word-spacing:7.263200pt;}
.ws63{word-spacing:7.271467pt;}
.ws7a{word-spacing:7.302400pt;}
.ws161{word-spacing:7.336000pt;}
.wsa3{word-spacing:7.383947pt;}
.wsa8{word-spacing:7.433547pt;}
.ws176{word-spacing:7.451680pt;}
.wsde{word-spacing:7.458880pt;}
.ws45{word-spacing:7.481600pt;}
.ws127{word-spacing:7.543200pt;}
.ws126{word-spacing:7.548800pt;}
.wse1{word-spacing:7.653200pt;}
.ws1b{word-spacing:7.672000pt;}
.ws151{word-spacing:7.700000pt;}
.ws13f{word-spacing:7.716800pt;}
.ws16f{word-spacing:7.739200pt;}
.ws170{word-spacing:7.744800pt;}
.ws154{word-spacing:7.767200pt;}
.ws166{word-spacing:7.817600pt;}
.ws122{word-spacing:7.851200pt;}
.ws74{word-spacing:7.862400pt;}
.wsb4{word-spacing:7.907200pt;}
.ws111{word-spacing:7.939893pt;}
.wsfb{word-spacing:7.940800pt;}
.ws15c{word-spacing:7.953200pt;}
.ws113{word-spacing:7.958080pt;}
.wsac{word-spacing:7.976427pt;}
.ws11b{word-spacing:7.991200pt;}
.ws11a{word-spacing:7.996800pt;}
.ws3b{word-spacing:8.004160pt;}
.ws14e{word-spacing:8.013600pt;}
.ws6a{word-spacing:8.057307pt;}
.ws115{word-spacing:8.097600pt;}
.ws119{word-spacing:8.103200pt;}
.ws6c{word-spacing:8.230267pt;}
.ws64{word-spacing:8.232613pt;}
.ws72{word-spacing:8.293600pt;}
.ws12{word-spacing:8.304800pt;}
.wsdc{word-spacing:8.361360pt;}
.ws7e{word-spacing:8.372000pt;}
.ws181{word-spacing:8.411200pt;}
.ws182{word-spacing:8.416800pt;}
.ws13d{word-spacing:8.478400pt;}
.ws5{word-spacing:8.584213pt;}
.ws37{word-spacing:8.629600pt;}
.ws17{word-spacing:8.680000pt;}
.wsbb{word-spacing:8.764000pt;}
.wsa5{word-spacing:8.796880pt;}
.ws41{word-spacing:8.853600pt;}
.ws141{word-spacing:8.898400pt;}
.wsf5{word-spacing:8.932000pt;}
.ws16{word-spacing:8.954400pt;}
.wse4{word-spacing:8.965600pt;}
.wse5{word-spacing:8.971200pt;}
.ws3f{word-spacing:9.055200pt;}
.ws48{word-spacing:9.066400pt;}
.ws68{word-spacing:9.238267pt;}
.wsd6{word-spacing:9.252533pt;}
.ws2{word-spacing:9.462533pt;}
.ws51{word-spacing:9.469600pt;}
.ws6d{word-spacing:9.490933pt;}
.wsaa{word-spacing:9.638827pt;}
.ws116{word-spacing:9.643200pt;}
.ws36{word-spacing:9.815680pt;}
.ws35{word-spacing:9.826400pt;}
.ws34{word-spacing:9.826773pt;}
.ws117{word-spacing:9.856000pt;}
.ws118{word-spacing:9.861600pt;}
.ws178{word-spacing:10.214400pt;}
.ws14a{word-spacing:10.651200pt;}
.ws147{word-spacing:10.701600pt;}
.ws148{word-spacing:10.707200pt;}
.ws15d{word-spacing:10.925600pt;}
.wsb0{word-spacing:11.015200pt;}
.ws11{word-spacing:11.076800pt;}
.wse{word-spacing:11.368000pt;}
.ws12f{word-spacing:11.446400pt;}
.ws130{word-spacing:11.452000pt;}
.ws17b{word-spacing:11.698400pt;}
.ws54{word-spacing:13.512800pt;}
.ws150{word-spacing:13.832000pt;}
.ws14{word-spacing:13.988800pt;}
.ws66{word-spacing:39.121333pt;}
.ws6e{word-spacing:42.462000pt;}
.ws32{word-spacing:548.261867pt;}
._16{margin-left:-29.965600pt;}
._17{margin-left:-27.904800pt;}
._19{margin-left:-22.472800pt;}
._18{margin-left:-21.532000pt;}
._d{margin-left:-7.224000pt;}
._10{margin-left:-6.266400pt;}
._a{margin-left:-5.374587pt;}
._5{margin-left:-4.084613pt;}
._3{margin-left:-3.074400pt;}
._1{margin-left:-2.066400pt;}
._0{margin-left:-0.996800pt;}
._11{width:1.047200pt;}
._e{width:2.485707pt;}
._2{width:3.628800pt;}
._6{width:4.533333pt;}
._4{width:5.880000pt;}
._1c{width:6.898293pt;}
._1e{width:7.796960pt;}
._14{width:8.715813pt;}
._1d{width:9.680000pt;}
._b{width:10.871707pt;}
._7{width:11.832560pt;}
._13{width:13.608693pt;}
._12{width:14.959440pt;}
._15{width:16.035173pt;}
._c{width:17.439573pt;}
._8{width:18.892800pt;}
._9{width:20.751200pt;}
._1a{width:22.640800pt;}
._1b{width:48.018667pt;}
._f{width:1328.091200pt;}
.fs13{font-size:24.000000pt;}
.fs2{font-size:24.933333pt;}
.fsb{font-size:26.400000pt;}
.fs1{font-size:30.800000pt;}
.fs4{font-size:31.733333pt;}
.fs14{font-size:32.000000pt;}
.fsc{font-size:33.600000pt;}
.fs12{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:39.200000pt;}
.fs11{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs10{font-size:58.666667pt;}
.fs15{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fse{font-size:69.333333pt;}
.fsf{font-size:74.666667pt;}
.fs16{font-size:82.666667pt;}
.y0{bottom:0.000000pt;}
.y161{bottom:50.074155pt;}
.y58{bottom:50.074288pt;}
.y1b1{bottom:51.840000pt;}
.y1b0{bottom:56.000000pt;}
.y18b{bottom:68.800000pt;}
.y19a{bottom:69.440000pt;}
.y86{bottom:79.697888pt;}
.y57{bottom:79.702155pt;}
.ya9{bottom:79.702288pt;}
.yd5{bottom:79.702421pt;}
.y25{bottom:79.703355pt;}
.y168{bottom:80.376688pt;}
.y164{bottom:80.376821pt;}
.y160{bottom:83.100421pt;}
.y13b{bottom:83.100821pt;}
.yf7{bottom:83.101221pt;}
.y18a{bottom:87.360000pt;}
.y199{bottom:88.320000pt;}
.y85{bottom:93.297888pt;}
.yd4{bottom:93.302421pt;}
.y24{bottom:93.303355pt;}
.y15f{bottom:96.700421pt;}
.y13a{bottom:96.700821pt;}
.y118{bottom:96.701088pt;}
.yf6{bottom:96.701221pt;}
.y56{bottom:96.702288pt;}
.y16b{bottom:100.316907pt;}
.y189{bottom:102.080000pt;}
.y84{bottom:106.897888pt;}
.y117{bottom:106.900955pt;}
.ya8{bottom:106.902021pt;}
.y55{bottom:106.902288pt;}
.yd3{bottom:106.902555pt;}
.y23{bottom:106.903355pt;}
.y16a{bottom:108.438688pt;}
.y15e{bottom:110.300421pt;}
.y139{bottom:110.300821pt;}
.yf5{bottom:110.301221pt;}
.y83{bottom:120.497888pt;}
.y116{bottom:120.500955pt;}
.yf4{bottom:120.501221pt;}
.ya7{bottom:120.502155pt;}
.y54{bottom:120.502288pt;}
.yd2{bottom:120.502555pt;}
.y22{bottom:120.503355pt;}
.y188{bottom:120.640000pt;}
.y198{bottom:121.280000pt;}
.y15d{bottom:123.900421pt;}
.y138{bottom:123.900821pt;}
.y1af{bottom:127.040000pt;}
.y82{bottom:134.097888pt;}
.y115{bottom:134.100955pt;}
.ya6{bottom:134.102155pt;}
.y53{bottom:134.102288pt;}
.yd1{bottom:134.102555pt;}
.y15c{bottom:137.500288pt;}
.y137{bottom:137.500688pt;}
.yf3{bottom:137.501355pt;}
.y21{bottom:137.503355pt;}
.y187{bottom:139.200000pt;}
.y197{bottom:139.520000pt;}
.y81{bottom:147.697755pt;}
.y52{bottom:147.702021pt;}
.ya5{bottom:147.702155pt;}
.yd0{bottom:147.702421pt;}
.y20{bottom:147.703221pt;}
.y15b{bottom:151.100421pt;}
.y136{bottom:151.100688pt;}
.y114{bottom:151.101221pt;}
.y186{bottom:153.920000pt;}
.y80{bottom:161.297755pt;}
.y15a{bottom:161.300155pt;}
.y51{bottom:161.302021pt;}
.y135{bottom:164.700821pt;}
.ya4{bottom:164.702288pt;}
.ycf{bottom:164.702555pt;}
.y1f{bottom:164.703355pt;}
.yf2{bottom:166.582955pt;}
.y185{bottom:172.480000pt;}
.y196{bottom:172.800000pt;}
.y7f{bottom:174.897755pt;}
.y134{bottom:174.900555pt;}
.y50{bottom:174.902021pt;}
.yce{bottom:174.902421pt;}
.y1e{bottom:174.903088pt;}
.y159{bottom:178.300288pt;}
.y113{bottom:183.295755pt;}
.yf1{bottom:183.382955pt;}
.y184{bottom:187.200000pt;}
.y158{bottom:188.500021pt;}
.y133{bottom:188.500555pt;}
.y4f{bottom:188.502021pt;}
.y1d{bottom:188.503088pt;}
.y7e{bottom:191.897755pt;}
.ycd{bottom:191.902421pt;}
.y112{bottom:200.095755pt;}
.yf0{bottom:200.182955pt;}
.y7d{bottom:202.097755pt;}
.y157{bottom:202.100155pt;}
.y132{bottom:202.100555pt;}
.ycc{bottom:202.102421pt;}
.y1c{bottom:202.103088pt;}
.y4e{bottom:205.502021pt;}
.y183{bottom:205.760000pt;}
.y195{bottom:206.080000pt;}
.y7c{bottom:215.697621pt;}
.y4d{bottom:215.701888pt;}
.ya3{bottom:215.702021pt;}
.ycb{bottom:215.702421pt;}
.y1b{bottom:215.703088pt;}
.yef{bottom:216.982955pt;}
.y111{bottom:218.791355pt;}
.y156{bottom:219.100155pt;}
.y131{bottom:219.100555pt;}
.y182{bottom:220.480000pt;}
.y7b{bottom:229.297621pt;}
.y4c{bottom:229.301888pt;}
.ya2{bottom:229.302155pt;}
.yca{bottom:229.302288pt;}
.y1a{bottom:229.303088pt;}
.yee{bottom:233.782955pt;}
.y110{bottom:235.591355pt;}
.y181{bottom:239.040000pt;}
.y194{bottom:239.360000pt;}
.y7a{bottom:242.897621pt;}
.yc9{bottom:242.902155pt;}
.y19{bottom:242.903088pt;}
.y4b{bottom:246.302021pt;}
.y130{bottom:252.238488pt;}
.y10f{bottom:252.391355pt;}
.y79{bottom:256.497621pt;}
.yc8{bottom:256.502155pt;}
.y18{bottom:256.503088pt;}
.y180{bottom:257.600000pt;}
.y193{bottom:257.920000pt;}
.yed{bottom:262.492488pt;}
.y12f{bottom:269.038488pt;}
.y10e{bottom:269.191355pt;}
.y78{bottom:270.097621pt;}
.y17{bottom:270.103088pt;}
.yc7{bottom:273.502288pt;}
.ya1{bottom:273.788421pt;}
.y17f{bottom:276.160000pt;}
.y192{bottom:276.480000pt;}
.y4a{bottom:278.485088pt;}
.yc6{bottom:283.702288pt;}
.y16{bottom:283.703088pt;}
.y12e{bottom:285.838488pt;}
.y10d{bottom:285.991355pt;}
.y77{bottom:287.097621pt;}
.ya0{bottom:290.588421pt;}
.y17e{bottom:290.880000pt;}
.y49{bottom:295.285088pt;}
.y155{bottom:296.691488pt;}
.y76{bottom:297.297488pt;}
.yc5{bottom:300.702288pt;}
.y15{bottom:300.703088pt;}
.yec{bottom:302.539821pt;}
.y12d{bottom:302.638488pt;}
.y10c{bottom:302.791355pt;}
.y9f{bottom:307.388421pt;}
.y17d{bottom:309.440000pt;}
.y191{bottom:309.760000pt;}
.y48{bottom:312.084955pt;}
.y154{bottom:313.491488pt;}
.y75{bottom:314.297621pt;}
.yeb{bottom:319.339821pt;}
.y10b{bottom:319.591355pt;}
.y12c{bottom:322.930888pt;}
.y17c{bottom:324.160000pt;}
.y9e{bottom:324.188421pt;}
.y74{bottom:324.497488pt;}
.y47{bottom:328.884955pt;}
.y153{bottom:330.291488pt;}
.y14{bottom:330.319888pt;}
.yea{bottom:336.139821pt;}
.y10a{bottom:336.391355pt;}
.yc4{bottom:336.639021pt;}
.y73{bottom:338.097488pt;}
.y9d{bottom:340.988421pt;}
.y17b{bottom:342.720000pt;}
.y190{bottom:343.040000pt;}
.y12b{bottom:343.223288pt;}
.y46{bottom:345.684955pt;}
.y13{bottom:347.119888pt;}
.y152{bottom:348.981088pt;}
.y72{bottom:351.697488pt;}
.ye9{bottom:352.939821pt;}
.y109{bottom:353.191355pt;}
.yc3{bottom:353.439021pt;}
.y17a{bottom:357.440000pt;}
.y9c{bottom:357.788421pt;}
.y12a{bottom:360.023288pt;}
.y45{bottom:362.484421pt;}
.y12{bottom:363.919888pt;}
.y151{bottom:365.781088pt;}
.y71{bottom:368.697488pt;}
.y108{bottom:369.991355pt;}
.yc2{bottom:370.239021pt;}
.ye8{bottom:372.199488pt;}
.y9b{bottom:374.588421pt;}
.y179{bottom:376.000000pt;}
.y18f{bottom:376.320000pt;}
.y70{bottom:378.897355pt;}
.y44{bottom:379.284421pt;}
.y129{bottom:380.315688pt;}
.y11{bottom:380.719888pt;}
.y150{bottom:382.581088pt;}
.y107{bottom:386.791355pt;}
.yc1{bottom:387.039021pt;}
.ye7{bottom:388.999488pt;}
.y163{bottom:389.766955pt;}
.y178{bottom:390.720000pt;}
.y9a{bottom:391.388421pt;}
.y6f{bottom:392.497355pt;}
.y43{bottom:396.084421pt;}
.y128{bottom:397.115688pt;}
.y10{bottom:397.519888pt;}
.y14f{bottom:401.270821pt;}
.y167{bottom:402.995088pt;}
.y106{bottom:403.591421pt;}
.yc0{bottom:403.839021pt;}
.y162{bottom:404.166955pt;}
.ye6{bottom:405.799488pt;}
.y6e{bottom:406.097221pt;}
.y99{bottom:408.188421pt;}
.y177{bottom:409.600000pt;}
.y18e{bottom:409.920000pt;}
.y42{bottom:412.884421pt;}
.y127{bottom:413.915688pt;}
.yd{bottom:417.258288pt;}
.yf{bottom:417.258421pt;}
.y166{bottom:417.395088pt;}
.y14e{bottom:418.070821pt;}
.y6d{bottom:419.697221pt;}
.y105{bottom:420.391421pt;}
.ybf{bottom:420.639021pt;}
.ye{bottom:421.458421pt;}
.ye5{bottom:422.599355pt;}
.y176{bottom:424.320000pt;}
.y98{bottom:424.988421pt;}
.y41{bottom:429.684421pt;}
.y165{bottom:431.795221pt;}
.y6c{bottom:433.297221pt;}
.yc{bottom:434.058288pt;}
.y126{bottom:434.208088pt;}
.y14d{bottom:434.870821pt;}
.ye4{bottom:439.399355pt;}
.ybe{bottom:441.382688pt;}
.y97{bottom:441.788421pt;}
.y175{bottom:443.200000pt;}
.y6b{bottom:446.897221pt;}
.y104{bottom:448.535621pt;}
.yb{bottom:450.858288pt;}
.y125{bottom:451.008088pt;}
.y40{bottom:451.684021pt;}
.y14c{bottom:453.560421pt;}
.ye3{bottom:456.199355pt;}
.y174{bottom:457.280000pt;}
.ybd{bottom:458.182688pt;}
.y96{bottom:458.588421pt;}
.y6a{bottom:460.497221pt;}
.y9{bottom:467.658288pt;}
.y124{bottom:467.808088pt;}
.y3f{bottom:468.484021pt;}
.y14b{bottom:470.360421pt;}
.ya{bottom:471.858288pt;}
.ye2{bottom:472.999355pt;}
.y69{bottom:474.097221pt;}
.ybc{bottom:474.982688pt;}
.y95{bottom:475.388421pt;}
.y103{bottom:475.647488pt;}
.y173{bottom:476.480000pt;}
.y6{bottom:484.458021pt;}
.y8{bottom:484.458288pt;}
.y3e{bottom:485.284021pt;}
.y123{bottom:488.100488pt;}
.y7{bottom:488.658288pt;}
.y14a{bottom:489.050155pt;}
.ye1{bottom:489.799355pt;}
.y102{bottom:490.047488pt;}
.y172{bottom:490.880000pt;}
.y68{bottom:491.097221pt;}
.ybb{bottom:491.782688pt;}
.y94{bottom:492.188421pt;}
.y5{bottom:501.258021pt;}
.y3d{bottom:502.084021pt;}
.y101{bottom:504.447488pt;}
.y122{bottom:504.900488pt;}
.y149{bottom:505.850155pt;}
.ye0{bottom:506.599355pt;}
.yba{bottom:508.582888pt;}
.y93{bottom:508.988421pt;}
.y171{bottom:509.440000pt;}
.y18d{bottom:509.760000pt;}
.y4{bottom:518.058021pt;}
.y100{bottom:518.847488pt;}
.y3c{bottom:518.884021pt;}
.y148{bottom:522.650155pt;}
.y67{bottom:522.908288pt;}
.y170{bottom:523.840000pt;}
.y121{bottom:525.192888pt;}
.yb9{bottom:525.382888pt;}
.y92{bottom:525.788421pt;}
.ydf{bottom:525.859221pt;}
.y1aa{bottom:528.320000pt;}
.yff{bottom:533.247488pt;}
.y3{bottom:534.858021pt;}
.y3b{bottom:535.684021pt;}
.y16f{bottom:538.560000pt;}
.y147{bottom:539.450155pt;}
.y66{bottom:539.708288pt;}
.y120{bottom:541.992888pt;}
.y91{bottom:542.588421pt;}
.yde{bottom:542.659221pt;}
.yb8{bottom:546.126688pt;}
.y2{bottom:551.658021pt;}
.y3a{bottom:552.484021pt;}
.y65{bottom:556.508288pt;}
.y1a9{bottom:557.760000pt;}
.y146{bottom:558.139888pt;}
.y11f{bottom:558.792888pt;}
.y90{bottom:559.388421pt;}
.ydd{bottom:559.459221pt;}
.yfe{bottom:560.023888pt;}
.y18c{bottom:561.600000pt;}
.yb7{bottom:562.926421pt;}
.y169{bottom:564.802821pt;}
.y1{bottom:568.458021pt;}
.y39{bottom:569.284021pt;}
.y1a8{bottom:572.160000pt;}
.y64{bottom:573.308021pt;}
.y145{bottom:574.939888pt;}
.y8f{bottom:576.188421pt;}
.ydc{bottom:576.259221pt;}
.yfd{bottom:576.823888pt;}
.y11e{bottom:579.084621pt;}
.yb6{bottom:579.726421pt;}
.y38{bottom:586.084021pt;}
.y63{bottom:590.108021pt;}
.y1a7{bottom:590.400000pt;}
.y144{bottom:591.739888pt;}
.ydb{bottom:593.059221pt;}
.yfc{bottom:593.623888pt;}
.y8e{bottom:595.519621pt;}
.y11d{bottom:595.884621pt;}
.yb5{bottom:596.526421pt;}
.y37{bottom:602.884021pt;}
.y1a6{bottom:604.800000pt;}
.y62{bottom:606.908021pt;}
.y143{bottom:608.539888pt;}
.yda{bottom:609.859221pt;}
.yfb{bottom:610.423888pt;}
.y8d{bottom:612.319621pt;}
.y11c{bottom:612.684621pt;}
.yb4{bottom:613.326421pt;}
.y36{bottom:619.684021pt;}
.y1a5{bottom:623.040000pt;}
.y61{bottom:623.708021pt;}
.y142{bottom:625.339888pt;}
.yd9{bottom:626.659221pt;}
.yfa{bottom:627.223888pt;}
.y8c{bottom:629.119621pt;}
.y11b{bottom:629.484621pt;}
.yb3{bottom:630.126421pt;}
.y29{bottom:631.348688pt;}
.y35{bottom:636.484021pt;}
.y1a4{bottom:637.440000pt;}
.y60{bottom:640.508021pt;}
.yd8{bottom:643.459221pt;}
.yf9{bottom:644.023888pt;}
.y141{bottom:644.029355pt;}
.y8b{bottom:645.919355pt;}
.yb2{bottom:646.926421pt;}
.y34{bottom:653.284021pt;}
.y1a3{bottom:655.360000pt;}
.y1ae{bottom:655.680000pt;}
.y5f{bottom:657.308021pt;}
.y11a{bottom:659.226221pt;}
.yd7{bottom:660.259221pt;}
.y140{bottom:660.829355pt;}
.yf8{bottom:662.719221pt;}
.y8a{bottom:662.719355pt;}
.yb1{bottom:663.726421pt;}
.y28{bottom:668.532688pt;}
.y16e{bottom:672.000000pt;}
.y5e{bottom:674.108021pt;}
.y1a2{bottom:675.520000pt;}
.y119{bottom:676.026221pt;}
.y13f{bottom:677.629355pt;}
.yd6{bottom:679.519221pt;}
.y89{bottom:679.519355pt;}
.yb0{bottom:680.526421pt;}
.y33{bottom:685.764621pt;}
.y27{bottom:687.732688pt;}
.y5d{bottom:690.908021pt;}
.y13e{bottom:694.429355pt;}
.y88{bottom:696.319221pt;}
.yaf{bottom:697.326421pt;}
.y1a1{bottom:705.280000pt;}
.y26{bottom:706.932688pt;}
.y5c{bottom:707.708021pt;}
.y13d{bottom:711.229355pt;}
.y87{bottom:713.119221pt;}
.yae{bottom:714.126421pt;}
.y1a0{bottom:723.520000pt;}
.y5b{bottom:724.508221pt;}
.y32{bottom:729.919221pt;}
.y13c{bottom:729.919355pt;}
.yad{bottom:730.926421pt;}
.y19f{bottom:737.920000pt;}
.y5a{bottom:741.308221pt;}
.y31{bottom:746.719221pt;}
.yac{bottom:747.726088pt;}
.y19e{bottom:756.160000pt;}
.y1ad{bottom:756.480000pt;}
.y30{bottom:763.519221pt;}
.yab{bottom:764.300688pt;}
.y16d{bottom:768.960000pt;}
.y19d{bottom:770.560000pt;}
.y2f{bottom:780.319221pt;}
.y16c{bottom:786.560000pt;}
.y19c{bottom:789.120000pt;}
.y1ac{bottom:789.440000pt;}
.yaa{bottom:795.751488pt;}
.y2e{bottom:797.119221pt;}
.y2c{bottom:808.735088pt;}
.y19b{bottom:818.880000pt;}
.y1ab{bottom:821.440000pt;}
.y2d{bottom:827.811355pt;}
.y59{bottom:830.478021pt;}
.y2a{bottom:830.546688pt;}
.y2b{bottom:940.640421pt;}
.hf{height:25.921875pt;}
.h21{height:26.575248pt;}
.h1d{height:27.061694pt;}
.h8{height:27.062227pt;}
.h6{height:27.062760pt;}
.h19{height:27.063294pt;}
.h5{height:27.626758pt;}
.he{height:30.083333pt;}
.hd{height:33.486979pt;}
.h15{height:37.171875pt;}
.h39{height:38.937500pt;}
.h17{height:40.175781pt;}
.ha{height:40.662227pt;}
.h7{height:40.662760pt;}
.h9{height:40.663294pt;}
.h14{height:40.663827pt;}
.h3a{height:41.718750pt;}
.h22{height:42.539062pt;}
.h1b{height:43.054688pt;}
.h1c{height:43.055221pt;}
.h2a{height:44.500000pt;}
.h32{height:47.060000pt;}
.h38{height:47.281250pt;}
.h10{height:47.838542pt;}
.h30{height:48.561250pt;}
.h2c{height:48.782500pt;}
.h2f{height:50.062500pt;}
.h4{height:50.230469pt;}
.h13{height:50.231002pt;}
.h11{height:50.231269pt;}
.h16{height:50.231535pt;}
.h1a{height:50.231802pt;}
.h20{height:50.232069pt;}
.h12{height:50.232602pt;}
.h1f{height:50.232869pt;}
.h1e{height:50.235535pt;}
.h18{height:50.235802pt;}
.h2d{height:51.342500pt;}
.h34{height:52.622500pt;}
.h2e{height:52.843750pt;}
.h33{height:54.123750pt;}
.h3c{height:55.403750pt;}
.h31{height:55.625000pt;}
.hc{height:56.718750pt;}
.h25{height:56.905000pt;}
.h2b{height:58.185000pt;}
.h3b{height:58.406250pt;}
.h37{height:59.243750pt;}
.hb{height:59.562500pt;}
.h35{height:61.187500pt;}
.h29{height:63.747500pt;}
.h3d{height:63.968750pt;}
.h28{height:65.027500pt;}
.h36{height:66.750000pt;}
.h26{height:72.312500pt;}
.h27{height:77.875000pt;}
.h3e{height:86.218750pt;}
.h23{height:895.679987pt;}
.h24{height:896.000000pt;}
.h0{height:897.920000pt;}
.h1{height:898.000000pt;}
.h2{height:906.614221pt;}
.h3{height:906.666667pt;}
.w6{width:593.141413pt;}
.w7{width:593.333333pt;}
.w5{width:596.666667pt;}
.w4{width:596.920960pt;}
.w1{width:630.666667pt;}
.w0{width:630.720000pt;}
.w2{width:642.614221pt;}
.w3{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:3.307088pt;}
.x1b{left:38.400000pt;}
.x1c{left:53.440000pt;}
.x22{left:65.600000pt;}
.x23{left:80.000000pt;}
.xb{left:81.071088pt;}
.x2{left:82.523981pt;}
.x13{left:86.086155pt;}
.x3{left:98.554155pt;}
.x1{left:103.317621pt;}
.xd{left:104.305088pt;}
.x8{left:107.004021pt;}
.x11{left:115.028355pt;}
.x6{left:137.212688pt;}
.xf{left:139.223088pt;}
.x7{left:141.178288pt;}
.xe{left:158.120688pt;}
.x18{left:177.920000pt;}
.x19{left:190.080000pt;}
.xc{left:213.476821pt;}
.x1a{left:249.600000pt;}
.x10{left:303.140421pt;}
.x14{left:356.545888pt;}
.x12{left:364.104955pt;}
.x9{left:374.562155pt;}
.x26{left:423.360000pt;}
.x4{left:430.125888pt;}
.x27{left:432.000000pt;}
.x5{left:439.347755pt;}
.x21{left:474.240000pt;}
.x20{left:475.840000pt;}
.x1d{left:477.120000pt;}
.x1f{left:486.720000pt;}
.x1e{left:492.480000pt;}
.x25{left:501.760000pt;}
.x24{left:510.080000pt;}
.x16{left:544.279621pt;}
.x17{left:558.679621pt;}
.x15{left:559.928555pt;}
}




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