
    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_838edbc7f6eb33c27294412a.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_c67f208b586fe0f51b158bf7.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_74cb0842703ab73d20670942.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_4bd354cff46d6aaba202449a.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_ad0c00c3c0255184e0029b18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_0697a0fc9bc86412231c408e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a888d940b7f1af6e051c44fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_c20de4ba6910b5c51a09fa10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_eff93dd3664b3cfca59b0229.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690000;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_6cca46d389b0953ada964b88.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ebdcb31448a156867550ab17.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_14e8c5f6babe93cdb2b4f7d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc372d7fb1699fc12b09325b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e26f3240ce7de9d3166d8f85.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a7a727d1480780f86914d38.woff2')format("woff");}.fff{font-family:fff;line-height:1.027000;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.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v8{vertical-align:3.402000px;}
.v7{vertical-align:18.000000px;}
.v5{vertical-align:19.218146px;}
.v4{vertical-align:23.116881px;}
.v2{vertical-align:26.399780px;}
.v6{vertical-align:54.000000px;}
.lse{letter-spacing:-2.175600px;}
.ls3{letter-spacing:-1.050000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls10{letter-spacing:0.000025px;}
.ls9{letter-spacing:0.000047px;}
.ls12{letter-spacing:0.150130px;}
.ls13{letter-spacing:0.225194px;}
.lsa{letter-spacing:0.352800px;}
.ls7{letter-spacing:0.575900px;}
.lsb{letter-spacing:0.576005px;}
.lsc{letter-spacing:0.576554px;}
.ls8{letter-spacing:0.799680px;}
.ls4{letter-spacing:0.823200px;}
.ls5{letter-spacing:0.829080px;}
.ls6{letter-spacing:0.834960px;}
.ls14{letter-spacing:1.125972px;}
.lsf{letter-spacing:1.176000px;}
.ls11{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.lsd{letter-spacing:420.816000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.216000px;}
.wsa8{word-spacing:-14.641200px;}
.ws58{word-spacing:-14.170800px;}
.ws4f{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws119{word-spacing:-12.310630px;}
.ws84{word-spacing:-11.642400px;}
.ws118{word-spacing:-11.559982px;}
.wsec{word-spacing:-11.426400px;}
.ws117{word-spacing:-10.659204px;}
.ws116{word-spacing:-10.584140px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wseb{word-spacing:-9.855000px;}
.wsae{word-spacing:-9.672600px;}
.wsea{word-spacing:-9.315000px;}
.ws6{word-spacing:-8.148000px;}
.ws112{word-spacing:-7.965000px;}
.ws110{word-spacing:-6.898500px;}
.ws1c{word-spacing:-6.468000px;}
.ws83{word-spacing:-4.512000px;}
.wsad{word-spacing:-3.936000px;}
.ws115{word-spacing:-3.870000px;}
.ws11a{word-spacing:-1.876621px;}
.ws113{word-spacing:-1.575000px;}
.ws16{word-spacing:-0.823200px;}
.wsb2{word-spacing:-0.646800px;}
.wsf2{word-spacing:-0.588000px;}
.ws76{word-spacing:-0.529200px;}
.wsdf{word-spacing:-0.470400px;}
.ws29{word-spacing:-0.352800px;}
.wsf4{word-spacing:-0.294000px;}
.ws7d{word-spacing:-0.235200px;}
.ws114{word-spacing:-0.180000px;}
.wsa2{word-spacing:-0.117600px;}
.wsd8{word-spacing:-0.058800px;}
.ws7{word-spacing:-0.041160px;}
.ws111{word-spacing:-0.031500px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.117600px;}
.wsb8{word-spacing:0.176400px;}
.ws53{word-spacing:0.235200px;}
.ws77{word-spacing:0.294000px;}
.wsa3{word-spacing:0.411600px;}
.ws9a{word-spacing:0.529200px;}
.ws27{word-spacing:0.588000px;}
.wsc7{word-spacing:0.646800px;}
.ws7b{word-spacing:0.705600px;}
.ws97{word-spacing:0.764400px;}
.ws9c{word-spacing:0.940800px;}
.ws10c{word-spacing:1.058400px;}
.wsb3{word-spacing:1.117200px;}
.ws9e{word-spacing:1.176000px;}
.wsc5{word-spacing:1.234800px;}
.ws65{word-spacing:1.293600px;}
.ws69{word-spacing:1.352400px;}
.wsed{word-spacing:1.411200px;}
.ws75{word-spacing:1.528800px;}
.wsd7{word-spacing:1.646400px;}
.ws98{word-spacing:1.705200px;}
.ws15{word-spacing:1.764000px;}
.ws4d{word-spacing:1.822800px;}
.ws68{word-spacing:1.881600px;}
.wsf{word-spacing:1.999200px;}
.ws94{word-spacing:2.116800px;}
.wsd2{word-spacing:2.175600px;}
.wse{word-spacing:2.234400px;}
.ws9f{word-spacing:2.293200px;}
.ws2a{word-spacing:2.352000px;}
.ws47{word-spacing:2.469600px;}
.ws45{word-spacing:2.528400px;}
.ws2f{word-spacing:2.587200px;}
.wsd1{word-spacing:2.704800px;}
.wsb9{word-spacing:2.763600px;}
.wsfd{word-spacing:2.822400px;}
.ws40{word-spacing:2.881200px;}
.ws7a{word-spacing:2.998800px;}
.wsa0{word-spacing:3.116400px;}
.ws74{word-spacing:3.234000px;}
.wsd6{word-spacing:3.292800px;}
.ws46{word-spacing:3.351600px;}
.ws103{word-spacing:3.410400px;}
.wsc9{word-spacing:3.528000px;}
.ws93{word-spacing:3.586800px;}
.wse6{word-spacing:3.645600px;}
.wsb5{word-spacing:3.939600px;}
.ws66{word-spacing:3.998400px;}
.wse9{word-spacing:4.057200px;}
.ws26{word-spacing:4.116000px;}
.wsd4{word-spacing:4.174800px;}
.ws7c{word-spacing:4.233600px;}
.wsc0{word-spacing:4.292400px;}
.wsd9{word-spacing:4.351200px;}
.wsf8{word-spacing:4.410000px;}
.ws90{word-spacing:4.468800px;}
.ws8f{word-spacing:4.527600px;}
.ws2b{word-spacing:4.586400px;}
.ws28{word-spacing:4.645200px;}
.ws44{word-spacing:4.704000px;}
.ws31{word-spacing:4.762800px;}
.wse5{word-spacing:4.821600px;}
.ws13{word-spacing:4.880400px;}
.ws105{word-spacing:4.939200px;}
.ws104{word-spacing:4.998000px;}
.ws12{word-spacing:5.056800px;}
.ws10{word-spacing:5.115600px;}
.wsa6{word-spacing:5.233200px;}
.ws10f{word-spacing:5.292000px;}
.wsde{word-spacing:5.350800px;}
.ws4c{word-spacing:5.409600px;}
.wsca{word-spacing:5.527200px;}
.wsf7{word-spacing:5.703600px;}
.ws101{word-spacing:5.762400px;}
.wsef{word-spacing:5.821200px;}
.wsfc{word-spacing:5.880000px;}
.ws10d{word-spacing:5.938800px;}
.wsc2{word-spacing:5.997600px;}
.ws37{word-spacing:6.056400px;}
.wsf6{word-spacing:6.174000px;}
.ws1a{word-spacing:6.232800px;}
.ws5a{word-spacing:6.350400px;}
.ws67{word-spacing:6.409200px;}
.ws80{word-spacing:6.468000px;}
.ws59{word-spacing:6.526800px;}
.wsc{word-spacing:6.585600px;}
.ws7f{word-spacing:6.644400px;}
.wsd0{word-spacing:6.879600px;}
.ws35{word-spacing:6.938400px;}
.wsc3{word-spacing:6.997200px;}
.wsd5{word-spacing:7.056000px;}
.ws99{word-spacing:7.173600px;}
.ws9{word-spacing:7.232400px;}
.wsa5{word-spacing:7.350000px;}
.wsf3{word-spacing:7.408800px;}
.ws102{word-spacing:7.467600px;}
.ws14{word-spacing:7.526400px;}
.ws9b{word-spacing:7.585200px;}
.wsc8{word-spacing:7.644000px;}
.ws1b{word-spacing:7.761600px;}
.wsb4{word-spacing:7.879200px;}
.ws5e{word-spacing:7.996800px;}
.ws72{word-spacing:8.173200px;}
.wsb7{word-spacing:8.232000px;}
.wsf9{word-spacing:8.290800px;}
.ws22{word-spacing:8.349600px;}
.wsb{word-spacing:8.408400px;}
.ws64{word-spacing:8.467200px;}
.wsaf{word-spacing:8.526000px;}
.wsa9{word-spacing:8.584800px;}
.ws107{word-spacing:8.643600px;}
.ws10e{word-spacing:8.820000px;}
.ws96{word-spacing:8.878800px;}
.wscb{word-spacing:8.937600px;}
.ws43{word-spacing:8.996400px;}
.ws19{word-spacing:9.055200px;}
.ws79{word-spacing:9.172800px;}
.ws2d{word-spacing:9.231600px;}
.ws1f{word-spacing:9.290400px;}
.ws33{word-spacing:9.349200px;}
.ws73{word-spacing:9.408000px;}
.ws54{word-spacing:9.466800px;}
.wsfb{word-spacing:9.525600px;}
.wsce{word-spacing:9.584400px;}
.ws42{word-spacing:9.702000px;}
.ws62{word-spacing:9.819600px;}
.ws4b{word-spacing:9.878400px;}
.ws5b{word-spacing:9.937200px;}
.ws21{word-spacing:9.996000px;}
.ws11{word-spacing:10.054800px;}
.ws61{word-spacing:10.172400px;}
.ws17{word-spacing:10.231200px;}
.wscf{word-spacing:10.348800px;}
.ws81{word-spacing:10.407600px;}
.ws91{word-spacing:10.525200px;}
.ws36{word-spacing:10.584000px;}
.ws20{word-spacing:10.642800px;}
.wsa7{word-spacing:10.760400px;}
.ws41{word-spacing:10.878000px;}
.wsda{word-spacing:10.936800px;}
.wsc6{word-spacing:10.995600px;}
.wse4{word-spacing:11.054400px;}
.ws3d{word-spacing:11.113200px;}
.ws9d{word-spacing:11.172000px;}
.wse8{word-spacing:11.230800px;}
.wsfe{word-spacing:11.524800px;}
.wsa{word-spacing:11.583600px;}
.wsd3{word-spacing:11.701200px;}
.ws57{word-spacing:11.760000px;}
.ws8{word-spacing:11.818800px;}
.ws3c{word-spacing:11.877600px;}
.ws24{word-spacing:11.936400px;}
.wsd{word-spacing:11.995200px;}
.ws32{word-spacing:12.054000px;}
.wse3{word-spacing:12.112800px;}
.ws1e{word-spacing:12.289200px;}
.wscd{word-spacing:12.406800px;}
.wsa4{word-spacing:12.465600px;}
.ws49{word-spacing:12.642000px;}
.wscc{word-spacing:12.818400px;}
.wsfa{word-spacing:12.877200px;}
.wsc1{word-spacing:12.994800px;}
.ws106{word-spacing:13.347600px;}
.wsac{word-spacing:13.406400px;}
.ws38{word-spacing:13.582800px;}
.wsab{word-spacing:13.759200px;}
.wsbc{word-spacing:13.876800px;}
.ws100{word-spacing:13.994400px;}
.wsf1{word-spacing:14.053200px;}
.wsee{word-spacing:14.229600px;}
.ws25{word-spacing:14.347200px;}
.ws30{word-spacing:14.464800px;}
.ws1d{word-spacing:14.523600px;}
.ws63{word-spacing:14.582400px;}
.wsb1{word-spacing:14.758800px;}
.wsff{word-spacing:14.876400px;}
.ws5d{word-spacing:14.935200px;}
.wsdd{word-spacing:14.994000px;}
.ws10a{word-spacing:15.111600px;}
.ws71{word-spacing:15.170400px;}
.ws109{word-spacing:15.229200px;}
.ws56{word-spacing:15.346800px;}
.ws23{word-spacing:15.405600px;}
.ws6b{word-spacing:15.582000px;}
.wsbe{word-spacing:15.640800px;}
.wsba{word-spacing:15.699600px;}
.wsaa{word-spacing:15.758400px;}
.wsbb{word-spacing:15.934800px;}
.ws6f{word-spacing:15.993600px;}
.ws51{word-spacing:16.170000px;}
.ws2c{word-spacing:16.346400px;}
.ws55{word-spacing:16.464000px;}
.wsb0{word-spacing:17.346000px;}
.ws34{word-spacing:17.463600px;}
.wsf5{word-spacing:17.581200px;}
.wsf0{word-spacing:17.640000px;}
.ws108{word-spacing:17.698800px;}
.wsbf{word-spacing:17.934000px;}
.wsdb{word-spacing:17.992800px;}
.ws5c{word-spacing:18.110400px;}
.ws6c{word-spacing:18.169200px;}
.wse0{word-spacing:18.228000px;}
.ws7e{word-spacing:18.345600px;}
.ws10b{word-spacing:18.404400px;}
.ws3a{word-spacing:18.580800px;}
.wsbd{word-spacing:18.639600px;}
.wsc4{word-spacing:18.757200px;}
.ws95{word-spacing:18.816000px;}
.ws39{word-spacing:18.874800px;}
.ws4a{word-spacing:18.992400px;}
.wse2{word-spacing:19.404000px;}
.ws92{word-spacing:19.756800px;}
.ws8e{word-spacing:20.344800px;}
.ws3e{word-spacing:20.815200px;}
.wse7{word-spacing:21.109200px;}
.ws3f{word-spacing:22.638000px;}
.ws6e{word-spacing:22.932000px;}
.ws78{word-spacing:23.049600px;}
.ws6a{word-spacing:23.167200px;}
.ws18{word-spacing:24.754800px;}
.ws60{word-spacing:25.636800px;}
.wsb6{word-spacing:25.695600px;}
.ws6d{word-spacing:27.165600px;}
.wsdc{word-spacing:27.342000px;}
.wse1{word-spacing:28.165200px;}
.ws5f{word-spacing:28.341600px;}
.wsa1{word-spacing:29.517600px;}
.ws70{word-spacing:30.105600px;}
.ws48{word-spacing:30.282000px;}
.ws50{word-spacing:33.692400px;}
.ws3b{word-spacing:33.927600px;}
.ws82{word-spacing:38.286000px;}
.ws4e{word-spacing:55.213200px;}
.ws88{word-spacing:324.624000px;}
.ws85{word-spacing:324.960000px;}
.ws8c{word-spacing:327.792000px;}
.ws86{word-spacing:342.432000px;}
.ws8a{word-spacing:347.999977px;}
.ws8b{word-spacing:359.807982px;}
.ws89{word-spacing:363.839982px;}
.ws87{word-spacing:377.978906px;}
.ws8d{word-spacing:421.776000px;}
.ws52{word-spacing:603.531038px;}
._12{margin-left:-42.225625px;}
._23{margin-left:-30.116400px;}
._24{margin-left:-28.155720px;}
._13{margin-left:-24.583831px;}
._11{margin-left:-21.204319px;}
._20{margin-left:-18.250224px;}
._22{margin-left:-16.772400px;}
._17{margin-left:-15.047880px;}
._10{margin-left:-11.355600px;}
._2f{margin-left:-9.495000px;}
._c{margin-left:-7.949761px;}
._f{margin-left:-6.061320px;}
._6{margin-left:-4.843271px;}
._31{margin-left:-3.821929px;}
._4{margin-left:-2.798400px;}
._1{margin-left:-1.113600px;}
._0{width:1.003200px;}
._7{width:2.048520px;}
._d{width:3.153960px;}
._8{width:5.079000px;}
._2e{width:6.350393px;}
._9{width:7.472160px;}
._15{width:8.575680px;}
._14{width:9.813720px;}
._e{width:11.674080px;}
._b{width:14.817600px;}
._5{width:15.900000px;}
._3{width:16.953590px;}
._21{width:18.949439px;}
._a{width:20.762280px;}
._16{width:23.330520px;}
._32{width:26.280000px;}
._33{width:33.171000px;}
._2{width:38.635829px;}
._30{width:45.343271px;}
._25{width:216.864000px;}
._27{width:338.304000px;}
._2d{width:358.511977px;}
._28{width:361.872000px;}
._2a{width:374.351982px;}
._29{width:389.040000px;}
._2c{width:397.392000px;}
._2b{width:420.816000px;}
._26{width:432.288000px;}
._1f{width:759.263993px;}
._18{width:925.929593px;}
._1d{width:952.799993px;}
._1e{width:953.807993px;}
._1c{width:1009.439993px;}
._1b{width:1036.367993px;}
._19{width:1077.167993px;}
._1a{width:1102.895993px;}
.fc4{color:transparent;}
.fc3{color:rgb(78,78,77);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.074549px;}
.fs9{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsf{font-size:36.000000px;}
.fs11{font-size:37.532410px;}
.fs10{font-size:39.900000px;}
.fsb{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{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;}
.y2a{bottom:79.008299px;}
.y29{bottom:91.009799px;}
.y249{bottom:99.342728px;}
.y2a8{bottom:99.461998px;}
.y114{bottom:100.662003px;}
.y290{bottom:100.842728px;}
.yb7{bottom:100.983152px;}
.y20a{bottom:102.487953px;}
.y28{bottom:103.011299px;}
.yea{bottom:105.870895px;}
.y177{bottom:107.047803px;}
.y1ac{bottom:107.745153px;}
.y1dc{bottom:107.759553px;}
.y248{bottom:112.842728px;}
.y28f{bottom:114.342728px;}
.y27{bottom:115.012799px;}
.y2a6{bottom:115.974000px;}
.y209{bottom:115.987953px;}
.y63{bottom:116.056503px;}
.y92{bottom:116.854045px;}
.y113{bottom:118.683603px;}
.yb6{bottom:118.975952px;}
.ye9{bottom:123.878095px;}
.y176{bottom:125.040603px;}
.y1ab{bottom:125.737953px;}
.y1db{bottom:125.752353px;}
.y247{bottom:126.342728px;}
.y26{bottom:127.014299px;}
.y28e{bottom:127.842728px;}
.y2a4{bottom:133.764149px;}
.y62{bottom:134.085303px;}
.y91{bottom:134.846845px;}
.y112{bottom:136.676403px;}
.yb5{bottom:136.968752px;}
.y25{bottom:139.015799px;}
.y246{bottom:139.842728px;}
.y2a5{bottom:139.914000px;}
.y28d{bottom:141.342728px;}
.y12a{bottom:141.634645px;}
.ye8{bottom:141.870895px;}
.y208{bottom:142.987953px;}
.y175{bottom:143.033403px;}
.y1da{bottom:143.745153px;}
.y1aa{bottom:143.788353px;}
.y24{bottom:151.017299px;}
.y2a1{bottom:151.773148px;}
.y61{bottom:152.078103px;}
.y90{bottom:152.918845px;}
.y245{bottom:153.342728px;}
.y111{bottom:154.669203px;}
.y28c{bottom:154.842728px;}
.yb4{bottom:154.961552px;}
.y129{bottom:159.634645px;}
.ye7{bottom:159.878095px;}
.y174{bottom:161.026203px;}
.y1d9{bottom:161.737953px;}
.y1a9{bottom:161.781153px;}
.y23{bottom:163.018799px;}
.y244{bottom:166.842728px;}
.y2a3{bottom:167.479649px;}
.y2a2{bottom:168.058205px;}
.y28b{bottom:168.342728px;}
.y29f{bottom:168.927749px;}
.y60{bottom:170.070903px;}
.y8f{bottom:170.911645px;}
.y110{bottom:172.662003px;}
.yb3{bottom:172.966352px;}
.y128{bottom:177.634657px;}
.ye6{bottom:177.870895px;}
.y207{bottom:178.987930px;}
.y173{bottom:179.019003px;}
.y1a8{bottom:179.773953px;}
.y1d8{bottom:179.781153px;}
.y243{bottom:180.342728px;}
.y28a{bottom:181.842728px;}
.y2a9{bottom:182.881943px;}
.y29e{bottom:184.824749px;}
.y2a0{bottom:185.888248px;}
.y29c{bottom:187.776139px;}
.y5f{bottom:188.063703px;}
.y8e{bottom:188.904445px;}
.y10f{bottom:190.662003px;}
.yb2{bottom:190.961552px;}
.y206{bottom:192.487930px;}
.y242{bottom:193.842728px;}
.y289{bottom:195.342728px;}
.y127{bottom:195.627457px;}
.ye5{bottom:195.899695px;}
.y172{bottom:197.011803px;}
.y1a7{bottom:197.766753px;}
.y1d7{bottom:197.773953px;}
.y31{bottom:200.893799px;}
.y29b{bottom:202.539139px;}
.y29d{bottom:204.131400px;}
.y299{bottom:205.759204px;}
.y205{bottom:205.987930px;}
.y5e{bottom:206.056503px;}
.y8d{bottom:206.897245px;}
.y241{bottom:207.342728px;}
.y10e{bottom:208.669203px;}
.y288{bottom:208.842728px;}
.yb1{bottom:208.961540px;}
.y126{bottom:213.627457px;}
.ye4{bottom:213.892495px;}
.y30{bottom:214.393799px;}
.y171{bottom:215.019003px;}
.y1a6{bottom:215.759553px;}
.y1d6{bottom:215.766753px;}
.y204{bottom:219.487930px;}
.y298{bottom:220.060204px;}
.y240{bottom:220.842728px;}
.y29a{bottom:221.440041px;}
.y287{bottom:222.342728px;}
.y296{bottom:223.765945px;}
.y5d{bottom:224.056503px;}
.y8c{bottom:224.890045px;}
.y10d{bottom:226.662003px;}
.y2f{bottom:227.893799px;}
.y125{bottom:231.684896px;}
.ye3{bottom:231.885295px;}
.y170{bottom:233.011803px;}
.y1a5{bottom:233.752353px;}
.y1d5{bottom:233.759553px;}
.y23f{bottom:234.342728px;}
.y286{bottom:235.842728px;}
.y295{bottom:237.636445px;}
.y297{bottom:238.801346px;}
.y2e{bottom:241.393799px;}
.y292{bottom:241.768497px;}
.y294{bottom:241.773445px;}
.y5c{bottom:242.135566px;}
.y8b{bottom:242.882845px;}
.y10c{bottom:244.698003px;}
.y203{bottom:246.487930px;}
.y23e{bottom:247.842728px;}
.y285{bottom:249.342728px;}
.y124{bottom:249.677696px;}
.ye2{bottom:249.878095px;}
.yb0{bottom:250.125300px;}
.y16f{bottom:251.011803px;}
.y1a4{bottom:251.745153px;}
.y1d4{bottom:251.752353px;}
.y291{bottom:255.859497px;}
.y293{bottom:256.813042px;}
.y2d{bottom:259.393799px;}
.y202{bottom:259.987930px;}
.y5b{bottom:260.128366px;}
.y8a{bottom:260.875645px;}
.y23d{bottom:261.342728px;}
.y10b{bottom:262.690803px;}
.y284{bottom:262.842728px;}
.y123{bottom:267.670496px;}
.ye1{bottom:267.870895px;}
.yaf{bottom:268.118100px;}
.y2c{bottom:268.393799px;}
.y16e{bottom:269.019003px;}
.y1a3{bottom:269.737953px;}
.y1d3{bottom:269.745153px;}
.y201{bottom:273.487930px;}
.y23c{bottom:274.842728px;}
.y283{bottom:276.342728px;}
.y5a{bottom:278.121166px;}
.y89{bottom:278.868445px;}
.y10a{bottom:280.683603px;}
.y2a7{bottom:282.343941px;}
.y122{bottom:285.663296px;}
.ye0{bottom:285.878095px;}
.yae{bottom:286.110900px;}
.y200{bottom:286.987930px;}
.y16d{bottom:287.011803px;}
.y1d2{bottom:287.737953px;}
.y1a2{bottom:287.817130px;}
.y23b{bottom:288.342728px;}
.y282{bottom:289.842728px;}
.y59{bottom:296.113966px;}
.y88{bottom:296.861245px;}
.y109{bottom:298.676403px;}
.y23a{bottom:301.842728px;}
.y281{bottom:303.342728px;}
.y121{bottom:303.656096px;}
.ydf{bottom:303.870895px;}
.yad{bottom:304.118100px;}
.y16c{bottom:305.011803px;}
.y1d1{bottom:305.759553px;}
.y1a1{bottom:305.809930px;}
.y1ff{bottom:313.987930px;}
.y58{bottom:314.106766px;}
.y87{bottom:314.854045px;}
.y239{bottom:315.342728px;}
.y108{bottom:316.669203px;}
.y280{bottom:316.842728px;}
.y120{bottom:321.648896px;}
.yde{bottom:321.921295px;}
.yac{bottom:322.118100px;}
.y22{bottom:322.715103px;}
.y16b{bottom:323.033403px;}
.y1d0{bottom:323.752353px;}
.y1a0{bottom:323.802730px;}
.y1fe{bottom:327.487930px;}
.y238{bottom:328.842728px;}
.y27f{bottom:330.342728px;}
.y57{bottom:332.099566px;}
.y86{bottom:332.846845px;}
.y107{bottom:334.662003px;}
.y11f{bottom:339.641696px;}
.ydd{bottom:339.914095px;}
.yab{bottom:340.139700px;}
.y21{bottom:340.715103px;}
.y16a{bottom:341.026203px;}
.y1cf{bottom:341.745153px;}
.y19f{bottom:341.795530px;}
.y237{bottom:342.342728px;}
.y27e{bottom:343.842728px;}
.y56{bottom:350.092366px;}
.y85{bottom:350.839645px;}
.y106{bottom:352.698003px;}
.y1fd{bottom:354.487930px;}
.y236{bottom:355.842728px;}
.y27d{bottom:357.342728px;}
.y11e{bottom:357.634496px;}
.ydc{bottom:357.906895px;}
.yaa{bottom:358.132500px;}
.y20{bottom:358.715103px;}
.y169{bottom:359.019003px;}
.y1ce{bottom:359.737953px;}
.y19e{bottom:359.788330px;}
.y1fc{bottom:367.987930px;}
.y55{bottom:368.085166px;}
.y84{bottom:368.854045px;}
.y235{bottom:369.342728px;}
.y105{bottom:370.690803px;}
.y27c{bottom:370.842728px;}
.y11d{bottom:375.627296px;}
.ydb{bottom:375.899695px;}
.ya9{bottom:376.125300px;}
.y1f{bottom:376.715103px;}
.y168{bottom:377.026180px;}
.y1cd{bottom:377.745130px;}
.y19d{bottom:377.781130px;}
.y1fb{bottom:381.487930px;}
.y234{bottom:382.842728px;}
.y27b{bottom:384.342728px;}
.y54{bottom:386.077966px;}
.y83{bottom:386.846845px;}
.y104{bottom:388.683603px;}
.y11c{bottom:393.634519px;}
.yda{bottom:393.892495px;}
.ya8{bottom:394.118100px;}
.y1e{bottom:394.715103px;}
.y1fa{bottom:394.987930px;}
.y167{bottom:395.018980px;}
.y1cc{bottom:395.737930px;}
.y19c{bottom:395.773930px;}
.y233{bottom:396.342728px;}
.y27a{bottom:397.842728px;}
.y53{bottom:404.070766px;}
.y82{bottom:404.839645px;}
.y103{bottom:406.676403px;}
.y1f9{bottom:408.487930px;}
.y232{bottom:409.842728px;}
.y279{bottom:411.342728px;}
.y11b{bottom:411.627319px;}
.yd9{bottom:411.885295px;}
.ya7{bottom:412.110900px;}
.y1d{bottom:412.715103px;}
.y166{bottom:413.011780px;}
.y1cb{bottom:413.737930px;}
.y19b{bottom:413.766730px;}
.y1f8{bottom:421.987930px;}
.y52{bottom:422.063566px;}
.y81{bottom:422.844446px;}
.y231{bottom:423.342728px;}
.y102{bottom:424.669203px;}
.y278{bottom:424.842728px;}
.y11a{bottom:429.634519px;}
.yd8{bottom:429.878095px;}
.ya6{bottom:430.110900px;}
.y1c{bottom:430.715103px;}
.y165{bottom:431.026180px;}
.y19a{bottom:431.759530px;}
.y230{bottom:436.842728px;}
.y277{bottom:438.342728px;}
.y51{bottom:440.056366px;}
.y80{bottom:440.839645px;}
.y101{bottom:442.662003px;}
.y119{bottom:447.627319px;}
.yd7{bottom:447.870895px;}
.ya5{bottom:448.118100px;}
.y1b{bottom:448.715103px;}
.y164{bottom:449.018980px;}
.y199{bottom:449.752330px;}
.y22f{bottom:450.342728px;}
.y276{bottom:451.842728px;}
.y50{bottom:458.092366px;}
.y7f{bottom:458.839645px;}
.y100{bottom:460.662003px;}
.y22e{bottom:463.842728px;}
.y275{bottom:465.342728px;}
.y118{bottom:465.627319px;}
.yd6{bottom:465.878095px;}
.ya4{bottom:466.132500px;}
.y163{bottom:467.026180px;}
.y1f7{bottom:467.038330px;}
.y198{bottom:467.745130px;}
.y1a{bottom:471.215103px;}
.y4f{bottom:476.085166px;}
.y22d{bottom:477.342728px;}
.y274{bottom:478.842728px;}
.y117{bottom:483.627319px;}
.yd5{bottom:483.870895px;}
.ya3{bottom:484.125300px;}
.y162{bottom:485.018980px;}
.y1f6{bottom:485.031130px;}
.y197{bottom:485.737930px;}
.y19{bottom:489.215103px;}
.y22c{bottom:490.842728px;}
.y273{bottom:492.342728px;}
.y4e{bottom:494.077966px;}
.y7e{bottom:494.890045px;}
.yd4{bottom:501.892495px;}
.ya2{bottom:502.118100px;}
.yff{bottom:502.347728px;}
.y161{bottom:503.011780px;}
.y1f5{bottom:503.023930px;}
.y196{bottom:503.737930px;}
.y1ca{bottom:503.752330px;}
.y22b{bottom:504.342728px;}
.y272{bottom:505.842728px;}
.y18{bottom:507.215103px;}
.y4d{bottom:512.070766px;}
.y7d{bottom:512.882845px;}
.y22a{bottom:517.842728px;}
.y271{bottom:519.342728px;}
.yd3{bottom:519.885295px;}
.ya1{bottom:520.110900px;}
.yfe{bottom:520.340528px;}
.y1f4{bottom:521.016730px;}
.y160{bottom:521.033380px;}
.y1c9{bottom:521.745130px;}
.y195{bottom:521.752330px;}
.y17{bottom:525.215103px;}
.y4c{bottom:530.063566px;}
.y7c{bottom:530.875645px;}
.y229{bottom:531.342728px;}
.y270{bottom:532.842728px;}
.yd2{bottom:537.878095px;}
.ya0{bottom:538.118100px;}
.yfd{bottom:538.340528px;}
.y116{bottom:538.383894px;}
.y1f3{bottom:539.009530px;}
.y15f{bottom:539.026180px;}
.y1c8{bottom:539.737930px;}
.y194{bottom:539.745130px;}
.y16{bottom:543.215103px;}
.y228{bottom:544.842728px;}
.y26f{bottom:546.342728px;}
.y4b{bottom:548.157258px;}
.y7b{bottom:548.868445px;}
.yd1{bottom:555.870895px;}
.y9f{bottom:556.110900px;}
.yfc{bottom:556.333328px;}
.y115{bottom:556.376694px;}
.y1f2{bottom:557.002330px;}
.y15e{bottom:557.018980px;}
.y193{bottom:557.737930px;}
.y227{bottom:558.342728px;}
.y26e{bottom:559.842728px;}
.y15{bottom:561.215103px;}
.y4a{bottom:566.150058px;}
.y7a{bottom:566.861245px;}
.y226{bottom:571.842728px;}
.y26d{bottom:573.342728px;}
.yd0{bottom:573.892495px;}
.y9e{bottom:574.118100px;}
.y1f1{bottom:574.995130px;}
.y15d{bottom:575.011780px;}
.y1c7{bottom:575.759530px;}
.y192{bottom:575.766730px;}
.y14{bottom:583.715103px;}
.y49{bottom:584.142858px;}
.y79{bottom:584.854045px;}
.y225{bottom:585.342728px;}
.y26c{bottom:586.842728px;}
.ycf{bottom:591.885295px;}
.y9d{bottom:592.110900px;}
.y1f0{bottom:592.987930px;}
.y15c{bottom:593.018980px;}
.y1c6{bottom:593.752330px;}
.y191{bottom:593.759530px;}
.y224{bottom:598.842728px;}
.y26b{bottom:600.342728px;}
.y12b{bottom:601.587021px;}
.y13{bottom:601.715103px;}
.y48{bottom:602.135658px;}
.y78{bottom:602.846845px;}
.yce{bottom:609.878095px;}
.y9c{bottom:610.110900px;}
.y1ef{bottom:610.987930px;}
.y15b{bottom:611.011780px;}
.y1c5{bottom:611.745130px;}
.y190{bottom:611.752330px;}
.y223{bottom:612.342728px;}
.y26a{bottom:613.842728px;}
.y12{bottom:619.715103px;}
.y47{bottom:620.128458px;}
.y77{bottom:620.839645px;}
.y142{bottom:623.371518px;}
.y222{bottom:625.842728px;}
.y269{bottom:627.342728px;}
.ycd{bottom:627.870895px;}
.y1ee{bottom:628.995130px;}
.y15a{bottom:629.033380px;}
.y1c4{bottom:629.737930px;}
.y18f{bottom:629.745130px;}
.y11{bottom:637.715103px;}
.y46{bottom:638.121258px;}
.y76{bottom:638.861245px;}
.y268{bottom:640.842728px;}
.y141{bottom:641.599518px;}
.ycc{bottom:645.870895px;}
.y1ed{bottom:646.987930px;}
.y159{bottom:647.026180px;}
.y18e{bottom:647.737930px;}
.y1c3{bottom:647.745130px;}
.y9b{bottom:651.267622px;}
.y267{bottom:654.342728px;}
.y10{bottom:655.715103px;}
.y45{bottom:656.114058px;}
.y75{bottom:656.854045px;}
.y140{bottom:659.671518px;}
.ycb{bottom:663.899695px;}
.y1ec{bottom:664.987930px;}
.y158{bottom:665.018980px;}
.y1c2{bottom:665.737930px;}
.y18d{bottom:665.752330px;}
.y266{bottom:667.839014px;}
.y9a{bottom:669.260422px;}
.y44{bottom:674.106858px;}
.y74{bottom:674.846845px;}
.y13f{bottom:677.899518px;}
.yf{bottom:678.215103px;}
.y265{bottom:681.339014px;}
.yca{bottom:681.892495px;}
.y1eb{bottom:682.995130px;}
.y157{bottom:683.011780px;}
.y18c{bottom:683.745130px;}
.y1c1{bottom:683.838776px;}
.y2b1{bottom:685.842728px;}
.y99{bottom:687.267622px;}
.y43{bottom:692.099658px;}
.y73{bottom:692.839645px;}
.y264{bottom:694.839014px;}
.y221{bottom:694.842728px;}
.y13e{bottom:696.043518px;}
.ye{bottom:696.215103px;}
.y2b0{bottom:699.342728px;}
.yc9{bottom:699.885295px;}
.y1ea{bottom:700.987930px;}
.y156{bottom:701.011780px;}
.y18b{bottom:701.737930px;}
.y1c0{bottom:701.831576px;}
.y98{bottom:705.260422px;}
.y263{bottom:708.339014px;}
.y42{bottom:710.092458px;}
.y72{bottom:710.854045px;}
.y2af{bottom:712.842728px;}
.y13d{bottom:714.187518px;}
.yd{bottom:714.215103px;}
.yc8{bottom:717.878095px;}
.y1e9{bottom:718.987930px;}
.y155{bottom:719.047780px;}
.y18a{bottom:719.759576px;}
.y1bf{bottom:719.824376px;}
.y262{bottom:721.839014px;}
.y220{bottom:721.842728px;}
.y41{bottom:728.085258px;}
.y71{bottom:728.846845px;}
.yc{bottom:732.215103px;}
.y13c{bottom:732.259518px;}
.y261{bottom:735.339014px;}
.y21f{bottom:735.342728px;}
.yc7{bottom:735.870895px;}
.y1e8{bottom:737.009576px;}
.y154{bottom:737.040580px;}
.y189{bottom:737.752376px;}
.y1be{bottom:737.817176px;}
.y40{bottom:746.078058px;}
.y70{bottom:746.839645px;}
.y260{bottom:748.839014px;}
.y21e{bottom:748.842773px;}
.yb{bottom:750.215103px;}
.y13b{bottom:750.487518px;}
.yc6{bottom:753.878141px;}
.y1e7{bottom:755.002376px;}
.y153{bottom:755.033380px;}
.y188{bottom:755.745176px;}
.y1bd{bottom:755.809976px;}
.yef{bottom:756.092975px;}
.y25f{bottom:762.339014px;}
.y21d{bottom:762.342773px;}
.y3f{bottom:764.070858px;}
.y6f{bottom:764.846891px;}
.y13a{bottom:768.643518px;}
.yee{bottom:768.839975px;}
.yc5{bottom:771.870941px;}
.ya{bottom:772.715057px;}
.y1e6{bottom:772.995176px;}
.y152{bottom:773.026180px;}
.y187{bottom:773.737976px;}
.y1bc{bottom:773.802776px;}
.y25e{bottom:775.839014px;}
.y21c{bottom:775.842773px;}
.yed{bottom:781.586975px;}
.y3e{bottom:782.063658px;}
.y6e{bottom:782.839691px;}
.y139{bottom:786.787518px;}
.y25d{bottom:789.339014px;}
.y21b{bottom:789.342773px;}
.yc4{bottom:789.875742px;}
.y1e5{bottom:790.987976px;}
.y151{bottom:791.018980px;}
.y186{bottom:791.737976px;}
.y1bb{bottom:791.795576px;}
.y3d{bottom:800.056458px;}
.y6d{bottom:800.875691px;}
.y25c{bottom:802.839014px;}
.y2ae{bottom:802.842773px;}
.yfb{bottom:803.351854px;}
.y138{bottom:804.931518px;}
.y21a{bottom:807.342773px;}
.yc3{bottom:807.870941px;}
.y1e4{bottom:808.987976px;}
.y150{bottom:809.011780px;}
.y1ba{bottom:809.788376px;}
.y185{bottom:809.809976px;}
.y25b{bottom:816.339014px;}
.y219{bottom:816.342773px;}
.y3c{bottom:818.063658px;}
.y6c{bottom:818.868491px;}
.yfa{bottom:821.579854px;}
.y137{bottom:823.075518px;}
.y14f{bottom:827.026180px;}
.y1b9{bottom:827.781176px;}
.y184{bottom:827.802776px;}
.y25a{bottom:829.839014px;}
.y218{bottom:829.842773px;}
.y3b{bottom:836.056458px;}
.y6b{bottom:836.861291px;}
.yf9{bottom:839.723854px;}
.y136{bottom:841.219518px;}
.y259{bottom:843.339014px;}
.y217{bottom:843.342773px;}
.y9{bottom:843.548112px;}
.y14e{bottom:845.018980px;}
.y1b8{bottom:845.773976px;}
.y183{bottom:845.795576px;}
.y3a{bottom:854.092458px;}
.y6a{bottom:854.854091px;}
.y258{bottom:856.839014px;}
.y216{bottom:856.842773px;}
.yf8{bottom:857.867854px;}
.y135{bottom:859.375518px;}
.yc2{bottom:862.635341px;}
.y14d{bottom:863.011780px;}
.y1b7{bottom:863.766776px;}
.y182{bottom:863.788376px;}
.y1e3{bottom:863.795576px;}
.y8{bottom:864.552612px;}
.y257{bottom:870.339014px;}
.y215{bottom:870.342773px;}
.y39{bottom:872.085258px;}
.y69{bottom:872.846891px;}
.yf7{bottom:876.011854px;}
.y134{bottom:877.519518px;}
.yc1{bottom:880.628141px;}
.y14c{bottom:881.026180px;}
.y1b6{bottom:881.759576px;}
.y181{bottom:881.781176px;}
.y1e2{bottom:881.788376px;}
.y256{bottom:883.839014px;}
.y2ad{bottom:883.842773px;}
.y214{bottom:888.342773px;}
.y38{bottom:890.078058px;}
.y68{bottom:890.839691px;}
.yf6{bottom:894.155854px;}
.y133{bottom:895.663518px;}
.y255{bottom:897.339014px;}
.y213{bottom:897.342773px;}
.yc0{bottom:898.620941px;}
.y14b{bottom:899.018980px;}
.y1b5{bottom:899.752376px;}
.y180{bottom:899.773976px;}
.y1e1{bottom:899.781176px;}
.y7{bottom:900.577528px;}
.y37{bottom:908.070858px;}
.y67{bottom:908.839691px;}
.y254{bottom:910.839014px;}
.y2ac{bottom:910.842773px;}
.yf5{bottom:912.311854px;}
.y132{bottom:913.807518px;}
.ybf{bottom:916.686132px;}
.y14a{bottom:917.011780px;}
.y1b4{bottom:917.745176px;}
.y17f{bottom:917.766776px;}
.y1e0{bottom:917.773976px;}
.y253{bottom:924.339014px;}
.y212{bottom:924.342773px;}
.y36{bottom:926.063658px;}
.y66{bottom:926.846891px;}
.yf4{bottom:930.455854px;}
.y131{bottom:931.951518px;}
.ybe{bottom:934.678932px;}
.y149{bottom:935.018980px;}
.y1b3{bottom:935.737976px;}
.y17e{bottom:935.759576px;}
.y1df{bottom:935.766776px;}
.y252{bottom:937.839014px;}
.y211{bottom:937.842773px;}
.y6{bottom:939.565528px;}
.y35{bottom:944.056458px;}
.y65{bottom:944.839691px;}
.yf3{bottom:948.595335px;}
.y130{bottom:950.107518px;}
.y251{bottom:951.339014px;}
.y2ab{bottom:951.342773px;}
.ybd{bottom:952.671732px;}
.y148{bottom:953.011780px;}
.y17d{bottom:953.752376px;}
.y1b2{bottom:953.759576px;}
.y34{bottom:962.056458px;}
.y64{bottom:962.835303px;}
.y250{bottom:964.839014px;}
.y210{bottom:964.842773px;}
.y12f{bottom:968.251518px;}
.ybc{bottom:970.664532px;}
.y147{bottom:971.033380px;}
.y17c{bottom:971.745176px;}
.y1b1{bottom:971.752376px;}
.yf2{bottom:975.487335px;}
.y24f{bottom:978.339014px;}
.y20f{bottom:978.342773px;}
.y5{bottom:978.553528px;}
.ybb{bottom:988.657332px;}
.yf1{bottom:988.987335px;}
.y146{bottom:989.026180px;}
.y17b{bottom:989.737976px;}
.y1b0{bottom:989.745176px;}
.y24e{bottom:991.839014px;}
.y20e{bottom:991.842773px;}
.y12e{bottom:995.143518px;}
.yf0{bottom:1002.487335px;}
.y24d{bottom:1005.339014px;}
.y20d{bottom:1005.342773px;}
.y12d{bottom:1005.487518px;}
.yba{bottom:1006.650132px;}
.y145{bottom:1007.018980px;}
.y1af{bottom:1007.737976px;}
.y17a{bottom:1007.790296px;}
.y94{bottom:1014.425079px;}
.y24c{bottom:1018.839014px;}
.y2aa{bottom:1018.842773px;}
.y12c{bottom:1018.987518px;}
.yb9{bottom:1024.642932px;}
.y144{bottom:1025.011780px;}
.y1de{bottom:1025.737976px;}
.y1ae{bottom:1025.745176px;}
.y179{bottom:1025.783096px;}
.yec{bottom:1026.803079px;}
.y24b{bottom:1032.339014px;}
.y20c{bottom:1032.342773px;}
.y93{bottom:1032.425079px;}
.y4{bottom:1033.362579px;}
.y2b{bottom:1035.750183px;}
.yb8{bottom:1042.635732px;}
.y143{bottom:1043.011780px;}
.yeb{bottom:1043.300079px;}
.y1ad{bottom:1043.737976px;}
.y1dd{bottom:1043.752653px;}
.y178{bottom:1043.775896px;}
.y24a{bottom:1045.839014px;}
.y20b{bottom:1045.842773px;}
.y3{bottom:1097.297079px;}
.y2{bottom:1112.297079px;}
.y95{bottom:1126.524628px;}
.y32{bottom:1126.524719px;}
.y97{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y96{bottom:1127.300079px;}
.y33{bottom:1127.304719px;}
.h2d{height:10.640359px;}
.h27{height:27.540000px;}
.hf{height:27.814500px;}
.h2b{height:28.374502px;}
.h25{height:29.988000px;}
.h29{height:30.324000px;}
.h2a{height:30.523500px;}
.h26{height:32.130000px;}
.h28{height:35.532000px;}
.hd{height:37.086000px;}
.he{height:39.735000px;}
.h24{height:39.749854px;}
.h17{height:40.026000px;}
.hc{height:41.538000px;}
.h1a{height:42.384000px;}
.h1c{height:42.672000px;}
.h23{height:42.840000px;}
.h20{height:43.785000px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h22{height:45.814317px;}
.h21{height:45.814500px;}
.h18{height:46.704000px;}
.h1d{height:46.992000px;}
.h2{height:47.232000px;}
.h16{height:47.682000px;}
.h19{height:48.886946px;}
.hb{height:52.980000px;}
.h15{height:53.406000px;}
.h14{height:53.654399px;}
.h13{height:53.709599px;}
.h10{height:55.860000px;}
.h12{height:55.877551px;}
.ha{height:58.380000px;}
.h9{height:61.120200px;}
.h11{height:62.218881px;}
.h1f{height:62.564481px;}
.h1e{height:62.565030px;}
.h7{height:67.194379px;}
.h8{height:67.212379px;}
.h5{height:77.142000px;}
.h1b{height:100.704000px;}
.h6{height:137.088000px;}
.h2c{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:95.880900px;}
.x7{left:97.049252px;}
.x11{left:107.539352px;}
.x1d{left:139.550400px;}
.x1f{left:140.704651px;}
.xc{left:210.679352px;}
.x4{left:270.817497px;}
.x10{left:318.674061px;}
.xb{left:370.459351px;}
.xd{left:425.887352px;}
.x9{left:457.086594px;}
.x1a{left:463.109985px;}
.x8{left:469.091552px;}
.x19{left:475.906036px;}
.x18{left:476.938660px;}
.x12{left:479.588096px;}
.x13{left:483.529633px;}
.x17{left:487.660338px;}
.x14{left:490.386133px;}
.x15{left:493.103989px;}
.xe{left:528.067352px;}
.x1c{left:602.660385px;}
.x1e{left:603.814636px;}
.xf{left:639.134079px;}
.x16{left:660.952332px;}
.x5{left:694.929886px;}
.x6{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v8{vertical-align:3.024000pt;}
.v7{vertical-align:16.000000pt;}
.v5{vertical-align:17.082797pt;}
.v4{vertical-align:20.548338pt;}
.v2{vertical-align:23.466471pt;}
.v6{vertical-align:48.000000pt;}
.lse{letter-spacing:-1.933867pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls10{letter-spacing:0.000022pt;}
.ls9{letter-spacing:0.000042pt;}
.ls12{letter-spacing:0.133449pt;}
.ls13{letter-spacing:0.200173pt;}
.lsa{letter-spacing:0.313600pt;}
.ls7{letter-spacing:0.511911pt;}
.lsb{letter-spacing:0.512004pt;}
.lsc{letter-spacing:0.512493pt;}
.ls8{letter-spacing:0.710827pt;}
.ls4{letter-spacing:0.731733pt;}
.ls5{letter-spacing:0.736960pt;}
.ls6{letter-spacing:0.742187pt;}
.ls14{letter-spacing:1.000864pt;}
.lsf{letter-spacing:1.045333pt;}
.ls11{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.lsd{letter-spacing:374.058667pt;}
.ws1{word-spacing:-18.858667pt;}
.wsa8{word-spacing:-13.014400pt;}
.ws58{word-spacing:-12.596267pt;}
.ws4f{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws119{word-spacing:-10.942783pt;}
.ws84{word-spacing:-10.348800pt;}
.ws118{word-spacing:-10.275540pt;}
.wsec{word-spacing:-10.156800pt;}
.ws117{word-spacing:-9.474848pt;}
.ws116{word-spacing:-9.408124pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wseb{word-spacing:-8.760000pt;}
.wsae{word-spacing:-8.597867pt;}
.wsea{word-spacing:-8.280000pt;}
.ws6{word-spacing:-7.242667pt;}
.ws112{word-spacing:-7.080000pt;}
.ws110{word-spacing:-6.132000pt;}
.ws1c{word-spacing:-5.749333pt;}
.ws83{word-spacing:-4.010667pt;}
.wsad{word-spacing:-3.498667pt;}
.ws115{word-spacing:-3.440000pt;}
.ws11a{word-spacing:-1.668107pt;}
.ws113{word-spacing:-1.400000pt;}
.ws16{word-spacing:-0.731733pt;}
.wsb2{word-spacing:-0.574933pt;}
.wsf2{word-spacing:-0.522667pt;}
.ws76{word-spacing:-0.470400pt;}
.wsdf{word-spacing:-0.418133pt;}
.ws29{word-spacing:-0.313600pt;}
.wsf4{word-spacing:-0.261333pt;}
.ws7d{word-spacing:-0.209067pt;}
.ws114{word-spacing:-0.160000pt;}
.wsa2{word-spacing:-0.104533pt;}
.wsd8{word-spacing:-0.052267pt;}
.ws7{word-spacing:-0.036587pt;}
.ws111{word-spacing:-0.028000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.104533pt;}
.wsb8{word-spacing:0.156800pt;}
.ws53{word-spacing:0.209067pt;}
.ws77{word-spacing:0.261333pt;}
.wsa3{word-spacing:0.365867pt;}
.ws9a{word-spacing:0.470400pt;}
.ws27{word-spacing:0.522667pt;}
.wsc7{word-spacing:0.574933pt;}
.ws7b{word-spacing:0.627200pt;}
.ws97{word-spacing:0.679467pt;}
.ws9c{word-spacing:0.836267pt;}
.ws10c{word-spacing:0.940800pt;}
.wsb3{word-spacing:0.993067pt;}
.ws9e{word-spacing:1.045333pt;}
.wsc5{word-spacing:1.097600pt;}
.ws65{word-spacing:1.149867pt;}
.ws69{word-spacing:1.202133pt;}
.wsed{word-spacing:1.254400pt;}
.ws75{word-spacing:1.358933pt;}
.wsd7{word-spacing:1.463467pt;}
.ws98{word-spacing:1.515733pt;}
.ws15{word-spacing:1.568000pt;}
.ws4d{word-spacing:1.620267pt;}
.ws68{word-spacing:1.672533pt;}
.wsf{word-spacing:1.777067pt;}
.ws94{word-spacing:1.881600pt;}
.wsd2{word-spacing:1.933867pt;}
.wse{word-spacing:1.986133pt;}
.ws9f{word-spacing:2.038400pt;}
.ws2a{word-spacing:2.090667pt;}
.ws47{word-spacing:2.195200pt;}
.ws45{word-spacing:2.247467pt;}
.ws2f{word-spacing:2.299733pt;}
.wsd1{word-spacing:2.404267pt;}
.wsb9{word-spacing:2.456533pt;}
.wsfd{word-spacing:2.508800pt;}
.ws40{word-spacing:2.561067pt;}
.ws7a{word-spacing:2.665600pt;}
.wsa0{word-spacing:2.770133pt;}
.ws74{word-spacing:2.874667pt;}
.wsd6{word-spacing:2.926933pt;}
.ws46{word-spacing:2.979200pt;}
.ws103{word-spacing:3.031467pt;}
.wsc9{word-spacing:3.136000pt;}
.ws93{word-spacing:3.188267pt;}
.wse6{word-spacing:3.240533pt;}
.wsb5{word-spacing:3.501867pt;}
.ws66{word-spacing:3.554133pt;}
.wse9{word-spacing:3.606400pt;}
.ws26{word-spacing:3.658667pt;}
.wsd4{word-spacing:3.710933pt;}
.ws7c{word-spacing:3.763200pt;}
.wsc0{word-spacing:3.815467pt;}
.wsd9{word-spacing:3.867733pt;}
.wsf8{word-spacing:3.920000pt;}
.ws90{word-spacing:3.972267pt;}
.ws8f{word-spacing:4.024533pt;}
.ws2b{word-spacing:4.076800pt;}
.ws28{word-spacing:4.129067pt;}
.ws44{word-spacing:4.181333pt;}
.ws31{word-spacing:4.233600pt;}
.wse5{word-spacing:4.285867pt;}
.ws13{word-spacing:4.338133pt;}
.ws105{word-spacing:4.390400pt;}
.ws104{word-spacing:4.442667pt;}
.ws12{word-spacing:4.494933pt;}
.ws10{word-spacing:4.547200pt;}
.wsa6{word-spacing:4.651733pt;}
.ws10f{word-spacing:4.704000pt;}
.wsde{word-spacing:4.756267pt;}
.ws4c{word-spacing:4.808533pt;}
.wsca{word-spacing:4.913067pt;}
.wsf7{word-spacing:5.069867pt;}
.ws101{word-spacing:5.122133pt;}
.wsef{word-spacing:5.174400pt;}
.wsfc{word-spacing:5.226667pt;}
.ws10d{word-spacing:5.278933pt;}
.wsc2{word-spacing:5.331200pt;}
.ws37{word-spacing:5.383467pt;}
.wsf6{word-spacing:5.488000pt;}
.ws1a{word-spacing:5.540267pt;}
.ws5a{word-spacing:5.644800pt;}
.ws67{word-spacing:5.697067pt;}
.ws80{word-spacing:5.749333pt;}
.ws59{word-spacing:5.801600pt;}
.wsc{word-spacing:5.853867pt;}
.ws7f{word-spacing:5.906133pt;}
.wsd0{word-spacing:6.115200pt;}
.ws35{word-spacing:6.167467pt;}
.wsc3{word-spacing:6.219733pt;}
.wsd5{word-spacing:6.272000pt;}
.ws99{word-spacing:6.376533pt;}
.ws9{word-spacing:6.428800pt;}
.wsa5{word-spacing:6.533333pt;}
.wsf3{word-spacing:6.585600pt;}
.ws102{word-spacing:6.637867pt;}
.ws14{word-spacing:6.690133pt;}
.ws9b{word-spacing:6.742400pt;}
.wsc8{word-spacing:6.794667pt;}
.ws1b{word-spacing:6.899200pt;}
.wsb4{word-spacing:7.003733pt;}
.ws5e{word-spacing:7.108267pt;}
.ws72{word-spacing:7.265067pt;}
.wsb7{word-spacing:7.317333pt;}
.wsf9{word-spacing:7.369600pt;}
.ws22{word-spacing:7.421867pt;}
.wsb{word-spacing:7.474133pt;}
.ws64{word-spacing:7.526400pt;}
.wsaf{word-spacing:7.578667pt;}
.wsa9{word-spacing:7.630933pt;}
.ws107{word-spacing:7.683200pt;}
.ws10e{word-spacing:7.840000pt;}
.ws96{word-spacing:7.892267pt;}
.wscb{word-spacing:7.944533pt;}
.ws43{word-spacing:7.996800pt;}
.ws19{word-spacing:8.049067pt;}
.ws79{word-spacing:8.153600pt;}
.ws2d{word-spacing:8.205867pt;}
.ws1f{word-spacing:8.258133pt;}
.ws33{word-spacing:8.310400pt;}
.ws73{word-spacing:8.362667pt;}
.ws54{word-spacing:8.414933pt;}
.wsfb{word-spacing:8.467200pt;}
.wsce{word-spacing:8.519467pt;}
.ws42{word-spacing:8.624000pt;}
.ws62{word-spacing:8.728533pt;}
.ws4b{word-spacing:8.780800pt;}
.ws5b{word-spacing:8.833067pt;}
.ws21{word-spacing:8.885333pt;}
.ws11{word-spacing:8.937600pt;}
.ws61{word-spacing:9.042133pt;}
.ws17{word-spacing:9.094400pt;}
.wscf{word-spacing:9.198933pt;}
.ws81{word-spacing:9.251200pt;}
.ws91{word-spacing:9.355733pt;}
.ws36{word-spacing:9.408000pt;}
.ws20{word-spacing:9.460267pt;}
.wsa7{word-spacing:9.564800pt;}
.ws41{word-spacing:9.669333pt;}
.wsda{word-spacing:9.721600pt;}
.wsc6{word-spacing:9.773867pt;}
.wse4{word-spacing:9.826133pt;}
.ws3d{word-spacing:9.878400pt;}
.ws9d{word-spacing:9.930667pt;}
.wse8{word-spacing:9.982933pt;}
.wsfe{word-spacing:10.244267pt;}
.wsa{word-spacing:10.296533pt;}
.wsd3{word-spacing:10.401067pt;}
.ws57{word-spacing:10.453333pt;}
.ws8{word-spacing:10.505600pt;}
.ws3c{word-spacing:10.557867pt;}
.ws24{word-spacing:10.610133pt;}
.wsd{word-spacing:10.662400pt;}
.ws32{word-spacing:10.714667pt;}
.wse3{word-spacing:10.766933pt;}
.ws1e{word-spacing:10.923733pt;}
.wscd{word-spacing:11.028267pt;}
.wsa4{word-spacing:11.080533pt;}
.ws49{word-spacing:11.237333pt;}
.wscc{word-spacing:11.394133pt;}
.wsfa{word-spacing:11.446400pt;}
.wsc1{word-spacing:11.550933pt;}
.ws106{word-spacing:11.864533pt;}
.wsac{word-spacing:11.916800pt;}
.ws38{word-spacing:12.073600pt;}
.wsab{word-spacing:12.230400pt;}
.wsbc{word-spacing:12.334933pt;}
.ws100{word-spacing:12.439467pt;}
.wsf1{word-spacing:12.491733pt;}
.wsee{word-spacing:12.648533pt;}
.ws25{word-spacing:12.753067pt;}
.ws30{word-spacing:12.857600pt;}
.ws1d{word-spacing:12.909867pt;}
.ws63{word-spacing:12.962133pt;}
.wsb1{word-spacing:13.118933pt;}
.wsff{word-spacing:13.223467pt;}
.ws5d{word-spacing:13.275733pt;}
.wsdd{word-spacing:13.328000pt;}
.ws10a{word-spacing:13.432533pt;}
.ws71{word-spacing:13.484800pt;}
.ws109{word-spacing:13.537067pt;}
.ws56{word-spacing:13.641600pt;}
.ws23{word-spacing:13.693867pt;}
.ws6b{word-spacing:13.850667pt;}
.wsbe{word-spacing:13.902933pt;}
.wsba{word-spacing:13.955200pt;}
.wsaa{word-spacing:14.007467pt;}
.wsbb{word-spacing:14.164267pt;}
.ws6f{word-spacing:14.216533pt;}
.ws51{word-spacing:14.373333pt;}
.ws2c{word-spacing:14.530133pt;}
.ws55{word-spacing:14.634667pt;}
.wsb0{word-spacing:15.418667pt;}
.ws34{word-spacing:15.523200pt;}
.wsf5{word-spacing:15.627733pt;}
.wsf0{word-spacing:15.680000pt;}
.ws108{word-spacing:15.732267pt;}
.wsbf{word-spacing:15.941333pt;}
.wsdb{word-spacing:15.993600pt;}
.ws5c{word-spacing:16.098133pt;}
.ws6c{word-spacing:16.150400pt;}
.wse0{word-spacing:16.202667pt;}
.ws7e{word-spacing:16.307200pt;}
.ws10b{word-spacing:16.359467pt;}
.ws3a{word-spacing:16.516267pt;}
.wsbd{word-spacing:16.568533pt;}
.wsc4{word-spacing:16.673067pt;}
.ws95{word-spacing:16.725333pt;}
.ws39{word-spacing:16.777600pt;}
.ws4a{word-spacing:16.882133pt;}
.wse2{word-spacing:17.248000pt;}
.ws92{word-spacing:17.561600pt;}
.ws8e{word-spacing:18.084267pt;}
.ws3e{word-spacing:18.502400pt;}
.wse7{word-spacing:18.763733pt;}
.ws3f{word-spacing:20.122667pt;}
.ws6e{word-spacing:20.384000pt;}
.ws78{word-spacing:20.488533pt;}
.ws6a{word-spacing:20.593067pt;}
.ws18{word-spacing:22.004267pt;}
.ws60{word-spacing:22.788267pt;}
.wsb6{word-spacing:22.840533pt;}
.ws6d{word-spacing:24.147200pt;}
.wsdc{word-spacing:24.304000pt;}
.wse1{word-spacing:25.035733pt;}
.ws5f{word-spacing:25.192533pt;}
.wsa1{word-spacing:26.237867pt;}
.ws70{word-spacing:26.760533pt;}
.ws48{word-spacing:26.917333pt;}
.ws50{word-spacing:29.948800pt;}
.ws3b{word-spacing:30.157867pt;}
.ws82{word-spacing:34.032000pt;}
.ws4e{word-spacing:49.078400pt;}
.ws88{word-spacing:288.554667pt;}
.ws85{word-spacing:288.853333pt;}
.ws8c{word-spacing:291.370667pt;}
.ws86{word-spacing:304.384000pt;}
.ws8a{word-spacing:309.333313pt;}
.ws8b{word-spacing:319.829317pt;}
.ws89{word-spacing:323.413317pt;}
.ws87{word-spacing:335.981250pt;}
.ws8d{word-spacing:374.912000pt;}
.ws52{word-spacing:536.472034pt;}
._12{margin-left:-37.533889pt;}
._23{margin-left:-26.770133pt;}
._24{margin-left:-25.027307pt;}
._13{margin-left:-21.852294pt;}
._11{margin-left:-18.848283pt;}
._20{margin-left:-16.222421pt;}
._22{margin-left:-14.908800pt;}
._17{margin-left:-13.375893pt;}
._10{margin-left:-10.093867pt;}
._2f{margin-left:-8.440000pt;}
._c{margin-left:-7.066454pt;}
._f{margin-left:-5.387840pt;}
._6{margin-left:-4.305130pt;}
._31{margin-left:-3.397270pt;}
._4{margin-left:-2.487467pt;}
._1{margin-left:-0.989867pt;}
._0{width:0.891733pt;}
._7{width:1.820907pt;}
._d{width:2.803520pt;}
._8{width:4.514667pt;}
._2e{width:5.644793pt;}
._9{width:6.641920pt;}
._15{width:7.622826pt;}
._14{width:8.723306pt;}
._e{width:10.376960pt;}
._b{width:13.171200pt;}
._5{width:14.133333pt;}
._3{width:15.069858pt;}
._21{width:16.843946pt;}
._a{width:18.455360pt;}
._16{width:20.738240pt;}
._32{width:23.360000pt;}
._33{width:29.485333pt;}
._2{width:34.342959pt;}
._30{width:40.305130pt;}
._25{width:192.768000pt;}
._27{width:300.714667pt;}
._2d{width:318.677313pt;}
._28{width:321.664000pt;}
._2a{width:332.757317pt;}
._29{width:345.813333pt;}
._2c{width:353.237333pt;}
._2b{width:374.058667pt;}
._26{width:384.256000pt;}
._1f{width:674.901327pt;}
._18{width:823.048527pt;}
._1d{width:846.933327pt;}
._1e{width:847.829327pt;}
._1c{width:897.279993pt;}
._1b{width:921.215993pt;}
._19{width:957.482660pt;}
._1a{width:980.351993pt;}
.fs12{font-size:12.510710pt;}
.fs9{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsf{font-size:32.000000pt;}
.fs11{font-size:33.362142pt;}
.fs10{font-size:35.466667pt;}
.fsb{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{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;}
.y2a{bottom:70.229599pt;}
.y29{bottom:80.897599pt;}
.y249{bottom:88.304647pt;}
.y2a8{bottom:88.410665pt;}
.y114{bottom:89.477336pt;}
.y290{bottom:89.637980pt;}
.yb7{bottom:89.762801pt;}
.y20a{bottom:91.100403pt;}
.y28{bottom:91.565599pt;}
.yea{bottom:94.107463pt;}
.y177{bottom:95.153602pt;}
.y1ac{bottom:95.773469pt;}
.y1dc{bottom:95.786269pt;}
.y248{bottom:100.304647pt;}
.y28f{bottom:101.637980pt;}
.y27{bottom:102.233599pt;}
.y2a6{bottom:103.088000pt;}
.y209{bottom:103.100403pt;}
.y63{bottom:103.161336pt;}
.y92{bottom:103.870263pt;}
.y113{bottom:105.496536pt;}
.yb6{bottom:105.756401pt;}
.ye9{bottom:110.113863pt;}
.y176{bottom:111.147202pt;}
.y1ab{bottom:111.767069pt;}
.y1db{bottom:111.779869pt;}
.y247{bottom:112.304647pt;}
.y26{bottom:112.901599pt;}
.y28e{bottom:113.637980pt;}
.y2a4{bottom:118.901465pt;}
.y62{bottom:119.186936pt;}
.y91{bottom:119.863863pt;}
.y112{bottom:121.490136pt;}
.yb5{bottom:121.750001pt;}
.y25{bottom:123.569599pt;}
.y246{bottom:124.304647pt;}
.y2a5{bottom:124.368000pt;}
.y28d{bottom:125.637980pt;}
.y12a{bottom:125.897462pt;}
.ye8{bottom:126.107463pt;}
.y208{bottom:127.100403pt;}
.y175{bottom:127.140802pt;}
.y1da{bottom:127.773469pt;}
.y1aa{bottom:127.811869pt;}
.y24{bottom:134.237599pt;}
.y2a1{bottom:134.909465pt;}
.y61{bottom:135.180536pt;}
.y90{bottom:135.927863pt;}
.y245{bottom:136.304647pt;}
.y111{bottom:137.483736pt;}
.y28c{bottom:137.637980pt;}
.yb4{bottom:137.743601pt;}
.y129{bottom:141.897462pt;}
.ye7{bottom:142.113863pt;}
.y174{bottom:143.134402pt;}
.y1d9{bottom:143.767069pt;}
.y1a9{bottom:143.805469pt;}
.y23{bottom:144.905599pt;}
.y244{bottom:148.304647pt;}
.y2a3{bottom:148.870799pt;}
.y2a2{bottom:149.385071pt;}
.y28b{bottom:149.637980pt;}
.y29f{bottom:150.157999pt;}
.y60{bottom:151.174136pt;}
.y8f{bottom:151.921463pt;}
.y110{bottom:153.477336pt;}
.yb3{bottom:153.747868pt;}
.y128{bottom:157.897473pt;}
.ye6{bottom:158.107463pt;}
.y207{bottom:159.100382pt;}
.y173{bottom:159.128002pt;}
.y1a8{bottom:159.799069pt;}
.y1d8{bottom:159.805469pt;}
.y243{bottom:160.304647pt;}
.y28a{bottom:161.637980pt;}
.y2a9{bottom:162.561727pt;}
.y29e{bottom:164.288666pt;}
.y2a0{bottom:165.233999pt;}
.y29c{bottom:166.912123pt;}
.y5f{bottom:167.167736pt;}
.y8e{bottom:167.915063pt;}
.y10f{bottom:169.477336pt;}
.yb2{bottom:169.743601pt;}
.y206{bottom:171.100382pt;}
.y242{bottom:172.304647pt;}
.y289{bottom:173.637980pt;}
.y127{bottom:173.891073pt;}
.ye5{bottom:174.133063pt;}
.y172{bottom:175.121602pt;}
.y1a7{bottom:175.792669pt;}
.y1d7{bottom:175.799069pt;}
.y31{bottom:178.572266pt;}
.y29b{bottom:180.034790pt;}
.y29d{bottom:181.450133pt;}
.y299{bottom:182.897070pt;}
.y205{bottom:183.100382pt;}
.y5e{bottom:183.161336pt;}
.y8d{bottom:183.908663pt;}
.y241{bottom:184.304647pt;}
.y10e{bottom:185.483736pt;}
.y288{bottom:185.637980pt;}
.yb1{bottom:185.743591pt;}
.y126{bottom:189.891073pt;}
.ye4{bottom:190.126663pt;}
.y30{bottom:190.572266pt;}
.y171{bottom:191.128002pt;}
.y1a6{bottom:191.786269pt;}
.y1d6{bottom:191.792669pt;}
.y204{bottom:195.100382pt;}
.y298{bottom:195.609070pt;}
.y240{bottom:196.304647pt;}
.y29a{bottom:196.835592pt;}
.y287{bottom:197.637980pt;}
.y296{bottom:198.903062pt;}
.y5d{bottom:199.161336pt;}
.y8c{bottom:199.902263pt;}
.y10d{bottom:201.477336pt;}
.y2f{bottom:202.572266pt;}
.y125{bottom:205.942130pt;}
.ye3{bottom:206.120263pt;}
.y170{bottom:207.121602pt;}
.y1a5{bottom:207.779869pt;}
.y1d5{bottom:207.786269pt;}
.y23f{bottom:208.304647pt;}
.y286{bottom:209.637980pt;}
.y295{bottom:211.232396pt;}
.y297{bottom:212.267863pt;}
.y2e{bottom:214.572266pt;}
.y292{bottom:214.905331pt;}
.y294{bottom:214.909729pt;}
.y5c{bottom:215.231614pt;}
.y8b{bottom:215.895863pt;}
.y10c{bottom:217.509336pt;}
.y203{bottom:219.100382pt;}
.y23e{bottom:220.304647pt;}
.y285{bottom:221.637980pt;}
.y124{bottom:221.935730pt;}
.ye2{bottom:222.113863pt;}
.yb0{bottom:222.333600pt;}
.y16f{bottom:223.121602pt;}
.y1a4{bottom:223.773469pt;}
.y1d4{bottom:223.779869pt;}
.y291{bottom:227.430664pt;}
.y293{bottom:228.278259pt;}
.y2d{bottom:230.572266pt;}
.y202{bottom:231.100382pt;}
.y5b{bottom:231.225214pt;}
.y8a{bottom:231.889463pt;}
.y23d{bottom:232.304647pt;}
.y10b{bottom:233.502936pt;}
.y284{bottom:233.637980pt;}
.y123{bottom:237.929330pt;}
.ye1{bottom:238.107463pt;}
.yaf{bottom:238.327200pt;}
.y2c{bottom:238.572266pt;}
.y16e{bottom:239.128002pt;}
.y1a3{bottom:239.767069pt;}
.y1d3{bottom:239.773469pt;}
.y201{bottom:243.100382pt;}
.y23c{bottom:244.304647pt;}
.y283{bottom:245.637980pt;}
.y5a{bottom:247.218814pt;}
.y89{bottom:247.883063pt;}
.y10a{bottom:249.496536pt;}
.y2a7{bottom:250.972392pt;}
.y122{bottom:253.922930pt;}
.ye0{bottom:254.113863pt;}
.yae{bottom:254.320800pt;}
.y200{bottom:255.100382pt;}
.y16d{bottom:255.121602pt;}
.y1d2{bottom:255.767069pt;}
.y1a2{bottom:255.837449pt;}
.y23b{bottom:256.304647pt;}
.y282{bottom:257.637980pt;}
.y59{bottom:263.212414pt;}
.y88{bottom:263.876663pt;}
.y109{bottom:265.490136pt;}
.y23a{bottom:268.304647pt;}
.y281{bottom:269.637980pt;}
.y121{bottom:269.916530pt;}
.ydf{bottom:270.107463pt;}
.yad{bottom:270.327200pt;}
.y16c{bottom:271.121602pt;}
.y1d1{bottom:271.786269pt;}
.y1a1{bottom:271.831049pt;}
.y1ff{bottom:279.100382pt;}
.y58{bottom:279.206014pt;}
.y87{bottom:279.870263pt;}
.y239{bottom:280.304647pt;}
.y108{bottom:281.483736pt;}
.y280{bottom:281.637980pt;}
.y120{bottom:285.910130pt;}
.yde{bottom:286.152263pt;}
.yac{bottom:286.327200pt;}
.y22{bottom:286.857869pt;}
.y16b{bottom:287.140802pt;}
.y1d0{bottom:287.779869pt;}
.y1a0{bottom:287.824649pt;}
.y1fe{bottom:291.100382pt;}
.y238{bottom:292.304647pt;}
.y27f{bottom:293.637980pt;}
.y57{bottom:295.199614pt;}
.y86{bottom:295.863863pt;}
.y107{bottom:297.477336pt;}
.y11f{bottom:301.903730pt;}
.ydd{bottom:302.145863pt;}
.yab{bottom:302.346400pt;}
.y21{bottom:302.857869pt;}
.y16a{bottom:303.134402pt;}
.y1cf{bottom:303.773469pt;}
.y19f{bottom:303.818249pt;}
.y237{bottom:304.304647pt;}
.y27e{bottom:305.637980pt;}
.y56{bottom:311.193214pt;}
.y85{bottom:311.857463pt;}
.y106{bottom:313.509336pt;}
.y1fd{bottom:315.100382pt;}
.y236{bottom:316.304647pt;}
.y27d{bottom:317.637980pt;}
.y11e{bottom:317.897330pt;}
.ydc{bottom:318.139463pt;}
.yaa{bottom:318.340000pt;}
.y20{bottom:318.857869pt;}
.y169{bottom:319.128002pt;}
.y1ce{bottom:319.767069pt;}
.y19e{bottom:319.811849pt;}
.y1fc{bottom:327.100382pt;}
.y55{bottom:327.186814pt;}
.y84{bottom:327.870263pt;}
.y235{bottom:328.304647pt;}
.y105{bottom:329.502936pt;}
.y27c{bottom:329.637980pt;}
.y11d{bottom:333.890930pt;}
.ydb{bottom:334.133063pt;}
.ya9{bottom:334.333600pt;}
.y1f{bottom:334.857869pt;}
.y168{bottom:335.134382pt;}
.y1cd{bottom:335.773449pt;}
.y19d{bottom:335.805449pt;}
.y1fb{bottom:339.100382pt;}
.y234{bottom:340.304647pt;}
.y27b{bottom:341.637980pt;}
.y54{bottom:343.180414pt;}
.y83{bottom:343.863863pt;}
.y104{bottom:345.496536pt;}
.y11c{bottom:349.897351pt;}
.yda{bottom:350.126663pt;}
.ya8{bottom:350.327200pt;}
.y1e{bottom:350.857869pt;}
.y1fa{bottom:351.100382pt;}
.y167{bottom:351.127982pt;}
.y1cc{bottom:351.767049pt;}
.y19c{bottom:351.799049pt;}
.y233{bottom:352.304647pt;}
.y27a{bottom:353.637980pt;}
.y53{bottom:359.174014pt;}
.y82{bottom:359.857463pt;}
.y103{bottom:361.490136pt;}
.y1f9{bottom:363.100382pt;}
.y232{bottom:364.304647pt;}
.y279{bottom:365.637980pt;}
.y11b{bottom:365.890951pt;}
.yd9{bottom:366.120263pt;}
.ya7{bottom:366.320800pt;}
.y1d{bottom:366.857869pt;}
.y166{bottom:367.121582pt;}
.y1cb{bottom:367.767049pt;}
.y19b{bottom:367.792649pt;}
.y1f8{bottom:375.100382pt;}
.y52{bottom:375.167614pt;}
.y81{bottom:375.861730pt;}
.y231{bottom:376.304647pt;}
.y102{bottom:377.483736pt;}
.y278{bottom:377.637980pt;}
.y11a{bottom:381.897351pt;}
.yd8{bottom:382.113863pt;}
.ya6{bottom:382.320800pt;}
.y1c{bottom:382.857869pt;}
.y165{bottom:383.134382pt;}
.y19a{bottom:383.786249pt;}
.y230{bottom:388.304647pt;}
.y277{bottom:389.637980pt;}
.y51{bottom:391.161214pt;}
.y80{bottom:391.857463pt;}
.y101{bottom:393.477336pt;}
.y119{bottom:397.890951pt;}
.yd7{bottom:398.107463pt;}
.ya5{bottom:398.327200pt;}
.y1b{bottom:398.857869pt;}
.y164{bottom:399.127982pt;}
.y199{bottom:399.779849pt;}
.y22f{bottom:400.304647pt;}
.y276{bottom:401.637980pt;}
.y50{bottom:407.193214pt;}
.y7f{bottom:407.857463pt;}
.y100{bottom:409.477336pt;}
.y22e{bottom:412.304647pt;}
.y275{bottom:413.637980pt;}
.y118{bottom:413.890951pt;}
.yd6{bottom:414.113863pt;}
.ya4{bottom:414.340000pt;}
.y163{bottom:415.134382pt;}
.y1f7{bottom:415.145182pt;}
.y198{bottom:415.773449pt;}
.y1a{bottom:418.857869pt;}
.y4f{bottom:423.186814pt;}
.y22d{bottom:424.304647pt;}
.y274{bottom:425.637980pt;}
.y117{bottom:429.890951pt;}
.yd5{bottom:430.107463pt;}
.ya3{bottom:430.333600pt;}
.y162{bottom:431.127982pt;}
.y1f6{bottom:431.138782pt;}
.y197{bottom:431.767049pt;}
.y19{bottom:434.857869pt;}
.y22c{bottom:436.304647pt;}
.y273{bottom:437.637980pt;}
.y4e{bottom:439.180414pt;}
.y7e{bottom:439.902263pt;}
.yd4{bottom:446.126663pt;}
.ya2{bottom:446.327200pt;}
.yff{bottom:446.531314pt;}
.y161{bottom:447.121582pt;}
.y1f5{bottom:447.132382pt;}
.y196{bottom:447.767049pt;}
.y1ca{bottom:447.779849pt;}
.y22b{bottom:448.304647pt;}
.y272{bottom:449.637980pt;}
.y18{bottom:450.857869pt;}
.y4d{bottom:455.174014pt;}
.y7d{bottom:455.895863pt;}
.y22a{bottom:460.304647pt;}
.y271{bottom:461.637980pt;}
.yd3{bottom:462.120263pt;}
.ya1{bottom:462.320800pt;}
.yfe{bottom:462.524914pt;}
.y1f4{bottom:463.125982pt;}
.y160{bottom:463.140782pt;}
.y1c9{bottom:463.773449pt;}
.y195{bottom:463.779849pt;}
.y17{bottom:466.857869pt;}
.y4c{bottom:471.167614pt;}
.y7c{bottom:471.889463pt;}
.y229{bottom:472.304647pt;}
.y270{bottom:473.637980pt;}
.yd2{bottom:478.113863pt;}
.ya0{bottom:478.327200pt;}
.yfd{bottom:478.524914pt;}
.y116{bottom:478.563462pt;}
.y1f3{bottom:479.119582pt;}
.y15f{bottom:479.134382pt;}
.y1c8{bottom:479.767049pt;}
.y194{bottom:479.773449pt;}
.y16{bottom:482.857869pt;}
.y228{bottom:484.304647pt;}
.y26f{bottom:485.637980pt;}
.y4b{bottom:487.250896pt;}
.y7b{bottom:487.883063pt;}
.yd1{bottom:494.107463pt;}
.y9f{bottom:494.320800pt;}
.yfc{bottom:494.518514pt;}
.y115{bottom:494.557062pt;}
.y1f2{bottom:495.113182pt;}
.y15e{bottom:495.127982pt;}
.y193{bottom:495.767049pt;}
.y227{bottom:496.304647pt;}
.y26e{bottom:497.637980pt;}
.y15{bottom:498.857869pt;}
.y4a{bottom:503.244496pt;}
.y7a{bottom:503.876663pt;}
.y226{bottom:508.304647pt;}
.y26d{bottom:509.637980pt;}
.yd0{bottom:510.126663pt;}
.y9e{bottom:510.327200pt;}
.y1f1{bottom:511.106782pt;}
.y15d{bottom:511.121582pt;}
.y1c7{bottom:511.786249pt;}
.y192{bottom:511.792649pt;}
.y14{bottom:518.857869pt;}
.y49{bottom:519.238096pt;}
.y79{bottom:519.870263pt;}
.y225{bottom:520.304647pt;}
.y26c{bottom:521.637980pt;}
.ycf{bottom:526.120263pt;}
.y9d{bottom:526.320800pt;}
.y1f0{bottom:527.100382pt;}
.y15c{bottom:527.127982pt;}
.y1c6{bottom:527.779849pt;}
.y191{bottom:527.786249pt;}
.y224{bottom:532.304647pt;}
.y26b{bottom:533.637980pt;}
.y12b{bottom:534.744019pt;}
.y13{bottom:534.857869pt;}
.y48{bottom:535.231696pt;}
.y78{bottom:535.863863pt;}
.yce{bottom:542.113863pt;}
.y9c{bottom:542.320800pt;}
.y1ef{bottom:543.100382pt;}
.y15b{bottom:543.121582pt;}
.y1c5{bottom:543.773449pt;}
.y190{bottom:543.779849pt;}
.y223{bottom:544.304647pt;}
.y26a{bottom:545.637980pt;}
.y12{bottom:550.857869pt;}
.y47{bottom:551.225296pt;}
.y77{bottom:551.857463pt;}
.y142{bottom:554.108016pt;}
.y222{bottom:556.304647pt;}
.y269{bottom:557.637980pt;}
.ycd{bottom:558.107463pt;}
.y1ee{bottom:559.106782pt;}
.y15a{bottom:559.140782pt;}
.y1c4{bottom:559.767049pt;}
.y18f{bottom:559.773449pt;}
.y11{bottom:566.857869pt;}
.y46{bottom:567.218896pt;}
.y76{bottom:567.876663pt;}
.y268{bottom:569.637980pt;}
.y141{bottom:570.310683pt;}
.ycc{bottom:574.107463pt;}
.y1ed{bottom:575.100382pt;}
.y159{bottom:575.134382pt;}
.y18e{bottom:575.767049pt;}
.y1c3{bottom:575.773449pt;}
.y9b{bottom:578.904553pt;}
.y267{bottom:581.637980pt;}
.y10{bottom:582.857869pt;}
.y45{bottom:583.212496pt;}
.y75{bottom:583.870263pt;}
.y140{bottom:586.374683pt;}
.ycb{bottom:590.133063pt;}
.y1ec{bottom:591.100382pt;}
.y158{bottom:591.127982pt;}
.y1c2{bottom:591.767049pt;}
.y18d{bottom:591.779849pt;}
.y266{bottom:593.634679pt;}
.y9a{bottom:594.898153pt;}
.y44{bottom:599.206096pt;}
.y74{bottom:599.863863pt;}
.y13f{bottom:602.577350pt;}
.yf{bottom:602.857869pt;}
.y265{bottom:605.634679pt;}
.yca{bottom:606.126663pt;}
.y1eb{bottom:607.106782pt;}
.y157{bottom:607.121582pt;}
.y18c{bottom:607.773449pt;}
.y1c1{bottom:607.856690pt;}
.y2b1{bottom:609.637980pt;}
.y99{bottom:610.904553pt;}
.y43{bottom:615.199696pt;}
.y73{bottom:615.857463pt;}
.y264{bottom:617.634679pt;}
.y221{bottom:617.637980pt;}
.y13e{bottom:618.705350pt;}
.ye{bottom:618.857869pt;}
.y2b0{bottom:621.637980pt;}
.yc9{bottom:622.120263pt;}
.y1ea{bottom:623.100382pt;}
.y156{bottom:623.121582pt;}
.y18b{bottom:623.767049pt;}
.y1c0{bottom:623.850290pt;}
.y98{bottom:626.898153pt;}
.y263{bottom:629.634679pt;}
.y42{bottom:631.193296pt;}
.y72{bottom:631.870263pt;}
.y2af{bottom:633.637980pt;}
.y13d{bottom:634.833350pt;}
.yd{bottom:634.857869pt;}
.yc8{bottom:638.113863pt;}
.y1e9{bottom:639.100382pt;}
.y155{bottom:639.153582pt;}
.y18a{bottom:639.786290pt;}
.y1bf{bottom:639.843890pt;}
.y262{bottom:641.634679pt;}
.y220{bottom:641.637980pt;}
.y41{bottom:647.186896pt;}
.y71{bottom:647.863863pt;}
.yc{bottom:650.857869pt;}
.y13c{bottom:650.897350pt;}
.y261{bottom:653.634679pt;}
.y21f{bottom:653.637980pt;}
.yc7{bottom:654.107463pt;}
.y1e8{bottom:655.119623pt;}
.y154{bottom:655.147182pt;}
.y189{bottom:655.779890pt;}
.y1be{bottom:655.837490pt;}
.y40{bottom:663.180496pt;}
.y70{bottom:663.857463pt;}
.y260{bottom:665.634679pt;}
.y21e{bottom:665.638021pt;}
.yb{bottom:666.857869pt;}
.y13b{bottom:667.100016pt;}
.yc6{bottom:670.113903pt;}
.y1e7{bottom:671.113223pt;}
.y153{bottom:671.140782pt;}
.y188{bottom:671.773490pt;}
.y1bd{bottom:671.831090pt;}
.yef{bottom:672.082645pt;}
.y25f{bottom:677.634679pt;}
.y21d{bottom:677.638021pt;}
.y3f{bottom:679.174096pt;}
.y6f{bottom:679.863903pt;}
.y13a{bottom:683.238683pt;}
.yee{bottom:683.413311pt;}
.yc5{bottom:686.107503pt;}
.ya{bottom:686.857829pt;}
.y1e6{bottom:687.106823pt;}
.y152{bottom:687.134382pt;}
.y187{bottom:687.767090pt;}
.y1bc{bottom:687.824690pt;}
.y25e{bottom:689.634679pt;}
.y21c{bottom:689.638021pt;}
.yed{bottom:694.743978pt;}
.y3e{bottom:695.167696pt;}
.y6e{bottom:695.857503pt;}
.y139{bottom:699.366683pt;}
.y25d{bottom:701.634679pt;}
.y21b{bottom:701.638021pt;}
.yc4{bottom:702.111770pt;}
.y1e5{bottom:703.100423pt;}
.y151{bottom:703.127982pt;}
.y186{bottom:703.767090pt;}
.y1bb{bottom:703.818290pt;}
.y3d{bottom:711.161296pt;}
.y6d{bottom:711.889503pt;}
.y25c{bottom:713.634679pt;}
.y2ae{bottom:713.638021pt;}
.yfb{bottom:714.090536pt;}
.y138{bottom:715.494683pt;}
.y21a{bottom:717.638021pt;}
.yc3{bottom:718.107503pt;}
.y1e4{bottom:719.100423pt;}
.y150{bottom:719.121582pt;}
.y1ba{bottom:719.811890pt;}
.y185{bottom:719.831090pt;}
.y25b{bottom:725.634679pt;}
.y219{bottom:725.638021pt;}
.y3c{bottom:727.167696pt;}
.y6c{bottom:727.883103pt;}
.yfa{bottom:730.293203pt;}
.y137{bottom:731.622683pt;}
.y14f{bottom:735.134382pt;}
.y1b9{bottom:735.805490pt;}
.y184{bottom:735.824690pt;}
.y25a{bottom:737.634679pt;}
.y218{bottom:737.638021pt;}
.y3b{bottom:743.161296pt;}
.y6b{bottom:743.876703pt;}
.yf9{bottom:746.421203pt;}
.y136{bottom:747.750683pt;}
.y259{bottom:749.634679pt;}
.y217{bottom:749.638021pt;}
.y9{bottom:749.820544pt;}
.y14e{bottom:751.127982pt;}
.y1b8{bottom:751.799090pt;}
.y183{bottom:751.818290pt;}
.y3a{bottom:759.193296pt;}
.y6a{bottom:759.870303pt;}
.y258{bottom:761.634679pt;}
.y216{bottom:761.638021pt;}
.yf8{bottom:762.549203pt;}
.y135{bottom:763.889350pt;}
.yc2{bottom:766.786970pt;}
.y14d{bottom:767.121582pt;}
.y1b7{bottom:767.792690pt;}
.y182{bottom:767.811890pt;}
.y1e3{bottom:767.818290pt;}
.y8{bottom:768.491211pt;}
.y257{bottom:773.634679pt;}
.y215{bottom:773.638021pt;}
.y39{bottom:775.186896pt;}
.y69{bottom:775.863903pt;}
.yf7{bottom:778.677203pt;}
.y134{bottom:780.017350pt;}
.yc1{bottom:782.780570pt;}
.y14c{bottom:783.134382pt;}
.y1b6{bottom:783.786290pt;}
.y181{bottom:783.805490pt;}
.y1e2{bottom:783.811890pt;}
.y256{bottom:785.634679pt;}
.y2ad{bottom:785.638021pt;}
.y214{bottom:789.638021pt;}
.y38{bottom:791.180496pt;}
.y68{bottom:791.857503pt;}
.yf6{bottom:794.805203pt;}
.y133{bottom:796.145350pt;}
.y255{bottom:797.634679pt;}
.y213{bottom:797.638021pt;}
.yc0{bottom:798.774170pt;}
.y14b{bottom:799.127982pt;}
.y1b5{bottom:799.779890pt;}
.y180{bottom:799.799090pt;}
.y1e1{bottom:799.805490pt;}
.y7{bottom:800.513358pt;}
.y37{bottom:807.174096pt;}
.y67{bottom:807.857503pt;}
.y254{bottom:809.634679pt;}
.y2ac{bottom:809.638021pt;}
.yf5{bottom:810.943870pt;}
.y132{bottom:812.273350pt;}
.ybf{bottom:814.832117pt;}
.y14a{bottom:815.121582pt;}
.y1b4{bottom:815.773490pt;}
.y17f{bottom:815.792690pt;}
.y1e0{bottom:815.799090pt;}
.y253{bottom:821.634679pt;}
.y212{bottom:821.638021pt;}
.y36{bottom:823.167696pt;}
.y66{bottom:823.863903pt;}
.yf4{bottom:827.071870pt;}
.y131{bottom:828.401350pt;}
.ybe{bottom:830.825717pt;}
.y149{bottom:831.127982pt;}
.y1b3{bottom:831.767090pt;}
.y17e{bottom:831.786290pt;}
.y1df{bottom:831.792690pt;}
.y252{bottom:833.634679pt;}
.y211{bottom:833.638021pt;}
.y6{bottom:835.169358pt;}
.y35{bottom:839.161296pt;}
.y65{bottom:839.857503pt;}
.yf3{bottom:843.195854pt;}
.y130{bottom:844.540016pt;}
.y251{bottom:845.634679pt;}
.y2ab{bottom:845.638021pt;}
.ybd{bottom:846.819317pt;}
.y148{bottom:847.121582pt;}
.y17d{bottom:847.779890pt;}
.y1b2{bottom:847.786290pt;}
.y34{bottom:855.161296pt;}
.y64{bottom:855.853603pt;}
.y250{bottom:857.634679pt;}
.y210{bottom:857.638021pt;}
.y12f{bottom:860.668016pt;}
.ybc{bottom:862.812917pt;}
.y147{bottom:863.140782pt;}
.y17c{bottom:863.773490pt;}
.y1b1{bottom:863.779890pt;}
.yf2{bottom:867.099854pt;}
.y24f{bottom:869.634679pt;}
.y20f{bottom:869.638021pt;}
.y5{bottom:869.825358pt;}
.ybb{bottom:878.806517pt;}
.yf1{bottom:879.099854pt;}
.y146{bottom:879.134382pt;}
.y17b{bottom:879.767090pt;}
.y1b0{bottom:879.773490pt;}
.y24e{bottom:881.634679pt;}
.y20e{bottom:881.638021pt;}
.y12e{bottom:884.572016pt;}
.yf0{bottom:891.099854pt;}
.y24d{bottom:893.634679pt;}
.y20d{bottom:893.638021pt;}
.y12d{bottom:893.766683pt;}
.yba{bottom:894.800117pt;}
.y145{bottom:895.127982pt;}
.y1af{bottom:895.767090pt;}
.y17a{bottom:895.813597pt;}
.y94{bottom:901.711182pt;}
.y24c{bottom:905.634679pt;}
.y2aa{bottom:905.638021pt;}
.y12c{bottom:905.766683pt;}
.yb9{bottom:910.793717pt;}
.y144{bottom:911.121582pt;}
.y1de{bottom:911.767090pt;}
.y1ae{bottom:911.773490pt;}
.y179{bottom:911.807197pt;}
.yec{bottom:912.713848pt;}
.y24b{bottom:917.634679pt;}
.y20c{bottom:917.638021pt;}
.y93{bottom:917.711182pt;}
.y4{bottom:918.544515pt;}
.y2b{bottom:920.666829pt;}
.yb8{bottom:926.787317pt;}
.y143{bottom:927.121582pt;}
.yeb{bottom:927.377848pt;}
.y1ad{bottom:927.767090pt;}
.y1dd{bottom:927.780136pt;}
.y178{bottom:927.800797pt;}
.y24a{bottom:929.634679pt;}
.y20b{bottom:929.638021pt;}
.y3{bottom:975.375182pt;}
.y2{bottom:988.708515pt;}
.y95{bottom:1001.355225pt;}
.y32{bottom:1001.355306pt;}
.y97{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y96{bottom:1002.044515pt;}
.y33{bottom:1002.048639pt;}
.h2d{height:9.458097pt;}
.h27{height:24.480000pt;}
.hf{height:24.724000pt;}
.h2b{height:25.221780pt;}
.h25{height:26.656000pt;}
.h29{height:26.954667pt;}
.h2a{height:27.132000pt;}
.h26{height:28.560000pt;}
.h28{height:31.584000pt;}
.hd{height:32.965333pt;}
.he{height:35.320000pt;}
.h24{height:35.333204pt;}
.h17{height:35.578667pt;}
.hc{height:36.922667pt;}
.h1a{height:37.674667pt;}
.h1c{height:37.930667pt;}
.h23{height:38.080000pt;}
.h20{height:38.920000pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h22{height:40.723837pt;}
.h21{height:40.724000pt;}
.h18{height:41.514667pt;}
.h1d{height:41.770667pt;}
.h2{height:41.984000pt;}
.h16{height:42.384000pt;}
.h19{height:43.455064pt;}
.hb{height:47.093333pt;}
.h15{height:47.472000pt;}
.h14{height:47.692799pt;}
.h13{height:47.741866pt;}
.h10{height:49.653333pt;}
.h12{height:49.668935pt;}
.ha{height:51.893333pt;}
.h9{height:54.329067pt;}
.h11{height:55.305672pt;}
.h1f{height:55.612872pt;}
.h1e{height:55.613360pt;}
.h7{height:59.728337pt;}
.h8{height:59.744337pt;}
.h5{height:68.570667pt;}
.h1b{height:89.514667pt;}
.h6{height:121.856000pt;}
.h2c{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:85.227467pt;}
.x7{left:86.266002pt;}
.x11{left:95.590535pt;}
.x1d{left:124.044800pt;}
.x1f{left:125.070801pt;}
.xc{left:187.270535pt;}
.x4{left:240.726664pt;}
.x10{left:283.265832pt;}
.xb{left:329.297201pt;}
.xd{left:378.566535pt;}
.x9{left:406.299194pt;}
.x1a{left:411.653320pt;}
.x8{left:416.970269pt;}
.x19{left:423.027588pt;}
.x18{left:423.945475pt;}
.x12{left:426.300529pt;}
.x13{left:429.804118pt;}
.x17{left:433.475856pt;}
.x14{left:435.898785pt;}
.x15{left:438.314657pt;}
.xe{left:469.393202pt;}
.x1c{left:535.698120pt;}
.x1e{left:536.724121pt;}
.xf{left:568.119181pt;}
.x16{left:587.513184pt;}
.x5{left:617.715454pt;}
.x6{left:669.671183pt;}
}




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