
    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_a9511d1ae0a9274d99015032.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4b3e5b2a63de6e638a7d1614.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_ea7a7ea08236ab72a61f555c.woff')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_e2304fef0cc84e9c0a9a2d3d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6247fcb1d82dd8147d8cf74.woff')format("woff");}.ff6{font-family:ff6;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_398e21c74bf93901b0392ed0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_87954c9aec903ba7a23b1a32.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_46931023577c6b646cdefb36.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_948e2eaa754a21bf2a933fac.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_39a8b411d5d95139e3f12069.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_695583e162f978c518c59c57.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d626fc2133feeaee53a20e21.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e2e8e71a5c49c48cd780e93d.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d626fc2133feeaee53a20e21.woff')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v5{vertical-align:23.519897px;}
.v4{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls2{letter-spacing:-1.050000px;}
.ls15{letter-spacing:-0.624000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.470400px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000001px;}
.ls16{letter-spacing:0.000004px;}
.ls5{letter-spacing:0.000005px;}
.ls13{letter-spacing:0.000007px;}
.ls4{letter-spacing:0.000009px;}
.ls12{letter-spacing:0.000010px;}
.ls17{letter-spacing:0.000029px;}
.ls11{letter-spacing:0.000036px;}
.ls14{letter-spacing:0.000037px;}
.lsd{letter-spacing:0.000048px;}
.ls8{letter-spacing:0.000100px;}
.lse{letter-spacing:0.000101px;}
.ls9{letter-spacing:0.000833px;}
.lsf{letter-spacing:8.084095px;}
.ls0{letter-spacing:9.360000px;}
.lsb{letter-spacing:13.004849px;}
.ls10{letter-spacing:13.488000px;}
.lsc{letter-spacing:278.844598px;}
.lsa{letter-spacing:279.654610px;}
.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;}
}
.ws7{word-spacing:-14.454000px;}
.ws13{word-spacing:-13.818000px;}
.wsc4{word-spacing:-13.347600px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws6{word-spacing:-11.880000px;}
.ws70{word-spacing:-11.426400px;}
.ws8{word-spacing:-10.117800px;}
.wsb0{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.855000px;}
.ws182{word-spacing:-9.315000px;}
.ws103{word-spacing:-9.312000px;}
.ws192{word-spacing:-9.090000px;}
.wsef{word-spacing:-8.640000px;}
.ws193{word-spacing:-8.190000px;}
.ws12{word-spacing:-8.148000px;}
.ws196{word-spacing:-8.100000px;}
.wsd9{word-spacing:-8.084095px;}
.ws3{word-spacing:-6.898500px;}
.ws74{word-spacing:-4.527600px;}
.wsfb{word-spacing:-4.512000px;}
.ws194{word-spacing:-4.230000px;}
.ws197{word-spacing:-1.890000px;}
.ws166{word-spacing:-1.705200px;}
.ws151{word-spacing:-1.632000px;}
.wsba{word-spacing:-1.536000px;}
.wscd{word-spacing:-1.470000px;}
.ws148{word-spacing:-1.293600px;}
.wsfc{word-spacing:-1.152000px;}
.wsc7{word-spacing:-1.117200px;}
.ws175{word-spacing:-1.058400px;}
.ws10e{word-spacing:-0.999600px;}
.ws190{word-spacing:-0.882000px;}
.ws115{word-spacing:-0.823200px;}
.ws102{word-spacing:-0.816000px;}
.ws154{word-spacing:-0.768000px;}
.ws184{word-spacing:-0.764400px;}
.ws123{word-spacing:-0.720000px;}
.ws85{word-spacing:-0.705600px;}
.ws100{word-spacing:-0.672000px;}
.ws149{word-spacing:-0.588000px;}
.ws131{word-spacing:-0.529200px;}
.ws153{word-spacing:-0.432000px;}
.wsc8{word-spacing:-0.411600px;}
.ws124{word-spacing:-0.384000px;}
.wsce{word-spacing:-0.352800px;}
.wsfa{word-spacing:-0.336000px;}
.ws37{word-spacing:-0.294000px;}
.ws25{word-spacing:-0.235200px;}
.wsbf{word-spacing:-0.192000px;}
.ws198{word-spacing:-0.180000px;}
.ws17a{word-spacing:-0.176400px;}
.wsb9{word-spacing:-0.144000px;}
.wsa5{word-spacing:-0.117600px;}
.ws28{word-spacing:-0.058800px;}
.wsc2{word-spacing:-0.058580px;}
.ws195{word-spacing:-0.045000px;}
.ws71{word-spacing:-0.005993px;}
.ws9{word-spacing:0.000000px;}
.wsf8{word-spacing:0.048000px;}
.ws143{word-spacing:0.058800px;}
.ws163{word-spacing:0.117600px;}
.wsbc{word-spacing:0.144000px;}
.wsa6{word-spacing:0.176400px;}
.ws121{word-spacing:0.192000px;}
.ws11f{word-spacing:0.235200px;}
.wsc5{word-spacing:0.236988px;}
.ws11{word-spacing:0.294000px;}
.wsbd{word-spacing:0.336000px;}
.wsdb{word-spacing:0.352800px;}
.ws152{word-spacing:0.384000px;}
.wsa4{word-spacing:0.411600px;}
.ws158{word-spacing:0.470400px;}
.wsd{word-spacing:0.504000px;}
.ws126{word-spacing:0.528000px;}
.ws34{word-spacing:0.529200px;}
.ws8d{word-spacing:0.588000px;}
.ws47{word-spacing:0.646800px;}
.ws125{word-spacing:0.672000px;}
.ws18e{word-spacing:0.705600px;}
.wse8{word-spacing:0.764400px;}
.wsbe{word-spacing:0.768000px;}
.wsea{word-spacing:0.823200px;}
.wsb5{word-spacing:0.864000px;}
.ws38{word-spacing:0.882000px;}
.ws101{word-spacing:0.912000px;}
.wsf7{word-spacing:0.940800px;}
.wsb6{word-spacing:0.960000px;}
.ws5b{word-spacing:0.999600px;}
.ws130{word-spacing:1.058400px;}
.ws18b{word-spacing:1.117200px;}
.wsff{word-spacing:1.152000px;}
.wsf9{word-spacing:1.200000px;}
.ws146{word-spacing:1.234800px;}
.ws108{word-spacing:1.293600px;}
.ws11a{word-spacing:1.352400px;}
.ws178{word-spacing:1.411200px;}
.ws43{word-spacing:1.470000px;}
.wse{word-spacing:1.512000px;}
.ws83{word-spacing:1.528800px;}
.ws112{word-spacing:1.587600px;}
.ws9b{word-spacing:1.646400px;}
.wsd5{word-spacing:1.705200px;}
.wsca{word-spacing:1.764000px;}
.wsfd{word-spacing:1.776000px;}
.ws46{word-spacing:1.822800px;}
.ws32{word-spacing:1.881600px;}
.ws10{word-spacing:1.890000px;}
.wsfe{word-spacing:1.920000px;}
.wse0{word-spacing:1.999200px;}
.wsf{word-spacing:2.016000px;}
.wsa7{word-spacing:2.058000px;}
.ws68{word-spacing:2.116800px;}
.ws84{word-spacing:2.175600px;}
.wsa1{word-spacing:2.234400px;}
.wsb7{word-spacing:2.256000px;}
.wsa8{word-spacing:2.293200px;}
.wsc{word-spacing:2.310000px;}
.ws122{word-spacing:2.400000px;}
.ws161{word-spacing:2.410800px;}
.wseb{word-spacing:2.469600px;}
.ws10b{word-spacing:2.528400px;}
.ws2e{word-spacing:2.587200px;}
.ws15{word-spacing:2.640000px;}
.ws165{word-spacing:2.646000px;}
.ws36{word-spacing:2.704800px;}
.ws156{word-spacing:2.763600px;}
.ws168{word-spacing:2.881200px;}
.wsa9{word-spacing:2.940000px;}
.ws110{word-spacing:2.998800px;}
.ws91{word-spacing:3.057600px;}
.ws14{word-spacing:3.072000px;}
.ws164{word-spacing:3.116400px;}
.ws2c{word-spacing:3.175200px;}
.ws9f{word-spacing:3.234000px;}
.ws11c{word-spacing:3.292800px;}
.ws107{word-spacing:3.351600px;}
.wsbb{word-spacing:3.360000px;}
.ws63{word-spacing:3.410400px;}
.ws15e{word-spacing:3.469200px;}
.ws6c{word-spacing:3.528000px;}
.ws66{word-spacing:3.586800px;}
.ws162{word-spacing:3.645600px;}
.ws23{word-spacing:3.704400px;}
.ws8f{word-spacing:3.763200px;}
.ws81{word-spacing:3.822000px;}
.ws96{word-spacing:3.880800px;}
.ws13f{word-spacing:3.939600px;}
.ws6b{word-spacing:3.998400px;}
.ws132{word-spacing:4.057200px;}
.ws8b{word-spacing:4.116000px;}
.ws11e{word-spacing:4.174800px;}
.ws57{word-spacing:4.233600px;}
.ws109{word-spacing:4.292400px;}
.wsf1{word-spacing:4.351200px;}
.ws13c{word-spacing:4.410000px;}
.ws15f{word-spacing:4.468800px;}
.ws2d{word-spacing:4.527600px;}
.ws42{word-spacing:4.586400px;}
.wsd4{word-spacing:4.645200px;}
.ws87{word-spacing:4.704000px;}
.wsb8{word-spacing:4.752000px;}
.ws129{word-spacing:4.762800px;}
.ws116{word-spacing:4.821600px;}
.ws49{word-spacing:4.880400px;}
.ws113{word-spacing:4.939200px;}
.wsc1{word-spacing:4.979334px;}
.ws90{word-spacing:4.998000px;}
.ws7e{word-spacing:5.115600px;}
.wsaf{word-spacing:5.174400px;}
.ws106{word-spacing:5.233200px;}
.ws4f{word-spacing:5.292000px;}
.wsa0{word-spacing:5.350800px;}
.wse5{word-spacing:5.409600px;}
.wsf6{word-spacing:5.468400px;}
.ws159{word-spacing:5.527200px;}
.wse4{word-spacing:5.586000px;}
.ws16d{word-spacing:5.644800px;}
.ws145{word-spacing:5.703600px;}
.ws3d{word-spacing:5.762400px;}
.ws62{word-spacing:5.821200px;}
.ws20{word-spacing:5.880000px;}
.wsd6{word-spacing:5.938800px;}
.ws2f{word-spacing:5.997600px;}
.ws39{word-spacing:6.056400px;}
.ws8a{word-spacing:6.115200px;}
.ws12b{word-spacing:6.174000px;}
.ws127{word-spacing:6.232800px;}
.ws73{word-spacing:6.291600px;}
.ws3c{word-spacing:6.350400px;}
.ws52{word-spacing:6.409200px;}
.ws77{word-spacing:6.468000px;}
.ws2b{word-spacing:6.526800px;}
.ws138{word-spacing:6.585600px;}
.ws5f{word-spacing:6.644400px;}
.ws9c{word-spacing:6.703200px;}
.ws64{word-spacing:6.762000px;}
.ws31{word-spacing:6.820800px;}
.ws144{word-spacing:6.879600px;}
.ws9d{word-spacing:6.938400px;}
.ws59{word-spacing:6.997200px;}
.ws53{word-spacing:7.056000px;}
.ws21{word-spacing:7.114800px;}
.ws26{word-spacing:7.173600px;}
.ws65{word-spacing:7.232400px;}
.ws10f{word-spacing:7.291200px;}
.wsde{word-spacing:7.350000px;}
.wsdf{word-spacing:7.408800px;}
.ws22{word-spacing:7.467600px;}
.ws44{word-spacing:7.526400px;}
.wsf0{word-spacing:7.585200px;}
.ws61{word-spacing:7.644000px;}
.ws2a{word-spacing:7.702800px;}
.wsec{word-spacing:7.761600px;}
.ws24{word-spacing:7.820400px;}
.ws7f{word-spacing:7.879200px;}
.ws105{word-spacing:7.938000px;}
.ws3f{word-spacing:7.996800px;}
.ws17e{word-spacing:8.055600px;}
.wsb3{word-spacing:8.114400px;}
.wscf{word-spacing:8.173200px;}
.ws117{word-spacing:8.232000px;}
.ws19{word-spacing:8.290800px;}
.ws119{word-spacing:8.408400px;}
.wsd8{word-spacing:8.467200px;}
.ws8e{word-spacing:8.526000px;}
.wsf2{word-spacing:8.584800px;}
.ws69{word-spacing:8.643600px;}
.ws60{word-spacing:8.702400px;}
.ws139{word-spacing:8.761200px;}
.ws5c{word-spacing:8.820000px;}
.ws17f{word-spacing:8.878800px;}
.wscc{word-spacing:8.937600px;}
.ws35{word-spacing:8.996400px;}
.ws6e{word-spacing:9.055200px;}
.ws12e{word-spacing:9.114000px;}
.ws160{word-spacing:9.172800px;}
.ws95{word-spacing:9.231600px;}
.wse1{word-spacing:9.290400px;}
.ws30{word-spacing:9.349200px;}
.ws11b{word-spacing:9.408000px;}
.ws67{word-spacing:9.466800px;}
.ws1b{word-spacing:9.525600px;}
.wsb{word-spacing:9.534000px;}
.ws56{word-spacing:9.643200px;}
.ws94{word-spacing:9.702000px;}
.ws3e{word-spacing:9.760800px;}
.wsa3{word-spacing:9.819600px;}
.ws13e{word-spacing:9.878400px;}
.ws33{word-spacing:9.937200px;}
.ws173{word-spacing:9.996000px;}
.ws6f{word-spacing:10.054800px;}
.ws7a{word-spacing:10.113600px;}
.wsed{word-spacing:10.290000px;}
.wsa{word-spacing:10.332000px;}
.ws4c{word-spacing:10.407600px;}
.ws3b{word-spacing:10.466400px;}
.ws27{word-spacing:10.525200px;}
.ws5a{word-spacing:10.584000px;}
.ws72{word-spacing:10.642800px;}
.ws6a{word-spacing:10.760400px;}
.ws89{word-spacing:10.819200px;}
.ws179{word-spacing:10.878000px;}
.ws92{word-spacing:10.936800px;}
.ws16c{word-spacing:10.995600px;}
.ws104{word-spacing:11.054400px;}
.ws9a{word-spacing:11.113200px;}
.ws172{word-spacing:11.172000px;}
.ws174{word-spacing:11.230800px;}
.ws155{word-spacing:11.289600px;}
.ws118{word-spacing:11.348400px;}
.wsd3{word-spacing:11.407200px;}
.ws7d{word-spacing:11.466000px;}
.ws88{word-spacing:11.524800px;}
.ws141{word-spacing:11.583600px;}
.ws187{word-spacing:11.701200px;}
.ws18f{word-spacing:11.760000px;}
.ws55{word-spacing:11.818800px;}
.ws18{word-spacing:11.936400px;}
.ws114{word-spacing:11.995200px;}
.ws12c{word-spacing:12.054000px;}
.ws16b{word-spacing:12.112800px;}
.ws82{word-spacing:12.171600px;}
.ws140{word-spacing:12.230400px;}
.ws98{word-spacing:12.289200px;}
.wse7{word-spacing:12.406800px;}
.ws12f{word-spacing:12.465600px;}
.ws4b{word-spacing:12.524400px;}
.ws12a{word-spacing:12.583200px;}
.wse2{word-spacing:12.642000px;}
.wse3{word-spacing:12.700800px;}
.ws17{word-spacing:12.818400px;}
.ws80{word-spacing:12.877200px;}
.ws133{word-spacing:12.936000px;}
.ws15c{word-spacing:12.994800px;}
.ws188{word-spacing:13.053600px;}
.ws180{word-spacing:13.112400px;}
.ws11d{word-spacing:13.171200px;}
.ws99{word-spacing:13.230000px;}
.wsb2{word-spacing:13.347600px;}
.ws136{word-spacing:13.406400px;}
.ws147{word-spacing:13.465200px;}
.wsc9{word-spacing:13.524000px;}
.ws5e{word-spacing:13.582800px;}
.ws177{word-spacing:13.641600px;}
.wsee{word-spacing:13.700400px;}
.ws75{word-spacing:13.759200px;}
.wsad{word-spacing:13.818000px;}
.ws185{word-spacing:13.876800px;}
.wsd1{word-spacing:13.935600px;}
.ws51{word-spacing:14.053200px;}
.ws40{word-spacing:14.170800px;}
.ws134{word-spacing:14.288400px;}
.ws16e{word-spacing:14.347200px;}
.ws120{word-spacing:14.406000px;}
.ws14f{word-spacing:14.464800px;}
.ws13b{word-spacing:14.582400px;}
.ws86{word-spacing:14.641200px;}
.ws15a{word-spacing:14.758800px;}
.ws14a{word-spacing:14.817600px;}
.ws186{word-spacing:14.876400px;}
.ws17c{word-spacing:14.935200px;}
.ws142{word-spacing:15.111600px;}
.ws97{word-spacing:15.288000px;}
.ws13a{word-spacing:15.346800px;}
.ws14b{word-spacing:15.464400px;}
.ws171{word-spacing:15.523200px;}
.ws76{word-spacing:15.582000px;}
.wsc6{word-spacing:15.699600px;}
.ws29{word-spacing:15.993600px;}
.ws4a{word-spacing:16.052400px;}
.wsd7{word-spacing:16.111200px;}
.ws191{word-spacing:16.228800px;}
.ws4d{word-spacing:16.405200px;}
.wsa2{word-spacing:16.522800px;}
.wsf3{word-spacing:16.581600px;}
.ws8c{word-spacing:16.699200px;}
.ws4e{word-spacing:16.816800px;}
.ws17b{word-spacing:16.875600px;}
.ws58{word-spacing:16.934400px;}
.wsd0{word-spacing:17.110800px;}
.ws111{word-spacing:17.228400px;}
.ws50{word-spacing:17.287200px;}
.ws18a{word-spacing:17.346000px;}
.ws15b{word-spacing:17.404800px;}
.wse6{word-spacing:17.463600px;}
.ws183{word-spacing:17.522400px;}
.ws16f{word-spacing:17.816400px;}
.ws7c{word-spacing:17.875200px;}
.wsae{word-spacing:17.934000px;}
.ws137{word-spacing:17.992800px;}
.wse9{word-spacing:18.110400px;}
.wsb1{word-spacing:18.169200px;}
.wsc0{word-spacing:18.323949px;}
.wsc3{word-spacing:18.458671px;}
.ws10a{word-spacing:18.463200px;}
.ws78{word-spacing:18.522000px;}
.ws12d{word-spacing:18.757200px;}
.ws157{word-spacing:18.874800px;}
.ws167{word-spacing:18.933600px;}
.ws1d{word-spacing:18.992400px;}
.ws5d{word-spacing:19.110000px;}
.ws14d{word-spacing:19.168800px;}
.ws13d{word-spacing:19.286400px;}
.ws1a{word-spacing:19.580400px;}
.ws1f{word-spacing:19.815600px;}
.ws17d{word-spacing:19.874400px;}
.wsab{word-spacing:19.992000px;}
.ws54{word-spacing:20.168400px;}
.ws14e{word-spacing:20.580000px;}
.wsdd{word-spacing:20.756400px;}
.ws170{word-spacing:20.874000px;}
.ws150{word-spacing:20.932800px;}
.wsf4{word-spacing:20.991600px;}
.ws176{word-spacing:21.285600px;}
.ws128{word-spacing:21.403200px;}
.wscb{word-spacing:21.697200px;}
.wsac{word-spacing:21.932400px;}
.ws15d{word-spacing:22.344000px;}
.wsaa{word-spacing:22.638000px;}
.wsb4{word-spacing:22.990800px;}
.ws41{word-spacing:23.167200px;}
.ws9e{word-spacing:23.343600px;}
.ws48{word-spacing:23.931600px;}
.ws181{word-spacing:24.637200px;}
.ws18c{word-spacing:24.813600px;}
.ws135{word-spacing:25.401600px;}
.ws18d{word-spacing:25.578000px;}
.ws10d{word-spacing:25.695600px;}
.ws6d{word-spacing:25.813200px;}
.ws3a{word-spacing:25.930800px;}
.ws7b{word-spacing:26.166000px;}
.ws16{word-spacing:26.401200px;}
.ws45{word-spacing:27.048000px;}
.ws10c{word-spacing:27.342000px;}
.wsf5{word-spacing:27.694800px;}
.ws93{word-spacing:28.224000px;}
.ws169{word-spacing:31.222800px;}
.ws16a{word-spacing:31.693200px;}
.ws189{word-spacing:32.046000px;}
.ws14c{word-spacing:34.809600px;}
.ws79{word-spacing:42.806400px;}
.wsd2{word-spacing:45.687600px;}
.ws1c{word-spacing:46.687200px;}
.ws1e{word-spacing:55.154400px;}
.wsdc{word-spacing:288.766787px;}
.wsda{word-spacing:289.590000px;}
.ws1{word-spacing:1426.444101px;}
.ws0{word-spacing:1945.846745px;}
._5{margin-left:-2890.932630px;}
._11{margin-left:-28.498788px;}
._f{margin-left:-22.167636px;}
._14{margin-left:-17.240360px;}
._1a{margin-left:-14.032848px;}
._15{margin-left:-12.994807px;}
._19{margin-left:-11.714396px;}
._8{margin-left:-10.502400px;}
._17{margin-left:-8.362807px;}
._18{margin-left:-7.029594px;}
._a{margin-left:-5.959841px;}
._4{margin-left:-4.848000px;}
._2{margin-left:-3.198000px;}
._0{margin-left:-1.716000px;}
._1{width:1.329600px;}
._6{width:3.037197px;}
._d{width:4.462920px;}
._16{width:6.108557px;}
._7{width:7.410540px;}
._10{width:8.990520px;}
._b{width:10.246778px;}
._c{width:11.481110px;}
._13{width:12.484790px;}
._e{width:14.268840px;}
._9{width:15.637141px;}
._3{width:17.551798px;}
._1b{width:22.250351px;}
._12{width:28.233025px;}
._27{width:33.120000px;}
._26{width:55.080000px;}
._25{width:62.826000px;}
._1c{width:70.200000px;}
._23{width:99.321000px;}
._21{width:109.665000px;}
._20{width:119.340000px;}
._22{width:123.840000px;}
._1d{width:133.965000px;}
._1f{width:146.565000px;}
._24{width:149.085000px;}
._1e{width:152.010000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.500000px;}
.fsd{font-size:41.160000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsc{font-size:55.199999px;}
.fsf{font-size:58.580400px;}
.fsb{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs9{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:1.513206px;}
.y83{bottom:21.466209px;}
.y9{bottom:88.869152px;}
.y73{bottom:92.551203px;}
.y65{bottom:92.551352px;}
.y15e{bottom:96.113697px;}
.y11b{bottom:100.838104px;}
.y8{bottom:100.869152px;}
.ya5{bottom:101.551197px;}
.ye3{bottom:102.507900px;}
.y15d{bottom:109.613697px;}
.y72{bottom:110.551197px;}
.y64{bottom:110.551346px;}
.y19e{bottom:111.113697px;}
.y7{bottom:112.869152px;}
.y11a{bottom:114.338104px;}
.ya4{bottom:115.051197px;}
.ye2{bottom:116.007900px;}
.y15c{bottom:123.113697px;}
.y19d{bottom:124.613697px;}
.y6{bottom:124.869152px;}
.y71{bottom:128.551197px;}
.y63{bottom:128.551346px;}
.ye1{bottom:129.507900px;}
.y15b{bottom:136.613697px;}
.y5{bottom:136.869152px;}
.y19c{bottom:138.113697px;}
.y119{bottom:141.338104px;}
.ya3{bottom:142.051197px;}
.y95{bottom:144.572548px;}
.y70{bottom:146.551197px;}
.y62{bottom:146.551346px;}
.y4{bottom:148.869152px;}
.y15a{bottom:150.113697px;}
.ye0{bottom:151.511845px;}
.y19b{bottom:151.613697px;}
.y118{bottom:154.838104px;}
.ya2{bottom:155.551197px;}
.y3{bottom:160.869152px;}
.y159{bottom:163.613697px;}
.y6f{bottom:164.551197px;}
.y61{bottom:164.551346px;}
.ydf{bottom:165.011845px;}
.y19a{bottom:165.113697px;}
.y2{bottom:172.869152px;}
.y158{bottom:177.113697px;}
.yde{bottom:178.511845px;}
.y199{bottom:178.613697px;}
.y117{bottom:181.838104px;}
.y6e{bottom:182.551197px;}
.y60{bottom:182.551346px;}
.y86{bottom:183.691200px;}
.y87{bottom:183.691498px;}
.y157{bottom:190.613697px;}
.ydd{bottom:192.011856px;}
.y198{bottom:192.113708px;}
.y7f{bottom:194.312691px;}
.y88{bottom:195.151497px;}
.y116{bottom:195.338104px;}
.y6d{bottom:200.551208px;}
.y5f{bottom:200.551346px;}
.y156{bottom:204.113708px;}
.ydc{bottom:205.511856px;}
.y197{bottom:205.613708px;}
.y7e{bottom:209.312691px;}
.y13{bottom:213.484360px;}
.y155{bottom:217.613708px;}
.y6c{bottom:218.551208px;}
.y5e{bottom:218.551346px;}
.ydb{bottom:219.011856px;}
.y196{bottom:219.113708px;}
.y115{bottom:222.338104px;}
.y7d{bottom:224.312691px;}
.y10{bottom:226.984360px;}
.y154{bottom:231.113708px;}
.yda{bottom:232.511856px;}
.y195{bottom:232.613708px;}
.y6b{bottom:236.551208px;}
.y5d{bottom:236.551346px;}
.y7c{bottom:239.312691px;}
.yf{bottom:240.484360px;}
.y153{bottom:244.613708px;}
.y12{bottom:244.984360px;}
.y194{bottom:246.113708px;}
.ye{bottom:253.984360px;}
.y7b{bottom:254.312691px;}
.yd9{bottom:254.515800px;}
.y6a{bottom:254.551208px;}
.y5c{bottom:254.551346px;}
.y152{bottom:258.113708px;}
.y114{bottom:258.338104px;}
.y193{bottom:259.613708px;}
.yd{bottom:267.484360px;}
.yd8{bottom:268.015800px;}
.y7a{bottom:269.312691px;}
.y151{bottom:271.613708px;}
.y113{bottom:271.838104px;}
.y69{bottom:272.551208px;}
.y5b{bottom:272.551346px;}
.y192{bottom:273.113708px;}
.yc{bottom:280.984360px;}
.yd7{bottom:281.515800px;}
.y79{bottom:284.312691px;}
.y150{bottom:285.113708px;}
.y112{bottom:285.338104px;}
.y11{bottom:285.484360px;}
.y191{bottom:286.613708px;}
.y8d{bottom:287.267258px;}
.y68{bottom:290.551208px;}
.y5a{bottom:290.551346px;}
.yd6{bottom:295.015800px;}
.y14f{bottom:298.613708px;}
.y111{bottom:298.838104px;}
.y78{bottom:299.312691px;}
.y190{bottom:300.113708px;}
.y8c{bottom:302.267258px;}
.yd5{bottom:308.515800px;}
.y59{bottom:308.551208px;}
.y14e{bottom:312.113708px;}
.y110{bottom:312.338104px;}
.y18f{bottom:313.613708px;}
.y77{bottom:314.312691px;}
.y8b{bottom:317.267258px;}
.yd4{bottom:322.015800px;}
.y14d{bottom:325.613708px;}
.y58{bottom:326.551208px;}
.y18e{bottom:327.113708px;}
.y76{bottom:329.312691px;}
.y8a{bottom:332.267258px;}
.yd3{bottom:335.515800px;}
.y14c{bottom:339.113708px;}
.y10f{bottom:339.338104px;}
.y18d{bottom:340.613708px;}
.y75{bottom:344.312691px;}
.y57{bottom:344.551208px;}
.y81{bottom:345.691200px;}
.y82{bottom:345.691498px;}
.y89{bottom:347.267258px;}
.y14b{bottom:352.613708px;}
.y10e{bottom:352.838104px;}
.y18c{bottom:354.113708px;}
.y85{bottom:357.151497px;}
.yd2{bottom:357.519745px;}
.y74{bottom:359.312691px;}
.y56{bottom:362.551208px;}
.y14a{bottom:366.113708px;}
.y10d{bottom:366.338104px;}
.y18b{bottom:367.613708px;}
.y29{bottom:370.854149px;}
.yd1{bottom:371.019745px;}
.y1a0{bottom:371.551208px;}
.y149{bottom:379.613708px;}
.y10c{bottom:379.838104px;}
.y55{bottom:380.551208px;}
.y18a{bottom:381.113708px;}
.yd0{bottom:384.519745px;}
.y19f{bottom:385.051208px;}
.y28{bottom:388.854172px;}
.y148{bottom:393.113708px;}
.y10b{bottom:393.338104px;}
.y189{bottom:394.613708px;}
.ycf{bottom:398.019745px;}
.y54{bottom:398.551208px;}
.y147{bottom:406.613708px;}
.y10a{bottom:406.838104px;}
.y188{bottom:408.113708px;}
.y27{bottom:411.354172px;}
.yce{bottom:411.519745px;}
.y53{bottom:416.551208px;}
.y146{bottom:420.113708px;}
.y109{bottom:420.338104px;}
.y187{bottom:421.613708px;}
.ycd{bottom:425.019745px;}
.y26{bottom:429.354172px;}
.y145{bottom:433.613708px;}
.y108{bottom:433.838104px;}
.y52{bottom:434.551208px;}
.y186{bottom:435.113708px;}
.ycc{bottom:447.023712px;}
.y144{bottom:447.113708px;}
.y107{bottom:447.338104px;}
.y25{bottom:447.354172px;}
.y185{bottom:448.613708px;}
.y51{bottom:452.551208px;}
.ycb{bottom:460.523712px;}
.y143{bottom:460.613708px;}
.y106{bottom:460.838104px;}
.y184{bottom:462.113708px;}
.ya1{bottom:462.572571px;}
.y24{bottom:469.854172px;}
.y50{bottom:470.551208px;}
.yca{bottom:474.023712px;}
.y142{bottom:474.113708px;}
.y183{bottom:475.613708px;}
.ya0{bottom:477.572571px;}
.yc9{bottom:487.523712px;}
.y141{bottom:487.613708px;}
.y105{bottom:487.838104px;}
.y23{bottom:487.854172px;}
.y4f{bottom:488.551208px;}
.y182{bottom:489.113708px;}
.y9f{bottom:492.572571px;}
.yc8{bottom:501.023712px;}
.y140{bottom:501.113708px;}
.y104{bottom:501.338104px;}
.y181{bottom:502.613708px;}
.y22{bottom:505.854172px;}
.y4e{bottom:506.551208px;}
.y9e{bottom:507.572571px;}
.y13f{bottom:514.613708px;}
.y103{bottom:514.838104px;}
.y180{bottom:516.113708px;}
.y9d{bottom:522.572571px;}
.yc7{bottom:523.027634px;}
.y21{bottom:523.854172px;}
.y4d{bottom:524.551208px;}
.y13e{bottom:528.113708px;}
.y102{bottom:528.338104px;}
.y17f{bottom:529.613708px;}
.yc6{bottom:536.527634px;}
.y13d{bottom:541.613708px;}
.y101{bottom:541.838104px;}
.y20{bottom:541.854172px;}
.y4c{bottom:542.551208px;}
.y17e{bottom:543.113708px;}
.yc5{bottom:550.027634px;}
.y13c{bottom:555.113708px;}
.y100{bottom:555.338104px;}
.y17d{bottom:556.613708px;}
.y1f{bottom:559.854172px;}
.y4b{bottom:560.551208px;}
.yc4{bottom:563.527634px;}
.y13b{bottom:568.613708px;}
.y17c{bottom:570.113708px;}
.yc3{bottom:577.027634px;}
.y1e{bottom:577.854172px;}
.y4a{bottom:578.551208px;}
.y13a{bottom:582.113708px;}
.yff{bottom:582.338104px;}
.y17b{bottom:583.613708px;}
.y139{bottom:595.613708px;}
.yfe{bottom:595.838104px;}
.y1d{bottom:595.854172px;}
.y49{bottom:596.551208px;}
.y17a{bottom:597.113708px;}
.yc2{bottom:599.031464px;}
.y138{bottom:609.113708px;}
.y179{bottom:610.613708px;}
.yc1{bottom:612.531464px;}
.y1c{bottom:613.854172px;}
.y48{bottom:614.551208px;}
.y137{bottom:622.613708px;}
.y178{bottom:624.113708px;}
.yc0{bottom:626.031464px;}
.y47{bottom:632.551208px;}
.yfd{bottom:635.593964px;}
.y136{bottom:636.113708px;}
.y1b{bottom:636.354172px;}
.y177{bottom:637.613708px;}
.ybf{bottom:639.531464px;}
.yfc{bottom:649.093964px;}
.y135{bottom:649.613708px;}
.y46{bottom:650.551208px;}
.y176{bottom:651.113708px;}
.y1a{bottom:654.354172px;}
.ybe{bottom:661.535568px;}
.yfb{bottom:662.593964px;}
.y134{bottom:663.113708px;}
.y175{bottom:664.613708px;}
.y45{bottom:668.551208px;}
.y19{bottom:672.354172px;}
.ybd{bottom:675.035568px;}
.yfa{bottom:676.093964px;}
.y133{bottom:676.613708px;}
.y174{bottom:678.113708px;}
.y44{bottom:686.551208px;}
.ybc{bottom:688.535385px;}
.yf9{bottom:689.594100px;}
.y132{bottom:690.113708px;}
.y18{bottom:690.354172px;}
.y173{bottom:691.613708px;}
.y131{bottom:703.613708px;}
.y43{bottom:704.551208px;}
.y172{bottom:705.113708px;}
.y17{bottom:708.354172px;}
.ybb{bottom:710.539352px;}
.yf8{bottom:711.597885px;}
.y8e{bottom:712.425430px;}
.y130{bottom:717.113708px;}
.y171{bottom:718.613708px;}
.y42{bottom:722.551208px;}
.yba{bottom:724.039352px;}
.yf7{bottom:725.097885px;}
.y16{bottom:726.354172px;}
.y12f{bottom:730.613708px;}
.y170{bottom:732.113708px;}
.yb9{bottom:737.539352px;}
.yf6{bottom:738.597885px;}
.y41{bottom:740.551208px;}
.y12e{bottom:744.113708px;}
.y15{bottom:744.354172px;}
.y94{bottom:744.392532px;}
.y16f{bottom:745.613708px;}
.yf5{bottom:752.097885px;}
.y12d{bottom:757.613708px;}
.y40{bottom:758.551208px;}
.y16e{bottom:759.113708px;}
.y93{bottom:759.392532px;}
.yb8{bottom:759.543320px;}
.yf4{bottom:765.597885px;}
.y14{bottom:766.854172px;}
.y12c{bottom:771.113708px;}
.y16d{bottom:772.613708px;}
.yb7{bottom:773.043274px;}
.y92{bottom:774.392578px;}
.y3f{bottom:776.551208px;}
.yf3{bottom:779.097931px;}
.y12b{bottom:784.613708px;}
.y16c{bottom:786.113708px;}
.yb6{bottom:786.543274px;}
.y91{bottom:789.392578px;}
.y3e{bottom:794.551208px;}
.y12a{bottom:798.113708px;}
.y16b{bottom:799.613708px;}
.yb5{bottom:800.043274px;}
.yf2{bottom:801.101807px;}
.y90{bottom:804.392578px;}
.y129{bottom:811.613708px;}
.y3d{bottom:812.551208px;}
.y16a{bottom:813.113708px;}
.yb4{bottom:813.543274px;}
.yf1{bottom:814.601807px;}
.y8f{bottom:819.392578px;}
.y128{bottom:825.113708px;}
.y2e{bottom:825.316681px;}
.y169{bottom:826.613708px;}
.yb3{bottom:827.043274px;}
.yf0{bottom:828.101807px;}
.y3c{bottom:830.551208px;}
.y127{bottom:838.613708px;}
.y168{bottom:840.113708px;}
.yb2{bottom:840.543274px;}
.yef{bottom:841.601807px;}
.y2d{bottom:846.316681px;}
.y3b{bottom:848.551208px;}
.y126{bottom:852.113708px;}
.y167{bottom:853.613708px;}
.yb1{bottom:854.043274px;}
.yee{bottom:855.101807px;}
.y125{bottom:865.613708px;}
.y3a{bottom:866.551208px;}
.y166{bottom:867.113708px;}
.yb0{bottom:867.543274px;}
.yed{bottom:868.601807px;}
.y124{bottom:879.113708px;}
.y165{bottom:880.613708px;}
.yaf{bottom:881.043274px;}
.y39{bottom:884.551208px;}
.yec{bottom:890.605774px;}
.y123{bottom:892.613708px;}
.y164{bottom:894.113708px;}
.y2c{bottom:897.316681px;}
.y38{bottom:902.551208px;}
.yeb{bottom:904.105774px;}
.y122{bottom:906.113708px;}
.y163{bottom:907.613708px;}
.yae{bottom:911.551208px;}
.yea{bottom:917.605774px;}
.y121{bottom:919.613708px;}
.y37{bottom:920.551208px;}
.y162{bottom:921.113708px;}
.yad{bottom:925.051208px;}
.ye9{bottom:931.105774px;}
.y120{bottom:933.113708px;}
.y161{bottom:934.613708px;}
.y2b{bottom:936.316681px;}
.y36{bottom:938.551208px;}
.ye8{bottom:944.605774px;}
.y11f{bottom:946.613708px;}
.y160{bottom:948.113708px;}
.y9c{bottom:950.551208px;}
.y35{bottom:956.551208px;}
.ye7{bottom:958.105774px;}
.y11e{bottom:960.113708px;}
.y15f{bottom:961.613708px;}
.y9b{bottom:965.551208px;}
.y11d{bottom:973.613708px;}
.y34{bottom:974.551208px;}
.yac{bottom:975.113708px;}
.y2a{bottom:975.316681px;}
.ye6{bottom:980.109741px;}
.y9a{bottom:980.551208px;}
.y11c{bottom:987.113708px;}
.yab{bottom:988.613708px;}
.y33{bottom:992.551208px;}
.ye5{bottom:993.609741px;}
.y99{bottom:995.551208px;}
.yaa{bottom:1002.113708px;}
.ye4{bottom:1007.109741px;}
.y32{bottom:1010.551208px;}
.ya9{bottom:1015.613708px;}
.y98{bottom:1025.551208px;}
.y67{bottom:1028.551208px;}
.y31{bottom:1028.551392px;}
.ya8{bottom:1029.113708px;}
.y1{bottom:1036.426208px;}
.y97{bottom:1040.551208px;}
.ya7{bottom:1042.613708px;}
.y66{bottom:1046.551208px;}
.y30{bottom:1046.551392px;}
.y80{bottom:1052.070740px;}
.y96{bottom:1055.551208px;}
.ya6{bottom:1056.113708px;}
.yb{bottom:1114.051208px;}
.ya{bottom:1129.051208px;}
.y2f{bottom:1129.426208px;}
.h8{height:29.452500px;}
.h16{height:31.920000px;}
.h4{height:39.270000px;}
.h3{height:41.538000px;}
.h17{height:41.943566px;}
.h7{height:42.075000px;}
.h1b{height:42.840000px;}
.h1a{height:42.885000px;}
.h18{height:43.740000px;}
.h19{height:44.505000px;}
.h13{height:44.880000px;}
.h5{height:45.744000px;}
.h12{height:46.656000px;}
.h11{height:47.472000px;}
.h14{height:47.988281px;}
.hf{height:53.654399px;}
.he{height:55.860000px;}
.hb{height:56.100000px;}
.ha{height:58.320000px;}
.h9{height:61.120200px;}
.h10{height:62.621897px;}
.hd{height:69.596779px;}
.h2{height:78.896517px;}
.h15{height:88.179529px;}
.h6{height:116.732582px;}
.hc{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:164.945995px;}
.w3{width:165.351002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.xc{left:88.256996px;}
.x1{left:91.234200px;}
.x12{left:93.543303px;}
.x5{left:94.789352px;}
.x7{left:97.039352px;}
.xf{left:100.756496px;}
.x9{left:107.539352px;}
.xb{left:114.688499px;}
.xe{left:121.143002px;}
.x10{left:162.326694px;}
.xa{left:178.066498px;}
.x2{left:271.062904px;}
.xd{left:343.012505px;}
.x4{left:457.547241px;}
.x13{left:465.590561px;}
.x8{left:469.086594px;}
.x14{left:479.586594px;}
.x11{left:738.661789px;}
.x6{left:744.817657px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v5{vertical-align:20.906576pt;}
.v4{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls15{letter-spacing:-0.554667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.418133pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000003pt;}
.ls5{letter-spacing:0.000004pt;}
.ls13{letter-spacing:0.000006pt;}
.ls4{letter-spacing:0.000008pt;}
.ls12{letter-spacing:0.000009pt;}
.ls17{letter-spacing:0.000026pt;}
.ls11{letter-spacing:0.000032pt;}
.ls14{letter-spacing:0.000033pt;}
.lsd{letter-spacing:0.000042pt;}
.ls8{letter-spacing:0.000089pt;}
.lse{letter-spacing:0.000090pt;}
.ls9{letter-spacing:0.000740pt;}
.lsf{letter-spacing:7.185862pt;}
.ls0{letter-spacing:8.320000pt;}
.lsb{letter-spacing:11.559866pt;}
.ls10{letter-spacing:11.989333pt;}
.lsc{letter-spacing:247.861865pt;}
.lsa{letter-spacing:248.581876pt;}
.ws7{word-spacing:-12.848000pt;}
.ws13{word-spacing:-12.282667pt;}
.wsc4{word-spacing:-11.864533pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws70{word-spacing:-10.156800pt;}
.ws8{word-spacing:-8.993600pt;}
.wsb0{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.760000pt;}
.ws182{word-spacing:-8.280000pt;}
.ws103{word-spacing:-8.277333pt;}
.ws192{word-spacing:-8.080000pt;}
.wsef{word-spacing:-7.680000pt;}
.ws193{word-spacing:-7.280000pt;}
.ws12{word-spacing:-7.242667pt;}
.ws196{word-spacing:-7.200000pt;}
.wsd9{word-spacing:-7.185862pt;}
.ws3{word-spacing:-6.132000pt;}
.ws74{word-spacing:-4.024533pt;}
.wsfb{word-spacing:-4.010667pt;}
.ws194{word-spacing:-3.760000pt;}
.ws197{word-spacing:-1.680000pt;}
.ws166{word-spacing:-1.515733pt;}
.ws151{word-spacing:-1.450667pt;}
.wsba{word-spacing:-1.365333pt;}
.wscd{word-spacing:-1.306667pt;}
.ws148{word-spacing:-1.149867pt;}
.wsfc{word-spacing:-1.024000pt;}
.wsc7{word-spacing:-0.993067pt;}
.ws175{word-spacing:-0.940800pt;}
.ws10e{word-spacing:-0.888533pt;}
.ws190{word-spacing:-0.784000pt;}
.ws115{word-spacing:-0.731733pt;}
.ws102{word-spacing:-0.725333pt;}
.ws154{word-spacing:-0.682667pt;}
.ws184{word-spacing:-0.679467pt;}
.ws123{word-spacing:-0.640000pt;}
.ws85{word-spacing:-0.627200pt;}
.ws100{word-spacing:-0.597333pt;}
.ws149{word-spacing:-0.522667pt;}
.ws131{word-spacing:-0.470400pt;}
.ws153{word-spacing:-0.384000pt;}
.wsc8{word-spacing:-0.365867pt;}
.ws124{word-spacing:-0.341333pt;}
.wsce{word-spacing:-0.313600pt;}
.wsfa{word-spacing:-0.298667pt;}
.ws37{word-spacing:-0.261333pt;}
.ws25{word-spacing:-0.209067pt;}
.wsbf{word-spacing:-0.170667pt;}
.ws198{word-spacing:-0.160000pt;}
.ws17a{word-spacing:-0.156800pt;}
.wsb9{word-spacing:-0.128000pt;}
.wsa5{word-spacing:-0.104533pt;}
.ws28{word-spacing:-0.052267pt;}
.wsc2{word-spacing:-0.052071pt;}
.ws195{word-spacing:-0.040000pt;}
.ws71{word-spacing:-0.005327pt;}
.ws9{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.042667pt;}
.ws143{word-spacing:0.052267pt;}
.ws163{word-spacing:0.104533pt;}
.wsbc{word-spacing:0.128000pt;}
.wsa6{word-spacing:0.156800pt;}
.ws121{word-spacing:0.170667pt;}
.ws11f{word-spacing:0.209067pt;}
.wsc5{word-spacing:0.210656pt;}
.ws11{word-spacing:0.261333pt;}
.wsbd{word-spacing:0.298667pt;}
.wsdb{word-spacing:0.313600pt;}
.ws152{word-spacing:0.341333pt;}
.wsa4{word-spacing:0.365867pt;}
.ws158{word-spacing:0.418133pt;}
.wsd{word-spacing:0.448000pt;}
.ws126{word-spacing:0.469333pt;}
.ws34{word-spacing:0.470400pt;}
.ws8d{word-spacing:0.522667pt;}
.ws47{word-spacing:0.574933pt;}
.ws125{word-spacing:0.597333pt;}
.ws18e{word-spacing:0.627200pt;}
.wse8{word-spacing:0.679467pt;}
.wsbe{word-spacing:0.682667pt;}
.wsea{word-spacing:0.731733pt;}
.wsb5{word-spacing:0.768000pt;}
.ws38{word-spacing:0.784000pt;}
.ws101{word-spacing:0.810667pt;}
.wsf7{word-spacing:0.836267pt;}
.wsb6{word-spacing:0.853333pt;}
.ws5b{word-spacing:0.888533pt;}
.ws130{word-spacing:0.940800pt;}
.ws18b{word-spacing:0.993067pt;}
.wsff{word-spacing:1.024000pt;}
.wsf9{word-spacing:1.066667pt;}
.ws146{word-spacing:1.097600pt;}
.ws108{word-spacing:1.149867pt;}
.ws11a{word-spacing:1.202133pt;}
.ws178{word-spacing:1.254400pt;}
.ws43{word-spacing:1.306667pt;}
.wse{word-spacing:1.344000pt;}
.ws83{word-spacing:1.358933pt;}
.ws112{word-spacing:1.411200pt;}
.ws9b{word-spacing:1.463467pt;}
.wsd5{word-spacing:1.515733pt;}
.wsca{word-spacing:1.568000pt;}
.wsfd{word-spacing:1.578667pt;}
.ws46{word-spacing:1.620267pt;}
.ws32{word-spacing:1.672533pt;}
.ws10{word-spacing:1.680000pt;}
.wsfe{word-spacing:1.706667pt;}
.wse0{word-spacing:1.777067pt;}
.wsf{word-spacing:1.792000pt;}
.wsa7{word-spacing:1.829333pt;}
.ws68{word-spacing:1.881600pt;}
.ws84{word-spacing:1.933867pt;}
.wsa1{word-spacing:1.986133pt;}
.wsb7{word-spacing:2.005333pt;}
.wsa8{word-spacing:2.038400pt;}
.wsc{word-spacing:2.053333pt;}
.ws122{word-spacing:2.133333pt;}
.ws161{word-spacing:2.142933pt;}
.wseb{word-spacing:2.195200pt;}
.ws10b{word-spacing:2.247467pt;}
.ws2e{word-spacing:2.299733pt;}
.ws15{word-spacing:2.346667pt;}
.ws165{word-spacing:2.352000pt;}
.ws36{word-spacing:2.404267pt;}
.ws156{word-spacing:2.456533pt;}
.ws168{word-spacing:2.561067pt;}
.wsa9{word-spacing:2.613333pt;}
.ws110{word-spacing:2.665600pt;}
.ws91{word-spacing:2.717867pt;}
.ws14{word-spacing:2.730667pt;}
.ws164{word-spacing:2.770133pt;}
.ws2c{word-spacing:2.822400pt;}
.ws9f{word-spacing:2.874667pt;}
.ws11c{word-spacing:2.926933pt;}
.ws107{word-spacing:2.979200pt;}
.wsbb{word-spacing:2.986667pt;}
.ws63{word-spacing:3.031467pt;}
.ws15e{word-spacing:3.083733pt;}
.ws6c{word-spacing:3.136000pt;}
.ws66{word-spacing:3.188267pt;}
.ws162{word-spacing:3.240533pt;}
.ws23{word-spacing:3.292800pt;}
.ws8f{word-spacing:3.345067pt;}
.ws81{word-spacing:3.397333pt;}
.ws96{word-spacing:3.449600pt;}
.ws13f{word-spacing:3.501867pt;}
.ws6b{word-spacing:3.554133pt;}
.ws132{word-spacing:3.606400pt;}
.ws8b{word-spacing:3.658667pt;}
.ws11e{word-spacing:3.710933pt;}
.ws57{word-spacing:3.763200pt;}
.ws109{word-spacing:3.815467pt;}
.wsf1{word-spacing:3.867733pt;}
.ws13c{word-spacing:3.920000pt;}
.ws15f{word-spacing:3.972267pt;}
.ws2d{word-spacing:4.024533pt;}
.ws42{word-spacing:4.076800pt;}
.wsd4{word-spacing:4.129067pt;}
.ws87{word-spacing:4.181333pt;}
.wsb8{word-spacing:4.224000pt;}
.ws129{word-spacing:4.233600pt;}
.ws116{word-spacing:4.285867pt;}
.ws49{word-spacing:4.338133pt;}
.ws113{word-spacing:4.390400pt;}
.wsc1{word-spacing:4.426075pt;}
.ws90{word-spacing:4.442667pt;}
.ws7e{word-spacing:4.547200pt;}
.wsaf{word-spacing:4.599467pt;}
.ws106{word-spacing:4.651733pt;}
.ws4f{word-spacing:4.704000pt;}
.wsa0{word-spacing:4.756267pt;}
.wse5{word-spacing:4.808533pt;}
.wsf6{word-spacing:4.860800pt;}
.ws159{word-spacing:4.913067pt;}
.wse4{word-spacing:4.965333pt;}
.ws16d{word-spacing:5.017600pt;}
.ws145{word-spacing:5.069867pt;}
.ws3d{word-spacing:5.122133pt;}
.ws62{word-spacing:5.174400pt;}
.ws20{word-spacing:5.226667pt;}
.wsd6{word-spacing:5.278933pt;}
.ws2f{word-spacing:5.331200pt;}
.ws39{word-spacing:5.383467pt;}
.ws8a{word-spacing:5.435733pt;}
.ws12b{word-spacing:5.488000pt;}
.ws127{word-spacing:5.540267pt;}
.ws73{word-spacing:5.592533pt;}
.ws3c{word-spacing:5.644800pt;}
.ws52{word-spacing:5.697067pt;}
.ws77{word-spacing:5.749333pt;}
.ws2b{word-spacing:5.801600pt;}
.ws138{word-spacing:5.853867pt;}
.ws5f{word-spacing:5.906133pt;}
.ws9c{word-spacing:5.958400pt;}
.ws64{word-spacing:6.010667pt;}
.ws31{word-spacing:6.062933pt;}
.ws144{word-spacing:6.115200pt;}
.ws9d{word-spacing:6.167467pt;}
.ws59{word-spacing:6.219733pt;}
.ws53{word-spacing:6.272000pt;}
.ws21{word-spacing:6.324267pt;}
.ws26{word-spacing:6.376533pt;}
.ws65{word-spacing:6.428800pt;}
.ws10f{word-spacing:6.481067pt;}
.wsde{word-spacing:6.533333pt;}
.wsdf{word-spacing:6.585600pt;}
.ws22{word-spacing:6.637867pt;}
.ws44{word-spacing:6.690133pt;}
.wsf0{word-spacing:6.742400pt;}
.ws61{word-spacing:6.794667pt;}
.ws2a{word-spacing:6.846933pt;}
.wsec{word-spacing:6.899200pt;}
.ws24{word-spacing:6.951467pt;}
.ws7f{word-spacing:7.003733pt;}
.ws105{word-spacing:7.056000pt;}
.ws3f{word-spacing:7.108267pt;}
.ws17e{word-spacing:7.160533pt;}
.wsb3{word-spacing:7.212800pt;}
.wscf{word-spacing:7.265067pt;}
.ws117{word-spacing:7.317333pt;}
.ws19{word-spacing:7.369600pt;}
.ws119{word-spacing:7.474133pt;}
.wsd8{word-spacing:7.526400pt;}
.ws8e{word-spacing:7.578667pt;}
.wsf2{word-spacing:7.630933pt;}
.ws69{word-spacing:7.683200pt;}
.ws60{word-spacing:7.735467pt;}
.ws139{word-spacing:7.787733pt;}
.ws5c{word-spacing:7.840000pt;}
.ws17f{word-spacing:7.892267pt;}
.wscc{word-spacing:7.944533pt;}
.ws35{word-spacing:7.996800pt;}
.ws6e{word-spacing:8.049067pt;}
.ws12e{word-spacing:8.101333pt;}
.ws160{word-spacing:8.153600pt;}
.ws95{word-spacing:8.205867pt;}
.wse1{word-spacing:8.258133pt;}
.ws30{word-spacing:8.310400pt;}
.ws11b{word-spacing:8.362667pt;}
.ws67{word-spacing:8.414933pt;}
.ws1b{word-spacing:8.467200pt;}
.wsb{word-spacing:8.474667pt;}
.ws56{word-spacing:8.571733pt;}
.ws94{word-spacing:8.624000pt;}
.ws3e{word-spacing:8.676267pt;}
.wsa3{word-spacing:8.728533pt;}
.ws13e{word-spacing:8.780800pt;}
.ws33{word-spacing:8.833067pt;}
.ws173{word-spacing:8.885333pt;}
.ws6f{word-spacing:8.937600pt;}
.ws7a{word-spacing:8.989867pt;}
.wsed{word-spacing:9.146667pt;}
.wsa{word-spacing:9.184000pt;}
.ws4c{word-spacing:9.251200pt;}
.ws3b{word-spacing:9.303467pt;}
.ws27{word-spacing:9.355733pt;}
.ws5a{word-spacing:9.408000pt;}
.ws72{word-spacing:9.460267pt;}
.ws6a{word-spacing:9.564800pt;}
.ws89{word-spacing:9.617067pt;}
.ws179{word-spacing:9.669333pt;}
.ws92{word-spacing:9.721600pt;}
.ws16c{word-spacing:9.773867pt;}
.ws104{word-spacing:9.826133pt;}
.ws9a{word-spacing:9.878400pt;}
.ws172{word-spacing:9.930667pt;}
.ws174{word-spacing:9.982933pt;}
.ws155{word-spacing:10.035200pt;}
.ws118{word-spacing:10.087467pt;}
.wsd3{word-spacing:10.139733pt;}
.ws7d{word-spacing:10.192000pt;}
.ws88{word-spacing:10.244267pt;}
.ws141{word-spacing:10.296533pt;}
.ws187{word-spacing:10.401067pt;}
.ws18f{word-spacing:10.453333pt;}
.ws55{word-spacing:10.505600pt;}
.ws18{word-spacing:10.610133pt;}
.ws114{word-spacing:10.662400pt;}
.ws12c{word-spacing:10.714667pt;}
.ws16b{word-spacing:10.766933pt;}
.ws82{word-spacing:10.819200pt;}
.ws140{word-spacing:10.871467pt;}
.ws98{word-spacing:10.923733pt;}
.wse7{word-spacing:11.028267pt;}
.ws12f{word-spacing:11.080533pt;}
.ws4b{word-spacing:11.132800pt;}
.ws12a{word-spacing:11.185067pt;}
.wse2{word-spacing:11.237333pt;}
.wse3{word-spacing:11.289600pt;}
.ws17{word-spacing:11.394133pt;}
.ws80{word-spacing:11.446400pt;}
.ws133{word-spacing:11.498667pt;}
.ws15c{word-spacing:11.550933pt;}
.ws188{word-spacing:11.603200pt;}
.ws180{word-spacing:11.655467pt;}
.ws11d{word-spacing:11.707733pt;}
.ws99{word-spacing:11.760000pt;}
.wsb2{word-spacing:11.864533pt;}
.ws136{word-spacing:11.916800pt;}
.ws147{word-spacing:11.969067pt;}
.wsc9{word-spacing:12.021333pt;}
.ws5e{word-spacing:12.073600pt;}
.ws177{word-spacing:12.125867pt;}
.wsee{word-spacing:12.178133pt;}
.ws75{word-spacing:12.230400pt;}
.wsad{word-spacing:12.282667pt;}
.ws185{word-spacing:12.334933pt;}
.wsd1{word-spacing:12.387200pt;}
.ws51{word-spacing:12.491733pt;}
.ws40{word-spacing:12.596267pt;}
.ws134{word-spacing:12.700800pt;}
.ws16e{word-spacing:12.753067pt;}
.ws120{word-spacing:12.805333pt;}
.ws14f{word-spacing:12.857600pt;}
.ws13b{word-spacing:12.962133pt;}
.ws86{word-spacing:13.014400pt;}
.ws15a{word-spacing:13.118933pt;}
.ws14a{word-spacing:13.171200pt;}
.ws186{word-spacing:13.223467pt;}
.ws17c{word-spacing:13.275733pt;}
.ws142{word-spacing:13.432533pt;}
.ws97{word-spacing:13.589333pt;}
.ws13a{word-spacing:13.641600pt;}
.ws14b{word-spacing:13.746133pt;}
.ws171{word-spacing:13.798400pt;}
.ws76{word-spacing:13.850667pt;}
.wsc6{word-spacing:13.955200pt;}
.ws29{word-spacing:14.216533pt;}
.ws4a{word-spacing:14.268800pt;}
.wsd7{word-spacing:14.321067pt;}
.ws191{word-spacing:14.425600pt;}
.ws4d{word-spacing:14.582400pt;}
.wsa2{word-spacing:14.686933pt;}
.wsf3{word-spacing:14.739200pt;}
.ws8c{word-spacing:14.843733pt;}
.ws4e{word-spacing:14.948267pt;}
.ws17b{word-spacing:15.000533pt;}
.ws58{word-spacing:15.052800pt;}
.wsd0{word-spacing:15.209600pt;}
.ws111{word-spacing:15.314133pt;}
.ws50{word-spacing:15.366400pt;}
.ws18a{word-spacing:15.418667pt;}
.ws15b{word-spacing:15.470933pt;}
.wse6{word-spacing:15.523200pt;}
.ws183{word-spacing:15.575467pt;}
.ws16f{word-spacing:15.836800pt;}
.ws7c{word-spacing:15.889067pt;}
.wsae{word-spacing:15.941333pt;}
.ws137{word-spacing:15.993600pt;}
.wse9{word-spacing:16.098133pt;}
.wsb1{word-spacing:16.150400pt;}
.wsc0{word-spacing:16.287955pt;}
.wsc3{word-spacing:16.407707pt;}
.ws10a{word-spacing:16.411733pt;}
.ws78{word-spacing:16.464000pt;}
.ws12d{word-spacing:16.673067pt;}
.ws157{word-spacing:16.777600pt;}
.ws167{word-spacing:16.829867pt;}
.ws1d{word-spacing:16.882133pt;}
.ws5d{word-spacing:16.986667pt;}
.ws14d{word-spacing:17.038933pt;}
.ws13d{word-spacing:17.143467pt;}
.ws1a{word-spacing:17.404800pt;}
.ws1f{word-spacing:17.613867pt;}
.ws17d{word-spacing:17.666133pt;}
.wsab{word-spacing:17.770667pt;}
.ws54{word-spacing:17.927467pt;}
.ws14e{word-spacing:18.293333pt;}
.wsdd{word-spacing:18.450133pt;}
.ws170{word-spacing:18.554667pt;}
.ws150{word-spacing:18.606933pt;}
.wsf4{word-spacing:18.659200pt;}
.ws176{word-spacing:18.920533pt;}
.ws128{word-spacing:19.025067pt;}
.wscb{word-spacing:19.286400pt;}
.wsac{word-spacing:19.495467pt;}
.ws15d{word-spacing:19.861333pt;}
.wsaa{word-spacing:20.122667pt;}
.wsb4{word-spacing:20.436267pt;}
.ws41{word-spacing:20.593067pt;}
.ws9e{word-spacing:20.749867pt;}
.ws48{word-spacing:21.272533pt;}
.ws181{word-spacing:21.899733pt;}
.ws18c{word-spacing:22.056533pt;}
.ws135{word-spacing:22.579200pt;}
.ws18d{word-spacing:22.736000pt;}
.ws10d{word-spacing:22.840533pt;}
.ws6d{word-spacing:22.945067pt;}
.ws3a{word-spacing:23.049600pt;}
.ws7b{word-spacing:23.258667pt;}
.ws16{word-spacing:23.467733pt;}
.ws45{word-spacing:24.042667pt;}
.ws10c{word-spacing:24.304000pt;}
.wsf5{word-spacing:24.617600pt;}
.ws93{word-spacing:25.088000pt;}
.ws169{word-spacing:27.753600pt;}
.ws16a{word-spacing:28.171733pt;}
.ws189{word-spacing:28.485333pt;}
.ws14c{word-spacing:30.941867pt;}
.ws79{word-spacing:38.050133pt;}
.wsd2{word-spacing:40.611200pt;}
.ws1c{word-spacing:41.499733pt;}
.ws1e{word-spacing:49.026133pt;}
.wsdc{word-spacing:256.681588pt;}
.wsda{word-spacing:257.413333pt;}
.ws1{word-spacing:1267.950312pt;}
.ws0{word-spacing:1729.641551pt;}
._5{margin-left:-2569.717893pt;}
._11{margin-left:-25.332256pt;}
._f{margin-left:-19.704565pt;}
._14{margin-left:-15.324764pt;}
._1a{margin-left:-12.473643pt;}
._15{margin-left:-11.550939pt;}
._19{margin-left:-10.412797pt;}
._8{margin-left:-9.335467pt;}
._17{margin-left:-7.433606pt;}
._18{margin-left:-6.248528pt;}
._a{margin-left:-5.297637pt;}
._4{margin-left:-4.309333pt;}
._2{margin-left:-2.842667pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.181867pt;}
._6{width:2.699730pt;}
._d{width:3.967040pt;}
._16{width:5.429828pt;}
._7{width:6.587146pt;}
._10{width:7.991573pt;}
._b{width:9.108247pt;}
._c{width:10.205432pt;}
._13{width:11.097591pt;}
._e{width:12.683413pt;}
._9{width:13.899681pt;}
._3{width:15.601598pt;}
._1b{width:19.778089pt;}
._12{width:25.096023pt;}
._27{width:29.440000pt;}
._26{width:48.960000pt;}
._25{width:55.845333pt;}
._1c{width:62.400000pt;}
._23{width:88.285333pt;}
._21{width:97.480000pt;}
._20{width:106.080000pt;}
._22{width:110.080000pt;}
._1d{width:119.080000pt;}
._1f{width:130.280000pt;}
._24{width:132.520000pt;}
._1e{width:135.120000pt;}
.fs5{font-size:28.000000pt;}
.fsd{font-size:36.586667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsc{font-size:49.066666pt;}
.fsf{font-size:52.071467pt;}
.fsb{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs9{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:1.345072pt;}
.y83{bottom:19.081075pt;}
.y9{bottom:78.994802pt;}
.y73{bottom:82.267736pt;}
.y65{bottom:82.267868pt;}
.y15e{bottom:85.434397pt;}
.y11b{bottom:89.633870pt;}
.y8{bottom:89.661469pt;}
.ya5{bottom:90.267731pt;}
.ye3{bottom:91.118133pt;}
.y15d{bottom:97.434397pt;}
.y72{bottom:98.267731pt;}
.y64{bottom:98.267863pt;}
.y19e{bottom:98.767731pt;}
.y7{bottom:100.328135pt;}
.y11a{bottom:101.633870pt;}
.ya4{bottom:102.267731pt;}
.ye2{bottom:103.118133pt;}
.y15c{bottom:109.434397pt;}
.y19d{bottom:110.767731pt;}
.y6{bottom:110.994802pt;}
.y71{bottom:114.267731pt;}
.y63{bottom:114.267863pt;}
.ye1{bottom:115.118133pt;}
.y15b{bottom:121.434397pt;}
.y5{bottom:121.661469pt;}
.y19c{bottom:122.767731pt;}
.y119{bottom:125.633870pt;}
.ya3{bottom:126.267731pt;}
.y95{bottom:128.508931pt;}
.y70{bottom:130.267731pt;}
.y62{bottom:130.267863pt;}
.y4{bottom:132.328135pt;}
.y15a{bottom:133.434397pt;}
.ye0{bottom:134.677195pt;}
.y19b{bottom:134.767731pt;}
.y118{bottom:137.633870pt;}
.ya2{bottom:138.267731pt;}
.y3{bottom:142.994802pt;}
.y159{bottom:145.434397pt;}
.y6f{bottom:146.267731pt;}
.y61{bottom:146.267863pt;}
.ydf{bottom:146.677195pt;}
.y19a{bottom:146.767731pt;}
.y2{bottom:153.661469pt;}
.y158{bottom:157.434397pt;}
.yde{bottom:158.677195pt;}
.y199{bottom:158.767731pt;}
.y117{bottom:161.633870pt;}
.y6e{bottom:162.267731pt;}
.y60{bottom:162.267863pt;}
.y86{bottom:163.281067pt;}
.y87{bottom:163.281331pt;}
.y157{bottom:169.434397pt;}
.ydd{bottom:170.677205pt;}
.y198{bottom:170.767741pt;}
.y7f{bottom:172.722392pt;}
.y88{bottom:173.467997pt;}
.y116{bottom:173.633870pt;}
.y6d{bottom:178.267741pt;}
.y5f{bottom:178.267863pt;}
.y156{bottom:181.434408pt;}
.ydc{bottom:182.677205pt;}
.y197{bottom:182.767741pt;}
.y7e{bottom:186.055725pt;}
.y13{bottom:189.763875pt;}
.y155{bottom:193.434408pt;}
.y6c{bottom:194.267741pt;}
.y5e{bottom:194.267863pt;}
.ydb{bottom:194.677205pt;}
.y196{bottom:194.767741pt;}
.y115{bottom:197.633870pt;}
.y7d{bottom:199.389058pt;}
.y10{bottom:201.763875pt;}
.y154{bottom:205.434408pt;}
.yda{bottom:206.677205pt;}
.y195{bottom:206.767741pt;}
.y6b{bottom:210.267741pt;}
.y5d{bottom:210.267863pt;}
.y7c{bottom:212.722392pt;}
.yf{bottom:213.763875pt;}
.y153{bottom:217.434408pt;}
.y12{bottom:217.763875pt;}
.y194{bottom:218.767741pt;}
.ye{bottom:225.763875pt;}
.y7b{bottom:226.055725pt;}
.yd9{bottom:226.236267pt;}
.y6a{bottom:226.267741pt;}
.y5c{bottom:226.267863pt;}
.y152{bottom:229.434408pt;}
.y114{bottom:229.633870pt;}
.y193{bottom:230.767741pt;}
.yd{bottom:237.763875pt;}
.yd8{bottom:238.236267pt;}
.y7a{bottom:239.389058pt;}
.y151{bottom:241.434408pt;}
.y113{bottom:241.633870pt;}
.y69{bottom:242.267741pt;}
.y5b{bottom:242.267863pt;}
.y192{bottom:242.767741pt;}
.yc{bottom:249.763875pt;}
.yd7{bottom:250.236267pt;}
.y79{bottom:252.722392pt;}
.y150{bottom:253.434408pt;}
.y112{bottom:253.633870pt;}
.y11{bottom:253.763875pt;}
.y191{bottom:254.767741pt;}
.y8d{bottom:255.348674pt;}
.y68{bottom:258.267741pt;}
.y5a{bottom:258.267863pt;}
.yd6{bottom:262.236267pt;}
.y14f{bottom:265.434408pt;}
.y111{bottom:265.633870pt;}
.y78{bottom:266.055725pt;}
.y190{bottom:266.767741pt;}
.y8c{bottom:268.682007pt;}
.yd5{bottom:274.236267pt;}
.y59{bottom:274.267741pt;}
.y14e{bottom:277.434408pt;}
.y110{bottom:277.633870pt;}
.y18f{bottom:278.767741pt;}
.y77{bottom:279.389058pt;}
.y8b{bottom:282.015340pt;}
.yd4{bottom:286.236267pt;}
.y14d{bottom:289.434408pt;}
.y58{bottom:290.267741pt;}
.y18e{bottom:290.767741pt;}
.y76{bottom:292.722392pt;}
.y8a{bottom:295.348674pt;}
.yd3{bottom:298.236267pt;}
.y14c{bottom:301.434408pt;}
.y10f{bottom:301.633870pt;}
.y18d{bottom:302.767741pt;}
.y75{bottom:306.055725pt;}
.y57{bottom:306.267741pt;}
.y81{bottom:307.281067pt;}
.y82{bottom:307.281331pt;}
.y89{bottom:308.682007pt;}
.y14b{bottom:313.434408pt;}
.y10e{bottom:313.633870pt;}
.y18c{bottom:314.767741pt;}
.y85{bottom:317.467997pt;}
.yd2{bottom:317.795329pt;}
.y74{bottom:319.389058pt;}
.y56{bottom:322.267741pt;}
.y14a{bottom:325.434408pt;}
.y10d{bottom:325.633870pt;}
.y18b{bottom:326.767741pt;}
.y29{bottom:329.648132pt;}
.yd1{bottom:329.795329pt;}
.y1a0{bottom:330.267741pt;}
.y149{bottom:337.434408pt;}
.y10c{bottom:337.633870pt;}
.y55{bottom:338.267741pt;}
.y18a{bottom:338.767741pt;}
.yd0{bottom:341.795329pt;}
.y19f{bottom:342.267741pt;}
.y28{bottom:345.648153pt;}
.y148{bottom:349.434408pt;}
.y10b{bottom:349.633870pt;}
.y189{bottom:350.767741pt;}
.ycf{bottom:353.795329pt;}
.y54{bottom:354.267741pt;}
.y147{bottom:361.434408pt;}
.y10a{bottom:361.633870pt;}
.y188{bottom:362.767741pt;}
.y27{bottom:365.648153pt;}
.yce{bottom:365.795329pt;}
.y53{bottom:370.267741pt;}
.y146{bottom:373.434408pt;}
.y109{bottom:373.633870pt;}
.y187{bottom:374.767741pt;}
.ycd{bottom:377.795329pt;}
.y26{bottom:381.648153pt;}
.y145{bottom:385.434408pt;}
.y108{bottom:385.633870pt;}
.y52{bottom:386.267741pt;}
.y186{bottom:386.767741pt;}
.ycc{bottom:397.354411pt;}
.y144{bottom:397.434408pt;}
.y107{bottom:397.633870pt;}
.y25{bottom:397.648153pt;}
.y185{bottom:398.767741pt;}
.y51{bottom:402.267741pt;}
.ycb{bottom:409.354411pt;}
.y143{bottom:409.434408pt;}
.y106{bottom:409.633870pt;}
.y184{bottom:410.767741pt;}
.ya1{bottom:411.175618pt;}
.y24{bottom:417.648153pt;}
.y50{bottom:418.267741pt;}
.yca{bottom:421.354411pt;}
.y142{bottom:421.434408pt;}
.y183{bottom:422.767741pt;}
.ya0{bottom:424.508952pt;}
.yc9{bottom:433.354411pt;}
.y141{bottom:433.434408pt;}
.y105{bottom:433.633870pt;}
.y23{bottom:433.648153pt;}
.y4f{bottom:434.267741pt;}
.y182{bottom:434.767741pt;}
.y9f{bottom:437.842285pt;}
.yc8{bottom:445.354411pt;}
.y140{bottom:445.434408pt;}
.y104{bottom:445.633870pt;}
.y181{bottom:446.767741pt;}
.y22{bottom:449.648153pt;}
.y4e{bottom:450.267741pt;}
.y9e{bottom:451.175618pt;}
.y13f{bottom:457.434408pt;}
.y103{bottom:457.633870pt;}
.y180{bottom:458.767741pt;}
.y9d{bottom:464.508952pt;}
.yc7{bottom:464.913452pt;}
.y21{bottom:465.648153pt;}
.y4d{bottom:466.267741pt;}
.y13e{bottom:469.434408pt;}
.y102{bottom:469.633870pt;}
.y17f{bottom:470.767741pt;}
.yc6{bottom:476.913452pt;}
.y13d{bottom:481.434408pt;}
.y101{bottom:481.633870pt;}
.y20{bottom:481.648153pt;}
.y4c{bottom:482.267741pt;}
.y17e{bottom:482.767741pt;}
.yc5{bottom:488.913452pt;}
.y13c{bottom:493.434408pt;}
.y100{bottom:493.633870pt;}
.y17d{bottom:494.767741pt;}
.y1f{bottom:497.648153pt;}
.y4b{bottom:498.267741pt;}
.yc4{bottom:500.913452pt;}
.y13b{bottom:505.434408pt;}
.y17c{bottom:506.767741pt;}
.yc3{bottom:512.913452pt;}
.y1e{bottom:513.648153pt;}
.y4a{bottom:514.267741pt;}
.y13a{bottom:517.434408pt;}
.yff{bottom:517.633870pt;}
.y17b{bottom:518.767741pt;}
.y139{bottom:529.434408pt;}
.yfe{bottom:529.633870pt;}
.y1d{bottom:529.648153pt;}
.y49{bottom:530.267741pt;}
.y17a{bottom:530.767741pt;}
.yc2{bottom:532.472412pt;}
.y138{bottom:541.434408pt;}
.y179{bottom:542.767741pt;}
.yc1{bottom:544.472412pt;}
.y1c{bottom:545.648153pt;}
.y48{bottom:546.267741pt;}
.y137{bottom:553.434408pt;}
.y178{bottom:554.767741pt;}
.yc0{bottom:556.472412pt;}
.y47{bottom:562.267741pt;}
.yfd{bottom:564.972412pt;}
.y136{bottom:565.434408pt;}
.y1b{bottom:565.648153pt;}
.y177{bottom:566.767741pt;}
.ybf{bottom:568.472412pt;}
.yfc{bottom:576.972412pt;}
.y135{bottom:577.434408pt;}
.y46{bottom:578.267741pt;}
.y176{bottom:578.767741pt;}
.y1a{bottom:581.648153pt;}
.ybe{bottom:588.031616pt;}
.yfb{bottom:588.972412pt;}
.y134{bottom:589.434408pt;}
.y175{bottom:590.767741pt;}
.y45{bottom:594.267741pt;}
.y19{bottom:597.648153pt;}
.ybd{bottom:600.031616pt;}
.yfa{bottom:600.972412pt;}
.y133{bottom:601.434408pt;}
.y174{bottom:602.767741pt;}
.y44{bottom:610.267741pt;}
.ybc{bottom:612.031453pt;}
.yf9{bottom:612.972533pt;}
.y132{bottom:613.434408pt;}
.y18{bottom:613.648153pt;}
.y173{bottom:614.767741pt;}
.y131{bottom:625.434408pt;}
.y43{bottom:626.267741pt;}
.y172{bottom:626.767741pt;}
.y17{bottom:629.648153pt;}
.ybb{bottom:631.590535pt;}
.yf8{bottom:632.531453pt;}
.y8e{bottom:633.267049pt;}
.y130{bottom:637.434408pt;}
.y171{bottom:638.767741pt;}
.y42{bottom:642.267741pt;}
.yba{bottom:643.590535pt;}
.yf7{bottom:644.531453pt;}
.y16{bottom:645.648153pt;}
.y12f{bottom:649.434408pt;}
.y170{bottom:650.767741pt;}
.yb9{bottom:655.590535pt;}
.yf6{bottom:656.531453pt;}
.y41{bottom:658.267741pt;}
.y12e{bottom:661.434408pt;}
.y15{bottom:661.648153pt;}
.y94{bottom:661.682251pt;}
.y16f{bottom:662.767741pt;}
.yf5{bottom:668.531453pt;}
.y12d{bottom:673.434408pt;}
.y40{bottom:674.267741pt;}
.y16e{bottom:674.767741pt;}
.y93{bottom:675.015584pt;}
.yb8{bottom:675.149618pt;}
.yf4{bottom:680.531453pt;}
.y14{bottom:681.648153pt;}
.y12c{bottom:685.434408pt;}
.y16d{bottom:686.767741pt;}
.yb7{bottom:687.149577pt;}
.y92{bottom:688.348958pt;}
.y3f{bottom:690.267741pt;}
.yf3{bottom:692.531494pt;}
.y12b{bottom:697.434408pt;}
.y16c{bottom:698.767741pt;}
.yb6{bottom:699.149577pt;}
.y91{bottom:701.682292pt;}
.y3e{bottom:706.267741pt;}
.y12a{bottom:709.434408pt;}
.y16b{bottom:710.767741pt;}
.yb5{bottom:711.149577pt;}
.yf2{bottom:712.090495pt;}
.y90{bottom:715.015625pt;}
.y129{bottom:721.434408pt;}
.y3d{bottom:722.267741pt;}
.y16a{bottom:722.767741pt;}
.yb4{bottom:723.149577pt;}
.yf1{bottom:724.090495pt;}
.y8f{bottom:728.348958pt;}
.y128{bottom:733.434408pt;}
.y2e{bottom:733.614827pt;}
.y169{bottom:734.767741pt;}
.yb3{bottom:735.149577pt;}
.yf0{bottom:736.090495pt;}
.y3c{bottom:738.267741pt;}
.y127{bottom:745.434408pt;}
.y168{bottom:746.767741pt;}
.yb2{bottom:747.149577pt;}
.yef{bottom:748.090495pt;}
.y2d{bottom:752.281494pt;}
.y3b{bottom:754.267741pt;}
.y126{bottom:757.434408pt;}
.y167{bottom:758.767741pt;}
.yb1{bottom:759.149577pt;}
.yee{bottom:760.090495pt;}
.y125{bottom:769.434408pt;}
.y3a{bottom:770.267741pt;}
.y166{bottom:770.767741pt;}
.yb0{bottom:771.149577pt;}
.yed{bottom:772.090495pt;}
.y124{bottom:781.434408pt;}
.y165{bottom:782.767741pt;}
.yaf{bottom:783.149577pt;}
.y39{bottom:786.267741pt;}
.yec{bottom:791.649577pt;}
.y123{bottom:793.434408pt;}
.y164{bottom:794.767741pt;}
.y2c{bottom:797.614827pt;}
.y38{bottom:802.267741pt;}
.yeb{bottom:803.649577pt;}
.y122{bottom:805.434408pt;}
.y163{bottom:806.767741pt;}
.yae{bottom:810.267741pt;}
.yea{bottom:815.649577pt;}
.y121{bottom:817.434408pt;}
.y37{bottom:818.267741pt;}
.y162{bottom:818.767741pt;}
.yad{bottom:822.267741pt;}
.ye9{bottom:827.649577pt;}
.y120{bottom:829.434408pt;}
.y161{bottom:830.767741pt;}
.y2b{bottom:832.281494pt;}
.y36{bottom:834.267741pt;}
.ye8{bottom:839.649577pt;}
.y11f{bottom:841.434408pt;}
.y160{bottom:842.767741pt;}
.y9c{bottom:844.934408pt;}
.y35{bottom:850.267741pt;}
.ye7{bottom:851.649577pt;}
.y11e{bottom:853.434408pt;}
.y15f{bottom:854.767741pt;}
.y9b{bottom:858.267741pt;}
.y11d{bottom:865.434408pt;}
.y34{bottom:866.267741pt;}
.yac{bottom:866.767741pt;}
.y2a{bottom:866.948161pt;}
.ye6{bottom:871.208659pt;}
.y9a{bottom:871.601074pt;}
.y11c{bottom:877.434408pt;}
.yab{bottom:878.767741pt;}
.y33{bottom:882.267741pt;}
.ye5{bottom:883.208659pt;}
.y99{bottom:884.934408pt;}
.yaa{bottom:890.767741pt;}
.ye4{bottom:895.208659pt;}
.y32{bottom:898.267741pt;}
.ya9{bottom:902.767741pt;}
.y98{bottom:911.601074pt;}
.y67{bottom:914.267741pt;}
.y31{bottom:914.267904pt;}
.ya8{bottom:914.767741pt;}
.y1{bottom:921.267741pt;}
.y97{bottom:924.934408pt;}
.ya7{bottom:926.767741pt;}
.y66{bottom:930.267741pt;}
.y30{bottom:930.267904pt;}
.y80{bottom:935.173991pt;}
.y96{bottom:938.267741pt;}
.ya6{bottom:938.767741pt;}
.yb{bottom:990.267741pt;}
.ya{bottom:1003.601074pt;}
.y2f{bottom:1003.934408pt;}
.h8{height:26.180000pt;}
.h16{height:28.373333pt;}
.h4{height:34.906667pt;}
.h3{height:36.922667pt;}
.h17{height:37.283170pt;}
.h7{height:37.400000pt;}
.h1b{height:38.080000pt;}
.h1a{height:38.120000pt;}
.h18{height:38.880000pt;}
.h19{height:39.560000pt;}
.h13{height:39.893333pt;}
.h5{height:40.661333pt;}
.h12{height:41.472000pt;}
.h11{height:42.197333pt;}
.h14{height:42.656250pt;}
.hf{height:47.692799pt;}
.he{height:49.653333pt;}
.hb{height:49.866667pt;}
.ha{height:51.840000pt;}
.h9{height:54.329067pt;}
.h10{height:55.663909pt;}
.hd{height:61.863804pt;}
.h2{height:70.130237pt;}
.h15{height:78.381804pt;}
.h6{height:103.762295pt;}
.hc{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:146.618663pt;}
.w3{width:146.978668pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.xc{left:78.450663pt;}
.x1{left:81.097066pt;}
.x12{left:83.149602pt;}
.x5{left:84.257202pt;}
.x7{left:86.257202pt;}
.xf{left:89.561330pt;}
.x9{left:95.590535pt;}
.xb{left:101.945333pt;}
.xe{left:107.682668pt;}
.x10{left:144.290395pt;}
.xa{left:158.281331pt;}
.x2{left:240.944804pt;}
.xd{left:304.900004pt;}
.x4{left:406.708659pt;}
.x13{left:413.858276pt;}
.x8{left:416.965861pt;}
.x14{left:426.299194pt;}
.x11{left:656.588257pt;}
.x6{left:662.060140pt;}
}




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