
    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_d7c188007c583f107371fd5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0609a26440e9c4d62bb8b0ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008301;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_9c91703397d47acdc19d72bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020000;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_1d11693aebfde03427b0eae7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950000;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_cdd43547eee9ecd5df5b1d9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_4ad7052deaa091270da18a56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_df3a41b32adac9fc706779c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_6bced450b24c1901ff7f7110.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.856934;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_8575347bd1f19c9c4fad1b95.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_936653d74664e36a44f1a50b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_94fbdd6e00c278f295cc2e02.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a2a7912e5dfff651e02f9a20.woff2')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_aaa7294975b7087bf708819a.woff2')format("woff");}.fff{font-family:fff;line-height:0.851074;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_7a7ab6de2f69167af34ae92c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_cb6c43792f21056fbbed7418.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c78dfd7852eb312a7f3b0faf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4e{letter-spacing:-8.280000px;}
.ls4d{letter-spacing:-7.617600px;}
.lse{letter-spacing:-6.570720px;}
.ls6e{letter-spacing:-5.166720px;}
.ls5d{letter-spacing:-4.835520px;}
.ls6c{letter-spacing:-3.444480px;}
.ls49{letter-spacing:-3.245760px;}
.ls26{letter-spacing:-2.517120px;}
.ls71{letter-spacing:-2.252160px;}
.ls60{letter-spacing:-2.053440px;}
.ls44{letter-spacing:-1.920960px;}
.ls6b{letter-spacing:-1.656000px;}
.ls56{letter-spacing:-1.523520px;}
.ls5e{letter-spacing:-1.192320px;}
.ls55{letter-spacing:-1.059840px;}
.ls1c{letter-spacing:-0.993600px;}
.ls29{letter-spacing:-0.927360px;}
.ls62{letter-spacing:-0.879858px;}
.ls1b{letter-spacing:-0.794880px;}
.ls69{letter-spacing:-0.662400px;}
.ls5c{letter-spacing:-0.596160px;}
.ls66{letter-spacing:-0.589680px;}
.ls28{letter-spacing:-0.529920px;}
.ls1f{letter-spacing:-0.463680px;}
.ls5f{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.345600px;}
.ls38{letter-spacing:-0.336960px;}
.ls1d{letter-spacing:-0.331200px;}
.ls19{letter-spacing:-0.264960px;}
.ls32{letter-spacing:-0.252720px;}
.lsb{letter-spacing:-0.207360px;}
.ls1e{letter-spacing:-0.198720px;}
.ls7{letter-spacing:-0.168480px;}
.ls5{letter-spacing:-0.156240px;}
.lsa{letter-spacing:-0.138240px;}
.ls20{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.084240px;}
.ls1a{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.066240px;}
.ls9{letter-spacing:0.084240px;}
.ls43{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.138240px;}
.ls4{letter-spacing:0.156240px;}
.ls45{letter-spacing:0.168480px;}
.ls21{letter-spacing:0.198720px;}
.ls6{letter-spacing:0.252720px;}
.ls15{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.276480px;}
.ls5a{letter-spacing:0.291456px;}
.ls18{letter-spacing:0.311328px;}
.ls3{letter-spacing:0.324864px;}
.ls3a{letter-spacing:0.331200px;}
.ls6f{letter-spacing:0.331320px;}
.ls4c{letter-spacing:0.337824px;}
.ls10{letter-spacing:0.345600px;}
.ls1{letter-spacing:0.368640px;}
.ls59{letter-spacing:0.370944px;}
.ls34{letter-spacing:0.377568px;}
.ls25{letter-spacing:0.423936px;}
.ls54{letter-spacing:0.463680px;}
.ls67{letter-spacing:0.470304px;}
.ls5b{letter-spacing:0.529920px;}
.ls2b{letter-spacing:0.927360px;}
.ls64{letter-spacing:0.940608px;}
.ls6d{letter-spacing:1.192320px;}
.ls46{letter-spacing:1.212192px;}
.ls42{letter-spacing:1.258560px;}
.ls35{letter-spacing:1.430784px;}
.ls2d{letter-spacing:1.656000px;}
.ls48{letter-spacing:2.384640px;}
.ls13{letter-spacing:3.113280px;}
.ls63{letter-spacing:3.808800px;}
.ls2f{letter-spacing:3.841920px;}
.ls4b{letter-spacing:5.299200px;}
.ls53{letter-spacing:5.961600px;}
.ls4a{letter-spacing:7.418880px;}
.ls37{letter-spacing:8.876160px;}
.ls41{letter-spacing:10.333440px;}
.ls14{letter-spacing:11.062080px;}
.ls39{letter-spacing:11.724480px;}
.ls16{letter-spacing:12.525984px;}
.ls65{letter-spacing:13.181760px;}
.ls23{letter-spacing:13.864032px;}
.ls61{letter-spacing:13.910400px;}
.ls24{letter-spacing:15.367680px;}
.ls47{letter-spacing:18.944640px;}
.ls17{letter-spacing:19.540800px;}
.ls27{letter-spacing:19.673280px;}
.ls11{letter-spacing:21.693600px;}
.ls12{letter-spacing:21.859200px;}
.ls2c{letter-spacing:70.678080px;}
.ls2a{letter-spacing:75.049920px;}
.ls2e{letter-spacing:76.440960px;}
.ls30{letter-spacing:96.644160px;}
.ls50{letter-spacing:157.173120px;}
.ls6a{letter-spacing:162.221760px;}
.ls36{letter-spacing:177.493680px;}
.ls70{letter-spacing:197.527680px;}
.ls58{letter-spacing:203.970240px;}
.ls52{letter-spacing:205.410240px;}
.ls51{letter-spacing:205.444800px;}
.ls33{letter-spacing:246.570480px;}
.ls3f{letter-spacing:314.881920px;}
.ls3c{letter-spacing:467.545248px;}
.ls40{letter-spacing:479.047680px;}
.ls3e{letter-spacing:610.047360px;}
.ls3d{letter-spacing:610.070400px;}
.ls68{letter-spacing:845.553600px;}
.ls31{letter-spacing:845.585280px;}
.ls57{letter-spacing:895.812480px;}
.ls4f{letter-spacing:1086.010560px;}
.ls3b{letter-spacing:1099.704960px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsac{word-spacing:-65.776320px;}
.ws7{word-spacing:-24.288480px;}
.ws34{word-spacing:-19.673280px;}
.ws96{word-spacing:-17.471466px;}
.ws88{word-spacing:-17.353440px;}
.ws7a{word-spacing:-17.269200px;}
.ws2{word-spacing:-17.184960px;}
.ws1{word-spacing:-17.100720px;}
.ws42{word-spacing:-17.016480px;}
.wsa2{word-spacing:-16.848000px;}
.ws45{word-spacing:-16.763760px;}
.ws9a{word-spacing:-16.511040px;}
.wsa7{word-spacing:-16.162560px;}
.wsad{word-spacing:-15.235200px;}
.wsaa{word-spacing:-14.970240px;}
.wsa6{word-spacing:-14.572800px;}
.wsa9{word-spacing:-14.506560px;}
.ws5{word-spacing:-14.169600px;}
.wsab{word-spacing:-14.042880px;}
.ws86{word-spacing:-13.910400px;}
.ws3{word-spacing:-13.893120px;}
.ws4{word-spacing:-13.824000px;}
.ws46{word-spacing:-13.777920px;}
.ws11{word-spacing:-13.711680px;}
.ws6{word-spacing:-13.685760px;}
.ws17{word-spacing:-13.645440px;}
.ws79{word-spacing:-13.579200px;}
.ws57{word-spacing:-13.512960px;}
.wsf{word-spacing:-13.446720px;}
.ws13{word-spacing:-13.380480px;}
.ws16{word-spacing:-13.314240px;}
.ws41{word-spacing:-13.248000px;}
.ws12{word-spacing:-13.181760px;}
.ws14{word-spacing:-13.115520px;}
.ws87{word-spacing:-13.049280px;}
.ws85{word-spacing:-12.850560px;}
.ws10{word-spacing:-12.651840px;}
.ws64{word-spacing:-12.519360px;}
.ws15{word-spacing:-12.453120px;}
.wsa8{word-spacing:-12.386880px;}
.ws4a{word-spacing:-11.724480px;}
.wsb9{word-spacing:-11.194560px;}
.wsb8{word-spacing:-8.280000px;}
.wsa0{word-spacing:-5.961600px;}
.ws6b{word-spacing:-3.841920px;}
.ws90{word-spacing:-3.113280px;}
.wsaf{word-spacing:-2.517120px;}
.ws91{word-spacing:-2.450880px;}
.ws58{word-spacing:-2.384640px;}
.ws71{word-spacing:-2.119680px;}
.ws8e{word-spacing:-1.854720px;}
.ws93{word-spacing:-1.788480px;}
.ws4f{word-spacing:-1.722240px;}
.ws22{word-spacing:-1.656000px;}
.ws9f{word-spacing:-1.059840px;}
.ws19{word-spacing:-0.927360px;}
.ws61{word-spacing:-0.842400px;}
.ws62{word-spacing:-0.758160px;}
.wsa5{word-spacing:-0.728640px;}
.ws8d{word-spacing:-0.662400px;}
.ws8f{word-spacing:-0.596160px;}
.ws9{word-spacing:-0.336960px;}
.ws5a{word-spacing:-0.331200px;}
.ws8{word-spacing:-0.312480px;}
.ws28{word-spacing:-0.264960px;}
.ws36{word-spacing:-0.198720px;}
.ws5b{word-spacing:-0.132480px;}
.ws2d{word-spacing:-0.084240px;}
.ws55{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.066240px;}
.wsa{word-spacing:0.084240px;}
.ws2b{word-spacing:0.132480px;}
.ws2e{word-spacing:0.198720px;}
.wsd{word-spacing:0.207360px;}
.wsb{word-spacing:0.252720px;}
.ws21{word-spacing:0.264960px;}
.ws43{word-spacing:0.331200px;}
.ws27{word-spacing:0.397440px;}
.ws44{word-spacing:0.421200px;}
.ws18{word-spacing:0.463680px;}
.ws37{word-spacing:0.529920px;}
.wsc{word-spacing:0.552960px;}
.wsa4{word-spacing:0.662400px;}
.ws24{word-spacing:0.794880px;}
.ws99{word-spacing:0.879858px;}
.ws39{word-spacing:0.927360px;}
.ws26{word-spacing:0.993600px;}
.ws80{word-spacing:1.059840px;}
.ws2f{word-spacing:1.126080px;}
.ws30{word-spacing:1.192320px;}
.ws95{word-spacing:1.391040px;}
.ws8a{word-spacing:1.457280px;}
.ws9d{word-spacing:1.589760px;}
.wsae{word-spacing:1.656000px;}
.ws98{word-spacing:1.759716px;}
.ws9c{word-spacing:1.788480px;}
.wsa1{word-spacing:1.854720px;}
.ws29{word-spacing:1.920960px;}
.ws97{word-spacing:2.053440px;}
.ws2a{word-spacing:2.119680px;}
.ws63{word-spacing:2.450880px;}
.ws31{word-spacing:2.517120px;}
.ws75{word-spacing:2.583360px;}
.ws54{word-spacing:2.649600px;}
.ws9e{word-spacing:2.715840px;}
.ws6c{word-spacing:3.245760px;}
.ws76{word-spacing:3.312000px;}
.ws1d{word-spacing:3.378240px;}
.wsb0{word-spacing:3.444480px;}
.ws1e{word-spacing:3.908160px;}
.ws72{word-spacing:4.040640px;}
.ws5d{word-spacing:4.106880px;}
.wsa3{word-spacing:4.636800px;}
.ws7e{word-spacing:4.769280px;}
.ws4c{word-spacing:4.835520px;}
.ws9b{word-spacing:5.034240px;}
.wsb7{word-spacing:5.166720px;}
.wsbb{word-spacing:5.365440px;}
.ws74{word-spacing:5.431680px;}
.ws53{word-spacing:5.497920px;}
.ws5c{word-spacing:5.564160px;}
.ws7f{word-spacing:5.630400px;}
.ws7c{word-spacing:5.895360px;}
.ws47{word-spacing:6.027840px;}
.ws7b{word-spacing:6.160320px;}
.ws38{word-spacing:6.226560px;}
.ws65{word-spacing:6.292800px;}
.ws77{word-spacing:6.425280px;}
.wse{word-spacing:6.570720px;}
.ws5e{word-spacing:6.955200px;}
.ws6e{word-spacing:7.617600px;}
.ws6f{word-spacing:7.683840px;}
.ws78{word-spacing:8.280000px;}
.ws70{word-spacing:8.346240px;}
.ws52{word-spacing:8.412480px;}
.ws59{word-spacing:8.942400px;}
.ws56{word-spacing:9.074880px;}
.ws4e{word-spacing:9.141120px;}
.ws4d{word-spacing:9.207360px;}
.ws8c{word-spacing:9.671040px;}
.ws35{word-spacing:9.869760px;}
.ws6a{word-spacing:10.267200px;}
.ws5f{word-spacing:10.532160px;}
.ws1f{word-spacing:10.598400px;}
.ws67{word-spacing:10.929600px;}
.ws92{word-spacing:11.128320px;}
.ws20{word-spacing:11.260800px;}
.ws89{word-spacing:11.856960px;}
.ws94{word-spacing:11.923200px;}
.ws49{word-spacing:11.989440px;}
.ws66{word-spacing:12.651840px;}
.ws23{word-spacing:12.718080px;}
.ws3a{word-spacing:13.446720px;}
.ws40{word-spacing:14.175360px;}
.ws3e{word-spacing:14.374080px;}
.ws8b{word-spacing:14.440320px;}
.ws3c{word-spacing:14.705280px;}
.ws3d{word-spacing:14.904000px;}
.ws3b{word-spacing:15.433920px;}
.ws3f{word-spacing:15.632640px;}
.ws33{word-spacing:16.162560px;}
.ws32{word-spacing:16.361280px;}
.ws7d{word-spacing:16.560000px;}
.ws84{word-spacing:16.824960px;}
.wsb5{word-spacing:16.891200px;}
.ws83{word-spacing:17.023680px;}
.ws73{word-spacing:17.686080px;}
.ws4b{word-spacing:17.752320px;}
.wsbc{word-spacing:18.679680px;}
.ws68{word-spacing:19.143360px;}
.ws69{word-spacing:19.209600px;}
.ws6d{word-spacing:19.408320px;}
.ws25{word-spacing:19.938240px;}
.wsb6{word-spacing:20.666880px;}
.wsb4{word-spacing:21.594240px;}
.ws1c{word-spacing:21.925440px;}
.ws1b{word-spacing:22.124160px;}
.ws48{word-spacing:22.786560px;}
.wsb1{word-spacing:23.912640px;}
.ws51{word-spacing:24.906240px;}
.ws50{word-spacing:24.972480px;}
.ws81{word-spacing:27.092160px;}
.ws82{word-spacing:27.158400px;}
.ws60{word-spacing:31.397760px;}
.wsb3{word-spacing:42.261120px;}
.wsba{word-spacing:49.481280px;}
.ws2c{word-spacing:91.676160px;}
.wsb2{word-spacing:124.994880px;}
._f{margin-left:-21.229920px;}
._d{margin-left:-19.905120px;}
._10{margin-left:-18.858528px;}
._1b{margin-left:-16.630488px;}
._17{margin-left:-14.766624px;}
._16{margin-left:-13.626216px;}
._1a{margin-left:-12.519360px;}
._14{margin-left:-10.963800px;}
._15{margin-left:-8.995824px;}
._4{margin-left:-7.767504px;}
._5{margin-left:-6.213888px;}
._8{margin-left:-5.000040px;}
._2{margin-left:-3.734136px;}
._0{margin-left:-2.390472px;}
._1{margin-left:-1.109304px;}
._3{width:1.053432px;}
._7{width:2.069856px;}
._c{width:3.729528px;}
._b{width:5.477832px;}
._6{width:6.899256px;}
._21{width:8.396496px;}
._1f{width:9.472320px;}
._19{width:10.658016px;}
._18{width:11.737728px;}
._22{width:14.725728px;}
._11{width:15.837192px;}
._20{width:16.858008px;}
._1c{width:18.699336px;}
._e{width:19.825632px;}
._27{width:21.196800px;}
._24{width:22.443336px;}
._1e{width:23.939136px;}
._1d{width:25.323552px;}
._28{width:26.553816px;}
._a{width:46.791360px;}
._12{width:77.221656px;}
._2b{width:125.669520px;}
._25{width:162.403704px;}
._9{width:165.600000px;}
._23{width:184.749192px;}
._13{width:195.268320px;}
._2c{width:197.551080px;}
._26{width:221.850576px;}
._2a{width:316.873169px;}
._29{width:388.938725px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:62.847000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:120.240000px;}
.fs6{font-size:156.240000px;}
.y34{bottom:-132.660000px;}
.y33{bottom:-97.200000px;}
.y32{bottom:-62.640000px;}
.y3a{bottom:-34.740000px;}
.y31{bottom:-27.900000px;}
.y6a{bottom:-15.480000px;}
.y39{bottom:-9.180000px;}
.y2a{bottom:-4.680000px;}
.y40{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:5.400000px;}
.y43{bottom:13.680000px;}
.y1ae{bottom:14.401650px;}
.yd2{bottom:18.000000px;}
.y168{bottom:18.180000px;}
.y3f{bottom:27.000000px;}
.y42{bottom:44.100000px;}
.y3e{bottom:48.060000px;}
.y3d{bottom:48.420000px;}
.y36{bottom:54.000000px;}
.y35{bottom:62.820000px;}
.y5{bottom:66.525004px;}
.y41{bottom:66.780000px;}
.y38{bottom:74.695680px;}
.y118{bottom:91.594080px;}
.y37{bottom:95.760000px;}
.y18a{bottom:96.188400px;}
.y4{bottom:97.125005px;}
.y65{bottom:97.917840px;}
.y15f{bottom:98.678880px;}
.y1aa{bottom:99.507300px;}
.yf4{bottom:104.592960px;}
.yc6{bottom:104.623920px;}
.y1d2{bottom:104.766480px;}
.y1a7{bottom:107.025120px;}
.y117{bottom:111.747600px;}
.y225{bottom:115.675920px;}
.y189{bottom:116.176320px;}
.y15e{bottom:118.832400px;}
.y263{bottom:122.428080px;}
.yf3{bottom:124.746480px;}
.yc5{bottom:124.777440px;}
.y1f4{bottom:124.819920px;}
.y1d1{bottom:124.920000px;}
.y64{bottom:127.080000px;}
.y1a6{bottom:127.178640px;}
.y116{bottom:131.901120px;}
.y224{bottom:133.676640px;}
.y188{bottom:136.329840px;}
.y15d{bottom:138.985920px;}
.y21{bottom:139.264499px;}
.y1af{bottom:139.768950px;}
.y262{bottom:142.581600px;}
.y1f3{bottom:142.820640px;}
.yf2{bottom:144.900000px;}
.yc4{bottom:144.930960px;}
.y1a5{bottom:147.332160px;}
.y115{bottom:152.054640px;}
.y63{bottom:156.079440px;}
.y1a9{bottom:156.135450px;}
.y187{bottom:156.483360px;}
.y1d0{bottom:157.860000px;}
.y15c{bottom:159.139440px;}
.y223{bottom:160.669440px;}
.y1f2{bottom:160.821360px;}
.yc3{bottom:165.084480px;}
.y1a4{bottom:167.485680px;}
.y261{bottom:171.561600px;}
.yf1{bottom:175.140000px;}
.y62{bottom:176.232960px;}
.y186{bottom:176.636880px;}
.y222{bottom:178.670160px;}
.y15b{bottom:179.292960px;}
.y114{bottom:181.216800px;}
.yc2{bottom:185.238000px;}
.y1a3{bottom:187.639200px;}
.y1f1{bottom:187.814160px;}
.y30{bottom:189.900000px;}
.y260{bottom:191.715120px;}
.y61{bottom:196.386480px;}
.y2f{bottom:196.543080px;}
.y221{bottom:196.670880px;}
.y185{bottom:196.790400px;}
.y18{bottom:196.933500px;}
.y15a{bottom:199.446480px;}
.y113{bottom:201.370320px;}
.yc1{bottom:205.225920px;}
.y1f0{bottom:205.814880px;}
.y1a2{bottom:207.792720px;}
.yf0{bottom:208.661760px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y184{bottom:216.943920px;}
.y159{bottom:219.600000px;}
.y25f{bottom:220.877280px;}
.y112{bottom:221.358240px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y220{bottom:223.663680px;}
.y1ac{bottom:223.892700px;}
.yc0{bottom:225.379440px;}
.y60{bottom:225.548640px;}
.y1a1{bottom:227.780640px;}
.y2e{bottom:231.292080px;}
.y1ef{bottom:232.807680px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1cf{bottom:236.543760px;}
.y183{bottom:237.097440px;}
.yef{bottom:237.823920px;}
.y111{bottom:241.511760px;}
.y21f{bottom:241.664400px;}
.ybf{bottom:245.532960px;}
.y1a0{bottom:247.934160px;}
.y158{bottom:249.844860px;}
.y25e{bottom:250.039440px;}
.y1ad{bottom:250.078950px;}
.y1ee{bottom:250.808400px;}
.y5f{bottom:254.710800px;}
.y1ce{bottom:256.697280px;}
.y182{bottom:257.250960px;}
.yee{bottom:257.977440px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y110{bottom:261.665280px;}
.ybe{bottom:265.686480px;}
.y2d{bottom:265.851540px;}
.y19f{bottom:268.087680px;}
.y21e{bottom:268.657200px;}
.y25d{bottom:270.192960px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1cd{bottom:276.850800px;}
.y181{bottom:277.404480px;}
.y1ed{bottom:277.801200px;}
.yed{bottom:278.130960px;}
.y10f{bottom:281.818800px;}
.y5e{bottom:283.872960px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ybd{bottom:285.840000px;}
.y21d{bottom:286.657920px;}
.y157{bottom:287.100000px;}
.y19e{bottom:288.241200px;}
.y1ab{bottom:289.358550px;}
.y1ec{bottom:295.801920px;}
.y1cc{bottom:297.004320px;}
.y180{bottom:297.558000px;}
.yec{bottom:298.284480px;}
.y25c{bottom:299.355120px;}
.y2c{bottom:300.411000px;}
.y10e{bottom:301.972320px;}
.y3b{bottom:304.020000px;}
.y21c{bottom:304.658640px;}
.y19d{bottom:308.394720px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y5d{bottom:313.035120px;}
.y1eb{bottom:313.802640px;}
.ybc{bottom:316.084860px;}
.y1cb{bottom:316.992240px;}
.y17f{bottom:317.545920px;}
.yeb{bottom:318.438000px;}
.y25b{bottom:319.508640px;}
.y282{bottom:321.660000px;}
.y10d{bottom:322.125840px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y19c{bottom:328.548240px;}
.y21b{bottom:331.651440px;}
.y2b{bottom:335.160000px;}
.y1ca{bottom:337.145760px;}
.y17e{bottom:337.699440px;}
.y1ea{bottom:340.795440px;}
.y5c{bottom:342.197280px;}
.y10c{bottom:342.279360px;}
.yea{bottom:347.600160px;}
.yf{bottom:348.133500px;}
.y23b{bottom:348.559200px;}
.y25a{bottom:348.670800px;}
.y19b{bottom:348.701760px;}
.y21a{bottom:349.652160px;}
.y281{bottom:349.740000px;}
.ybb{bottom:353.340000px;}
.y1c9{bottom:357.299280px;}
.y17d{bottom:357.852960px;}
.y1e9{bottom:358.796160px;}
.y10b{bottom:362.432880px;}
.y156{bottom:365.631120px;}
.y219{bottom:367.652880px;}
.ye9{bottom:367.753680px;}
.y259{bottom:368.824320px;}
.y19a{bottom:368.855280px;}
.y280{bottom:369.900000px;}
.y99{bottom:370.980000px;}
.y5b{bottom:371.359440px;}
.y23a{bottom:376.644960px;}
.y1c8{bottom:377.452800px;}
.y17c{bottom:378.006480px;}
.y155{bottom:385.784640px;}
.y1e8{bottom:385.788960px;}
.ye{bottom:386.785499px;}
.ye8{bottom:387.741600px;}
.y199{bottom:389.008800px;}
.y10a{bottom:391.412880px;}
.y218{bottom:394.645680px;}
.y1c7{bottom:397.606320px;}
.y258{bottom:397.986480px;}
.y17b{bottom:398.160000px;}
.y27f{bottom:398.964240px;}
.y5a{bottom:400.339440px;}
.y98{bottom:402.132240px;}
.y1e7{bottom:403.789680px;}
.y154{bottom:405.772560px;}
.ye7{bottom:407.895120px;}
.yd{bottom:408.044999px;}
.y217{bottom:412.646400px;}
.y1c6{bottom:417.759840px;}
.y198{bottom:417.988800px;}
.y257{bottom:418.140000px;}
.y109{bottom:420.575040px;}
.y153{bottom:425.926080px;}
.y27e{bottom:427.944240px;}
.ye6{bottom:428.048640px;}
.y17a{bottom:428.400000px;}
.y59{bottom:429.501600px;}
.y216{bottom:430.647120px;}
.y1e6{bottom:430.782480px;}
.yba{bottom:431.966160px;}
.y97{bottom:433.265040px;}
.y1c5{bottom:437.913360px;}
.y239{bottom:439.639200px;}
.y108{bottom:445.050720px;}
.y152{bottom:446.079600px;}
.y197{bottom:447.150960px;}
.y256{bottom:447.296400px;}
.ye5{bottom:448.202160px;}
.y1e5{bottom:448.783200px;}
.yb9{bottom:452.119680px;}
.y27d{bottom:457.288560px;}
.y215{bottom:457.639920px;}
.y58{bottom:458.663760px;}
.y179{bottom:461.877840px;}
.y96{bottom:464.580000px;}
.y151{bottom:466.233120px;}
.y1c4{bottom:467.075520px;}
.y255{bottom:467.632080px;}
.ye4{bottom:468.355680px;}
.y196{bottom:471.626640px;}
.y1a8{bottom:471.721500px;}
.yb8{bottom:472.273200px;}
.y214{bottom:475.640640px;}
.y1e4{bottom:475.776000px;}
.y27c{bottom:477.442080px;}
.y238{bottom:484.632720px;}
.y132{bottom:485.884080px;}
.y150{bottom:486.386640px;}
.y1c3{bottom:487.229040px;}
.y254{bottom:487.620000px;}
.y57{bottom:487.825920px;}
.y178{bottom:491.040000px;}
.yb7{bottom:492.426720px;}
.y1e3{bottom:493.776720px;}
.ye3{bottom:497.517840px;}
.y213{bottom:502.633440px;}
.yc{bottom:502.864502px;}
.y14f{bottom:506.540160px;}
.y27b{bottom:506.604240px;}
.y1c2{bottom:507.382560px;}
.y95{bottom:507.602880px;}
.y237{bottom:511.625520px;}
.yb6{bottom:512.580240px;}
.y131{bottom:515.046240px;}
.y253{bottom:516.790800px;}
.y56{bottom:516.988080px;}
.y212{bottom:520.634160px;}
.y1e2{bottom:520.769520px;}
.yb{bottom:520.864502px;}
.ye2{bottom:526.680000px;}
.y14e{bottom:526.693680px;}
.y27a{bottom:526.757760px;}
.y1c1{bottom:527.370480px;}
.y236{bottom:529.626240px;}
.y177{bottom:529.920000px;}
.yb5{bottom:532.568160px;}
.y130{bottom:535.199760px;}
.y252{bottom:537.126480px;}
.y1e1{bottom:538.770240px;}
.ya{bottom:538.864499px;}
.y94{bottom:544.500000px;}
.y55{bottom:546.150240px;}
.y14d{bottom:546.847200px;}
.y279{bottom:546.911280px;}
.y1c0{bottom:547.524000px;}
.y211{bottom:547.626960px;}
.y176{bottom:550.080000px;}
.yb4{bottom:552.721680px;}
.y12f{bottom:555.353280px;}
.y235{bottom:556.619040px;}
.y9{bottom:556.864499px;}
.y251{bottom:557.280000px;}
.ye1{bottom:565.566480px;}
.y210{bottom:565.627680px;}
.y1e0{bottom:565.763040px;}
.y14c{bottom:567.000720px;}
.y1bf{bottom:567.677520px;}
.y175{bottom:570.240000px;}
.y234{bottom:574.619760px;}
.y54{bottom:575.312400px;}
.y12e{bottom:575.341200px;}
.y278{bottom:576.073440px;}
.y93{bottom:580.327200px;}
.yb3{bottom:581.883840px;}
.y1df{bottom:583.763760px;}
.ye0{bottom:585.720000px;}
.y250{bottom:586.446480px;}
.y14b{bottom:587.154240px;}
.y1be{bottom:587.831040px;}
.y20f{bottom:592.620480px;}
.y29{bottom:595.440000px;}
.y12d{bottom:595.494720px;}
.y277{bottom:596.226960px;}
.y82{bottom:599.268240px;}
.y1de{bottom:601.764480px;}
.yb2{bottom:602.037360px;}
.y53{bottom:604.474560px;}
.y24f{bottom:606.600000px;}
.y14a{bottom:607.142160px;}
.y1bd{bottom:607.984560px;}
.y174{bottom:608.436000px;}
.y20e{bottom:610.621200px;}
.y92{bottom:611.460000px;}
.y276{bottom:616.380480px;}
.y233{bottom:619.613280px;}
.yb1{bottom:622.190880px;}
.yde{bottom:623.880000px;}
.y12c{bottom:624.656880px;}
.y28{bottom:626.573880px;}
.y149{bottom:627.295680px;}
.y81{bottom:628.430400px;}
.y170{bottom:628.572960px;}
.y173{bottom:628.589520px;}
.y20d{bottom:628.621920px;}
.y1dd{bottom:628.757280px;}
.y52{bottom:633.636720px;}
.y24e{bottom:635.772960px;}
.y1bc{bottom:637.146720px;}
.y232{bottom:637.614000px;}
.yb0{bottom:642.344400px;}
.ydd{bottom:644.040000px;}
.y12b{bottom:644.810400px;}
.y275{bottom:645.360480px;}
.y8{bottom:645.510000px;}
.y20c{bottom:646.622640px;}
.y80{bottom:648.583920px;}
.y16f{bottom:648.726480px;}
.y172{bottom:648.743040px;}
.y91{bottom:654.660000px;}
.y1dc{bottom:655.750080px;}
.y24d{bottom:655.926480px;}
.y148{bottom:656.457840px;}
.y1bb{bottom:657.300240px;}
.y27{bottom:662.396940px;}
.yaf{bottom:662.497920px;}
.y51{bottom:662.798880px;}
.ydf{bottom:664.020000px;}
.ydc{bottom:664.200000px;}
.y231{bottom:664.606800px;}
.y12a{bottom:664.963920px;}
.y274{bottom:665.514000px;}
.y7{bottom:666.771000px;}
.y7f{bottom:668.571840px;}
.y16e{bottom:668.880000px;}
.y171{bottom:668.896560px;}
.y20b{bottom:673.615440px;}
.y1db{bottom:673.750800px;}
.y24c{bottom:676.080000px;}
.y1ba{bottom:677.453760px;}
.y230{bottom:682.607520px;}
.yae{bottom:682.651440px;}
.y129{bottom:685.117440px;}
.y147{bottom:685.620000px;}
.y7e{bottom:688.725360px;}
.y90{bottom:690.110640px;}
.y20a{bottom:691.616160px;}
.y1da{bottom:691.751520px;}
.y50{bottom:691.778880px;}
.y273{bottom:694.676160px;}
.y1b9{bottom:697.607280px;}
.y26{bottom:698.220000px;}
.ydb{bottom:702.186480px;}
.yad{bottom:702.804960px;}
.y24b{bottom:705.068640px;}
.y128{bottom:705.270960px;}
.y16d{bottom:707.040000px;}
.y7d{bottom:708.878880px;}
.y22f{bottom:709.600320px;}
.y272{bottom:714.829680px;}
.y1b8{bottom:717.595200px;}
.y209{bottom:718.608960px;}
.y1d9{bottom:718.744320px;}
.y107{bottom:719.731440px;}
.y4f{bottom:720.941040px;}
.y8f{bottom:721.243440px;}
.yda{bottom:722.340000px;}
.yac{bottom:722.958480px;}
.y146{bottom:724.512960px;}
.y24a{bottom:725.404320px;}
.y127{bottom:725.424480px;}
.y6{bottom:726.298500px;}
.y16c{bottom:727.200000px;}
.y22e{bottom:727.601040px;}
.y7c{bottom:729.032400px;}
.y208{bottom:736.609680px;}
.y1d8{bottom:736.745040px;}
.y1b7{bottom:737.748720px;}
.y4e{bottom:741.094560px;}
.y271{bottom:743.991840px;}
.y145{bottom:744.666480px;}
.y126{bottom:745.578000px;}
.y22d{bottom:745.601760px;}
.y249{bottom:745.740000px;}
.y16b{bottom:747.180000px;}
.y106{bottom:748.893600px;}
.y7b{bottom:749.185920px;}
.yab{bottom:751.938480px;}
.y8e{bottom:752.376240px;}
.y3{bottom:752.599495px;}
.y1d7{bottom:754.745760px;}
.y1b6{bottom:757.902240px;}
.yd9{bottom:760.500000px;}
.y4d{bottom:761.248080px;}
.y207{bottom:763.602480px;}
.y270{bottom:764.145360px;}
.y144{bottom:764.820000px;}
.y125{bottom:765.731520px;}
.y16a{bottom:767.340000px;}
.y105{bottom:769.047120px;}
.y7a{bottom:769.339440px;}
.yaa{bottom:772.092000px;}
.y22c{bottom:772.594560px;}
.y248{bottom:774.551520px;}
.y1b5{bottom:778.055760px;}
.yd8{bottom:780.660000px;}
.y8d{bottom:781.538400px;}
.y206{bottom:781.603200px;}
.y1d6{bottom:781.738560px;}
.y124{bottom:785.719440px;}
.y104{bottom:789.200640px;}
.y79{bottom:789.492960px;}
.y4c{bottom:790.410240px;}
.y22b{bottom:790.595280px;}
.ya9{bottom:792.245520px;}
.y167{bottom:792.540000px;}
.y26f{bottom:793.307520px;}
.y247{bottom:796.145760px;}
.y1b4{bottom:798.209280px;}
.y1d5{bottom:799.739280px;}
.y143{bottom:802.979850px;}
.y123{bottom:805.872960px;}
.y205{bottom:808.596000px;}
.y103{bottom:809.354160px;}
.y78{bottom:809.646480px;}
.y8c{bottom:810.700560px;}
.y169{bottom:810.720000px;}
.y166{bottom:810.778320px;}
.ya8{bottom:812.399040px;}
.y26e{bottom:813.461040px;}
.y1d4{bottom:817.740000px;}
.y1b3{bottom:818.362800px;}
.yd7{bottom:818.826330px;}
.y4b{bottom:819.572400px;}
.y142{bottom:823.140000px;}
.y122{bottom:826.026480px;}
.y204{bottom:826.596720px;}
.y195{bottom:827.848800px;}
.y102{bottom:829.507680px;}
.y77{bottom:829.800000px;}
.ya7{bottom:832.552560px;}
.y22a{bottom:835.588800px;}
.y1b2{bottom:838.516320px;}
.yd6{bottom:838.979850px;}
.y4a{bottom:839.725920px;}
.y8b{bottom:839.862720px;}
.y26d{bottom:842.623200px;}
.y141{bottom:843.300000px;}
.y203{bottom:844.597440px;}
.y121{bottom:846.180000px;}
.y246{bottom:848.345760px;}
.y1d3{bottom:849.420000px;}
.y101{bottom:849.661200px;}
.ya6{bottom:852.706080px;}
.y229{bottom:853.589520px;}
.y194{bottom:857.010960px;}
.y1b1{bottom:858.669840px;}
.y49{bottom:859.879440px;}
.y26c{bottom:862.776750px;}
.y8a{bottom:869.024880px;}
.y100{bottom:869.814720px;}
.y245{bottom:869.940000px;}
.y202{bottom:871.590240px;}
.y76{bottom:872.811000px;}
.ya5{bottom:872.859600px;}
.y25{bottom:875.856960px;}
.y120{bottom:876.420000px;}
.yd5{bottom:877.140000px;}
.y193{bottom:877.164480px;}
.y165{bottom:878.823360px;}
.y2{bottom:879.369000px;}
.y48{bottom:880.032960px;}
.y140{bottom:881.286480px;}
.yff{bottom:889.968240px;}
.y26b{bottom:891.756720px;}
.ya4{bottom:893.013120px;}
.yd4{bottom:897.300000px;}
.y192{bottom:897.318000px;}
.y89{bottom:898.187040px;}
.y201{bottom:898.583040px;}
.y164{bottom:898.976880px;}
.y47{bottom:900.186480px;}
.y244{bottom:900.545760px;}
.y13f{bottom:901.440000px;}
.y75{bottom:907.560000px;}
.y1b0{bottom:907.803360px;}
.y11f{bottom:909.939600px;}
.yfe{bottom:909.956160px;}
.y26a{bottom:911.910240px;}
.y200{bottom:916.583760px;}
.y191{bottom:917.305920px;}
.y46{bottom:920.340000px;}
.y243{bottom:922.140000px;}
.ya3{bottom:922.175280px;}
.yd1{bottom:922.500000px;}
.y88{bottom:927.349200px;}
.y163{bottom:927.956880px;}
.yfd{bottom:930.109680px;}
.y269{bottom:932.245950px;}
.y1ff{bottom:934.584480px;}
.y24{bottom:934.915680px;}
.y190{bottom:937.459440px;}
.y11e{bottom:939.101760px;}
.y13e{bottom:939.600000px;}
.yd3{bottom:940.500000px;}
.yd0{bottom:940.525920px;}
.y74{bottom:940.911840px;}
.ya2{bottom:942.328800px;}
.y162{bottom:948.110400px;}
.y45{bottom:949.320000px;}
.yfc{bottom:950.263200px;}
.y242{bottom:952.745760px;}
.y87{bottom:956.329200px;}
.y18f{bottom:957.612960px;}
.y11d{bottom:959.255280px;}
.y13d{bottom:959.760000px;}
.y73{bottom:961.065360px;}
.y268{bottom:961.408080px;}
.y1fe{bottom:961.577280px;}
.ya1{bottom:962.316720px;}
.y1{bottom:966.726000px;}
.y161{bottom:968.263920px;}
.yfb{bottom:970.416720px;}
.y241{bottom:974.340000px;}
.y18e{bottom:977.766480px;}
.y44{bottom:978.480000px;}
.ycf{bottom:979.408800px;}
.y1fd{bottom:979.578000px;}
.y72{bottom:981.218880px;}
.y267{bottom:981.561600px;}
.ya0{bottom:982.470240px;}
.y23{bottom:984.600000px;}
.y86{bottom:985.491360px;}
.y160{bottom:988.417440px;}
.y228{bottom:997.578720px;}
.y18d{bottom:997.920000px;}
.y139{bottom:997.932960px;}
.y13c{bottom:997.949520px;}
.y11c{bottom:999.562320px;}
.yfa{bottom:999.578880px;}
.y71{bottom:1001.372400px;}
.y9f{bottom:1002.623760px;}
.y240{bottom:1004.951520px;}
.y1fc{bottom:1006.570800px;}
.yce{bottom:1008.570960px;}
.y266{bottom:1010.723760px;}
.y85{bottom:1014.653520px;}
.y138{bottom:1018.086480px;}
.y13b{bottom:1018.103040px;}
.y11b{bottom:1019.715840px;}
.yf9{bottom:1019.732400px;}
.y70{bottom:1021.525920px;}
.y1fb{bottom:1024.571520px;}
.y23f{bottom:1026.545760px;}
.ycd{bottom:1028.724480px;}
.y18c{bottom:1030.860000px;}
.y265{bottom:1030.877280px;}
.y9e{bottom:1031.785920px;}
.y137{bottom:1038.240000px;}
.y13a{bottom:1038.256560px;}
.y11a{bottom:1039.869360px;}
.yf8{bottom:1039.885920px;}
.y6f{bottom:1041.679440px;}
.y1fa{bottom:1042.572240px;}
.y84{bottom:1043.815680px;}
.y23e{bottom:1048.140000px;}
.ycc{bottom:1048.878000px;}
.y264{bottom:1051.030800px;}
.y9d{bottom:1051.939440px;}
.y119{bottom:1060.022880px;}
.yf7{bottom:1060.039440px;}
.y227{bottom:1060.572960px;}
.y6e{bottom:1061.832960px;}
.ycb{bottom:1069.031520px;}
.y69{bottom:1069.200000px;}
.y1f9{bottom:1069.565040px;}
.y9c{bottom:1072.092960px;}
.y83{bottom:1072.977840px;}
.y136{bottom:1076.400000px;}
.y23d{bottom:1078.745760px;}
.yf6{bottom:1080.192960px;}
.y6d{bottom:1081.986480px;}
.y68{bottom:1082.875680px;}
.y1f8{bottom:1087.565760px;}
.yca{bottom:1089.185040px;}
.y9b{bottom:1092.246480px;}
.y135{bottom:1096.560000px;}
.y23c{bottom:1100.340000px;}
.yf5{bottom:1100.346480px;}
.y6c{bottom:1102.140000px;}
.y1f7{bottom:1105.566480px;}
.y18b{bottom:1109.172960px;}
.yc9{bottom:1109.338560px;}
.y67{bottom:1112.035680px;}
.y9a{bottom:1112.400000px;}
.y226{bottom:1114.558560px;}
.y134{bottom:1121.760000px;}
.yc8{bottom:1129.326480px;}
.y1f6{bottom:1132.559280px;}
.y133{bottom:1139.760000px;}
.y66{bottom:1141.197840px;}
.y6b{bottom:1145.160000px;}
.yc7{bottom:1149.480000px;}
.y1f5{bottom:1150.560000px;}
.y22{bottom:1185.300000px;}
.h7{height:32.130000px;}
.h17{height:38.158500px;}
.h14{height:42.480000px;}
.h1d{height:42.660000px;}
.h19{height:44.149219px;}
.h1a{height:44.157859px;}
.h1c{height:44.569687px;}
.h1f{height:45.754334px;}
.h6{height:45.900000px;}
.h20{height:47.545312px;}
.h3{height:48.195000px;}
.h9{height:54.596250px;}
.h22{height:54.596490px;}
.h21{height:54.610650px;}
.h2{height:55.080000px;}
.hd{height:56.146289px;}
.h13{height:56.970000px;}
.h18{height:59.343750px;}
.h16{height:64.260000px;}
.h11{height:66.886560px;}
.hb{height:67.560480px;}
.he{height:69.432187px;}
.hf{height:69.516428px;}
.h12{height:70.200000px;}
.h5{height:78.030000px;}
.h15{height:80.140430px;}
.h1b{height:96.480000px;}
.h4{height:119.055004px;}
.ha{height:128.116800px;}
.hc{height:132.480000px;}
.h10{height:174.060000px;}
.h1e{height:341.733000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:8.821500px;}
.we{width:17.640000px;}
.w7{width:120.240000px;}
.wc{width:178.560000px;}
.wb{width:201.960000px;}
.wd{width:255.240000px;}
.w8{width:334.440000px;}
.w6{width:345.780000px;}
.wa{width:375.480000px;}
.wf{width:440.160000px;}
.w5{width:473.580000px;}
.w4{width:473.760000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xd{left:39.960000px;}
.x12{left:54.900000px;}
.x2f{left:62.552100px;}
.x8{left:65.700000px;}
.x9{left:75.960000px;}
.x6{left:77.220000px;}
.x2d{left:83.184450px;}
.x5{left:88.560000px;}
.x11{left:94.860000px;}
.x2c{left:100.384650px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x14{left:114.297840px;}
.x1c{left:118.080000px;}
.x13{left:124.051680px;}
.x16{left:128.880000px;}
.x2b{left:140.824350px;}
.x19{left:142.920000px;}
.x10{left:159.300000px;}
.x1f{left:163.440000px;}
.x30{left:191.152800px;}
.x2e{left:201.084150px;}
.x4{left:203.484001px;}
.x2a{left:226.630500px;}
.xc{left:231.480000px;}
.xe{left:334.440000px;}
.x1b{left:361.440000px;}
.x25{left:378.912240px;}
.x15{left:382.680000px;}
.x1a{left:390.780000px;}
.x26{left:392.760000px;}
.x20{left:396.000000px;}
.x27{left:397.440000px;}
.x23{left:408.060000px;}
.x21{left:412.197840px;}
.x3{left:454.959000px;}
.xb{left:474.120000px;}
.x1e{left:540.000000px;}
.x22{left:548.089200px;}
.x18{left:584.640000px;}
.x1d{left:631.620000px;}
.x24{left:636.660000px;}
.x17{left:643.680000px;}
.x29{left:666.905040px;}
.xa{left:691.200000px;}
.x28{left:768.960000px;}
.xf{left:777.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4e{letter-spacing:-7.360000pt;}
.ls4d{letter-spacing:-6.771200pt;}
.lse{letter-spacing:-5.840640pt;}
.ls6e{letter-spacing:-4.592640pt;}
.ls5d{letter-spacing:-4.298240pt;}
.ls6c{letter-spacing:-3.061760pt;}
.ls49{letter-spacing:-2.885120pt;}
.ls26{letter-spacing:-2.237440pt;}
.ls71{letter-spacing:-2.001920pt;}
.ls60{letter-spacing:-1.825280pt;}
.ls44{letter-spacing:-1.707520pt;}
.ls6b{letter-spacing:-1.472000pt;}
.ls56{letter-spacing:-1.354240pt;}
.ls5e{letter-spacing:-1.059840pt;}
.ls55{letter-spacing:-0.942080pt;}
.ls1c{letter-spacing:-0.883200pt;}
.ls29{letter-spacing:-0.824320pt;}
.ls62{letter-spacing:-0.782096pt;}
.ls1b{letter-spacing:-0.706560pt;}
.ls69{letter-spacing:-0.588800pt;}
.ls5c{letter-spacing:-0.529920pt;}
.ls66{letter-spacing:-0.524160pt;}
.ls28{letter-spacing:-0.471040pt;}
.ls1f{letter-spacing:-0.412160pt;}
.ls5f{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.307200pt;}
.ls38{letter-spacing:-0.299520pt;}
.ls1d{letter-spacing:-0.294400pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls32{letter-spacing:-0.224640pt;}
.lsb{letter-spacing:-0.184320pt;}
.ls1e{letter-spacing:-0.176640pt;}
.ls7{letter-spacing:-0.149760pt;}
.ls5{letter-spacing:-0.138880pt;}
.lsa{letter-spacing:-0.122880pt;}
.ls20{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.074880pt;}
.ls1a{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.058880pt;}
.ls9{letter-spacing:0.074880pt;}
.ls43{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.122880pt;}
.ls4{letter-spacing:0.138880pt;}
.ls45{letter-spacing:0.149760pt;}
.ls21{letter-spacing:0.176640pt;}
.ls6{letter-spacing:0.224640pt;}
.ls15{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.245760pt;}
.ls5a{letter-spacing:0.259072pt;}
.ls18{letter-spacing:0.276736pt;}
.ls3{letter-spacing:0.288768pt;}
.ls3a{letter-spacing:0.294400pt;}
.ls6f{letter-spacing:0.294507pt;}
.ls4c{letter-spacing:0.300288pt;}
.ls10{letter-spacing:0.307200pt;}
.ls1{letter-spacing:0.327680pt;}
.ls59{letter-spacing:0.329728pt;}
.ls34{letter-spacing:0.335616pt;}
.ls25{letter-spacing:0.376832pt;}
.ls54{letter-spacing:0.412160pt;}
.ls67{letter-spacing:0.418048pt;}
.ls5b{letter-spacing:0.471040pt;}
.ls2b{letter-spacing:0.824320pt;}
.ls64{letter-spacing:0.836096pt;}
.ls6d{letter-spacing:1.059840pt;}
.ls46{letter-spacing:1.077504pt;}
.ls42{letter-spacing:1.118720pt;}
.ls35{letter-spacing:1.271808pt;}
.ls2d{letter-spacing:1.472000pt;}
.ls48{letter-spacing:2.119680pt;}
.ls13{letter-spacing:2.767360pt;}
.ls63{letter-spacing:3.385600pt;}
.ls2f{letter-spacing:3.415040pt;}
.ls4b{letter-spacing:4.710400pt;}
.ls53{letter-spacing:5.299200pt;}
.ls4a{letter-spacing:6.594560pt;}
.ls37{letter-spacing:7.889920pt;}
.ls41{letter-spacing:9.185280pt;}
.ls14{letter-spacing:9.832960pt;}
.ls39{letter-spacing:10.421760pt;}
.ls16{letter-spacing:11.134208pt;}
.ls65{letter-spacing:11.717120pt;}
.ls23{letter-spacing:12.323584pt;}
.ls61{letter-spacing:12.364800pt;}
.ls24{letter-spacing:13.660160pt;}
.ls47{letter-spacing:16.839680pt;}
.ls17{letter-spacing:17.369600pt;}
.ls27{letter-spacing:17.487360pt;}
.ls11{letter-spacing:19.283200pt;}
.ls12{letter-spacing:19.430400pt;}
.ls2c{letter-spacing:62.824960pt;}
.ls2a{letter-spacing:66.711040pt;}
.ls2e{letter-spacing:67.947520pt;}
.ls30{letter-spacing:85.905920pt;}
.ls50{letter-spacing:139.709440pt;}
.ls6a{letter-spacing:144.197120pt;}
.ls36{letter-spacing:157.772160pt;}
.ls70{letter-spacing:175.580160pt;}
.ls58{letter-spacing:181.306880pt;}
.ls52{letter-spacing:182.586880pt;}
.ls51{letter-spacing:182.617600pt;}
.ls33{letter-spacing:219.173760pt;}
.ls3f{letter-spacing:279.895040pt;}
.ls3c{letter-spacing:415.595776pt;}
.ls40{letter-spacing:425.820160pt;}
.ls3e{letter-spacing:542.264320pt;}
.ls3d{letter-spacing:542.284800pt;}
.ls68{letter-spacing:751.603200pt;}
.ls31{letter-spacing:751.631360pt;}
.ls57{letter-spacing:796.277760pt;}
.ls4f{letter-spacing:965.342720pt;}
.ls3b{letter-spacing:977.515520pt;}
.wsac{word-spacing:-58.467840pt;}
.ws7{word-spacing:-21.589760pt;}
.ws34{word-spacing:-17.487360pt;}
.ws96{word-spacing:-15.530192pt;}
.ws88{word-spacing:-15.425280pt;}
.ws7a{word-spacing:-15.350400pt;}
.ws2{word-spacing:-15.275520pt;}
.ws1{word-spacing:-15.200640pt;}
.ws42{word-spacing:-15.125760pt;}
.wsa2{word-spacing:-14.976000pt;}
.ws45{word-spacing:-14.901120pt;}
.ws9a{word-spacing:-14.676480pt;}
.wsa7{word-spacing:-14.366720pt;}
.wsad{word-spacing:-13.542400pt;}
.wsaa{word-spacing:-13.306880pt;}
.wsa6{word-spacing:-12.953600pt;}
.wsa9{word-spacing:-12.894720pt;}
.ws5{word-spacing:-12.595200pt;}
.wsab{word-spacing:-12.482560pt;}
.ws86{word-spacing:-12.364800pt;}
.ws3{word-spacing:-12.349440pt;}
.ws4{word-spacing:-12.288000pt;}
.ws46{word-spacing:-12.247040pt;}
.ws11{word-spacing:-12.188160pt;}
.ws6{word-spacing:-12.165120pt;}
.ws17{word-spacing:-12.129280pt;}
.ws79{word-spacing:-12.070400pt;}
.ws57{word-spacing:-12.011520pt;}
.wsf{word-spacing:-11.952640pt;}
.ws13{word-spacing:-11.893760pt;}
.ws16{word-spacing:-11.834880pt;}
.ws41{word-spacing:-11.776000pt;}
.ws12{word-spacing:-11.717120pt;}
.ws14{word-spacing:-11.658240pt;}
.ws87{word-spacing:-11.599360pt;}
.ws85{word-spacing:-11.422720pt;}
.ws10{word-spacing:-11.246080pt;}
.ws64{word-spacing:-11.128320pt;}
.ws15{word-spacing:-11.069440pt;}
.wsa8{word-spacing:-11.010560pt;}
.ws4a{word-spacing:-10.421760pt;}
.wsb9{word-spacing:-9.950720pt;}
.wsb8{word-spacing:-7.360000pt;}
.wsa0{word-spacing:-5.299200pt;}
.ws6b{word-spacing:-3.415040pt;}
.ws90{word-spacing:-2.767360pt;}
.wsaf{word-spacing:-2.237440pt;}
.ws91{word-spacing:-2.178560pt;}
.ws58{word-spacing:-2.119680pt;}
.ws71{word-spacing:-1.884160pt;}
.ws8e{word-spacing:-1.648640pt;}
.ws93{word-spacing:-1.589760pt;}
.ws4f{word-spacing:-1.530880pt;}
.ws22{word-spacing:-1.472000pt;}
.ws9f{word-spacing:-0.942080pt;}
.ws19{word-spacing:-0.824320pt;}
.ws61{word-spacing:-0.748800pt;}
.ws62{word-spacing:-0.673920pt;}
.wsa5{word-spacing:-0.647680pt;}
.ws8d{word-spacing:-0.588800pt;}
.ws8f{word-spacing:-0.529920pt;}
.ws9{word-spacing:-0.299520pt;}
.ws5a{word-spacing:-0.294400pt;}
.ws8{word-spacing:-0.277760pt;}
.ws28{word-spacing:-0.235520pt;}
.ws36{word-spacing:-0.176640pt;}
.ws5b{word-spacing:-0.117760pt;}
.ws2d{word-spacing:-0.074880pt;}
.ws55{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058880pt;}
.wsa{word-spacing:0.074880pt;}
.ws2b{word-spacing:0.117760pt;}
.ws2e{word-spacing:0.176640pt;}
.wsd{word-spacing:0.184320pt;}
.wsb{word-spacing:0.224640pt;}
.ws21{word-spacing:0.235520pt;}
.ws43{word-spacing:0.294400pt;}
.ws27{word-spacing:0.353280pt;}
.ws44{word-spacing:0.374400pt;}
.ws18{word-spacing:0.412160pt;}
.ws37{word-spacing:0.471040pt;}
.wsc{word-spacing:0.491520pt;}
.wsa4{word-spacing:0.588800pt;}
.ws24{word-spacing:0.706560pt;}
.ws99{word-spacing:0.782096pt;}
.ws39{word-spacing:0.824320pt;}
.ws26{word-spacing:0.883200pt;}
.ws80{word-spacing:0.942080pt;}
.ws2f{word-spacing:1.000960pt;}
.ws30{word-spacing:1.059840pt;}
.ws95{word-spacing:1.236480pt;}
.ws8a{word-spacing:1.295360pt;}
.ws9d{word-spacing:1.413120pt;}
.wsae{word-spacing:1.472000pt;}
.ws98{word-spacing:1.564192pt;}
.ws9c{word-spacing:1.589760pt;}
.wsa1{word-spacing:1.648640pt;}
.ws29{word-spacing:1.707520pt;}
.ws97{word-spacing:1.825280pt;}
.ws2a{word-spacing:1.884160pt;}
.ws63{word-spacing:2.178560pt;}
.ws31{word-spacing:2.237440pt;}
.ws75{word-spacing:2.296320pt;}
.ws54{word-spacing:2.355200pt;}
.ws9e{word-spacing:2.414080pt;}
.ws6c{word-spacing:2.885120pt;}
.ws76{word-spacing:2.944000pt;}
.ws1d{word-spacing:3.002880pt;}
.wsb0{word-spacing:3.061760pt;}
.ws1e{word-spacing:3.473920pt;}
.ws72{word-spacing:3.591680pt;}
.ws5d{word-spacing:3.650560pt;}
.wsa3{word-spacing:4.121600pt;}
.ws7e{word-spacing:4.239360pt;}
.ws4c{word-spacing:4.298240pt;}
.ws9b{word-spacing:4.474880pt;}
.wsb7{word-spacing:4.592640pt;}
.wsbb{word-spacing:4.769280pt;}
.ws74{word-spacing:4.828160pt;}
.ws53{word-spacing:4.887040pt;}
.ws5c{word-spacing:4.945920pt;}
.ws7f{word-spacing:5.004800pt;}
.ws7c{word-spacing:5.240320pt;}
.ws47{word-spacing:5.358080pt;}
.ws7b{word-spacing:5.475840pt;}
.ws38{word-spacing:5.534720pt;}
.ws65{word-spacing:5.593600pt;}
.ws77{word-spacing:5.711360pt;}
.wse{word-spacing:5.840640pt;}
.ws5e{word-spacing:6.182400pt;}
.ws6e{word-spacing:6.771200pt;}
.ws6f{word-spacing:6.830080pt;}
.ws78{word-spacing:7.360000pt;}
.ws70{word-spacing:7.418880pt;}
.ws52{word-spacing:7.477760pt;}
.ws59{word-spacing:7.948800pt;}
.ws56{word-spacing:8.066560pt;}
.ws4e{word-spacing:8.125440pt;}
.ws4d{word-spacing:8.184320pt;}
.ws8c{word-spacing:8.596480pt;}
.ws35{word-spacing:8.773120pt;}
.ws6a{word-spacing:9.126400pt;}
.ws5f{word-spacing:9.361920pt;}
.ws1f{word-spacing:9.420800pt;}
.ws67{word-spacing:9.715200pt;}
.ws92{word-spacing:9.891840pt;}
.ws20{word-spacing:10.009600pt;}
.ws89{word-spacing:10.539520pt;}
.ws94{word-spacing:10.598400pt;}
.ws49{word-spacing:10.657280pt;}
.ws66{word-spacing:11.246080pt;}
.ws23{word-spacing:11.304960pt;}
.ws3a{word-spacing:11.952640pt;}
.ws40{word-spacing:12.600320pt;}
.ws3e{word-spacing:12.776960pt;}
.ws8b{word-spacing:12.835840pt;}
.ws3c{word-spacing:13.071360pt;}
.ws3d{word-spacing:13.248000pt;}
.ws3b{word-spacing:13.719040pt;}
.ws3f{word-spacing:13.895680pt;}
.ws33{word-spacing:14.366720pt;}
.ws32{word-spacing:14.543360pt;}
.ws7d{word-spacing:14.720000pt;}
.ws84{word-spacing:14.955520pt;}
.wsb5{word-spacing:15.014400pt;}
.ws83{word-spacing:15.132160pt;}
.ws73{word-spacing:15.720960pt;}
.ws4b{word-spacing:15.779840pt;}
.wsbc{word-spacing:16.604160pt;}
.ws68{word-spacing:17.016320pt;}
.ws69{word-spacing:17.075200pt;}
.ws6d{word-spacing:17.251840pt;}
.ws25{word-spacing:17.722880pt;}
.wsb6{word-spacing:18.370560pt;}
.wsb4{word-spacing:19.194880pt;}
.ws1c{word-spacing:19.489280pt;}
.ws1b{word-spacing:19.665920pt;}
.ws48{word-spacing:20.254720pt;}
.wsb1{word-spacing:21.255680pt;}
.ws51{word-spacing:22.138880pt;}
.ws50{word-spacing:22.197760pt;}
.ws81{word-spacing:24.081920pt;}
.ws82{word-spacing:24.140800pt;}
.ws60{word-spacing:27.909120pt;}
.wsb3{word-spacing:37.565440pt;}
.wsba{word-spacing:43.983360pt;}
.ws2c{word-spacing:81.489920pt;}
.wsb2{word-spacing:111.106560pt;}
._f{margin-left:-18.871040pt;}
._d{margin-left:-17.693440pt;}
._10{margin-left:-16.763136pt;}
._1b{margin-left:-14.782656pt;}
._17{margin-left:-13.125888pt;}
._16{margin-left:-12.112192pt;}
._1a{margin-left:-11.128320pt;}
._14{margin-left:-9.745600pt;}
._15{margin-left:-7.996288pt;}
._4{margin-left:-6.904448pt;}
._5{margin-left:-5.523456pt;}
._8{margin-left:-4.444480pt;}
._2{margin-left:-3.319232pt;}
._0{margin-left:-2.124864pt;}
._1{margin-left:-0.986048pt;}
._3{width:0.936384pt;}
._7{width:1.839872pt;}
._c{width:3.315136pt;}
._b{width:4.869184pt;}
._6{width:6.132672pt;}
._21{width:7.463552pt;}
._1f{width:8.419840pt;}
._19{width:9.473792pt;}
._18{width:10.433536pt;}
._22{width:13.089536pt;}
._11{width:14.077504pt;}
._20{width:14.984896pt;}
._1c{width:16.621632pt;}
._e{width:17.622784pt;}
._27{width:18.841600pt;}
._24{width:19.949632pt;}
._1e{width:21.279232pt;}
._1d{width:22.509824pt;}
._28{width:23.603392pt;}
._a{width:41.592320pt;}
._12{width:68.641472pt;}
._2b{width:111.706240pt;}
._25{width:144.358848pt;}
._9{width:147.200000pt;}
._23{width:164.221504pt;}
._13{width:173.571840pt;}
._2c{width:175.600960pt;}
._26{width:197.200512pt;}
._2a{width:281.665039pt;}
._29{width:345.723311pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:55.864000pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:106.880000pt;}
.fs6{font-size:138.880000pt;}
.y34{bottom:-117.920000pt;}
.y33{bottom:-86.400000pt;}
.y32{bottom:-55.680000pt;}
.y3a{bottom:-30.880000pt;}
.y31{bottom:-24.800000pt;}
.y6a{bottom:-13.760000pt;}
.y39{bottom:-8.160000pt;}
.y2a{bottom:-4.160000pt;}
.y40{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:4.800000pt;}
.y43{bottom:12.160000pt;}
.y1ae{bottom:12.801467pt;}
.yd2{bottom:16.000000pt;}
.y168{bottom:16.160000pt;}
.y3f{bottom:24.000000pt;}
.y42{bottom:39.200000pt;}
.y3e{bottom:42.720000pt;}
.y3d{bottom:43.040000pt;}
.y36{bottom:48.000000pt;}
.y35{bottom:55.840000pt;}
.y5{bottom:59.133337pt;}
.y41{bottom:59.360000pt;}
.y38{bottom:66.396160pt;}
.y118{bottom:81.416960pt;}
.y37{bottom:85.120000pt;}
.y18a{bottom:85.500800pt;}
.y4{bottom:86.333337pt;}
.y65{bottom:87.038080pt;}
.y15f{bottom:87.714560pt;}
.y1aa{bottom:88.450933pt;}
.yf4{bottom:92.971520pt;}
.yc6{bottom:92.999040pt;}
.y1d2{bottom:93.125760pt;}
.y1a7{bottom:95.133440pt;}
.y117{bottom:99.331200pt;}
.y225{bottom:102.823040pt;}
.y189{bottom:103.267840pt;}
.y15e{bottom:105.628800pt;}
.y263{bottom:108.824960pt;}
.yf3{bottom:110.885760pt;}
.yc5{bottom:110.913280pt;}
.y1f4{bottom:110.951040pt;}
.y1d1{bottom:111.040000pt;}
.y64{bottom:112.960000pt;}
.y1a6{bottom:113.047680pt;}
.y116{bottom:117.245440pt;}
.y224{bottom:118.823680pt;}
.y188{bottom:121.182080pt;}
.y15d{bottom:123.543040pt;}
.y21{bottom:123.790666pt;}
.y1af{bottom:124.239067pt;}
.y262{bottom:126.739200pt;}
.y1f3{bottom:126.951680pt;}
.yf2{bottom:128.800000pt;}
.yc4{bottom:128.827520pt;}
.y1a5{bottom:130.961920pt;}
.y115{bottom:135.159680pt;}
.y63{bottom:138.737280pt;}
.y1a9{bottom:138.787067pt;}
.y187{bottom:139.096320pt;}
.y1d0{bottom:140.320000pt;}
.y15c{bottom:141.457280pt;}
.y223{bottom:142.817280pt;}
.y1f2{bottom:142.952320pt;}
.yc3{bottom:146.741760pt;}
.y1a4{bottom:148.876160pt;}
.y261{bottom:152.499200pt;}
.yf1{bottom:155.680000pt;}
.y62{bottom:156.651520pt;}
.y186{bottom:157.010560pt;}
.y222{bottom:158.817920pt;}
.y15b{bottom:159.371520pt;}
.y114{bottom:161.081600pt;}
.yc2{bottom:164.656000pt;}
.y1a3{bottom:166.790400pt;}
.y1f1{bottom:166.945920pt;}
.y30{bottom:168.800000pt;}
.y260{bottom:170.413440pt;}
.y61{bottom:174.565760pt;}
.y2f{bottom:174.704960pt;}
.y221{bottom:174.818560pt;}
.y185{bottom:174.924800pt;}
.y18{bottom:175.052000pt;}
.y15a{bottom:177.285760pt;}
.y113{bottom:178.995840pt;}
.yc1{bottom:182.423040pt;}
.y1f0{bottom:182.946560pt;}
.y1a2{bottom:184.704640pt;}
.yf0{bottom:185.477120pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y184{bottom:192.839040pt;}
.y159{bottom:195.200000pt;}
.y25f{bottom:196.335360pt;}
.y112{bottom:196.762880pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y220{bottom:198.812160pt;}
.y1ac{bottom:199.015733pt;}
.yc0{bottom:200.337280pt;}
.y60{bottom:200.487680pt;}
.y1a1{bottom:202.471680pt;}
.y2e{bottom:205.592960pt;}
.y1ef{bottom:206.940160pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1cf{bottom:210.261120pt;}
.y183{bottom:210.753280pt;}
.yef{bottom:211.399040pt;}
.y111{bottom:214.677120pt;}
.y21f{bottom:214.812800pt;}
.ybf{bottom:218.251520pt;}
.y1a0{bottom:220.385920pt;}
.y158{bottom:222.084320pt;}
.y25e{bottom:222.257280pt;}
.y1ad{bottom:222.292400pt;}
.y1ee{bottom:222.940800pt;}
.y5f{bottom:226.409600pt;}
.y1ce{bottom:228.175360pt;}
.y182{bottom:228.667520pt;}
.yee{bottom:229.313280pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y110{bottom:232.591360pt;}
.ybe{bottom:236.165760pt;}
.y2d{bottom:236.312480pt;}
.y19f{bottom:238.300160pt;}
.y21e{bottom:238.806400pt;}
.y25d{bottom:240.171520pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1cd{bottom:246.089600pt;}
.y181{bottom:246.581760pt;}
.y1ed{bottom:246.934400pt;}
.yed{bottom:247.227520pt;}
.y10f{bottom:250.505600pt;}
.y5e{bottom:252.331520pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ybd{bottom:254.080000pt;}
.y21d{bottom:254.807040pt;}
.y157{bottom:255.200000pt;}
.y19e{bottom:256.214400pt;}
.y1ab{bottom:257.207600pt;}
.y1ec{bottom:262.935040pt;}
.y1cc{bottom:264.003840pt;}
.y180{bottom:264.496000pt;}
.yec{bottom:265.141760pt;}
.y25c{bottom:266.093440pt;}
.y2c{bottom:267.032000pt;}
.y10e{bottom:268.419840pt;}
.y3b{bottom:270.240000pt;}
.y21c{bottom:270.807680pt;}
.y19d{bottom:274.128640pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y5d{bottom:278.253440pt;}
.y1eb{bottom:278.935680pt;}
.ybc{bottom:280.964320pt;}
.y1cb{bottom:281.770880pt;}
.y17f{bottom:282.263040pt;}
.yeb{bottom:283.056000pt;}
.y25b{bottom:284.007680pt;}
.y282{bottom:285.920000pt;}
.y10d{bottom:286.334080pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y19c{bottom:292.042880pt;}
.y21b{bottom:294.801280pt;}
.y2b{bottom:297.920000pt;}
.y1ca{bottom:299.685120pt;}
.y17e{bottom:300.177280pt;}
.y1ea{bottom:302.929280pt;}
.y5c{bottom:304.175360pt;}
.y10c{bottom:304.248320pt;}
.yea{bottom:308.977920pt;}
.yf{bottom:309.452000pt;}
.y23b{bottom:309.830400pt;}
.y25a{bottom:309.929600pt;}
.y19b{bottom:309.957120pt;}
.y21a{bottom:310.801920pt;}
.y281{bottom:310.880000pt;}
.ybb{bottom:314.080000pt;}
.y1c9{bottom:317.599360pt;}
.y17d{bottom:318.091520pt;}
.y1e9{bottom:318.929920pt;}
.y10b{bottom:322.162560pt;}
.y156{bottom:325.005440pt;}
.y219{bottom:326.802560pt;}
.ye9{bottom:326.892160pt;}
.y259{bottom:327.843840pt;}
.y19a{bottom:327.871360pt;}
.y280{bottom:328.800000pt;}
.y99{bottom:329.760000pt;}
.y5b{bottom:330.097280pt;}
.y23a{bottom:334.795520pt;}
.y1c8{bottom:335.513600pt;}
.y17c{bottom:336.005760pt;}
.y155{bottom:342.919680pt;}
.y1e8{bottom:342.923520pt;}
.ye{bottom:343.809333pt;}
.ye8{bottom:344.659200pt;}
.y199{bottom:345.785600pt;}
.y10a{bottom:347.922560pt;}
.y218{bottom:350.796160pt;}
.y1c7{bottom:353.427840pt;}
.y258{bottom:353.765760pt;}
.y17b{bottom:353.920000pt;}
.y27f{bottom:354.634880pt;}
.y5a{bottom:355.857280pt;}
.y98{bottom:357.450880pt;}
.y1e7{bottom:358.924160pt;}
.y154{bottom:360.686720pt;}
.ye7{bottom:362.573440pt;}
.yd{bottom:362.706666pt;}
.y217{bottom:366.796800pt;}
.y1c6{bottom:371.342080pt;}
.y198{bottom:371.545600pt;}
.y257{bottom:371.680000pt;}
.y109{bottom:373.844480pt;}
.y153{bottom:378.600960pt;}
.y27e{bottom:380.394880pt;}
.ye6{bottom:380.487680pt;}
.y17a{bottom:380.800000pt;}
.y59{bottom:381.779200pt;}
.y216{bottom:382.797440pt;}
.y1e6{bottom:382.917760pt;}
.yba{bottom:383.969920pt;}
.y97{bottom:385.124480pt;}
.y1c5{bottom:389.256320pt;}
.y239{bottom:390.790400pt;}
.y108{bottom:395.600640pt;}
.y152{bottom:396.515200pt;}
.y197{bottom:397.467520pt;}
.y256{bottom:397.596800pt;}
.ye5{bottom:398.401920pt;}
.y1e5{bottom:398.918400pt;}
.yb9{bottom:401.884160pt;}
.y27d{bottom:406.478720pt;}
.y215{bottom:406.791040pt;}
.y58{bottom:407.701120pt;}
.y179{bottom:410.558080pt;}
.y96{bottom:412.960000pt;}
.y151{bottom:414.429440pt;}
.y1c4{bottom:415.178240pt;}
.y255{bottom:415.672960pt;}
.ye4{bottom:416.316160pt;}
.y196{bottom:419.223680pt;}
.y1a8{bottom:419.308000pt;}
.yb8{bottom:419.798400pt;}
.y214{bottom:422.791680pt;}
.y1e4{bottom:422.912000pt;}
.y27c{bottom:424.392960pt;}
.y238{bottom:430.784640pt;}
.y132{bottom:431.896960pt;}
.y150{bottom:432.343680pt;}
.y1c3{bottom:433.092480pt;}
.y254{bottom:433.440000pt;}
.y57{bottom:433.623040pt;}
.y178{bottom:436.480000pt;}
.yb7{bottom:437.712640pt;}
.y1e3{bottom:438.912640pt;}
.ye3{bottom:442.238080pt;}
.y213{bottom:446.785280pt;}
.yc{bottom:446.990669pt;}
.y14f{bottom:450.257920pt;}
.y27b{bottom:450.314880pt;}
.y1c2{bottom:451.006720pt;}
.y95{bottom:451.202560pt;}
.y237{bottom:454.778240pt;}
.yb6{bottom:455.626880pt;}
.y131{bottom:457.818880pt;}
.y253{bottom:459.369600pt;}
.y56{bottom:459.544960pt;}
.y212{bottom:462.785920pt;}
.y1e2{bottom:462.906240pt;}
.yb{bottom:462.990669pt;}
.ye2{bottom:468.160000pt;}
.y14e{bottom:468.172160pt;}
.y27a{bottom:468.229120pt;}
.y1c1{bottom:468.773760pt;}
.y236{bottom:470.778880pt;}
.y177{bottom:471.040000pt;}
.yb5{bottom:473.393920pt;}
.y130{bottom:475.733120pt;}
.y252{bottom:477.445760pt;}
.y1e1{bottom:478.906880pt;}
.ya{bottom:478.990666pt;}
.y94{bottom:484.000000pt;}
.y55{bottom:485.466880pt;}
.y14d{bottom:486.086400pt;}
.y279{bottom:486.143360pt;}
.y1c0{bottom:486.688000pt;}
.y211{bottom:486.779520pt;}
.y176{bottom:488.960000pt;}
.yb4{bottom:491.308160pt;}
.y12f{bottom:493.647360pt;}
.y235{bottom:494.772480pt;}
.y9{bottom:494.990666pt;}
.y251{bottom:495.360000pt;}
.ye1{bottom:502.725760pt;}
.y210{bottom:502.780160pt;}
.y1e0{bottom:502.900480pt;}
.y14c{bottom:504.000640pt;}
.y1bf{bottom:504.602240pt;}
.y175{bottom:506.880000pt;}
.y234{bottom:510.773120pt;}
.y54{bottom:511.388800pt;}
.y12e{bottom:511.414400pt;}
.y278{bottom:512.065280pt;}
.y93{bottom:515.846400pt;}
.yb3{bottom:517.230080pt;}
.y1df{bottom:518.901120pt;}
.ye0{bottom:520.640000pt;}
.y250{bottom:521.285760pt;}
.y14b{bottom:521.914880pt;}
.y1be{bottom:522.516480pt;}
.y20f{bottom:526.773760pt;}
.y29{bottom:529.280000pt;}
.y12d{bottom:529.328640pt;}
.y277{bottom:529.979520pt;}
.y82{bottom:532.682880pt;}
.y1de{bottom:534.901760pt;}
.yb2{bottom:535.144320pt;}
.y53{bottom:537.310720pt;}
.y24f{bottom:539.200000pt;}
.y14a{bottom:539.681920pt;}
.y1bd{bottom:540.430720pt;}
.y174{bottom:540.832000pt;}
.y20e{bottom:542.774400pt;}
.y92{bottom:543.520000pt;}
.y276{bottom:547.893760pt;}
.y233{bottom:550.767360pt;}
.yb1{bottom:553.058560pt;}
.yde{bottom:554.560000pt;}
.y12c{bottom:555.250560pt;}
.y28{bottom:556.954560pt;}
.y149{bottom:557.596160pt;}
.y81{bottom:558.604800pt;}
.y170{bottom:558.731520pt;}
.y173{bottom:558.746240pt;}
.y20d{bottom:558.775040pt;}
.y1dd{bottom:558.895360pt;}
.y52{bottom:563.232640pt;}
.y24e{bottom:565.131520pt;}
.y1bc{bottom:566.352640pt;}
.y232{bottom:566.768000pt;}
.yb0{bottom:570.972800pt;}
.ydd{bottom:572.480000pt;}
.y12b{bottom:573.164800pt;}
.y275{bottom:573.653760pt;}
.y8{bottom:573.786667pt;}
.y20c{bottom:574.775680pt;}
.y80{bottom:576.519040pt;}
.y16f{bottom:576.645760pt;}
.y172{bottom:576.660480pt;}
.y91{bottom:581.920000pt;}
.y1dc{bottom:582.888960pt;}
.y24d{bottom:583.045760pt;}
.y148{bottom:583.518080pt;}
.y1bb{bottom:584.266880pt;}
.y27{bottom:588.797280pt;}
.yaf{bottom:588.887040pt;}
.y51{bottom:589.154560pt;}
.ydf{bottom:590.240000pt;}
.ydc{bottom:590.400000pt;}
.y231{bottom:590.761600pt;}
.y12a{bottom:591.079040pt;}
.y274{bottom:591.568000pt;}
.y7{bottom:592.685334pt;}
.y7f{bottom:594.286080pt;}
.y16e{bottom:594.560000pt;}
.y171{bottom:594.574720pt;}
.y20b{bottom:598.769280pt;}
.y1db{bottom:598.889600pt;}
.y24c{bottom:600.960000pt;}
.y1ba{bottom:602.181120pt;}
.y230{bottom:606.762240pt;}
.yae{bottom:606.801280pt;}
.y129{bottom:608.993280pt;}
.y147{bottom:609.440000pt;}
.y7e{bottom:612.200320pt;}
.y90{bottom:613.431680pt;}
.y20a{bottom:614.769920pt;}
.y1da{bottom:614.890240pt;}
.y50{bottom:614.914560pt;}
.y273{bottom:617.489920pt;}
.y1b9{bottom:620.095360pt;}
.y26{bottom:620.640000pt;}
.ydb{bottom:624.165760pt;}
.yad{bottom:624.715520pt;}
.y24b{bottom:626.727680pt;}
.y128{bottom:626.907520pt;}
.y16d{bottom:628.480000pt;}
.y7d{bottom:630.114560pt;}
.y22f{bottom:630.755840pt;}
.y272{bottom:635.404160pt;}
.y1b8{bottom:637.862400pt;}
.y209{bottom:638.763520pt;}
.y1d9{bottom:638.883840pt;}
.y107{bottom:639.761280pt;}
.y4f{bottom:640.836480pt;}
.y8f{bottom:641.105280pt;}
.yda{bottom:642.080000pt;}
.yac{bottom:642.629760pt;}
.y146{bottom:644.011520pt;}
.y24a{bottom:644.803840pt;}
.y127{bottom:644.821760pt;}
.y6{bottom:645.598667pt;}
.y16c{bottom:646.400000pt;}
.y22e{bottom:646.756480pt;}
.y7c{bottom:648.028800pt;}
.y208{bottom:654.764160pt;}
.y1d8{bottom:654.884480pt;}
.y1b7{bottom:655.776640pt;}
.y4e{bottom:658.750720pt;}
.y271{bottom:661.326080pt;}
.y145{bottom:661.925760pt;}
.y126{bottom:662.736000pt;}
.y22d{bottom:662.757120pt;}
.y249{bottom:662.880000pt;}
.y16b{bottom:664.160000pt;}
.y106{bottom:665.683200pt;}
.y7b{bottom:665.943040pt;}
.yab{bottom:668.389760pt;}
.y8e{bottom:668.778880pt;}
.y3{bottom:668.977329pt;}
.y1d7{bottom:670.885120pt;}
.y1b6{bottom:673.690880pt;}
.yd9{bottom:676.000000pt;}
.y4d{bottom:676.664960pt;}
.y207{bottom:678.757760pt;}
.y270{bottom:679.240320pt;}
.y144{bottom:679.840000pt;}
.y125{bottom:680.650240pt;}
.y16a{bottom:682.080000pt;}
.y105{bottom:683.597440pt;}
.y7a{bottom:683.857280pt;}
.yaa{bottom:686.304000pt;}
.y22c{bottom:686.750720pt;}
.y248{bottom:688.490240pt;}
.y1b5{bottom:691.605120pt;}
.yd8{bottom:693.920000pt;}
.y8d{bottom:694.700800pt;}
.y206{bottom:694.758400pt;}
.y1d6{bottom:694.878720pt;}
.y124{bottom:698.417280pt;}
.y104{bottom:701.511680pt;}
.y79{bottom:701.771520pt;}
.y4c{bottom:702.586880pt;}
.y22b{bottom:702.751360pt;}
.ya9{bottom:704.218240pt;}
.y167{bottom:704.480000pt;}
.y26f{bottom:705.162240pt;}
.y247{bottom:707.685120pt;}
.y1b4{bottom:709.519360pt;}
.y1d5{bottom:710.879360pt;}
.y143{bottom:713.759867pt;}
.y123{bottom:716.331520pt;}
.y205{bottom:718.752000pt;}
.y103{bottom:719.425920pt;}
.y78{bottom:719.685760pt;}
.y8c{bottom:720.622720pt;}
.y169{bottom:720.640000pt;}
.y166{bottom:720.691840pt;}
.ya8{bottom:722.132480pt;}
.y26e{bottom:723.076480pt;}
.y1d4{bottom:726.880000pt;}
.y1b3{bottom:727.433600pt;}
.yd7{bottom:727.845627pt;}
.y4b{bottom:728.508800pt;}
.y142{bottom:731.680000pt;}
.y122{bottom:734.245760pt;}
.y204{bottom:734.752640pt;}
.y195{bottom:735.865600pt;}
.y102{bottom:737.340160pt;}
.y77{bottom:737.600000pt;}
.ya7{bottom:740.046720pt;}
.y22a{bottom:742.745600pt;}
.y1b2{bottom:745.347840pt;}
.yd6{bottom:745.759867pt;}
.y4a{bottom:746.423040pt;}
.y8b{bottom:746.544640pt;}
.y26d{bottom:748.998400pt;}
.y141{bottom:749.600000pt;}
.y203{bottom:750.753280pt;}
.y121{bottom:752.160000pt;}
.y246{bottom:754.085120pt;}
.y1d3{bottom:755.040000pt;}
.y101{bottom:755.254400pt;}
.ya6{bottom:757.960960pt;}
.y229{bottom:758.746240pt;}
.y194{bottom:761.787520pt;}
.y1b1{bottom:763.262080pt;}
.y49{bottom:764.337280pt;}
.y26c{bottom:766.912667pt;}
.y8a{bottom:772.466560pt;}
.y100{bottom:773.168640pt;}
.y245{bottom:773.280000pt;}
.y202{bottom:774.746880pt;}
.y76{bottom:775.832000pt;}
.ya5{bottom:775.875200pt;}
.y25{bottom:778.539520pt;}
.y120{bottom:779.040000pt;}
.yd5{bottom:779.680000pt;}
.y193{bottom:779.701760pt;}
.y165{bottom:781.176320pt;}
.y2{bottom:781.661334pt;}
.y48{bottom:782.251520pt;}
.y140{bottom:783.365760pt;}
.yff{bottom:791.082880pt;}
.y26b{bottom:792.672640pt;}
.ya4{bottom:793.789440pt;}
.yd4{bottom:797.600000pt;}
.y192{bottom:797.616000pt;}
.y89{bottom:798.388480pt;}
.y201{bottom:798.740480pt;}
.y164{bottom:799.090560pt;}
.y47{bottom:800.165760pt;}
.y244{bottom:800.485120pt;}
.y13f{bottom:801.280000pt;}
.y75{bottom:806.720000pt;}
.y1b0{bottom:806.936320pt;}
.y11f{bottom:808.835200pt;}
.yfe{bottom:808.849920pt;}
.y26a{bottom:810.586880pt;}
.y200{bottom:814.741120pt;}
.y191{bottom:815.383040pt;}
.y46{bottom:818.080000pt;}
.y243{bottom:819.680000pt;}
.ya3{bottom:819.711360pt;}
.yd1{bottom:820.000000pt;}
.y88{bottom:824.310400pt;}
.y163{bottom:824.850560pt;}
.yfd{bottom:826.764160pt;}
.y269{bottom:828.663067pt;}
.y1ff{bottom:830.741760pt;}
.y24{bottom:831.036160pt;}
.y190{bottom:833.297280pt;}
.y11e{bottom:834.757120pt;}
.y13e{bottom:835.200000pt;}
.yd3{bottom:836.000000pt;}
.yd0{bottom:836.023040pt;}
.y74{bottom:836.366080pt;}
.ya2{bottom:837.625600pt;}
.y162{bottom:842.764800pt;}
.y45{bottom:843.840000pt;}
.yfc{bottom:844.678400pt;}
.y242{bottom:846.885120pt;}
.y87{bottom:850.070400pt;}
.y18f{bottom:851.211520pt;}
.y11d{bottom:852.671360pt;}
.y13d{bottom:853.120000pt;}
.y73{bottom:854.280320pt;}
.y268{bottom:854.584960pt;}
.y1fe{bottom:854.735360pt;}
.ya1{bottom:855.392640pt;}
.y1{bottom:859.312000pt;}
.y161{bottom:860.679040pt;}
.yfb{bottom:862.592640pt;}
.y241{bottom:866.080000pt;}
.y18e{bottom:869.125760pt;}
.y44{bottom:869.760000pt;}
.ycf{bottom:870.585600pt;}
.y1fd{bottom:870.736000pt;}
.y72{bottom:872.194560pt;}
.y267{bottom:872.499200pt;}
.ya0{bottom:873.306880pt;}
.y23{bottom:875.200000pt;}
.y86{bottom:875.992320pt;}
.y160{bottom:878.593280pt;}
.y228{bottom:886.736640pt;}
.y18d{bottom:887.040000pt;}
.y139{bottom:887.051520pt;}
.y13c{bottom:887.066240pt;}
.y11c{bottom:888.499840pt;}
.yfa{bottom:888.514560pt;}
.y71{bottom:890.108800pt;}
.y9f{bottom:891.221120pt;}
.y240{bottom:893.290240pt;}
.y1fc{bottom:894.729600pt;}
.yce{bottom:896.507520pt;}
.y266{bottom:898.421120pt;}
.y85{bottom:901.914240pt;}
.y138{bottom:904.965760pt;}
.y13b{bottom:904.980480pt;}
.y11b{bottom:906.414080pt;}
.yf9{bottom:906.428800pt;}
.y70{bottom:908.023040pt;}
.y1fb{bottom:910.730240pt;}
.y23f{bottom:912.485120pt;}
.ycd{bottom:914.421760pt;}
.y18c{bottom:916.320000pt;}
.y265{bottom:916.335360pt;}
.y9e{bottom:917.143040pt;}
.y137{bottom:922.880000pt;}
.y13a{bottom:922.894720pt;}
.y11a{bottom:924.328320pt;}
.yf8{bottom:924.343040pt;}
.y6f{bottom:925.937280pt;}
.y1fa{bottom:926.730880pt;}
.y84{bottom:927.836160pt;}
.y23e{bottom:931.680000pt;}
.ycc{bottom:932.336000pt;}
.y264{bottom:934.249600pt;}
.y9d{bottom:935.057280pt;}
.y119{bottom:942.242560pt;}
.yf7{bottom:942.257280pt;}
.y227{bottom:942.731520pt;}
.y6e{bottom:943.851520pt;}
.ycb{bottom:950.250240pt;}
.y69{bottom:950.400000pt;}
.y1f9{bottom:950.724480pt;}
.y9c{bottom:952.971520pt;}
.y83{bottom:953.758080pt;}
.y136{bottom:956.800000pt;}
.y23d{bottom:958.885120pt;}
.yf6{bottom:960.171520pt;}
.y6d{bottom:961.765760pt;}
.y68{bottom:962.556160pt;}
.y1f8{bottom:966.725120pt;}
.yca{bottom:968.164480pt;}
.y9b{bottom:970.885760pt;}
.y135{bottom:974.720000pt;}
.y23c{bottom:978.080000pt;}
.yf5{bottom:978.085760pt;}
.y6c{bottom:979.680000pt;}
.y1f7{bottom:982.725760pt;}
.y18b{bottom:985.931520pt;}
.yc9{bottom:986.078720pt;}
.y67{bottom:988.476160pt;}
.y9a{bottom:988.800000pt;}
.y226{bottom:990.718720pt;}
.y134{bottom:997.120000pt;}
.yc8{bottom:1003.845760pt;}
.y1f6{bottom:1006.719360pt;}
.y133{bottom:1013.120000pt;}
.y66{bottom:1014.398080pt;}
.y6b{bottom:1017.920000pt;}
.yc7{bottom:1021.760000pt;}
.y1f5{bottom:1022.720000pt;}
.y22{bottom:1053.600000pt;}
.h7{height:28.560000pt;}
.h17{height:33.918667pt;}
.h14{height:37.760000pt;}
.h1d{height:37.920000pt;}
.h19{height:39.243750pt;}
.h1a{height:39.251430pt;}
.h1c{height:39.617500pt;}
.h1f{height:40.670520pt;}
.h6{height:40.800000pt;}
.h20{height:42.262500pt;}
.h3{height:42.840000pt;}
.h9{height:48.530000pt;}
.h22{height:48.530213pt;}
.h21{height:48.542800pt;}
.h2{height:48.960000pt;}
.hd{height:49.907812pt;}
.h13{height:50.640000pt;}
.h18{height:52.750000pt;}
.h16{height:57.120000pt;}
.h11{height:59.454720pt;}
.hb{height:60.053760pt;}
.he{height:61.717500pt;}
.hf{height:61.792380pt;}
.h12{height:62.400000pt;}
.h5{height:69.360000pt;}
.h15{height:71.235937pt;}
.h1b{height:85.760000pt;}
.h4{height:105.826671pt;}
.ha{height:113.881600pt;}
.hc{height:117.760000pt;}
.h10{height:154.720000pt;}
.h1e{height:303.762667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:7.841333pt;}
.we{width:15.680000pt;}
.w7{width:106.880000pt;}
.wc{width:158.720000pt;}
.wb{width:179.520000pt;}
.wd{width:226.880000pt;}
.w8{width:297.280000pt;}
.w6{width:307.360000pt;}
.wa{width:333.760000pt;}
.wf{width:391.253333pt;}
.w5{width:420.960000pt;}
.w4{width:421.120000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xd{left:35.520000pt;}
.x12{left:48.800000pt;}
.x2f{left:55.601867pt;}
.x8{left:58.400000pt;}
.x9{left:67.520000pt;}
.x6{left:68.640000pt;}
.x2d{left:73.941733pt;}
.x5{left:78.720000pt;}
.x11{left:84.320000pt;}
.x2c{left:89.230800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x14{left:101.598080pt;}
.x1c{left:104.960000pt;}
.x13{left:110.268160pt;}
.x16{left:114.560000pt;}
.x2b{left:125.177200pt;}
.x19{left:127.040000pt;}
.x10{left:141.600000pt;}
.x1f{left:145.280000pt;}
.x30{left:169.913600pt;}
.x2e{left:178.741467pt;}
.x4{left:180.874667pt;}
.x2a{left:201.449333pt;}
.xc{left:205.760000pt;}
.xe{left:297.280000pt;}
.x1b{left:321.280000pt;}
.x25{left:336.810880pt;}
.x15{left:340.160000pt;}
.x1a{left:347.360000pt;}
.x26{left:349.120000pt;}
.x20{left:352.000000pt;}
.x27{left:353.280000pt;}
.x23{left:362.720000pt;}
.x21{left:366.398080pt;}
.x3{left:404.408000pt;}
.xb{left:421.440000pt;}
.x1e{left:480.000000pt;}
.x22{left:487.190400pt;}
.x18{left:519.680000pt;}
.x1d{left:561.440000pt;}
.x24{left:565.920000pt;}
.x17{left:572.160000pt;}
.x29{left:592.804480pt;}
.xa{left:614.400000pt;}
.x28{left:683.520000pt;}
.xf{left:691.360000pt;}
}




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