
    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_12034d7d90fe6bd06258942a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_eae9f3735349988a0429b8e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a0689b7dfb9e72d9693a2784.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_9027421759c2055269e34fbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8a1b5b91b306136fe779a4a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_1f2a0f3f0277e6723fdd88b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_7a7d3e47da5a95f85a8ed41d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.230000;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_408d1e39408b39e90842c33f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.120000;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_cf10c6f1d55dc4813f26e1aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d5cbf6cc10a24fc9083127c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v1{vertical-align:-15.192000px;}
.v7{vertical-align:-5.976600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.976000px;}
.v4{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v6{vertical-align:59.923151px;}
.ls7{letter-spacing:-2.880000px;}
.lsa{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.162000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.006000px;}
.lse{letter-spacing:0.015600px;}
.ls0{letter-spacing:0.022200px;}
.ls1{letter-spacing:1.368000px;}
.lsc{letter-spacing:2.988600px;}
.ls4{letter-spacing:11.943245px;}
.lsf{letter-spacing:14.955955px;}
.lsb{letter-spacing:17.934000px;}
.ls3{letter-spacing:19.329154px;}
.ls8{letter-spacing:248.688000px;}
.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;}
}
.ws1{word-spacing:-19.368000px;}
.wsb4{word-spacing:-16.500000px;}
.wsa7{word-spacing:-14.955955px;}
.ws0{word-spacing:-13.500000px;}
.wsa5{word-spacing:-13.338000px;}
.ws50{word-spacing:-13.176000px;}
.ws8e{word-spacing:-12.798000px;}
.ws68{word-spacing:-12.000000px;}
.ws51{word-spacing:-11.997043px;}
.ws78{word-spacing:-11.424000px;}
.ws3{word-spacing:-10.500000px;}
.ws2{word-spacing:-8.775000px;}
.ws4{word-spacing:-7.800000px;}
.wsb8{word-spacing:-5.022000px;}
.wsc1{word-spacing:-4.998000px;}
.ws8c{word-spacing:-4.266000px;}
.wsb{word-spacing:-4.116000px;}
.ws30{word-spacing:-3.948000px;}
.wsab{word-spacing:-3.726000px;}
.ws55{word-spacing:-3.294000px;}
.ws90{word-spacing:-2.753995px;}
.ws21{word-spacing:-2.646000px;}
.wsb0{word-spacing:-2.592000px;}
.ws8{word-spacing:-2.538000px;}
.wse{word-spacing:-2.484000px;}
.wsf{word-spacing:-2.430000px;}
.wsac{word-spacing:-2.321995px;}
.wse5{word-spacing:-2.310000px;}
.ws5e{word-spacing:-2.268000px;}
.ws9{word-spacing:-2.160000px;}
.ws81{word-spacing:-2.106000px;}
.ws6d{word-spacing:-2.052000px;}
.wsd5{word-spacing:-2.016000px;}
.ws95{word-spacing:-1.998000px;}
.ws39{word-spacing:-1.944000px;}
.wsfe{word-spacing:-1.932000px;}
.ws26{word-spacing:-1.890000px;}
.ws100{word-spacing:-1.848000px;}
.wsb3{word-spacing:-1.836000px;}
.wsea{word-spacing:-1.805996px;}
.ws19{word-spacing:-1.782000px;}
.ws37{word-spacing:-1.728000px;}
.ws36{word-spacing:-1.674000px;}
.ws65{word-spacing:-1.620000px;}
.ws83{word-spacing:-1.566000px;}
.ws28{word-spacing:-1.512000px;}
.ws45{word-spacing:-1.458000px;}
.ws9e{word-spacing:-1.404000px;}
.wse9{word-spacing:-1.386000px;}
.ws6b{word-spacing:-1.350000px;}
.wse1{word-spacing:-1.344000px;}
.ws3a{word-spacing:-1.296000px;}
.ws66{word-spacing:-1.242000px;}
.wsdb{word-spacing:-1.218000px;}
.ws8d{word-spacing:-1.188000px;}
.wsd3{word-spacing:-1.176000px;}
.wsf9{word-spacing:-1.134000px;}
.wsd1{word-spacing:-1.092000px;}
.ws40{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.026000px;}
.wsce{word-spacing:-1.008000px;}
.ws1c{word-spacing:-0.972000px;}
.wsbc{word-spacing:-0.924000px;}
.ws44{word-spacing:-0.918000px;}
.ws82{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.810000px;}
.ws48{word-spacing:-0.756000px;}
.wse7{word-spacing:-0.714000px;}
.ws22{word-spacing:-0.702000px;}
.ws5d{word-spacing:-0.648000px;}
.ws9f{word-spacing:-0.540000px;}
.ws7d{word-spacing:-0.486000px;}
.wsc2{word-spacing:-0.462000px;}
.ws86{word-spacing:-0.432000px;}
.wsed{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.378000px;}
.ws97{word-spacing:-0.324000px;}
.wsf0{word-spacing:-0.294000px;}
.ws2e{word-spacing:-0.270000px;}
.wsf1{word-spacing:-0.252000px;}
.ws11{word-spacing:-0.216000px;}
.wsde{word-spacing:-0.210000px;}
.ws7e{word-spacing:-0.162000px;}
.ws106{word-spacing:-0.126000px;}
.wse8{word-spacing:-0.084000px;}
.wsaf{word-spacing:-0.054000px;}
.wsa4{word-spacing:-0.053798px;}
.wsee{word-spacing:-0.042000px;}
.ws53{word-spacing:-0.034969px;}
.ws7{word-spacing:0.000000px;}
.wse3{word-spacing:0.042000px;}
.ws4c{word-spacing:0.054000px;}
.wsf4{word-spacing:0.084000px;}
.ws35{word-spacing:0.108000px;}
.wsff{word-spacing:0.126000px;}
.ws43{word-spacing:0.162000px;}
.ws31{word-spacing:0.216000px;}
.wsbb{word-spacing:0.252000px;}
.ws20{word-spacing:0.270000px;}
.ws18{word-spacing:0.324000px;}
.wse4{word-spacing:0.336000px;}
.ws60{word-spacing:0.378000px;}
.ws42{word-spacing:0.432000px;}
.wsef{word-spacing:0.462000px;}
.ws3d{word-spacing:0.486000px;}
.wsdd{word-spacing:0.504000px;}
.ws13{word-spacing:0.540000px;}
.wscc{word-spacing:0.588000px;}
.ws27{word-spacing:0.594000px;}
.ws9c{word-spacing:0.648000px;}
.ws58{word-spacing:0.702000px;}
.wsd{word-spacing:0.756000px;}
.ws1b{word-spacing:0.810000px;}
.wsf5{word-spacing:0.840000px;}
.ws33{word-spacing:0.864000px;}
.wsd4{word-spacing:0.882000px;}
.ws32{word-spacing:0.918000px;}
.wsfd{word-spacing:0.924000px;}
.ws9b{word-spacing:0.972000px;}
.ws54{word-spacing:1.026000px;}
.ws79{word-spacing:1.080000px;}
.wsc9{word-spacing:1.092000px;}
.ws92{word-spacing:1.134000px;}
.ws4f{word-spacing:1.188000px;}
.wsc8{word-spacing:1.218000px;}
.ws61{word-spacing:1.242000px;}
.ws2f{word-spacing:1.296000px;}
.ws101{word-spacing:1.302000px;}
.wsb9{word-spacing:1.344000px;}
.ws6a{word-spacing:1.350000px;}
.ws6c{word-spacing:1.404000px;}
.ws88{word-spacing:1.458000px;}
.ws91{word-spacing:1.512000px;}
.ws5a{word-spacing:1.566000px;}
.wsdc{word-spacing:1.596000px;}
.ws5b{word-spacing:1.620000px;}
.ws87{word-spacing:1.674000px;}
.wscb{word-spacing:1.680000px;}
.ws6e{word-spacing:1.728000px;}
.wsbf{word-spacing:1.764000px;}
.ws99{word-spacing:1.782000px;}
.wscd{word-spacing:1.805996px;}
.ws5c{word-spacing:1.836000px;}
.ws105{word-spacing:1.848000px;}
.ws3f{word-spacing:1.890000px;}
.ws5f{word-spacing:1.944000px;}
.ws1a{word-spacing:1.998000px;}
.wsc4{word-spacing:2.016000px;}
.ws4a{word-spacing:2.052000px;}
.wsfa{word-spacing:2.058000px;}
.ws64{word-spacing:2.106000px;}
.ws7b{word-spacing:2.160000px;}
.wse6{word-spacing:2.184000px;}
.ws46{word-spacing:2.214000px;}
.ws29{word-spacing:2.268000px;}
.ws41{word-spacing:2.376000px;}
.wsf2{word-spacing:2.394000px;}
.ws38{word-spacing:2.430000px;}
.wseb{word-spacing:2.436000px;}
.ws2b{word-spacing:2.484000px;}
.ws14{word-spacing:2.538000px;}
.wsd6{word-spacing:2.562000px;}
.ws63{word-spacing:2.592000px;}
.wsec{word-spacing:2.604000px;}
.ws84{word-spacing:2.646000px;}
.wsca{word-spacing:2.688000px;}
.ws62{word-spacing:2.700000px;}
.ws10{word-spacing:2.808000px;}
.ws69{word-spacing:2.862000px;}
.ws2d{word-spacing:2.916000px;}
.ws7a{word-spacing:2.970000px;}
.wsa{word-spacing:3.024000px;}
.ws8f{word-spacing:3.078000px;}
.ws4e{word-spacing:3.132000px;}
.wsc0{word-spacing:3.234000px;}
.ws15{word-spacing:3.240000px;}
.wsf6{word-spacing:3.276000px;}
.ws80{word-spacing:3.312000px;}
.wsad{word-spacing:3.348000px;}
.wsd9{word-spacing:3.360000px;}
.ws7c{word-spacing:3.402000px;}
.wsf8{word-spacing:3.444000px;}
.ws23{word-spacing:3.456000px;}
.wsf3{word-spacing:3.486000px;}
.wsfc{word-spacing:3.570000px;}
.wsc7{word-spacing:3.611996px;}
.ws93{word-spacing:3.618000px;}
.wsfb{word-spacing:3.653996px;}
.ws57{word-spacing:3.780000px;}
.ws3b{word-spacing:3.833995px;}
.ws1f{word-spacing:3.888000px;}
.wsc3{word-spacing:3.990000px;}
.ws49{word-spacing:3.996000px;}
.wsaa{word-spacing:4.104000px;}
.wsd7{word-spacing:4.116000px;}
.ws6{word-spacing:4.212000px;}
.ws24{word-spacing:4.266000px;}
.wsa6{word-spacing:4.320000px;}
.wsa2{word-spacing:4.482000px;}
.wsd2{word-spacing:4.578000px;}
.wsb2{word-spacing:4.590000px;}
.ws3e{word-spacing:4.643995px;}
.ws8a{word-spacing:4.697995px;}
.ws103{word-spacing:4.704000px;}
.wsda{word-spacing:4.746000px;}
.ws47{word-spacing:4.752000px;}
.ws96{word-spacing:4.860000px;}
.wsc6{word-spacing:4.872000px;}
.ws8b{word-spacing:4.914000px;}
.ws9d{word-spacing:4.968000px;}
.wsb1{word-spacing:5.076000px;}
.ws56{word-spacing:5.130000px;}
.ws1d{word-spacing:5.184000px;}
.wsbe{word-spacing:5.208000px;}
.wse2{word-spacing:5.250000px;}
.ws9a{word-spacing:5.292000px;}
.wsd8{word-spacing:5.334000px;}
.ws6f{word-spacing:5.346000px;}
.ws104{word-spacing:5.376000px;}
.wsf7{word-spacing:5.460000px;}
.ws67{word-spacing:5.508000px;}
.wsbd{word-spacing:5.544000px;}
.wsa8{word-spacing:5.670000px;}
.ws25{word-spacing:5.778000px;}
.wsc5{word-spacing:5.838000px;}
.wsc{word-spacing:5.886000px;}
.wscf{word-spacing:5.964000px;}
.ws4b{word-spacing:5.994000px;}
.wsae{word-spacing:6.156000px;}
.ws1e{word-spacing:6.264000px;}
.ws17{word-spacing:6.318000px;}
.ws89{word-spacing:6.426000px;}
.ws16{word-spacing:6.480000px;}
.wsb5{word-spacing:6.534000px;}
.wsa9{word-spacing:6.858000px;}
.wsa0{word-spacing:6.912000px;}
.ws2a{word-spacing:6.966000px;}
.ws107{word-spacing:7.014000px;}
.ws85{word-spacing:7.236000px;}
.ws4d{word-spacing:7.344000px;}
.ws102{word-spacing:7.560000px;}
.wsb7{word-spacing:7.776000px;}
.wsa1{word-spacing:7.884000px;}
.ws34{word-spacing:8.046000px;}
.wsba{word-spacing:8.652000px;}
.wsb6{word-spacing:8.694000px;}
.ws98{word-spacing:9.072000px;}
.wsd0{word-spacing:9.282000px;}
.wse0{word-spacing:9.366000px;}
.wsdf{word-spacing:9.492000px;}
.ws94{word-spacing:10.638000px;}
.ws7f{word-spacing:10.656000px;}
.wsa3{word-spacing:11.880000px;}
.ws52{word-spacing:11.889446px;}
.ws5{word-spacing:16.500000px;}
.ws71{word-spacing:92.304000px;}
.ws75{word-spacing:116.544000px;}
.ws70{word-spacing:123.264000px;}
.ws74{word-spacing:131.952000px;}
.ws73{word-spacing:137.232000px;}
.ws72{word-spacing:140.544000px;}
.ws77{word-spacing:203.520000px;}
.ws76{word-spacing:263.520000px;}
.ws59{word-spacing:2344.518000px;}
._6{margin-left:-11.232000px;}
._3f{margin-left:-8.817000px;}
._7{margin-left:-5.769000px;}
._5{margin-left:-4.087800px;}
._3{margin-left:-2.289600px;}
._1{margin-left:-1.096200px;}
._0{width:1.209600px;}
._4{width:2.230200px;}
._2{width:3.515400px;}
._40{width:4.539000px;}
._b{width:5.761800px;}
._c{width:7.106400px;}
._d{width:8.931600px;}
._a{width:27.552000px;}
._9{width:50.374200px;}
._8{width:51.525000px;}
._10{width:76.320000px;}
._e{width:98.355600px;}
._f{width:100.974000px;}
._25{width:134.352000px;}
._28{width:140.832000px;}
._29{width:143.952000px;}
._24{width:149.232000px;}
._18{width:152.544000px;}
._11{width:155.232000px;}
._2b{width:158.352000px;}
._1c{width:167.232000px;}
._23{width:174.288000px;}
._20{width:176.784000px;}
._19{width:179.232000px;}
._12{width:185.328000px;}
._21{width:188.592000px;}
._14{width:191.712000px;}
._1f{width:194.592000px;}
._26{width:200.784000px;}
._13{width:203.808000px;}
._2c{width:212.688000px;}
._1a{width:215.232000px;}
._22{width:220.560000px;}
._15{width:224.832000px;}
._1b{width:236.688000px;}
._1d{width:248.688000px;}
._27{width:256.704000px;}
._1e{width:260.208000px;}
._2a{width:261.312000px;}
._16{width:272.688000px;}
._17{width:275.520000px;}
._30{width:286.752000px;}
._35{width:294.480000px;}
._34{width:297.168000px;}
._3d{width:302.496000px;}
._32{width:342.768000px;}
._2d{width:376.320000px;}
._36{width:402.480000px;}
._3e{width:405.120000px;}
._3a{width:417.408000px;}
._37{width:421.440000px;}
._2e{width:877.680000px;}
._3b{width:900.816000px;}
._38{width:903.504000px;}
._39{width:910.752000px;}
._2f{width:918.288000px;}
._3c{width:1021.152000px;}
._31{width:1742.688000px;}
._33{width:2005.968000px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fsa{font-size:29.940000px;}
.fs6{font-size:31.200000px;}
.fsc{font-size:34.969200px;}
.fs3{font-size:35.100000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:0.611862px;}
.y217{bottom:0.973350px;}
.y214{bottom:2.467500px;}
.y216{bottom:3.967518px;}
.yca{bottom:4.840650px;}
.ycc{bottom:4.846692px;}
.yce{bottom:6.340692px;}
.y218{bottom:7.846500px;}
.ycf{bottom:10.219650px;}
.ycd{bottom:15.592650px;}
.y5b{bottom:30.698550px;}
.y21{bottom:30.745050px;}
.y1ea{bottom:73.522650px;}
.y294{bottom:76.435650px;}
.yf9{bottom:76.497150px;}
.y181{bottom:76.524150px;}
.y10c{bottom:76.527150px;}
.y267{bottom:76.536150px;}
.y1e1{bottom:76.555650px;}
.y230{bottom:76.570650px;}
.yc0{bottom:76.679550px;}
.y90{bottom:76.938150px;}
.y20e{bottom:77.071050px;}
.y196{bottom:83.089650px;}
.y1e9{bottom:88.522650px;}
.y140{bottom:89.652150px;}
.y293{bottom:89.938650px;}
.y180{bottom:91.524150px;}
.yf8{bottom:94.492650px;}
.y10b{bottom:94.522650px;}
.y266{bottom:94.531650px;}
.y1e0{bottom:94.551150px;}
.y22f{bottom:94.566150px;}
.ybf{bottom:94.675050px;}
.y8f{bottom:94.933650px;}
.y20d{bottom:95.066550px;}
.y2f7{bottom:95.437650px;}
.y292{bottom:103.441650px;}
.y1e8{bottom:103.522650px;}
.y195{bottom:104.089650px;}
.y2f6{bottom:108.940650px;}
.y2a{bottom:110.099700px;}
.y6{bottom:110.141700px;}
.y13f{bottom:110.652150px;}
.yf7{bottom:112.488150px;}
.y265{bottom:112.527150px;}
.y1df{bottom:112.546650px;}
.ybe{bottom:112.670550px;}
.y8e{bottom:112.929150px;}
.y20c{bottom:113.062050px;}
.y291{bottom:116.944650px;}
.y1e7{bottom:118.522650px;}
.y22e{bottom:118.569150px;}
.y194{bottom:119.089650px;}
.y10a{bottom:121.522650px;}
.y2f5{bottom:122.443650px;}
.y29{bottom:123.602700px;}
.y2b0{bottom:126.226650px;}
.y5{bottom:128.137200px;}
.y290{bottom:130.447650px;}
.yf6{bottom:130.483650px;}
.y264{bottom:130.522650px;}
.y1de{bottom:130.542150px;}
.ybd{bottom:130.666050px;}
.y8d{bottom:130.924650px;}
.y20b{bottom:131.057550px;}
.y13e{bottom:131.652150px;}
.y1e6{bottom:133.522650px;}
.y193{bottom:134.089650px;}
.y2f4{bottom:135.946650px;}
.y22d{bottom:136.564650px;}
.y28{bottom:137.105700px;}
.y2af{bottom:139.729650px;}
.y28f{bottom:143.950650px;}
.y4{bottom:146.132700px;}
.y1bf{bottom:147.022650px;}
.yf5{bottom:148.479150px;}
.y1e5{bottom:148.522650px;}
.y1dd{bottom:148.537650px;}
.ybc{bottom:148.661550px;}
.y8c{bottom:148.920150px;}
.y2f3{bottom:149.449650px;}
.y27{bottom:150.608700px;}
.y13d{bottom:152.652150px;}
.y2ae{bottom:153.232650px;}
.y168{bottom:153.588150px;}
.y22c{bottom:154.560150px;}
.y192{bottom:155.089650px;}
.y28e{bottom:157.453650px;}
.y263{bottom:157.522650px;}
.y20a{bottom:158.057550px;}
.y2f2{bottom:162.952650px;}
.y26{bottom:164.111700px;}
.y3{bottom:164.128200px;}
.yf4{bottom:166.474650px;}
.y1dc{bottom:166.533150px;}
.y109{bottom:166.576050px;}
.y2ad{bottom:166.735650px;}
.y8b{bottom:166.915650px;}
.y28d{bottom:170.956650px;}
.y22b{bottom:172.555650px;}
.y13c{bottom:173.652150px;}
.y167{bottom:174.588150px;}
.y209{bottom:176.053050px;}
.y191{bottom:176.089650px;}
.y2f1{bottom:176.455650px;}
.ybb{bottom:176.512050px;}
.y25{bottom:177.614700px;}
.y2ac{bottom:180.238650px;}
.y2{bottom:182.123700px;}
.y28c{bottom:184.459650px;}
.yf3{bottom:184.470150px;}
.y1db{bottom:184.528650px;}
.y108{bottom:184.571550px;}
.y8a{bottom:184.911150px;}
.y2f0{bottom:189.958650px;}
.y22a{bottom:190.551150px;}
.y24{bottom:191.117700px;}
.y2ab{bottom:193.741650px;}
.y208{bottom:194.048550px;}
.yba{bottom:194.507550px;}
.y13b{bottom:194.652150px;}
.y166{bottom:195.588150px;}
.y190{bottom:197.089650px;}
.y28b{bottom:197.962650px;}
.y1be{bottom:198.193050px;}
.yf2{bottom:202.465650px;}
.y107{bottom:202.567050px;}
.y89{bottom:202.906650px;}
.y262{bottom:203.206200px;}
.y2ef{bottom:203.461650px;}
.y23{bottom:204.620700px;}
.y2aa{bottom:207.244650px;}
.y1da{bottom:208.531650px;}
.y229{bottom:208.546650px;}
.y1{bottom:209.123700px;}
.y28a{bottom:211.465650px;}
.y207{bottom:212.044050px;}
.yb9{bottom:212.503050px;}
.y13a{bottom:215.652150px;}
.y1bd{bottom:216.188550px;}
.y165{bottom:216.588150px;}
.y2ee{bottom:216.964650px;}
.y18f{bottom:218.089650px;}
.y22{bottom:218.123700px;}
.yf1{bottom:220.461150px;}
.y106{bottom:220.562550px;}
.y2a9{bottom:220.747650px;}
.y88{bottom:220.902150px;}
.y261{bottom:221.201700px;}
.y289{bottom:224.968650px;}
.y1d9{bottom:226.527150px;}
.y228{bottom:226.542150px;}
.y2ed{bottom:230.467650px;}
.yb8{bottom:230.498550px;}
.y18e{bottom:233.089650px;}
.y1bc{bottom:234.184050px;}
.y2a8{bottom:234.250650px;}
.y139{bottom:236.652150px;}
.y164{bottom:237.588150px;}
.yf0{bottom:238.456650px;}
.y288{bottom:238.471650px;}
.y105{bottom:238.558050px;}
.y86{bottom:238.911150px;}
.y206{bottom:239.044050px;}
.y260{bottom:239.197200px;}
.y87{bottom:243.393150px;}
.y2ec{bottom:243.970650px;}
.y227{bottom:244.537650px;}
.y1d7{bottom:244.619550px;}
.y2a7{bottom:247.753650px;}
.y18d{bottom:248.089650px;}
.yb7{bottom:248.494050px;}
.y1d8{bottom:249.018150px;}
.y287{bottom:251.974650px;}
.y104{bottom:256.553550px;}
.y20{bottom:256.789050px;}
.y85{bottom:256.906650px;}
.y205{bottom:257.039550px;}
.y25f{bottom:257.192700px;}
.y2eb{bottom:257.473650px;}
.y138{bottom:257.652150px;}
.y163{bottom:258.588150px;}
.y2a6{bottom:261.256650px;}
.y1bb{bottom:261.859050px;}
.yef{bottom:262.459650px;}
.y226{bottom:262.533150px;}
.y1d6{bottom:262.615050px;}
.y286{bottom:265.477650px;}
.yb6{bottom:266.489550px;}
.y18c{bottom:269.089650px;}
.y2ea{bottom:270.976650px;}
.y103{bottom:274.549050px;}
.y2a5{bottom:274.759650px;}
.y1f{bottom:274.784550px;}
.y84{bottom:274.902150px;}
.y204{bottom:275.035050px;}
.y25e{bottom:275.188200px;}
.y137{bottom:278.652150px;}
.y285{bottom:278.980650px;}
.y162{bottom:279.588150px;}
.y1ba{bottom:279.854550px;}
.yee{bottom:280.455150px;}
.y225{bottom:280.528650px;}
.y1d5{bottom:280.610550px;}
.y2e9{bottom:284.479650px;}
.yb5{bottom:284.485050px;}
.y2a4{bottom:288.262650px;}
.y18b{bottom:290.089650px;}
.y284{bottom:292.483650px;}
.y102{bottom:292.544550px;}
.y1e{bottom:292.780050px;}
.y83{bottom:292.897650px;}
.y203{bottom:293.030550px;}
.y25d{bottom:293.183700px;}
.y1b9{bottom:297.850050px;}
.y2e8{bottom:297.982650px;}
.yed{bottom:298.450650px;}
.y224{bottom:298.524150px;}
.y1d4{bottom:298.606050px;}
.y136{bottom:299.652150px;}
.y161{bottom:300.588150px;}
.y2a3{bottom:301.765650px;}
.yb4{bottom:302.480550px;}
.y18a{bottom:305.089650px;}
.y283{bottom:305.986650px;}
.y1d{bottom:310.775550px;}
.y25c{bottom:311.179200px;}
.y2e7{bottom:311.485650px;}
.y2a2{bottom:315.268650px;}
.y1b8{bottom:315.845550px;}
.yec{bottom:316.446150px;}
.y101{bottom:316.547550px;}
.y1d3{bottom:316.601550px;}
.y282{bottom:319.489650px;}
.y82{bottom:319.897650px;}
.y202{bottom:320.030550px;}
.yb3{bottom:320.476050px;}
.y135{bottom:320.652150px;}
.y160{bottom:321.588150px;}
.y223{bottom:322.527150px;}
.y2e6{bottom:324.988650px;}
.y189{bottom:326.089650px;}
.y1c{bottom:328.771050px;}
.y2a1{bottom:328.771650px;}
.y25b{bottom:329.174700px;}
.y281{bottom:332.992650px;}
.y1b7{bottom:333.841050px;}
.yeb{bottom:334.441650px;}
.y100{bottom:334.543050px;}
.y1d2{bottom:334.597050px;}
.y201{bottom:338.026050px;}
.yb2{bottom:338.471550px;}
.y2e5{bottom:338.491650px;}
.y221{bottom:340.527150px;}
.y134{bottom:341.652150px;}
.y2a0{bottom:342.274650px;}
.y15f{bottom:342.588150px;}
.y222{bottom:345.018150px;}
.y81{bottom:345.397650px;}
.y280{bottom:346.495650px;}
.y1b{bottom:346.766550px;}
.y25a{bottom:347.170200px;}
.y188{bottom:349.897650px;}
.y1b6{bottom:351.836550px;}
.y2e4{bottom:351.994650px;}
.yff{bottom:352.538550px;}
.y1d1{bottom:352.592550px;}
.y29f{bottom:355.777650px;}
.y200{bottom:356.021550px;}
.yb1{bottom:356.467050px;}
.yea{bottom:358.444650px;}
.y21f{bottom:358.527150px;}
.y27f{bottom:359.998650px;}
.y133{bottom:362.652150px;}
.y220{bottom:363.018150px;}
.y15e{bottom:363.588150px;}
.y1a{bottom:364.762050px;}
.y259{bottom:365.165700px;}
.y2e3{bottom:365.497650px;}
.y29e{bottom:369.280650px;}
.y1b5{bottom:369.832050px;}
.yfe{bottom:370.534050px;}
.y1d0{bottom:370.588050px;}
.y187{bottom:372.960150px;}
.y27e{bottom:373.501650px;}
.y1ff{bottom:374.017050px;}
.yb0{bottom:374.462550px;}
.ye9{bottom:376.440150px;}
.y21d{bottom:376.527150px;}
.y2e2{bottom:379.000650px;}
.y21e{bottom:381.018150px;}
.y19{bottom:382.757550px;}
.y29d{bottom:382.783650px;}
.y258{bottom:383.161200px;}
.y132{bottom:383.652150px;}
.y15d{bottom:384.588150px;}
.y27d{bottom:387.004650px;}
.y1b4{bottom:387.827550px;}
.y186{bottom:387.960150px;}
.yfd{bottom:388.529550px;}
.y1cf{bottom:388.583550px;}
.y80{bottom:390.429150px;}
.y1fe{bottom:392.012550px;}
.yaf{bottom:392.458050px;}
.y2e1{bottom:392.503650px;}
.ye8{bottom:394.435650px;}
.y21b{bottom:394.527150px;}
.y29c{bottom:396.286650px;}
.y55{bottom:397.477200px;}
.y21c{bottom:399.018150px;}
.y27c{bottom:400.507650px;}
.y18{bottom:400.753050px;}
.y257{bottom:401.156700px;}
.y131{bottom:404.652150px;}
.y15c{bottom:405.588150px;}
.y1b3{bottom:405.823050px;}
.y2e0{bottom:406.006650px;}
.yfc{bottom:406.525050px;}
.y1ce{bottom:406.579050px;}
.y7f{bottom:408.424650px;}
.y29b{bottom:409.789650px;}
.yae{bottom:410.453550px;}
.y54{bottom:410.980200px;}
.ye7{bottom:412.431150px;}
.y21a{bottom:412.527150px;}
.y27b{bottom:414.010650px;}
.y17{bottom:418.748550px;}
.y1fd{bottom:419.012550px;}
.y256{bottom:419.152200px;}
.y2df{bottom:419.509650px;}
.y29a{bottom:423.292650px;}
.y1b2{bottom:423.818550px;}
.yfb{bottom:424.520550px;}
.y1cd{bottom:424.574550px;}
.y130{bottom:425.652150px;}
.y7e{bottom:426.420150px;}
.y15b{bottom:426.588150px;}
.y27a{bottom:427.513650px;}
.yad{bottom:428.449050px;}
.ye6{bottom:430.426650px;}
.y2de{bottom:433.012650px;}
.y299{bottom:436.795650px;}
.y1fc{bottom:437.008050px;}
.y254{bottom:437.226600px;}
.y215{bottom:440.240982px;}
.y279{bottom:441.016650px;}
.y255{bottom:441.643200px;}
.y53{bottom:441.734700px;}
.y213{bottom:441.741000px;}
.yfa{bottom:442.516050px;}
.y1cc{bottom:442.570050px;}
.y219{bottom:444.144150px;}
.y7d{bottom:444.415650px;}
.yac{bottom:446.444550px;}
.y2dd{bottom:446.515650px;}
.y12f{bottom:446.652150px;}
.y15a{bottom:447.588150px;}
.ye5{bottom:448.422150px;}
.y298{bottom:450.298650px;}
.y16{bottom:451.462200px;}
.y1b1{bottom:451.493550px;}
.y185{bottom:451.762650px;}
.y278{bottom:454.519650px;}
.y1fb{bottom:455.003550px;}
.y253{bottom:455.222100px;}
.y52{bottom:455.237700px;}
.y2dc{bottom:460.018650px;}
.y1cb{bottom:460.565550px;}
.y7c{bottom:462.411150px;}
.y297{bottom:463.801650px;}
.yab{bottom:464.440050px;}
.ye4{bottom:466.417650px;}
.y184{bottom:466.762650px;}
.y12e{bottom:467.652150px;}
.y277{bottom:468.022650px;}
.y159{bottom:468.588150px;}
.y51{bottom:468.740700px;}
.y15{bottom:469.457700px;}
.y1b0{bottom:469.489050px;}
.y1fa{bottom:472.999050px;}
.y252{bottom:473.217600px;}
.y17c{bottom:473.431050px;}
.y2db{bottom:473.521650px;}
.y212{bottom:473.525550px;}
.y296{bottom:477.304650px;}
.y183{bottom:481.762650px;}
.y50{bottom:482.243700px;}
.ye3{bottom:484.413150px;}
.y1ca{bottom:484.568550px;}
.y2da{bottom:487.024650px;}
.y14{bottom:487.453200px;}
.y1af{bottom:487.484550px;}
.y12d{bottom:488.652150px;}
.y113{bottom:489.202650px;}
.y7b{bottom:489.411150px;}
.y158{bottom:489.588150px;}
.y276{bottom:490.522650px;}
.y295{bottom:490.807650px;}
.y1f9{bottom:490.994550px;}
.y17b{bottom:491.426550px;}
.y211{bottom:491.521050px;}
.yaa{bottom:492.290550px;}
.y4f{bottom:495.746700px;}
.y182{bottom:496.762650px;}
.y251{bottom:500.217600px;}
.y2d9{bottom:500.527650px;}
.ye2{bottom:502.408650px;}
.y1c9{bottom:502.564050px;}
.y112{bottom:504.202650px;}
.y1ae{bottom:505.480050px;}
.y12{bottom:505.480200px;}
.y7a{bottom:507.406650px;}
.y1f8{bottom:508.990050px;}
.y4e{bottom:509.249700px;}
.y17a{bottom:509.422050px;}
.y210{bottom:509.516550px;}
.y12c{bottom:509.652150px;}
.y13{bottom:509.944200px;}
.ya9{bottom:510.286050px;}
.y157{bottom:510.588150px;}
.y2d8{bottom:514.030650px;}
.y111{bottom:519.202650px;}
.ye1{bottom:520.404150px;}
.y1c8{bottom:520.559550px;}
.y4d{bottom:522.752700px;}
.y1ad{bottom:523.475550px;}
.y11{bottom:523.475700px;}
.y79{bottom:525.402150px;}
.y1f7{bottom:526.985550px;}
.y179{bottom:527.417550px;}
.y20f{bottom:527.512050px;}
.y2d7{bottom:527.533650px;}
.ya8{bottom:528.281550px;}
.y12b{bottom:530.652150px;}
.y156{bottom:531.588150px;}
.y110{bottom:534.202650px;}
.ye0{bottom:538.399650px;}
.y1c7{bottom:538.555050px;}
.y4c{bottom:539.248200px;}
.y275{bottom:539.257650px;}
.y2d6{bottom:541.036650px;}
.y1ac{bottom:541.471050px;}
.y10{bottom:541.471200px;}
.y78{bottom:543.496050px;}
.y250{bottom:544.349100px;}
.y1f6{bottom:544.981050px;}
.ya7{bottom:546.277050px;}
.y10f{bottom:549.202650px;}
.y12a{bottom:551.652150px;}
.y155{bottom:552.588150px;}
.y178{bottom:554.417550px;}
.y2d5{bottom:554.539650px;}
.ydf{bottom:556.395150px;}
.y1c6{bottom:556.550550px;}
.y274{bottom:557.253150px;}
.y1ab{bottom:559.466550px;}
.yf{bottom:559.466700px;}
.y24f{bottom:562.344600px;}
.y10e{bottom:564.202650px;}
.ya6{bottom:564.272550px;}
.y2d4{bottom:568.042650px;}
.y237{bottom:568.402650px;}
.y77{bottom:570.496050px;}
.y1f5{bottom:571.981050px;}
.y177{bottom:572.413050px;}
.y129{bottom:572.652150px;}
.y154{bottom:573.588150px;}
.y1c5{bottom:574.546050px;}
.y273{bottom:575.248650px;}
.y4b{bottom:576.743700px;}
.ye{bottom:577.462200px;}
.y10d{bottom:579.202650px;}
.y24e{bottom:580.340100px;}
.yde{bottom:580.398150px;}
.y2d3{bottom:581.545650px;}
.ya5{bottom:582.268050px;}
.y236{bottom:583.402650px;}
.y1aa{bottom:587.141550px;}
.y76{bottom:588.491550px;}
.y1f4{bottom:589.976550px;}
.y4a{bottom:590.246700px;}
.y176{bottom:590.408550px;}
.y272{bottom:593.244150px;}
.y128{bottom:593.652150px;}
.y153{bottom:594.588150px;}
.y2d2{bottom:595.048650px;}
.yd{bottom:595.457700px;}
.y24d{bottom:598.335600px;}
.ydd{bottom:598.393650px;}
.y235{bottom:598.402650px;}
.ya4{bottom:600.263550px;}
.y1c4{bottom:601.546050px;}
.y1a9{bottom:605.137050px;}
.y75{bottom:606.487050px;}
.y49{bottom:606.742200px;}
.y1f3{bottom:607.972050px;}
.y175{bottom:608.404050px;}
.y2d1{bottom:608.551650px;}
.y271{bottom:611.239650px;}
.y234{bottom:613.402650px;}
.yc{bottom:613.453200px;}
.y127{bottom:614.652150px;}
.y152{bottom:615.588150px;}
.y24c{bottom:616.331100px;}
.ydc{bottom:616.389150px;}
.ya3{bottom:618.259050px;}
.y1c3{bottom:619.541550px;}
.y2d0{bottom:622.054650px;}
.y1a8{bottom:623.132550px;}
.y74{bottom:624.482550px;}
.y174{bottom:626.399550px;}
.y233{bottom:628.402650px;}
.y270{bottom:629.235150px;}
.yb{bottom:631.466700px;}
.y24b{bottom:634.326600px;}
.ydb{bottom:634.384650px;}
.y1f2{bottom:634.972050px;}
.y2cf{bottom:635.557650px;}
.y126{bottom:635.652150px;}
.ya2{bottom:636.254550px;}
.y151{bottom:636.588150px;}
.y1c2{bottom:637.537050px;}
.y1a7{bottom:641.128050px;}
.y73{bottom:642.478050px;}
.y232{bottom:643.402650px;}
.y48{bottom:644.237700px;}
.y173{bottom:644.395050px;}
.y2ce{bottom:649.060650px;}
.ya{bottom:649.462200px;}
.y24a{bottom:652.322100px;}
.yda{bottom:652.380150px;}
.y1f1{bottom:652.967550px;}
.y26f{bottom:654.435150px;}
.y1c1{bottom:655.532550px;}
.y125{bottom:656.652150px;}
.y150{bottom:657.588150px;}
.y47{bottom:657.740700px;}
.y231{bottom:658.402650px;}
.y1a6{bottom:659.123550px;}
.y72{bottom:660.473550px;}
.y2cd{bottom:662.563650px;}
.ya1{bottom:664.105050px;}
.y9{bottom:667.457700px;}
.y249{bottom:670.317600px;}
.yd9{bottom:670.375650px;}
.y1f0{bottom:670.963050px;}
.y172{bottom:671.395050px;}
.y1c0{bottom:673.528050px;}
.y46{bottom:674.236200px;}
.y2cc{bottom:676.066650px;}
.y1a5{bottom:677.119050px;}
.y124{bottom:677.652150px;}
.y71{bottom:678.469050px;}
.y14f{bottom:678.588150px;}
.ya0{bottom:682.100550px;}
.y8{bottom:685.453200px;}
.y248{bottom:688.313100px;}
.y1ef{bottom:688.958550px;}
.y171{bottom:689.390550px;}
.y2cb{bottom:689.569650px;}
.y1a4{bottom:695.114550px;}
.yd8{bottom:697.375650px;}
.y123{bottom:698.652150px;}
.y14e{bottom:699.588150px;}
.y9f{bottom:700.096050px;}
.y2ca{bottom:703.072650px;}
.y7{bottom:703.448700px;}
.y26e{bottom:705.455550px;}
.y70{bottom:705.469050px;}
.y247{bottom:706.308600px;}
.y1ee{bottom:706.954050px;}
.y170{bottom:707.386050px;}
.y1e4{bottom:710.302650px;}
.y45{bottom:713.989200px;}
.y2c9{bottom:716.575650px;}
.y9e{bottom:718.091550px;}
.y122{bottom:719.652150px;}
.y14d{bottom:720.588150px;}
.y1a3{bottom:722.789550px;}
.y26d{bottom:723.451050px;}
.y6f{bottom:723.464550px;}
.y246{bottom:724.304100px;}
.y1ed{bottom:724.949550px;}
.y1e3{bottom:725.302650px;}
.y16f{bottom:725.381550px;}
.y44{bottom:727.492200px;}
.y2c8{bottom:730.078650px;}
.yd7{bottom:734.674650px;}
.y9d{bottom:736.087050px;}
.y1e2{bottom:740.302650px;}
.y121{bottom:740.652150px;}
.y1a2{bottom:740.785050px;}
.y43{bottom:740.995200px;}
.y26c{bottom:741.446550px;}
.y6e{bottom:741.460050px;}
.y14c{bottom:741.588150px;}
.y245{bottom:742.299600px;}
.y16e{bottom:743.377050px;}
.y2c7{bottom:743.581650px;}
.y38{bottom:747.998550px;}
.y1ec{bottom:751.949550px;}
.yd6{bottom:752.670150px;}
.y9c{bottom:754.082550px;}
.y42{bottom:754.498200px;}
.y2c6{bottom:757.084650px;}
.y1a1{bottom:758.780550px;}
.y6d{bottom:759.455550px;}
.y244{bottom:760.295100px;}
.y16d{bottom:761.372550px;}
.y120{bottom:761.652150px;}
.y14b{bottom:762.588150px;}
.y37{bottom:764.498700px;}
.y41{bottom:768.001200px;}
.y26b{bottom:768.446550px;}
.y2c5{bottom:770.587650px;}
.yd5{bottom:770.665650px;}
.y9b{bottom:772.078050px;}
.y1a0{bottom:776.776050px;}
.y6c{bottom:777.451050px;}
.y243{bottom:778.290600px;}
.y16c{bottom:779.368050px;}
.y36{bottom:780.998700px;}
.y40{bottom:781.504200px;}
.y11f{bottom:782.652150px;}
.y14a{bottom:783.588150px;}
.y2c4{bottom:784.090650px;}
.y26a{bottom:786.442050px;}
.yd4{bottom:788.661150px;}
.y19f{bottom:794.771550px;}
.y3f{bottom:795.007200px;}
.y6b{bottom:795.446550px;}
.y242{bottom:796.286100px;}
.y35{bottom:797.498700px;}
.y2c3{bottom:797.593650px;}
.y9a{bottom:799.078050px;}
.y11e{bottom:803.652150px;}
.y269{bottom:804.437550px;}
.y149{bottom:804.588150px;}
.y16b{bottom:806.368050px;}
.yd3{bottom:806.656650px;}
.y3e{bottom:808.510200px;}
.y2c2{bottom:811.096650px;}
.y19e{bottom:812.767050px;}
.y6a{bottom:813.442050px;}
.y34{bottom:813.998700px;}
.y241{bottom:814.281600px;}
.y3d{bottom:822.013200px;}
.y268{bottom:822.433050px;}
.y16a{bottom:824.363550px;}
.y2c1{bottom:824.599650px;}
.yd2{bottom:824.652150px;}
.y148{bottom:825.588150px;}
.y33{bottom:830.498700px;}
.y19d{bottom:830.762550px;}
.y69{bottom:831.437550px;}
.y3c{bottom:835.516200px;}
.y2c0{bottom:838.102650px;}
.y240{bottom:841.281600px;}
.y169{bottom:842.359050px;}
.y11d{bottom:845.652150px;}
.y147{bottom:846.588150px;}
.y99{bottom:848.582550px;}
.y19c{bottom:848.758050px;}
.y3b{bottom:849.019200px;}
.ycb{bottom:849.368958px;}
.y68{bottom:849.433050px;}
.yc9{bottom:850.869000px;}
.y32{bottom:850.994700px;}
.y2bf{bottom:851.605650px;}
.yd1{bottom:854.649150px;}
.y23f{bottom:859.277100px;}
.y3a{bottom:862.522200px;}
.y2be{bottom:865.108650px;}
.y98{bottom:866.578050px;}
.y11c{bottom:866.652150px;}
.y19b{bottom:866.753550px;}
.y1eb{bottom:867.428550px;}
.y146{bottom:867.588150px;}
.y31{bottom:874.898550px;}
.y67{bottom:876.433050px;}
.y23d{bottom:877.283550px;}
.y2bd{bottom:878.611650px;}
.y39{bottom:879.017700px;}
.y23e{bottom:881.768250px;}
.y97{bottom:884.573550px;}
.y19a{bottom:884.749050px;}
.yc8{bottom:885.424050px;}
.y11b{bottom:887.652150px;}
.y145{bottom:888.588150px;}
.y30{bottom:891.098550px;}
.y2bc{bottom:892.114650px;}
.y66{bottom:894.428550px;}
.y23c{bottom:895.279050px;}
.y17f{bottom:899.088150px;}
.y96{bottom:902.569050px;}
.y199{bottom:902.744550px;}
.yc7{bottom:903.419550px;}
.y2bb{bottom:905.617650px;}
.y2f{bottom:907.298700px;}
.y11a{bottom:908.652150px;}
.y59{bottom:909.389700px;}
.y144{bottom:909.588150px;}
.y65{bottom:912.424050px;}
.y23b{bottom:913.274550px;}
.y17e{bottom:914.088150px;}
.y2ba{bottom:919.120650px;}
.y95{bottom:920.564550px;}
.y198{bottom:920.740050px;}
.yc6{bottom:921.415050px;}
.y58{bottom:922.889700px;}
.y2e{bottom:923.498700px;}
.y17d{bottom:929.088150px;}
.y119{bottom:929.652150px;}
.y64{bottom:930.419550px;}
.y143{bottom:930.588150px;}
.y23a{bottom:931.270050px;}
.y2b9{bottom:932.623650px;}
.y57{bottom:936.389700px;}
.y94{bottom:938.560050px;}
.y197{bottom:938.735550px;}
.yc5{bottom:939.410550px;}
.y2d{bottom:939.698700px;}
.y2b8{bottom:946.126650px;}
.y63{bottom:948.415050px;}
.y239{bottom:949.265550px;}
.y118{bottom:950.652150px;}
.y142{bottom:951.588150px;}
.y93{bottom:956.555550px;}
.yc4{bottom:957.406050px;}
.y2b7{bottom:959.629650px;}
.y62{bottom:966.410550px;}
.y2c{bottom:967.898550px;}
.y117{bottom:971.652150px;}
.y141{bottom:972.588150px;}
.y2b6{bottom:973.132650px;}
.y92{bottom:974.551050px;}
.yc3{bottom:975.401550px;}
.y238{bottom:976.265550px;}
.y56{bottom:976.592700px;}
.y61{bottom:984.406050px;}
.y2b5{bottom:986.635650px;}
.yc2{bottom:993.397050px;}
.y2b{bottom:994.898550px;}
.y116{bottom:995.460150px;}
.y5a{bottom:996.098550px;}
.y2b4{bottom:1000.138650px;}
.y60{bottom:1002.401550px;}
.yc1{bottom:1011.392550px;}
.y2b3{bottom:1013.641650px;}
.y115{bottom:1018.522650px;}
.y5f{bottom:1020.397050px;}
.y2b2{bottom:1027.144650px;}
.y114{bottom:1033.522650px;}
.y5e{bottom:1038.392550px;}
.y2b1{bottom:1040.647650px;}
.y5c{bottom:1096.623600px;}
.y5d{bottom:1097.773650px;}
.y91{bottom:1158.405000px;}
.h19{height:3.550694px;}
.h1f{height:13.743000px;}
.h15{height:16.497000px;}
.h1b{height:24.828132px;}
.h20{height:25.743027px;}
.h17{height:28.497070px;}
.hb{height:28.953600px;}
.h14{height:29.384473px;}
.hf{height:29.946000px;}
.h5{height:32.572800px;}
.h1e{height:32.928000px;}
.h1d{height:34.224000px;}
.h1a{height:35.883533px;}
.h16{height:38.196864px;}
.h10{height:38.502000px;}
.h6{height:38.976000px;}
.h9{height:43.007700px;}
.h8{height:43.008300px;}
.ha{height:43.008900px;}
.h21{height:43.796664px;}
.h18{height:44.172864px;}
.he{height:44.544000px;}
.hd{height:44.937000px;}
.hc{height:44.937600px;}
.h2{height:47.058000px;}
.h3{height:50.112000px;}
.h22{height:50.239200px;}
.h4{height:51.336000px;}
.h12{height:55.680000px;}
.h11{height:59.892000px;}
.h1c{height:63.473845px;}
.h7{height:64.170000px;}
.h1{height:1182.000000px;}
.h13{height:1182.045000px;}
.h0{height:1182.046509px;}
.w4{width:167.157000px;}
.w5{width:194.157028px;}
.w2{width:259.605000px;}
.w3{width:286.604965px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.xb{left:31.994982px;}
.x1f{left:41.129850px;}
.x3{left:45.713100px;}
.x16{left:51.709500px;}
.x4{left:60.713250px;}
.xc{left:62.493000px;}
.xe{left:78.739350px;}
.xd{left:82.287132px;}
.x21{left:84.335700px;}
.x20{left:94.473014px;}
.x10{left:99.634500px;}
.xf{left:106.099632px;}
.x11{left:119.428482px;}
.x23{left:122.618550px;}
.x22{left:126.475214px;}
.x24{left:148.705214px;}
.x12{left:155.967000px;}
.x13{left:186.316182px;}
.x6{left:220.797000px;}
.x14{left:235.056450px;}
.x1{left:250.671300px;}
.x15{left:256.457850px;}
.x2c{left:262.459350px;}
.xa{left:409.780518px;}
.x9{left:423.280500px;}
.x25{left:442.038300px;}
.x1b{left:443.212800px;}
.x1e{left:456.004486px;}
.x1d{left:469.504500px;}
.x7{left:509.032800px;}
.x2b{left:534.150750px;}
.x26{left:587.659200px;}
.x29{left:618.203100px;}
.x27{left:640.830900px;}
.x19{left:669.817500px;}
.x18{left:685.369500px;}
.x2{left:696.458700px;}
.x17{left:713.785500px;}
.x1c{left:725.154600px;}
.x2a{left:770.073600px;}
.x28{left:787.304250px;}
.x1a{left:810.925800px;}
.x5{left:817.675800px;}
.x8{left:878.940000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v1{vertical-align:-13.504000pt;}
.v7{vertical-align:-5.312533pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.312000pt;}
.v4{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v6{vertical-align:53.265023pt;}
.ls7{letter-spacing:-2.560000pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.013867pt;}
.ls0{letter-spacing:0.019733pt;}
.ls1{letter-spacing:1.216000pt;}
.lsc{letter-spacing:2.656533pt;}
.ls4{letter-spacing:10.616218pt;}
.lsf{letter-spacing:13.294182pt;}
.lsb{letter-spacing:15.941333pt;}
.ls3{letter-spacing:17.181470pt;}
.ls8{letter-spacing:221.056000pt;}
.ws1{word-spacing:-17.216000pt;}
.wsb4{word-spacing:-14.666667pt;}
.wsa7{word-spacing:-13.294182pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa5{word-spacing:-11.856000pt;}
.ws50{word-spacing:-11.712000pt;}
.ws8e{word-spacing:-11.376000pt;}
.ws68{word-spacing:-10.666667pt;}
.ws51{word-spacing:-10.664038pt;}
.ws78{word-spacing:-10.154667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws2{word-spacing:-7.800000pt;}
.ws4{word-spacing:-6.933333pt;}
.wsb8{word-spacing:-4.464000pt;}
.wsc1{word-spacing:-4.442667pt;}
.ws8c{word-spacing:-3.792000pt;}
.wsb{word-spacing:-3.658667pt;}
.ws30{word-spacing:-3.509333pt;}
.wsab{word-spacing:-3.312000pt;}
.ws55{word-spacing:-2.928000pt;}
.ws90{word-spacing:-2.447995pt;}
.ws21{word-spacing:-2.352000pt;}
.wsb0{word-spacing:-2.304000pt;}
.ws8{word-spacing:-2.256000pt;}
.wse{word-spacing:-2.208000pt;}
.wsf{word-spacing:-2.160000pt;}
.wsac{word-spacing:-2.063995pt;}
.wse5{word-spacing:-2.053333pt;}
.ws5e{word-spacing:-2.016000pt;}
.ws9{word-spacing:-1.920000pt;}
.ws81{word-spacing:-1.872000pt;}
.ws6d{word-spacing:-1.824000pt;}
.wsd5{word-spacing:-1.792000pt;}
.ws95{word-spacing:-1.776000pt;}
.ws39{word-spacing:-1.728000pt;}
.wsfe{word-spacing:-1.717333pt;}
.ws26{word-spacing:-1.680000pt;}
.ws100{word-spacing:-1.642667pt;}
.wsb3{word-spacing:-1.632000pt;}
.wsea{word-spacing:-1.605330pt;}
.ws19{word-spacing:-1.584000pt;}
.ws37{word-spacing:-1.536000pt;}
.ws36{word-spacing:-1.488000pt;}
.ws65{word-spacing:-1.440000pt;}
.ws83{word-spacing:-1.392000pt;}
.ws28{word-spacing:-1.344000pt;}
.ws45{word-spacing:-1.296000pt;}
.ws9e{word-spacing:-1.248000pt;}
.wse9{word-spacing:-1.232000pt;}
.ws6b{word-spacing:-1.200000pt;}
.wse1{word-spacing:-1.194667pt;}
.ws3a{word-spacing:-1.152000pt;}
.ws66{word-spacing:-1.104000pt;}
.wsdb{word-spacing:-1.082667pt;}
.ws8d{word-spacing:-1.056000pt;}
.wsd3{word-spacing:-1.045333pt;}
.wsf9{word-spacing:-1.008000pt;}
.wsd1{word-spacing:-0.970667pt;}
.ws40{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.912000pt;}
.wsce{word-spacing:-0.896000pt;}
.ws1c{word-spacing:-0.864000pt;}
.wsbc{word-spacing:-0.821333pt;}
.ws44{word-spacing:-0.816000pt;}
.ws82{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.720000pt;}
.ws48{word-spacing:-0.672000pt;}
.wse7{word-spacing:-0.634667pt;}
.ws22{word-spacing:-0.624000pt;}
.ws5d{word-spacing:-0.576000pt;}
.ws9f{word-spacing:-0.480000pt;}
.ws7d{word-spacing:-0.432000pt;}
.wsc2{word-spacing:-0.410667pt;}
.ws86{word-spacing:-0.384000pt;}
.wsed{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.336000pt;}
.ws97{word-spacing:-0.288000pt;}
.wsf0{word-spacing:-0.261333pt;}
.ws2e{word-spacing:-0.240000pt;}
.wsf1{word-spacing:-0.224000pt;}
.ws11{word-spacing:-0.192000pt;}
.wsde{word-spacing:-0.186667pt;}
.ws7e{word-spacing:-0.144000pt;}
.ws106{word-spacing:-0.112000pt;}
.wse8{word-spacing:-0.074667pt;}
.wsaf{word-spacing:-0.048000pt;}
.wsa4{word-spacing:-0.047821pt;}
.wsee{word-spacing:-0.037333pt;}
.ws53{word-spacing:-0.031084pt;}
.ws7{word-spacing:0.000000pt;}
.wse3{word-spacing:0.037333pt;}
.ws4c{word-spacing:0.048000pt;}
.wsf4{word-spacing:0.074667pt;}
.ws35{word-spacing:0.096000pt;}
.wsff{word-spacing:0.112000pt;}
.ws43{word-spacing:0.144000pt;}
.ws31{word-spacing:0.192000pt;}
.wsbb{word-spacing:0.224000pt;}
.ws20{word-spacing:0.240000pt;}
.ws18{word-spacing:0.288000pt;}
.wse4{word-spacing:0.298667pt;}
.ws60{word-spacing:0.336000pt;}
.ws42{word-spacing:0.384000pt;}
.wsef{word-spacing:0.410667pt;}
.ws3d{word-spacing:0.432000pt;}
.wsdd{word-spacing:0.448000pt;}
.ws13{word-spacing:0.480000pt;}
.wscc{word-spacing:0.522667pt;}
.ws27{word-spacing:0.528000pt;}
.ws9c{word-spacing:0.576000pt;}
.ws58{word-spacing:0.624000pt;}
.wsd{word-spacing:0.672000pt;}
.ws1b{word-spacing:0.720000pt;}
.wsf5{word-spacing:0.746667pt;}
.ws33{word-spacing:0.768000pt;}
.wsd4{word-spacing:0.784000pt;}
.ws32{word-spacing:0.816000pt;}
.wsfd{word-spacing:0.821333pt;}
.ws9b{word-spacing:0.864000pt;}
.ws54{word-spacing:0.912000pt;}
.ws79{word-spacing:0.960000pt;}
.wsc9{word-spacing:0.970667pt;}
.ws92{word-spacing:1.008000pt;}
.ws4f{word-spacing:1.056000pt;}
.wsc8{word-spacing:1.082667pt;}
.ws61{word-spacing:1.104000pt;}
.ws2f{word-spacing:1.152000pt;}
.ws101{word-spacing:1.157333pt;}
.wsb9{word-spacing:1.194667pt;}
.ws6a{word-spacing:1.200000pt;}
.ws6c{word-spacing:1.248000pt;}
.ws88{word-spacing:1.296000pt;}
.ws91{word-spacing:1.344000pt;}
.ws5a{word-spacing:1.392000pt;}
.wsdc{word-spacing:1.418667pt;}
.ws5b{word-spacing:1.440000pt;}
.ws87{word-spacing:1.488000pt;}
.wscb{word-spacing:1.493333pt;}
.ws6e{word-spacing:1.536000pt;}
.wsbf{word-spacing:1.568000pt;}
.ws99{word-spacing:1.584000pt;}
.wscd{word-spacing:1.605330pt;}
.ws5c{word-spacing:1.632000pt;}
.ws105{word-spacing:1.642667pt;}
.ws3f{word-spacing:1.680000pt;}
.ws5f{word-spacing:1.728000pt;}
.ws1a{word-spacing:1.776000pt;}
.wsc4{word-spacing:1.792000pt;}
.ws4a{word-spacing:1.824000pt;}
.wsfa{word-spacing:1.829333pt;}
.ws64{word-spacing:1.872000pt;}
.ws7b{word-spacing:1.920000pt;}
.wse6{word-spacing:1.941333pt;}
.ws46{word-spacing:1.968000pt;}
.ws29{word-spacing:2.016000pt;}
.ws41{word-spacing:2.112000pt;}
.wsf2{word-spacing:2.128000pt;}
.ws38{word-spacing:2.160000pt;}
.wseb{word-spacing:2.165333pt;}
.ws2b{word-spacing:2.208000pt;}
.ws14{word-spacing:2.256000pt;}
.wsd6{word-spacing:2.277333pt;}
.ws63{word-spacing:2.304000pt;}
.wsec{word-spacing:2.314667pt;}
.ws84{word-spacing:2.352000pt;}
.wsca{word-spacing:2.389333pt;}
.ws62{word-spacing:2.400000pt;}
.ws10{word-spacing:2.496000pt;}
.ws69{word-spacing:2.544000pt;}
.ws2d{word-spacing:2.592000pt;}
.ws7a{word-spacing:2.640000pt;}
.wsa{word-spacing:2.688000pt;}
.ws8f{word-spacing:2.736000pt;}
.ws4e{word-spacing:2.784000pt;}
.wsc0{word-spacing:2.874667pt;}
.ws15{word-spacing:2.880000pt;}
.wsf6{word-spacing:2.912000pt;}
.ws80{word-spacing:2.944000pt;}
.wsad{word-spacing:2.976000pt;}
.wsd9{word-spacing:2.986667pt;}
.ws7c{word-spacing:3.024000pt;}
.wsf8{word-spacing:3.061333pt;}
.ws23{word-spacing:3.072000pt;}
.wsf3{word-spacing:3.098667pt;}
.wsfc{word-spacing:3.173333pt;}
.wsc7{word-spacing:3.210663pt;}
.ws93{word-spacing:3.216000pt;}
.wsfb{word-spacing:3.247996pt;}
.ws57{word-spacing:3.360000pt;}
.ws3b{word-spacing:3.407995pt;}
.ws1f{word-spacing:3.456000pt;}
.wsc3{word-spacing:3.546667pt;}
.ws49{word-spacing:3.552000pt;}
.wsaa{word-spacing:3.648000pt;}
.wsd7{word-spacing:3.658667pt;}
.ws6{word-spacing:3.744000pt;}
.ws24{word-spacing:3.792000pt;}
.wsa6{word-spacing:3.840000pt;}
.wsa2{word-spacing:3.984000pt;}
.wsd2{word-spacing:4.069333pt;}
.wsb2{word-spacing:4.080000pt;}
.ws3e{word-spacing:4.127995pt;}
.ws8a{word-spacing:4.175995pt;}
.ws103{word-spacing:4.181333pt;}
.wsda{word-spacing:4.218667pt;}
.ws47{word-spacing:4.224000pt;}
.ws96{word-spacing:4.320000pt;}
.wsc6{word-spacing:4.330667pt;}
.ws8b{word-spacing:4.368000pt;}
.ws9d{word-spacing:4.416000pt;}
.wsb1{word-spacing:4.512000pt;}
.ws56{word-spacing:4.560000pt;}
.ws1d{word-spacing:4.608000pt;}
.wsbe{word-spacing:4.629333pt;}
.wse2{word-spacing:4.666667pt;}
.ws9a{word-spacing:4.704000pt;}
.wsd8{word-spacing:4.741333pt;}
.ws6f{word-spacing:4.752000pt;}
.ws104{word-spacing:4.778667pt;}
.wsf7{word-spacing:4.853333pt;}
.ws67{word-spacing:4.896000pt;}
.wsbd{word-spacing:4.928000pt;}
.wsa8{word-spacing:5.040000pt;}
.ws25{word-spacing:5.136000pt;}
.wsc5{word-spacing:5.189333pt;}
.wsc{word-spacing:5.232000pt;}
.wscf{word-spacing:5.301333pt;}
.ws4b{word-spacing:5.328000pt;}
.wsae{word-spacing:5.472000pt;}
.ws1e{word-spacing:5.568000pt;}
.ws17{word-spacing:5.616000pt;}
.ws89{word-spacing:5.712000pt;}
.ws16{word-spacing:5.760000pt;}
.wsb5{word-spacing:5.808000pt;}
.wsa9{word-spacing:6.096000pt;}
.wsa0{word-spacing:6.144000pt;}
.ws2a{word-spacing:6.192000pt;}
.ws107{word-spacing:6.234667pt;}
.ws85{word-spacing:6.432000pt;}
.ws4d{word-spacing:6.528000pt;}
.ws102{word-spacing:6.720000pt;}
.wsb7{word-spacing:6.912000pt;}
.wsa1{word-spacing:7.008000pt;}
.ws34{word-spacing:7.152000pt;}
.wsba{word-spacing:7.690667pt;}
.wsb6{word-spacing:7.728000pt;}
.ws98{word-spacing:8.064000pt;}
.wsd0{word-spacing:8.250667pt;}
.wse0{word-spacing:8.325333pt;}
.wsdf{word-spacing:8.437333pt;}
.ws94{word-spacing:9.456000pt;}
.ws7f{word-spacing:9.472000pt;}
.wsa3{word-spacing:10.560000pt;}
.ws52{word-spacing:10.568397pt;}
.ws5{word-spacing:14.666667pt;}
.ws71{word-spacing:82.048000pt;}
.ws75{word-spacing:103.594667pt;}
.ws70{word-spacing:109.568000pt;}
.ws74{word-spacing:117.290667pt;}
.ws73{word-spacing:121.984000pt;}
.ws72{word-spacing:124.928000pt;}
.ws77{word-spacing:180.906667pt;}
.ws76{word-spacing:234.240000pt;}
.ws59{word-spacing:2084.016000pt;}
._6{margin-left:-9.984000pt;}
._3f{margin-left:-7.837333pt;}
._7{margin-left:-5.128000pt;}
._5{margin-left:-3.633600pt;}
._3{margin-left:-2.035200pt;}
._1{margin-left:-0.974400pt;}
._0{width:1.075200pt;}
._4{width:1.982400pt;}
._2{width:3.124800pt;}
._40{width:4.034667pt;}
._b{width:5.121600pt;}
._c{width:6.316800pt;}
._d{width:7.939200pt;}
._a{width:24.490667pt;}
._9{width:44.777067pt;}
._8{width:45.800000pt;}
._10{width:67.840000pt;}
._e{width:87.427200pt;}
._f{width:89.754667pt;}
._25{width:119.424000pt;}
._28{width:125.184000pt;}
._29{width:127.957333pt;}
._24{width:132.650667pt;}
._18{width:135.594667pt;}
._11{width:137.984000pt;}
._2b{width:140.757333pt;}
._1c{width:148.650667pt;}
._23{width:154.922667pt;}
._20{width:157.141333pt;}
._19{width:159.317333pt;}
._12{width:164.736000pt;}
._21{width:167.637333pt;}
._14{width:170.410667pt;}
._1f{width:172.970667pt;}
._26{width:178.474667pt;}
._13{width:181.162667pt;}
._2c{width:189.056000pt;}
._1a{width:191.317333pt;}
._22{width:196.053333pt;}
._15{width:199.850667pt;}
._1b{width:210.389333pt;}
._1d{width:221.056000pt;}
._27{width:228.181333pt;}
._1e{width:231.296000pt;}
._2a{width:232.277333pt;}
._16{width:242.389333pt;}
._17{width:244.906667pt;}
._30{width:254.890667pt;}
._35{width:261.760000pt;}
._34{width:264.149333pt;}
._3d{width:268.885333pt;}
._32{width:304.682667pt;}
._2d{width:334.506667pt;}
._36{width:357.760000pt;}
._3e{width:360.106667pt;}
._3a{width:371.029333pt;}
._37{width:374.613333pt;}
._2e{width:780.160000pt;}
._3b{width:800.725333pt;}
._38{width:803.114667pt;}
._39{width:809.557333pt;}
._2f{width:816.256000pt;}
._3c{width:907.690667pt;}
._31{width:1549.056000pt;}
._33{width:1783.082667pt;}
.fsa{font-size:26.613333pt;}
.fs6{font-size:27.733333pt;}
.fsc{font-size:31.083733pt;}
.fs3{font-size:31.200000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:0.543878pt;}
.y217{bottom:0.865200pt;}
.y214{bottom:2.193333pt;}
.y216{bottom:3.526683pt;}
.yca{bottom:4.302800pt;}
.ycc{bottom:4.308171pt;}
.yce{bottom:5.636171pt;}
.y218{bottom:6.974667pt;}
.ycf{bottom:9.084133pt;}
.ycd{bottom:13.860133pt;}
.y5b{bottom:27.287600pt;}
.y21{bottom:27.328933pt;}
.y1ea{bottom:65.353467pt;}
.y294{bottom:67.942800pt;}
.yf9{bottom:67.997467pt;}
.y181{bottom:68.021467pt;}
.y10c{bottom:68.024133pt;}
.y267{bottom:68.032133pt;}
.y1e1{bottom:68.049467pt;}
.y230{bottom:68.062800pt;}
.yc0{bottom:68.159600pt;}
.y90{bottom:68.389467pt;}
.y20e{bottom:68.507600pt;}
.y196{bottom:73.857467pt;}
.y1e9{bottom:78.686800pt;}
.y140{bottom:79.690800pt;}
.y293{bottom:79.945467pt;}
.y180{bottom:81.354800pt;}
.yf8{bottom:83.993467pt;}
.y10b{bottom:84.020133pt;}
.y266{bottom:84.028133pt;}
.y1e0{bottom:84.045467pt;}
.y22f{bottom:84.058800pt;}
.ybf{bottom:84.155600pt;}
.y8f{bottom:84.385467pt;}
.y20d{bottom:84.503600pt;}
.y2f7{bottom:84.833467pt;}
.y292{bottom:91.948133pt;}
.y1e8{bottom:92.020133pt;}
.y195{bottom:92.524133pt;}
.y2f6{bottom:96.836133pt;}
.y2a{bottom:97.866400pt;}
.y6{bottom:97.903733pt;}
.y13f{bottom:98.357467pt;}
.yf7{bottom:99.989467pt;}
.y265{bottom:100.024133pt;}
.y1df{bottom:100.041467pt;}
.ybe{bottom:100.151600pt;}
.y8e{bottom:100.381467pt;}
.y20c{bottom:100.499600pt;}
.y291{bottom:103.950800pt;}
.y1e7{bottom:105.353467pt;}
.y22e{bottom:105.394800pt;}
.y194{bottom:105.857467pt;}
.y10a{bottom:108.020133pt;}
.y2f5{bottom:108.838800pt;}
.y29{bottom:109.869067pt;}
.y2b0{bottom:112.201467pt;}
.y5{bottom:113.899733pt;}
.y290{bottom:115.953467pt;}
.yf6{bottom:115.985467pt;}
.y264{bottom:116.020133pt;}
.y1de{bottom:116.037467pt;}
.ybd{bottom:116.147600pt;}
.y8d{bottom:116.377467pt;}
.y20b{bottom:116.495600pt;}
.y13e{bottom:117.024133pt;}
.y1e6{bottom:118.686800pt;}
.y193{bottom:119.190800pt;}
.y2f4{bottom:120.841467pt;}
.y22d{bottom:121.390800pt;}
.y28{bottom:121.871733pt;}
.y2af{bottom:124.204133pt;}
.y28f{bottom:127.956133pt;}
.y4{bottom:129.895733pt;}
.y1bf{bottom:130.686800pt;}
.yf5{bottom:131.981467pt;}
.y1e5{bottom:132.020133pt;}
.y1dd{bottom:132.033467pt;}
.ybc{bottom:132.143600pt;}
.y8c{bottom:132.373467pt;}
.y2f3{bottom:132.844133pt;}
.y27{bottom:133.874400pt;}
.y13d{bottom:135.690800pt;}
.y2ae{bottom:136.206800pt;}
.y168{bottom:136.522800pt;}
.y22c{bottom:137.386800pt;}
.y192{bottom:137.857467pt;}
.y28e{bottom:139.958800pt;}
.y263{bottom:140.020133pt;}
.y20a{bottom:140.495600pt;}
.y2f2{bottom:144.846800pt;}
.y26{bottom:145.877067pt;}
.y3{bottom:145.891733pt;}
.yf4{bottom:147.977467pt;}
.y1dc{bottom:148.029467pt;}
.y109{bottom:148.067600pt;}
.y2ad{bottom:148.209467pt;}
.y8b{bottom:148.369467pt;}
.y28d{bottom:151.961467pt;}
.y22b{bottom:153.382800pt;}
.y13c{bottom:154.357467pt;}
.y167{bottom:155.189467pt;}
.y209{bottom:156.491600pt;}
.y191{bottom:156.524133pt;}
.y2f1{bottom:156.849467pt;}
.ybb{bottom:156.899600pt;}
.y25{bottom:157.879733pt;}
.y2ac{bottom:160.212133pt;}
.y2{bottom:161.887733pt;}
.y28c{bottom:163.964133pt;}
.yf3{bottom:163.973467pt;}
.y1db{bottom:164.025467pt;}
.y108{bottom:164.063600pt;}
.y8a{bottom:164.365467pt;}
.y2f0{bottom:168.852133pt;}
.y22a{bottom:169.378800pt;}
.y24{bottom:169.882400pt;}
.y2ab{bottom:172.214800pt;}
.y208{bottom:172.487600pt;}
.yba{bottom:172.895600pt;}
.y13b{bottom:173.024133pt;}
.y166{bottom:173.856133pt;}
.y190{bottom:175.190800pt;}
.y28b{bottom:175.966800pt;}
.y1be{bottom:176.171600pt;}
.yf2{bottom:179.969467pt;}
.y107{bottom:180.059600pt;}
.y89{bottom:180.361467pt;}
.y262{bottom:180.627733pt;}
.y2ef{bottom:180.854800pt;}
.y23{bottom:181.885067pt;}
.y2aa{bottom:184.217467pt;}
.y1da{bottom:185.361467pt;}
.y229{bottom:185.374800pt;}
.y1{bottom:185.887733pt;}
.y28a{bottom:187.969467pt;}
.y207{bottom:188.483600pt;}
.yb9{bottom:188.891600pt;}
.y13a{bottom:191.690800pt;}
.y1bd{bottom:192.167600pt;}
.y165{bottom:192.522800pt;}
.y2ee{bottom:192.857467pt;}
.y18f{bottom:193.857467pt;}
.y22{bottom:193.887733pt;}
.yf1{bottom:195.965467pt;}
.y106{bottom:196.055600pt;}
.y2a9{bottom:196.220133pt;}
.y88{bottom:196.357467pt;}
.y261{bottom:196.623733pt;}
.y289{bottom:199.972133pt;}
.y1d9{bottom:201.357467pt;}
.y228{bottom:201.370800pt;}
.y2ed{bottom:204.860133pt;}
.yb8{bottom:204.887600pt;}
.y18e{bottom:207.190800pt;}
.y1bc{bottom:208.163600pt;}
.y2a8{bottom:208.222800pt;}
.y139{bottom:210.357467pt;}
.y164{bottom:211.189467pt;}
.yf0{bottom:211.961467pt;}
.y288{bottom:211.974800pt;}
.y105{bottom:212.051600pt;}
.y86{bottom:212.365467pt;}
.y206{bottom:212.483600pt;}
.y260{bottom:212.619733pt;}
.y87{bottom:216.349467pt;}
.y2ec{bottom:216.862800pt;}
.y227{bottom:217.366800pt;}
.y1d7{bottom:217.439600pt;}
.y2a7{bottom:220.225467pt;}
.y18d{bottom:220.524133pt;}
.yb7{bottom:220.883600pt;}
.y1d8{bottom:221.349467pt;}
.y287{bottom:223.977467pt;}
.y104{bottom:228.047600pt;}
.y20{bottom:228.256933pt;}
.y85{bottom:228.361467pt;}
.y205{bottom:228.479600pt;}
.y25f{bottom:228.615733pt;}
.y2eb{bottom:228.865467pt;}
.y138{bottom:229.024133pt;}
.y163{bottom:229.856133pt;}
.y2a6{bottom:232.228133pt;}
.y1bb{bottom:232.763600pt;}
.yef{bottom:233.297467pt;}
.y226{bottom:233.362800pt;}
.y1d6{bottom:233.435600pt;}
.y286{bottom:235.980133pt;}
.yb6{bottom:236.879600pt;}
.y18c{bottom:239.190800pt;}
.y2ea{bottom:240.868133pt;}
.y103{bottom:244.043600pt;}
.y2a5{bottom:244.230800pt;}
.y1f{bottom:244.252933pt;}
.y84{bottom:244.357467pt;}
.y204{bottom:244.475600pt;}
.y25e{bottom:244.611733pt;}
.y137{bottom:247.690800pt;}
.y285{bottom:247.982800pt;}
.y162{bottom:248.522800pt;}
.y1ba{bottom:248.759600pt;}
.yee{bottom:249.293467pt;}
.y225{bottom:249.358800pt;}
.y1d5{bottom:249.431600pt;}
.y2e9{bottom:252.870800pt;}
.yb5{bottom:252.875600pt;}
.y2a4{bottom:256.233467pt;}
.y18b{bottom:257.857467pt;}
.y284{bottom:259.985467pt;}
.y102{bottom:260.039600pt;}
.y1e{bottom:260.248933pt;}
.y83{bottom:260.353467pt;}
.y203{bottom:260.471600pt;}
.y25d{bottom:260.607733pt;}
.y1b9{bottom:264.755600pt;}
.y2e8{bottom:264.873467pt;}
.yed{bottom:265.289467pt;}
.y224{bottom:265.354800pt;}
.y1d4{bottom:265.427600pt;}
.y136{bottom:266.357467pt;}
.y161{bottom:267.189467pt;}
.y2a3{bottom:268.236133pt;}
.yb4{bottom:268.871600pt;}
.y18a{bottom:271.190800pt;}
.y283{bottom:271.988133pt;}
.y1d{bottom:276.244933pt;}
.y25c{bottom:276.603733pt;}
.y2e7{bottom:276.876133pt;}
.y2a2{bottom:280.238800pt;}
.y1b8{bottom:280.751600pt;}
.yec{bottom:281.285467pt;}
.y101{bottom:281.375600pt;}
.y1d3{bottom:281.423600pt;}
.y282{bottom:283.990800pt;}
.y82{bottom:284.353467pt;}
.y202{bottom:284.471600pt;}
.yb3{bottom:284.867600pt;}
.y135{bottom:285.024133pt;}
.y160{bottom:285.856133pt;}
.y223{bottom:286.690800pt;}
.y2e6{bottom:288.878800pt;}
.y189{bottom:289.857467pt;}
.y1c{bottom:292.240933pt;}
.y2a1{bottom:292.241467pt;}
.y25b{bottom:292.599733pt;}
.y281{bottom:295.993467pt;}
.y1b7{bottom:296.747600pt;}
.yeb{bottom:297.281467pt;}
.y100{bottom:297.371600pt;}
.y1d2{bottom:297.419600pt;}
.y201{bottom:300.467600pt;}
.yb2{bottom:300.863600pt;}
.y2e5{bottom:300.881467pt;}
.y221{bottom:302.690800pt;}
.y134{bottom:303.690800pt;}
.y2a0{bottom:304.244133pt;}
.y15f{bottom:304.522800pt;}
.y222{bottom:306.682800pt;}
.y81{bottom:307.020133pt;}
.y280{bottom:307.996133pt;}
.y1b{bottom:308.236933pt;}
.y25a{bottom:308.595733pt;}
.y188{bottom:311.020133pt;}
.y1b6{bottom:312.743600pt;}
.y2e4{bottom:312.884133pt;}
.yff{bottom:313.367600pt;}
.y1d1{bottom:313.415600pt;}
.y29f{bottom:316.246800pt;}
.y200{bottom:316.463600pt;}
.yb1{bottom:316.859600pt;}
.yea{bottom:318.617467pt;}
.y21f{bottom:318.690800pt;}
.y27f{bottom:319.998800pt;}
.y133{bottom:322.357467pt;}
.y220{bottom:322.682800pt;}
.y15e{bottom:323.189467pt;}
.y1a{bottom:324.232933pt;}
.y259{bottom:324.591733pt;}
.y2e3{bottom:324.886800pt;}
.y29e{bottom:328.249467pt;}
.y1b5{bottom:328.739600pt;}
.yfe{bottom:329.363600pt;}
.y1d0{bottom:329.411600pt;}
.y187{bottom:331.520133pt;}
.y27e{bottom:332.001467pt;}
.y1ff{bottom:332.459600pt;}
.yb0{bottom:332.855600pt;}
.ye9{bottom:334.613467pt;}
.y21d{bottom:334.690800pt;}
.y2e2{bottom:336.889467pt;}
.y21e{bottom:338.682800pt;}
.y19{bottom:340.228933pt;}
.y29d{bottom:340.252133pt;}
.y258{bottom:340.587733pt;}
.y132{bottom:341.024133pt;}
.y15d{bottom:341.856133pt;}
.y27d{bottom:344.004133pt;}
.y1b4{bottom:344.735600pt;}
.y186{bottom:344.853467pt;}
.yfd{bottom:345.359600pt;}
.y1cf{bottom:345.407600pt;}
.y80{bottom:347.048133pt;}
.y1fe{bottom:348.455600pt;}
.yaf{bottom:348.851600pt;}
.y2e1{bottom:348.892133pt;}
.ye8{bottom:350.609467pt;}
.y21b{bottom:350.690800pt;}
.y29c{bottom:352.254800pt;}
.y55{bottom:353.313067pt;}
.y21c{bottom:354.682800pt;}
.y27c{bottom:356.006800pt;}
.y18{bottom:356.224933pt;}
.y257{bottom:356.583733pt;}
.y131{bottom:359.690800pt;}
.y15c{bottom:360.522800pt;}
.y1b3{bottom:360.731600pt;}
.y2e0{bottom:360.894800pt;}
.yfc{bottom:361.355600pt;}
.y1ce{bottom:361.403600pt;}
.y7f{bottom:363.044133pt;}
.y29b{bottom:364.257467pt;}
.yae{bottom:364.847600pt;}
.y54{bottom:365.315733pt;}
.ye7{bottom:366.605467pt;}
.y21a{bottom:366.690800pt;}
.y27b{bottom:368.009467pt;}
.y17{bottom:372.220933pt;}
.y1fd{bottom:372.455600pt;}
.y256{bottom:372.579733pt;}
.y2df{bottom:372.897467pt;}
.y29a{bottom:376.260133pt;}
.y1b2{bottom:376.727600pt;}
.yfb{bottom:377.351600pt;}
.y1cd{bottom:377.399600pt;}
.y130{bottom:378.357467pt;}
.y7e{bottom:379.040133pt;}
.y15b{bottom:379.189467pt;}
.y27a{bottom:380.012133pt;}
.yad{bottom:380.843600pt;}
.ye6{bottom:382.601467pt;}
.y2de{bottom:384.900133pt;}
.y299{bottom:388.262800pt;}
.y1fc{bottom:388.451600pt;}
.y254{bottom:388.645867pt;}
.y215{bottom:391.325317pt;}
.y279{bottom:392.014800pt;}
.y255{bottom:392.571733pt;}
.y53{bottom:392.653067pt;}
.y213{bottom:392.658667pt;}
.yfa{bottom:393.347600pt;}
.y1cc{bottom:393.395600pt;}
.y219{bottom:394.794800pt;}
.y7d{bottom:395.036133pt;}
.yac{bottom:396.839600pt;}
.y2dd{bottom:396.902800pt;}
.y12f{bottom:397.024133pt;}
.y15a{bottom:397.856133pt;}
.ye5{bottom:398.597467pt;}
.y298{bottom:400.265467pt;}
.y16{bottom:401.299733pt;}
.y1b1{bottom:401.327600pt;}
.y185{bottom:401.566800pt;}
.y278{bottom:404.017467pt;}
.y1fb{bottom:404.447600pt;}
.y253{bottom:404.641867pt;}
.y52{bottom:404.655733pt;}
.y2dc{bottom:408.905467pt;}
.y1cb{bottom:409.391600pt;}
.y7c{bottom:411.032133pt;}
.y297{bottom:412.268133pt;}
.yab{bottom:412.835600pt;}
.ye4{bottom:414.593467pt;}
.y184{bottom:414.900133pt;}
.y12e{bottom:415.690800pt;}
.y277{bottom:416.020133pt;}
.y159{bottom:416.522800pt;}
.y51{bottom:416.658400pt;}
.y15{bottom:417.295733pt;}
.y1b0{bottom:417.323600pt;}
.y1fa{bottom:420.443600pt;}
.y252{bottom:420.637867pt;}
.y17c{bottom:420.827600pt;}
.y2db{bottom:420.908133pt;}
.y212{bottom:420.911600pt;}
.y296{bottom:424.270800pt;}
.y183{bottom:428.233467pt;}
.y50{bottom:428.661067pt;}
.ye3{bottom:430.589467pt;}
.y1ca{bottom:430.727600pt;}
.y2da{bottom:432.910800pt;}
.y14{bottom:433.291733pt;}
.y1af{bottom:433.319600pt;}
.y12d{bottom:434.357467pt;}
.y113{bottom:434.846800pt;}
.y7b{bottom:435.032133pt;}
.y158{bottom:435.189467pt;}
.y276{bottom:436.020133pt;}
.y295{bottom:436.273467pt;}
.y1f9{bottom:436.439600pt;}
.y17b{bottom:436.823600pt;}
.y211{bottom:436.907600pt;}
.yaa{bottom:437.591600pt;}
.y4f{bottom:440.663733pt;}
.y182{bottom:441.566800pt;}
.y251{bottom:444.637867pt;}
.y2d9{bottom:444.913467pt;}
.ye2{bottom:446.585467pt;}
.y1c9{bottom:446.723600pt;}
.y112{bottom:448.180133pt;}
.y1ae{bottom:449.315600pt;}
.y12{bottom:449.315733pt;}
.y7a{bottom:451.028133pt;}
.y1f8{bottom:452.435600pt;}
.y4e{bottom:452.666400pt;}
.y17a{bottom:452.819600pt;}
.y210{bottom:452.903600pt;}
.y12c{bottom:453.024133pt;}
.y13{bottom:453.283733pt;}
.ya9{bottom:453.587600pt;}
.y157{bottom:453.856133pt;}
.y2d8{bottom:456.916133pt;}
.y111{bottom:461.513467pt;}
.ye1{bottom:462.581467pt;}
.y1c8{bottom:462.719600pt;}
.y4d{bottom:464.669067pt;}
.y1ad{bottom:465.311600pt;}
.y11{bottom:465.311733pt;}
.y79{bottom:467.024133pt;}
.y1f7{bottom:468.431600pt;}
.y179{bottom:468.815600pt;}
.y20f{bottom:468.899600pt;}
.y2d7{bottom:468.918800pt;}
.ya8{bottom:469.583600pt;}
.y12b{bottom:471.690800pt;}
.y156{bottom:472.522800pt;}
.y110{bottom:474.846800pt;}
.ye0{bottom:478.577467pt;}
.y1c7{bottom:478.715600pt;}
.y4c{bottom:479.331733pt;}
.y275{bottom:479.340133pt;}
.y2d6{bottom:480.921467pt;}
.y1ac{bottom:481.307600pt;}
.y10{bottom:481.307733pt;}
.y78{bottom:483.107600pt;}
.y250{bottom:483.865867pt;}
.y1f6{bottom:484.427600pt;}
.ya7{bottom:485.579600pt;}
.y10f{bottom:488.180133pt;}
.y12a{bottom:490.357467pt;}
.y155{bottom:491.189467pt;}
.y178{bottom:492.815600pt;}
.y2d5{bottom:492.924133pt;}
.ydf{bottom:494.573467pt;}
.y1c6{bottom:494.711600pt;}
.y274{bottom:495.336133pt;}
.y1ab{bottom:497.303600pt;}
.yf{bottom:497.303733pt;}
.y24f{bottom:499.861867pt;}
.y10e{bottom:501.513467pt;}
.ya6{bottom:501.575600pt;}
.y2d4{bottom:504.926800pt;}
.y237{bottom:505.246800pt;}
.y77{bottom:507.107600pt;}
.y1f5{bottom:508.427600pt;}
.y177{bottom:508.811600pt;}
.y129{bottom:509.024133pt;}
.y154{bottom:509.856133pt;}
.y1c5{bottom:510.707600pt;}
.y273{bottom:511.332133pt;}
.y4b{bottom:512.661067pt;}
.ye{bottom:513.299733pt;}
.y10d{bottom:514.846800pt;}
.y24e{bottom:515.857867pt;}
.yde{bottom:515.909467pt;}
.y2d3{bottom:516.929467pt;}
.ya5{bottom:517.571600pt;}
.y236{bottom:518.580133pt;}
.y1aa{bottom:521.903600pt;}
.y76{bottom:523.103600pt;}
.y1f4{bottom:524.423600pt;}
.y4a{bottom:524.663733pt;}
.y176{bottom:524.807600pt;}
.y272{bottom:527.328133pt;}
.y128{bottom:527.690800pt;}
.y153{bottom:528.522800pt;}
.y2d2{bottom:528.932133pt;}
.yd{bottom:529.295733pt;}
.y24d{bottom:531.853867pt;}
.ydd{bottom:531.905467pt;}
.y235{bottom:531.913467pt;}
.ya4{bottom:533.567600pt;}
.y1c4{bottom:534.707600pt;}
.y1a9{bottom:537.899600pt;}
.y75{bottom:539.099600pt;}
.y49{bottom:539.326400pt;}
.y1f3{bottom:540.419600pt;}
.y175{bottom:540.803600pt;}
.y2d1{bottom:540.934800pt;}
.y271{bottom:543.324133pt;}
.y234{bottom:545.246800pt;}
.yc{bottom:545.291733pt;}
.y127{bottom:546.357467pt;}
.y152{bottom:547.189467pt;}
.y24c{bottom:547.849867pt;}
.ydc{bottom:547.901467pt;}
.ya3{bottom:549.563600pt;}
.y1c3{bottom:550.703600pt;}
.y2d0{bottom:552.937467pt;}
.y1a8{bottom:553.895600pt;}
.y74{bottom:555.095600pt;}
.y174{bottom:556.799600pt;}
.y233{bottom:558.580133pt;}
.y270{bottom:559.320133pt;}
.yb{bottom:561.303733pt;}
.y24b{bottom:563.845867pt;}
.ydb{bottom:563.897467pt;}
.y1f2{bottom:564.419600pt;}
.y2cf{bottom:564.940133pt;}
.y126{bottom:565.024133pt;}
.ya2{bottom:565.559600pt;}
.y151{bottom:565.856133pt;}
.y1c2{bottom:566.699600pt;}
.y1a7{bottom:569.891600pt;}
.y73{bottom:571.091600pt;}
.y232{bottom:571.913467pt;}
.y48{bottom:572.655733pt;}
.y173{bottom:572.795600pt;}
.y2ce{bottom:576.942800pt;}
.ya{bottom:577.299733pt;}
.y24a{bottom:579.841867pt;}
.yda{bottom:579.893467pt;}
.y1f1{bottom:580.415600pt;}
.y26f{bottom:581.720133pt;}
.y1c1{bottom:582.695600pt;}
.y125{bottom:583.690800pt;}
.y150{bottom:584.522800pt;}
.y47{bottom:584.658400pt;}
.y231{bottom:585.246800pt;}
.y1a6{bottom:585.887600pt;}
.y72{bottom:587.087600pt;}
.y2cd{bottom:588.945467pt;}
.ya1{bottom:590.315600pt;}
.y9{bottom:593.295733pt;}
.y249{bottom:595.837867pt;}
.yd9{bottom:595.889467pt;}
.y1f0{bottom:596.411600pt;}
.y172{bottom:596.795600pt;}
.y1c0{bottom:598.691600pt;}
.y46{bottom:599.321067pt;}
.y2cc{bottom:600.948133pt;}
.y1a5{bottom:601.883600pt;}
.y124{bottom:602.357467pt;}
.y71{bottom:603.083600pt;}
.y14f{bottom:603.189467pt;}
.ya0{bottom:606.311600pt;}
.y8{bottom:609.291733pt;}
.y248{bottom:611.833867pt;}
.y1ef{bottom:612.407600pt;}
.y171{bottom:612.791600pt;}
.y2cb{bottom:612.950800pt;}
.y1a4{bottom:617.879600pt;}
.yd8{bottom:619.889467pt;}
.y123{bottom:621.024133pt;}
.y14e{bottom:621.856133pt;}
.y9f{bottom:622.307600pt;}
.y2ca{bottom:624.953467pt;}
.y7{bottom:625.287733pt;}
.y26e{bottom:627.071600pt;}
.y70{bottom:627.083600pt;}
.y247{bottom:627.829867pt;}
.y1ee{bottom:628.403600pt;}
.y170{bottom:628.787600pt;}
.y1e4{bottom:631.380133pt;}
.y45{bottom:634.657067pt;}
.y2c9{bottom:636.956133pt;}
.y9e{bottom:638.303600pt;}
.y122{bottom:639.690800pt;}
.y14d{bottom:640.522800pt;}
.y1a3{bottom:642.479600pt;}
.y26d{bottom:643.067600pt;}
.y6f{bottom:643.079600pt;}
.y246{bottom:643.825867pt;}
.y1ed{bottom:644.399600pt;}
.y1e3{bottom:644.713467pt;}
.y16f{bottom:644.783600pt;}
.y44{bottom:646.659733pt;}
.y2c8{bottom:648.958800pt;}
.yd7{bottom:653.044133pt;}
.y9d{bottom:654.299600pt;}
.y1e2{bottom:658.046800pt;}
.y121{bottom:658.357467pt;}
.y1a2{bottom:658.475600pt;}
.y43{bottom:658.662400pt;}
.y26c{bottom:659.063600pt;}
.y6e{bottom:659.075600pt;}
.y14c{bottom:659.189467pt;}
.y245{bottom:659.821867pt;}
.y16e{bottom:660.779600pt;}
.y2c7{bottom:660.961467pt;}
.y38{bottom:664.887600pt;}
.y1ec{bottom:668.399600pt;}
.yd6{bottom:669.040133pt;}
.y9c{bottom:670.295600pt;}
.y42{bottom:670.665067pt;}
.y2c6{bottom:672.964133pt;}
.y1a1{bottom:674.471600pt;}
.y6d{bottom:675.071600pt;}
.y244{bottom:675.817867pt;}
.y16d{bottom:676.775600pt;}
.y120{bottom:677.024133pt;}
.y14b{bottom:677.856133pt;}
.y37{bottom:679.554400pt;}
.y41{bottom:682.667733pt;}
.y26b{bottom:683.063600pt;}
.y2c5{bottom:684.966800pt;}
.yd5{bottom:685.036133pt;}
.y9b{bottom:686.291600pt;}
.y1a0{bottom:690.467600pt;}
.y6c{bottom:691.067600pt;}
.y243{bottom:691.813867pt;}
.y16c{bottom:692.771600pt;}
.y36{bottom:694.221067pt;}
.y40{bottom:694.670400pt;}
.y11f{bottom:695.690800pt;}
.y14a{bottom:696.522800pt;}
.y2c4{bottom:696.969467pt;}
.y26a{bottom:699.059600pt;}
.yd4{bottom:701.032133pt;}
.y19f{bottom:706.463600pt;}
.y3f{bottom:706.673067pt;}
.y6b{bottom:707.063600pt;}
.y242{bottom:707.809867pt;}
.y35{bottom:708.887733pt;}
.y2c3{bottom:708.972133pt;}
.y9a{bottom:710.291600pt;}
.y11e{bottom:714.357467pt;}
.y269{bottom:715.055600pt;}
.y149{bottom:715.189467pt;}
.y16b{bottom:716.771600pt;}
.yd3{bottom:717.028133pt;}
.y3e{bottom:718.675733pt;}
.y2c2{bottom:720.974800pt;}
.y19e{bottom:722.459600pt;}
.y6a{bottom:723.059600pt;}
.y34{bottom:723.554400pt;}
.y241{bottom:723.805867pt;}
.y3d{bottom:730.678400pt;}
.y268{bottom:731.051600pt;}
.y16a{bottom:732.767600pt;}
.y2c1{bottom:732.977467pt;}
.yd2{bottom:733.024133pt;}
.y148{bottom:733.856133pt;}
.y33{bottom:738.221067pt;}
.y19d{bottom:738.455600pt;}
.y69{bottom:739.055600pt;}
.y3c{bottom:742.681067pt;}
.y2c0{bottom:744.980133pt;}
.y240{bottom:747.805867pt;}
.y169{bottom:748.763600pt;}
.y11d{bottom:751.690800pt;}
.y147{bottom:752.522800pt;}
.y99{bottom:754.295600pt;}
.y19c{bottom:754.451600pt;}
.y3b{bottom:754.683733pt;}
.ycb{bottom:754.994629pt;}
.y68{bottom:755.051600pt;}
.yc9{bottom:756.328000pt;}
.y32{bottom:756.439733pt;}
.y2bf{bottom:756.982800pt;}
.yd1{bottom:759.688133pt;}
.y23f{bottom:763.801867pt;}
.y3a{bottom:766.686400pt;}
.y2be{bottom:768.985467pt;}
.y98{bottom:770.291600pt;}
.y11c{bottom:770.357467pt;}
.y19b{bottom:770.447600pt;}
.y1eb{bottom:771.047600pt;}
.y146{bottom:771.189467pt;}
.y31{bottom:777.687600pt;}
.y67{bottom:779.051600pt;}
.y23d{bottom:779.807600pt;}
.y2bd{bottom:780.988133pt;}
.y39{bottom:781.349067pt;}
.y23e{bottom:783.794000pt;}
.y97{bottom:786.287600pt;}
.y19a{bottom:786.443600pt;}
.yc8{bottom:787.043600pt;}
.y11b{bottom:789.024133pt;}
.y145{bottom:789.856133pt;}
.y30{bottom:792.087600pt;}
.y2bc{bottom:792.990800pt;}
.y66{bottom:795.047600pt;}
.y23c{bottom:795.803600pt;}
.y17f{bottom:799.189467pt;}
.y96{bottom:802.283600pt;}
.y199{bottom:802.439600pt;}
.yc7{bottom:803.039600pt;}
.y2bb{bottom:804.993467pt;}
.y2f{bottom:806.487733pt;}
.y11a{bottom:807.690800pt;}
.y59{bottom:808.346400pt;}
.y144{bottom:808.522800pt;}
.y65{bottom:811.043600pt;}
.y23b{bottom:811.799600pt;}
.y17e{bottom:812.522800pt;}
.y2ba{bottom:816.996133pt;}
.y95{bottom:818.279600pt;}
.y198{bottom:818.435600pt;}
.yc6{bottom:819.035600pt;}
.y58{bottom:820.346400pt;}
.y2e{bottom:820.887733pt;}
.y17d{bottom:825.856133pt;}
.y119{bottom:826.357467pt;}
.y64{bottom:827.039600pt;}
.y143{bottom:827.189467pt;}
.y23a{bottom:827.795600pt;}
.y2b9{bottom:828.998800pt;}
.y57{bottom:832.346400pt;}
.y94{bottom:834.275600pt;}
.y197{bottom:834.431600pt;}
.yc5{bottom:835.031600pt;}
.y2d{bottom:835.287733pt;}
.y2b8{bottom:841.001467pt;}
.y63{bottom:843.035600pt;}
.y239{bottom:843.791600pt;}
.y118{bottom:845.024133pt;}
.y142{bottom:845.856133pt;}
.y93{bottom:850.271600pt;}
.yc4{bottom:851.027600pt;}
.y2b7{bottom:853.004133pt;}
.y62{bottom:859.031600pt;}
.y2c{bottom:860.354267pt;}
.y117{bottom:863.690800pt;}
.y141{bottom:864.522800pt;}
.y2b6{bottom:865.006800pt;}
.y92{bottom:866.267600pt;}
.yc3{bottom:867.023600pt;}
.y238{bottom:867.791600pt;}
.y56{bottom:868.082400pt;}
.y61{bottom:875.027600pt;}
.y2b5{bottom:877.009467pt;}
.yc2{bottom:883.019600pt;}
.y2b{bottom:884.354267pt;}
.y116{bottom:884.853467pt;}
.y5a{bottom:885.420933pt;}
.y2b4{bottom:889.012133pt;}
.y60{bottom:891.023600pt;}
.yc1{bottom:899.015600pt;}
.y2b3{bottom:901.014800pt;}
.y115{bottom:905.353467pt;}
.y5f{bottom:907.019600pt;}
.y2b2{bottom:913.017467pt;}
.y114{bottom:918.686800pt;}
.y5e{bottom:923.015600pt;}
.y2b1{bottom:925.020133pt;}
.y5c{bottom:974.776533pt;}
.y5d{bottom:975.798800pt;}
.y91{bottom:1029.693333pt;}
.h19{height:3.156173pt;}
.h1f{height:12.216000pt;}
.h15{height:14.664000pt;}
.h1b{height:22.069451pt;}
.h20{height:22.882690pt;}
.h17{height:25.330729pt;}
.hb{height:25.736533pt;}
.h14{height:26.119531pt;}
.hf{height:26.618667pt;}
.h5{height:28.953600pt;}
.h1e{height:29.269333pt;}
.h1d{height:30.421333pt;}
.h1a{height:31.896474pt;}
.h16{height:33.952768pt;}
.h10{height:34.224000pt;}
.h6{height:34.645333pt;}
.h9{height:38.229067pt;}
.h8{height:38.229600pt;}
.ha{height:38.230133pt;}
.h21{height:38.930368pt;}
.h18{height:39.264768pt;}
.he{height:39.594667pt;}
.hd{height:39.944000pt;}
.hc{height:39.944533pt;}
.h2{height:41.829333pt;}
.h3{height:44.544000pt;}
.h22{height:44.657067pt;}
.h4{height:45.632000pt;}
.h12{height:49.493333pt;}
.h11{height:53.237333pt;}
.h1c{height:56.421196pt;}
.h7{height:57.040000pt;}
.h1{height:1050.666667pt;}
.h13{height:1050.706667pt;}
.h0{height:1050.708008pt;}
.w4{width:148.584000pt;}
.w5{width:172.584025pt;}
.w2{width:230.760000pt;}
.w3{width:254.759969pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.xb{left:28.439984pt;}
.x1f{left:36.559867pt;}
.x3{left:40.633867pt;}
.x16{left:45.964000pt;}
.x4{left:53.967333pt;}
.xc{left:55.549333pt;}
.xe{left:69.990533pt;}
.xd{left:73.144118pt;}
.x21{left:74.965067pt;}
.x20{left:83.976012pt;}
.x10{left:88.564000pt;}
.xf{left:94.310784pt;}
.x11{left:106.158651pt;}
.x23{left:108.994267pt;}
.x22{left:112.422412pt;}
.x24{left:132.182412pt;}
.x12{left:138.637333pt;}
.x13{left:165.614384pt;}
.x6{left:196.264000pt;}
.x14{left:208.939067pt;}
.x1{left:222.818933pt;}
.x15{left:227.962533pt;}
.x2c{left:233.297200pt;}
.xa{left:364.249349pt;}
.x9{left:376.249333pt;}
.x25{left:392.922933pt;}
.x1b{left:393.966933pt;}
.x1e{left:405.337321pt;}
.x1d{left:417.337333pt;}
.x7{left:452.473600pt;}
.x2b{left:474.800667pt;}
.x26{left:522.363733pt;}
.x29{left:549.513867pt;}
.x27{left:569.627467pt;}
.x19{left:595.393333pt;}
.x18{left:609.217333pt;}
.x2{left:619.074400pt;}
.x17{left:634.476000pt;}
.x1c{left:644.581867pt;}
.x2a{left:684.509867pt;}
.x28{left:699.826000pt;}
.x1a{left:720.822933pt;}
.x5{left:726.822933pt;}
.x8{left:781.280000pt;}
}




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