
    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_56248901446319c086965b36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_addc4989965627d97e0a290f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_82ff7e9ff3220552dce8fdc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_780c64598e53e3a77285f1cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_10d4258059daee3de9ccad4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.483000;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_09adeaf9f8107d78cf6f2298.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_edd9a77dd1d0854e84993308.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_66193b121c647779e88b76ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.222000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_7785ef680ccd84a1864afb8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e9a45a3312c7c5f64eea1fa3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_202dda374b62e6cafe3a1e9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.009000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:26.399780px;}
.ls3{letter-spacing:-1.050000px;}
.ls9{letter-spacing:-0.823200px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.294000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.lsb{letter-spacing:0.000070px;}
.ls8{letter-spacing:0.352800px;}
.ls7{letter-spacing:0.782040px;}
.ls5{letter-spacing:0.787920px;}
.ls4{letter-spacing:0.823200px;}
.ls6{letter-spacing:0.829080px;}
.ls0{letter-spacing:5.460000px;}
.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:-21.216000px;}
.wsa{word-spacing:-14.641200px;}
.ws57{word-spacing:-14.170800px;}
.wsd5{word-spacing:-13.935600px;}
.wsaa{word-spacing:-13.818000px;}
.ws11c{word-spacing:-13.524000px;}
.wsc{word-spacing:-13.140000px;}
.wsa9{word-spacing:-12.994800px;}
.ws3{word-spacing:-12.483600px;}
.wsb{word-spacing:-12.420000px;}
.ws55{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws56{word-spacing:-10.101600px;}
.ws4{word-spacing:-9.855000px;}
.ws142{word-spacing:-9.495000px;}
.ws13c{word-spacing:-9.315000px;}
.ws9{word-spacing:-8.148000px;}
.ws5{word-spacing:-6.898500px;}
.ws8{word-spacing:-2.772000px;}
.ws7{word-spacing:-2.310000px;}
.wsf9{word-spacing:-2.286600px;}
.ws141{word-spacing:-1.890000px;}
.ws140{word-spacing:-1.575000px;}
.ws102{word-spacing:-1.528800px;}
.ws28{word-spacing:-1.470000px;}
.ws104{word-spacing:-1.352400px;}
.ws119{word-spacing:-1.234800px;}
.ws79{word-spacing:-1.117200px;}
.ws129{word-spacing:-0.940800px;}
.ws112{word-spacing:-0.882000px;}
.ws2d{word-spacing:-0.823200px;}
.wsc2{word-spacing:-0.764400px;}
.wsbd{word-spacing:-0.588000px;}
.wsee{word-spacing:-0.529200px;}
.ws4f{word-spacing:-0.470400px;}
.ws88{word-spacing:-0.411600px;}
.ws1f{word-spacing:-0.352800px;}
.wsfd{word-spacing:-0.235200px;}
.ws143{word-spacing:-0.225000px;}
.ws34{word-spacing:-0.176400px;}
.ws8d{word-spacing:-0.117600px;}
.ws144{word-spacing:-0.090000px;}
.ws110{word-spacing:-0.058800px;}
.ws145{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.wsb1{word-spacing:0.117600px;}
.ws113{word-spacing:0.235200px;}
.wsd0{word-spacing:0.294000px;}
.ws53{word-spacing:0.352800px;}
.ws4b{word-spacing:0.470400px;}
.wsba{word-spacing:0.529200px;}
.wsbf{word-spacing:0.646800px;}
.ws10e{word-spacing:0.705600px;}
.wscb{word-spacing:0.764400px;}
.ws63{word-spacing:0.823200px;}
.ws65{word-spacing:0.882000px;}
.ws107{word-spacing:0.940800px;}
.wsd7{word-spacing:1.058400px;}
.wsb6{word-spacing:1.176000px;}
.ws3f{word-spacing:1.234800px;}
.ws2e{word-spacing:1.352400px;}
.wscd{word-spacing:1.411200px;}
.ws126{word-spacing:1.470000px;}
.ws137{word-spacing:1.528800px;}
.wsec{word-spacing:1.587600px;}
.wsb2{word-spacing:1.646400px;}
.wsa6{word-spacing:1.705200px;}
.ws98{word-spacing:1.764000px;}
.wsa8{word-spacing:1.822800px;}
.ws83{word-spacing:1.881600px;}
.ws136{word-spacing:1.999200px;}
.ws122{word-spacing:2.058000px;}
.wsbb{word-spacing:2.116800px;}
.ws2f{word-spacing:2.293200px;}
.wsac{word-spacing:2.352000px;}
.ws7f{word-spacing:2.410800px;}
.ws2b{word-spacing:2.469600px;}
.ws9e{word-spacing:2.528400px;}
.wsf2{word-spacing:2.646000px;}
.ws6b{word-spacing:2.704800px;}
.ws27{word-spacing:2.763600px;}
.ws94{word-spacing:2.822400px;}
.ws22{word-spacing:2.881200px;}
.wsbc{word-spacing:2.940000px;}
.ws97{word-spacing:2.998800px;}
.ws11{word-spacing:3.057600px;}
.ws4a{word-spacing:3.116400px;}
.ws71{word-spacing:3.175200px;}
.ws15{word-spacing:3.234000px;}
.wse5{word-spacing:3.292800px;}
.ws6c{word-spacing:3.351600px;}
.wsb9{word-spacing:3.469200px;}
.wsf5{word-spacing:3.528000px;}
.wse0{word-spacing:3.586800px;}
.wsab{word-spacing:3.645600px;}
.wsd2{word-spacing:3.704400px;}
.wsd4{word-spacing:3.763200px;}
.ws18{word-spacing:3.822000px;}
.ws101{word-spacing:3.880800px;}
.ws29{word-spacing:3.939600px;}
.ws5b{word-spacing:3.998400px;}
.ws3e{word-spacing:4.057200px;}
.ws32{word-spacing:4.116000px;}
.ws128{word-spacing:4.174800px;}
.ws50{word-spacing:4.233600px;}
.wsd{word-spacing:4.292400px;}
.ws90{word-spacing:4.351200px;}
.wscf{word-spacing:4.468800px;}
.ws42{word-spacing:4.527600px;}
.ws6e{word-spacing:4.586400px;}
.wsb7{word-spacing:4.645200px;}
.ws6f{word-spacing:4.704000px;}
.ws1d{word-spacing:4.762800px;}
.ws11a{word-spacing:4.821600px;}
.ws41{word-spacing:4.880400px;}
.ws40{word-spacing:4.939200px;}
.wsfb{word-spacing:4.998000px;}
.wsd1{word-spacing:5.056800px;}
.ws47{word-spacing:5.174400px;}
.ws80{word-spacing:5.233200px;}
.wsd3{word-spacing:5.292000px;}
.ws109{word-spacing:5.350800px;}
.ws117{word-spacing:5.409600px;}
.ws135{word-spacing:5.468400px;}
.wsb8{word-spacing:5.527200px;}
.ws36{word-spacing:5.586000px;}
.ws31{word-spacing:5.644800px;}
.ws85{word-spacing:5.703600px;}
.ws26{word-spacing:5.762400px;}
.wsb0{word-spacing:5.821200px;}
.ws96{word-spacing:5.880000px;}
.ws23{word-spacing:5.938800px;}
.wsb5{word-spacing:5.997600px;}
.ws59{word-spacing:6.056400px;}
.ws39{word-spacing:6.174000px;}
.wse{word-spacing:6.232800px;}
.wsc9{word-spacing:6.350400px;}
.ws43{word-spacing:6.409200px;}
.ws17{word-spacing:6.526800px;}
.wsad{word-spacing:6.585600px;}
.wscc{word-spacing:6.644400px;}
.ws75{word-spacing:6.762000px;}
.ws105{word-spacing:6.820800px;}
.ws67{word-spacing:6.879600px;}
.ws8e{word-spacing:6.938400px;}
.wsfa{word-spacing:6.997200px;}
.ws10c{word-spacing:7.114800px;}
.ws7a{word-spacing:7.173600px;}
.wsf7{word-spacing:7.232400px;}
.ws7b{word-spacing:7.291200px;}
.ws5d{word-spacing:7.350000px;}
.ws8f{word-spacing:7.408800px;}
.ws2a{word-spacing:7.467600px;}
.ws20{word-spacing:7.585200px;}
.ws78{word-spacing:7.644000px;}
.ws54{word-spacing:7.761600px;}
.ws60{word-spacing:7.820400px;}
.wsed{word-spacing:7.879200px;}
.ws1b{word-spacing:7.938000px;}
.ws70{word-spacing:7.996800px;}
.wsa7{word-spacing:8.055600px;}
.wse9{word-spacing:8.173200px;}
.ws114{word-spacing:8.232000px;}
.ws16{word-spacing:8.349600px;}
.ws19{word-spacing:8.408400px;}
.ws21{word-spacing:8.467200px;}
.wsde{word-spacing:8.526000px;}
.wsf8{word-spacing:8.584800px;}
.ws9a{word-spacing:8.643600px;}
.wsf1{word-spacing:8.702400px;}
.ws48{word-spacing:8.761200px;}
.ws10b{word-spacing:8.820000px;}
.ws33{word-spacing:8.937600px;}
.ws72{word-spacing:8.996400px;}
.ws121{word-spacing:9.055200px;}
.wsdf{word-spacing:9.172800px;}
.ws25{word-spacing:9.290400px;}
.wsf3{word-spacing:9.349200px;}
.ws44{word-spacing:9.408000px;}
.ws91{word-spacing:9.466800px;}
.wsf6{word-spacing:9.525600px;}
.ws46{word-spacing:9.584400px;}
.wsc7{word-spacing:9.760800px;}
.ws4c{word-spacing:9.819600px;}
.ws100{word-spacing:9.878400px;}
.ws3b{word-spacing:10.054800px;}
.wsa2{word-spacing:10.113600px;}
.ws118{word-spacing:10.172400px;}
.wsef{word-spacing:10.290000px;}
.wsc5{word-spacing:10.348800px;}
.wsdd{word-spacing:10.407600px;}
.ws138{word-spacing:10.584000px;}
.ws5c{word-spacing:10.642800px;}
.ws1e{word-spacing:10.701600px;}
.wsc4{word-spacing:10.760400px;}
.ws61{word-spacing:10.878000px;}
.ws134{word-spacing:10.936800px;}
.ws11f{word-spacing:10.995600px;}
.ws14{word-spacing:11.054400px;}
.ws7c{word-spacing:11.113200px;}
.ws37{word-spacing:11.172000px;}
.ws64{word-spacing:11.407200px;}
.ws51{word-spacing:11.466000px;}
.ws127{word-spacing:11.524800px;}
.wsf4{word-spacing:11.583600px;}
.ws6a{word-spacing:11.642400px;}
.ws13e{word-spacing:11.760000px;}
.ws9f{word-spacing:11.818800px;}
.ws95{word-spacing:11.995200px;}
.ws30{word-spacing:12.054000px;}
.ws3d{word-spacing:12.112800px;}
.ws11b{word-spacing:12.171600px;}
.wsa3{word-spacing:12.230400px;}
.ws3a{word-spacing:12.289200px;}
.wsd6{word-spacing:12.348000px;}
.ws10a{word-spacing:12.406800px;}
.ws76{word-spacing:12.465600px;}
.ws38{word-spacing:12.524400px;}
.ws1c{word-spacing:12.583200px;}
.ws7e{word-spacing:12.642000px;}
.ws35{word-spacing:12.700800px;}
.wsae{word-spacing:12.759600px;}
.ws8c{word-spacing:12.818400px;}
.ws24{word-spacing:12.877200px;}
.wse8{word-spacing:12.936000px;}
.wsa5{word-spacing:12.994800px;}
.wsd9{word-spacing:13.053600px;}
.ws12{word-spacing:13.230000px;}
.ws9c{word-spacing:13.288800px;}
.wsa4{word-spacing:13.347600px;}
.ws5a{word-spacing:13.465200px;}
.wsce{word-spacing:13.524000px;}
.wsa1{word-spacing:13.582800px;}
.ws49{word-spacing:13.759200px;}
.ws2c{word-spacing:13.818000px;}
.wseb{word-spacing:13.935600px;}
.ws10d{word-spacing:14.112000px;}
.wsc6{word-spacing:14.229600px;}
.wsca{word-spacing:14.288400px;}
.ws92{word-spacing:14.347200px;}
.ws9b{word-spacing:14.406000px;}
.ws108{word-spacing:14.464800px;}
.ws8b{word-spacing:14.523600px;}
.wsb4{word-spacing:14.582400px;}
.ws120{word-spacing:14.758800px;}
.wse4{word-spacing:14.817600px;}
.wse6{word-spacing:15.170400px;}
.ws52{word-spacing:15.229200px;}
.ws116{word-spacing:15.464400px;}
.ws139{word-spacing:15.523200px;}
.ws106{word-spacing:15.640800px;}
.ws1a{word-spacing:15.758400px;}
.wsea{word-spacing:15.817200px;}
.ws5e{word-spacing:15.876000px;}
.ws3c{word-spacing:15.934800px;}
.ws5f{word-spacing:16.052400px;}
.ws66{word-spacing:16.464000px;}
.wsb3{word-spacing:16.640400px;}
.ws11d{word-spacing:16.699200px;}
.wsd8{word-spacing:16.758000px;}
.wsff{word-spacing:16.875600px;}
.ws11e{word-spacing:17.052000px;}
.ws69{word-spacing:17.110800px;}
.wsf0{word-spacing:17.287200px;}
.ws6d{word-spacing:17.404800px;}
.ws89{word-spacing:17.581200px;}
.ws131{word-spacing:17.640000px;}
.ws82{word-spacing:17.757600px;}
.ws73{word-spacing:17.934000px;}
.ws12b{word-spacing:17.992800px;}
.ws62{word-spacing:18.228000px;}
.ws93{word-spacing:18.463200px;}
.ws4d{word-spacing:18.639600px;}
.ws86{word-spacing:18.992400px;}
.wsfe{word-spacing:19.051200px;}
.wsaf{word-spacing:19.110000px;}
.ws13{word-spacing:19.168800px;}
.ws13a{word-spacing:19.521600px;}
.wse2{word-spacing:19.639200px;}
.ws132{word-spacing:19.756800px;}
.ws125{word-spacing:19.874400px;}
.wsdb{word-spacing:19.992000px;}
.ws10{word-spacing:20.050800px;}
.ws74{word-spacing:20.109600px;}
.ws68{word-spacing:20.168400px;}
.ws87{word-spacing:20.227200px;}
.wsc0{word-spacing:20.344800px;}
.ws13f{word-spacing:20.462400px;}
.ws123{word-spacing:20.756400px;}
.wsbe{word-spacing:21.226800px;}
.wsc8{word-spacing:21.403200px;}
.ws103{word-spacing:21.462000px;}
.ws115{word-spacing:21.520800px;}
.ws84{word-spacing:21.697200px;}
.wsc1{word-spacing:22.579200px;}
.ws77{word-spacing:22.696800px;}
.ws133{word-spacing:22.814400px;}
.wse7{word-spacing:22.873200px;}
.ws111{word-spacing:23.049600px;}
.wse1{word-spacing:23.167200px;}
.wsc3{word-spacing:23.696400px;}
.wse3{word-spacing:23.931600px;}
.ws13d{word-spacing:24.049200px;}
.ws99{word-spacing:24.343200px;}
.ws7d{word-spacing:24.460800px;}
.wsf{word-spacing:24.519600px;}
.wsfc{word-spacing:24.578400px;}
.ws8a{word-spacing:25.107600px;}
.wsdc{word-spacing:25.401600px;}
.wsa0{word-spacing:25.460400px;}
.ws9d{word-spacing:25.989600px;}
.ws58{word-spacing:26.577600px;}
.ws4e{word-spacing:27.283200px;}
.ws124{word-spacing:27.812400px;}
.ws45{word-spacing:28.341600px;}
.ws12c{word-spacing:28.400400px;}
.ws13b{word-spacing:28.459200px;}
.ws10f{word-spacing:29.164800px;}
.wsda{word-spacing:32.222400px;}
.ws12a{word-spacing:35.868000px;}
.ws12d{word-spacing:37.926000px;}
.ws81{word-spacing:43.394400px;}
.ws130{word-spacing:56.624400px;}
.ws12e{word-spacing:57.506400px;}
.ws12f{word-spacing:67.678800px;}
._11{margin-left:-17.461200px;}
._10{margin-left:-13.168820px;}
._6{margin-left:-12.096000px;}
._7{margin-left:-9.813600px;}
._f{margin-left:-8.408418px;}
._9{margin-left:-6.703200px;}
._2{margin-left:-5.623800px;}
._3{margin-left:-3.744000px;}
._1{margin-left:-2.340000px;}
._0{margin-left:-1.156800px;}
._5{width:1.879200px;}
._4{width:3.456000px;}
._14{width:5.470800px;}
._13{width:7.636800px;}
._d{width:9.748800px;}
._a{width:11.380200px;}
._e{width:12.583200px;}
._b{width:15.035160px;}
._c{width:16.936788px;}
._16{width:22.284000px;}
._12{width:31.752000px;}
._8{width:39.252611px;}
._15{width:44.244000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.500000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:77.811145px;}
.y25{bottom:89.812645px;}
.y2cf{bottom:99.342750px;}
.y1a5{bottom:100.669203px;}
.y1d7{bottom:100.683603px;}
.y22b{bottom:100.755603px;}
.y30b{bottom:100.842773px;}
.yc0{bottom:100.990352px;}
.yf2{bottom:101.033540px;}
.y106{bottom:101.502445px;}
.y24{bottom:101.814145px;}
.y24a{bottom:107.737953px;}
.y14a{bottom:107.745153px;}
.y176{bottom:107.781153px;}
.y263{bottom:107.788353px;}
.y59{bottom:111.570903px;}
.y82{bottom:112.404445px;}
.y2ce{bottom:112.842750px;}
.y23{bottom:113.815645px;}
.y30a{bottom:114.342773px;}
.y1a4{bottom:118.662003px;}
.y1d6{bottom:118.676403px;}
.y22a{bottom:118.748403px;}
.ybf{bottom:118.983152px;}
.yf1{bottom:119.026340px;}
.y116{bottom:119.509645px;}
.y105{bottom:119.538457px;}
.y28f{bottom:121.237930px;}
.y149{bottom:125.737953px;}
.y175{bottom:125.773953px;}
.y262{bottom:125.781153px;}
.y22{bottom:125.817145px;}
.y2cd{bottom:126.342750px;}
.y309{bottom:127.842773px;}
.y58{bottom:129.563703px;}
.y81{bottom:130.397245px;}
.y28e{bottom:134.737930px;}
.y1d5{bottom:136.669203px;}
.y1a3{bottom:136.676404px;}
.y203{bottom:136.683603px;}
.y229{bottom:136.741203px;}
.ybe{bottom:136.975952px;}
.yf0{bottom:137.019140px;}
.y115{bottom:137.502445px;}
.y104{bottom:137.531257px;}
.y21{bottom:137.818645px;}
.y2cc{bottom:139.842750px;}
.y308{bottom:141.342773px;}
.y249{bottom:143.747554px;}
.y174{bottom:143.766753px;}
.y261{bottom:143.773953px;}
.y148{bottom:143.781153px;}
.y57{bottom:147.556503px;}
.y80{bottom:148.390045px;}
.y20{bottom:149.820145px;}
.y2cb{bottom:153.342750px;}
.y1d4{bottom:154.662003px;}
.y1a2{bottom:154.671603px;}
.y202{bottom:154.676403px;}
.y228{bottom:154.734003px;}
.y307{bottom:154.842773px;}
.ybd{bottom:154.968752px;}
.yef{bottom:155.011940px;}
.y114{bottom:155.502445px;}
.y103{bottom:155.524057px;}
.y28d{bottom:161.737930px;}
.y248{bottom:161.742754px;}
.y173{bottom:161.759553px;}
.y260{bottom:161.766753px;}
.y147{bottom:161.773953px;}
.y56{bottom:165.563703px;}
.y7f{bottom:166.382845px;}
.y2ca{bottom:166.842750px;}
.y306{bottom:168.342773px;}
.y1d3{bottom:172.662003px;}
.y1a1{bottom:172.666803px;}
.y201{bottom:172.669203px;}
.y227{bottom:172.726803px;}
.ybc{bottom:172.961552px;}
.yee{bottom:173.004740px;}
.y113{bottom:173.502445px;}
.y102{bottom:173.516857px;}
.y28c{bottom:175.237930px;}
.y247{bottom:179.737953px;}
.y172{bottom:179.752353px;}
.y25f{bottom:179.759553px;}
.y146{bottom:179.766753px;}
.y2c9{bottom:180.342750px;}
.y305{bottom:181.842773px;}
.y55{bottom:183.556503px;}
.y7e{bottom:184.375645px;}
.y2e{bottom:190.565254px;}
.y1a0{bottom:190.662003px;}
.y1d2{bottom:190.705203px;}
.y226{bottom:190.719603px;}
.ybb{bottom:190.961552px;}
.yed{bottom:190.997540px;}
.y101{bottom:191.509657px;}
.y2c8{bottom:193.842750px;}
.y304{bottom:195.342773px;}
.y246{bottom:197.739453px;}
.y171{bottom:197.745153px;}
.y25e{bottom:197.752353px;}
.y145{bottom:197.759553px;}
.y54{bottom:201.578103px;}
.y28b{bottom:202.237930px;}
.y7d{bottom:202.368445px;}
.y2c7{bottom:207.342750px;}
.y2d{bottom:208.565254px;}
.y200{bottom:208.676403px;}
.y1d1{bottom:208.698003px;}
.y225{bottom:208.712403px;}
.y303{bottom:208.842773px;}
.yba{bottom:208.961540px;}
.yec{bottom:208.990340px;}
.y100{bottom:209.502457px;}
.y28a{bottom:215.737930px;}
.y170{bottom:215.737953px;}
.y245{bottom:215.738703px;}
.y25d{bottom:215.745153px;}
.y144{bottom:215.752353px;}
.y53{bottom:219.570903px;}
.y7c{bottom:220.361245px;}
.y2c6{bottom:220.842750px;}
.y2c{bottom:222.065254px;}
.y302{bottom:222.342773px;}
.y1ff{bottom:226.669203px;}
.y1d0{bottom:226.690803px;}
.y224{bottom:226.705203px;}
.yeb{bottom:226.983140px;}
.y112{bottom:227.516857px;}
.yff{bottom:227.538296px;}
.y2b{bottom:231.065254px;}
.y19f{bottom:232.237953px;}
.y16f{bottom:233.737953px;}
.y143{bottom:233.745153px;}
.y2c5{bottom:234.342750px;}
.y301{bottom:235.842773px;}
.y52{bottom:237.563703px;}
.y7b{bottom:238.354045px;}
.y289{bottom:242.737930px;}
.y1fe{bottom:244.662003px;}
.y1cf{bottom:244.683603px;}
.y223{bottom:244.698003px;}
.yea{bottom:244.975940px;}
.y111{bottom:245.509657px;}
.yfe{bottom:245.531096px;}
.y2c4{bottom:247.842750px;}
.y2a{bottom:249.067504px;}
.y300{bottom:249.342773px;}
.y19e{bottom:250.245153px;}
.y142{bottom:251.737953px;}
.y16e{bottom:251.745153px;}
.y51{bottom:255.556503px;}
.y288{bottom:256.237930px;}
.y7a{bottom:256.346845px;}
.yb9{bottom:256.884738px;}
.y29{bottom:258.065254px;}
.y2c3{bottom:261.342750px;}
.y1ce{bottom:262.676403px;}
.y222{bottom:262.690803px;}
.y1fd{bottom:262.734003px;}
.y2ff{bottom:262.842773px;}
.ye9{bottom:262.968740px;}
.y110{bottom:263.502457px;}
.yfd{bottom:263.523896px;}
.y19d{bottom:268.237953px;}
.y287{bottom:269.737930px;}
.y141{bottom:269.737953px;}
.y28{bottom:271.565254px;}
.y50{bottom:273.563543px;}
.y79{bottom:274.339645px;}
.yb8{bottom:274.877538px;}
.y2fe{bottom:276.342773px;}
.y1cd{bottom:280.669203px;}
.y221{bottom:280.683603px;}
.y1fc{bottom:280.726803px;}
.ye8{bottom:280.961540px;}
.y10f{bottom:281.509496px;}
.yfc{bottom:281.516696px;}
.y286{bottom:283.237930px;}
.y19c{bottom:286.245153px;}
.y140{bottom:287.737953px;}
.y244{bottom:287.838730px;}
.y2fd{bottom:289.842773px;}
.y4f{bottom:291.556343px;}
.y78{bottom:292.368445px;}
.yb7{bottom:292.870338px;}
.y1cc{bottom:298.662003px;}
.y220{bottom:298.676403px;}
.y1fb{bottom:298.719603px;}
.ye7{bottom:299.011780px;}
.y10e{bottom:299.502296px;}
.yfb{bottom:299.509496px;}
.y2fc{bottom:303.342773px;}
.y19b{bottom:304.237953px;}
.y13f{bottom:305.737953px;}
.y16d{bottom:305.766753px;}
.y243{bottom:305.831530px;}
.y4e{bottom:309.577943px;}
.y285{bottom:310.237930px;}
.y77{bottom:310.361245px;}
.yb6{bottom:310.863138px;}
.y1cb{bottom:316.666803px;}
.y21f{bottom:316.669203px;}
.y1fa{bottom:316.712403px;}
.y2fb{bottom:316.842773px;}
.ye6{bottom:317.004580px;}
.yfa{bottom:317.502296px;}
.y10d{bottom:317.511897px;}
.y19a{bottom:322.237953px;}
.y284{bottom:323.737930px;}
.y16c{bottom:323.759553px;}
.y25c{bottom:323.766730px;}
.y242{bottom:323.824330px;}
.y4d{bottom:327.570743px;}
.y76{bottom:328.354045px;}
.yb5{bottom:328.855938px;}
.y2c2{bottom:330.342750px;}
.y2fa{bottom:330.342773px;}
.y1ca{bottom:334.662003px;}
.y1f9{bottom:334.705203px;}
.ye5{bottom:334.997380px;}
.y10c{bottom:335.507097px;}
.yf9{bottom:335.531119px;}
.y283{bottom:337.237930px;}
.y199{bottom:340.245153px;}
.y16b{bottom:341.752353px;}
.y13e{bottom:341.759530px;}
.y241{bottom:341.817130px;}
.y2f9{bottom:343.842773px;}
.y1f{bottom:344.315094px;}
.y4c{bottom:345.563543px;}
.y75{bottom:346.346845px;}
.yb4{bottom:346.848738px;}
.y1c9{bottom:352.662753px;}
.y21e{bottom:352.690803px;}
.y1f8{bottom:352.698003px;}
.ye4{bottom:352.990180px;}
.y10b{bottom:353.502296px;}
.yf8{bottom:353.523919px;}
.y2c1{bottom:357.342750px;}
.y2f8{bottom:357.342773px;}
.y198{bottom:358.237953px;}
.y16a{bottom:359.745153px;}
.y13d{bottom:359.752330px;}
.y240{bottom:359.809930px;}
.y1e{bottom:362.315094px;}
.y4b{bottom:363.556343px;}
.y282{bottom:364.237930px;}
.y74{bottom:364.339645px;}
.yb3{bottom:364.841538px;}
.y1c8{bottom:370.662003px;}
.y21d{bottom:370.683603px;}
.y1f7{bottom:370.690803px;}
.y2c0{bottom:370.842728px;}
.y2f7{bottom:370.842773px;}
.ye3{bottom:370.982980px;}
.yf7{bottom:371.516719px;}
.y197{bottom:376.273930px;}
.y281{bottom:377.737930px;}
.y169{bottom:377.737953px;}
.y13c{bottom:377.745130px;}
.y23f{bottom:377.802730px;}
.y1d{bottom:380.315094px;}
.y4a{bottom:381.635566px;}
.y73{bottom:382.354045px;}
.yb2{bottom:382.834338px;}
.y2bf{bottom:384.342728px;}
.y2f6{bottom:384.342773px;}
.y21c{bottom:388.676403px;}
.y1f6{bottom:388.683603px;}
.ye2{bottom:388.975780px;}
.yf6{bottom:389.509519px;}
.y10a{bottom:389.519536px;}
.y280{bottom:391.237930px;}
.y196{bottom:394.266730px;}
.y13b{bottom:395.737930px;}
.y168{bottom:395.766730px;}
.y23e{bottom:395.795530px;}
.y2be{bottom:397.842728px;}
.y2f5{bottom:397.842773px;}
.y1c{bottom:398.315094px;}
.y49{bottom:399.628366px;}
.y72{bottom:400.346845px;}
.yb1{bottom:400.827138px;}
.y27f{bottom:404.737930px;}
.y21b{bottom:406.669203px;}
.y1f5{bottom:406.676403px;}
.ye1{bottom:406.968580px;}
.yf5{bottom:407.502319px;}
.y109{bottom:407.512336px;}
.y2f4{bottom:411.342773px;}
.y195{bottom:412.259530px;}
.y13a{bottom:413.742731px;}
.y25b{bottom:413.745130px;}
.y167{bottom:413.759530px;}
.y23d{bottom:413.788330px;}
.y2bd{bottom:415.842728px;}
.y1b{bottom:416.315094px;}
.y48{bottom:417.621166px;}
.y27e{bottom:418.237930px;}
.y71{bottom:418.339645px;}
.yb0{bottom:418.819938px;}
.y1c7{bottom:419.199921px;}
.y21a{bottom:424.662003px;}
.y1f4{bottom:424.669203px;}
.y2bc{bottom:424.842728px;}
.y2f3{bottom:424.842773px;}
.ye0{bottom:424.961380px;}
.y108{bottom:425.505136px;}
.yf4{bottom:425.509519px;}
.y139{bottom:431.737930px;}
.y166{bottom:431.752330px;}
.y23c{bottom:431.781130px;}
.y1a{bottom:434.315094px;}
.y47{bottom:435.613966px;}
.y70{bottom:436.354045px;}
.yaf{bottom:436.812738px;}
.y1c6{bottom:437.221521px;}
.y2bb{bottom:438.342728px;}
.y2f2{bottom:438.342773px;}
.y1f3{bottom:442.662003px;}
.y219{bottom:442.669203px;}
.ydf{bottom:442.961380px;}
.y107{bottom:443.497936px;}
.yf3{bottom:443.502319px;}
.y27d{bottom:445.237930px;}
.y194{bottom:449.009530px;}
.y165{bottom:449.745130px;}
.y25a{bottom:449.752330px;}
.y23b{bottom:449.773930px;}
.y2ba{bottom:451.842728px;}
.y2f1{bottom:451.842773px;}
.y19{bottom:452.315094px;}
.y46{bottom:453.606766px;}
.y6f{bottom:454.346845px;}
.yae{bottom:454.805538px;}
.y1c5{bottom:455.214321px;}
.y27c{bottom:458.737930px;}
.y218{bottom:460.662003px;}
.y1f2{bottom:460.698003px;}
.y2b9{bottom:465.342728px;}
.y2f0{bottom:465.342773px;}
.y193{bottom:467.002330px;}
.y164{bottom:467.737930px;}
.y138{bottom:467.745130px;}
.y23a{bottom:467.766730px;}
.y18{bottom:470.315094px;}
.y45{bottom:471.599566px;}
.y27b{bottom:472.237930px;}
.y6e{bottom:472.339645px;}
.yad{bottom:472.798338px;}
.y1c4{bottom:473.207121px;}
.y217{bottom:478.662003px;}
.y1f1{bottom:478.690803px;}
.y2b8{bottom:478.842728px;}
.y2ef{bottom:478.842773px;}
.yde{bottom:481.819938px;}
.y192{bottom:484.995130px;}
.y137{bottom:485.737930px;}
.y163{bottom:485.745130px;}
.y239{bottom:485.759530px;}
.y17{bottom:488.315094px;}
.y44{bottom:489.592366px;}
.y6d{bottom:490.346845px;}
.yac{bottom:490.791138px;}
.y1c3{bottom:491.199921px;}
.y2b7{bottom:492.342728px;}
.y2ee{bottom:492.342773px;}
.y1f0{bottom:496.683603px;}
.y216{bottom:496.726803px;}
.y27a{bottom:499.237930px;}
.ydd{bottom:499.812738px;}
.y191{bottom:502.987930px;}
.y162{bottom:503.737930px;}
.y259{bottom:503.745130px;}
.y136{bottom:503.752330px;}
.y117{bottom:504.740250px;}
.y2ed{bottom:505.842773px;}
.y16{bottom:506.315094px;}
.y43{bottom:507.585166px;}
.y6c{bottom:508.339645px;}
.yab{bottom:508.812738px;}
.y1c2{bottom:509.207121px;}
.y2b6{bottom:510.342728px;}
.y279{bottom:512.737930px;}
.y1ef{bottom:514.676403px;}
.y215{bottom:514.719603px;}
.ydc{bottom:517.805538px;}
.y2b5{bottom:519.342728px;}
.y2ec{bottom:519.342773px;}
.y190{bottom:521.023930px;}
.y161{bottom:521.737930px;}
.y135{bottom:521.745130px;}
.y15{bottom:524.315094px;}
.y42{bottom:525.577966px;}
.y278{bottom:526.237930px;}
.y6b{bottom:526.361245px;}
.yaa{bottom:526.805538px;}
.y1c1{bottom:527.199921px;}
.y1ee{bottom:532.669203px;}
.y214{bottom:532.712403px;}
.y2b4{bottom:532.842728px;}
.y2eb{bottom:532.842773px;}
.ydb{bottom:535.798338px;}
.y18f{bottom:539.016730px;}
.y134{bottom:539.737930px;}
.y258{bottom:539.752330px;}
.y41{bottom:543.570766px;}
.y6a{bottom:544.354045px;}
.ya9{bottom:544.798338px;}
.y1c0{bottom:545.199921px;}
.y2b3{bottom:546.342728px;}
.y2ea{bottom:546.342773px;}
.y14{bottom:546.815094px;}
.y1ed{bottom:550.662003px;}
.y213{bottom:550.705203px;}
.y277{bottom:553.237930px;}
.yda{bottom:553.791138px;}
.y18e{bottom:557.009530px;}
.y133{bottom:557.737930px;}
.y238{bottom:557.745130px;}
.y160{bottom:557.795530px;}
.y2b2{bottom:559.842728px;}
.y2e9{bottom:559.842773px;}
.y40{bottom:561.563566px;}
.y69{bottom:562.346845px;}
.ya8{bottom:562.791138px;}
.y1bf{bottom:563.257521px;}
.y276{bottom:566.737930px;}
.y1ec{bottom:568.698003px;}
.yd9{bottom:571.800738px;}
.y2b1{bottom:573.342728px;}
.y2e8{bottom:573.342773px;}
.y18d{bottom:575.002330px;}
.y237{bottom:575.737930px;}
.y132{bottom:575.752330px;}
.y15f{bottom:575.788330px;}
.y3f{bottom:579.556366px;}
.y68{bottom:580.339645px;}
.ya7{bottom:580.800738px;}
.y1be{bottom:581.250321px;}
.y1eb{bottom:586.690803px;}
.y2b0{bottom:586.842728px;}
.y2e7{bottom:586.842773px;}
.yd8{bottom:589.795938px;}
.y18c{bottom:592.995130px;}
.y131{bottom:593.745130px;}
.y15e{bottom:593.781130px;}
.y3e{bottom:597.613966px;}
.y67{bottom:598.354045px;}
.ya6{bottom:598.795938px;}
.y1bd{bottom:599.243121px;}
.y2af{bottom:600.342728px;}
.y2e6{bottom:600.342773px;}
.y1ea{bottom:604.683603px;}
.yd7{bottom:607.791138px;}
.y18b{bottom:610.987930px;}
.y130{bottom:611.737930px;}
.y275{bottom:611.759530px;}
.y15d{bottom:611.773930px;}
.y13{bottom:612.548112px;}
.y2ae{bottom:613.842728px;}
.y2e5{bottom:613.842773px;}
.y3d{bottom:615.606766px;}
.y66{bottom:616.346845px;}
.ya5{bottom:616.791138px;}
.y1bc{bottom:617.235921px;}
.y1e9{bottom:622.676403px;}
.y2ad{bottom:627.342728px;}
.y2e4{bottom:627.342773px;}
.y18a{bottom:628.987930px;}
.y274{bottom:629.752330px;}
.y12f{bottom:629.766730px;}
.y329{bottom:631.842728px;}
.y12{bottom:633.548112px;}
.y3c{bottom:633.599566px;}
.y65{bottom:634.339645px;}
.ya4{bottom:634.792638px;}
.y1bb{bottom:635.228721px;}
.y1e8{bottom:640.669203px;}
.y2ac{bottom:640.842728px;}
.y2e3{bottom:640.842773px;}
.y328{bottom:645.342728px;}
.yd6{bottom:646.649695px;}
.y189{bottom:647.009530px;}
.y273{bottom:647.745130px;}
.y12e{bottom:647.759530px;}
.y3b{bottom:651.592366px;}
.y64{bottom:652.339645px;}
.ya3{bottom:652.791888px;}
.y1ba{bottom:653.221521px;}
.y2ab{bottom:654.342728px;}
.y2e2{bottom:654.342773px;}
.y11{bottom:654.548112px;}
.y1e7{bottom:658.662003px;}
.y327{bottom:658.842728px;}
.yd5{bottom:664.642495px;}
.y188{bottom:665.002330px;}
.y272{bottom:665.737930px;}
.y12d{bottom:665.752330px;}
.y2aa{bottom:667.842728px;}
.y2e1{bottom:667.842773px;}
.y3a{bottom:669.585166px;}
.y63{bottom:670.346845px;}
.ya2{bottom:670.791138px;}
.y1b9{bottom:671.214321px;}
.y10{bottom:675.548112px;}
.y212{bottom:676.662003px;}
.y1e6{bottom:676.690803px;}
.y2a9{bottom:681.342728px;}
.y2e0{bottom:681.342773px;}
.yd4{bottom:682.635295px;}
.y187{bottom:682.995130px;}
.y12c{bottom:683.745130px;}
.y39{bottom:687.577966px;}
.y62{bottom:688.339645px;}
.y1b8{bottom:689.207121px;}
.y1e5{bottom:694.683603px;}
.y2a8{bottom:694.842728px;}
.y326{bottom:694.842765px;}
.y2df{bottom:694.842773px;}
.yf{bottom:696.548112px;}
.yd3{bottom:700.628095px;}
.y186{bottom:700.987930px;}
.y12b{bottom:701.737930px;}
.y38{bottom:705.570766px;}
.y61{bottom:706.382891px;}
.y1b7{bottom:707.199921px;}
.y2a7{bottom:708.342728px;}
.y325{bottom:708.342765px;}
.y2de{bottom:708.342773px;}
.y1e4{bottom:712.676403px;}
.ye{bottom:717.548112px;}
.ya1{bottom:718.620895px;}
.y185{bottom:719.016776px;}
.y236{bottom:719.737930px;}
.y12a{bottom:719.745130px;}
.y257{bottom:719.752330px;}
.y15c{bottom:719.752377px;}
.y271{bottom:719.809976px;}
.y2a6{bottom:721.842728px;}
.y324{bottom:721.842765px;}
.y2dd{bottom:721.842773px;}
.y37{bottom:723.563566px;}
.y60{bottom:724.375691px;}
.y1b6{bottom:725.199921px;}
.y211{bottom:725.214321px;}
.y1e3{bottom:730.669203px;}
.y2a5{bottom:735.342728px;}
.y323{bottom:735.342765px;}
.y2dc{bottom:735.342773px;}
.ya0{bottom:736.635341px;}
.yd2{bottom:736.642541px;}
.y184{bottom:737.009576px;}
.y129{bottom:737.737930px;}
.y256{bottom:737.745130px;}
.y15b{bottom:737.747577px;}
.y235{bottom:737.766776px;}
.y270{bottom:737.802776px;}
.yd{bottom:738.548112px;}
.y36{bottom:741.556366px;}
.y5f{bottom:742.368491px;}
.y210{bottom:743.207121px;}
.y1b5{bottom:743.214321px;}
.y1e2{bottom:748.662003px;}
.y2a4{bottom:748.842728px;}
.y322{bottom:748.842765px;}
.y2db{bottom:748.842773px;}
.y9f{bottom:754.628141px;}
.yd1{bottom:754.635341px;}
.y183{bottom:755.002376px;}
.y255{bottom:755.737930px;}
.y15a{bottom:755.742776px;}
.y234{bottom:755.759576px;}
.y128{bottom:755.781176px;}
.y26f{bottom:755.795576px;}
.yc{bottom:759.548112px;}
.y35{bottom:759.563658px;}
.y5e{bottom:760.361291px;}
.y20f{bottom:761.199921px;}
.y1b4{bottom:761.207121px;}
.y321{bottom:762.342765px;}
.y2da{bottom:762.342773px;}
.y1e1{bottom:766.690757px;}
.y2a3{bottom:766.842728px;}
.y9e{bottom:772.620941px;}
.yd0{bottom:772.628141px;}
.y182{bottom:772.995176px;}
.y159{bottom:773.737976px;}
.y233{bottom:773.752376px;}
.y127{bottom:773.773976px;}
.y254{bottom:773.781176px;}
.y26e{bottom:773.788376px;}
.y320{bottom:775.842765px;}
.y2a2{bottom:775.842773px;}
.y34{bottom:777.556458px;}
.y5d{bottom:778.354091px;}
.y1b3{bottom:779.199921px;}
.y20e{bottom:779.221521px;}
.yb{bottom:780.548112px;}
.y1e0{bottom:784.683557px;}
.y31f{bottom:789.342765px;}
.y2a1{bottom:789.342773px;}
.ycf{bottom:790.620941px;}
.y9d{bottom:790.714541px;}
.y181{bottom:790.987976px;}
.y232{bottom:791.745176px;}
.y126{bottom:791.766776px;}
.y253{bottom:791.773976px;}
.y26d{bottom:791.781176px;}
.y33{bottom:795.563658px;}
.y5c{bottom:796.346891px;}
.y20d{bottom:797.214321px;}
.y1b2{bottom:797.221521px;}
.ya{bottom:801.548112px;}
.y1df{bottom:802.676357px;}
.y31e{bottom:802.842765px;}
.y2a0{bottom:802.842773px;}
.yce{bottom:808.620941px;}
.y9c{bottom:808.707341px;}
.y180{bottom:808.995176px;}
.y231{bottom:809.737976px;}
.y125{bottom:809.759576px;}
.y158{bottom:809.766776px;}
.y26c{bottom:809.773976px;}
.y32{bottom:813.556458px;}
.y5b{bottom:814.339691px;}
.y20c{bottom:815.207121px;}
.y1b1{bottom:815.214321px;}
.y31d{bottom:816.342765px;}
.y2d9{bottom:816.342773px;}
.y1de{bottom:820.669157px;}
.y29f{bottom:820.842773px;}
.y9{bottom:822.548112px;}
.ycd{bottom:826.664141px;}
.y9b{bottom:826.700141px;}
.y17f{bottom:826.987976px;}
.y230{bottom:827.737976px;}
.y124{bottom:827.752376px;}
.y157{bottom:827.759576px;}
.y26b{bottom:827.766776px;}
.y31c{bottom:829.842765px;}
.y29e{bottom:829.842773px;}
.y31{bottom:831.556458px;}
.y5a{bottom:832.356003px;}
.y20b{bottom:833.199921px;}
.y1b0{bottom:833.207121px;}
.y1dd{bottom:838.661957px;}
.y31b{bottom:843.342765px;}
.y29d{bottom:843.342773px;}
.y8{bottom:843.548112px;}
.ycc{bottom:844.656941px;}
.y9a{bottom:844.692941px;}
.y123{bottom:845.745176px;}
.y156{bottom:845.752376px;}
.y26a{bottom:845.759576px;}
.y22f{bottom:845.817176px;}
.y1af{bottom:851.199921px;}
.y1dc{bottom:856.661957px;}
.y31a{bottom:856.842765px;}
.y29c{bottom:856.842773px;}
.ycb{bottom:862.649741px;}
.y99{bottom:862.685741px;}
.y122{bottom:863.737976px;}
.y155{bottom:863.745176px;}
.y269{bottom:863.752376px;}
.y22e{bottom:863.809976px;}
.y7{bottom:864.552612px;}
.y1ae{bottom:869.199921px;}
.y20a{bottom:869.209521px;}
.y319{bottom:870.342765px;}
.y29b{bottom:870.342773px;}
.y1db{bottom:874.661957px;}
.yca{bottom:880.642541px;}
.y98{bottom:880.678541px;}
.y154{bottom:881.737976px;}
.y268{bottom:881.745176px;}
.y17e{bottom:881.759576px;}
.y121{bottom:881.781176px;}
.y22d{bottom:881.802776px;}
.y318{bottom:883.842765px;}
.y29a{bottom:883.842773px;}
.y8b{bottom:883.925079px;}
.y1ad{bottom:887.199921px;}
.y209{bottom:887.204721px;}
.y317{bottom:897.342765px;}
.y299{bottom:897.342773px;}
.yc9{bottom:898.635341px;}
.y97{bottom:898.671341px;}
.y252{bottom:899.737976px;}
.y17d{bottom:899.752376px;}
.y153{bottom:899.766776px;}
.y120{bottom:899.773976px;}
.y22c{bottom:899.795576px;}
.y6{bottom:900.577528px;}
.y8a{bottom:901.925079px;}
.y1ac{bottom:905.199921px;}
.y316{bottom:910.842765px;}
.y298{bottom:910.842773px;}
.yc8{bottom:916.628141px;}
.y96{bottom:916.664141px;}
.y17c{bottom:917.745176px;}
.y267{bottom:917.752376px;}
.y152{bottom:917.759576px;}
.y11f{bottom:917.766776px;}
.y1da{bottom:917.788376px;}
.y89{bottom:919.925079px;}
.y315{bottom:924.342765px;}
.y2d8{bottom:924.342773px;}
.y297{bottom:928.842773px;}
.yc7{bottom:934.620941px;}
.y95{bottom:934.656941px;}
.y17b{bottom:935.737976px;}
.y266{bottom:935.745176px;}
.y151{bottom:935.752376px;}
.y11e{bottom:935.759576px;}
.y251{bottom:935.774253px;}
.y1d9{bottom:935.781176px;}
.y314{bottom:937.842765px;}
.y296{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y88{bottom:942.425079px;}
.y313{bottom:951.342765px;}
.y2d7{bottom:951.342773px;}
.yc6{bottom:952.620941px;}
.y94{bottom:952.649741px;}
.y17a{bottom:953.737976px;}
.y150{bottom:953.745176px;}
.y11d{bottom:953.752376px;}
.y208{bottom:953.766776px;}
.y250{bottom:953.767053px;}
.y1d8{bottom:953.773976px;}
.y1ab{bottom:953.783685px;}
.y295{bottom:955.842773px;}
.y87{bottom:960.425079px;}
.y294{bottom:964.841640px;}
.y312{bottom:964.842765px;}
.y2d6{bottom:964.842773px;}
.yc5{bottom:970.628141px;}
.y93{bottom:970.642541px;}
.y14f{bottom:971.737976px;}
.y11c{bottom:971.745176px;}
.y265{bottom:971.752376px;}
.y207{bottom:971.759576px;}
.y24f{bottom:971.759853px;}
.y179{bottom:971.766776px;}
.y1aa{bottom:971.776485px;}
.y311{bottom:978.342765px;}
.y2d5{bottom:978.342773px;}
.y86{bottom:978.425079px;}
.y4{bottom:978.553528px;}
.yc4{bottom:988.620941px;}
.y92{bottom:988.635341px;}
.y11b{bottom:989.737976px;}
.y264{bottom:989.745176px;}
.y206{bottom:989.752376px;}
.y24e{bottom:989.752653px;}
.y178{bottom:989.759576px;}
.y14e{bottom:989.759853px;}
.y1a9{bottom:989.769285px;}
.y293{bottom:991.841640px;}
.y310{bottom:991.842765px;}
.y2d4{bottom:991.842773px;}
.y85{bottom:996.425079px;}
.y292{bottom:1005.341640px;}
.y30f{bottom:1005.342765px;}
.y2d3{bottom:1005.342773px;}
.y91{bottom:1006.628141px;}
.yc3{bottom:1006.657332px;}
.y11a{bottom:1007.737976px;}
.y205{bottom:1007.745176px;}
.y24d{bottom:1007.745453px;}
.y177{bottom:1007.752376px;}
.y14d{bottom:1007.752653px;}
.y1a8{bottom:1007.762085px;}
.y84{bottom:1014.425079px;}
.y30e{bottom:1018.842765px;}
.y2d2{bottom:1018.842773px;}
.y90{bottom:1024.620941px;}
.yc2{bottom:1024.650132px;}
.y204{bottom:1025.737976px;}
.y24c{bottom:1025.738253px;}
.y119{bottom:1025.745176px;}
.y14c{bottom:1025.745453px;}
.y1a7{bottom:1025.754885px;}
.y291{bottom:1032.341640px;}
.y30d{bottom:1032.342765px;}
.y2d1{bottom:1032.342773px;}
.y83{bottom:1032.425079px;}
.y3{bottom:1033.362579px;}
.y27{bottom:1035.750183px;}
.y8f{bottom:1042.620941px;}
.yc1{bottom:1042.642932px;}
.y24b{bottom:1043.731053px;}
.y118{bottom:1043.737976px;}
.y14b{bottom:1043.738253px;}
.y1a6{bottom:1043.747685px;}
.y290{bottom:1045.841640px;}
.y30c{bottom:1045.842765px;}
.y2d0{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.y8c{bottom:1126.524628px;}
.y2f{bottom:1126.524719px;}
.y8e{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y8d{bottom:1127.300079px;}
.y30{bottom:1127.304719px;}
.he{height:27.814500px;}
.hb{height:37.086000px;}
.hc{height:39.735000px;}
.h17{height:42.840000px;}
.h15{height:43.740000px;}
.h3{height:45.696000px;}
.hf{height:45.744000px;}
.hd{height:45.814500px;}
.h16{height:45.814589px;}
.h2{height:47.232000px;}
.h13{height:47.472000px;}
.ha{height:52.980000px;}
.h12{height:53.654399px;}
.h14{height:54.625200px;}
.h10{height:55.860000px;}
.h11{height:58.320000px;}
.h9{height:61.120200px;}
.h6{height:67.194379px;}
.h7{height:67.212379px;}
.h8{height:67.212562px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:95.880900px;}
.x7{left:97.034552px;}
.xe{left:107.539352px;}
.xb{left:115.027352px;}
.x4{left:270.817497px;}
.x8{left:457.081498px;}
.x9{left:469.081794px;}
.xc{left:479.586594px;}
.x5{left:694.929886px;}
.xd{left:741.068390px;}
.x6{left:747.224258px;}
@media print{
.v4{vertical-align:-16.008000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:23.466471pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls9{letter-spacing:-0.731733pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.261333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.000063pt;}
.ls8{letter-spacing:0.313600pt;}
.ls7{letter-spacing:0.695147pt;}
.ls5{letter-spacing:0.700373pt;}
.ls4{letter-spacing:0.731733pt;}
.ls6{letter-spacing:0.736960pt;}
.ls0{letter-spacing:4.853333pt;}
.ws1{word-spacing:-18.858667pt;}
.wsa{word-spacing:-13.014400pt;}
.ws57{word-spacing:-12.596267pt;}
.wsd5{word-spacing:-12.387200pt;}
.wsaa{word-spacing:-12.282667pt;}
.ws11c{word-spacing:-12.021333pt;}
.wsc{word-spacing:-11.680000pt;}
.wsa9{word-spacing:-11.550933pt;}
.ws3{word-spacing:-11.096533pt;}
.wsb{word-spacing:-11.040000pt;}
.ws55{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws56{word-spacing:-8.979200pt;}
.ws4{word-spacing:-8.760000pt;}
.ws142{word-spacing:-8.440000pt;}
.ws13c{word-spacing:-8.280000pt;}
.ws9{word-spacing:-7.242667pt;}
.ws5{word-spacing:-6.132000pt;}
.ws8{word-spacing:-2.464000pt;}
.ws7{word-spacing:-2.053333pt;}
.wsf9{word-spacing:-2.032533pt;}
.ws141{word-spacing:-1.680000pt;}
.ws140{word-spacing:-1.400000pt;}
.ws102{word-spacing:-1.358933pt;}
.ws28{word-spacing:-1.306667pt;}
.ws104{word-spacing:-1.202133pt;}
.ws119{word-spacing:-1.097600pt;}
.ws79{word-spacing:-0.993067pt;}
.ws129{word-spacing:-0.836267pt;}
.ws112{word-spacing:-0.784000pt;}
.ws2d{word-spacing:-0.731733pt;}
.wsc2{word-spacing:-0.679467pt;}
.wsbd{word-spacing:-0.522667pt;}
.wsee{word-spacing:-0.470400pt;}
.ws4f{word-spacing:-0.418133pt;}
.ws88{word-spacing:-0.365867pt;}
.ws1f{word-spacing:-0.313600pt;}
.wsfd{word-spacing:-0.209067pt;}
.ws143{word-spacing:-0.200000pt;}
.ws34{word-spacing:-0.156800pt;}
.ws8d{word-spacing:-0.104533pt;}
.ws144{word-spacing:-0.080000pt;}
.ws110{word-spacing:-0.052267pt;}
.ws145{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.104533pt;}
.ws113{word-spacing:0.209067pt;}
.wsd0{word-spacing:0.261333pt;}
.ws53{word-spacing:0.313600pt;}
.ws4b{word-spacing:0.418133pt;}
.wsba{word-spacing:0.470400pt;}
.wsbf{word-spacing:0.574933pt;}
.ws10e{word-spacing:0.627200pt;}
.wscb{word-spacing:0.679467pt;}
.ws63{word-spacing:0.731733pt;}
.ws65{word-spacing:0.784000pt;}
.ws107{word-spacing:0.836267pt;}
.wsd7{word-spacing:0.940800pt;}
.wsb6{word-spacing:1.045333pt;}
.ws3f{word-spacing:1.097600pt;}
.ws2e{word-spacing:1.202133pt;}
.wscd{word-spacing:1.254400pt;}
.ws126{word-spacing:1.306667pt;}
.ws137{word-spacing:1.358933pt;}
.wsec{word-spacing:1.411200pt;}
.wsb2{word-spacing:1.463467pt;}
.wsa6{word-spacing:1.515733pt;}
.ws98{word-spacing:1.568000pt;}
.wsa8{word-spacing:1.620267pt;}
.ws83{word-spacing:1.672533pt;}
.ws136{word-spacing:1.777067pt;}
.ws122{word-spacing:1.829333pt;}
.wsbb{word-spacing:1.881600pt;}
.ws2f{word-spacing:2.038400pt;}
.wsac{word-spacing:2.090667pt;}
.ws7f{word-spacing:2.142933pt;}
.ws2b{word-spacing:2.195200pt;}
.ws9e{word-spacing:2.247467pt;}
.wsf2{word-spacing:2.352000pt;}
.ws6b{word-spacing:2.404267pt;}
.ws27{word-spacing:2.456533pt;}
.ws94{word-spacing:2.508800pt;}
.ws22{word-spacing:2.561067pt;}
.wsbc{word-spacing:2.613333pt;}
.ws97{word-spacing:2.665600pt;}
.ws11{word-spacing:2.717867pt;}
.ws4a{word-spacing:2.770133pt;}
.ws71{word-spacing:2.822400pt;}
.ws15{word-spacing:2.874667pt;}
.wse5{word-spacing:2.926933pt;}
.ws6c{word-spacing:2.979200pt;}
.wsb9{word-spacing:3.083733pt;}
.wsf5{word-spacing:3.136000pt;}
.wse0{word-spacing:3.188267pt;}
.wsab{word-spacing:3.240533pt;}
.wsd2{word-spacing:3.292800pt;}
.wsd4{word-spacing:3.345067pt;}
.ws18{word-spacing:3.397333pt;}
.ws101{word-spacing:3.449600pt;}
.ws29{word-spacing:3.501867pt;}
.ws5b{word-spacing:3.554133pt;}
.ws3e{word-spacing:3.606400pt;}
.ws32{word-spacing:3.658667pt;}
.ws128{word-spacing:3.710933pt;}
.ws50{word-spacing:3.763200pt;}
.wsd{word-spacing:3.815467pt;}
.ws90{word-spacing:3.867733pt;}
.wscf{word-spacing:3.972267pt;}
.ws42{word-spacing:4.024533pt;}
.ws6e{word-spacing:4.076800pt;}
.wsb7{word-spacing:4.129067pt;}
.ws6f{word-spacing:4.181333pt;}
.ws1d{word-spacing:4.233600pt;}
.ws11a{word-spacing:4.285867pt;}
.ws41{word-spacing:4.338133pt;}
.ws40{word-spacing:4.390400pt;}
.wsfb{word-spacing:4.442667pt;}
.wsd1{word-spacing:4.494933pt;}
.ws47{word-spacing:4.599467pt;}
.ws80{word-spacing:4.651733pt;}
.wsd3{word-spacing:4.704000pt;}
.ws109{word-spacing:4.756267pt;}
.ws117{word-spacing:4.808533pt;}
.ws135{word-spacing:4.860800pt;}
.wsb8{word-spacing:4.913067pt;}
.ws36{word-spacing:4.965333pt;}
.ws31{word-spacing:5.017600pt;}
.ws85{word-spacing:5.069867pt;}
.ws26{word-spacing:5.122133pt;}
.wsb0{word-spacing:5.174400pt;}
.ws96{word-spacing:5.226667pt;}
.ws23{word-spacing:5.278933pt;}
.wsb5{word-spacing:5.331200pt;}
.ws59{word-spacing:5.383467pt;}
.ws39{word-spacing:5.488000pt;}
.wse{word-spacing:5.540267pt;}
.wsc9{word-spacing:5.644800pt;}
.ws43{word-spacing:5.697067pt;}
.ws17{word-spacing:5.801600pt;}
.wsad{word-spacing:5.853867pt;}
.wscc{word-spacing:5.906133pt;}
.ws75{word-spacing:6.010667pt;}
.ws105{word-spacing:6.062933pt;}
.ws67{word-spacing:6.115200pt;}
.ws8e{word-spacing:6.167467pt;}
.wsfa{word-spacing:6.219733pt;}
.ws10c{word-spacing:6.324267pt;}
.ws7a{word-spacing:6.376533pt;}
.wsf7{word-spacing:6.428800pt;}
.ws7b{word-spacing:6.481067pt;}
.ws5d{word-spacing:6.533333pt;}
.ws8f{word-spacing:6.585600pt;}
.ws2a{word-spacing:6.637867pt;}
.ws20{word-spacing:6.742400pt;}
.ws78{word-spacing:6.794667pt;}
.ws54{word-spacing:6.899200pt;}
.ws60{word-spacing:6.951467pt;}
.wsed{word-spacing:7.003733pt;}
.ws1b{word-spacing:7.056000pt;}
.ws70{word-spacing:7.108267pt;}
.wsa7{word-spacing:7.160533pt;}
.wse9{word-spacing:7.265067pt;}
.ws114{word-spacing:7.317333pt;}
.ws16{word-spacing:7.421867pt;}
.ws19{word-spacing:7.474133pt;}
.ws21{word-spacing:7.526400pt;}
.wsde{word-spacing:7.578667pt;}
.wsf8{word-spacing:7.630933pt;}
.ws9a{word-spacing:7.683200pt;}
.wsf1{word-spacing:7.735467pt;}
.ws48{word-spacing:7.787733pt;}
.ws10b{word-spacing:7.840000pt;}
.ws33{word-spacing:7.944533pt;}
.ws72{word-spacing:7.996800pt;}
.ws121{word-spacing:8.049067pt;}
.wsdf{word-spacing:8.153600pt;}
.ws25{word-spacing:8.258133pt;}
.wsf3{word-spacing:8.310400pt;}
.ws44{word-spacing:8.362667pt;}
.ws91{word-spacing:8.414933pt;}
.wsf6{word-spacing:8.467200pt;}
.ws46{word-spacing:8.519467pt;}
.wsc7{word-spacing:8.676267pt;}
.ws4c{word-spacing:8.728533pt;}
.ws100{word-spacing:8.780800pt;}
.ws3b{word-spacing:8.937600pt;}
.wsa2{word-spacing:8.989867pt;}
.ws118{word-spacing:9.042133pt;}
.wsef{word-spacing:9.146667pt;}
.wsc5{word-spacing:9.198933pt;}
.wsdd{word-spacing:9.251200pt;}
.ws138{word-spacing:9.408000pt;}
.ws5c{word-spacing:9.460267pt;}
.ws1e{word-spacing:9.512533pt;}
.wsc4{word-spacing:9.564800pt;}
.ws61{word-spacing:9.669333pt;}
.ws134{word-spacing:9.721600pt;}
.ws11f{word-spacing:9.773867pt;}
.ws14{word-spacing:9.826133pt;}
.ws7c{word-spacing:9.878400pt;}
.ws37{word-spacing:9.930667pt;}
.ws64{word-spacing:10.139733pt;}
.ws51{word-spacing:10.192000pt;}
.ws127{word-spacing:10.244267pt;}
.wsf4{word-spacing:10.296533pt;}
.ws6a{word-spacing:10.348800pt;}
.ws13e{word-spacing:10.453333pt;}
.ws9f{word-spacing:10.505600pt;}
.ws95{word-spacing:10.662400pt;}
.ws30{word-spacing:10.714667pt;}
.ws3d{word-spacing:10.766933pt;}
.ws11b{word-spacing:10.819200pt;}
.wsa3{word-spacing:10.871467pt;}
.ws3a{word-spacing:10.923733pt;}
.wsd6{word-spacing:10.976000pt;}
.ws10a{word-spacing:11.028267pt;}
.ws76{word-spacing:11.080533pt;}
.ws38{word-spacing:11.132800pt;}
.ws1c{word-spacing:11.185067pt;}
.ws7e{word-spacing:11.237333pt;}
.ws35{word-spacing:11.289600pt;}
.wsae{word-spacing:11.341867pt;}
.ws8c{word-spacing:11.394133pt;}
.ws24{word-spacing:11.446400pt;}
.wse8{word-spacing:11.498667pt;}
.wsa5{word-spacing:11.550933pt;}
.wsd9{word-spacing:11.603200pt;}
.ws12{word-spacing:11.760000pt;}
.ws9c{word-spacing:11.812267pt;}
.wsa4{word-spacing:11.864533pt;}
.ws5a{word-spacing:11.969067pt;}
.wsce{word-spacing:12.021333pt;}
.wsa1{word-spacing:12.073600pt;}
.ws49{word-spacing:12.230400pt;}
.ws2c{word-spacing:12.282667pt;}
.wseb{word-spacing:12.387200pt;}
.ws10d{word-spacing:12.544000pt;}
.wsc6{word-spacing:12.648533pt;}
.wsca{word-spacing:12.700800pt;}
.ws92{word-spacing:12.753067pt;}
.ws9b{word-spacing:12.805333pt;}
.ws108{word-spacing:12.857600pt;}
.ws8b{word-spacing:12.909867pt;}
.wsb4{word-spacing:12.962133pt;}
.ws120{word-spacing:13.118933pt;}
.wse4{word-spacing:13.171200pt;}
.wse6{word-spacing:13.484800pt;}
.ws52{word-spacing:13.537067pt;}
.ws116{word-spacing:13.746133pt;}
.ws139{word-spacing:13.798400pt;}
.ws106{word-spacing:13.902933pt;}
.ws1a{word-spacing:14.007467pt;}
.wsea{word-spacing:14.059733pt;}
.ws5e{word-spacing:14.112000pt;}
.ws3c{word-spacing:14.164267pt;}
.ws5f{word-spacing:14.268800pt;}
.ws66{word-spacing:14.634667pt;}
.wsb3{word-spacing:14.791467pt;}
.ws11d{word-spacing:14.843733pt;}
.wsd8{word-spacing:14.896000pt;}
.wsff{word-spacing:15.000533pt;}
.ws11e{word-spacing:15.157333pt;}
.ws69{word-spacing:15.209600pt;}
.wsf0{word-spacing:15.366400pt;}
.ws6d{word-spacing:15.470933pt;}
.ws89{word-spacing:15.627733pt;}
.ws131{word-spacing:15.680000pt;}
.ws82{word-spacing:15.784533pt;}
.ws73{word-spacing:15.941333pt;}
.ws12b{word-spacing:15.993600pt;}
.ws62{word-spacing:16.202667pt;}
.ws93{word-spacing:16.411733pt;}
.ws4d{word-spacing:16.568533pt;}
.ws86{word-spacing:16.882133pt;}
.wsfe{word-spacing:16.934400pt;}
.wsaf{word-spacing:16.986667pt;}
.ws13{word-spacing:17.038933pt;}
.ws13a{word-spacing:17.352533pt;}
.wse2{word-spacing:17.457067pt;}
.ws132{word-spacing:17.561600pt;}
.ws125{word-spacing:17.666133pt;}
.wsdb{word-spacing:17.770667pt;}
.ws10{word-spacing:17.822933pt;}
.ws74{word-spacing:17.875200pt;}
.ws68{word-spacing:17.927467pt;}
.ws87{word-spacing:17.979733pt;}
.wsc0{word-spacing:18.084267pt;}
.ws13f{word-spacing:18.188800pt;}
.ws123{word-spacing:18.450133pt;}
.wsbe{word-spacing:18.868267pt;}
.wsc8{word-spacing:19.025067pt;}
.ws103{word-spacing:19.077333pt;}
.ws115{word-spacing:19.129600pt;}
.ws84{word-spacing:19.286400pt;}
.wsc1{word-spacing:20.070400pt;}
.ws77{word-spacing:20.174933pt;}
.ws133{word-spacing:20.279467pt;}
.wse7{word-spacing:20.331733pt;}
.ws111{word-spacing:20.488533pt;}
.wse1{word-spacing:20.593067pt;}
.wsc3{word-spacing:21.063467pt;}
.wse3{word-spacing:21.272533pt;}
.ws13d{word-spacing:21.377067pt;}
.ws99{word-spacing:21.638400pt;}
.ws7d{word-spacing:21.742933pt;}
.wsf{word-spacing:21.795200pt;}
.wsfc{word-spacing:21.847467pt;}
.ws8a{word-spacing:22.317867pt;}
.wsdc{word-spacing:22.579200pt;}
.wsa0{word-spacing:22.631467pt;}
.ws9d{word-spacing:23.101867pt;}
.ws58{word-spacing:23.624533pt;}
.ws4e{word-spacing:24.251733pt;}
.ws124{word-spacing:24.722133pt;}
.ws45{word-spacing:25.192533pt;}
.ws12c{word-spacing:25.244800pt;}
.ws13b{word-spacing:25.297067pt;}
.ws10f{word-spacing:25.924267pt;}
.wsda{word-spacing:28.642133pt;}
.ws12a{word-spacing:31.882667pt;}
.ws12d{word-spacing:33.712000pt;}
.ws81{word-spacing:38.572800pt;}
.ws130{word-spacing:50.332800pt;}
.ws12e{word-spacing:51.116800pt;}
.ws12f{word-spacing:60.158933pt;}
._11{margin-left:-15.521067pt;}
._10{margin-left:-11.705618pt;}
._6{margin-left:-10.752000pt;}
._7{margin-left:-8.723200pt;}
._f{margin-left:-7.474149pt;}
._9{margin-left:-5.958400pt;}
._2{margin-left:-4.998933pt;}
._3{margin-left:-3.328000pt;}
._1{margin-left:-2.080000pt;}
._0{margin-left:-1.028267pt;}
._5{width:1.670400pt;}
._4{width:3.072000pt;}
._14{width:4.862933pt;}
._13{width:6.788267pt;}
._d{width:8.665600pt;}
._a{width:10.115734pt;}
._e{width:11.185067pt;}
._b{width:13.364587pt;}
._c{width:15.054923pt;}
._16{width:19.808000pt;}
._12{width:28.224000pt;}
._8{width:34.891210pt;}
._15{width:39.328000pt;}
.fs9{font-size:28.000000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:69.165462pt;}
.y25{bottom:79.833462pt;}
.y2cf{bottom:88.304667pt;}
.y1a5{bottom:89.483736pt;}
.y1d7{bottom:89.496536pt;}
.y22b{bottom:89.560536pt;}
.y30b{bottom:89.638021pt;}
.yc0{bottom:89.769201pt;}
.yf2{bottom:89.807591pt;}
.y106{bottom:90.224396pt;}
.y24{bottom:90.501462pt;}
.y24a{bottom:95.767069pt;}
.y14a{bottom:95.773469pt;}
.y176{bottom:95.805469pt;}
.y263{bottom:95.811869pt;}
.y59{bottom:99.174136pt;}
.y82{bottom:99.915063pt;}
.y2ce{bottom:100.304667pt;}
.y23{bottom:101.169462pt;}
.y30a{bottom:101.638021pt;}
.y1a4{bottom:105.477336pt;}
.y1d6{bottom:105.490136pt;}
.y22a{bottom:105.554136pt;}
.ybf{bottom:105.762801pt;}
.yf1{bottom:105.801191pt;}
.y116{bottom:106.230796pt;}
.y105{bottom:106.256406pt;}
.y28f{bottom:107.767049pt;}
.y149{bottom:111.767069pt;}
.y175{bottom:111.799069pt;}
.y262{bottom:111.805469pt;}
.y22{bottom:111.837462pt;}
.y2cd{bottom:112.304667pt;}
.y309{bottom:113.638021pt;}
.y58{bottom:115.167736pt;}
.y81{bottom:115.908663pt;}
.y28e{bottom:119.767049pt;}
.y1d5{bottom:121.483736pt;}
.y1a3{bottom:121.490137pt;}
.y203{bottom:121.496536pt;}
.y229{bottom:121.547736pt;}
.ybe{bottom:121.756401pt;}
.yf0{bottom:121.794791pt;}
.y115{bottom:122.224396pt;}
.y104{bottom:122.250006pt;}
.y21{bottom:122.505462pt;}
.y2cc{bottom:124.304667pt;}
.y308{bottom:125.638021pt;}
.y249{bottom:127.775603pt;}
.y174{bottom:127.792669pt;}
.y261{bottom:127.799069pt;}
.y148{bottom:127.805469pt;}
.y57{bottom:131.161336pt;}
.y80{bottom:131.902263pt;}
.y20{bottom:133.173462pt;}
.y2cb{bottom:136.304667pt;}
.y1d4{bottom:137.477336pt;}
.y1a2{bottom:137.485870pt;}
.y202{bottom:137.490136pt;}
.y228{bottom:137.541336pt;}
.y307{bottom:137.638021pt;}
.ybd{bottom:137.750001pt;}
.yef{bottom:137.788391pt;}
.y114{bottom:138.224396pt;}
.y103{bottom:138.243606pt;}
.y28d{bottom:143.767049pt;}
.y248{bottom:143.771336pt;}
.y173{bottom:143.786269pt;}
.y260{bottom:143.792669pt;}
.y147{bottom:143.799069pt;}
.y56{bottom:147.167736pt;}
.y7f{bottom:147.895863pt;}
.y2ca{bottom:148.304667pt;}
.y306{bottom:149.638021pt;}
.y1d3{bottom:153.477336pt;}
.y1a1{bottom:153.481603pt;}
.y201{bottom:153.483736pt;}
.y227{bottom:153.534936pt;}
.ybc{bottom:153.743601pt;}
.yee{bottom:153.781991pt;}
.y113{bottom:154.224396pt;}
.y102{bottom:154.237206pt;}
.y28c{bottom:155.767049pt;}
.y247{bottom:159.767069pt;}
.y172{bottom:159.779869pt;}
.y25f{bottom:159.786269pt;}
.y146{bottom:159.792669pt;}
.y2c9{bottom:160.304667pt;}
.y305{bottom:161.638021pt;}
.y55{bottom:163.161336pt;}
.y7e{bottom:163.889463pt;}
.y2e{bottom:169.391337pt;}
.y1a0{bottom:169.477336pt;}
.y1d2{bottom:169.515736pt;}
.y226{bottom:169.528536pt;}
.ybb{bottom:169.743601pt;}
.yed{bottom:169.775591pt;}
.y101{bottom:170.230806pt;}
.y2c8{bottom:172.304667pt;}
.y304{bottom:173.638021pt;}
.y246{bottom:175.768403pt;}
.y171{bottom:175.773469pt;}
.y25e{bottom:175.779869pt;}
.y145{bottom:175.786269pt;}
.y54{bottom:179.180536pt;}
.y28b{bottom:179.767049pt;}
.y7d{bottom:179.883063pt;}
.y2c7{bottom:184.304667pt;}
.y2d{bottom:185.391337pt;}
.y200{bottom:185.490136pt;}
.y1d1{bottom:185.509336pt;}
.y225{bottom:185.522136pt;}
.y303{bottom:185.638021pt;}
.yba{bottom:185.743591pt;}
.yec{bottom:185.769191pt;}
.y100{bottom:186.224406pt;}
.y28a{bottom:191.767049pt;}
.y170{bottom:191.767069pt;}
.y245{bottom:191.767736pt;}
.y25d{bottom:191.773469pt;}
.y144{bottom:191.779869pt;}
.y53{bottom:195.174136pt;}
.y7c{bottom:195.876663pt;}
.y2c6{bottom:196.304667pt;}
.y2c{bottom:197.391337pt;}
.y302{bottom:197.638021pt;}
.y1ff{bottom:201.483736pt;}
.y1d0{bottom:201.502936pt;}
.y224{bottom:201.515736pt;}
.yeb{bottom:201.762791pt;}
.y112{bottom:202.237206pt;}
.yff{bottom:202.256264pt;}
.y2b{bottom:205.391337pt;}
.y19f{bottom:206.433736pt;}
.y16f{bottom:207.767069pt;}
.y143{bottom:207.773469pt;}
.y2c5{bottom:208.304667pt;}
.y301{bottom:209.638021pt;}
.y52{bottom:211.167736pt;}
.y7b{bottom:211.870263pt;}
.y289{bottom:215.767049pt;}
.y1fe{bottom:217.477336pt;}
.y1cf{bottom:217.496536pt;}
.y223{bottom:217.509336pt;}
.yea{bottom:217.756391pt;}
.y111{bottom:218.230806pt;}
.yfe{bottom:218.249864pt;}
.y2c4{bottom:220.304667pt;}
.y2a{bottom:221.393337pt;}
.y300{bottom:221.638021pt;}
.y19e{bottom:222.440136pt;}
.y142{bottom:223.767069pt;}
.y16e{bottom:223.773469pt;}
.y51{bottom:227.161336pt;}
.y288{bottom:227.767049pt;}
.y7a{bottom:227.863863pt;}
.yb9{bottom:228.341989pt;}
.y29{bottom:229.391337pt;}
.y2c3{bottom:232.304667pt;}
.y1ce{bottom:233.490136pt;}
.y222{bottom:233.502936pt;}
.y1fd{bottom:233.541336pt;}
.y2ff{bottom:233.638021pt;}
.ye9{bottom:233.749991pt;}
.y110{bottom:234.224406pt;}
.yfd{bottom:234.243464pt;}
.y19d{bottom:238.433736pt;}
.y287{bottom:239.767049pt;}
.y141{bottom:239.767069pt;}
.y28{bottom:241.391337pt;}
.y50{bottom:243.167594pt;}
.y79{bottom:243.857463pt;}
.yb8{bottom:244.335589pt;}
.y2fe{bottom:245.638021pt;}
.y1cd{bottom:249.483736pt;}
.y221{bottom:249.496536pt;}
.y1fc{bottom:249.534936pt;}
.ye8{bottom:249.743591pt;}
.y10f{bottom:250.230664pt;}
.yfc{bottom:250.237064pt;}
.y286{bottom:251.767049pt;}
.y19c{bottom:254.440136pt;}
.y140{bottom:255.767069pt;}
.y244{bottom:255.856649pt;}
.y2fd{bottom:257.638021pt;}
.y4f{bottom:259.161194pt;}
.y78{bottom:259.883063pt;}
.yb7{bottom:260.329189pt;}
.y1cc{bottom:265.477336pt;}
.y220{bottom:265.490136pt;}
.y1fb{bottom:265.528536pt;}
.ye7{bottom:265.788249pt;}
.y10e{bottom:266.224264pt;}
.yfb{bottom:266.230664pt;}
.y2fc{bottom:269.638021pt;}
.y19b{bottom:270.433736pt;}
.y13f{bottom:271.767069pt;}
.y16d{bottom:271.792669pt;}
.y243{bottom:271.850249pt;}
.y4e{bottom:275.180394pt;}
.y285{bottom:275.767049pt;}
.y77{bottom:275.876663pt;}
.yb6{bottom:276.322789pt;}
.y1cb{bottom:281.481603pt;}
.y21f{bottom:281.483736pt;}
.y1fa{bottom:281.522136pt;}
.y2fb{bottom:281.638021pt;}
.ye6{bottom:281.781849pt;}
.yfa{bottom:282.224264pt;}
.y10d{bottom:282.232798pt;}
.y19a{bottom:286.433736pt;}
.y284{bottom:287.767049pt;}
.y16c{bottom:287.786269pt;}
.y25c{bottom:287.792649pt;}
.y242{bottom:287.843849pt;}
.y4d{bottom:291.173994pt;}
.y76{bottom:291.870263pt;}
.yb5{bottom:292.316389pt;}
.y2c2{bottom:293.638000pt;}
.y2fa{bottom:293.638021pt;}
.y1ca{bottom:297.477336pt;}
.y1f9{bottom:297.515736pt;}
.ye5{bottom:297.775449pt;}
.y10c{bottom:298.228531pt;}
.yf9{bottom:298.249884pt;}
.y283{bottom:299.767049pt;}
.y199{bottom:302.440136pt;}
.y16b{bottom:303.779869pt;}
.y13e{bottom:303.786249pt;}
.y241{bottom:303.837449pt;}
.y2f9{bottom:305.638021pt;}
.y1f{bottom:306.057861pt;}
.y4c{bottom:307.167594pt;}
.y75{bottom:307.863863pt;}
.yb4{bottom:308.309989pt;}
.y1c9{bottom:313.478002pt;}
.y21e{bottom:313.502936pt;}
.y1f8{bottom:313.509336pt;}
.ye4{bottom:313.769049pt;}
.y10b{bottom:314.224264pt;}
.yf8{bottom:314.243484pt;}
.y2c1{bottom:317.638000pt;}
.y2f8{bottom:317.638021pt;}
.y198{bottom:318.433736pt;}
.y16a{bottom:319.773469pt;}
.y13d{bottom:319.779849pt;}
.y240{bottom:319.831049pt;}
.y1e{bottom:322.057861pt;}
.y4b{bottom:323.161194pt;}
.y282{bottom:323.767049pt;}
.y74{bottom:323.857463pt;}
.yb3{bottom:324.303589pt;}
.y1c8{bottom:329.477336pt;}
.y21d{bottom:329.496536pt;}
.y1f7{bottom:329.502936pt;}
.y2c0{bottom:329.637980pt;}
.y2f7{bottom:329.638021pt;}
.ye3{bottom:329.762649pt;}
.yf7{bottom:330.237084pt;}
.y197{bottom:334.465716pt;}
.y281{bottom:335.767049pt;}
.y169{bottom:335.767069pt;}
.y13c{bottom:335.773449pt;}
.y23f{bottom:335.824649pt;}
.y1d{bottom:338.057861pt;}
.y4a{bottom:339.231614pt;}
.y73{bottom:339.870263pt;}
.yb2{bottom:340.297189pt;}
.y2bf{bottom:341.637980pt;}
.y2f6{bottom:341.638021pt;}
.y21c{bottom:345.490136pt;}
.y1f6{bottom:345.496536pt;}
.ye2{bottom:345.756249pt;}
.yf6{bottom:346.230684pt;}
.y10a{bottom:346.239588pt;}
.y280{bottom:347.767049pt;}
.y196{bottom:350.459316pt;}
.y13b{bottom:351.767049pt;}
.y168{bottom:351.792649pt;}
.y23e{bottom:351.818249pt;}
.y2be{bottom:353.637980pt;}
.y2f5{bottom:353.638021pt;}
.y1c{bottom:354.057861pt;}
.y49{bottom:355.225214pt;}
.y72{bottom:355.863863pt;}
.yb1{bottom:356.290789pt;}
.y27f{bottom:359.767049pt;}
.y21b{bottom:361.483736pt;}
.y1f5{bottom:361.490136pt;}
.ye1{bottom:361.749849pt;}
.yf5{bottom:362.224284pt;}
.y109{bottom:362.233188pt;}
.y2f4{bottom:365.638021pt;}
.y195{bottom:366.452916pt;}
.y13a{bottom:367.771316pt;}
.y25b{bottom:367.773449pt;}
.y167{bottom:367.786249pt;}
.y23d{bottom:367.811849pt;}
.y2bd{bottom:369.637980pt;}
.y1b{bottom:370.057861pt;}
.y48{bottom:371.218814pt;}
.y27e{bottom:371.767049pt;}
.y71{bottom:371.857463pt;}
.yb0{bottom:372.284389pt;}
.y1c7{bottom:372.622152pt;}
.y21a{bottom:377.477336pt;}
.y1f4{bottom:377.483736pt;}
.y2bc{bottom:377.637980pt;}
.y2f3{bottom:377.638021pt;}
.ye0{bottom:377.743449pt;}
.y108{bottom:378.226788pt;}
.yf4{bottom:378.230684pt;}
.y139{bottom:383.767049pt;}
.y166{bottom:383.779849pt;}
.y23c{bottom:383.805449pt;}
.y1a{bottom:386.057861pt;}
.y47{bottom:387.212414pt;}
.y70{bottom:387.870263pt;}
.yaf{bottom:388.277989pt;}
.y1c6{bottom:388.641352pt;}
.y2bb{bottom:389.637980pt;}
.y2f2{bottom:389.638021pt;}
.y1f3{bottom:393.477336pt;}
.y219{bottom:393.483736pt;}
.ydf{bottom:393.743449pt;}
.y107{bottom:394.220388pt;}
.yf3{bottom:394.224284pt;}
.y27d{bottom:395.767049pt;}
.y194{bottom:399.119582pt;}
.y165{bottom:399.773449pt;}
.y25a{bottom:399.779849pt;}
.y23b{bottom:399.799049pt;}
.y2ba{bottom:401.637980pt;}
.y2f1{bottom:401.638021pt;}
.y19{bottom:402.057861pt;}
.y46{bottom:403.206014pt;}
.y6f{bottom:403.863863pt;}
.yae{bottom:404.271589pt;}
.y1c5{bottom:404.634952pt;}
.y27c{bottom:407.767049pt;}
.y218{bottom:409.477336pt;}
.y1f2{bottom:409.509336pt;}
.y2b9{bottom:413.637980pt;}
.y2f0{bottom:413.638021pt;}
.y193{bottom:415.113182pt;}
.y164{bottom:415.767049pt;}
.y138{bottom:415.773449pt;}
.y23a{bottom:415.792649pt;}
.y18{bottom:418.057861pt;}
.y45{bottom:419.199614pt;}
.y27b{bottom:419.767049pt;}
.y6e{bottom:419.857463pt;}
.yad{bottom:420.265189pt;}
.y1c4{bottom:420.628552pt;}
.y217{bottom:425.477336pt;}
.y1f1{bottom:425.502936pt;}
.y2b8{bottom:425.637980pt;}
.y2ef{bottom:425.638021pt;}
.yde{bottom:428.284389pt;}
.y192{bottom:431.106782pt;}
.y137{bottom:431.767049pt;}
.y163{bottom:431.773449pt;}
.y239{bottom:431.786249pt;}
.y17{bottom:434.057861pt;}
.y44{bottom:435.193214pt;}
.y6d{bottom:435.863863pt;}
.yac{bottom:436.258789pt;}
.y1c3{bottom:436.622152pt;}
.y2b7{bottom:437.637980pt;}
.y2ee{bottom:437.638021pt;}
.y1f0{bottom:441.496536pt;}
.y216{bottom:441.534936pt;}
.y27a{bottom:443.767049pt;}
.ydd{bottom:444.277989pt;}
.y191{bottom:447.100382pt;}
.y162{bottom:447.767049pt;}
.y259{bottom:447.773449pt;}
.y136{bottom:447.779849pt;}
.y117{bottom:448.658000pt;}
.y2ed{bottom:449.638021pt;}
.y16{bottom:450.057861pt;}
.y43{bottom:451.186814pt;}
.y6c{bottom:451.857463pt;}
.yab{bottom:452.277989pt;}
.y1c2{bottom:452.628552pt;}
.y2b6{bottom:453.637980pt;}
.y279{bottom:455.767049pt;}
.y1ef{bottom:457.490136pt;}
.y215{bottom:457.528536pt;}
.ydc{bottom:460.271589pt;}
.y2b5{bottom:461.637980pt;}
.y2ec{bottom:461.638021pt;}
.y190{bottom:463.132382pt;}
.y161{bottom:463.767049pt;}
.y135{bottom:463.773449pt;}
.y15{bottom:466.057861pt;}
.y42{bottom:467.180414pt;}
.y278{bottom:467.767049pt;}
.y6b{bottom:467.876663pt;}
.yaa{bottom:468.271589pt;}
.y1c1{bottom:468.622152pt;}
.y1ee{bottom:473.483736pt;}
.y214{bottom:473.522136pt;}
.y2b4{bottom:473.637980pt;}
.y2eb{bottom:473.638021pt;}
.ydb{bottom:476.265189pt;}
.y18f{bottom:479.125982pt;}
.y134{bottom:479.767049pt;}
.y258{bottom:479.779849pt;}
.y41{bottom:483.174014pt;}
.y6a{bottom:483.870263pt;}
.ya9{bottom:484.265189pt;}
.y1c0{bottom:484.622152pt;}
.y2b3{bottom:485.637980pt;}
.y2ea{bottom:485.638021pt;}
.y14{bottom:486.057861pt;}
.y1ed{bottom:489.477336pt;}
.y213{bottom:489.515736pt;}
.y277{bottom:491.767049pt;}
.yda{bottom:492.258789pt;}
.y18e{bottom:495.119582pt;}
.y133{bottom:495.767049pt;}
.y238{bottom:495.773449pt;}
.y160{bottom:495.818249pt;}
.y2b2{bottom:497.637980pt;}
.y2e9{bottom:497.638021pt;}
.y40{bottom:499.167614pt;}
.y69{bottom:499.863863pt;}
.ya8{bottom:500.258789pt;}
.y1bf{bottom:500.673352pt;}
.y276{bottom:503.767049pt;}
.y1ec{bottom:505.509336pt;}
.yd9{bottom:508.267323pt;}
.y2b1{bottom:509.637980pt;}
.y2e8{bottom:509.638021pt;}
.y18d{bottom:511.113182pt;}
.y237{bottom:511.767049pt;}
.y132{bottom:511.779849pt;}
.y15f{bottom:511.811849pt;}
.y3f{bottom:515.161214pt;}
.y68{bottom:515.857463pt;}
.ya7{bottom:516.267323pt;}
.y1be{bottom:516.666952pt;}
.y1eb{bottom:521.502936pt;}
.y2b0{bottom:521.637980pt;}
.y2e7{bottom:521.638021pt;}
.yd8{bottom:524.263056pt;}
.y18c{bottom:527.106782pt;}
.y131{bottom:527.773449pt;}
.y15e{bottom:527.805449pt;}
.y3e{bottom:531.212414pt;}
.y67{bottom:531.870263pt;}
.ya6{bottom:532.263056pt;}
.y1bd{bottom:532.660552pt;}
.y2af{bottom:533.637980pt;}
.y2e6{bottom:533.638021pt;}
.y1ea{bottom:537.496536pt;}
.yd7{bottom:540.258789pt;}
.y18b{bottom:543.100382pt;}
.y130{bottom:543.767049pt;}
.y275{bottom:543.786249pt;}
.y15d{bottom:543.799049pt;}
.y13{bottom:544.487211pt;}
.y2ae{bottom:545.637980pt;}
.y2e5{bottom:545.638021pt;}
.y3d{bottom:547.206014pt;}
.y66{bottom:547.863863pt;}
.ya5{bottom:548.258789pt;}
.y1bc{bottom:548.654152pt;}
.y1e9{bottom:553.490136pt;}
.y2ad{bottom:557.637980pt;}
.y2e4{bottom:557.638021pt;}
.y18a{bottom:559.100382pt;}
.y274{bottom:559.779849pt;}
.y12f{bottom:559.792649pt;}
.y329{bottom:561.637980pt;}
.y12{bottom:563.153878pt;}
.y3c{bottom:563.199614pt;}
.y65{bottom:563.857463pt;}
.ya4{bottom:564.260122pt;}
.y1bb{bottom:564.647752pt;}
.y1e8{bottom:569.483736pt;}
.y2ac{bottom:569.637980pt;}
.y2e3{bottom:569.638021pt;}
.y328{bottom:573.637980pt;}
.yd6{bottom:574.799729pt;}
.y189{bottom:575.119582pt;}
.y273{bottom:575.773449pt;}
.y12e{bottom:575.786249pt;}
.y3b{bottom:579.193214pt;}
.y64{bottom:579.857463pt;}
.ya3{bottom:580.259456pt;}
.y1ba{bottom:580.641352pt;}
.y2ab{bottom:581.637980pt;}
.y2e2{bottom:581.638021pt;}
.y11{bottom:581.820544pt;}
.y1e7{bottom:585.477336pt;}
.y327{bottom:585.637980pt;}
.yd5{bottom:590.793329pt;}
.y188{bottom:591.113182pt;}
.y272{bottom:591.767049pt;}
.y12d{bottom:591.779849pt;}
.y2aa{bottom:593.637980pt;}
.y2e1{bottom:593.638021pt;}
.y3a{bottom:595.186814pt;}
.y63{bottom:595.863863pt;}
.ya2{bottom:596.258789pt;}
.y1b9{bottom:596.634952pt;}
.y10{bottom:600.487211pt;}
.y212{bottom:601.477336pt;}
.y1e6{bottom:601.502936pt;}
.y2a9{bottom:605.637980pt;}
.y2e0{bottom:605.638021pt;}
.yd4{bottom:606.786929pt;}
.y187{bottom:607.106782pt;}
.y12c{bottom:607.773449pt;}
.y39{bottom:611.180414pt;}
.y62{bottom:611.857463pt;}
.y1b8{bottom:612.628552pt;}
.y1e5{bottom:617.496536pt;}
.y2a8{bottom:617.637980pt;}
.y326{bottom:617.638013pt;}
.y2df{bottom:617.638021pt;}
.yf{bottom:619.153878pt;}
.yd3{bottom:622.780529pt;}
.y186{bottom:623.100382pt;}
.y12b{bottom:623.767049pt;}
.y38{bottom:627.174014pt;}
.y61{bottom:627.895903pt;}
.y1b7{bottom:628.622152pt;}
.y2a7{bottom:629.637980pt;}
.y325{bottom:629.638013pt;}
.y2de{bottom:629.638021pt;}
.y1e4{bottom:633.490136pt;}
.ye{bottom:637.820544pt;}
.ya1{bottom:638.774129pt;}
.y185{bottom:639.126023pt;}
.y236{bottom:639.767049pt;}
.y12a{bottom:639.773449pt;}
.y257{bottom:639.779849pt;}
.y15c{bottom:639.779891pt;}
.y271{bottom:639.831090pt;}
.y2a6{bottom:641.637980pt;}
.y324{bottom:641.638013pt;}
.y2dd{bottom:641.638021pt;}
.y37{bottom:643.167614pt;}
.y60{bottom:643.889503pt;}
.y1b6{bottom:644.622152pt;}
.y211{bottom:644.634952pt;}
.y1e3{bottom:649.483736pt;}
.y2a5{bottom:653.637980pt;}
.y323{bottom:653.638013pt;}
.y2dc{bottom:653.638021pt;}
.ya0{bottom:654.786970pt;}
.yd2{bottom:654.793370pt;}
.y184{bottom:655.119623pt;}
.y129{bottom:655.767049pt;}
.y256{bottom:655.773449pt;}
.y15b{bottom:655.775624pt;}
.y235{bottom:655.792690pt;}
.y270{bottom:655.824690pt;}
.yd{bottom:656.487211pt;}
.y36{bottom:659.161214pt;}
.y5f{bottom:659.883103pt;}
.y210{bottom:660.628552pt;}
.y1b5{bottom:660.634952pt;}
.y1e2{bottom:665.477336pt;}
.y2a4{bottom:665.637980pt;}
.y322{bottom:665.638013pt;}
.y2db{bottom:665.638021pt;}
.y9f{bottom:670.780570pt;}
.yd1{bottom:670.786970pt;}
.y183{bottom:671.113223pt;}
.y255{bottom:671.767049pt;}
.y15a{bottom:671.771357pt;}
.y234{bottom:671.786290pt;}
.y128{bottom:671.805490pt;}
.y26f{bottom:671.818290pt;}
.yc{bottom:675.153878pt;}
.y35{bottom:675.167696pt;}
.y5e{bottom:675.876703pt;}
.y20f{bottom:676.622152pt;}
.y1b4{bottom:676.628552pt;}
.y321{bottom:677.638013pt;}
.y2da{bottom:677.638021pt;}
.y1e1{bottom:681.502895pt;}
.y2a3{bottom:681.637980pt;}
.y9e{bottom:686.774170pt;}
.yd0{bottom:686.780570pt;}
.y182{bottom:687.106823pt;}
.y159{bottom:687.767090pt;}
.y233{bottom:687.779890pt;}
.y127{bottom:687.799090pt;}
.y254{bottom:687.805490pt;}
.y26e{bottom:687.811890pt;}
.y320{bottom:689.638013pt;}
.y2a2{bottom:689.638021pt;}
.y34{bottom:691.161296pt;}
.y5d{bottom:691.870303pt;}
.y1b3{bottom:692.622152pt;}
.y20e{bottom:692.641352pt;}
.yb{bottom:693.820544pt;}
.y1e0{bottom:697.496495pt;}
.y31f{bottom:701.638013pt;}
.y2a1{bottom:701.638021pt;}
.ycf{bottom:702.774170pt;}
.y9d{bottom:702.857370pt;}
.y181{bottom:703.100423pt;}
.y232{bottom:703.773490pt;}
.y126{bottom:703.792690pt;}
.y253{bottom:703.799090pt;}
.y26d{bottom:703.805490pt;}
.y33{bottom:707.167696pt;}
.y5c{bottom:707.863903pt;}
.y20d{bottom:708.634952pt;}
.y1b2{bottom:708.641352pt;}
.ya{bottom:712.487211pt;}
.y1df{bottom:713.490095pt;}
.y31e{bottom:713.638013pt;}
.y2a0{bottom:713.638021pt;}
.yce{bottom:718.774170pt;}
.y9c{bottom:718.850970pt;}
.y180{bottom:719.106823pt;}
.y231{bottom:719.767090pt;}
.y125{bottom:719.786290pt;}
.y158{bottom:719.792690pt;}
.y26c{bottom:719.799090pt;}
.y32{bottom:723.161296pt;}
.y5b{bottom:723.857503pt;}
.y20c{bottom:724.628552pt;}
.y1b1{bottom:724.634952pt;}
.y31d{bottom:725.638013pt;}
.y2d9{bottom:725.638021pt;}
.y1de{bottom:729.483695pt;}
.y29f{bottom:729.638021pt;}
.y9{bottom:731.153878pt;}
.ycd{bottom:734.812570pt;}
.y9b{bottom:734.844570pt;}
.y17f{bottom:735.100423pt;}
.y230{bottom:735.767090pt;}
.y124{bottom:735.779890pt;}
.y157{bottom:735.786290pt;}
.y26b{bottom:735.792690pt;}
.y31c{bottom:737.638013pt;}
.y29e{bottom:737.638021pt;}
.y31{bottom:739.161296pt;}
.y5a{bottom:739.872003pt;}
.y20b{bottom:740.622152pt;}
.y1b0{bottom:740.628552pt;}
.y1dd{bottom:745.477295pt;}
.y31b{bottom:749.638013pt;}
.y29d{bottom:749.638021pt;}
.y8{bottom:749.820544pt;}
.ycc{bottom:750.806170pt;}
.y9a{bottom:750.838170pt;}
.y123{bottom:751.773490pt;}
.y156{bottom:751.779890pt;}
.y26a{bottom:751.786290pt;}
.y22f{bottom:751.837490pt;}
.y1af{bottom:756.622152pt;}
.y1dc{bottom:761.477295pt;}
.y31a{bottom:761.638013pt;}
.y29c{bottom:761.638021pt;}
.ycb{bottom:766.799770pt;}
.y99{bottom:766.831770pt;}
.y122{bottom:767.767090pt;}
.y155{bottom:767.773490pt;}
.y269{bottom:767.779890pt;}
.y22e{bottom:767.831090pt;}
.y7{bottom:768.491211pt;}
.y1ae{bottom:772.622152pt;}
.y20a{bottom:772.630686pt;}
.y319{bottom:773.638013pt;}
.y29b{bottom:773.638021pt;}
.y1db{bottom:777.477295pt;}
.yca{bottom:782.793370pt;}
.y98{bottom:782.825370pt;}
.y154{bottom:783.767090pt;}
.y268{bottom:783.773490pt;}
.y17e{bottom:783.786290pt;}
.y121{bottom:783.805490pt;}
.y22d{bottom:783.824690pt;}
.y318{bottom:785.638013pt;}
.y29a{bottom:785.638021pt;}
.y8b{bottom:785.711182pt;}
.y1ad{bottom:788.622152pt;}
.y209{bottom:788.626419pt;}
.y317{bottom:797.638013pt;}
.y299{bottom:797.638021pt;}
.yc9{bottom:798.786970pt;}
.y97{bottom:798.818970pt;}
.y252{bottom:799.767090pt;}
.y17d{bottom:799.779890pt;}
.y153{bottom:799.792690pt;}
.y120{bottom:799.799090pt;}
.y22c{bottom:799.818290pt;}
.y6{bottom:800.513358pt;}
.y8a{bottom:801.711182pt;}
.y1ac{bottom:804.622152pt;}
.y316{bottom:809.638013pt;}
.y298{bottom:809.638021pt;}
.yc8{bottom:814.780570pt;}
.y96{bottom:814.812570pt;}
.y17c{bottom:815.773490pt;}
.y267{bottom:815.779890pt;}
.y152{bottom:815.786290pt;}
.y11f{bottom:815.792690pt;}
.y1da{bottom:815.811890pt;}
.y89{bottom:817.711182pt;}
.y315{bottom:821.638013pt;}
.y2d8{bottom:821.638021pt;}
.y297{bottom:825.638021pt;}
.yc7{bottom:830.774170pt;}
.y95{bottom:830.806170pt;}
.y17b{bottom:831.767090pt;}
.y266{bottom:831.773490pt;}
.y151{bottom:831.779890pt;}
.y11e{bottom:831.786290pt;}
.y251{bottom:831.799336pt;}
.y1d9{bottom:831.805490pt;}
.y314{bottom:833.638013pt;}
.y296{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y88{bottom:837.711182pt;}
.y313{bottom:845.638013pt;}
.y2d7{bottom:845.638021pt;}
.yc6{bottom:846.774170pt;}
.y94{bottom:846.799770pt;}
.y17a{bottom:847.767090pt;}
.y150{bottom:847.773490pt;}
.y11d{bottom:847.779890pt;}
.y208{bottom:847.792690pt;}
.y250{bottom:847.792936pt;}
.y1d8{bottom:847.799090pt;}
.y1ab{bottom:847.807720pt;}
.y295{bottom:849.638021pt;}
.y87{bottom:853.711182pt;}
.y294{bottom:857.637014pt;}
.y312{bottom:857.638013pt;}
.y2d6{bottom:857.638021pt;}
.yc5{bottom:862.780570pt;}
.y93{bottom:862.793370pt;}
.y14f{bottom:863.767090pt;}
.y11c{bottom:863.773490pt;}
.y265{bottom:863.779890pt;}
.y207{bottom:863.786290pt;}
.y24f{bottom:863.786536pt;}
.y179{bottom:863.792690pt;}
.y1aa{bottom:863.801320pt;}
.y311{bottom:869.638013pt;}
.y2d5{bottom:869.638021pt;}
.y86{bottom:869.711182pt;}
.y4{bottom:869.825358pt;}
.yc4{bottom:878.774170pt;}
.y92{bottom:878.786970pt;}
.y11b{bottom:879.767090pt;}
.y264{bottom:879.773490pt;}
.y206{bottom:879.779890pt;}
.y24e{bottom:879.780136pt;}
.y178{bottom:879.786290pt;}
.y14e{bottom:879.786536pt;}
.y1a9{bottom:879.794920pt;}
.y293{bottom:881.637014pt;}
.y310{bottom:881.638013pt;}
.y2d4{bottom:881.638021pt;}
.y85{bottom:885.711182pt;}
.y292{bottom:893.637014pt;}
.y30f{bottom:893.638013pt;}
.y2d3{bottom:893.638021pt;}
.y91{bottom:894.780570pt;}
.yc3{bottom:894.806517pt;}
.y11a{bottom:895.767090pt;}
.y205{bottom:895.773490pt;}
.y24d{bottom:895.773736pt;}
.y177{bottom:895.779890pt;}
.y14d{bottom:895.780136pt;}
.y1a8{bottom:895.788520pt;}
.y84{bottom:901.711182pt;}
.y30e{bottom:905.638013pt;}
.y2d2{bottom:905.638021pt;}
.y90{bottom:910.774170pt;}
.yc2{bottom:910.800117pt;}
.y204{bottom:911.767090pt;}
.y24c{bottom:911.767336pt;}
.y119{bottom:911.773490pt;}
.y14c{bottom:911.773736pt;}
.y1a7{bottom:911.782120pt;}
.y291{bottom:917.637014pt;}
.y30d{bottom:917.638013pt;}
.y2d1{bottom:917.638021pt;}
.y83{bottom:917.711182pt;}
.y3{bottom:918.544515pt;}
.y27{bottom:920.666829pt;}
.y8f{bottom:926.774170pt;}
.yc1{bottom:926.793717pt;}
.y24b{bottom:927.760936pt;}
.y118{bottom:927.767090pt;}
.y14b{bottom:927.767336pt;}
.y1a6{bottom:927.775720pt;}
.y290{bottom:929.637014pt;}
.y30c{bottom:929.638013pt;}
.y2d0{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.y8c{bottom:1001.355225pt;}
.y2f{bottom:1001.355306pt;}
.y8e{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y8d{bottom:1002.044515pt;}
.y30{bottom:1002.048639pt;}
.he{height:24.724000pt;}
.hb{height:32.965333pt;}
.hc{height:35.320000pt;}
.h17{height:38.080000pt;}
.h15{height:38.880000pt;}
.h3{height:40.618667pt;}
.hf{height:40.661333pt;}
.hd{height:40.724000pt;}
.h16{height:40.724079pt;}
.h2{height:41.984000pt;}
.h13{height:42.197333pt;}
.ha{height:47.093333pt;}
.h12{height:47.692799pt;}
.h14{height:48.555733pt;}
.h10{height:49.653333pt;}
.h11{height:51.840000pt;}
.h9{height:54.329067pt;}
.h6{height:59.728337pt;}
.h7{height:59.744337pt;}
.h8{height:59.744500pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:85.227467pt;}
.x7{left:86.252935pt;}
.xe{left:95.590535pt;}
.xb{left:102.246535pt;}
.x4{left:240.726664pt;}
.x8{left:406.294665pt;}
.x9{left:416.961594pt;}
.xc{left:426.299194pt;}
.x5{left:617.715454pt;}
.xd{left:658.727458pt;}
.x6{left:664.199341pt;}
}




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