
    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_c3e61c1380ff2a9f3c3c0f8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_4917f98d8ea8c15c44c148ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_a6e9f14cd34f48fad405c3f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_10dcf56c94812bbf57e75a23.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.135000;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_c24192e7cf00517d5a0fde23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_542b7bdd5336b2787aa87fa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119286;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_1b66f26d2437cd0d29ad62be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_d2eecdeb51a7d087089cb290.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_ac91d8029e30c6f0872cd5de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.705078;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_c46cc8f39163585b7ed05487.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075195;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_dfc135b8a29f0aaeb7766be8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_3ebf157b9dbad9e968723a0f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_432e669b4ca83bbaf25a055f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929133;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.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,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:-19.350000px;}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.526900px;}
.v1{vertical-align:19.185600px;}
.ls38{letter-spacing:-1.050000px;}
.ls37{letter-spacing:-0.997500px;}
.ls53{letter-spacing:-0.967500px;}
.ls9{letter-spacing:-0.840000px;}
.ls36{letter-spacing:-0.648375px;}
.ls17{letter-spacing:-0.645000px;}
.ls5b{letter-spacing:-0.585000px;}
.ls20{letter-spacing:-0.525000px;}
.ls54{letter-spacing:-0.516000px;}
.ls1b{letter-spacing:-0.419250px;}
.ls1f{letter-spacing:-0.341250px;}
.lse{letter-spacing:-0.322500px;}
.ls19{letter-spacing:-0.258000px;}
.ls1a{letter-spacing:-0.167700px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.ls15{letter-spacing:0.006900px;}
.ls5d{letter-spacing:0.007050px;}
.ls6a{letter-spacing:0.008400px;}
.ls5c{letter-spacing:0.009000px;}
.ls67{letter-spacing:0.009600px;}
.ls68{letter-spacing:0.009900px;}
.ls5f{letter-spacing:0.010200px;}
.ls57{letter-spacing:0.034125px;}
.ls4e{letter-spacing:0.041925px;}
.ls5{letter-spacing:0.042000px;}
.ls3a{letter-spacing:0.045900px;}
.ls7{letter-spacing:0.048000px;}
.ls1e{letter-spacing:0.052500px;}
.ls66{letter-spacing:0.058500px;}
.ls13{letter-spacing:0.064500px;}
.lsc{letter-spacing:0.069900px;}
.ls30{letter-spacing:0.083850px;}
.ls47{letter-spacing:0.102375px;}
.lsd{letter-spacing:0.105000px;}
.lsa{letter-spacing:0.129000px;}
.ls24{letter-spacing:0.157500px;}
.ls69{letter-spacing:0.158700px;}
.ls4{letter-spacing:0.168000px;}
.ls2c{letter-spacing:0.170625px;}
.ls58{letter-spacing:0.175500px;}
.ls2a{letter-spacing:0.193500px;}
.ls1c{letter-spacing:0.204750px;}
.ls41{letter-spacing:0.209625px;}
.ls2d{letter-spacing:0.210000px;}
.ls5e{letter-spacing:0.234000px;}
.ls26{letter-spacing:0.238875px;}
.ls35{letter-spacing:0.251550px;}
.lsf{letter-spacing:0.258000px;}
.ls12{letter-spacing:0.262500px;}
.ls6c{letter-spacing:0.292500px;}
.ls2f{letter-spacing:0.293475px;}
.ls6b{letter-spacing:0.301800px;}
.ls18{letter-spacing:0.315000px;}
.ls16{letter-spacing:0.322500px;}
.ls56{letter-spacing:0.335400px;}
.ls2{letter-spacing:0.336000px;}
.ls45{letter-spacing:0.341250px;}
.ls5a{letter-spacing:0.351000px;}
.ls1d{letter-spacing:0.367500px;}
.ls3{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.387000px;}
.ls71{letter-spacing:0.409500px;}
.ls25{letter-spacing:0.419250px;}
.ls14{letter-spacing:0.451500px;}
.ls72{letter-spacing:0.468000px;}
.ls10{letter-spacing:0.486300px;}
.ls73{letter-spacing:0.503700px;}
.ls74{letter-spacing:0.513600px;}
.ls4b{letter-spacing:0.516000px;}
.ls32{letter-spacing:0.525000px;}
.ls75{letter-spacing:0.526500px;}
.ls46{letter-spacing:0.577500px;}
.ls55{letter-spacing:0.580500px;}
.ls4d{letter-spacing:0.628875px;}
.ls21{letter-spacing:0.645000px;}
.ls52{letter-spacing:0.648375px;}
.ls3c{letter-spacing:0.670800px;}
.ls4f{letter-spacing:0.682500px;}
.ls3b{letter-spacing:0.709500px;}
.ls11{letter-spacing:0.735000px;}
.ls78{letter-spacing:0.760500px;}
.ls76{letter-spacing:0.762600px;}
.ls77{letter-spacing:0.771600px;}
.ls2b{letter-spacing:0.774000px;}
.ls44{letter-spacing:0.838500px;}
.ls6f{letter-spacing:0.864000px;}
.ls6e{letter-spacing:0.873000px;}
.ls70{letter-spacing:0.877500px;}
.ls28{letter-spacing:0.903000px;}
.ls6d{letter-spacing:0.936000px;}
.ls22{letter-spacing:0.967500px;}
.ls59{letter-spacing:0.994500px;}
.ls51{letter-spacing:0.997500px;}
.ls39{letter-spacing:1.032000px;}
.ls50{letter-spacing:1.050000px;}
.ls31{letter-spacing:1.126125px;}
.ls65{letter-spacing:1.145700px;}
.ls63{letter-spacing:1.155600px;}
.ls27{letter-spacing:1.161000px;}
.ls62{letter-spacing:1.162688px;}
.ls61{letter-spacing:1.165200px;}
.ls64{letter-spacing:1.170000px;}
.ls49{letter-spacing:1.225500px;}
.ls3d{letter-spacing:1.290000px;}
.ls4a{letter-spacing:1.354500px;}
.ls3f{letter-spacing:1.419000px;}
.ls4c{letter-spacing:1.467375px;}
.ls43{letter-spacing:1.483500px;}
.ls79{letter-spacing:1.553100px;}
.ls7a{letter-spacing:1.562400px;}
.ls7b{letter-spacing:1.579500px;}
.ls3e{letter-spacing:1.612500px;}
.ls29{letter-spacing:1.677000px;}
.ls2e{letter-spacing:1.732500px;}
.ls40{letter-spacing:1.806000px;}
.ls42{letter-spacing:1.870500px;}
.ls48{letter-spacing:2.257500px;}
.ls23{letter-spacing:5.998500px;}
.ls0{letter-spacing:10.794000px;}
.ls1{letter-spacing:11.970000px;}
.ls6{letter-spacing:12.510000px;}
.ls34{letter-spacing:13.125000px;}
.ls60{letter-spacing:31.297500px;}
.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;}
}
.wsf2{word-spacing:-18.382500px;}
.ws93{word-spacing:-16.770000px;}
.wse5{word-spacing:-16.447500px;}
.ws57{word-spacing:-16.125000px;}
.ws11c{word-spacing:-14.625000px;}
.wsc2{word-spacing:-13.492500px;}
.wsc3{word-spacing:-13.125000px;}
.ws3c{word-spacing:-12.750000px;}
.ws11e{word-spacing:-12.131438px;}
.ws110{word-spacing:-12.093750px;}
.wsf3{word-spacing:-11.948625px;}
.wse6{word-spacing:-11.319750px;}
.wsde{word-spacing:-11.152050px;}
.wsf4{word-spacing:-11.110125px;}
.ws11d{word-spacing:-10.968750px;}
.wsc0{word-spacing:-10.900500px;}
.ws10c{word-spacing:-10.816650px;}
.wscc{word-spacing:-10.774725px;}
.wsd8{word-spacing:-10.732800px;}
.ws101{word-spacing:-10.690875px;}
.wscd{word-spacing:-10.565100px;}
.wsf8{word-spacing:-10.523175px;}
.ws19{word-spacing:-10.481250px;}
.ws69{word-spacing:-10.313550px;}
.wsce{word-spacing:-9.657375px;}
.ws0{word-spacing:-9.324000px;}
.wsfc{word-spacing:-9.179625px;}
.wse7{word-spacing:-8.872500px;}
.wsa2{word-spacing:-8.770125px;}
.ws6a{word-spacing:-8.736000px;}
.wsc1{word-spacing:-8.701875px;}
.wse8{word-spacing:-8.633625px;}
.ws10d{word-spacing:-8.565375px;}
.ws3d{word-spacing:-8.531250px;}
.ws1{word-spacing:-8.484000px;}
.ws81{word-spacing:-8.190000px;}
.wsd9{word-spacing:-7.882875px;}
.wsee{word-spacing:-1.806000px;}
.wsf0{word-spacing:-0.967500px;}
.wsc7{word-spacing:-0.903000px;}
.wsef{word-spacing:-0.838500px;}
.wsff{word-spacing:-0.682500px;}
.wsb4{word-spacing:-0.645000px;}
.ws76{word-spacing:-0.451500px;}
.ws9a{word-spacing:-0.419250px;}
.ws132{word-spacing:-0.409500px;}
.wse2{word-spacing:-0.322500px;}
.wsc9{word-spacing:-0.262500px;}
.ws10a{word-spacing:-0.258000px;}
.wsd7{word-spacing:-0.210000px;}
.wsea{word-spacing:-0.209625px;}
.wsf5{word-spacing:-0.129000px;}
.ws36{word-spacing:-0.105000px;}
.ws3{word-spacing:0.000000px;}
.ws8b{word-spacing:0.052500px;}
.wsd1{word-spacing:0.064500px;}
.ws104{word-spacing:0.105000px;}
.ws137{word-spacing:0.117000px;}
.ws5e{word-spacing:0.129000px;}
.ws12f{word-spacing:0.175500px;}
.ws40{word-spacing:0.193500px;}
.ws78{word-spacing:0.210000px;}
.ws136{word-spacing:0.234000px;}
.ws116{word-spacing:0.258000px;}
.ws8e{word-spacing:0.262500px;}
.ws68{word-spacing:0.315000px;}
.ws48{word-spacing:0.322500px;}
.ws7b{word-spacing:0.367500px;}
.ws1b{word-spacing:0.387000px;}
.ws6f{word-spacing:0.419250px;}
.ws2b{word-spacing:0.420000px;}
.wsf{word-spacing:0.432000px;}
.wsd3{word-spacing:0.451500px;}
.ws7f{word-spacing:0.472500px;}
.ws45{word-spacing:0.516000px;}
.wsa9{word-spacing:0.525000px;}
.ws9e{word-spacing:0.580500px;}
.ws11a{word-spacing:0.585000px;}
.wscb{word-spacing:0.630000px;}
.ws62{word-spacing:0.645000px;}
.wse{word-spacing:0.672000px;}
.ws89{word-spacing:0.682500px;}
.ws9b{word-spacing:0.709500px;}
.ws44{word-spacing:0.774000px;}
.wsd6{word-spacing:0.787500px;}
.ws129{word-spacing:0.819000px;}
.ws115{word-spacing:0.838500px;}
.ws6{word-spacing:0.840000px;}
.ws12a{word-spacing:0.877500px;}
.ws3b{word-spacing:0.892500px;}
.ws58{word-spacing:0.903000px;}
.wsd{word-spacing:0.960000px;}
.wsfa{word-spacing:0.967500px;}
.ws139{word-spacing:0.994500px;}
.wsa1{word-spacing:0.997500px;}
.ws106{word-spacing:1.032000px;}
.ws10{word-spacing:1.056000px;}
.wsd2{word-spacing:1.096500px;}
.wsa3{word-spacing:1.161000px;}
.ws33{word-spacing:1.207500px;}
.ws6c{word-spacing:1.225500px;}
.wsb8{word-spacing:1.260000px;}
.ws131{word-spacing:1.287000px;}
.wsfe{word-spacing:1.290000px;}
.ws105{word-spacing:1.312500px;}
.ws98{word-spacing:1.354500px;}
.ws52{word-spacing:1.365000px;}
.wsbf{word-spacing:1.417500px;}
.wsd0{word-spacing:1.419000px;}
.wsae{word-spacing:1.470000px;}
.ws46{word-spacing:1.483500px;}
.ws109{word-spacing:1.522500px;}
.ws10b{word-spacing:1.548000px;}
.ws35{word-spacing:1.575000px;}
.ws16{word-spacing:1.584000px;}
.wsfb{word-spacing:1.612500px;}
.wsab{word-spacing:1.627500px;}
.ws11{word-spacing:1.632000px;}
.ws12c{word-spacing:1.638000px;}
.ws47{word-spacing:1.677000px;}
.ws7c{word-spacing:1.680000px;}
.ws18{word-spacing:1.728000px;}
.wsbe{word-spacing:1.732500px;}
.ws20{word-spacing:1.741500px;}
.ws126{word-spacing:1.755000px;}
.ws7{word-spacing:1.806000px;}
.ws13{word-spacing:1.824000px;}
.wsad{word-spacing:1.837500px;}
.ws77{word-spacing:1.870500px;}
.wse4{word-spacing:1.890000px;}
.ws140{word-spacing:1.930500px;}
.ws72{word-spacing:1.935000px;}
.ws91{word-spacing:1.995000px;}
.wsdb{word-spacing:1.999500px;}
.wsa8{word-spacing:2.047500px;}
.ws95{word-spacing:2.064000px;}
.ws34{word-spacing:2.100000px;}
.ws9f{word-spacing:2.128500px;}
.ws122{word-spacing:2.164500px;}
.wsa4{word-spacing:2.193000px;}
.wsba{word-spacing:2.205000px;}
.ws30{word-spacing:2.257500px;}
.ws87{word-spacing:2.310000px;}
.wsfd{word-spacing:2.322000px;}
.ws108{word-spacing:2.362500px;}
.ws1e{word-spacing:2.386500px;}
.ws12d{word-spacing:2.398500px;}
.ws2e{word-spacing:2.415000px;}
.ws5f{word-spacing:2.451000px;}
.ws13c{word-spacing:2.457000px;}
.ws103{word-spacing:2.467500px;}
.ws26{word-spacing:2.515500px;}
.ws2d{word-spacing:2.520000px;}
.ws50{word-spacing:2.572500px;}
.wse1{word-spacing:2.580000px;}
.ws2a{word-spacing:2.625000px;}
.ws138{word-spacing:2.632500px;}
.ws4f{word-spacing:2.644500px;}
.ws5{word-spacing:2.646000px;}
.ws66{word-spacing:2.677500px;}
.ws12{word-spacing:2.688000px;}
.ws85{word-spacing:2.709000px;}
.wsd5{word-spacing:2.730000px;}
.ws11f{word-spacing:2.749500px;}
.ws4c{word-spacing:2.773500px;}
.ws31{word-spacing:2.782500px;}
.ws53{word-spacing:2.835000px;}
.ws83{word-spacing:2.838000px;}
.ws130{word-spacing:2.866500px;}
.wsf6{word-spacing:2.902500px;}
.ws15{word-spacing:2.928000px;}
.ws79{word-spacing:2.940000px;}
.ws4d{word-spacing:2.967000px;}
.ws107{word-spacing:3.031500px;}
.ws121{word-spacing:3.042000px;}
.ws88{word-spacing:3.045000px;}
.ws4b{word-spacing:3.096000px;}
.ws7d{word-spacing:3.097500px;}
.ws123{word-spacing:3.100500px;}
.wsb{word-spacing:3.120000px;}
.ws39{word-spacing:3.150000px;}
.ws4e{word-spacing:3.160500px;}
.ws54{word-spacing:3.202500px;}
.ws6d{word-spacing:3.225000px;}
.ws4{word-spacing:3.234000px;}
.wsbb{word-spacing:3.255000px;}
.ws142{word-spacing:3.276000px;}
.wsb3{word-spacing:3.289500px;}
.wse3{word-spacing:3.307500px;}
.ws133{word-spacing:3.334500px;}
.ws6b{word-spacing:3.354000px;}
.wsac{word-spacing:3.360000px;}
.ws125{word-spacing:3.393000px;}
.wsaf{word-spacing:3.412500px;}
.wsc6{word-spacing:3.418500px;}
.ws13f{word-spacing:3.451500px;}
.ws8d{word-spacing:3.465000px;}
.ws61{word-spacing:3.483000px;}
.ws112{word-spacing:3.510000px;}
.wsf1{word-spacing:3.517500px;}
.wsd4{word-spacing:3.570000px;}
.ws5a{word-spacing:3.612000px;}
.wsb9{word-spacing:3.675000px;}
.wsec{word-spacing:3.676500px;}
.ws3a{word-spacing:3.727500px;}
.wsdd{word-spacing:3.741000px;}
.ws32{word-spacing:3.780000px;}
.ws43{word-spacing:3.805500px;}
.ws13d{word-spacing:3.861000px;}
.ws84{word-spacing:3.870000px;}
.wsb7{word-spacing:3.885000px;}
.ws73{word-spacing:3.934500px;}
.ws67{word-spacing:3.937500px;}
.ws56{word-spacing:3.990000px;}
.ws27{word-spacing:3.999000px;}
.ws12e{word-spacing:4.036500px;}
.ws97{word-spacing:4.063500px;}
.wsbd{word-spacing:4.095000px;}
.ws5b{word-spacing:4.128000px;}
.ws114{word-spacing:4.147500px;}
.wsa7{word-spacing:4.192500px;}
.wsaa{word-spacing:4.252500px;}
.ws6e{word-spacing:4.257000px;}
.ws135{word-spacing:4.270500px;}
.ws1f{word-spacing:4.321500px;}
.ws64{word-spacing:4.357500px;}
.ws9c{word-spacing:4.450500px;}
.ws10f{word-spacing:4.462500px;}
.wsc{word-spacing:4.512000px;}
.ws1d{word-spacing:4.515000px;}
.ws70{word-spacing:4.579500px;}
.wsb6{word-spacing:4.620000px;}
.ws141{word-spacing:4.621500px;}
.wsed{word-spacing:4.644000px;}
.ws8{word-spacing:4.662000px;}
.ws80{word-spacing:4.672500px;}
.wsb0{word-spacing:4.708500px;}
.ws65{word-spacing:4.725000px;}
.ws3f{word-spacing:4.773000px;}
.wsb5{word-spacing:4.777500px;}
.wsb1{word-spacing:4.837500px;}
.ws127{word-spacing:4.855500px;}
.ws8f{word-spacing:4.882500px;}
.ws82{word-spacing:4.902000px;}
.ws2f{word-spacing:4.935000px;}
.ws63{word-spacing:4.966500px;}
.ws55{word-spacing:4.987500px;}
.ws59{word-spacing:5.031000px;}
.ws7e{word-spacing:5.092500px;}
.ws117{word-spacing:5.095500px;}
.ws37{word-spacing:5.145000px;}
.ws124{word-spacing:5.148000px;}
.ws10e{word-spacing:5.160000px;}
.ws100{word-spacing:5.197500px;}
.ws119{word-spacing:5.206500px;}
.ws24{word-spacing:5.224500px;}
.ws12b{word-spacing:5.265000px;}
.wsf9{word-spacing:5.289000px;}
.ws23{word-spacing:5.353500px;}
.ws8c{word-spacing:5.355000px;}
.wsbc{word-spacing:5.407500px;}
.ws96{word-spacing:5.418000px;}
.ws99{word-spacing:5.482500px;}
.ws111{word-spacing:5.547000px;}
.ws8a{word-spacing:5.565000px;}
.ws94{word-spacing:5.611500px;}
.ws2c{word-spacing:5.617500px;}
.ws92{word-spacing:5.670000px;}
.ws74{word-spacing:5.676000px;}
.ws13b{word-spacing:5.733000px;}
.ws60{word-spacing:5.740500px;}
.ws13e{word-spacing:5.791500px;}
.wsdf{word-spacing:5.805000px;}
.ws7a{word-spacing:5.827500px;}
.wsa6{word-spacing:5.869500px;}
.ws17{word-spacing:5.904000px;}
.ws71{word-spacing:5.934000px;}
.wsa0{word-spacing:5.998500px;}
.ws14{word-spacing:6.000000px;}
.ws38{word-spacing:6.037500px;}
.ws25{word-spacing:6.063000px;}
.ws5d{word-spacing:6.127500px;}
.ws9d{word-spacing:6.192000px;}
.ws86{word-spacing:6.256500px;}
.ws13a{word-spacing:6.259500px;}
.ws51{word-spacing:6.300000px;}
.ws4a{word-spacing:6.321000px;}
.ws144{word-spacing:6.352500px;}
.ws118{word-spacing:6.385500px;}
.wscf{word-spacing:6.450000px;}
.ws90{word-spacing:6.510000px;}
.wsb2{word-spacing:6.514500px;}
.ws29{word-spacing:6.562500px;}
.wsc5{word-spacing:6.579000px;}
.wsca{word-spacing:6.615000px;}
.ws75{word-spacing:6.643500px;}
.wsa5{word-spacing:6.708000px;}
.ws134{word-spacing:6.727500px;}
.ws22{word-spacing:6.772500px;}
.ws102{word-spacing:6.837000px;}
.ws128{word-spacing:7.020000px;}
.wse0{word-spacing:7.030500px;}
.wseb{word-spacing:7.095000px;}
.ws11b{word-spacing:7.137000px;}
.wse9{word-spacing:7.159500px;}
.ws41{word-spacing:7.224000px;}
.ws120{word-spacing:7.254000px;}
.ws21{word-spacing:7.288500px;}
.ws143{word-spacing:7.297500px;}
.ws113{word-spacing:7.312500px;}
.ws5c{word-spacing:7.353000px;}
.wsf7{word-spacing:7.482000px;}
.wsc4{word-spacing:7.546500px;}
.ws28{word-spacing:7.611000px;}
.wsc8{word-spacing:7.740000px;}
.ws49{word-spacing:7.804500px;}
.wsdc{word-spacing:7.869000px;}
.wsda{word-spacing:7.933500px;}
.ws42{word-spacing:7.998000px;}
.ws1c{word-spacing:8.062500px;}
.wsa{word-spacing:10.656000px;}
.ws1a{word-spacing:12.750000px;}
.ws9{word-spacing:13.344000px;}
.ws3e{word-spacing:1149.576000px;}
.ws2{word-spacing:1818.756000px;}
._5{margin-left:-14.880000px;}
._3{margin-left:-9.324000px;}
._c{margin-left:-2.605950px;}
._1{margin-left:-1.091196px;}
._8{width:1.008000px;}
._d{width:2.089575px;}
._b{width:3.097500px;}
._a{width:4.620000px;}
._7{width:6.562500px;}
._0{width:8.442000px;}
._9{width:9.922200px;}
._2{width:11.676000px;}
._4{width:13.344000px;}
._6{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.125000px;}
.fsc{font-size:38.025000px;}
.fs8{font-size:41.925000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:43.875000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:48.375000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fsb{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.yb{bottom:98.452050px;}
.ya{bottom:110.453550px;}
.yb3{bottom:124.532025px;}
.y108{bottom:124.543275px;}
.y8d{bottom:124.548900px;}
.yd6{bottom:124.554525px;}
.y165{bottom:124.560150px;}
.y6d{bottom:124.565775px;}
.y51{bottom:124.577025px;}
.y1ec{bottom:125.061000px;}
.y212{bottom:125.293500px;}
.y239{bottom:125.656200px;}
.y9{bottom:126.705450px;}
.y125{bottom:128.520150px;}
.y193{bottom:129.507000px;}
.yb2{bottom:138.930150px;}
.y124{bottom:138.935775px;}
.y107{bottom:138.941400px;}
.y8c{bottom:138.947025px;}
.yd5{bottom:138.952650px;}
.y164{bottom:138.958275px;}
.y6c{bottom:138.963900px;}
.y14b{bottom:138.969525px;}
.y8{bottom:140.827950px;}
.y1eb{bottom:141.382500px;}
.y211{bottom:141.615000px;}
.y238{bottom:141.977700px;}
.y50{bottom:142.912650px;}
.y4f{bottom:153.277650px;}
.yb1{bottom:153.328275px;}
.y123{bottom:153.333900px;}
.y106{bottom:153.339525px;}
.y8b{bottom:153.345150px;}
.yd4{bottom:153.350775px;}
.y163{bottom:153.356400px;}
.y6b{bottom:153.362025px;}
.y192{bottom:153.492000px;}
.y7{bottom:157.081950px;}
.y13d{bottom:157.305150px;}
.y1ea{bottom:157.704000px;}
.y210{bottom:157.936500px;}
.y237{bottom:158.299200px;}
.y4e{bottom:167.675775px;}
.yb0{bottom:167.726400px;}
.y122{bottom:167.732025px;}
.y105{bottom:167.737650px;}
.y8a{bottom:167.743275px;}
.yd3{bottom:167.748900px;}
.y162{bottom:167.754525px;}
.y6{bottom:168.264450px;}
.y6a{bottom:171.697650px;}
.y1e9{bottom:174.025500px;}
.y20f{bottom:174.250500px;}
.y236{bottom:174.617700px;}
.y4d{bottom:182.073900px;}
.y1c4{bottom:182.107650px;}
.yaf{bottom:182.124525px;}
.y69{bottom:182.130150px;}
.y104{bottom:182.135775px;}
.y89{bottom:182.141400px;}
.yd2{bottom:182.147025px;}
.y5{bottom:183.696000px;}
.y161{bottom:186.090150px;}
.y1e8{bottom:190.347000px;}
.y20e{bottom:190.572000px;}
.y235{bottom:190.939200px;}
.y4{bottom:194.878500px;}
.y4c{bottom:196.472025px;}
.y1c3{bottom:196.505775px;}
.yae{bottom:196.522650px;}
.y68{bottom:196.528275px;}
.y103{bottom:196.533900px;}
.y88{bottom:196.539525px;}
.yd1{bottom:200.482650px;}
.y3{bottom:206.059500px;}
.y20d{bottom:206.893500px;}
.y234{bottom:207.254700px;}
.y4b{bottom:210.870150px;}
.yd0{bottom:210.887025px;}
.y1c2{bottom:210.903900px;}
.yad{bottom:210.920775px;}
.y67{bottom:210.926400px;}
.y102{bottom:210.932025px;}
.y13c{bottom:212.990475px;}
.y1dd{bottom:213.058275px;}
.y87{bottom:214.875150px;}
.y20c{bottom:223.215000px;}
.y233{bottom:223.576200px;}
.y1e7{bottom:224.261700px;}
.y118{bottom:225.234525px;}
.y4a{bottom:225.268275px;}
.ycf{bottom:225.285150px;}
.y1c1{bottom:225.302025px;}
.y195{bottom:225.313275px;}
.yac{bottom:225.318900px;}
.y66{bottom:225.324525px;}
.y86{bottom:229.267650px;}
.y13b{bottom:230.582850px;}
.y170{bottom:230.595225px;}
.y188{bottom:230.613150px;}
.y1dc{bottom:230.650650px;}
.y20b{bottom:239.536500px;}
.y117{bottom:239.632650px;}
.y49{bottom:239.666400px;}
.yce{bottom:239.683275px;}
.y12b{bottom:239.694525px;}
.y160{bottom:239.700150px;}
.y101{bottom:239.711400px;}
.yab{bottom:239.717025px;}
.y232{bottom:239.897700px;}
.y65{bottom:243.660150px;}
.y13a{bottom:248.175225px;}
.y16f{bottom:248.187600px;}
.y187{bottom:248.205525px;}
.y1db{bottom:248.243025px;}
.y116{bottom:254.030775px;}
.y48{bottom:254.064525px;}
.ycd{bottom:254.081400px;}
.y12a{bottom:254.092650px;}
.y15f{bottom:254.098275px;}
.y121{bottom:254.103900px;}
.y64{bottom:254.109525px;}
.yec{bottom:254.115150px;}
.y20a{bottom:255.853500px;}
.y231{bottom:256.219200px;}
.yaa{bottom:258.052650px;}
.y139{bottom:265.767600px;}
.y16e{bottom:265.779975px;}
.y186{bottom:265.797900px;}
.y1da{bottom:265.835400px;}
.y115{bottom:268.428900px;}
.y47{bottom:268.462650px;}
.ycc{bottom:268.479525px;}
.y129{bottom:268.490775px;}
.y15e{bottom:268.496400px;}
.ya9{bottom:268.502025px;}
.y63{bottom:268.507650px;}
.y209{bottom:272.175000px;}
.y100{bottom:272.445150px;}
.y230{bottom:272.534850px;}
.y1e6{bottom:275.864850px;}
.y114{bottom:282.827025px;}
.yff{bottom:282.849525px;}
.y46{bottom:282.860775px;}
.ycb{bottom:282.877650px;}
.y128{bottom:282.888900px;}
.y15d{bottom:282.894525px;}
.y138{bottom:283.359975px;}
.y16d{bottom:283.372350px;}
.y1a8{bottom:283.373775px;}
.y85{bottom:283.388700px;}
.y185{bottom:283.390275px;}
.y14a{bottom:283.392825px;}
.y1d9{bottom:283.427775px;}
.ya8{bottom:286.837650px;}
.y208{bottom:288.496500px;}
.y22f{bottom:288.856350px;}
.y1e5{bottom:292.186350px;}
.y113{bottom:297.225150px;}
.yfe{bottom:297.247650px;}
.y45{bottom:297.258900px;}
.yca{bottom:297.275775px;}
.y1b6{bottom:297.281400px;}
.ya7{bottom:297.287025px;}
.y1c0{bottom:297.292650px;}
.y16c{bottom:300.964725px;}
.y1a7{bottom:300.966150px;}
.y1b2{bottom:300.976950px;}
.y84{bottom:300.981075px;}
.y184{bottom:300.982650px;}
.y149{bottom:300.985200px;}
.y137{bottom:300.993450px;}
.yeb{bottom:301.005825px;}
.y1d8{bottom:301.020150px;}
.y15c{bottom:301.230150px;}
.y207{bottom:304.810500px;}
.y22e{bottom:305.177850px;}
.y1e4{bottom:308.507850px;}
.y112{bottom:311.623275px;}
.yfd{bottom:311.645775px;}
.y44{bottom:311.657025px;}
.yc9{bottom:311.673900px;}
.y1b5{bottom:311.679525px;}
.ya6{bottom:315.622650px;}
.y16b{bottom:318.557100px;}
.y1a6{bottom:318.558525px;}
.y1b1{bottom:318.569325px;}
.y83{bottom:318.573450px;}
.y183{bottom:318.575025px;}
.y148{bottom:318.577575px;}
.y62{bottom:318.581700px;}
.y136{bottom:318.585825px;}
.yea{bottom:318.598200px;}
.y1d7{bottom:318.612525px;}
.y206{bottom:321.132000px;}
.y22d{bottom:321.499350px;}
.y1e3{bottom:324.829350px;}
.y111{bottom:326.021400px;}
.yfc{bottom:326.043900px;}
.y43{bottom:326.055150px;}
.ya5{bottom:326.072025px;}
.y127{bottom:330.015150px;}
.y16a{bottom:336.149475px;}
.y1b0{bottom:336.161700px;}
.y82{bottom:336.165825px;}
.y182{bottom:336.167400px;}
.y120{bottom:336.169950px;}
.y61{bottom:336.174075px;}
.y135{bottom:336.178200px;}
.ye9{bottom:336.190575px;}
.y1d6{bottom:336.204900px;}
.y1a5{bottom:336.228075px;}
.y205{bottom:337.453500px;}
.y22c{bottom:337.814700px;}
.y110{bottom:340.419525px;}
.yfb{bottom:340.442025px;}
.y42{bottom:340.453275px;}
.y1e2{bottom:341.150850px;}
.ya4{bottom:344.407650px;}
.y15b{bottom:353.745825px;}
.y1af{bottom:353.754075px;}
.y81{bottom:353.758200px;}
.y181{bottom:353.759775px;}
.y11f{bottom:353.762325px;}
.y60{bottom:353.766450px;}
.y134{bottom:353.770575px;}
.y204{bottom:353.775000px;}
.ye8{bottom:353.782950px;}
.y169{bottom:353.787075px;}
.y191{bottom:353.791350px;}
.y1d5{bottom:353.797275px;}
.y1a4{bottom:353.820450px;}
.y22b{bottom:354.136200px;}
.yc8{bottom:354.817650px;}
.yfa{bottom:354.840150px;}
.y41{bottom:354.851400px;}
.y1e1{bottom:357.472350px;}
.y1bf{bottom:360.187575px;}
.y27{bottom:367.058100px;}
.yc7{bottom:369.215775px;}
.yf9{bottom:369.238275px;}
.y40{bottom:369.249525px;}
.y203{bottom:370.096500px;}
.y22a{bottom:370.457700px;}
.y15a{bottom:371.338200px;}
.y1ae{bottom:371.346450px;}
.y80{bottom:371.350575px;}
.y180{bottom:371.352150px;}
.y11e{bottom:371.354700px;}
.y5f{bottom:371.358825px;}
.y133{bottom:371.362950px;}
.ye7{bottom:371.375325px;}
.y168{bottom:371.379450px;}
.y190{bottom:371.383725px;}
.y1d4{bottom:371.389650px;}
.y1a3{bottom:371.412825px;}
.y1e0{bottom:373.793850px;}
.y1be{bottom:377.788200px;}
.yc6{bottom:383.613900px;}
.yf8{bottom:383.636400px;}
.y26{bottom:386.186100px;}
.y202{bottom:386.415000px;}
.y229{bottom:386.779200px;}
.y3f{bottom:387.585150px;}
.y1ad{bottom:388.938825px;}
.y7f{bottom:388.942950px;}
.y17f{bottom:388.944525px;}
.y11d{bottom:388.947075px;}
.y5e{bottom:388.951200px;}
.y132{bottom:388.955325px;}
.ye6{bottom:388.967700px;}
.y167{bottom:388.971825px;}
.y18f{bottom:388.976100px;}
.y1d3{bottom:388.982025px;}
.ya3{bottom:388.984200px;}
.y1a2{bottom:389.005200px;}
.y1bd{bottom:395.380575px;}
.yc5{bottom:398.012025px;}
.y3e{bottom:398.028900px;}
.yf7{bottom:398.034525px;}
.y25{bottom:398.930100px;}
.y201{bottom:402.736500px;}
.y228{bottom:403.097850px;}
.y7e{bottom:406.535325px;}
.y11c{bottom:406.539450px;}
.y5d{bottom:406.543575px;}
.y131{bottom:406.547700px;}
.ye5{bottom:406.560075px;}
.y166{bottom:406.564200px;}
.y18e{bottom:406.568475px;}
.y17e{bottom:406.574025px;}
.y1d2{bottom:406.574400px;}
.ya2{bottom:406.576575px;}
.y1a1{bottom:406.597575px;}
.y1df{bottom:407.782950px;}
.y24{bottom:411.674100px;}
.yc4{bottom:412.410150px;}
.y3d{bottom:412.427025px;}
.y1bc{bottom:412.972950px;}
.y246{bottom:414.824325px;}
.yf6{bottom:416.370150px;}
.y200{bottom:419.053500px;}
.y227{bottom:419.419350px;}
.y11b{bottom:424.131825px;}
.y5c{bottom:424.135950px;}
.y130{bottom:424.140075px;}
.ye4{bottom:424.152450px;}
.y7d{bottom:424.156575px;}
.y18d{bottom:424.160850px;}
.y17d{bottom:424.166400px;}
.y1d1{bottom:424.166775px;}
.ya1{bottom:424.168950px;}
.y1a0{bottom:424.189950px;}
.y23{bottom:424.418100px;}
.yc3{bottom:426.808275px;}
.y245{bottom:429.222450px;}
.y3c{bottom:430.762650px;}
.y1ff{bottom:435.375000px;}
.y226{bottom:435.737850px;}
.y22{bottom:437.162100px;}
.yc2{bottom:441.206400px;}
.y147{bottom:441.724200px;}
.y5b{bottom:441.728325px;}
.y12f{bottom:441.732450px;}
.ye3{bottom:441.744825px;}
.y7c{bottom:441.748950px;}
.y18c{bottom:441.753225px;}
.y17c{bottom:441.758775px;}
.y1d0{bottom:441.759150px;}
.ya0{bottom:441.761325px;}
.y19f{bottom:441.782325px;}
.y244{bottom:443.620575px;}
.y1bb{bottom:448.169775px;}
.y21{bottom:449.906100px;}
.y1fe{bottom:451.696500px;}
.y225{bottom:452.059350px;}
.yc1{bottom:455.604525px;}
.y243{bottom:458.018700px;}
.y194{bottom:459.320700px;}
.y12e{bottom:459.324825px;}
.y5a{bottom:459.333225px;}
.ye2{bottom:459.337200px;}
.y7b{bottom:459.341325px;}
.y18b{bottom:459.345600px;}
.y17b{bottom:459.351150px;}
.y1cf{bottom:459.351525px;}
.y9f{bottom:459.353700px;}
.y1de{bottom:459.399075px;}
.y20{bottom:462.650100px;}
.y1ba{bottom:464.154900px;}
.y1fd{bottom:468.013500px;}
.y224{bottom:468.377700px;}
.yc0{bottom:470.002650px;}
.y242{bottom:472.416825px;}
.y1f{bottom:475.394100px;}
.y1ac{bottom:476.917200px;}
.y3b{bottom:476.921325px;}
.y59{bottom:476.925600px;}
.ye1{bottom:476.929575px;}
.y7a{bottom:476.933700px;}
.y18a{bottom:476.937975px;}
.y17a{bottom:476.943525px;}
.y1ce{bottom:476.943900px;}
.y9e{bottom:476.946075px;}
.y19e{bottom:476.967075px;}
.y12d{bottom:476.991450px;}
.y1b9{bottom:480.140025px;}
.y1fc{bottom:484.335000px;}
.y223{bottom:484.699200px;}
.y241{bottom:486.814950px;}
.y58{bottom:494.517975px;}
.y3a{bottom:494.521950px;}
.y79{bottom:494.526075px;}
.y189{bottom:494.530350px;}
.y179{bottom:494.535900px;}
.y1cd{bottom:494.536275px;}
.y9d{bottom:494.538450px;}
.y1ab{bottom:494.559225px;}
.y12c{bottom:494.583825px;}
.y1b8{bottom:496.125150px;}
.y1fb{bottom:500.656500px;}
.y1e{bottom:500.894100px;}
.y222{bottom:501.016200px;}
.y240{bottom:501.213075px;}
.y126{bottom:512.110350px;}
.y39{bottom:512.114325px;}
.y78{bottom:512.118450px;}
.y10f{bottom:512.122725px;}
.y146{bottom:512.126700px;}
.y178{bottom:512.128275px;}
.y1cc{bottom:512.128650px;}
.y9c{bottom:512.130825px;}
.ybf{bottom:512.132250px;}
.yf5{bottom:512.143350px;}
.y1aa{bottom:512.151600px;}
.y159{bottom:512.163975px;}
.y57{bottom:512.176200px;}
.y1d{bottom:513.638100px;}
.y23f{bottom:515.611200px;}
.y1fa{bottom:516.975000px;}
.y221{bottom:517.337700px;}
.ye0{bottom:529.706700px;}
.y77{bottom:529.710825px;}
.y10e{bottom:529.715100px;}
.y145{bottom:529.719075px;}
.y177{bottom:529.720650px;}
.y1cb{bottom:529.721025px;}
.y9b{bottom:529.723200px;}
.ybe{bottom:529.724625px;}
.y38{bottom:529.727325px;}
.yf4{bottom:529.735725px;}
.y1b7{bottom:529.739700px;}
.y1a9{bottom:529.743975px;}
.y158{bottom:529.756350px;}
.y19d{bottom:529.760325px;}
.y56{bottom:529.768575px;}
.y23e{bottom:530.009325px;}
.y1c{bottom:532.766100px;}
.y1f9{bottom:533.296500px;}
.y220{bottom:533.659200px;}
.y23d{bottom:544.407450px;}
.y1b{bottom:545.510100px;}
.y10d{bottom:547.307475px;}
.y144{bottom:547.311450px;}
.y176{bottom:547.313025px;}
.y1ca{bottom:547.313400px;}
.y9a{bottom:547.315575px;}
.ybd{bottom:547.317000px;}
.y37{bottom:547.319700px;}
.yf3{bottom:547.328100px;}
.y11a{bottom:547.332075px;}
.ydf{bottom:547.336350px;}
.y76{bottom:547.340325px;}
.y157{bottom:547.348725px;}
.y19c{bottom:547.352700px;}
.y55{bottom:547.360950px;}
.y1f8{bottom:549.615000px;}
.y21f{bottom:549.976200px;}
.y1a{bottom:558.254100px;}
.y23c{bottom:558.805575px;}
.y10c{bottom:564.899850px;}
.y143{bottom:564.903825px;}
.y1c9{bottom:564.905775px;}
.y99{bottom:564.907950px;}
.ybc{bottom:564.909375px;}
.y36{bottom:564.912075px;}
.yf2{bottom:564.920475px;}
.y175{bottom:564.924075px;}
.y119{bottom:564.924450px;}
.yde{bottom:564.928725px;}
.y75{bottom:564.932700px;}
.y156{bottom:564.941100px;}
.y19b{bottom:564.945075px;}
.y54{bottom:564.953325px;}
.y1f7{bottom:565.936500px;}
.y21e{bottom:566.297700px;}
.y19{bottom:570.998100px;}
.y23b{bottom:581.997450px;}
.y1f6{bottom:582.253500px;}
.y98{bottom:582.500325px;}
.y35{bottom:582.504450px;}
.yf1{bottom:582.512850px;}
.y1c8{bottom:582.514650px;}
.y174{bottom:582.516450px;}
.y10b{bottom:582.516825px;}
.ydd{bottom:582.521100px;}
.y74{bottom:582.525075px;}
.ybb{bottom:582.529575px;}
.y155{bottom:582.533475px;}
.y19a{bottom:582.537450px;}
.y53{bottom:582.545700px;}
.y21d{bottom:582.619200px;}
.y18{bottom:583.742100px;}
.y17{bottom:596.486100px;}
.y1f5{bottom:598.575000px;}
.y21c{bottom:598.937850px;}
.y97{bottom:600.092700px;}
.y34{bottom:600.096825px;}
.yf0{bottom:600.105225px;}
.y1c7{bottom:600.107025px;}
.y173{bottom:600.108825px;}
.y10a{bottom:600.109200px;}
.ydc{bottom:600.113475px;}
.y73{bottom:600.117450px;}
.yba{bottom:600.121950px;}
.y154{bottom:600.125850px;}
.y199{bottom:600.129825px;}
.y52{bottom:600.138075px;}
.y16{bottom:609.230100px;}
.y1f4{bottom:614.896500px;}
.y21b{bottom:615.259350px;}
.y1b4{bottom:617.693325px;}
.yef{bottom:617.697600px;}
.y1c6{bottom:617.699400px;}
.y172{bottom:617.701200px;}
.y96{bottom:617.701575px;}
.ydb{bottom:617.705850px;}
.y72{bottom:617.709825px;}
.yb9{bottom:617.714325px;}
.y153{bottom:617.718225px;}
.y198{bottom:617.722200px;}
.y33{bottom:617.730450px;}
.y15{bottom:621.974100px;}
.y21a{bottom:631.577850px;}
.y1b3{bottom:635.285700px;}
.yee{bottom:635.289975px;}
.y1c5{bottom:635.291775px;}
.y95{bottom:635.293950px;}
.yda{bottom:635.298225px;}
.y71{bottom:635.302200px;}
.yb8{bottom:635.306700px;}
.y152{bottom:635.310600px;}
.y197{bottom:635.314575px;}
.y32{bottom:635.322825px;}
.y219{bottom:647.899350px;}
.y1f3{bottom:648.811200px;}
.yed{bottom:652.882350px;}
.y171{bottom:652.885950px;}
.y94{bottom:652.886325px;}
.yd9{bottom:652.890600px;}
.y70{bottom:652.894575px;}
.y142{bottom:652.898700px;}
.yb7{bottom:652.899075px;}
.y151{bottom:652.902975px;}
.y196{bottom:652.906950px;}
.y31{bottom:652.915200px;}
.y23a{bottom:664.216200px;}
.y218{bottom:664.219200px;}
.y109{bottom:670.478700px;}
.yd8{bottom:670.482975px;}
.y6f{bottom:670.486950px;}
.y141{bottom:670.491075px;}
.yb6{bottom:670.491450px;}
.y150{bottom:670.495350px;}
.y93{bottom:670.499325px;}
.y30{bottom:670.507575px;}
.y14{bottom:678.710100px;}
.y217{bottom:680.537700px;}
.yd7{bottom:688.075350px;}
.y6e{bottom:688.079325px;}
.y140{bottom:688.083450px;}
.yb5{bottom:688.083825px;}
.y14f{bottom:688.087725px;}
.y92{bottom:688.091700px;}
.y2f{bottom:688.099950px;}
.y13{bottom:693.112950px;}
.y216{bottom:696.859200px;}
.y13f{bottom:705.675825px;}
.y14e{bottom:705.680100px;}
.y91{bottom:705.684075px;}
.y2e{bottom:705.692325px;}
.y1f2{bottom:713.171700px;}
.y215{bottom:713.176200px;}
.y12{bottom:717.082950px;}
.y13e{bottom:723.268200px;}
.yb4{bottom:723.268575px;}
.y14d{bottom:723.272475px;}
.y90{bottom:723.276450px;}
.y2d{bottom:723.284700px;}
.y1f1{bottom:729.493200px;}
.y214{bottom:729.497700px;}
.y11{bottom:736.267950px;}
.y14c{bottom:740.864850px;}
.y8f{bottom:740.868825px;}
.y2c{bottom:740.877075px;}
.y1f0{bottom:745.814700px;}
.y213{bottom:745.819200px;}
.y8e{bottom:758.461200px;}
.y2b{bottom:758.469450px;}
.y1ef{bottom:762.136200px;}
.y10{bottom:775.312950px;}
.y2a{bottom:776.061825px;}
.y1ee{bottom:778.457700px;}
.y29{bottom:793.654200px;}
.yf{bottom:794.497950px;}
.y1ed{bottom:794.779200px;}
.y28{bottom:832.327200px;}
.yc{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.ye{bottom:867.883800px;}
.yd{bottom:881.383800px;}
.h6{height:30.912000px;}
.h11{height:31.341064px;}
.h8{height:35.328000px;}
.h18{height:37.957500px;}
.h4{height:38.388000px;}
.h5{height:41.130000px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.h7{height:44.496000px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h12{height:47.091064px;}
.h19{height:48.667500px;}
.h2{height:51.127441px;}
.h16{height:51.844482px;}
.h15{height:52.472900px;}
.h17{height:52.478900px;}
.ha{height:53.173828px;}
.hb{height:53.818359px;}
.h14{height:54.443848px;}
.h9{height:55.839844px;}
.h10{height:57.854736px;}
.h13{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xd{left:93.543300px;}
.x1{left:107.148450px;}
.x13{left:112.775175px;}
.x10{left:114.803100px;}
.xf{left:119.055150px;}
.x17{left:123.305250px;}
.x11{left:128.409450px;}
.x3{left:132.661500px;}
.x16{left:136.911525px;}
.x15{left:164.699400px;}
.x4{left:167.306100px;}
.x5{left:172.931100px;}
.x14{left:185.964150px;}
.x7{left:202.513800px;}
.x8{left:258.778800px;}
.x9{left:272.548800px;}
.xc{left:295.507950px;}
.x12{left:306.746550px;}
.xa{left:407.218800px;}
.x6{left:415.535250px;}
.xb{left:424.318800px;}
.xe{left:441.449400px;}
.x2{left:520.665750px;}
@media print{
.v3{vertical-align:-17.200000pt;}
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.579467pt;}
.v1{vertical-align:17.053867pt;}
.ls38{letter-spacing:-0.933333pt;}
.ls37{letter-spacing:-0.886667pt;}
.ls53{letter-spacing:-0.860000pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls36{letter-spacing:-0.576333pt;}
.ls17{letter-spacing:-0.573333pt;}
.ls5b{letter-spacing:-0.520000pt;}
.ls20{letter-spacing:-0.466667pt;}
.ls54{letter-spacing:-0.458667pt;}
.ls1b{letter-spacing:-0.372667pt;}
.ls1f{letter-spacing:-0.303333pt;}
.lse{letter-spacing:-0.286667pt;}
.ls19{letter-spacing:-0.229333pt;}
.ls1a{letter-spacing:-0.149067pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.ls15{letter-spacing:0.006133pt;}
.ls5d{letter-spacing:0.006267pt;}
.ls6a{letter-spacing:0.007467pt;}
.ls5c{letter-spacing:0.008000pt;}
.ls67{letter-spacing:0.008533pt;}
.ls68{letter-spacing:0.008800pt;}
.ls5f{letter-spacing:0.009067pt;}
.ls57{letter-spacing:0.030333pt;}
.ls4e{letter-spacing:0.037267pt;}
.ls5{letter-spacing:0.037333pt;}
.ls3a{letter-spacing:0.040800pt;}
.ls7{letter-spacing:0.042667pt;}
.ls1e{letter-spacing:0.046667pt;}
.ls66{letter-spacing:0.052000pt;}
.ls13{letter-spacing:0.057333pt;}
.lsc{letter-spacing:0.062133pt;}
.ls30{letter-spacing:0.074533pt;}
.ls47{letter-spacing:0.091000pt;}
.lsd{letter-spacing:0.093333pt;}
.lsa{letter-spacing:0.114667pt;}
.ls24{letter-spacing:0.140000pt;}
.ls69{letter-spacing:0.141067pt;}
.ls4{letter-spacing:0.149333pt;}
.ls2c{letter-spacing:0.151667pt;}
.ls58{letter-spacing:0.156000pt;}
.ls2a{letter-spacing:0.172000pt;}
.ls1c{letter-spacing:0.182000pt;}
.ls41{letter-spacing:0.186333pt;}
.ls2d{letter-spacing:0.186667pt;}
.ls5e{letter-spacing:0.208000pt;}
.ls26{letter-spacing:0.212333pt;}
.ls35{letter-spacing:0.223600pt;}
.lsf{letter-spacing:0.229333pt;}
.ls12{letter-spacing:0.233333pt;}
.ls6c{letter-spacing:0.260000pt;}
.ls2f{letter-spacing:0.260867pt;}
.ls6b{letter-spacing:0.268267pt;}
.ls18{letter-spacing:0.280000pt;}
.ls16{letter-spacing:0.286667pt;}
.ls56{letter-spacing:0.298133pt;}
.ls2{letter-spacing:0.298667pt;}
.ls45{letter-spacing:0.303333pt;}
.ls5a{letter-spacing:0.312000pt;}
.ls1d{letter-spacing:0.326667pt;}
.ls3{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.344000pt;}
.ls71{letter-spacing:0.364000pt;}
.ls25{letter-spacing:0.372667pt;}
.ls14{letter-spacing:0.401333pt;}
.ls72{letter-spacing:0.416000pt;}
.ls10{letter-spacing:0.432267pt;}
.ls73{letter-spacing:0.447733pt;}
.ls74{letter-spacing:0.456533pt;}
.ls4b{letter-spacing:0.458667pt;}
.ls32{letter-spacing:0.466667pt;}
.ls75{letter-spacing:0.468000pt;}
.ls46{letter-spacing:0.513333pt;}
.ls55{letter-spacing:0.516000pt;}
.ls4d{letter-spacing:0.559000pt;}
.ls21{letter-spacing:0.573333pt;}
.ls52{letter-spacing:0.576333pt;}
.ls3c{letter-spacing:0.596267pt;}
.ls4f{letter-spacing:0.606667pt;}
.ls3b{letter-spacing:0.630667pt;}
.ls11{letter-spacing:0.653333pt;}
.ls78{letter-spacing:0.676000pt;}
.ls76{letter-spacing:0.677867pt;}
.ls77{letter-spacing:0.685867pt;}
.ls2b{letter-spacing:0.688000pt;}
.ls44{letter-spacing:0.745333pt;}
.ls6f{letter-spacing:0.768000pt;}
.ls6e{letter-spacing:0.776000pt;}
.ls70{letter-spacing:0.780000pt;}
.ls28{letter-spacing:0.802667pt;}
.ls6d{letter-spacing:0.832000pt;}
.ls22{letter-spacing:0.860000pt;}
.ls59{letter-spacing:0.884000pt;}
.ls51{letter-spacing:0.886667pt;}
.ls39{letter-spacing:0.917333pt;}
.ls50{letter-spacing:0.933333pt;}
.ls31{letter-spacing:1.001000pt;}
.ls65{letter-spacing:1.018400pt;}
.ls63{letter-spacing:1.027200pt;}
.ls27{letter-spacing:1.032000pt;}
.ls62{letter-spacing:1.033500pt;}
.ls61{letter-spacing:1.035733pt;}
.ls64{letter-spacing:1.040000pt;}
.ls49{letter-spacing:1.089333pt;}
.ls3d{letter-spacing:1.146667pt;}
.ls4a{letter-spacing:1.204000pt;}
.ls3f{letter-spacing:1.261333pt;}
.ls4c{letter-spacing:1.304333pt;}
.ls43{letter-spacing:1.318667pt;}
.ls79{letter-spacing:1.380533pt;}
.ls7a{letter-spacing:1.388800pt;}
.ls7b{letter-spacing:1.404000pt;}
.ls3e{letter-spacing:1.433333pt;}
.ls29{letter-spacing:1.490667pt;}
.ls2e{letter-spacing:1.540000pt;}
.ls40{letter-spacing:1.605333pt;}
.ls42{letter-spacing:1.662667pt;}
.ls48{letter-spacing:2.006667pt;}
.ls23{letter-spacing:5.332000pt;}
.ls0{letter-spacing:9.594667pt;}
.ls1{letter-spacing:10.640000pt;}
.ls6{letter-spacing:11.120000pt;}
.ls34{letter-spacing:11.666667pt;}
.ls60{letter-spacing:27.820000pt;}
.wsf2{word-spacing:-16.340000pt;}
.ws93{word-spacing:-14.906667pt;}
.wse5{word-spacing:-14.620000pt;}
.ws57{word-spacing:-14.333333pt;}
.ws11c{word-spacing:-13.000000pt;}
.wsc2{word-spacing:-11.993333pt;}
.wsc3{word-spacing:-11.666667pt;}
.ws3c{word-spacing:-11.333333pt;}
.ws11e{word-spacing:-10.783500pt;}
.ws110{word-spacing:-10.750000pt;}
.wsf3{word-spacing:-10.621000pt;}
.wse6{word-spacing:-10.062000pt;}
.wsde{word-spacing:-9.912933pt;}
.wsf4{word-spacing:-9.875667pt;}
.ws11d{word-spacing:-9.750000pt;}
.wsc0{word-spacing:-9.689333pt;}
.ws10c{word-spacing:-9.614800pt;}
.wscc{word-spacing:-9.577533pt;}
.wsd8{word-spacing:-9.540267pt;}
.ws101{word-spacing:-9.503000pt;}
.wscd{word-spacing:-9.391200pt;}
.wsf8{word-spacing:-9.353933pt;}
.ws19{word-spacing:-9.316667pt;}
.ws69{word-spacing:-9.167600pt;}
.wsce{word-spacing:-8.584333pt;}
.ws0{word-spacing:-8.288000pt;}
.wsfc{word-spacing:-8.159667pt;}
.wse7{word-spacing:-7.886667pt;}
.wsa2{word-spacing:-7.795667pt;}
.ws6a{word-spacing:-7.765333pt;}
.wsc1{word-spacing:-7.735000pt;}
.wse8{word-spacing:-7.674333pt;}
.ws10d{word-spacing:-7.613667pt;}
.ws3d{word-spacing:-7.583333pt;}
.ws1{word-spacing:-7.541333pt;}
.ws81{word-spacing:-7.280000pt;}
.wsd9{word-spacing:-7.007000pt;}
.wsee{word-spacing:-1.605333pt;}
.wsf0{word-spacing:-0.860000pt;}
.wsc7{word-spacing:-0.802667pt;}
.wsef{word-spacing:-0.745333pt;}
.wsff{word-spacing:-0.606667pt;}
.wsb4{word-spacing:-0.573333pt;}
.ws76{word-spacing:-0.401333pt;}
.ws9a{word-spacing:-0.372667pt;}
.ws132{word-spacing:-0.364000pt;}
.wse2{word-spacing:-0.286667pt;}
.wsc9{word-spacing:-0.233333pt;}
.ws10a{word-spacing:-0.229333pt;}
.wsd7{word-spacing:-0.186667pt;}
.wsea{word-spacing:-0.186333pt;}
.wsf5{word-spacing:-0.114667pt;}
.ws36{word-spacing:-0.093333pt;}
.ws3{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.046667pt;}
.wsd1{word-spacing:0.057333pt;}
.ws104{word-spacing:0.093333pt;}
.ws137{word-spacing:0.104000pt;}
.ws5e{word-spacing:0.114667pt;}
.ws12f{word-spacing:0.156000pt;}
.ws40{word-spacing:0.172000pt;}
.ws78{word-spacing:0.186667pt;}
.ws136{word-spacing:0.208000pt;}
.ws116{word-spacing:0.229333pt;}
.ws8e{word-spacing:0.233333pt;}
.ws68{word-spacing:0.280000pt;}
.ws48{word-spacing:0.286667pt;}
.ws7b{word-spacing:0.326667pt;}
.ws1b{word-spacing:0.344000pt;}
.ws6f{word-spacing:0.372667pt;}
.ws2b{word-spacing:0.373333pt;}
.wsf{word-spacing:0.384000pt;}
.wsd3{word-spacing:0.401333pt;}
.ws7f{word-spacing:0.420000pt;}
.ws45{word-spacing:0.458667pt;}
.wsa9{word-spacing:0.466667pt;}
.ws9e{word-spacing:0.516000pt;}
.ws11a{word-spacing:0.520000pt;}
.wscb{word-spacing:0.560000pt;}
.ws62{word-spacing:0.573333pt;}
.wse{word-spacing:0.597333pt;}
.ws89{word-spacing:0.606667pt;}
.ws9b{word-spacing:0.630667pt;}
.ws44{word-spacing:0.688000pt;}
.wsd6{word-spacing:0.700000pt;}
.ws129{word-spacing:0.728000pt;}
.ws115{word-spacing:0.745333pt;}
.ws6{word-spacing:0.746667pt;}
.ws12a{word-spacing:0.780000pt;}
.ws3b{word-spacing:0.793333pt;}
.ws58{word-spacing:0.802667pt;}
.wsd{word-spacing:0.853333pt;}
.wsfa{word-spacing:0.860000pt;}
.ws139{word-spacing:0.884000pt;}
.wsa1{word-spacing:0.886667pt;}
.ws106{word-spacing:0.917333pt;}
.ws10{word-spacing:0.938667pt;}
.wsd2{word-spacing:0.974667pt;}
.wsa3{word-spacing:1.032000pt;}
.ws33{word-spacing:1.073333pt;}
.ws6c{word-spacing:1.089333pt;}
.wsb8{word-spacing:1.120000pt;}
.ws131{word-spacing:1.144000pt;}
.wsfe{word-spacing:1.146667pt;}
.ws105{word-spacing:1.166667pt;}
.ws98{word-spacing:1.204000pt;}
.ws52{word-spacing:1.213333pt;}
.wsbf{word-spacing:1.260000pt;}
.wsd0{word-spacing:1.261333pt;}
.wsae{word-spacing:1.306667pt;}
.ws46{word-spacing:1.318667pt;}
.ws109{word-spacing:1.353333pt;}
.ws10b{word-spacing:1.376000pt;}
.ws35{word-spacing:1.400000pt;}
.ws16{word-spacing:1.408000pt;}
.wsfb{word-spacing:1.433333pt;}
.wsab{word-spacing:1.446667pt;}
.ws11{word-spacing:1.450667pt;}
.ws12c{word-spacing:1.456000pt;}
.ws47{word-spacing:1.490667pt;}
.ws7c{word-spacing:1.493333pt;}
.ws18{word-spacing:1.536000pt;}
.wsbe{word-spacing:1.540000pt;}
.ws20{word-spacing:1.548000pt;}
.ws126{word-spacing:1.560000pt;}
.ws7{word-spacing:1.605333pt;}
.ws13{word-spacing:1.621333pt;}
.wsad{word-spacing:1.633333pt;}
.ws77{word-spacing:1.662667pt;}
.wse4{word-spacing:1.680000pt;}
.ws140{word-spacing:1.716000pt;}
.ws72{word-spacing:1.720000pt;}
.ws91{word-spacing:1.773333pt;}
.wsdb{word-spacing:1.777333pt;}
.wsa8{word-spacing:1.820000pt;}
.ws95{word-spacing:1.834667pt;}
.ws34{word-spacing:1.866667pt;}
.ws9f{word-spacing:1.892000pt;}
.ws122{word-spacing:1.924000pt;}
.wsa4{word-spacing:1.949333pt;}
.wsba{word-spacing:1.960000pt;}
.ws30{word-spacing:2.006667pt;}
.ws87{word-spacing:2.053333pt;}
.wsfd{word-spacing:2.064000pt;}
.ws108{word-spacing:2.100000pt;}
.ws1e{word-spacing:2.121333pt;}
.ws12d{word-spacing:2.132000pt;}
.ws2e{word-spacing:2.146667pt;}
.ws5f{word-spacing:2.178667pt;}
.ws13c{word-spacing:2.184000pt;}
.ws103{word-spacing:2.193333pt;}
.ws26{word-spacing:2.236000pt;}
.ws2d{word-spacing:2.240000pt;}
.ws50{word-spacing:2.286667pt;}
.wse1{word-spacing:2.293333pt;}
.ws2a{word-spacing:2.333333pt;}
.ws138{word-spacing:2.340000pt;}
.ws4f{word-spacing:2.350667pt;}
.ws5{word-spacing:2.352000pt;}
.ws66{word-spacing:2.380000pt;}
.ws12{word-spacing:2.389333pt;}
.ws85{word-spacing:2.408000pt;}
.wsd5{word-spacing:2.426667pt;}
.ws11f{word-spacing:2.444000pt;}
.ws4c{word-spacing:2.465333pt;}
.ws31{word-spacing:2.473333pt;}
.ws53{word-spacing:2.520000pt;}
.ws83{word-spacing:2.522667pt;}
.ws130{word-spacing:2.548000pt;}
.wsf6{word-spacing:2.580000pt;}
.ws15{word-spacing:2.602667pt;}
.ws79{word-spacing:2.613333pt;}
.ws4d{word-spacing:2.637333pt;}
.ws107{word-spacing:2.694667pt;}
.ws121{word-spacing:2.704000pt;}
.ws88{word-spacing:2.706667pt;}
.ws4b{word-spacing:2.752000pt;}
.ws7d{word-spacing:2.753333pt;}
.ws123{word-spacing:2.756000pt;}
.wsb{word-spacing:2.773333pt;}
.ws39{word-spacing:2.800000pt;}
.ws4e{word-spacing:2.809333pt;}
.ws54{word-spacing:2.846667pt;}
.ws6d{word-spacing:2.866667pt;}
.ws4{word-spacing:2.874667pt;}
.wsbb{word-spacing:2.893333pt;}
.ws142{word-spacing:2.912000pt;}
.wsb3{word-spacing:2.924000pt;}
.wse3{word-spacing:2.940000pt;}
.ws133{word-spacing:2.964000pt;}
.ws6b{word-spacing:2.981333pt;}
.wsac{word-spacing:2.986667pt;}
.ws125{word-spacing:3.016000pt;}
.wsaf{word-spacing:3.033333pt;}
.wsc6{word-spacing:3.038667pt;}
.ws13f{word-spacing:3.068000pt;}
.ws8d{word-spacing:3.080000pt;}
.ws61{word-spacing:3.096000pt;}
.ws112{word-spacing:3.120000pt;}
.wsf1{word-spacing:3.126667pt;}
.wsd4{word-spacing:3.173333pt;}
.ws5a{word-spacing:3.210667pt;}
.wsb9{word-spacing:3.266667pt;}
.wsec{word-spacing:3.268000pt;}
.ws3a{word-spacing:3.313333pt;}
.wsdd{word-spacing:3.325333pt;}
.ws32{word-spacing:3.360000pt;}
.ws43{word-spacing:3.382667pt;}
.ws13d{word-spacing:3.432000pt;}
.ws84{word-spacing:3.440000pt;}
.wsb7{word-spacing:3.453333pt;}
.ws73{word-spacing:3.497333pt;}
.ws67{word-spacing:3.500000pt;}
.ws56{word-spacing:3.546667pt;}
.ws27{word-spacing:3.554667pt;}
.ws12e{word-spacing:3.588000pt;}
.ws97{word-spacing:3.612000pt;}
.wsbd{word-spacing:3.640000pt;}
.ws5b{word-spacing:3.669333pt;}
.ws114{word-spacing:3.686667pt;}
.wsa7{word-spacing:3.726667pt;}
.wsaa{word-spacing:3.780000pt;}
.ws6e{word-spacing:3.784000pt;}
.ws135{word-spacing:3.796000pt;}
.ws1f{word-spacing:3.841333pt;}
.ws64{word-spacing:3.873333pt;}
.ws9c{word-spacing:3.956000pt;}
.ws10f{word-spacing:3.966667pt;}
.wsc{word-spacing:4.010667pt;}
.ws1d{word-spacing:4.013333pt;}
.ws70{word-spacing:4.070667pt;}
.wsb6{word-spacing:4.106667pt;}
.ws141{word-spacing:4.108000pt;}
.wsed{word-spacing:4.128000pt;}
.ws8{word-spacing:4.144000pt;}
.ws80{word-spacing:4.153333pt;}
.wsb0{word-spacing:4.185333pt;}
.ws65{word-spacing:4.200000pt;}
.ws3f{word-spacing:4.242667pt;}
.wsb5{word-spacing:4.246667pt;}
.wsb1{word-spacing:4.300000pt;}
.ws127{word-spacing:4.316000pt;}
.ws8f{word-spacing:4.340000pt;}
.ws82{word-spacing:4.357333pt;}
.ws2f{word-spacing:4.386667pt;}
.ws63{word-spacing:4.414667pt;}
.ws55{word-spacing:4.433333pt;}
.ws59{word-spacing:4.472000pt;}
.ws7e{word-spacing:4.526667pt;}
.ws117{word-spacing:4.529333pt;}
.ws37{word-spacing:4.573333pt;}
.ws124{word-spacing:4.576000pt;}
.ws10e{word-spacing:4.586667pt;}
.ws100{word-spacing:4.620000pt;}
.ws119{word-spacing:4.628000pt;}
.ws24{word-spacing:4.644000pt;}
.ws12b{word-spacing:4.680000pt;}
.wsf9{word-spacing:4.701333pt;}
.ws23{word-spacing:4.758667pt;}
.ws8c{word-spacing:4.760000pt;}
.wsbc{word-spacing:4.806667pt;}
.ws96{word-spacing:4.816000pt;}
.ws99{word-spacing:4.873333pt;}
.ws111{word-spacing:4.930667pt;}
.ws8a{word-spacing:4.946667pt;}
.ws94{word-spacing:4.988000pt;}
.ws2c{word-spacing:4.993333pt;}
.ws92{word-spacing:5.040000pt;}
.ws74{word-spacing:5.045333pt;}
.ws13b{word-spacing:5.096000pt;}
.ws60{word-spacing:5.102667pt;}
.ws13e{word-spacing:5.148000pt;}
.wsdf{word-spacing:5.160000pt;}
.ws7a{word-spacing:5.180000pt;}
.wsa6{word-spacing:5.217333pt;}
.ws17{word-spacing:5.248000pt;}
.ws71{word-spacing:5.274667pt;}
.wsa0{word-spacing:5.332000pt;}
.ws14{word-spacing:5.333333pt;}
.ws38{word-spacing:5.366667pt;}
.ws25{word-spacing:5.389333pt;}
.ws5d{word-spacing:5.446667pt;}
.ws9d{word-spacing:5.504000pt;}
.ws86{word-spacing:5.561333pt;}
.ws13a{word-spacing:5.564000pt;}
.ws51{word-spacing:5.600000pt;}
.ws4a{word-spacing:5.618667pt;}
.ws144{word-spacing:5.646667pt;}
.ws118{word-spacing:5.676000pt;}
.wscf{word-spacing:5.733333pt;}
.ws90{word-spacing:5.786667pt;}
.wsb2{word-spacing:5.790667pt;}
.ws29{word-spacing:5.833333pt;}
.wsc5{word-spacing:5.848000pt;}
.wsca{word-spacing:5.880000pt;}
.ws75{word-spacing:5.905333pt;}
.wsa5{word-spacing:5.962667pt;}
.ws134{word-spacing:5.980000pt;}
.ws22{word-spacing:6.020000pt;}
.ws102{word-spacing:6.077333pt;}
.ws128{word-spacing:6.240000pt;}
.wse0{word-spacing:6.249333pt;}
.wseb{word-spacing:6.306667pt;}
.ws11b{word-spacing:6.344000pt;}
.wse9{word-spacing:6.364000pt;}
.ws41{word-spacing:6.421333pt;}
.ws120{word-spacing:6.448000pt;}
.ws21{word-spacing:6.478667pt;}
.ws143{word-spacing:6.486667pt;}
.ws113{word-spacing:6.500000pt;}
.ws5c{word-spacing:6.536000pt;}
.wsf7{word-spacing:6.650667pt;}
.wsc4{word-spacing:6.708000pt;}
.ws28{word-spacing:6.765333pt;}
.wsc8{word-spacing:6.880000pt;}
.ws49{word-spacing:6.937333pt;}
.wsdc{word-spacing:6.994667pt;}
.wsda{word-spacing:7.052000pt;}
.ws42{word-spacing:7.109333pt;}
.ws1c{word-spacing:7.166667pt;}
.wsa{word-spacing:9.472000pt;}
.ws1a{word-spacing:11.333333pt;}
.ws9{word-spacing:11.861333pt;}
.ws3e{word-spacing:1021.845333pt;}
.ws2{word-spacing:1616.672000pt;}
._5{margin-left:-13.226667pt;}
._3{margin-left:-8.288000pt;}
._c{margin-left:-2.316400pt;}
._1{margin-left:-0.969952pt;}
._8{width:0.896000pt;}
._d{width:1.857400pt;}
._b{width:2.753333pt;}
._a{width:4.106667pt;}
._7{width:5.833333pt;}
._0{width:7.504000pt;}
._9{width:8.819733pt;}
._2{width:10.378667pt;}
._4{width:11.861333pt;}
._6{width:772.964800pt;}
.fs9{font-size:30.333333pt;}
.fsc{font-size:33.800000pt;}
.fs8{font-size:37.266667pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:39.000000pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:43.000000pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fsb{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.yb{bottom:87.512933pt;}
.ya{bottom:98.180933pt;}
.yb3{bottom:110.695133pt;}
.y108{bottom:110.705133pt;}
.y8d{bottom:110.710133pt;}
.yd6{bottom:110.715133pt;}
.y165{bottom:110.720133pt;}
.y6d{bottom:110.725133pt;}
.y51{bottom:110.735133pt;}
.y1ec{bottom:111.165333pt;}
.y212{bottom:111.372000pt;}
.y239{bottom:111.694400pt;}
.y9{bottom:112.627067pt;}
.y125{bottom:114.240133pt;}
.y193{bottom:115.117333pt;}
.yb2{bottom:123.493467pt;}
.y124{bottom:123.498467pt;}
.y107{bottom:123.503467pt;}
.y8c{bottom:123.508467pt;}
.yd5{bottom:123.513467pt;}
.y164{bottom:123.518467pt;}
.y6c{bottom:123.523467pt;}
.y14b{bottom:123.528467pt;}
.y8{bottom:125.180400pt;}
.y1eb{bottom:125.673333pt;}
.y211{bottom:125.880000pt;}
.y238{bottom:126.202400pt;}
.y50{bottom:127.033467pt;}
.y4f{bottom:136.246800pt;}
.yb1{bottom:136.291800pt;}
.y123{bottom:136.296800pt;}
.y106{bottom:136.301800pt;}
.y8b{bottom:136.306800pt;}
.yd4{bottom:136.311800pt;}
.y163{bottom:136.316800pt;}
.y6b{bottom:136.321800pt;}
.y192{bottom:136.437333pt;}
.y7{bottom:139.628400pt;}
.y13d{bottom:139.826800pt;}
.y1ea{bottom:140.181333pt;}
.y210{bottom:140.388000pt;}
.y237{bottom:140.710400pt;}
.y4e{bottom:149.045133pt;}
.yb0{bottom:149.090133pt;}
.y122{bottom:149.095133pt;}
.y105{bottom:149.100133pt;}
.y8a{bottom:149.105133pt;}
.yd3{bottom:149.110133pt;}
.y162{bottom:149.115133pt;}
.y6{bottom:149.568400pt;}
.y6a{bottom:152.620133pt;}
.y1e9{bottom:154.689333pt;}
.y20f{bottom:154.889333pt;}
.y236{bottom:155.215733pt;}
.y4d{bottom:161.843467pt;}
.y1c4{bottom:161.873467pt;}
.yaf{bottom:161.888467pt;}
.y69{bottom:161.893467pt;}
.y104{bottom:161.898467pt;}
.y89{bottom:161.903467pt;}
.yd2{bottom:161.908467pt;}
.y5{bottom:163.285333pt;}
.y161{bottom:165.413467pt;}
.y1e8{bottom:169.197333pt;}
.y20e{bottom:169.397333pt;}
.y235{bottom:169.723733pt;}
.y4{bottom:173.225333pt;}
.y4c{bottom:174.641800pt;}
.y1c3{bottom:174.671800pt;}
.yae{bottom:174.686800pt;}
.y68{bottom:174.691800pt;}
.y103{bottom:174.696800pt;}
.y88{bottom:174.701800pt;}
.yd1{bottom:178.206800pt;}
.y3{bottom:183.164000pt;}
.y20d{bottom:183.905333pt;}
.y234{bottom:184.226400pt;}
.y4b{bottom:187.440133pt;}
.yd0{bottom:187.455133pt;}
.y1c2{bottom:187.470133pt;}
.yad{bottom:187.485133pt;}
.y67{bottom:187.490133pt;}
.y102{bottom:187.495133pt;}
.y13c{bottom:189.324867pt;}
.y1dd{bottom:189.385133pt;}
.y87{bottom:191.000133pt;}
.y20c{bottom:198.413333pt;}
.y233{bottom:198.734400pt;}
.y1e7{bottom:199.343733pt;}
.y118{bottom:200.208467pt;}
.y4a{bottom:200.238467pt;}
.ycf{bottom:200.253467pt;}
.y1c1{bottom:200.268467pt;}
.y195{bottom:200.278467pt;}
.yac{bottom:200.283467pt;}
.y66{bottom:200.288467pt;}
.y86{bottom:203.793467pt;}
.y13b{bottom:204.962533pt;}
.y170{bottom:204.973533pt;}
.y188{bottom:204.989467pt;}
.y1dc{bottom:205.022800pt;}
.y20b{bottom:212.921333pt;}
.y117{bottom:213.006800pt;}
.y49{bottom:213.036800pt;}
.yce{bottom:213.051800pt;}
.y12b{bottom:213.061800pt;}
.y160{bottom:213.066800pt;}
.y101{bottom:213.076800pt;}
.yab{bottom:213.081800pt;}
.y232{bottom:213.242400pt;}
.y65{bottom:216.586800pt;}
.y13a{bottom:220.600200pt;}
.y16f{bottom:220.611200pt;}
.y187{bottom:220.627133pt;}
.y1db{bottom:220.660467pt;}
.y116{bottom:225.805133pt;}
.y48{bottom:225.835133pt;}
.ycd{bottom:225.850133pt;}
.y12a{bottom:225.860133pt;}
.y15f{bottom:225.865133pt;}
.y121{bottom:225.870133pt;}
.y64{bottom:225.875133pt;}
.yec{bottom:225.880133pt;}
.y20a{bottom:227.425333pt;}
.y231{bottom:227.750400pt;}
.yaa{bottom:229.380133pt;}
.y139{bottom:236.237867pt;}
.y16e{bottom:236.248867pt;}
.y186{bottom:236.264800pt;}
.y1da{bottom:236.298133pt;}
.y115{bottom:238.603467pt;}
.y47{bottom:238.633467pt;}
.ycc{bottom:238.648467pt;}
.y129{bottom:238.658467pt;}
.y15e{bottom:238.663467pt;}
.ya9{bottom:238.668467pt;}
.y63{bottom:238.673467pt;}
.y209{bottom:241.933333pt;}
.y100{bottom:242.173467pt;}
.y230{bottom:242.253200pt;}
.y1e6{bottom:245.213200pt;}
.y114{bottom:251.401800pt;}
.yff{bottom:251.421800pt;}
.y46{bottom:251.431800pt;}
.ycb{bottom:251.446800pt;}
.y128{bottom:251.456800pt;}
.y15d{bottom:251.461800pt;}
.y138{bottom:251.875533pt;}
.y16d{bottom:251.886533pt;}
.y1a8{bottom:251.887800pt;}
.y85{bottom:251.901067pt;}
.y185{bottom:251.902467pt;}
.y14a{bottom:251.904733pt;}
.y1d9{bottom:251.935800pt;}
.ya8{bottom:254.966800pt;}
.y208{bottom:256.441333pt;}
.y22f{bottom:256.761200pt;}
.y1e5{bottom:259.721200pt;}
.y113{bottom:264.200133pt;}
.yfe{bottom:264.220133pt;}
.y45{bottom:264.230133pt;}
.yca{bottom:264.245133pt;}
.y1b6{bottom:264.250133pt;}
.ya7{bottom:264.255133pt;}
.y1c0{bottom:264.260133pt;}
.y16c{bottom:267.524200pt;}
.y1a7{bottom:267.525467pt;}
.y1b2{bottom:267.535067pt;}
.y84{bottom:267.538733pt;}
.y184{bottom:267.540133pt;}
.y149{bottom:267.542400pt;}
.y137{bottom:267.549733pt;}
.yeb{bottom:267.560733pt;}
.y1d8{bottom:267.573467pt;}
.y15c{bottom:267.760133pt;}
.y207{bottom:270.942667pt;}
.y22e{bottom:271.269200pt;}
.y1e4{bottom:274.229200pt;}
.y112{bottom:276.998467pt;}
.yfd{bottom:277.018467pt;}
.y44{bottom:277.028467pt;}
.yc9{bottom:277.043467pt;}
.y1b5{bottom:277.048467pt;}
.ya6{bottom:280.553467pt;}
.y16b{bottom:283.161867pt;}
.y1a6{bottom:283.163133pt;}
.y1b1{bottom:283.172733pt;}
.y83{bottom:283.176400pt;}
.y183{bottom:283.177800pt;}
.y148{bottom:283.180067pt;}
.y62{bottom:283.183733pt;}
.y136{bottom:283.187400pt;}
.yea{bottom:283.198400pt;}
.y1d7{bottom:283.211133pt;}
.y206{bottom:285.450667pt;}
.y22d{bottom:285.777200pt;}
.y1e3{bottom:288.737200pt;}
.y111{bottom:289.796800pt;}
.yfc{bottom:289.816800pt;}
.y43{bottom:289.826800pt;}
.ya5{bottom:289.841800pt;}
.y127{bottom:293.346800pt;}
.y16a{bottom:298.799533pt;}
.y1b0{bottom:298.810400pt;}
.y82{bottom:298.814067pt;}
.y182{bottom:298.815467pt;}
.y120{bottom:298.817733pt;}
.y61{bottom:298.821400pt;}
.y135{bottom:298.825067pt;}
.ye9{bottom:298.836067pt;}
.y1d6{bottom:298.848800pt;}
.y1a5{bottom:298.869400pt;}
.y205{bottom:299.958667pt;}
.y22c{bottom:300.279733pt;}
.y110{bottom:302.595133pt;}
.yfb{bottom:302.615133pt;}
.y42{bottom:302.625133pt;}
.y1e2{bottom:303.245200pt;}
.ya4{bottom:306.140133pt;}
.y15b{bottom:314.440733pt;}
.y1af{bottom:314.448067pt;}
.y81{bottom:314.451733pt;}
.y181{bottom:314.453133pt;}
.y11f{bottom:314.455400pt;}
.y60{bottom:314.459067pt;}
.y134{bottom:314.462733pt;}
.y204{bottom:314.466667pt;}
.ye8{bottom:314.473733pt;}
.y169{bottom:314.477400pt;}
.y191{bottom:314.481200pt;}
.y1d5{bottom:314.486467pt;}
.y1a4{bottom:314.507067pt;}
.y22b{bottom:314.787733pt;}
.yc8{bottom:315.393467pt;}
.yfa{bottom:315.413467pt;}
.y41{bottom:315.423467pt;}
.y1e1{bottom:317.753200pt;}
.y1bf{bottom:320.166733pt;}
.y27{bottom:326.273867pt;}
.yc7{bottom:328.191800pt;}
.yf9{bottom:328.211800pt;}
.y40{bottom:328.221800pt;}
.y203{bottom:328.974667pt;}
.y22a{bottom:329.295733pt;}
.y15a{bottom:330.078400pt;}
.y1ae{bottom:330.085733pt;}
.y80{bottom:330.089400pt;}
.y180{bottom:330.090800pt;}
.y11e{bottom:330.093067pt;}
.y5f{bottom:330.096733pt;}
.y133{bottom:330.100400pt;}
.ye7{bottom:330.111400pt;}
.y168{bottom:330.115067pt;}
.y190{bottom:330.118867pt;}
.y1d4{bottom:330.124133pt;}
.y1a3{bottom:330.144733pt;}
.y1e0{bottom:332.261200pt;}
.y1be{bottom:335.811733pt;}
.yc6{bottom:340.990133pt;}
.yf8{bottom:341.010133pt;}
.y26{bottom:343.276533pt;}
.y202{bottom:343.480000pt;}
.y229{bottom:343.803733pt;}
.y3f{bottom:344.520133pt;}
.y1ad{bottom:345.723400pt;}
.y7f{bottom:345.727067pt;}
.y17f{bottom:345.728467pt;}
.y11d{bottom:345.730733pt;}
.y5e{bottom:345.734400pt;}
.y132{bottom:345.738067pt;}
.ye6{bottom:345.749067pt;}
.y167{bottom:345.752733pt;}
.y18f{bottom:345.756533pt;}
.y1d3{bottom:345.761800pt;}
.ya3{bottom:345.763733pt;}
.y1a2{bottom:345.782400pt;}
.y1bd{bottom:351.449400pt;}
.yc5{bottom:353.788467pt;}
.y3e{bottom:353.803467pt;}
.yf7{bottom:353.808467pt;}
.y25{bottom:354.604533pt;}
.y201{bottom:357.988000pt;}
.y228{bottom:358.309200pt;}
.y7e{bottom:361.364733pt;}
.y11c{bottom:361.368400pt;}
.y5d{bottom:361.372067pt;}
.y131{bottom:361.375733pt;}
.ye5{bottom:361.386733pt;}
.y166{bottom:361.390400pt;}
.y18e{bottom:361.394200pt;}
.y17e{bottom:361.399133pt;}
.y1d2{bottom:361.399467pt;}
.ya2{bottom:361.401400pt;}
.y1a1{bottom:361.420067pt;}
.y1df{bottom:362.473733pt;}
.y24{bottom:365.932533pt;}
.yc4{bottom:366.586800pt;}
.y3d{bottom:366.601800pt;}
.y1bc{bottom:367.087067pt;}
.y246{bottom:368.732733pt;}
.yf6{bottom:370.106800pt;}
.y200{bottom:372.492000pt;}
.y227{bottom:372.817200pt;}
.y11b{bottom:377.006067pt;}
.y5c{bottom:377.009733pt;}
.y130{bottom:377.013400pt;}
.ye4{bottom:377.024400pt;}
.y7d{bottom:377.028067pt;}
.y18d{bottom:377.031867pt;}
.y17d{bottom:377.036800pt;}
.y1d1{bottom:377.037133pt;}
.ya1{bottom:377.039067pt;}
.y1a0{bottom:377.057733pt;}
.y23{bottom:377.260533pt;}
.yc3{bottom:379.385133pt;}
.y245{bottom:381.531067pt;}
.y3c{bottom:382.900133pt;}
.y1ff{bottom:387.000000pt;}
.y226{bottom:387.322533pt;}
.y22{bottom:388.588533pt;}
.yc2{bottom:392.183467pt;}
.y147{bottom:392.643733pt;}
.y5b{bottom:392.647400pt;}
.y12f{bottom:392.651067pt;}
.ye3{bottom:392.662067pt;}
.y7c{bottom:392.665733pt;}
.y18c{bottom:392.669533pt;}
.y17c{bottom:392.674467pt;}
.y1d0{bottom:392.674800pt;}
.ya0{bottom:392.676733pt;}
.y19f{bottom:392.695400pt;}
.y244{bottom:394.329400pt;}
.y1bb{bottom:398.373133pt;}
.y21{bottom:399.916533pt;}
.y1fe{bottom:401.508000pt;}
.y225{bottom:401.830533pt;}
.yc1{bottom:404.981800pt;}
.y243{bottom:407.127733pt;}
.y194{bottom:408.285067pt;}
.y12e{bottom:408.288733pt;}
.y5a{bottom:408.296200pt;}
.ye2{bottom:408.299733pt;}
.y7b{bottom:408.303400pt;}
.y18b{bottom:408.307200pt;}
.y17b{bottom:408.312133pt;}
.y1cf{bottom:408.312467pt;}
.y9f{bottom:408.314400pt;}
.y1de{bottom:408.354733pt;}
.y20{bottom:411.244533pt;}
.y1ba{bottom:412.582133pt;}
.y1fd{bottom:416.012000pt;}
.y224{bottom:416.335733pt;}
.yc0{bottom:417.780133pt;}
.y242{bottom:419.926067pt;}
.y1f{bottom:422.572533pt;}
.y1ac{bottom:423.926400pt;}
.y3b{bottom:423.930067pt;}
.y59{bottom:423.933867pt;}
.ye1{bottom:423.937400pt;}
.y7a{bottom:423.941067pt;}
.y18a{bottom:423.944867pt;}
.y17a{bottom:423.949800pt;}
.y1ce{bottom:423.950133pt;}
.y9e{bottom:423.952067pt;}
.y19e{bottom:423.970733pt;}
.y12d{bottom:423.992400pt;}
.y1b9{bottom:426.791133pt;}
.y1fc{bottom:430.520000pt;}
.y223{bottom:430.843733pt;}
.y241{bottom:432.724400pt;}
.y58{bottom:439.571533pt;}
.y3a{bottom:439.575067pt;}
.y79{bottom:439.578733pt;}
.y189{bottom:439.582533pt;}
.y179{bottom:439.587467pt;}
.y1cd{bottom:439.587800pt;}
.y9d{bottom:439.589733pt;}
.y1ab{bottom:439.608200pt;}
.y12c{bottom:439.630067pt;}
.y1b8{bottom:441.000133pt;}
.y1fb{bottom:445.028000pt;}
.y1e{bottom:445.239200pt;}
.y222{bottom:445.347733pt;}
.y240{bottom:445.522733pt;}
.y126{bottom:455.209200pt;}
.y39{bottom:455.212733pt;}
.y78{bottom:455.216400pt;}
.y10f{bottom:455.220200pt;}
.y146{bottom:455.223733pt;}
.y178{bottom:455.225133pt;}
.y1cc{bottom:455.225467pt;}
.y9c{bottom:455.227400pt;}
.ybf{bottom:455.228667pt;}
.yf5{bottom:455.238533pt;}
.y1aa{bottom:455.245867pt;}
.y159{bottom:455.256867pt;}
.y57{bottom:455.267733pt;}
.y1d{bottom:456.567200pt;}
.y23f{bottom:458.321067pt;}
.y1fa{bottom:459.533333pt;}
.y221{bottom:459.855733pt;}
.ye0{bottom:470.850400pt;}
.y77{bottom:470.854067pt;}
.y10e{bottom:470.857867pt;}
.y145{bottom:470.861400pt;}
.y177{bottom:470.862800pt;}
.y1cb{bottom:470.863133pt;}
.y9b{bottom:470.865067pt;}
.ybe{bottom:470.866333pt;}
.y38{bottom:470.868733pt;}
.yf4{bottom:470.876200pt;}
.y1b7{bottom:470.879733pt;}
.y1a9{bottom:470.883533pt;}
.y158{bottom:470.894533pt;}
.y19d{bottom:470.898067pt;}
.y56{bottom:470.905400pt;}
.y23e{bottom:471.119400pt;}
.y1c{bottom:473.569867pt;}
.y1f9{bottom:474.041333pt;}
.y220{bottom:474.363733pt;}
.y23d{bottom:483.917733pt;}
.y1b{bottom:484.897867pt;}
.y10d{bottom:486.495533pt;}
.y144{bottom:486.499067pt;}
.y176{bottom:486.500467pt;}
.y1ca{bottom:486.500800pt;}
.y9a{bottom:486.502733pt;}
.ybd{bottom:486.504000pt;}
.y37{bottom:486.506400pt;}
.yf3{bottom:486.513867pt;}
.y11a{bottom:486.517400pt;}
.ydf{bottom:486.521200pt;}
.y76{bottom:486.524733pt;}
.y157{bottom:486.532200pt;}
.y19c{bottom:486.535733pt;}
.y55{bottom:486.543067pt;}
.y1f8{bottom:488.546667pt;}
.y21f{bottom:488.867733pt;}
.y1a{bottom:496.225867pt;}
.y23c{bottom:496.716067pt;}
.y10c{bottom:502.133200pt;}
.y143{bottom:502.136733pt;}
.y1c9{bottom:502.138467pt;}
.y99{bottom:502.140400pt;}
.ybc{bottom:502.141667pt;}
.y36{bottom:502.144067pt;}
.yf2{bottom:502.151533pt;}
.y175{bottom:502.154733pt;}
.y119{bottom:502.155067pt;}
.yde{bottom:502.158867pt;}
.y75{bottom:502.162400pt;}
.y156{bottom:502.169867pt;}
.y19b{bottom:502.173400pt;}
.y54{bottom:502.180733pt;}
.y1f7{bottom:503.054667pt;}
.y21e{bottom:503.375733pt;}
.y19{bottom:507.553867pt;}
.y23b{bottom:517.331067pt;}
.y1f6{bottom:517.558667pt;}
.y98{bottom:517.778067pt;}
.y35{bottom:517.781733pt;}
.yf1{bottom:517.789200pt;}
.y1c8{bottom:517.790800pt;}
.y174{bottom:517.792400pt;}
.y10b{bottom:517.792733pt;}
.ydd{bottom:517.796533pt;}
.y74{bottom:517.800067pt;}
.ybb{bottom:517.804067pt;}
.y155{bottom:517.807533pt;}
.y19a{bottom:517.811067pt;}
.y53{bottom:517.818400pt;}
.y21d{bottom:517.883733pt;}
.y18{bottom:518.881867pt;}
.y17{bottom:530.209867pt;}
.y1f5{bottom:532.066667pt;}
.y21c{bottom:532.389200pt;}
.y97{bottom:533.415733pt;}
.y34{bottom:533.419400pt;}
.yf0{bottom:533.426867pt;}
.y1c7{bottom:533.428467pt;}
.y173{bottom:533.430067pt;}
.y10a{bottom:533.430400pt;}
.ydc{bottom:533.434200pt;}
.y73{bottom:533.437733pt;}
.yba{bottom:533.441733pt;}
.y154{bottom:533.445200pt;}
.y199{bottom:533.448733pt;}
.y52{bottom:533.456067pt;}
.y16{bottom:541.537867pt;}
.y1f4{bottom:546.574667pt;}
.y21b{bottom:546.897200pt;}
.y1b4{bottom:549.060733pt;}
.yef{bottom:549.064533pt;}
.y1c6{bottom:549.066133pt;}
.y172{bottom:549.067733pt;}
.y96{bottom:549.068067pt;}
.ydb{bottom:549.071867pt;}
.y72{bottom:549.075400pt;}
.yb9{bottom:549.079400pt;}
.y153{bottom:549.082867pt;}
.y198{bottom:549.086400pt;}
.y33{bottom:549.093733pt;}
.y15{bottom:552.865867pt;}
.y21a{bottom:561.402533pt;}
.y1b3{bottom:564.698400pt;}
.yee{bottom:564.702200pt;}
.y1c5{bottom:564.703800pt;}
.y95{bottom:564.705733pt;}
.yda{bottom:564.709533pt;}
.y71{bottom:564.713067pt;}
.yb8{bottom:564.717067pt;}
.y152{bottom:564.720533pt;}
.y197{bottom:564.724067pt;}
.y32{bottom:564.731400pt;}
.y219{bottom:575.910533pt;}
.y1f3{bottom:576.721067pt;}
.yed{bottom:580.339867pt;}
.y171{bottom:580.343067pt;}
.y94{bottom:580.343400pt;}
.yd9{bottom:580.347200pt;}
.y70{bottom:580.350733pt;}
.y142{bottom:580.354400pt;}
.yb7{bottom:580.354733pt;}
.y151{bottom:580.358200pt;}
.y196{bottom:580.361733pt;}
.y31{bottom:580.369067pt;}
.y23a{bottom:590.414400pt;}
.y218{bottom:590.417067pt;}
.y109{bottom:595.981067pt;}
.yd8{bottom:595.984867pt;}
.y6f{bottom:595.988400pt;}
.y141{bottom:595.992067pt;}
.yb6{bottom:595.992400pt;}
.y150{bottom:595.995867pt;}
.y93{bottom:595.999400pt;}
.y30{bottom:596.006733pt;}
.y14{bottom:603.297867pt;}
.y217{bottom:604.922400pt;}
.yd7{bottom:611.622533pt;}
.y6e{bottom:611.626067pt;}
.y140{bottom:611.629733pt;}
.yb5{bottom:611.630067pt;}
.y14f{bottom:611.633533pt;}
.y92{bottom:611.637067pt;}
.y2f{bottom:611.644400pt;}
.y13{bottom:616.100400pt;}
.y216{bottom:619.430400pt;}
.y13f{bottom:627.267400pt;}
.y14e{bottom:627.271200pt;}
.y91{bottom:627.274733pt;}
.y2e{bottom:627.282067pt;}
.y1f2{bottom:633.930400pt;}
.y215{bottom:633.934400pt;}
.y12{bottom:637.407067pt;}
.y13e{bottom:642.905067pt;}
.yb4{bottom:642.905400pt;}
.y14d{bottom:642.908867pt;}
.y90{bottom:642.912400pt;}
.y2d{bottom:642.919733pt;}
.y1f1{bottom:648.438400pt;}
.y214{bottom:648.442400pt;}
.y11{bottom:654.460400pt;}
.y14c{bottom:658.546533pt;}
.y8f{bottom:658.550067pt;}
.y2c{bottom:658.557400pt;}
.y1f0{bottom:662.946400pt;}
.y213{bottom:662.950400pt;}
.y8e{bottom:674.187733pt;}
.y2b{bottom:674.195067pt;}
.y1ef{bottom:677.454400pt;}
.y10{bottom:689.167067pt;}
.y2a{bottom:689.832733pt;}
.y1ee{bottom:691.962400pt;}
.y29{bottom:705.470400pt;}
.yf{bottom:706.220400pt;}
.y1ed{bottom:706.470400pt;}
.y28{bottom:739.846400pt;}
.yc{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.ye{bottom:771.452267pt;}
.yd{bottom:783.452267pt;}
.h6{height:27.477333pt;}
.h11{height:27.858724pt;}
.h8{height:31.402667pt;}
.h18{height:33.740000pt;}
.h4{height:34.122667pt;}
.h5{height:36.560000pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.h7{height:39.552000pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h12{height:41.858724pt;}
.h19{height:43.260000pt;}
.h2{height:45.446615pt;}
.h16{height:46.083984pt;}
.h15{height:46.642578pt;}
.h17{height:46.647911pt;}
.ha{height:47.265625pt;}
.hb{height:47.838542pt;}
.h14{height:48.394531pt;}
.h9{height:49.635417pt;}
.h10{height:51.426432pt;}
.h13{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xd{left:83.149600pt;}
.x1{left:95.243067pt;}
.x13{left:100.244600pt;}
.x10{left:102.047200pt;}
.xf{left:105.826800pt;}
.x17{left:109.604667pt;}
.x11{left:114.141733pt;}
.x3{left:117.921333pt;}
.x16{left:121.699133pt;}
.x15{left:146.399467pt;}
.x4{left:148.716533pt;}
.x5{left:153.716533pt;}
.x14{left:165.301467pt;}
.x7{left:180.012267pt;}
.x8{left:230.025600pt;}
.x9{left:242.265600pt;}
.xc{left:262.673733pt;}
.x12{left:272.663600pt;}
.xa{left:361.972267pt;}
.x6{left:369.364667pt;}
.xb{left:377.172267pt;}
.xe{left:392.399467pt;}
.x2{left:462.814000pt;}
}




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