
    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_a45786081c195df5294e2c7c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d519a073112b52bfa42f9181.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_22edd8770995feac7909911b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_12d86b0f574677f2b1a36905.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;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_fe813b5d46f5616ecd720f51.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_5915cec24a922fc2db4e698a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.485000;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_78c29b5088819d9892278c0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_f0d2334a529814007fa43a9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.515000;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_1bdc5c3af6b7662e8916e24f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.881000;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_4b767e4beb26843f8a84b494.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_df2c373e7d7e050a61c6bcd0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_273bcbded165b868b5e8d796.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_63d6080b5fa69e94cac8f134.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.522000;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_3ca7581f2a945f35959e87c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.266000;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_26e7f352637357a071ea7edd.woff2')format("woff");}.fff{font-family:fff;line-height:0.847000;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:ff10;src:url('chunks/assets/font_58e6421355234225a257b543.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.672000;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:ff11;src:url('chunks/assets/font_4f00dd41e6dbbc7e82d50f7e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.579000;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:ff12;src:url('chunks/assets/font_ea9ad2d931a1c8393f71ef3b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.728000;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:ff13;src:url('chunks/assets/font_a9c97327a1ef86ebf99e33ce.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948000;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:ff14;src:url('chunks/assets/font_a762fbf2a692464841f184e8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.749000;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:ff15;src:url('chunks/assets/font_480b603dd9a9c711080385d5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.924000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.772979px;}
.ls23{letter-spacing:-0.004800px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004800px;}
.ls29{letter-spacing:0.009600px;}
.ls5{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.030000px;}
.ls2a{letter-spacing:0.033600px;}
.ls2b{letter-spacing:0.038400px;}
.ls13{letter-spacing:0.060001px;}
.ls18{letter-spacing:0.081599px;}
.lsf{letter-spacing:0.108001px;}
.ls28{letter-spacing:0.114001px;}
.ls10{letter-spacing:0.144001px;}
.ls4{letter-spacing:0.174002px;}
.ls8{letter-spacing:0.186002px;}
.ls11{letter-spacing:0.210002px;}
.lsb{letter-spacing:0.216002px;}
.ls24{letter-spacing:0.225597px;}
.ls1c{letter-spacing:2.811300px;}
.lsc{letter-spacing:2.946762px;}
.ls14{letter-spacing:3.151500px;}
.ls1d{letter-spacing:3.152100px;}
.lse{letter-spacing:3.286962px;}
.ls2{letter-spacing:10.243072px;}
.ls17{letter-spacing:10.286271px;}
.ls6{letter-spacing:10.550268px;}
.ls1b{letter-spacing:10.579068px;}
.ls19{letter-spacing:10.627067px;}
.ls3{letter-spacing:12.066900px;}
.ls27{letter-spacing:12.774128px;}
.ls12{letter-spacing:13.038130px;}
.ls16{letter-spacing:13.098131px;}
.ls9{letter-spacing:13.110131px;}
.ls21{letter-spacing:13.175835px;}
.ls22{letter-spacing:13.271834px;}
.ls20{letter-spacing:13.300634px;}
.ls26{letter-spacing:13.348633px;}
.ls15{letter-spacing:13.440134px;}
.lsa{letter-spacing:13.452135px;}
.ls1f{letter-spacing:13.516631px;}
.ls1e{letter-spacing:13.689429px;}
.ls1{letter-spacing:20.788540px;}
.ls0{letter-spacing:21.124536px;}
.ls25{letter-spacing:159.228410px;}
.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;}
}
.wsb3{word-spacing:-13.319834px;}
.ws29{word-spacing:-10.598268px;}
.wsf8{word-spacing:-0.071999px;}
.ws44{word-spacing:-0.060001px;}
.ws14{word-spacing:-0.057000px;}
.ws4{word-spacing:-0.054000px;}
.ws10{word-spacing:-0.047999px;}
.wsc5{word-spacing:-0.043199px;}
.ws42{word-spacing:0.000000px;}
.ws2d{word-spacing:9.623880px;}
.ws38{word-spacing:9.638280px;}
.ws2f{word-spacing:9.719878px;}
.ws10f{word-spacing:9.739078px;}
.ws2e{word-spacing:9.748678px;}
.ws111{word-spacing:9.782278px;}
.ws3d{word-spacing:9.806277px;}
.ws63{word-spacing:9.811077px;}
.ws109{word-spacing:9.815877px;}
.wsa{word-spacing:9.820677px;}
.ws2b{word-spacing:9.825477px;}
.ws37{word-spacing:9.849477px;}
.ws108{word-spacing:9.854277px;}
.ws101{word-spacing:9.863877px;}
.ws36{word-spacing:9.873477px;}
.wsf{word-spacing:9.878277px;}
.ws34{word-spacing:9.883076px;}
.ws126{word-spacing:9.892676px;}
.ws104{word-spacing:9.902276px;}
.wsea{word-spacing:9.907076px;}
.ws3f{word-spacing:9.916676px;}
.ws31{word-spacing:9.921476px;}
.ws41{word-spacing:9.926276px;}
.wsfb{word-spacing:9.931076px;}
.wsff{word-spacing:9.935876px;}
.ws114{word-spacing:9.940676px;}
.ws113{word-spacing:9.950276px;}
.ws2c{word-spacing:9.959875px;}
.ws119{word-spacing:9.964675px;}
.ws33{word-spacing:9.974275px;}
.wsc{word-spacing:9.979075px;}
.ws117{word-spacing:9.983875px;}
.ws11e{word-spacing:9.988675px;}
.wsee{word-spacing:9.998275px;}
.ws116{word-spacing:10.003075px;}
.ws32{word-spacing:10.007875px;}
.wsa1{word-spacing:10.012675px;}
.wsb{word-spacing:10.017475px;}
.ws35{word-spacing:10.022275px;}
.ws40{word-spacing:10.036675px;}
.ws3a{word-spacing:10.046274px;}
.ws102{word-spacing:10.051074px;}
.wsc8{word-spacing:10.055874px;}
.ws121{word-spacing:10.060674px;}
.ws11f{word-spacing:10.075074px;}
.ws3c{word-spacing:10.079874px;}
.wseb{word-spacing:10.089474px;}
.ws112{word-spacing:10.113474px;}
.ws115{word-spacing:10.123073px;}
.wsef{word-spacing:10.127873px;}
.ws127{word-spacing:10.132673px;}
.wsa3{word-spacing:10.137473px;}
.ws10e{word-spacing:10.142273px;}
.wsc2{word-spacing:10.156673px;}
.ws30{word-spacing:10.161473px;}
.wsc4{word-spacing:10.166273px;}
.wsf0{word-spacing:10.171073px;}
.ws28{word-spacing:10.175873px;}
.ws2a{word-spacing:10.180673px;}
.ws107{word-spacing:10.185473px;}
.wse{word-spacing:10.195073px;}
.ws118{word-spacing:10.199873px;}
.ws106{word-spacing:10.204672px;}
.wsa6{word-spacing:10.233472px;}
.wsfd{word-spacing:10.238272px;}
.ws100{word-spacing:10.247872px;}
.ws123{word-spacing:10.262272px;}
.wsc3{word-spacing:10.267072px;}
.wsa7{word-spacing:10.271872px;}
.ws122{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.wsc6{word-spacing:10.286271px;}
.ws125{word-spacing:10.295871px;}
.ws10a{word-spacing:10.300671px;}
.wsa0{word-spacing:10.305471px;}
.ws11b{word-spacing:10.319871px;}
.ws10b{word-spacing:10.329471px;}
.ws11c{word-spacing:10.334271px;}
.wsc0{word-spacing:10.348671px;}
.ws3e{word-spacing:10.353471px;}
.ws105{word-spacing:10.358271px;}
.ws11a{word-spacing:10.363070px;}
.wsa2{word-spacing:10.387070px;}
.wsfc{word-spacing:10.391870px;}
.ws10c{word-spacing:10.396670px;}
.wsa4{word-spacing:10.406270px;}
.ws129{word-spacing:10.420670px;}
.ws39{word-spacing:10.425470px;}
.ws3b{word-spacing:10.444669px;}
.wsd{word-spacing:10.463869px;}
.ws11d{word-spacing:10.468669px;}
.ws124{word-spacing:10.478269px;}
.ws110{word-spacing:10.497469px;}
.wsfe{word-spacing:10.511869px;}
.wsa5{word-spacing:10.535868px;}
.ws120{word-spacing:10.569468px;}
.wsc7{word-spacing:10.612667px;}
.ws10d{word-spacing:10.636667px;}
.wsc1{word-spacing:10.646267px;}
.ws19{word-spacing:11.257500px;}
.ws17{word-spacing:11.354400px;}
.ws1a{word-spacing:11.400000px;}
.ws16{word-spacing:11.411400px;}
.ws13{word-spacing:11.496900px;}
.ws7{word-spacing:11.502000px;}
.ws12{word-spacing:11.508300px;}
.ws5{word-spacing:11.593800px;}
.ws3{word-spacing:11.647800px;}
.ws6{word-spacing:11.685600px;}
.wsf5{word-spacing:11.748117px;}
.wsf4{word-spacing:11.790118px;}
.ws8{word-spacing:11.815200px;}
.ws9{word-spacing:11.853000px;}
.ws15{word-spacing:11.924400px;}
.wsf7{word-spacing:11.964120px;}
.wsf1{word-spacing:11.988120px;}
.ws11{word-spacing:12.021300px;}
.wsf2{word-spacing:12.090121px;}
.ws18{word-spacing:12.106800px;}
.wsf6{word-spacing:12.456125px;}
.ws9a{word-spacing:12.492125px;}
.ws25{word-spacing:12.618126px;}
.ws52{word-spacing:12.690127px;}
.wsdf{word-spacing:12.708127px;}
.wsa8{word-spacing:12.726127px;}
.wsb2{word-spacing:12.734241px;}
.ws86{word-spacing:12.738127px;}
.ws65{word-spacing:12.774128px;}
.ws96{word-spacing:12.786128px;}
.wsf3{word-spacing:12.798128px;}
.ws79{word-spacing:12.828128px;}
.ws66{word-spacing:12.834128px;}
.ws64{word-spacing:12.846128px;}
.wsd4{word-spacing:12.849439px;}
.ws77{word-spacing:12.870129px;}
.wsb6{word-spacing:12.883039px;}
.wsd8{word-spacing:12.887839px;}
.wsec{word-spacing:12.888129px;}
.wsb7{word-spacing:12.892639px;}
.ws85{word-spacing:12.906129px;}
.wsba{word-spacing:12.921438px;}
.wsb5{word-spacing:12.926238px;}
.ws51{word-spacing:12.936129px;}
.wsbd{word-spacing:12.942129px;}
.ws5d{word-spacing:12.948129px;}
.wsb0{word-spacing:12.955038px;}
.ws73{word-spacing:12.960130px;}
.wsa9{word-spacing:12.966130px;}
.wsdb{word-spacing:12.969438px;}
.ws22{word-spacing:12.972130px;}
.ws5f{word-spacing:12.978130px;}
.ws90{word-spacing:12.984130px;}
.wsd5{word-spacing:12.988638px;}
.ws59{word-spacing:12.996130px;}
.ws1b{word-spacing:13.002130px;}
.ws4b{word-spacing:13.008130px;}
.ws45{word-spacing:13.014130px;}
.wsbe{word-spacing:13.020130px;}
.ws26{word-spacing:13.026130px;}
.wsd9{word-spacing:13.031837px;}
.wsed{word-spacing:13.032130px;}
.wsd2{word-spacing:13.036637px;}
.ws67{word-spacing:13.038130px;}
.ws50{word-spacing:13.044130px;}
.ws49{word-spacing:13.050130px;}
.ws99{word-spacing:13.062131px;}
.ws6e{word-spacing:13.068131px;}
.wsb8{word-spacing:13.070237px;}
.ws91{word-spacing:13.074131px;}
.wsd6{word-spacing:13.075037px;}
.ws4f{word-spacing:13.080131px;}
.ws4d{word-spacing:13.092131px;}
.ws82{word-spacing:13.098131px;}
.ws1c{word-spacing:13.104131px;}
.ws27{word-spacing:13.110131px;}
.wsae{word-spacing:13.113436px;}
.ws6d{word-spacing:13.116131px;}
.ws61{word-spacing:13.122131px;}
.wsb4{word-spacing:13.127836px;}
.ws1f{word-spacing:13.128131px;}
.ws5e{word-spacing:13.134131px;}
.ws46{word-spacing:13.140131px;}
.wsde{word-spacing:13.142236px;}
.ws9c{word-spacing:13.146131px;}
.ws69{word-spacing:13.152132px;}
.wsbf{word-spacing:13.158132px;}
.ws8e{word-spacing:13.164132px;}
.ws88{word-spacing:13.170132px;}
.ws6a{word-spacing:13.176132px;}
.ws9e{word-spacing:13.182132px;}
.wsaa{word-spacing:13.188132px;}
.ws87{word-spacing:13.194132px;}
.ws62{word-spacing:13.200132px;}
.ws8c{word-spacing:13.206132px;}
.ws4e{word-spacing:13.212132px;}
.ws20{word-spacing:13.218132px;}
.ws4c{word-spacing:13.224132px;}
.ws7e{word-spacing:13.230132px;}
.ws9b{word-spacing:13.242132px;}
.ws60{word-spacing:13.248132px;}
.ws89{word-spacing:13.254133px;}
.wsda{word-spacing:13.257434px;}
.ws81{word-spacing:13.272133px;}
.ws8b{word-spacing:13.278133px;}
.wsdd{word-spacing:13.289669px;}
.wsb9{word-spacing:13.291034px;}
.ws78{word-spacing:13.296133px;}
.ws55{word-spacing:13.302133px;}
.ws83{word-spacing:13.308133px;}
.wsbc{word-spacing:13.314133px;}
.ws43{word-spacing:13.320133px;}
.wsdc{word-spacing:13.329433px;}
.ws98{word-spacing:13.332133px;}
.ws6b{word-spacing:13.344133px;}
.ws8d{word-spacing:13.350134px;}
.ws7c{word-spacing:13.356134px;}
.ws93{word-spacing:13.362134px;}
.ws48{word-spacing:13.368134px;}
.ws58{word-spacing:13.374134px;}
.ws76{word-spacing:13.380134px;}
.ws70{word-spacing:13.386134px;}
.ws57{word-spacing:13.392134px;}
.ws8a{word-spacing:13.398134px;}
.ws56{word-spacing:13.404134px;}
.ws84{word-spacing:13.410134px;}
.wsd7{word-spacing:13.411032px;}
.ws72{word-spacing:13.416134px;}
.ws7b{word-spacing:13.422134px;}
.ws8f{word-spacing:13.428134px;}
.ws9d{word-spacing:13.434134px;}
.ws23{word-spacing:13.440134px;}
.ws21{word-spacing:13.446134px;}
.wsbb{word-spacing:13.449432px;}
.ws6f{word-spacing:13.452135px;}
.ws7f{word-spacing:13.458135px;}
.ws68{word-spacing:13.464135px;}
.ws24{word-spacing:13.470135px;}
.wsd3{word-spacing:13.478232px;}
.ws54{word-spacing:13.482135px;}
.ws47{word-spacing:13.506135px;}
.ws71{word-spacing:13.512135px;}
.ws9f{word-spacing:13.530135px;}
.ws5b{word-spacing:13.536135px;}
.ws97{word-spacing:13.548135px;}
.ws5c{word-spacing:13.554136px;}
.ws1e{word-spacing:13.560136px;}
.ws94{word-spacing:13.566136px;}
.ws7a{word-spacing:13.584136px;}
.ws4a{word-spacing:13.590136px;}
.ws1d{word-spacing:13.608136px;}
.ws53{word-spacing:13.638136px;}
.ws5a{word-spacing:13.656137px;}
.ws6c{word-spacing:13.668137px;}
.ws80{word-spacing:15.400672px;}
.wsf9{word-spacing:15.523071px;}
.ws7d{word-spacing:15.580670px;}
.ws75{word-spacing:15.595070px;}
.ws92{word-spacing:15.631070px;}
.ws74{word-spacing:15.731869px;}
.ws95{word-spacing:15.854268px;}
.ws1{word-spacing:26.304132px;}
.ws2{word-spacing:26.388132px;}
.ws128{word-spacing:59.816026px;}
.wsfa{word-spacing:59.821652px;}
.ws103{word-spacing:59.860052px;}
.wsd0{word-spacing:106.006675px;}
.wscc{word-spacing:106.189073px;}
.wse5{word-spacing:110.609817px;}
.wse3{word-spacing:110.614617px;}
.wse4{word-spacing:110.950613px;}
.wsd1{word-spacing:132.684741px;}
.wse9{word-spacing:137.446282px;}
.wsca{word-spacing:141.228635px;}
.wse1{word-spacing:145.654179px;}
.wse2{word-spacing:206.618217px;}
.wscb{word-spacing:256.959988px;}
.wse6{word-spacing:303.001012px;}
.wse8{word-spacing:319.560805px;}
.wsb1{word-spacing:346.195673px;}
.wsad{word-spacing:346.373270px;}
.wse7{word-spacing:346.488469px;}
.wscd{word-spacing:353.342783px;}
.wsaf{word-spacing:354.168373px;}
.wscf{word-spacing:369.902576px;}
.wsce{word-spacing:396.830240px;}
.wsab{word-spacing:401.500581px;}
.wsac{word-spacing:539.887651px;}
.wsc9{word-spacing:1194.637867px;}
.wse0{word-spacing:1222.189522px;}
._7{margin-left:-10.550268px;}
._8{margin-left:-3.815952px;}
._1{margin-left:-1.319983px;}
._2{width:1.458015px;}
._9{width:9.259084px;}
._0{width:10.871864px;}
._4{width:12.576126px;}
._3{width:14.430144px;}
._a{width:16.516662px;}
._b{width:21.114936px;}
._5{width:46.545018px;}
._36{width:107.120261px;}
._35{width:109.616230px;}
._50{width:111.041812px;}
._37{width:112.112199px;}
._1a{width:116.840139px;}
._21{width:121.587280px;}
._2b{width:127.256009px;}
._4d{width:129.569580px;}
._26{width:132.468744px;}
._40{width:136.779090px;}
._4c{width:137.806277px;}
._20{width:142.711816px;}
._29{width:147.703754px;}
._44{width:152.306896px;}
._41{width:153.751678px;}
._31{width:157.855627px;}
._2e{width:159.497206px;}
._3b{width:161.383583px;}
._49{width:163.226760px;}
._4f{width:164.306746px;}
._1e{width:173.301834px;}
._3e{width:177.381783px;}
._38{width:179.911351px;}
._3a{width:182.407320px;}
._30{width:183.722503px;}
._24{width:185.800877px;}
._4b{width:187.380058px;}
._1b{width:188.392845px;}
._39{width:190.058424px;}
._3c{width:192.827990px;}
._1c{width:198.501519px;}
._2c{width:199.807102px;}
._3d{width:203.263059px;}
._23{width:206.743016px;}
._45{width:211.504556px;}
._27{width:222.198822px;}
._1f{width:224.694791px;}
._42{width:226.960363px;}
._3f{width:229.782728px;}
._34{width:233.013087px;}
._47{width:243.102561px;}
._4a{width:258.975963px;}
._48{width:261.471932px;}
._25{width:263.027112px;}
._43{width:266.809465px;}
._28{width:278.593318px;}
._2d{width:282.932463px;}
._22{width:291.965950px;}
._2a{width:293.444332px;}
._4e{width:300.332246px;}
._46{width:301.469832px;}
._32{width:309.317733px;}
._2f{width:311.813702px;}
._33{width:314.309671px;}
._15{width:347.251659px;}
._e{width:354.216372px;}
._18{width:378.216072px;}
._1d{width:381.916826px;}
._17{width:383.865602px;}
._16{width:388.718341px;}
._14{width:391.444707px;}
._12{width:393.331083px;}
._d{width:405.964525px;}
._c{width:459.699854px;}
._13{width:567.948101px;}
._11{width:583.375108px;}
._10{width:591.645404px;}
._f{width:594.141373px;}
._19{width:1742.339820px;}
._6{width:1768.873889px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.995200px;}
.fs9{font-size:39.996000px;}
.fs8{font-size:41.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y29{bottom:54.000000px;}
.y99{bottom:124.489215px;}
.y28{bottom:124.493610px;}
.ycb{bottom:124.495530px;}
.y1bb{bottom:124.496955px;}
.y77{bottom:124.497210px;}
.y41{bottom:124.501338px;}
.y19c{bottom:124.831740px;}
.y15c{bottom:131.555512px;}
.y171{bottom:135.205050px;}
.y40{bottom:140.998732px;}
.y12d{bottom:142.342049px;}
.y98{bottom:143.963910px;}
.y27{bottom:143.968304px;}
.yca{bottom:143.970225px;}
.y1ba{bottom:143.971650px;}
.y76{bottom:143.971904px;}
.y19b{bottom:144.390435px;}
.y71{bottom:144.566460px;}
.y1f1{bottom:147.116475px;}
.yd6{bottom:152.982000px;}
.y170{bottom:154.679745px;}
.y15b{bottom:158.598374px;}
.y12c{bottom:161.900745px;}
.y97{bottom:163.522605px;}
.y26{bottom:163.527000px;}
.yc9{bottom:163.528920px;}
.y75{bottom:163.530600px;}
.y19a{bottom:163.865130px;}
.y70{bottom:164.125155px;}
.y3f{bottom:166.510413px;}
.y1f0{bottom:166.589832px;}
.y1b9{bottom:169.483500px;}
.yd5{bottom:172.456695px;}
.y16f{bottom:174.238440px;}
.y15a{bottom:176.533674px;}
.y1ef{bottom:180.876853px;}
.y12b{bottom:181.375440px;}
.y96{bottom:182.997300px;}
.y25{bottom:183.001695px;}
.yc8{bottom:183.003615px;}
.y3e{bottom:183.007807px;}
.y199{bottom:183.339825px;}
.y6f{bottom:183.583575px;}
.y74{bottom:188.956875px;}
.yf0{bottom:188.957400px;}
.yd4{bottom:191.931390px;}
.y16e{bottom:193.713135px;}
.y159{bottom:194.562248px;}
.y1ee{bottom:200.351410px;}
.y12a{bottom:200.850134px;}
.y95{bottom:202.471995px;}
.y24{bottom:202.476390px;}
.yc7{bottom:202.478310px;}
.y198{bottom:202.898520px;}
.y6e{bottom:203.058269px;}
.y3d{bottom:208.519488px;}
.y1b8{bottom:210.726061px;}
.yd3{bottom:211.490085px;}
.y158{bottom:212.590823px;}
.y16d{bottom:213.187830px;}
.y1ed{bottom:214.638431px;}
.y73{bottom:215.999850px;}
.y129{bottom:220.408830px;}
.y224{bottom:220.847493px;}
.y94{bottom:222.030690px;}
.y23{bottom:222.035085px;}
.yc6{bottom:222.037005px;}
.y197{bottom:222.373215px;}
.y6d{bottom:222.616965px;}
.y3c{bottom:225.016882px;}
.y1ec{bottom:228.840254px;}
.y1b7{bottom:230.200755px;}
.y157{bottom:230.534199px;}
.yd2{bottom:230.964780px;}
.y16c{bottom:232.746525px;}
.y223{bottom:235.049316px;}
.yef{bottom:238.533330px;}
.y128{bottom:239.883525px;}
.y93{bottom:241.505385px;}
.y22{bottom:241.509780px;}
.yc5{bottom:241.511700px;}
.y196{bottom:241.847910px;}
.y6c{bottom:242.091660px;}
.y1eb{bottom:248.398809px;}
.y156{bottom:248.562773px;}
.y222{bottom:249.336337px;}
.y1b6{bottom:249.675450px;}
.yd1{bottom:250.439475px;}
.y3b{bottom:250.528563px;}
.y16b{bottom:252.221220px;}
.yee{bottom:258.008025px;}
.y127{bottom:259.358219px;}
.y92{bottom:260.980080px;}
.y21{bottom:260.984475px;}
.y195{bottom:261.406605px;}
.y6b{bottom:261.566355px;}
.y1ea{bottom:262.600632px;}
.yc4{bottom:267.023550px;}
.y3a{bottom:267.025957px;}
.y221{bottom:268.809694px;}
.yd0{bottom:269.914169px;}
.y16a{bottom:271.695915px;}
.y1b5{bottom:275.187300px;}
.y155{bottom:277.391213px;}
.yed{bottom:277.566720px;}
.y126{bottom:278.916915px;}
.y91{bottom:280.454775px;}
.y20{bottom:280.459169px;}
.y194{bottom:280.881300px;}
.y6a{bottom:281.125050px;}
.y1e9{bottom:282.159187px;}
.y220{bottom:283.096715px;}
.y39{bottom:283.523350px;}
.ycf{bottom:289.472865px;}
.y169{bottom:291.170610px;}
.y154{bottom:296.185378px;}
.y1e8{bottom:296.361010px;}
.yec{bottom:297.041415px;}
.y125{bottom:298.391610px;}
.y90{bottom:300.013470px;}
.y1f{bottom:300.017865px;}
.y38{bottom:300.020744px;}
.y193{bottom:300.355995px;}
.y69{bottom:300.599745px;}
.y21f{bottom:302.570072px;}
.yc3{bottom:308.009204px;}
.yce{bottom:308.947560px;}
.y168{bottom:310.729305px;}
.y153{bottom:314.894344px;}
.y1e7{bottom:315.834366px;}
.yeb{bottom:316.516110px;}
.y37{bottom:316.518138px;}
.y21e{bottom:316.857093px;}
.y124{bottom:317.866305px;}
.y8f{bottom:319.488165px;}
.y1e{bottom:319.492560px;}
.y192{bottom:319.830690px;}
.y68{bottom:320.074440px;}
.y1b4{bottom:325.357679px;}
.yc2{bottom:327.567900px;}
.ycd{bottom:328.422254px;}
.y1e6{bottom:330.121388px;}
.y167{bottom:330.204000px;}
.y21d{bottom:331.058916px;}
.y36{bottom:333.015532px;}
.y152{bottom:333.688509px;}
.yea{bottom:335.990804px;}
.y123{bottom:337.340999px;}
.y8e{bottom:338.962860px;}
.y1d{bottom:338.967254px;}
.y191{bottom:339.389385px;}
.y67{bottom:339.549134px;}
.y1b3{bottom:344.916375px;}
.yc1{bottom:347.042595px;}
.ycc{bottom:347.980950px;}
.y1e5{bottom:349.594744px;}
.y166{bottom:349.678695px;}
.y21c{bottom:350.617471px;}
.y151{bottom:352.397475px;}
.ye9{bottom:355.547820px;}
.y122{bottom:356.899695px;}
.y8d{bottom:358.521555px;}
.y1c{bottom:358.525950px;}
.y35{bottom:358.527213px;}
.y190{bottom:358.864080px;}
.y66{bottom:359.107830px;}
.y1e4{bottom:363.881766px;}
.y1b2{bottom:364.391070px;}
.y21b{bottom:364.819294px;}
.yc0{bottom:366.517290px;}
.y165{bottom:369.237390px;}
.y150{bottom:371.191640px;}
.ye8{bottom:375.022515px;}
.y121{bottom:376.374390px;}
.y8c{bottom:377.996250px;}
.y1e3{bottom:378.083588px;}
.y18f{bottom:378.338775px;}
.y65{bottom:378.582525px;}
.yda{bottom:379.955897px;}
.y1b{bottom:384.037650px;}
.y34{bottom:384.038894px;}
.y21a{bottom:384.292650px;}
.ybf{bottom:386.075985px;}
.y164{bottom:388.712085px;}
.y14f{bottom:389.900607px;}
.y1b1{bottom:392.879354px;}
.ye7{bottom:394.497210px;}
.y120{bottom:395.849084px;}
.y8b{bottom:397.470945px;}
.y1e2{bottom:397.642144px;}
.y18e{bottom:397.897470px;}
.y64{bottom:398.057219px;}
.y219{bottom:398.579672px;}
.yd9{bottom:403.256006px;}
.ybe{bottom:405.550680px;}
.y163{bottom:408.186780px;}
.y14e{bottom:408.693572px;}
.y33{bottom:409.465376px;}
.y1e1{bottom:411.843966px;}
.y1b0{bottom:412.438050px;}
.ye6{bottom:414.055905px;}
.y11f{bottom:415.407780px;}
.y8a{bottom:417.029640px;}
.y18d{bottom:417.372165px;}
.yd8{bottom:417.457829px;}
.y63{bottom:417.615915px;}
.y218{bottom:418.053028px;}
.ybd{bottom:425.025375px;}
.y1e0{bottom:426.130987px;}
.y14d{bottom:427.402538px;}
.y162{bottom:427.745475px;}
.yd7{bottom:431.744850px;}
.y217{bottom:432.340050px;}
.ye5{bottom:433.529955px;}
.y11e{bottom:434.882475px;}
.y32{bottom:434.977057px;}
.y89{bottom:436.504335px;}
.y18c{bottom:436.846860px;}
.y62{bottom:437.090610px;}
.y1af{bottom:440.926335px;}
.ybc{bottom:444.500069px;}
.y1df{bottom:445.605544px;}
.y14c{bottom:446.196703px;}
.y216{bottom:446.541872px;}
.y161{bottom:447.220170px;}
.y31{bottom:451.474451px;}
.ye4{bottom:453.002580px;}
.y11d{bottom:454.357169px;}
.y88{bottom:455.979030px;}
.y18b{bottom:456.405555px;}
.y61{bottom:456.565305px;}
.y1de{bottom:459.892565px;}
.y1ae{bottom:460.401030px;}
.ybb{bottom:464.058765px;}
.y14b{bottom:464.905669px;}
.y215{bottom:466.100428px;}
.y160{bottom:466.694865px;}
.ye3{bottom:472.561275px;}
.y11c{bottom:473.915865px;}
.y1dd{bottom:474.094388px;}
.y87{bottom:475.537725px;}
.y18a{bottom:475.880250px;}
.y60{bottom:476.124000px;}
.y30{bottom:476.986132px;}
.y1a{bottom:477.923550px;}
.y1ad{bottom:479.875724px;}
.y214{bottom:480.304135px;}
.yba{bottom:483.533460px;}
.y14a{bottom:483.699834px;}
.y15f{bottom:486.169560px;}
.ye2{bottom:492.035970px;}
.y11b{bottom:493.390560px;}
.y2f{bottom:493.483526px;}
.y1dc{bottom:493.652943px;}
.y86{bottom:495.012420px;}
.y5f{bottom:495.598695px;}
.y19{bottom:498.928050px;}
.y213{bottom:499.862690px;}
.y149{bottom:502.408800px;}
.yb9{bottom:503.008154px;}
.y15e{bottom:505.728255px;}
.y1a2{bottom:507.938352px;}
.y1ac{bottom:508.364009px;}
.y2e{bottom:509.980920px;}
.ye1{bottom:511.510665px;}
.y11a{bottom:512.865254px;}
.y1db{bottom:513.131971px;}
.y212{bottom:514.064513px;}
.y85{bottom:514.487115px;}
.y5e{bottom:515.073390px;}
.y18{bottom:519.932550px;}
.y148{bottom:521.202965px;}
.yb8{bottom:522.566850px;}
.y15d{bottom:525.202950px;}
.y2d{bottom:526.478313px;}
.y1ab{bottom:527.922705px;}
.ye0{bottom:530.985360px;}
.y1a1{bottom:531.154462px;}
.y119{bottom:532.423950px;}
.y1da{bottom:532.605328px;}
.y211{bottom:533.623068px;}
.y84{bottom:533.961810px;}
.y5d{bottom:534.632085px;}
.y147{bottom:539.911931px;}
.y17{bottom:540.937050px;}
.y2c{bottom:542.975707px;}
.y1a0{bottom:545.356285px;}
.y1d9{bottom:546.892349px;}
.y210{bottom:547.824891px;}
.yb7{bottom:548.078550px;}
.ydf{bottom:550.544055px;}
.y118{bottom:551.898645px;}
.y83{bottom:553.520505px;}
.y5c{bottom:554.106780px;}
.y1aa{bottom:556.410990px;}
.y146{bottom:558.706096px;}
.y19f{bottom:559.643306px;}
.y16{bottom:561.941550px;}
.y189{bottom:563.208698px;}
.y1d8{bottom:566.365706px;}
.y20f{bottom:567.298247px;}
.y2b{bottom:567.552600px;}
.yde{bottom:570.018750px;}
.y117{bottom:571.373340px;}
.y82{bottom:572.994405px;}
.y5b{bottom:573.581475px;}
.y19e{bottom:573.930328px;}
.y1a9{bottom:575.885684px;}
.y145{bottom:577.415063px;}
.y1d7{bottom:580.652727px;}
.y20e{bottom:581.585269px;}
.y15{bottom:582.946050px;}
.y19d{bottom:588.132150px;}
.yb6{bottom:589.066905px;}
.y188{bottom:590.251560px;}
.y116{bottom:590.848034px;}
.y81{bottom:592.469100px;}
.y5a{bottom:593.056169px;}
.y1a8{bottom:595.360379px;}
.ydd{bottom:595.530600px;}
.y20d{bottom:595.872290px;}
.y144{bottom:596.209228px;}
.y1d6{bottom:600.126084px;}
.y14{bottom:603.950550px;}
.y187{bottom:608.194936px;}
.yb5{bottom:608.541854px;}
.y115{bottom:610.406730px;}
.y59{bottom:612.614865px;}
.y1d5{bottom:614.413105px;}
.y143{bottom:614.918194px;}
.y1a7{bottom:614.919075px;}
.y20c{bottom:615.345647px;}
.y80{bottom:617.980950px;}
.y13{bottom:624.955050px;}
.y186{bottom:626.223511px;}
.yb2{bottom:628.099905px;}
.yb4{bottom:628.100550px;}
.y20b{bottom:629.547469px;}
.y114{bottom:629.881425px;}
.y58{bottom:632.089560px;}
.y142{bottom:633.712359px;}
.y1d4{bottom:633.886462px;}
.y1a6{bottom:634.393770px;}
.yb3{bottom:634.733700px;}
.y20a{bottom:643.834491px;}
.y185{bottom:644.252085px;}
.ydc{bottom:645.023804px;}
.y12{bottom:645.959550px;}
.yaf{bottom:647.573955px;}
.yb1{bottom:647.574600px;}
.y1d3{bottom:648.088284px;}
.y113{bottom:649.356119px;}
.y57{bottom:651.564254px;}
.yb0{bottom:654.207750px;}
.y141{bottom:656.162878px;}
.y7f{bottom:661.008780px;}
.y184{bottom:662.195461px;}
.y1a5{bottom:662.882054px;}
.y209{bottom:663.307847px;}
.ydb{bottom:664.582500px;}
.y11{bottom:666.964050px;}
.yac{bottom:667.048019px;}
.yae{bottom:667.048650px;}
.y1d2{bottom:667.646840px;}
.y112{bottom:668.914815px;}
.y56{bottom:671.122950px;}
.yad{bottom:673.766700px;}
.y208{bottom:677.594869px;}
.y183{bottom:680.224036px;}
.y7e{bottom:680.567475px;}
.y1d1{bottom:681.848662px;}
.y140{bottom:681.930156px;}
.y1a4{bottom:682.440750px;}
.yab{bottom:686.606715px;}
.y10{bottom:687.968550px;}
.y111{bottom:688.389510px;}
.y55{bottom:690.597645px;}
.y2a{bottom:695.536800px;}
.y207{bottom:697.068225px;}
.y7d{bottom:700.042170px;}
.y1d0{bottom:701.407218px;}
.y103{bottom:701.485370px;}
.yaa{bottom:706.081410px;}
.y13f{bottom:706.421850px;}
.y110{bottom:707.864204px;}
.y1a3{bottom:707.867550px;}
.yf{bottom:708.973050px;}
.y182{bottom:709.137674px;}
.y54{bottom:710.072340px;}
.y206{bottom:711.355247px;}
.y1cf{bottom:715.609040px;}
.y7c{bottom:719.516865px;}
.ya9{bottom:725.556104px;}
.y10f{bottom:727.422900px;}
.y181{bottom:727.846640px;}
.y102{bottom:728.443033px;}
.y53{bottom:729.631035px;}
.y205{bottom:730.828603px;}
.y1ce{bottom:735.082397px;}
.y7b{bottom:739.075561px;}
.ye{bottom:741.968250px;}
.ya8{bottom:745.114800px;}
.y204{bottom:745.115625px;}
.y101{bottom:746.471608px;}
.y180{bottom:746.640805px;}
.y10e{bottom:746.897595px;}
.y52{bottom:749.105730px;}
.y1cd{bottom:754.640953px;}
.y13e{bottom:754.890600px;}
.y7a{bottom:758.550255px;}
.y100{bottom:764.414983px;}
.y203{bottom:764.588981px;}
.y17f{bottom:765.349772px;}
.y10d{bottom:766.372290px;}
.y51{bottom:768.580425px;}
.ya7{bottom:770.541075px;}
.y1cc{bottom:774.114309px;}
.y13d{bottom:774.365295px;}
.y79{bottom:778.024950px;}
.y202{bottom:778.790804px;}
.yff{bottom:782.443558px;}
.y17e{bottom:784.143937px;}
.y10c{bottom:785.846984px;}
.y50{bottom:788.055119px;}
.y1cb{bottom:788.401331px;}
.y13c{bottom:793.839990px;}
.ya6{bottom:797.584050px;}
.y201{bottom:798.349359px;}
.yfe{bottom:800.472133px;}
.y17d{bottom:802.852903px;}
.y78{bottom:803.536800px;}
.yd{bottom:804.983288px;}
.y10b{bottom:805.405680px;}
.y4f{bottom:807.613815px;}
.y1ca{bottom:807.874687px;}
.y200{bottom:812.551182px;}
.y13b{bottom:813.398685px;}
.yfd{bottom:818.415508px;}
.y17c{bottom:821.647068px;}
.y1c9{bottom:822.161709px;}
.y10a{bottom:824.880375px;}
.y4e{bottom:827.088510px;}
.y1ff{bottom:832.109737px;}
.y13a{bottom:832.873380px;}
.yc{bottom:835.002112px;}
.ya5{bottom:838.654350px;}
.y17b{bottom:840.356034px;}
.y1c8{bottom:841.635065px;}
.y109{bottom:844.355069px;}
.y1fe{bottom:846.311560px;}
.y4d{bottom:846.563204px;}
.yfc{bottom:847.329147px;}
.yb{bottom:849.968325px;}
.y139{bottom:852.348075px;}
.y1c7{bottom:855.836888px;}
.ya4{bottom:858.129045px;}
.y17a{bottom:859.065000px;}
.y108{bottom:863.913765px;}
.ya{bottom:864.935738px;}
.y1fd{bottom:865.870115px;}
.y4c{bottom:866.121900px;}
.yfb{bottom:866.123312px;}
.y138{bottom:871.906770px;}
.y1c6{bottom:875.395443px;}
.ya3{bottom:877.603740px;}
.y179{bottom:877.859165px;}
.y9{bottom:879.987150px;}
.y1fc{bottom:880.071938px;}
.y107{bottom:883.388460px;}
.yfa{bottom:884.832278px;}
.y4b{bottom:885.596595px;}
.y1c5{bottom:889.597266px;}
.y137{bottom:891.381465px;}
.y1fb{bottom:894.358959px;}
.y178{bottom:896.568131px;}
.ya2{bottom:897.078434px;}
.y106{bottom:902.863154px;}
.yf9{bottom:903.541244px;}
.y4a{bottom:905.071290px;}
.y8{bottom:906.944700px;}
.y6{bottom:906.945300px;}
.y1c4{bottom:909.155821px;}
.y136{bottom:910.856160px;}
.y7{bottom:912.982500px;}
.y1fa{bottom:913.833516px;}
.y177{bottom:915.362296px;}
.ya1{bottom:916.637130px;}
.yf8{bottom:922.335409px;}
.y105{bottom:922.421850px;}
.y1c3{bottom:923.357644px;}
.y4{bottom:923.442300px;}
.y49{bottom:924.629985px;}
.y5{bottom:929.480100px;}
.y135{bottom:930.330854px;}
.y1f9{bottom:933.306872px;}
.y176{bottom:934.071263px;}
.ya0{bottom:936.111825px;}
.yf7{bottom:941.044375px;}
.y1c2{bottom:942.831000px;}
.y48{bottom:944.104680px;}
.y1f8{bottom:947.593894px;}
.y104{bottom:947.848500px;}
.y134{bottom:949.889550px;}
.y175{bottom:952.864228px;}
.y9f{bottom:955.586519px;}
.y1c1{bottom:957.118022px;}
.yf6{bottom:959.838540px;}
.y3{bottom:960.943762px;}
.y1f7{bottom:961.795716px;}
.y47{bottom:963.579375px;}
.y174{bottom:971.573194px;}
.y9e{bottom:975.145215px;}
.y1c0{bottom:976.591378px;}
.yf5{bottom:978.547507px;}
.y1f6{bottom:981.354272px;}
.y46{bottom:983.138070px;}
.y133{bottom:985.435303px;}
.y173{bottom:990.367359px;}
.y1bf{bottom:990.878400px;}
.y9d{bottom:994.619910px;}
.y1f5{bottom:995.556094px;}
.yf4{bottom:997.340472px;}
.y2{bottom:998.446950px;}
.y45{bottom:1002.612765px;}
.y1be{bottom:1005.080222px;}
.y132{bottom:1008.735412px;}
.y172{bottom:1012.817878px;}
.y9c{bottom:1014.094604px;}
.y1f4{bottom:1015.114650px;}
.yf3{bottom:1016.049438px;}
.y44{bottom:1022.087460px;}
.y131{bottom:1022.937235px;}
.y1bd{bottom:1024.638778px;}
.y1f3{bottom:1029.316472px;}
.y9b{bottom:1033.653300px;}
.y1{bottom:1035.949350px;}
.y130{bottom:1037.224256px;}
.yf2{bottom:1038.585156px;}
.y1bc{bottom:1038.840600px;}
.y43{bottom:1041.562154px;}
.y1f2{bottom:1048.789829px;}
.y12f{bottom:1051.426079px;}
.y9a{bottom:1059.079950px;}
.y42{bottom:1061.120850px;}
.yf1{bottom:1063.076850px;}
.y12e{bottom:1065.713100px;}
.y72{bottom:1118.692500px;}
.h4{height:26.528462px;}
.hf{height:34.196580px;}
.ha{height:34.943563px;}
.h13{height:35.375558px;}
.h16{height:37.191996px;}
.h1{height:37.199535px;}
.h3{height:39.798000px;}
.h9{height:41.711479px;}
.h14{height:41.743784px;}
.h15{height:42.180422px;}
.he{height:42.720427px;}
.h6{height:44.175000px;}
.h8{height:51.300513px;}
.h11{height:51.303092px;}
.hd{height:51.303692px;}
.h12{height:51.307232px;}
.h10{height:51.308794px;}
.hb{height:51.365614px;}
.h7{height:53.063558px;}
.hc{height:55.799535px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:54.000000px;}
.xf{left:71.433000px;}
.xe{left:84.018900px;}
.x1b{left:155.621930px;}
.x1a{left:168.207372px;}
.x19{left:267.448650px;}
.x18{left:272.380950px;}
.x1{left:300.018750px;}
.x12{left:307.077000px;}
.x13{left:315.751050px;}
.x10{left:317.961929px;}
.x1c{left:331.483190px;}
.xa{left:394.327350px;}
.x2{left:395.858100px;}
.xb{left:399.855000px;}
.x3{left:401.470800px;}
.x14{left:402.746400px;}
.x17{left:471.627405px;}
.x15{left:487.275450px;}
.x16{left:495.949500px;}
.xc{left:502.242300px;}
.x4{left:534.982500px;}
.x5{left:540.595050px;}
.x11{left:635.499000px;}
.x6{left:649.530600px;}
.x7{left:655.143150px;}
.x8{left:793.162050px;}
.x9{left:798.774600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.353759pt;}
.ls23{letter-spacing:-0.004267pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.004267pt;}
.ls29{letter-spacing:0.008533pt;}
.ls5{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.026667pt;}
.ls2a{letter-spacing:0.029866pt;}
.ls2b{letter-spacing:0.034133pt;}
.ls13{letter-spacing:0.053334pt;}
.ls18{letter-spacing:0.072532pt;}
.lsf{letter-spacing:0.096001pt;}
.ls28{letter-spacing:0.101334pt;}
.ls10{letter-spacing:0.128001pt;}
.ls4{letter-spacing:0.154668pt;}
.ls8{letter-spacing:0.165335pt;}
.ls11{letter-spacing:0.186669pt;}
.lsb{letter-spacing:0.192002pt;}
.ls24{letter-spacing:0.200531pt;}
.ls1c{letter-spacing:2.498933pt;}
.lsc{letter-spacing:2.619344pt;}
.ls14{letter-spacing:2.801333pt;}
.ls1d{letter-spacing:2.801867pt;}
.lse{letter-spacing:2.921744pt;}
.ls2{letter-spacing:9.104953pt;}
.ls17{letter-spacing:9.143352pt;}
.ls6{letter-spacing:9.378016pt;}
.ls1b{letter-spacing:9.403616pt;}
.ls19{letter-spacing:9.446282pt;}
.ls3{letter-spacing:10.726133pt;}
.ls27{letter-spacing:11.354780pt;}
.ls12{letter-spacing:11.589449pt;}
.ls16{letter-spacing:11.642783pt;}
.ls9{letter-spacing:11.653450pt;}
.ls21{letter-spacing:11.711854pt;}
.ls22{letter-spacing:11.797186pt;}
.ls20{letter-spacing:11.822786pt;}
.ls26{letter-spacing:11.865452pt;}
.ls15{letter-spacing:11.946786pt;}
.lsa{letter-spacing:11.957453pt;}
.ls1f{letter-spacing:12.014783pt;}
.ls1e{letter-spacing:12.168381pt;}
.ls1{letter-spacing:18.478702pt;}
.ls0{letter-spacing:18.777365pt;}
.ls25{letter-spacing:141.536364pt;}
.wsb3{word-spacing:-11.839852pt;}
.ws29{word-spacing:-9.420682pt;}
.wsf8{word-spacing:-0.063999pt;}
.ws44{word-spacing:-0.053334pt;}
.ws14{word-spacing:-0.050667pt;}
.ws4{word-spacing:-0.048000pt;}
.ws10{word-spacing:-0.042666pt;}
.wsc5{word-spacing:-0.038400pt;}
.ws42{word-spacing:0.000000pt;}
.ws2d{word-spacing:8.554560pt;}
.ws38{word-spacing:8.567360pt;}
.ws2f{word-spacing:8.639892pt;}
.ws10f{word-spacing:8.656958pt;}
.ws2e{word-spacing:8.665492pt;}
.ws111{word-spacing:8.695358pt;}
.ws3d{word-spacing:8.716691pt;}
.ws63{word-spacing:8.720958pt;}
.ws109{word-spacing:8.725224pt;}
.wsa{word-spacing:8.729491pt;}
.ws2b{word-spacing:8.733757pt;}
.ws37{word-spacing:8.755091pt;}
.ws108{word-spacing:8.759357pt;}
.ws101{word-spacing:8.767890pt;}
.ws36{word-spacing:8.776424pt;}
.wsf{word-spacing:8.780690pt;}
.ws34{word-spacing:8.784957pt;}
.ws126{word-spacing:8.793490pt;}
.ws104{word-spacing:8.802023pt;}
.wsea{word-spacing:8.806290pt;}
.ws3f{word-spacing:8.814823pt;}
.ws31{word-spacing:8.819090pt;}
.ws41{word-spacing:8.823356pt;}
.wsfb{word-spacing:8.827623pt;}
.wsff{word-spacing:8.831890pt;}
.ws114{word-spacing:8.836156pt;}
.ws113{word-spacing:8.844689pt;}
.ws2c{word-spacing:8.853223pt;}
.ws119{word-spacing:8.857489pt;}
.ws33{word-spacing:8.866023pt;}
.wsc{word-spacing:8.870289pt;}
.ws117{word-spacing:8.874556pt;}
.ws11e{word-spacing:8.878822pt;}
.wsee{word-spacing:8.887356pt;}
.ws116{word-spacing:8.891622pt;}
.ws32{word-spacing:8.895889pt;}
.wsa1{word-spacing:8.900155pt;}
.wsb{word-spacing:8.904422pt;}
.ws35{word-spacing:8.908689pt;}
.ws40{word-spacing:8.921488pt;}
.ws3a{word-spacing:8.930022pt;}
.ws102{word-spacing:8.934288pt;}
.wsc8{word-spacing:8.938555pt;}
.ws121{word-spacing:8.942822pt;}
.ws11f{word-spacing:8.955621pt;}
.ws3c{word-spacing:8.959888pt;}
.wseb{word-spacing:8.968421pt;}
.ws112{word-spacing:8.989754pt;}
.ws115{word-spacing:8.998288pt;}
.wsef{word-spacing:9.002554pt;}
.ws127{word-spacing:9.006821pt;}
.wsa3{word-spacing:9.011087pt;}
.ws10e{word-spacing:9.015354pt;}
.wsc2{word-spacing:9.028154pt;}
.ws30{word-spacing:9.032420pt;}
.wsc4{word-spacing:9.036687pt;}
.wsf0{word-spacing:9.040954pt;}
.ws28{word-spacing:9.045220pt;}
.ws2a{word-spacing:9.049487pt;}
.ws107{word-spacing:9.053753pt;}
.wse{word-spacing:9.062287pt;}
.ws118{word-spacing:9.066553pt;}
.ws106{word-spacing:9.070820pt;}
.wsa6{word-spacing:9.096420pt;}
.wsfd{word-spacing:9.100686pt;}
.ws100{word-spacing:9.109219pt;}
.ws123{word-spacing:9.122019pt;}
.wsc3{word-spacing:9.126286pt;}
.wsa7{word-spacing:9.130553pt;}
.ws122{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.wsc6{word-spacing:9.143352pt;}
.ws125{word-spacing:9.151886pt;}
.ws10a{word-spacing:9.156152pt;}
.wsa0{word-spacing:9.160419pt;}
.ws11b{word-spacing:9.173219pt;}
.ws10b{word-spacing:9.181752pt;}
.ws11c{word-spacing:9.186019pt;}
.wsc0{word-spacing:9.198818pt;}
.ws3e{word-spacing:9.203085pt;}
.ws105{word-spacing:9.207352pt;}
.ws11a{word-spacing:9.211618pt;}
.wsa2{word-spacing:9.232951pt;}
.wsfc{word-spacing:9.237218pt;}
.ws10c{word-spacing:9.241484pt;}
.wsa4{word-spacing:9.250018pt;}
.ws129{word-spacing:9.262818pt;}
.ws39{word-spacing:9.267084pt;}
.ws3b{word-spacing:9.284151pt;}
.wsd{word-spacing:9.301217pt;}
.ws11d{word-spacing:9.305484pt;}
.ws124{word-spacing:9.314017pt;}
.ws110{word-spacing:9.331083pt;}
.wsfe{word-spacing:9.343883pt;}
.wsa5{word-spacing:9.365216pt;}
.ws120{word-spacing:9.395083pt;}
.wsc7{word-spacing:9.433482pt;}
.ws10d{word-spacing:9.454815pt;}
.wsc1{word-spacing:9.463348pt;}
.ws19{word-spacing:10.006667pt;}
.ws17{word-spacing:10.092800pt;}
.ws1a{word-spacing:10.133333pt;}
.ws16{word-spacing:10.143467pt;}
.ws13{word-spacing:10.219467pt;}
.ws7{word-spacing:10.224000pt;}
.ws12{word-spacing:10.229600pt;}
.ws5{word-spacing:10.305600pt;}
.ws3{word-spacing:10.353600pt;}
.ws6{word-spacing:10.387200pt;}
.wsf5{word-spacing:10.442771pt;}
.wsf4{word-spacing:10.480105pt;}
.ws8{word-spacing:10.502400pt;}
.ws9{word-spacing:10.536000pt;}
.ws15{word-spacing:10.599467pt;}
.wsf7{word-spacing:10.634773pt;}
.wsf1{word-spacing:10.656107pt;}
.ws11{word-spacing:10.685600pt;}
.wsf2{word-spacing:10.746774pt;}
.ws18{word-spacing:10.761600pt;}
.wsf6{word-spacing:11.072111pt;}
.ws9a{word-spacing:11.104111pt;}
.ws25{word-spacing:11.216112pt;}
.ws52{word-spacing:11.280113pt;}
.wsdf{word-spacing:11.296113pt;}
.wsa8{word-spacing:11.312113pt;}
.wsb2{word-spacing:11.319325pt;}
.ws86{word-spacing:11.322780pt;}
.ws65{word-spacing:11.354780pt;}
.ws96{word-spacing:11.365447pt;}
.wsf3{word-spacing:11.376114pt;}
.ws79{word-spacing:11.402781pt;}
.ws66{word-spacing:11.408114pt;}
.ws64{word-spacing:11.418781pt;}
.wsd4{word-spacing:11.421724pt;}
.ws77{word-spacing:11.440114pt;}
.wsb6{word-spacing:11.451590pt;}
.wsd8{word-spacing:11.455857pt;}
.wsec{word-spacing:11.456115pt;}
.wsb7{word-spacing:11.460123pt;}
.ws85{word-spacing:11.472115pt;}
.wsba{word-spacing:11.485723pt;}
.wsb5{word-spacing:11.489990pt;}
.ws51{word-spacing:11.498782pt;}
.wsbd{word-spacing:11.504115pt;}
.ws5d{word-spacing:11.509448pt;}
.wsb0{word-spacing:11.515589pt;}
.ws73{word-spacing:11.520115pt;}
.wsa9{word-spacing:11.525449pt;}
.wsdb{word-spacing:11.528389pt;}
.ws22{word-spacing:11.530782pt;}
.ws5f{word-spacing:11.536115pt;}
.ws90{word-spacing:11.541449pt;}
.wsd5{word-spacing:11.545456pt;}
.ws59{word-spacing:11.552116pt;}
.ws1b{word-spacing:11.557449pt;}
.ws4b{word-spacing:11.562782pt;}
.ws45{word-spacing:11.568116pt;}
.wsbe{word-spacing:11.573449pt;}
.ws26{word-spacing:11.578782pt;}
.wsd9{word-spacing:11.583855pt;}
.wsed{word-spacing:11.584116pt;}
.wsd2{word-spacing:11.588122pt;}
.ws67{word-spacing:11.589449pt;}
.ws50{word-spacing:11.594783pt;}
.ws49{word-spacing:11.600116pt;}
.ws99{word-spacing:11.610783pt;}
.ws6e{word-spacing:11.616116pt;}
.wsb8{word-spacing:11.617988pt;}
.ws91{word-spacing:11.621450pt;}
.wsd6{word-spacing:11.622255pt;}
.ws4f{word-spacing:11.626783pt;}
.ws4d{word-spacing:11.637450pt;}
.ws82{word-spacing:11.642783pt;}
.ws1c{word-spacing:11.648116pt;}
.ws27{word-spacing:11.653450pt;}
.wsae{word-spacing:11.656388pt;}
.ws6d{word-spacing:11.658783pt;}
.ws61{word-spacing:11.664117pt;}
.wsb4{word-spacing:11.669187pt;}
.ws1f{word-spacing:11.669450pt;}
.ws5e{word-spacing:11.674783pt;}
.ws46{word-spacing:11.680117pt;}
.wsde{word-spacing:11.681987pt;}
.ws9c{word-spacing:11.685450pt;}
.ws69{word-spacing:11.690784pt;}
.wsbf{word-spacing:11.696117pt;}
.ws8e{word-spacing:11.701450pt;}
.ws88{word-spacing:11.706784pt;}
.ws6a{word-spacing:11.712117pt;}
.ws9e{word-spacing:11.717451pt;}
.wsaa{word-spacing:11.722784pt;}
.ws87{word-spacing:11.728117pt;}
.ws62{word-spacing:11.733451pt;}
.ws8c{word-spacing:11.738784pt;}
.ws4e{word-spacing:11.744117pt;}
.ws20{word-spacing:11.749451pt;}
.ws4c{word-spacing:11.754784pt;}
.ws7e{word-spacing:11.760118pt;}
.ws9b{word-spacing:11.770784pt;}
.ws60{word-spacing:11.776118pt;}
.ws89{word-spacing:11.781451pt;}
.wsda{word-spacing:11.784386pt;}
.ws81{word-spacing:11.797451pt;}
.ws8b{word-spacing:11.802785pt;}
.wsdd{word-spacing:11.813039pt;}
.wsb9{word-spacing:11.814252pt;}
.ws78{word-spacing:11.818785pt;}
.ws55{word-spacing:11.824118pt;}
.ws83{word-spacing:11.829452pt;}
.wsbc{word-spacing:11.834785pt;}
.ws43{word-spacing:11.840118pt;}
.wsdc{word-spacing:11.848385pt;}
.ws98{word-spacing:11.850785pt;}
.ws6b{word-spacing:11.861452pt;}
.ws8d{word-spacing:11.866785pt;}
.ws7c{word-spacing:11.872119pt;}
.ws93{word-spacing:11.877452pt;}
.ws48{word-spacing:11.882785pt;}
.ws58{word-spacing:11.888119pt;}
.ws76{word-spacing:11.893452pt;}
.ws70{word-spacing:11.898786pt;}
.ws57{word-spacing:11.904119pt;}
.ws8a{word-spacing:11.909452pt;}
.ws56{word-spacing:11.914786pt;}
.ws84{word-spacing:11.920119pt;}
.wsd7{word-spacing:11.920918pt;}
.ws72{word-spacing:11.925453pt;}
.ws7b{word-spacing:11.930786pt;}
.ws8f{word-spacing:11.936119pt;}
.ws9d{word-spacing:11.941453pt;}
.ws23{word-spacing:11.946786pt;}
.ws21{word-spacing:11.952120pt;}
.wsbb{word-spacing:11.955051pt;}
.ws6f{word-spacing:11.957453pt;}
.ws7f{word-spacing:11.962786pt;}
.ws68{word-spacing:11.968120pt;}
.ws24{word-spacing:11.973453pt;}
.wsd3{word-spacing:11.980650pt;}
.ws54{word-spacing:11.984120pt;}
.ws47{word-spacing:12.005453pt;}
.ws71{word-spacing:12.010787pt;}
.ws9f{word-spacing:12.026787pt;}
.ws5b{word-spacing:12.032120pt;}
.ws97{word-spacing:12.042787pt;}
.ws5c{word-spacing:12.048120pt;}
.ws1e{word-spacing:12.053454pt;}
.ws94{word-spacing:12.058787pt;}
.ws7a{word-spacing:12.074787pt;}
.ws4a{word-spacing:12.080121pt;}
.ws1d{word-spacing:12.096121pt;}
.ws53{word-spacing:12.122788pt;}
.ws5a{word-spacing:12.138788pt;}
.ws6c{word-spacing:12.149455pt;}
.ws80{word-spacing:13.689486pt;}
.wsf9{word-spacing:13.798285pt;}
.ws7d{word-spacing:13.849485pt;}
.ws75{word-spacing:13.862284pt;}
.ws92{word-spacing:13.894284pt;}
.ws74{word-spacing:13.983883pt;}
.ws95{word-spacing:14.092683pt;}
.ws1{word-spacing:23.381450pt;}
.ws2{word-spacing:23.456117pt;}
.ws128{word-spacing:53.169800pt;}
.wsfa{word-spacing:53.174802pt;}
.ws103{word-spacing:53.208935pt;}
.wsd0{word-spacing:94.228155pt;}
.wscc{word-spacing:94.390287pt;}
.wse5{word-spacing:98.319838pt;}
.wse3{word-spacing:98.324104pt;}
.wse4{word-spacing:98.622767pt;}
.wsd1{word-spacing:117.941992pt;}
.wse9{word-spacing:122.174473pt;}
.wsca{word-spacing:125.536564pt;}
.wse1{word-spacing:129.470382pt;}
.wse2{word-spacing:183.660638pt;}
.wscb{word-spacing:228.408878pt;}
.wse6{word-spacing:269.334233pt;}
.wse8{word-spacing:284.054049pt;}
.wsb1{word-spacing:307.729487pt;}
.wsad{word-spacing:307.887351pt;}
.wse7{word-spacing:307.989750pt;}
.wscd{word-spacing:314.082474pt;}
.wsaf{word-spacing:314.816331pt;}
.wscf{word-spacing:328.802290pt;}
.wsce{word-spacing:352.737991pt;}
.wsab{word-spacing:356.889405pt;}
.wsac{word-spacing:479.900135pt;}
.wsc9{word-spacing:1061.900326pt;}
.wse0{word-spacing:1086.390687pt;}
._7{margin-left:-9.378016pt;}
._8{margin-left:-3.391958pt;}
._1{margin-left:-1.173319pt;}
._2{width:1.296013pt;}
._9{width:8.230297pt;}
._0{width:9.663879pt;}
._4{width:11.178778pt;}
._3{width:12.826795pt;}
._a{width:14.681478pt;}
._b{width:18.768832pt;}
._5{width:41.373349pt;}
._36{width:95.218010pt;}
._35{width:97.436649pt;}
._50{width:98.703833pt;}
._37{width:99.655288pt;}
._1a{width:103.857902pt;}
._21{width:108.077582pt;}
._2b{width:113.116453pt;}
._4d{width:115.172960pt;}
._26{width:117.749995pt;}
._40{width:121.581414pt;}
._4c{width:122.494469pt;}
._20{width:126.854948pt;}
._29{width:131.292225pt;}
._44{width:135.383908pt;}
._41{width:136.668158pt;}
._31{width:140.316113pt;}
._2e{width:141.775294pt;}
._3b{width:143.452073pt;}
._49{width:145.090453pt;}
._4f{width:146.050441pt;}
._1e{width:154.046074pt;}
._3e{width:157.672696pt;}
._38{width:159.921201pt;}
._3a{width:162.139840pt;}
._30{width:163.308892pt;}
._24{width:165.156336pt;}
._4b{width:166.560051pt;}
._1b{width:167.460307pt;}
._39{width:168.940822pt;}
._3c{width:171.402657pt;}
._1c{width:176.445794pt;}
._2c{width:177.606313pt;}
._3d{width:180.678275pt;}
._23{width:183.771569pt;}
._45{width:188.004050pt;}
._27{width:197.510064pt;}
._1f{width:199.728703pt;}
._42{width:201.742545pt;}
._3f{width:204.251313pt;}
._34{width:207.122744pt;}
._47{width:216.091165pt;}
._4a{width:230.200856pt;}
._48{width:232.419495pt;}
._25{width:233.801877pt;}
._43{width:237.163969pt;}
._28{width:247.638504pt;}
._2d{width:251.495523pt;}
._22{width:259.525289pt;}
._2a{width:260.839406pt;}
._4e{width:266.961996pt;}
._46{width:267.973184pt;}
._32{width:274.949096pt;}
._2f{width:277.167735pt;}
._33{width:279.386374pt;}
._15{width:308.668142pt;}
._e{width:314.858998pt;}
._18{width:336.192064pt;}
._1d{width:339.481623pt;}
._17{width:341.213868pt;}
._16{width:345.527414pt;}
._14{width:347.950851pt;}
._12{width:349.627630pt;}
._d{width:360.857356pt;}
._c{width:408.622092pt;}
._13{width:504.842756pt;}
._11{width:518.555651pt;}
._10{width:525.907026pt;}
._f{width:528.125665pt;}
._19{width:1548.746507pt;}
._6{width:1572.332346pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:35.552000pt;}
.fs8{font-size:37.332800pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:48.000000pt;}
.y99{bottom:110.657080pt;}
.y28{bottom:110.660986pt;}
.ycb{bottom:110.662693pt;}
.y1bb{bottom:110.663960pt;}
.y77{bottom:110.664186pt;}
.y41{bottom:110.667856pt;}
.y19c{bottom:110.961546pt;}
.y15c{bottom:116.938233pt;}
.y171{bottom:120.182267pt;}
.y40{bottom:125.332206pt;}
.y12d{bottom:126.526266pt;}
.y98{bottom:127.967920pt;}
.y27{bottom:127.971826pt;}
.yca{bottom:127.973533pt;}
.y1ba{bottom:127.974800pt;}
.y76{bottom:127.975026pt;}
.y19b{bottom:128.347053pt;}
.y71{bottom:128.503520pt;}
.y1f1{bottom:130.770200pt;}
.yd6{bottom:135.984000pt;}
.y170{bottom:137.493106pt;}
.y15b{bottom:140.976333pt;}
.y12c{bottom:143.911773pt;}
.y97{bottom:145.353427pt;}
.y26{bottom:145.357333pt;}
.yc9{bottom:145.359040pt;}
.y75{bottom:145.360533pt;}
.y19a{bottom:145.657893pt;}
.y70{bottom:145.889027pt;}
.y3f{bottom:148.009256pt;}
.y1f0{bottom:148.079850pt;}
.y1b9{bottom:150.652000pt;}
.yd5{bottom:153.294840pt;}
.y16f{bottom:154.878614pt;}
.y15a{bottom:156.918821pt;}
.y1ef{bottom:160.779425pt;}
.y12b{bottom:161.222613pt;}
.y96{bottom:162.664267pt;}
.y25{bottom:162.668173pt;}
.yc8{bottom:162.669880pt;}
.y3e{bottom:162.673606pt;}
.y199{bottom:162.968733pt;}
.y6f{bottom:163.185400pt;}
.y74{bottom:167.961667pt;}
.yf0{bottom:167.962133pt;}
.yd4{bottom:170.605680pt;}
.y16e{bottom:172.189453pt;}
.y159{bottom:172.944221pt;}
.y1ee{bottom:178.090142pt;}
.y12a{bottom:178.533453pt;}
.y95{bottom:179.975106pt;}
.y24{bottom:179.979013pt;}
.yc7{bottom:179.980720pt;}
.y198{bottom:180.354240pt;}
.y6e{bottom:180.496240pt;}
.y3d{bottom:185.350656pt;}
.y1b8{bottom:187.312054pt;}
.yd3{bottom:187.991187pt;}
.y158{bottom:188.969620pt;}
.y16d{bottom:189.500293pt;}
.y1ed{bottom:190.789717pt;}
.y73{bottom:191.999867pt;}
.y129{bottom:195.918960pt;}
.y224{bottom:196.308883pt;}
.y94{bottom:197.360614pt;}
.y23{bottom:197.364520pt;}
.yc6{bottom:197.366227pt;}
.y197{bottom:197.665080pt;}
.y6d{bottom:197.881747pt;}
.y3c{bottom:200.015006pt;}
.y1ec{bottom:203.413559pt;}
.y1b7{bottom:204.622894pt;}
.y157{bottom:204.919288pt;}
.yd2{bottom:205.302027pt;}
.y16c{bottom:206.885800pt;}
.y223{bottom:208.932725pt;}
.yef{bottom:212.029627pt;}
.y128{bottom:213.229800pt;}
.y93{bottom:214.671453pt;}
.y22{bottom:214.675360pt;}
.yc5{bottom:214.677067pt;}
.y196{bottom:214.975920pt;}
.y6c{bottom:215.192586pt;}
.y1eb{bottom:220.798941pt;}
.y156{bottom:220.944687pt;}
.y222{bottom:221.632300pt;}
.y1b6{bottom:221.933733pt;}
.yd1{bottom:222.612866pt;}
.y3b{bottom:222.692056pt;}
.y16b{bottom:224.196640pt;}
.yee{bottom:229.340466pt;}
.y127{bottom:230.540639pt;}
.y92{bottom:231.982293pt;}
.y21{bottom:231.986200pt;}
.y195{bottom:232.361427pt;}
.y6b{bottom:232.503426pt;}
.y1ea{bottom:233.422784pt;}
.yc4{bottom:237.354267pt;}
.y3a{bottom:237.356406pt;}
.y221{bottom:238.941950pt;}
.yd0{bottom:239.923706pt;}
.y16a{bottom:241.507480pt;}
.y1b5{bottom:244.610933pt;}
.y155{bottom:246.569967pt;}
.yed{bottom:246.725973pt;}
.y126{bottom:247.926147pt;}
.y91{bottom:249.293133pt;}
.y20{bottom:249.297039pt;}
.y194{bottom:249.672267pt;}
.y6a{bottom:249.888933pt;}
.y1e9{bottom:250.808166pt;}
.y220{bottom:251.641525pt;}
.y39{bottom:252.020756pt;}
.ycf{bottom:257.309213pt;}
.y169{bottom:258.818320pt;}
.y154{bottom:263.275892pt;}
.y1e8{bottom:263.432009pt;}
.yec{bottom:264.036813pt;}
.y125{bottom:265.236986pt;}
.y90{bottom:266.678640pt;}
.y1f{bottom:266.682547pt;}
.y38{bottom:266.685106pt;}
.y193{bottom:266.983106pt;}
.y69{bottom:267.199773pt;}
.y21f{bottom:268.951175pt;}
.yc3{bottom:273.785960pt;}
.yce{bottom:274.620053pt;}
.y168{bottom:276.203827pt;}
.y153{bottom:279.906084pt;}
.y1e7{bottom:280.741659pt;}
.yeb{bottom:281.347653pt;}
.y37{bottom:281.349456pt;}
.y21e{bottom:281.650749pt;}
.y124{bottom:282.547826pt;}
.y8f{bottom:283.989480pt;}
.y1e{bottom:283.993386pt;}
.y192{bottom:284.293946pt;}
.y68{bottom:284.510613pt;}
.y1b4{bottom:289.206826pt;}
.yc2{bottom:291.171467pt;}
.ycd{bottom:291.930893pt;}
.y1e6{bottom:293.441233pt;}
.y167{bottom:293.514667pt;}
.y21d{bottom:294.274592pt;}
.y36{bottom:296.013806pt;}
.y152{bottom:296.612008pt;}
.yea{bottom:298.658493pt;}
.y123{bottom:299.858666pt;}
.y8e{bottom:301.300320pt;}
.y1d{bottom:301.304226pt;}
.y191{bottom:301.679453pt;}
.y67{bottom:301.821453pt;}
.y1b3{bottom:306.592333pt;}
.yc1{bottom:308.482306pt;}
.ycc{bottom:309.316400pt;}
.y1e5{bottom:310.750884pt;}
.y166{bottom:310.825506pt;}
.y21c{bottom:311.659974pt;}
.y151{bottom:313.242200pt;}
.ye9{bottom:316.042507pt;}
.y122{bottom:317.244173pt;}
.y8d{bottom:318.685827pt;}
.y1c{bottom:318.689733pt;}
.y35{bottom:318.690856pt;}
.y190{bottom:318.990293pt;}
.y66{bottom:319.206960pt;}
.y1e4{bottom:323.450458pt;}
.y1b2{bottom:323.903173pt;}
.y21b{bottom:324.283816pt;}
.yc0{bottom:325.793146pt;}
.y165{bottom:328.211014pt;}
.y150{bottom:329.948125pt;}
.ye8{bottom:333.353347pt;}
.y121{bottom:334.555013pt;}
.y8c{bottom:335.996667pt;}
.y1e3{bottom:336.074301pt;}
.y18f{bottom:336.301133pt;}
.y65{bottom:336.517800pt;}
.yda{bottom:337.738575pt;}
.y1b{bottom:341.366800pt;}
.y34{bottom:341.367906pt;}
.y21a{bottom:341.593467pt;}
.ybf{bottom:343.178653pt;}
.y164{bottom:345.521853pt;}
.y14f{bottom:346.578317pt;}
.y1b1{bottom:349.226093pt;}
.ye7{bottom:350.664186pt;}
.y120{bottom:351.865853pt;}
.y8b{bottom:353.307506pt;}
.y1e2{bottom:353.459683pt;}
.y18e{bottom:353.686640pt;}
.y64{bottom:353.828639pt;}
.y219{bottom:354.293041pt;}
.yd9{bottom:358.449783pt;}
.ybe{bottom:360.489493pt;}
.y163{bottom:362.832693pt;}
.y14e{bottom:363.283175pt;}
.y33{bottom:363.969223pt;}
.y1e1{bottom:366.083525pt;}
.y1b0{bottom:366.611600pt;}
.ye6{bottom:368.049694pt;}
.y11f{bottom:369.251360pt;}
.y8a{bottom:370.693014pt;}
.y18d{bottom:370.997480pt;}
.yd8{bottom:371.073625pt;}
.y63{bottom:371.214147pt;}
.y218{bottom:371.602692pt;}
.ybd{bottom:377.800333pt;}
.y1e0{bottom:378.783100pt;}
.y14d{bottom:379.913367pt;}
.y162{bottom:380.218200pt;}
.yd7{bottom:383.773200pt;}
.y217{bottom:384.302266pt;}
.ye5{bottom:385.359960pt;}
.y11e{bottom:386.562200pt;}
.y32{bottom:386.646273pt;}
.y89{bottom:388.003853pt;}
.y18c{bottom:388.308320pt;}
.y62{bottom:388.524986pt;}
.y1af{bottom:391.934520pt;}
.ybc{bottom:395.111173pt;}
.y1df{bottom:396.093817pt;}
.y14c{bottom:396.619291pt;}
.y216{bottom:396.926108pt;}
.y161{bottom:397.529040pt;}
.y31{bottom:401.310623pt;}
.ye4{bottom:402.668960pt;}
.y11d{bottom:403.873039pt;}
.y88{bottom:405.314693pt;}
.y18b{bottom:405.693827pt;}
.y61{bottom:405.835826pt;}
.y1de{bottom:408.793392pt;}
.y1ae{bottom:409.245360pt;}
.ybb{bottom:412.496680pt;}
.y14b{bottom:413.249484pt;}
.y215{bottom:414.311491pt;}
.y160{bottom:414.839880pt;}
.ye3{bottom:420.054467pt;}
.y11c{bottom:421.258547pt;}
.y1dd{bottom:421.417234pt;}
.y87{bottom:422.700200pt;}
.y18a{bottom:423.004667pt;}
.y60{bottom:423.221333pt;}
.y30{bottom:423.987673pt;}
.y1a{bottom:424.820933pt;}
.y1ad{bottom:426.556199pt;}
.y214{bottom:426.937009pt;}
.yba{bottom:429.807520pt;}
.y14a{bottom:429.955408pt;}
.y15f{bottom:432.150720pt;}
.ye2{bottom:437.365307pt;}
.y11b{bottom:438.569386pt;}
.y2f{bottom:438.652023pt;}
.y1dc{bottom:438.802616pt;}
.y86{bottom:440.011040pt;}
.y5f{bottom:440.532173pt;}
.y19{bottom:443.491600pt;}
.y213{bottom:444.322391pt;}
.y149{bottom:446.585600pt;}
.yb9{bottom:447.118359pt;}
.y15e{bottom:449.536227pt;}
.y1a2{bottom:451.500758pt;}
.y1ac{bottom:451.879119pt;}
.y2e{bottom:453.316373pt;}
.ye1{bottom:454.676147pt;}
.y11a{bottom:455.880226pt;}
.y1db{bottom:456.117308pt;}
.y212{bottom:456.946234pt;}
.y85{bottom:457.321880pt;}
.y5e{bottom:457.843013pt;}
.y18{bottom:462.162267pt;}
.y148{bottom:463.291525pt;}
.yb8{bottom:464.503867pt;}
.y15d{bottom:466.847067pt;}
.y2d{bottom:467.980723pt;}
.y1ab{bottom:469.264627pt;}
.ye0{bottom:471.986986pt;}
.y1a1{bottom:472.137300pt;}
.y119{bottom:473.265733pt;}
.y1da{bottom:473.426958pt;}
.y211{bottom:474.331616pt;}
.y84{bottom:474.632720pt;}
.y5d{bottom:475.228520pt;}
.y147{bottom:479.921717pt;}
.y17{bottom:480.832933pt;}
.y2c{bottom:482.645073pt;}
.y1a0{bottom:484.761142pt;}
.y1d9{bottom:486.126533pt;}
.y210{bottom:486.955458pt;}
.yb7{bottom:487.180933pt;}
.ydf{bottom:489.372494pt;}
.y118{bottom:490.576573pt;}
.y83{bottom:492.018227pt;}
.y5c{bottom:492.539360pt;}
.y1aa{bottom:494.587546pt;}
.y146{bottom:496.627641pt;}
.y19f{bottom:497.460717pt;}
.y16{bottom:499.503600pt;}
.y189{bottom:500.629954pt;}
.y1d8{bottom:503.436183pt;}
.y20f{bottom:504.265109pt;}
.y2b{bottom:504.491200pt;}
.yde{bottom:506.683333pt;}
.y117{bottom:507.887413pt;}
.y82{bottom:509.328360pt;}
.y5b{bottom:509.850200pt;}
.y19e{bottom:510.160291pt;}
.y1a9{bottom:511.898386pt;}
.y145{bottom:513.257833pt;}
.y1d7{bottom:516.135758pt;}
.y20e{bottom:516.964683pt;}
.y15{bottom:518.174267pt;}
.y19d{bottom:522.784133pt;}
.yb6{bottom:523.615027pt;}
.y188{bottom:524.668054pt;}
.y116{bottom:525.198253pt;}
.y81{bottom:526.639200pt;}
.y5a{bottom:527.161039pt;}
.y1a8{bottom:529.209226pt;}
.ydd{bottom:529.360533pt;}
.y20d{bottom:529.664258pt;}
.y144{bottom:529.963758pt;}
.y1d6{bottom:533.445408pt;}
.y14{bottom:536.844933pt;}
.y187{bottom:540.617721pt;}
.yb5{bottom:540.926093pt;}
.y115{bottom:542.583760pt;}
.y59{bottom:544.546547pt;}
.y1d5{bottom:546.144983pt;}
.y143{bottom:546.593950pt;}
.y1a7{bottom:546.594733pt;}
.y20c{bottom:546.973908pt;}
.y80{bottom:549.316400pt;}
.y13{bottom:555.515600pt;}
.y186{bottom:556.643121pt;}
.yb2{bottom:558.311027pt;}
.yb4{bottom:558.311600pt;}
.y20b{bottom:559.597750pt;}
.y114{bottom:559.894600pt;}
.y58{bottom:561.857386pt;}
.y142{bottom:563.299875pt;}
.y1d4{bottom:563.454633pt;}
.y1a6{bottom:563.905573pt;}
.yb3{bottom:564.207733pt;}
.y20a{bottom:572.297325pt;}
.y185{bottom:572.668520pt;}
.ydc{bottom:573.354493pt;}
.y12{bottom:574.186267pt;}
.yaf{bottom:575.621294pt;}
.yb1{bottom:575.621867pt;}
.y1d3{bottom:576.078475pt;}
.y113{bottom:577.205439pt;}
.y57{bottom:579.168226pt;}
.yb0{bottom:581.518000pt;}
.y141{bottom:583.255892pt;}
.y7f{bottom:587.563360pt;}
.y184{bottom:588.618188pt;}
.y1a5{bottom:589.228493pt;}
.y209{bottom:589.606975pt;}
.ydb{bottom:590.740000pt;}
.y11{bottom:592.856933pt;}
.yac{bottom:592.931573pt;}
.yae{bottom:592.932133pt;}
.y1d2{bottom:593.463858pt;}
.y112{bottom:594.590947pt;}
.y56{bottom:596.553733pt;}
.yad{bottom:598.903733pt;}
.y208{bottom:602.306550pt;}
.y183{bottom:604.643587pt;}
.y7e{bottom:604.948867pt;}
.y1d1{bottom:606.087700pt;}
.y140{bottom:606.160139pt;}
.y1a4{bottom:606.614000pt;}
.yab{bottom:610.317080pt;}
.y10{bottom:611.527600pt;}
.y111{bottom:611.901786pt;}
.y55{bottom:613.864573pt;}
.y2a{bottom:618.254933pt;}
.y207{bottom:619.616200pt;}
.y7d{bottom:622.259707pt;}
.y1d0{bottom:623.473083pt;}
.y103{bottom:623.542551pt;}
.yaa{bottom:627.627920pt;}
.y13f{bottom:627.930533pt;}
.y110{bottom:629.212626pt;}
.y1a3{bottom:629.215600pt;}
.yf{bottom:630.198267pt;}
.y182{bottom:630.344599pt;}
.y54{bottom:631.175413pt;}
.y206{bottom:632.315775pt;}
.y1cf{bottom:636.096925pt;}
.y7c{bottom:639.570547pt;}
.ya9{bottom:644.938759pt;}
.y10f{bottom:646.598133pt;}
.y181{bottom:646.974791pt;}
.y102{bottom:647.504918pt;}
.y53{bottom:648.560920pt;}
.y205{bottom:649.625425pt;}
.y1ce{bottom:653.406575pt;}
.y7b{bottom:656.956054pt;}
.ye{bottom:659.527333pt;}
.ya8{bottom:662.324267pt;}
.y204{bottom:662.325000pt;}
.y101{bottom:663.530318pt;}
.y180{bottom:663.680716pt;}
.y10e{bottom:663.908973pt;}
.y52{bottom:665.871760pt;}
.y1cd{bottom:670.791958pt;}
.y13e{bottom:671.013867pt;}
.y7a{bottom:674.266894pt;}
.y100{bottom:679.479985pt;}
.y203{bottom:679.634650pt;}
.y17f{bottom:680.310908pt;}
.y10d{bottom:681.219813pt;}
.y51{bottom:683.182600pt;}
.ya7{bottom:684.925400pt;}
.y1cc{bottom:688.101608pt;}
.y13d{bottom:688.324706pt;}
.y79{bottom:691.577733pt;}
.y202{bottom:692.258492pt;}
.yff{bottom:695.505385pt;}
.y17e{bottom:697.016833pt;}
.y10c{bottom:698.530653pt;}
.y50{bottom:700.493439pt;}
.y1cb{bottom:700.801183pt;}
.y13c{bottom:705.635546pt;}
.ya6{bottom:708.963600pt;}
.y201{bottom:709.643875pt;}
.yfe{bottom:711.530785pt;}
.y17d{bottom:713.647025pt;}
.y78{bottom:714.254933pt;}
.yd{bottom:715.540700pt;}
.y10b{bottom:715.916160pt;}
.y4f{bottom:717.878947pt;}
.y1ca{bottom:718.110833pt;}
.y200{bottom:722.267717pt;}
.y13b{bottom:723.021053pt;}
.yfd{bottom:727.480452pt;}
.y17c{bottom:730.352949pt;}
.y1c9{bottom:730.810408pt;}
.y10a{bottom:733.227000pt;}
.y4e{bottom:735.189786pt;}
.y1ff{bottom:739.653100pt;}
.y13a{bottom:740.331893pt;}
.yc{bottom:742.224100pt;}
.ya5{bottom:745.470533pt;}
.y17b{bottom:746.983141pt;}
.y1c8{bottom:748.120058pt;}
.y109{bottom:750.537839pt;}
.y1fe{bottom:752.276942pt;}
.y4d{bottom:752.500626pt;}
.yfc{bottom:753.181464pt;}
.yb{bottom:755.527400pt;}
.y139{bottom:757.642733pt;}
.y1c7{bottom:760.743900pt;}
.ya4{bottom:762.781373pt;}
.y17a{bottom:763.613333pt;}
.y108{bottom:767.923347pt;}
.ya{bottom:768.831767pt;}
.y1fd{bottom:769.662325pt;}
.y4c{bottom:769.886133pt;}
.yfb{bottom:769.887388pt;}
.y138{bottom:775.028240pt;}
.y1c6{bottom:778.129283pt;}
.ya3{bottom:780.092213pt;}
.y179{bottom:780.319258pt;}
.y9{bottom:782.210800pt;}
.y1fc{bottom:782.286167pt;}
.y107{bottom:785.234186pt;}
.yfa{bottom:786.517581pt;}
.y4b{bottom:787.196973pt;}
.y1c5{bottom:790.753125pt;}
.y137{bottom:792.339080pt;}
.y1fb{bottom:794.985741pt;}
.y178{bottom:796.949450pt;}
.ya2{bottom:797.403053pt;}
.y106{bottom:802.545026pt;}
.yf9{bottom:803.147773pt;}
.y4a{bottom:804.507813pt;}
.y8{bottom:806.173067pt;}
.y6{bottom:806.173600pt;}
.y1c4{bottom:808.138508pt;}
.y136{bottom:809.649920pt;}
.y7{bottom:811.540000pt;}
.y1fa{bottom:812.296458pt;}
.y177{bottom:813.655375pt;}
.ya1{bottom:814.788560pt;}
.yf8{bottom:819.853697pt;}
.y105{bottom:819.930533pt;}
.y1c3{bottom:820.762350pt;}
.y4{bottom:820.837600pt;}
.y49{bottom:821.893320pt;}
.y5{bottom:826.204533pt;}
.y135{bottom:826.960759pt;}
.y1f9{bottom:829.606109pt;}
.y176{bottom:830.285567pt;}
.ya0{bottom:832.099400pt;}
.yf7{bottom:836.483889pt;}
.y1c2{bottom:838.072000pt;}
.y48{bottom:839.204160pt;}
.y1f8{bottom:842.305683pt;}
.y104{bottom:842.532000pt;}
.y134{bottom:844.346267pt;}
.y175{bottom:846.990425pt;}
.y9f{bottom:849.410239pt;}
.y1c1{bottom:850.771575pt;}
.yf6{bottom:853.189814pt;}
.y3{bottom:854.172233pt;}
.y1f7{bottom:854.929525pt;}
.y47{bottom:856.515000pt;}
.y174{bottom:863.620617pt;}
.y9e{bottom:866.795747pt;}
.y1c0{bottom:868.081225pt;}
.yf5{bottom:869.820006pt;}
.y1f6{bottom:872.314908pt;}
.y46{bottom:873.900507pt;}
.y133{bottom:875.942492pt;}
.y173{bottom:880.326541pt;}
.y1bf{bottom:880.780800pt;}
.y9d{bottom:884.106586pt;}
.y1f5{bottom:884.938750pt;}
.yf4{bottom:886.524864pt;}
.y2{bottom:887.508400pt;}
.y45{bottom:891.211347pt;}
.y1be{bottom:893.404642pt;}
.y132{bottom:896.653700pt;}
.y172{bottom:900.282558pt;}
.y9c{bottom:901.417426pt;}
.y1f4{bottom:902.324133pt;}
.yf3{bottom:903.155056pt;}
.y44{bottom:908.522186pt;}
.y131{bottom:909.277542pt;}
.y1bd{bottom:910.790024pt;}
.y1f3{bottom:914.947975pt;}
.y9b{bottom:918.802933pt;}
.y1{bottom:920.843867pt;}
.y130{bottom:921.977117pt;}
.yf2{bottom:923.186805pt;}
.y1bc{bottom:923.413867pt;}
.y43{bottom:925.833026pt;}
.y1f2{bottom:932.257625pt;}
.y12f{bottom:934.600959pt;}
.y9a{bottom:941.404400pt;}
.y42{bottom:943.218533pt;}
.yf1{bottom:944.957200pt;}
.y12e{bottom:947.300533pt;}
.y72{bottom:994.393333pt;}
.h4{height:23.580855pt;}
.hf{height:30.396960pt;}
.ha{height:31.060945pt;}
.h13{height:31.444940pt;}
.h16{height:33.059552pt;}
.h1{height:33.066253pt;}
.h3{height:35.376000pt;}
.h9{height:37.076870pt;}
.h14{height:37.105586pt;}
.h15{height:37.493708pt;}
.he{height:37.973713pt;}
.h6{height:39.266667pt;}
.h8{height:45.600456pt;}
.h11{height:45.602748pt;}
.hd{height:45.603282pt;}
.h12{height:45.606429pt;}
.h10{height:45.607817pt;}
.hb{height:45.658324pt;}
.h7{height:47.167607pt;}
.hc{height:49.599587pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:48.000000pt;}
.xf{left:63.496000pt;}
.xe{left:74.683467pt;}
.x1b{left:138.330604pt;}
.x1a{left:149.517664pt;}
.x19{left:237.732133pt;}
.x18{left:242.116400pt;}
.x1{left:266.683333pt;}
.x12{left:272.957333pt;}
.x13{left:280.667600pt;}
.x10{left:282.632826pt;}
.x1c{left:294.651724pt;}
.xa{left:350.513200pt;}
.x2{left:351.873867pt;}
.xb{left:355.426667pt;}
.x3{left:356.862933pt;}
.x14{left:357.996800pt;}
.x17{left:419.224360pt;}
.x15{left:433.133733pt;}
.x16{left:440.844000pt;}
.xc{left:446.437600pt;}
.x4{left:475.540000pt;}
.x5{left:480.528933pt;}
.x11{left:564.888000pt;}
.x6{left:577.360533pt;}
.x7{left:582.349467pt;}
.x8{left:705.032933pt;}
.x9{left:710.021867pt;}
}




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