
    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_61083004bd352a45eaeab303.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_fb330870df91df4283ce94e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_95b4c9f0dbf90ae26ee29b8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928000;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_3c30e9b69cd35bc807d8143c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_4c21a16fc2074b163ff33fa8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_05f93ea9c48b2507b680552e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070312;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_dc195f3ba5a98b8ac334cf08.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4a4ff6d48419c832bfa486d5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fe728f6f159425414c3b695e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_cff4b8a5449c60e532a76f18.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,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);}
.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;}
.ls6a{letter-spacing:-1.523520px;}
.ls63{letter-spacing:-1.059840px;}
.ls1e{letter-spacing:-0.993600px;}
.ls1d{letter-spacing:-0.861120px;}
.ls37{letter-spacing:-0.728640px;}
.ls33{letter-spacing:-0.596160px;}
.ls20{letter-spacing:-0.463680px;}
.ls1c{letter-spacing:-0.397440px;}
.ls14{letter-spacing:-0.331200px;}
.lsd{letter-spacing:-0.298800px;}
.ls11{letter-spacing:-0.289440px;}
.ls3{letter-spacing:-0.287280px;}
.ls1f{letter-spacing:-0.264960px;}
.ls2{letter-spacing:-0.167760px;}
.ls4{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.132480px;}
.ls6{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.033120px;}
.ls60{letter-spacing:0.059616px;}
.lsc{letter-spacing:0.059760px;}
.ls5b{letter-spacing:0.105984px;}
.ls45{letter-spacing:0.112608px;}
.ls5e{letter-spacing:0.132480px;}
.ls67{letter-spacing:0.205344px;}
.ls57{letter-spacing:0.231840px;}
.ls5{letter-spacing:0.239040px;}
.lsf{letter-spacing:0.264960px;}
.ls1{letter-spacing:0.268920px;}
.ls8{letter-spacing:0.274896px;}
.ls6c{letter-spacing:0.278208px;}
.ls77{letter-spacing:0.298080px;}
.ls21{letter-spacing:0.304704px;}
.ls64{letter-spacing:0.311328px;}
.lsa{letter-spacing:0.322704px;}
.ls78{letter-spacing:0.324576px;}
.lse{letter-spacing:0.331200px;}
.ls38{letter-spacing:0.344448px;}
.ls19{letter-spacing:0.364320px;}
.ls39{letter-spacing:0.370944px;}
.ls76{letter-spacing:0.390816px;}
.ls6d{letter-spacing:0.410688px;}
.ls9{letter-spacing:0.412344px;}
.ls4f{letter-spacing:0.417312px;}
.ls4a{letter-spacing:0.423936px;}
.ls61{letter-spacing:0.430560px;}
.ls23{letter-spacing:0.437184px;}
.ls24{letter-spacing:0.450432px;}
.ls3f{letter-spacing:0.463680px;}
.ls40{letter-spacing:0.470304px;}
.ls12{letter-spacing:0.480960px;}
.ls59{letter-spacing:0.483552px;}
.ls58{letter-spacing:0.490176px;}
.ls75{letter-spacing:0.503424px;}
.ls74{letter-spacing:0.510048px;}
.ls3c{letter-spacing:0.516672px;}
.ls70{letter-spacing:0.523296px;}
.ls2f{letter-spacing:0.536544px;}
.ls73{letter-spacing:0.543168px;}
.ls3d{letter-spacing:0.563040px;}
.ls1a{letter-spacing:0.569664px;}
.ls7{letter-spacing:0.657360px;}
.ls43{letter-spacing:0.675648px;}
.ls1b{letter-spacing:0.721440px;}
.ls62{letter-spacing:0.761760px;}
.ls2c{letter-spacing:0.841680px;}
.ls15{letter-spacing:0.993600px;}
.ls32{letter-spacing:1.026720px;}
.ls65{letter-spacing:1.082160px;}
.ls3b{letter-spacing:1.399680px;}
.ls2b{letter-spacing:1.436400px;}
.ls25{letter-spacing:1.442880px;}
.ls44{letter-spacing:1.477440px;}
.ls26{letter-spacing:1.563120px;}
.ls31{letter-spacing:1.689120px;}
.ls4c{letter-spacing:1.722240px;}
.ls5c{letter-spacing:1.861344px;}
.ls4b{letter-spacing:2.006208px;}
.ls2d{letter-spacing:2.010960px;}
.ls47{letter-spacing:2.099520px;}
.ls3e{letter-spacing:2.177280px;}
.ls29{letter-spacing:2.202480px;}
.ls5f{letter-spacing:2.450880px;}
.ls5a{letter-spacing:3.179520px;}
.ls48{letter-spacing:3.444480px;}
.ls22{letter-spacing:3.908160px;}
.ls55{letter-spacing:3.974400px;}
.ls66{letter-spacing:4.000896px;}
.ls54{letter-spacing:4.153248px;}
.ls36{letter-spacing:4.636800px;}
.ls72{letter-spacing:4.729536px;}
.ls2e{letter-spacing:5.365440px;}
.ls2a{letter-spacing:5.405184px;}
.ls49{letter-spacing:5.531040px;}
.ls56{letter-spacing:6.312672px;}
.ls30{letter-spacing:6.756480px;}
.ls68{letter-spacing:6.782976px;}
.ls27{letter-spacing:7.485120px;}
.ls34{letter-spacing:7.491744px;}
.ls6e{letter-spacing:7.657344px;}
.ls17{letter-spacing:8.213760px;}
.ls41{letter-spacing:9.671040px;}
.ls3a{letter-spacing:10.399680px;}
.ls35{letter-spacing:11.128320px;}
.ls16{letter-spacing:11.856960px;}
.ls52{letter-spacing:12.519360px;}
.ls50{letter-spacing:13.976640px;}
.ls51{letter-spacing:14.148864px;}
.ls42{letter-spacing:15.433920px;}
.ls6f{letter-spacing:15.566400px;}
.ls46{letter-spacing:16.447392px;}
.ls69{letter-spacing:16.891200px;}
.ls71{letter-spacing:17.553600px;}
.ls5d{letter-spacing:23.448960px;}
.ls6b{letter-spacing:26.959680px;}
.ls4d{letter-spacing:39.465792px;}
.ls28{letter-spacing:45.486000px;}
.ls18{letter-spacing:46.206000px;}
.ls10{letter-spacing:66.571200px;}
.ls53{letter-spacing:846.000000px;}
.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;}
}
.ws27{word-spacing:-54.000000px;}
.ws90{word-spacing:-34.989840px;}
.ws58{word-spacing:-34.268400px;}
.ws22{word-spacing:-34.148160px;}
.ws19{word-spacing:-33.907680px;}
.ws59{word-spacing:-28.823760px;}
.ws68{word-spacing:-28.632240px;}
.ws69{word-spacing:-23.794560px;}
.ws1{word-spacing:-22.464000px;}
.ws3{word-spacing:-20.880000px;}
.ws2{word-spacing:-20.736000px;}
.ws1b{word-spacing:-18.745920px;}
.ws49{word-spacing:-18.679680px;}
.ws23{word-spacing:-18.414720px;}
.ws1a{word-spacing:-18.282240px;}
.ws26{word-spacing:-18.149760px;}
.ws25{word-spacing:-18.083520px;}
.ws5f{word-spacing:-18.017280px;}
.ws60{word-spacing:-17.818560px;}
.ws7c{word-spacing:-17.686080px;}
.ws24{word-spacing:-17.553600px;}
.ws48{word-spacing:-17.421120px;}
.ws15{word-spacing:-16.553520px;}
.ws14{word-spacing:-16.493760px;}
.ws16{word-spacing:-16.314480px;}
.ws7a{word-spacing:-4.570560px;}
.ws8b{word-spacing:-3.974400px;}
.ws46{word-spacing:-3.841920px;}
.ws8a{word-spacing:-3.643200px;}
.ws55{word-spacing:-3.179520px;}
.ws6f{word-spacing:-3.113280px;}
.ws7d{word-spacing:-2.848320px;}
.ws10{word-spacing:-2.808720px;}
.ws41{word-spacing:-2.450880px;}
.ws75{word-spacing:-2.252160px;}
.ws5d{word-spacing:-2.202480px;}
.ws74{word-spacing:-2.099520px;}
.wsd{word-spacing:-2.091600px;}
.ws5e{word-spacing:-2.010960px;}
.ws3c{word-spacing:-1.722240px;}
.ws6b{word-spacing:-1.589760px;}
.ws4c{word-spacing:-1.523520px;}
.ws77{word-spacing:-1.477440px;}
.wsa{word-spacing:-1.374480px;}
.ws4b{word-spacing:-1.082160px;}
.ws2e{word-spacing:-0.993600px;}
.ws82{word-spacing:-0.961920px;}
.ws7e{word-spacing:-0.794880px;}
.ws91{word-spacing:-0.721440px;}
.ws6e{word-spacing:-0.699840px;}
.ws64{word-spacing:-0.574560px;}
.ws94{word-spacing:-0.397440px;}
.ws5a{word-spacing:-0.360720px;}
.ws1f{word-spacing:-0.331200px;}
.ws9{word-spacing:-0.298800px;}
.ws21{word-spacing:-0.264960px;}
.ws4a{word-spacing:-0.240480px;}
.ws7{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.119520px;}
.ws34{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.059760px;}
.ws73{word-spacing:0.066240px;}
.wsc{word-spacing:0.119520px;}
.ws1d{word-spacing:0.132480px;}
.ws8{word-spacing:0.144000px;}
.ws5{word-spacing:0.167760px;}
.ws53{word-spacing:0.264960px;}
.ws35{word-spacing:0.331200px;}
.ws83{word-spacing:0.360720px;}
.ws38{word-spacing:0.397440px;}
.ws1e{word-spacing:0.463680px;}
.ws6{word-spacing:0.478800px;}
.ws5b{word-spacing:0.480960px;}
.ws1c{word-spacing:0.578880px;}
.ws7f{word-spacing:0.596160px;}
.ws20{word-spacing:0.662400px;}
.ws4{word-spacing:0.671040px;}
.ws65{word-spacing:0.728640px;}
.ws63{word-spacing:0.766080px;}
.ws18{word-spacing:0.776880px;}
.ws3d{word-spacing:0.861120px;}
.ws2f{word-spacing:0.993600px;}
.ws80{word-spacing:1.059840px;}
.ws2c{word-spacing:1.192320px;}
.ws76{word-spacing:1.391040px;}
.ws8d{word-spacing:1.523520px;}
.ws2d{word-spacing:1.920960px;}
.ws67{word-spacing:2.119680px;}
.ws39{word-spacing:2.583360px;}
.ws6a{word-spacing:2.782080px;}
.ws87{word-spacing:2.914560px;}
.ws31{word-spacing:3.312000px;}
.ws7b{word-spacing:3.510720px;}
.ws2b{word-spacing:4.040640px;}
.ws85{word-spacing:4.173120px;}
.ws72{word-spacing:4.239360px;}
.wsf{word-spacing:4.422240px;}
.ws32{word-spacing:4.769280px;}
.ws81{word-spacing:4.901760px;}
.wsb{word-spacing:5.139360px;}
.ws3e{word-spacing:5.497920px;}
.ws33{word-spacing:5.630400px;}
.ws3f{word-spacing:5.696640px;}
.wse{word-spacing:5.856480px;}
.ws40{word-spacing:6.226560px;}
.ws11{word-spacing:6.573600px;}
.ws44{word-spacing:6.955200px;}
.ws12{word-spacing:7.290720px;}
.ws43{word-spacing:7.683840px;}
.ws30{word-spacing:8.346240px;}
.ws92{word-spacing:8.611200px;}
.ws2a{word-spacing:9.074880px;}
.ws4f{word-spacing:9.803520px;}
.ws84{word-spacing:9.936000px;}
.ws78{word-spacing:10.002240px;}
.ws56{word-spacing:10.532160px;}
.ws57{word-spacing:10.730880px;}
.ws3a{word-spacing:11.260800px;}
.ws3b{word-spacing:11.592000px;}
.ws28{word-spacing:11.989440px;}
.ws29{word-spacing:12.254400px;}
.ws66{word-spacing:12.718080px;}
.ws4e{word-spacing:13.380480px;}
.ws54{word-spacing:14.109120px;}
.ws36{word-spacing:14.241600px;}
.ws37{word-spacing:14.837760px;}
.ws62{word-spacing:15.566400px;}
.ws45{word-spacing:16.295040px;}
.ws8c{word-spacing:17.023680px;}
.ws50{word-spacing:17.752320px;}
.ws5c{word-spacing:18.480960px;}
.ws51{word-spacing:19.143360px;}
.ws52{word-spacing:19.342080px;}
.ws42{word-spacing:19.872000px;}
.ws4d{word-spacing:20.136960px;}
.ws86{word-spacing:21.329280px;}
.ws93{word-spacing:22.057920px;}
.ws71{word-spacing:22.786560px;}
.ws70{word-spacing:23.515200px;}
.ws61{word-spacing:24.906240px;}
.ws88{word-spacing:25.634880px;}
.ws8f{word-spacing:26.363520px;}
.ws8e{word-spacing:27.092160px;}
.ws47{word-spacing:27.820800px;}
.ws6d{word-spacing:34.312320px;}
.ws6c{word-spacing:35.040960px;}
.ws89{word-spacing:35.239680px;}
.ws79{word-spacing:39.346560px;}
._9{margin-left:-18.303768px;}
._3{margin-left:-14.506560px;}
._4{margin-left:-12.585600px;}
._7{margin-left:-11.545200px;}
._6{margin-left:-10.487448px;}
._8{margin-left:-9.071136px;}
._5{margin-left:-6.822720px;}
._15{margin-left:-4.149936px;}
._10{margin-left:-2.604888px;}
._2{margin-left:-1.237032px;}
._0{width:1.123992px;}
._1{width:2.182032px;}
._b{width:3.846096px;}
._c{width:4.882320px;}
._11{width:6.690240px;}
._a{width:8.412480px;}
._14{width:10.286640px;}
._16{width:11.942640px;}
._12{width:13.271616px;}
._d{width:14.393520px;}
._e{width:16.162560px;}
._f{width:20.136960px;}
._13{width:35.350632px;}
.fc4{color:rgb(59,61,63);}
.fc3{color:rgb(204,0,204);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(227,5,19);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:120.240000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y22{bottom:139.264499px;}
.y6a{bottom:153.196020px;}
.y334{bottom:153.720000px;}
.yaa{bottom:160.329600px;}
.y25d{bottom:162.069120px;}
.y15f{bottom:162.099360px;}
.y187{bottom:162.134640px;}
.y283{bottom:164.244240px;}
.y2dd{bottom:167.369760px;}
.y144{bottom:167.929920px;}
.y2fb{bottom:169.374960px;}
.y333{bottom:169.560000px;}
.yf3{bottom:170.808480px;}
.y332{bottom:171.180000px;}
.y2e6{bottom:172.334160px;}
.y241{bottom:172.399680px;}
.y29b{bottom:172.404720px;}
.y1ec{bottom:172.429920px;}
.y1b9{bottom:172.434960px;}
.y1cf{bottom:172.440000px;}
.y69{bottom:172.632960px;}
.y331{bottom:172.980000px;}
.y330{bottom:174.780000px;}
.y32f{bottom:176.400000px;}
.y32e{bottom:178.200000px;}
.y32d{bottom:179.820000px;}
.y32c{bottom:181.620000px;}
.ya9{bottom:182.834640px;}
.y32b{bottom:183.240000px;}
.y25c{bottom:184.574160px;}
.y15e{bottom:184.604400px;}
.y176{bottom:184.634640px;}
.y186{bottom:184.639680px;}
.y32a{bottom:185.040000px;}
.y282{bottom:186.749280px;}
.y329{bottom:186.840000px;}
.y328{bottom:188.460000px;}
.y2dc{bottom:189.874800px;}
.y327{bottom:190.260000px;}
.y143{bottom:190.434960px;}
.y2fa{bottom:191.880000px;}
.y68{bottom:192.069900px;}
.yf2{bottom:193.313520px;}
.y326{bottom:193.680000px;}
.y2e5{bottom:194.839200px;}
.y110{bottom:194.849280px;}
.y240{bottom:194.904720px;}
.y29a{bottom:194.909760px;}
.y19b{bottom:194.924880px;}
.y1ce{bottom:194.934960px;}
.y1b8{bottom:194.940000px;}
.y325{bottom:195.480000px;}
.y19{bottom:196.933500px;}
.y324{bottom:197.100000px;}
.y323{bottom:198.900000px;}
.y322{bottom:200.520000px;}
.y321{bottom:202.320000px;}
.y320{bottom:203.940000px;}
.ya8{bottom:205.339680px;}
.y31f{bottom:205.740000px;}
.y25b{bottom:207.079200px;}
.y15d{bottom:207.109440px;}
.y175{bottom:207.139680px;}
.y185{bottom:207.144720px;}
.y31e{bottom:207.540000px;}
.y210{bottom:208.080000px;}
.y31d{bottom:209.160000px;}
.y281{bottom:209.254320px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y31c{bottom:210.960000px;}
.y67{bottom:211.686120px;}
.y2db{bottom:212.379840px;}
.y31b{bottom:212.580000px;}
.y142{bottom:212.940000px;}
.y2f9{bottom:214.349760px;}
.yf1{bottom:215.818560px;}
.y31a{bottom:217.243440px;}
.y2e4{bottom:217.344240px;}
.y10f{bottom:217.354320px;}
.y23f{bottom:217.409760px;}
.y299{bottom:217.414800px;}
.y19a{bottom:217.429920px;}
.y1b7{bottom:217.434960px;}
.y1cd{bottom:217.440000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ya7{bottom:227.844720px;}
.y20f{bottom:229.574160px;}
.y25a{bottom:229.584240px;}
.y15c{bottom:229.614480px;}
.y174{bottom:229.644720px;}
.y184{bottom:229.649760px;}
.y66{bottom:231.123060px;}
.y280{bottom:231.759360px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y2da{bottom:234.884880px;}
.y2f8{bottom:236.854800px;}
.y141{bottom:237.066480px;}
.yf0{bottom:238.323600px;}
.y319{bottom:239.748480px;}
.y1eb{bottom:239.844240px;}
.y2e3{bottom:239.849280px;}
.y10e{bottom:239.859360px;}
.y22e{bottom:239.904720px;}
.y23e{bottom:239.914800px;}
.y298{bottom:239.919840px;}
.y199{bottom:239.934960px;}
.y1b6{bottom:239.940000px;}
.ya6{bottom:250.349760px;}
.y65{bottom:250.560000px;}
.y64{bottom:250.569900px;}
.y20e{bottom:252.079200px;}
.y259{bottom:252.089280px;}
.y15b{bottom:252.119520px;}
.y173{bottom:252.149760px;}
.y183{bottom:252.154800px;}
.y27f{bottom:254.264400px;}
.y2d9{bottom:257.389920px;}
.y2f7{bottom:259.359840px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yef{bottom:260.828640px;}
.y318{bottom:262.253520px;}
.y1ea{bottom:262.349280px;}
.y2e2{bottom:262.354320px;}
.y10d{bottom:262.364400px;}
.y22d{bottom:262.409760px;}
.y23d{bottom:262.419840px;}
.y1b5{bottom:262.424880px;}
.y198{bottom:262.440000px;}
.y1cc{bottom:263.160000px;}
.y140{bottom:264.789000px;}
.y63{bottom:270.186120px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ya5{bottom:272.854800px;}
.y20d{bottom:274.584240px;}
.y258{bottom:274.594320px;}
.y15a{bottom:274.624560px;}
.y172{bottom:274.654800px;}
.y182{bottom:274.659840px;}
.y27e{bottom:276.769440px;}
.y2d8{bottom:279.894960px;}
.y2f6{bottom:281.864880px;}
.yee{bottom:283.333680px;}
.y317{bottom:284.758560px;}
.y1e9{bottom:284.854320px;}
.y2e1{bottom:284.859360px;}
.y10c{bottom:284.869440px;}
.y22c{bottom:284.914800px;}
.y1cb{bottom:284.919840px;}
.y23c{bottom:284.924880px;}
.y1b4{bottom:284.929920px;}
.y197{bottom:284.934960px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y62{bottom:289.623060px;}
.y13f{bottom:292.320000px;}
.ya4{bottom:295.359840px;}
.y20c{bottom:297.089280px;}
.y257{bottom:297.099360px;}
.y159{bottom:297.129600px;}
.y171{bottom:297.159840px;}
.y181{bottom:297.164880px;}
.y27d{bottom:299.274480px;}
.y2d7{bottom:302.400000px;}
.y2f5{bottom:304.369920px;}
.yed{bottom:305.838720px;}
.y120{bottom:307.263600px;}
.y1e8{bottom:307.359360px;}
.y2e0{bottom:307.364400px;}
.y10b{bottom:307.374480px;}
.y22b{bottom:307.419840px;}
.y1ca{bottom:307.424880px;}
.y23b{bottom:307.429920px;}
.y1b3{bottom:307.434960px;}
.y196{bottom:307.440000px;}
.y61{bottom:309.060000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y33{bottom:312.840000px;}
.ya3{bottom:317.864880px;}
.y13e{bottom:318.154320px;}
.y20b{bottom:319.594320px;}
.y256{bottom:319.604400px;}
.y158{bottom:319.634640px;}
.y170{bottom:319.664880px;}
.y180{bottom:319.669920px;}
.y27c{bottom:321.779520px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2d6{bottom:324.879840px;}
.y2f4{bottom:326.874960px;}
.yec{bottom:328.343760px;}
.y60{bottom:328.720140px;}
.y11f{bottom:329.768640px;}
.y2b3{bottom:329.824080px;}
.y1e7{bottom:329.864400px;}
.y2df{bottom:329.869440px;}
.y10a{bottom:329.879520px;}
.y22a{bottom:329.924880px;}
.y1c9{bottom:329.929920px;}
.y195{bottom:329.934960px;}
.y1b2{bottom:329.940000px;}
.y32{bottom:335.340000px;}
.ya2{bottom:340.369920px;}
.y13d{bottom:340.659360px;}
.y20a{bottom:342.099360px;}
.y255{bottom:342.109440px;}
.y157{bottom:342.139680px;}
.y16f{bottom:342.169920px;}
.y17f{bottom:342.174960px;}
.y27b{bottom:344.284560px;}
.y2d5{bottom:347.384880px;}
.y10{bottom:348.133500px;}
.y5f{bottom:348.157080px;}
.y2f3{bottom:349.380000px;}
.yeb{bottom:350.848800px;}
.y11e{bottom:352.273680px;}
.y2b2{bottom:352.329120px;}
.y1e6{bottom:352.369440px;}
.y2de{bottom:352.374480px;}
.y109{bottom:352.384560px;}
.y1b1{bottom:352.419840px;}
.y229{bottom:352.429920px;}
.y1c8{bottom:352.434960px;}
.y194{bottom:352.440000px;}
.y31{bottom:357.840000px;}
.ya1{bottom:362.874960px;}
.y13c{bottom:363.164400px;}
.y209{bottom:364.604400px;}
.y254{bottom:364.614480px;}
.y156{bottom:364.644720px;}
.y16e{bottom:364.674960px;}
.y17e{bottom:364.680000px;}
.y27a{bottom:366.789600px;}
.y5e{bottom:367.594020px;}
.y2d4{bottom:369.889920px;}
.y2f2{bottom:371.869920px;}
.yea{bottom:373.353840px;}
.y11d{bottom:374.778720px;}
.y2b1{bottom:374.834160px;}
.y1e5{bottom:374.874480px;}
.ycb{bottom:374.879520px;}
.y108{bottom:374.889600px;}
.y193{bottom:374.914800px;}
.y1b0{bottom:374.924880px;}
.y228{bottom:374.934960px;}
.y1c7{bottom:374.940000px;}
.y30{bottom:380.340000px;}
.y9f{bottom:385.359840px;}
.ya0{bottom:385.380000px;}
.y13b{bottom:385.669440px;}
.yf{bottom:386.785499px;}
.y208{bottom:387.109440px;}
.y253{bottom:387.119520px;}
.y16c{bottom:387.129600px;}
.y155{bottom:387.149760px;}
.y16d{bottom:387.180000px;}
.y5d{bottom:387.210240px;}
.y17d{bottom:387.900000px;}
.y279{bottom:389.294640px;}
.y2d3{bottom:392.394960px;}
.y2f1{bottom:394.374960px;}
.ye9{bottom:395.858880px;}
.y11c{bottom:397.283760px;}
.y2b0{bottom:397.339200px;}
.y1e4{bottom:397.379520px;}
.yca{bottom:397.384560px;}
.y107{bottom:397.394640px;}
.y192{bottom:397.419840px;}
.y1af{bottom:397.429920px;}
.y227{bottom:397.440000px;}
.y2f{bottom:402.840000px;}
.y5c{bottom:406.647180px;}
.y312{bottom:407.839680px;}
.y9e{bottom:407.864880px;}
.ye{bottom:408.044999px;}
.y13a{bottom:408.174480px;}
.y207{bottom:409.614480px;}
.y252{bottom:409.624560px;}
.y16b{bottom:409.634640px;}
.y154{bottom:409.654800px;}
.y17c{bottom:409.664880px;}
.y278{bottom:411.799680px;}
.y2d2{bottom:414.900000px;}
.y2f0{bottom:416.880000px;}
.ye8{bottom:418.363920px;}
.y11b{bottom:419.788800px;}
.y2af{bottom:419.844240px;}
.y1e3{bottom:419.884560px;}
.yc9{bottom:419.889600px;}
.y106{bottom:419.899680px;}
.y297{bottom:419.914800px;}
.y191{bottom:419.924880px;}
.y1ae{bottom:419.934960px;}
.y82{bottom:421.975440px;}
.y2e{bottom:425.340000px;}
.y5b{bottom:426.084120px;}
.y311{bottom:430.344720px;}
.y9d{bottom:430.369920px;}
.y139{bottom:430.679520px;}
.y206{bottom:432.119520px;}
.y251{bottom:432.129600px;}
.y16a{bottom:432.139680px;}
.y153{bottom:432.159840px;}
.y17b{bottom:432.169920px;}
.y277{bottom:434.304720px;}
.y2d1{bottom:437.379840px;}
.y2ef{bottom:439.374960px;}
.ye7{bottom:440.868960px;}
.y11a{bottom:442.293840px;}
.y2ae{bottom:442.349280px;}
.y1e2{bottom:442.389600px;}
.yc8{bottom:442.394640px;}
.y105{bottom:442.404720px;}
.y296{bottom:442.419840px;}
.y190{bottom:442.429920px;}
.y1ad{bottom:442.440000px;}
.y5a{bottom:445.700340px;}
.y2d{bottom:447.840000px;}
.y310{bottom:452.849760px;}
.y9c{bottom:452.874960px;}
.y138{bottom:453.184560px;}
.y81{bottom:454.383360px;}
.y205{bottom:454.624560px;}
.y250{bottom:454.634640px;}
.y169{bottom:454.644720px;}
.y152{bottom:454.664880px;}
.y17a{bottom:454.674960px;}
.y276{bottom:456.809760px;}
.y2d0{bottom:459.884880px;}
.y2ee{bottom:461.880000px;}
.ye6{bottom:463.374000px;}
.y119{bottom:464.798880px;}
.y2ad{bottom:464.854320px;}
.y226{bottom:464.874480px;}
.y1e1{bottom:464.894640px;}
.yc7{bottom:464.899680px;}
.y104{bottom:464.909760px;}
.y295{bottom:464.924880px;}
.y1ac{bottom:464.929920px;}
.y18f{bottom:464.934960px;}
.y59{bottom:465.137280px;}
.y2c{bottom:470.340000px;}
.y30f{bottom:475.354800px;}
.y9b{bottom:475.380000px;}
.y137{bottom:475.689600px;}
.y204{bottom:477.129600px;}
.y24f{bottom:477.139680px;}
.y168{bottom:477.149760px;}
.y151{bottom:477.169920px;}
.y179{bottom:477.180000px;}
.y275{bottom:479.314800px;}
.y2cf{bottom:482.389920px;}
.y2ed{bottom:484.374960px;}
.y58{bottom:484.574220px;}
.ye5{bottom:485.879040px;}
.y80{bottom:486.609120px;}
.y118{bottom:487.303920px;}
.y2ac{bottom:487.359360px;}
.y225{bottom:487.379520px;}
.y1e0{bottom:487.399680px;}
.yc6{bottom:487.404720px;}
.y103{bottom:487.414800px;}
.y294{bottom:487.429920px;}
.y1ab{bottom:487.434960px;}
.y18e{bottom:487.440000px;}
.y2b{bottom:492.840000px;}
.y30e{bottom:497.859840px;}
.y9a{bottom:497.869920px;}
.y136{bottom:498.194640px;}
.y203{bottom:499.634640px;}
.y24e{bottom:499.644720px;}
.y167{bottom:499.654800px;}
.y150{bottom:499.674960px;}
.y274{bottom:501.819840px;}
.yd{bottom:502.864502px;}
.y57{bottom:504.190440px;}
.y2ce{bottom:504.894960px;}
.y2ec{bottom:506.880000px;}
.ye4{bottom:508.384080px;}
.y117{bottom:509.808960px;}
.y2ab{bottom:509.864400px;}
.y23a{bottom:509.874480px;}
.y224{bottom:509.884560px;}
.y1df{bottom:509.904720px;}
.yc5{bottom:509.909760px;}
.y102{bottom:509.919840px;}
.y1c6{bottom:509.934960px;}
.y18d{bottom:509.940000px;}
.y2a{bottom:515.340000px;}
.y7f{bottom:518.834880px;}
.y30d{bottom:520.364880px;}
.y99{bottom:520.374960px;}
.y135{bottom:520.699680px;}
.yc{bottom:520.864502px;}
.y202{bottom:522.139680px;}
.y14e{bottom:522.144720px;}
.y24d{bottom:522.149760px;}
.y166{bottom:522.159840px;}
.y14f{bottom:522.180000px;}
.y56{bottom:523.627380px;}
.y273{bottom:524.324880px;}
.y2cd{bottom:527.400000px;}
.y2eb{bottom:529.284240px;}
.ye3{bottom:530.889120px;}
.y116{bottom:532.314000px;}
.y2aa{bottom:532.369440px;}
.y239{bottom:532.379520px;}
.y223{bottom:532.389600px;}
.y1de{bottom:532.409760px;}
.yc4{bottom:532.414800px;}
.y101{bottom:532.424880px;}
.y1aa{bottom:532.434960px;}
.y18c{bottom:532.440000px;}
.yb{bottom:538.864499px;}
.y7e{bottom:541.339920px;}
.y30c{bottom:542.869920px;}
.y98{bottom:542.880000px;}
.y134{bottom:543.204720px;}
.y201{bottom:544.644720px;}
.y14d{bottom:544.649760px;}
.y24c{bottom:544.654800px;}
.y165{bottom:544.664880px;}
.y178{bottom:544.674960px;}
.y272{bottom:546.829920px;}
.y2cc{bottom:549.884880px;}
.y2ea{bottom:551.789280px;}
.ye2{bottom:553.394160px;}
.y115{bottom:554.819040px;}
.y2a9{bottom:554.874480px;}
.y238{bottom:554.884560px;}
.y222{bottom:554.894640px;}
.y293{bottom:554.904720px;}
.y1dd{bottom:554.914800px;}
.yc3{bottom:554.919840px;}
.y100{bottom:554.929920px;}
.y1c5{bottom:554.934960px;}
.y1a9{bottom:554.940000px;}
.ya{bottom:556.864499px;}
.y97{bottom:565.269120px;}
.y30b{bottom:565.374960px;}
.y133{bottom:565.709760px;}
.y200{bottom:567.149760px;}
.y14c{bottom:567.154800px;}
.y24b{bottom:567.159840px;}
.y164{bottom:567.169920px;}
.y177{bottom:567.180000px;}
.y271{bottom:569.334960px;}
.y2cb{bottom:572.389920px;}
.y7d{bottom:573.565680px;}
.y2e9{bottom:574.294320px;}
.ye1{bottom:575.899200px;}
.y114{bottom:577.324080px;}
.y2a8{bottom:577.379520px;}
.y237{bottom:577.389600px;}
.y221{bottom:577.399680px;}
.y292{bottom:577.409760px;}
.y1a8{bottom:577.414800px;}
.y1dc{bottom:577.419840px;}
.yc2{bottom:577.424880px;}
.yff{bottom:577.434960px;}
.y1c4{bottom:577.440000px;}
.y96{bottom:587.774160px;}
.y30a{bottom:587.880000px;}
.y132{bottom:588.214800px;}
.y1ff{bottom:589.654800px;}
.y14b{bottom:589.659840px;}
.y24a{bottom:589.664880px;}
.y163{bottom:589.674960px;}
.y270{bottom:591.840000px;}
.y2ca{bottom:594.894960px;}
.y2e8{bottom:596.799360px;}
.ye0{bottom:598.404240px;}
.y55{bottom:599.223780px;}
.y113{bottom:599.829120px;}
.y2a7{bottom:599.884560px;}
.y236{bottom:599.894640px;}
.y220{bottom:599.904720px;}
.y291{bottom:599.914800px;}
.y1a7{bottom:599.919840px;}
.y1db{bottom:599.924880px;}
.yc1{bottom:599.929920px;}
.yfe{bottom:599.940000px;}
.y7c{bottom:605.791440px;}
.y95{bottom:610.279200px;}
.y309{bottom:610.354800px;}
.y131{bottom:610.719840px;}
.y1fe{bottom:612.159840px;}
.y14a{bottom:612.164880px;}
.y249{bottom:612.169920px;}
.y162{bottom:612.180000px;}
.y26f{bottom:615.960000px;}
.y2c9{bottom:617.400000px;}
.y54{bottom:618.840000px;}
.y2e7{bottom:619.304400px;}
.ydf{bottom:620.909280px;}
.y29{bottom:621.900000px;}
.y112{bottom:622.334160px;}
.y2a6{bottom:622.389600px;}
.y235{bottom:622.399680px;}
.y21f{bottom:622.409760px;}
.y290{bottom:622.419840px;}
.y18b{bottom:622.424880px;}
.y1da{bottom:622.429920px;}
.yc0{bottom:622.434960px;}
.y94{bottom:632.784240px;}
.y308{bottom:632.859840px;}
.y130{bottom:633.224880px;}
.y1fd{bottom:634.664880px;}
.y149{bottom:634.669920px;}
.y248{bottom:634.674960px;}
.y161{bottom:636.489000px;}
.y7b{bottom:638.017200px;}
.y53{bottom:638.286840px;}
.y2c8{bottom:639.804240px;}
.y26e{bottom:641.809440px;}
.yde{bottom:643.414320px;}
.y111{bottom:644.839200px;}
.y2a5{bottom:644.894640px;}
.y234{bottom:644.904720px;}
.y21e{bottom:644.914800px;}
.y28f{bottom:644.924880px;}
.y18a{bottom:644.929920px;}
.y1d9{bottom:644.934960px;}
.ybf{bottom:644.940000px;}
.y9{bottom:645.510000px;}
.y93{bottom:655.289280px;}
.y307{bottom:655.364880px;}
.y12f{bottom:655.729920px;}
.y1fc{bottom:657.169920px;}
.y148{bottom:657.174960px;}
.y247{bottom:657.180000px;}
.y52{bottom:657.723780px;}
.y2c7{bottom:662.309280px;}
.y160{bottom:664.020000px;}
.y26d{bottom:664.314480px;}
.ydd{bottom:665.919360px;}
.y8{bottom:666.771000px;}
.yfd{bottom:667.344240px;}
.y2a4{bottom:667.399680px;}
.y233{bottom:667.409760px;}
.y21d{bottom:667.419840px;}
.y28e{bottom:667.429920px;}
.ybe{bottom:667.434960px;}
.y1d8{bottom:667.440000px;}
.y7a{bottom:670.425120px;}
.y51{bottom:677.340000px;}
.y92{bottom:677.794320px;}
.y306{bottom:677.869920px;}
.y12e{bottom:678.234960px;}
.y1fb{bottom:679.674960px;}
.y147{bottom:679.680000px;}
.y246{bottom:681.489000px;}
.y28{bottom:681.840000px;}
.y2c6{bottom:684.814320px;}
.y26c{bottom:686.819520px;}
.ydc{bottom:688.424400px;}
.yfc{bottom:689.849280px;}
.y2a3{bottom:689.904720px;}
.y232{bottom:689.914800px;}
.y21c{bottom:689.924880px;}
.y1d7{bottom:689.929920px;}
.y28d{bottom:689.934960px;}
.ybd{bottom:689.940000px;}
.y79{bottom:692.930160px;}
.y50{bottom:693.900000px;}
.y4f{bottom:695.520000px;}
.y4e{bottom:697.320000px;}
.y4d{bottom:698.940000px;}
.y91{bottom:700.299360px;}
.y305{bottom:700.374960px;}
.y4c{bottom:700.740000px;}
.y1fa{bottom:702.180000px;}
.y4b{bottom:702.540000px;}
.y146{bottom:703.989000px;}
.y4a{bottom:704.160000px;}
.y49{bottom:705.960000px;}
.y2c5{bottom:707.319360px;}
.y48{bottom:707.580000px;}
.y245{bottom:709.020000px;}
.y26b{bottom:709.324560px;}
.ydb{bottom:710.929440px;}
.y47{bottom:712.308240px;}
.yfb{bottom:712.354320px;}
.y2a2{bottom:712.409760px;}
.y231{bottom:712.419840px;}
.ybc{bottom:712.424880px;}
.y21b{bottom:712.429920px;}
.y189{bottom:712.434960px;}
.y28c{bottom:712.440000px;}
.y1a6{bottom:713.160000px;}
.y90{bottom:722.804400px;}
.y304{bottom:722.880000px;}
.y12d{bottom:723.214800px;}
.y78{bottom:725.155920px;}
.y7{bottom:726.298500px;}
.y1f9{bottom:726.489000px;}
.y27{bottom:726.660180px;}
.y2c4{bottom:729.824400px;}
.y145{bottom:731.520000px;}
.y26a{bottom:731.829600px;}
.y46{bottom:731.924460px;}
.yda{bottom:733.434480px;}
.yfa{bottom:734.859360px;}
.y2a1{bottom:734.914800px;}
.y1a5{bottom:734.924880px;}
.ybb{bottom:734.929920px;}
.y21a{bottom:734.934960px;}
.y188{bottom:734.940000px;}
.y8f{bottom:745.309440px;}
.y303{bottom:745.380000px;}
.y12c{bottom:745.719840px;}
.y45{bottom:751.361400px;}
.y2c3{bottom:752.329440px;}
.y3{bottom:752.599495px;}
.y1f8{bottom:754.020000px;}
.y269{bottom:754.334640px;}
.y26{bottom:755.460000px;}
.yd9{bottom:755.939520px;}
.yf9{bottom:757.364400px;}
.y77{bottom:757.381680px;}
.y2a0{bottom:757.419840px;}
.y1c3{bottom:757.424880px;}
.y1a4{bottom:757.429920px;}
.yba{bottom:757.434960px;}
.y219{bottom:757.440000px;}
.y8e{bottom:767.814480px;}
.y302{bottom:767.880000px;}
.y12b{bottom:768.224880px;}
.y2c2{bottom:774.834480px;}
.y268{bottom:776.839680px;}
.yd8{bottom:778.444560px;}
.yf8{bottom:779.869440px;}
.y1f7{bottom:779.884560px;}
.y29f{bottom:779.924880px;}
.y1c2{bottom:779.929920px;}
.y1a3{bottom:779.934960px;}
.yb9{bottom:779.940000px;}
.y44{bottom:788.083920px;}
.y76{bottom:789.607440px;}
.y8d{bottom:790.319520px;}
.y301{bottom:790.364880px;}
.y12a{bottom:790.729920px;}
.y2c1{bottom:797.339520px;}
.y267{bottom:799.344720px;}
.yd7{bottom:800.949600px;}
.yf7{bottom:802.374480px;}
.y1f6{bottom:802.389600px;}
.y28b{bottom:802.404720px;}
.yb8{bottom:802.424880px;}
.y29e{bottom:802.429920px;}
.y1c1{bottom:802.434960px;}
.y1a2{bottom:802.440000px;}
.y43{bottom:805.369500px;}
.y8c{bottom:812.824560px;}
.y300{bottom:812.869920px;}
.y129{bottom:813.234960px;}
.y25{bottom:819.000000px;}
.y2c0{bottom:819.844560px;}
.y75{bottom:821.833200px;}
.y266{bottom:821.849760px;}
.yd6{bottom:823.454640px;}
.y42{bottom:824.806440px;}
.yf6{bottom:824.879520px;}
.y1f5{bottom:824.894640px;}
.y28a{bottom:824.909760px;}
.y315{bottom:824.924880px;}
.yb7{bottom:824.929920px;}
.y29d{bottom:824.934960px;}
.y1a1{bottom:824.940000px;}
.y8b{bottom:835.329600px;}
.y2ff{bottom:835.374960px;}
.y128{bottom:835.740000px;}
.y2bf{bottom:842.349600px;}
.y265{bottom:844.354800px;}
.y41{bottom:844.422660px;}
.yd5{bottom:845.959680px;}
.yf5{bottom:847.384560px;}
.y1f4{bottom:847.399680px;}
.y244{bottom:847.409760px;}
.y289{bottom:847.414800px;}
.y1d6{bottom:847.419840px;}
.y1a0{bottom:847.424880px;}
.y314{bottom:847.429920px;}
.yb6{bottom:847.434960px;}
.y29c{bottom:847.440000px;}
.y74{bottom:854.058960px;}
.y8a{bottom:857.834640px;}
.y2fe{bottom:857.880000px;}
.y127{bottom:858.219840px;}
.y40{bottom:863.859600px;}
.y2be{bottom:864.854640px;}
.y264{bottom:866.859840px;}
.yd4{bottom:868.464720px;}
.yf4{bottom:869.889600px;}
.y1f3{bottom:869.904720px;}
.y243{bottom:869.914800px;}
.y288{bottom:869.919840px;}
.y1d5{bottom:869.924880px;}
.y19f{bottom:869.929920px;}
.y313{bottom:869.934960px;}
.yb5{bottom:869.940000px;}
.y2{bottom:879.369000px;}
.y89{bottom:880.339680px;}
.y2fd{bottom:880.380000px;}
.y126{bottom:880.724880px;}
.y3f{bottom:883.296540px;}
.y73{bottom:886.466880px;}
.y2bd{bottom:887.359680px;}
.y263{bottom:889.364880px;}
.yd3{bottom:890.969760px;}
.yb4{bottom:892.394640px;}
.y1f2{bottom:892.409760px;}
.y1c0{bottom:892.419840px;}
.y287{bottom:892.424880px;}
.y1d4{bottom:892.429920px;}
.y19e{bottom:892.434960px;}
.y230{bottom:892.440000px;}
.y24{bottom:892.611540px;}
.y88{bottom:902.844720px;}
.y3e{bottom:902.912760px;}
.y125{bottom:903.229920px;}
.y72{bottom:908.971920px;}
.y2bc{bottom:909.864720px;}
.y262{bottom:911.869920px;}
.yd2{bottom:913.474800px;}
.yb3{bottom:914.899680px;}
.y1f1{bottom:914.914800px;}
.y1bf{bottom:914.924880px;}
.y286{bottom:914.929920px;}
.y1d3{bottom:914.934960px;}
.y19d{bottom:914.940000px;}
.y3d{bottom:922.349700px;}
.y87{bottom:925.349760px;}
.y124{bottom:925.734960px;}
.y2bb{bottom:932.369760px;}
.y261{bottom:934.374960px;}
.yd1{bottom:935.979840px;}
.yb2{bottom:937.404720px;}
.y218{bottom:937.409760px;}
.y1f0{bottom:937.419840px;}
.y1be{bottom:937.429920px;}
.y285{bottom:937.434960px;}
.y19c{bottom:937.440000px;}
.y71{bottom:941.197680px;}
.y23{bottom:941.220000px;}
.y3c{bottom:941.786640px;}
.y86{bottom:947.854800px;}
.y123{bottom:948.240000px;}
.y2ba{bottom:954.874800px;}
.y260{bottom:956.880000px;}
.yd0{bottom:958.484880px;}
.yb1{bottom:959.909760px;}
.y217{bottom:959.914800px;}
.y1ef{bottom:959.924880px;}
.y1d2{bottom:959.929920px;}
.y1bd{bottom:959.934960px;}
.y284{bottom:959.940000px;}
.y3b{bottom:961.402860px;}
.y1{bottom:966.726000px;}
.y85{bottom:970.359840px;}
.y122{bottom:972.357480px;}
.y70{bottom:973.423440px;}
.y2b9{bottom:977.379840px;}
.y3a{bottom:980.839800px;}
.ycf{bottom:980.989920px;}
.y25f{bottom:982.233360px;}
.yb0{bottom:982.414800px;}
.y216{bottom:982.419840px;}
.y1ee{bottom:982.429920px;}
.y1d1{bottom:982.434960px;}
.y1bc{bottom:982.440000px;}
.y84{bottom:992.864880px;}
.y2b8{bottom:999.884880px;}
.y121{bottom:1000.080000px;}
.y39{bottom:1000.276740px;}
.yce{bottom:1003.494960px;}
.yaf{bottom:1004.919840px;}
.y215{bottom:1004.924880px;}
.y2fc{bottom:1004.929920px;}
.y1bb{bottom:1004.934960px;}
.y1d0{bottom:1004.940000px;}
.y6f{bottom:1005.649200px;}
.y242{bottom:1005.660000px;}
.y83{bottom:1015.369920px;}
.y25e{bottom:1016.802360px;}
.y38{bottom:1019.892960px;}
.y2b7{bottom:1022.389920px;}
.ycd{bottom:1026.000000px;}
.yae{bottom:1027.424880px;}
.y214{bottom:1027.429920px;}
.y22f{bottom:1027.434960px;}
.y1ba{bottom:1027.440000px;}
.y6e{bottom:1037.874960px;}
.y37{bottom:1039.329900px;}
.y2b6{bottom:1044.894960px;}
.yad{bottom:1049.929920px;}
.y213{bottom:1049.934960px;}
.y1ed{bottom:1049.940000px;}
.ycc{bottom:1051.371360px;}
.y36{bottom:1058.766840px;}
.y6d{bottom:1060.380000px;}
.y2b5{bottom:1067.400000px;}
.yac{bottom:1072.434960px;}
.y212{bottom:1072.440000px;}
.y35{bottom:1078.383060px;}
.y6c{bottom:1085.760000px;}
.y2b4{bottom:1091.520000px;}
.yab{bottom:1094.940000px;}
.y211{bottom:1095.660000px;}
.y34{bottom:1097.820000px;}
.y6b{bottom:1173.240000px;}
.y316{bottom:1179.180000px;}
.hf{height:4.952813px;}
.h7{height:32.130000px;}
.hd{height:43.506914px;}
.h6{height:45.900000px;}
.h15{height:47.988281px;}
.h3{height:48.195000px;}
.h10{height:48.224531px;}
.he{height:51.385430px;}
.hc{height:52.344000px;}
.ha{height:53.136000px;}
.h2{height:55.080000px;}
.h14{height:56.611406px;}
.h12{height:56.957344px;}
.hb{height:69.617520px;}
.h13{height:69.715898px;}
.h5{height:78.030000px;}
.h11{height:87.538008px;}
.h4{height:119.055004px;}
.h9{height:153.668160px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:148.860000px;}
.x9{left:170.089920px;}
.xa{left:191.536560px;}
.xe{left:196.740000px;}
.xf{left:198.900000px;}
.x4{left:203.484001px;}
.xd{left:207.540000px;}
.x8{left:216.720000px;}
.x19{left:321.120000px;}
.x6{left:322.200000px;}
.x7{left:324.360000px;}
.x14{left:440.640000px;}
.xb{left:442.980000px;}
.xc{left:445.320000px;}
.x3{left:454.959000px;}
.x17{left:482.760000px;}
.x18{left:485.100000px;}
.x1a{left:527.220000px;}
.x1b{left:529.560000px;}
.x15{left:530.820000px;}
.x16{left:533.160000px;}
.x10{left:630.360000px;}
.x11{left:632.700000px;}
.x12{left:662.760000px;}
.x13{left:665.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6a{letter-spacing:-1.354240pt;}
.ls63{letter-spacing:-0.942080pt;}
.ls1e{letter-spacing:-0.883200pt;}
.ls1d{letter-spacing:-0.765440pt;}
.ls37{letter-spacing:-0.647680pt;}
.ls33{letter-spacing:-0.529920pt;}
.ls20{letter-spacing:-0.412160pt;}
.ls1c{letter-spacing:-0.353280pt;}
.ls14{letter-spacing:-0.294400pt;}
.lsd{letter-spacing:-0.265600pt;}
.ls11{letter-spacing:-0.257280pt;}
.ls3{letter-spacing:-0.255360pt;}
.ls1f{letter-spacing:-0.235520pt;}
.ls2{letter-spacing:-0.149120pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.117760pt;}
.ls6{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.029440pt;}
.ls60{letter-spacing:0.052992pt;}
.lsc{letter-spacing:0.053120pt;}
.ls5b{letter-spacing:0.094208pt;}
.ls45{letter-spacing:0.100096pt;}
.ls5e{letter-spacing:0.117760pt;}
.ls67{letter-spacing:0.182528pt;}
.ls57{letter-spacing:0.206080pt;}
.ls5{letter-spacing:0.212480pt;}
.lsf{letter-spacing:0.235520pt;}
.ls1{letter-spacing:0.239040pt;}
.ls8{letter-spacing:0.244352pt;}
.ls6c{letter-spacing:0.247296pt;}
.ls77{letter-spacing:0.264960pt;}
.ls21{letter-spacing:0.270848pt;}
.ls64{letter-spacing:0.276736pt;}
.lsa{letter-spacing:0.286848pt;}
.ls78{letter-spacing:0.288512pt;}
.lse{letter-spacing:0.294400pt;}
.ls38{letter-spacing:0.306176pt;}
.ls19{letter-spacing:0.323840pt;}
.ls39{letter-spacing:0.329728pt;}
.ls76{letter-spacing:0.347392pt;}
.ls6d{letter-spacing:0.365056pt;}
.ls9{letter-spacing:0.366528pt;}
.ls4f{letter-spacing:0.370944pt;}
.ls4a{letter-spacing:0.376832pt;}
.ls61{letter-spacing:0.382720pt;}
.ls23{letter-spacing:0.388608pt;}
.ls24{letter-spacing:0.400384pt;}
.ls3f{letter-spacing:0.412160pt;}
.ls40{letter-spacing:0.418048pt;}
.ls12{letter-spacing:0.427520pt;}
.ls59{letter-spacing:0.429824pt;}
.ls58{letter-spacing:0.435712pt;}
.ls75{letter-spacing:0.447488pt;}
.ls74{letter-spacing:0.453376pt;}
.ls3c{letter-spacing:0.459264pt;}
.ls70{letter-spacing:0.465152pt;}
.ls2f{letter-spacing:0.476928pt;}
.ls73{letter-spacing:0.482816pt;}
.ls3d{letter-spacing:0.500480pt;}
.ls1a{letter-spacing:0.506368pt;}
.ls7{letter-spacing:0.584320pt;}
.ls43{letter-spacing:0.600576pt;}
.ls1b{letter-spacing:0.641280pt;}
.ls62{letter-spacing:0.677120pt;}
.ls2c{letter-spacing:0.748160pt;}
.ls15{letter-spacing:0.883200pt;}
.ls32{letter-spacing:0.912640pt;}
.ls65{letter-spacing:0.961920pt;}
.ls3b{letter-spacing:1.244160pt;}
.ls2b{letter-spacing:1.276800pt;}
.ls25{letter-spacing:1.282560pt;}
.ls44{letter-spacing:1.313280pt;}
.ls26{letter-spacing:1.389440pt;}
.ls31{letter-spacing:1.501440pt;}
.ls4c{letter-spacing:1.530880pt;}
.ls5c{letter-spacing:1.654528pt;}
.ls4b{letter-spacing:1.783296pt;}
.ls2d{letter-spacing:1.787520pt;}
.ls47{letter-spacing:1.866240pt;}
.ls3e{letter-spacing:1.935360pt;}
.ls29{letter-spacing:1.957760pt;}
.ls5f{letter-spacing:2.178560pt;}
.ls5a{letter-spacing:2.826240pt;}
.ls48{letter-spacing:3.061760pt;}
.ls22{letter-spacing:3.473920pt;}
.ls55{letter-spacing:3.532800pt;}
.ls66{letter-spacing:3.556352pt;}
.ls54{letter-spacing:3.691776pt;}
.ls36{letter-spacing:4.121600pt;}
.ls72{letter-spacing:4.204032pt;}
.ls2e{letter-spacing:4.769280pt;}
.ls2a{letter-spacing:4.804608pt;}
.ls49{letter-spacing:4.916480pt;}
.ls56{letter-spacing:5.611264pt;}
.ls30{letter-spacing:6.005760pt;}
.ls68{letter-spacing:6.029312pt;}
.ls27{letter-spacing:6.653440pt;}
.ls34{letter-spacing:6.659328pt;}
.ls6e{letter-spacing:6.806528pt;}
.ls17{letter-spacing:7.301120pt;}
.ls41{letter-spacing:8.596480pt;}
.ls3a{letter-spacing:9.244160pt;}
.ls35{letter-spacing:9.891840pt;}
.ls16{letter-spacing:10.539520pt;}
.ls52{letter-spacing:11.128320pt;}
.ls50{letter-spacing:12.423680pt;}
.ls51{letter-spacing:12.576768pt;}
.ls42{letter-spacing:13.719040pt;}
.ls6f{letter-spacing:13.836800pt;}
.ls46{letter-spacing:14.619904pt;}
.ls69{letter-spacing:15.014400pt;}
.ls71{letter-spacing:15.603200pt;}
.ls5d{letter-spacing:20.843520pt;}
.ls6b{letter-spacing:23.964160pt;}
.ls4d{letter-spacing:35.080704pt;}
.ls28{letter-spacing:40.432000pt;}
.ls18{letter-spacing:41.072000pt;}
.ls10{letter-spacing:59.174400pt;}
.ls53{letter-spacing:752.000000pt;}
.ws27{word-spacing:-48.000000pt;}
.ws90{word-spacing:-31.102080pt;}
.ws58{word-spacing:-30.460800pt;}
.ws22{word-spacing:-30.353920pt;}
.ws19{word-spacing:-30.140160pt;}
.ws59{word-spacing:-25.621120pt;}
.ws68{word-spacing:-25.450880pt;}
.ws69{word-spacing:-21.150720pt;}
.ws1{word-spacing:-19.968000pt;}
.ws3{word-spacing:-18.560000pt;}
.ws2{word-spacing:-18.432000pt;}
.ws1b{word-spacing:-16.663040pt;}
.ws49{word-spacing:-16.604160pt;}
.ws23{word-spacing:-16.368640pt;}
.ws1a{word-spacing:-16.250880pt;}
.ws26{word-spacing:-16.133120pt;}
.ws25{word-spacing:-16.074240pt;}
.ws5f{word-spacing:-16.015360pt;}
.ws60{word-spacing:-15.838720pt;}
.ws7c{word-spacing:-15.720960pt;}
.ws24{word-spacing:-15.603200pt;}
.ws48{word-spacing:-15.485440pt;}
.ws15{word-spacing:-14.714240pt;}
.ws14{word-spacing:-14.661120pt;}
.ws16{word-spacing:-14.501760pt;}
.ws7a{word-spacing:-4.062720pt;}
.ws8b{word-spacing:-3.532800pt;}
.ws46{word-spacing:-3.415040pt;}
.ws8a{word-spacing:-3.238400pt;}
.ws55{word-spacing:-2.826240pt;}
.ws6f{word-spacing:-2.767360pt;}
.ws7d{word-spacing:-2.531840pt;}
.ws10{word-spacing:-2.496640pt;}
.ws41{word-spacing:-2.178560pt;}
.ws75{word-spacing:-2.001920pt;}
.ws5d{word-spacing:-1.957760pt;}
.ws74{word-spacing:-1.866240pt;}
.wsd{word-spacing:-1.859200pt;}
.ws5e{word-spacing:-1.787520pt;}
.ws3c{word-spacing:-1.530880pt;}
.ws6b{word-spacing:-1.413120pt;}
.ws4c{word-spacing:-1.354240pt;}
.ws77{word-spacing:-1.313280pt;}
.wsa{word-spacing:-1.221760pt;}
.ws4b{word-spacing:-0.961920pt;}
.ws2e{word-spacing:-0.883200pt;}
.ws82{word-spacing:-0.855040pt;}
.ws7e{word-spacing:-0.706560pt;}
.ws91{word-spacing:-0.641280pt;}
.ws6e{word-spacing:-0.622080pt;}
.ws64{word-spacing:-0.510720pt;}
.ws94{word-spacing:-0.353280pt;}
.ws5a{word-spacing:-0.320640pt;}
.ws1f{word-spacing:-0.294400pt;}
.ws9{word-spacing:-0.265600pt;}
.ws21{word-spacing:-0.235520pt;}
.ws4a{word-spacing:-0.213760pt;}
.ws7{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.106240pt;}
.ws34{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053120pt;}
.ws73{word-spacing:0.058880pt;}
.wsc{word-spacing:0.106240pt;}
.ws1d{word-spacing:0.117760pt;}
.ws8{word-spacing:0.128000pt;}
.ws5{word-spacing:0.149120pt;}
.ws53{word-spacing:0.235520pt;}
.ws35{word-spacing:0.294400pt;}
.ws83{word-spacing:0.320640pt;}
.ws38{word-spacing:0.353280pt;}
.ws1e{word-spacing:0.412160pt;}
.ws6{word-spacing:0.425600pt;}
.ws5b{word-spacing:0.427520pt;}
.ws1c{word-spacing:0.514560pt;}
.ws7f{word-spacing:0.529920pt;}
.ws20{word-spacing:0.588800pt;}
.ws4{word-spacing:0.596480pt;}
.ws65{word-spacing:0.647680pt;}
.ws63{word-spacing:0.680960pt;}
.ws18{word-spacing:0.690560pt;}
.ws3d{word-spacing:0.765440pt;}
.ws2f{word-spacing:0.883200pt;}
.ws80{word-spacing:0.942080pt;}
.ws2c{word-spacing:1.059840pt;}
.ws76{word-spacing:1.236480pt;}
.ws8d{word-spacing:1.354240pt;}
.ws2d{word-spacing:1.707520pt;}
.ws67{word-spacing:1.884160pt;}
.ws39{word-spacing:2.296320pt;}
.ws6a{word-spacing:2.472960pt;}
.ws87{word-spacing:2.590720pt;}
.ws31{word-spacing:2.944000pt;}
.ws7b{word-spacing:3.120640pt;}
.ws2b{word-spacing:3.591680pt;}
.ws85{word-spacing:3.709440pt;}
.ws72{word-spacing:3.768320pt;}
.wsf{word-spacing:3.930880pt;}
.ws32{word-spacing:4.239360pt;}
.ws81{word-spacing:4.357120pt;}
.wsb{word-spacing:4.568320pt;}
.ws3e{word-spacing:4.887040pt;}
.ws33{word-spacing:5.004800pt;}
.ws3f{word-spacing:5.063680pt;}
.wse{word-spacing:5.205760pt;}
.ws40{word-spacing:5.534720pt;}
.ws11{word-spacing:5.843200pt;}
.ws44{word-spacing:6.182400pt;}
.ws12{word-spacing:6.480640pt;}
.ws43{word-spacing:6.830080pt;}
.ws30{word-spacing:7.418880pt;}
.ws92{word-spacing:7.654400pt;}
.ws2a{word-spacing:8.066560pt;}
.ws4f{word-spacing:8.714240pt;}
.ws84{word-spacing:8.832000pt;}
.ws78{word-spacing:8.890880pt;}
.ws56{word-spacing:9.361920pt;}
.ws57{word-spacing:9.538560pt;}
.ws3a{word-spacing:10.009600pt;}
.ws3b{word-spacing:10.304000pt;}
.ws28{word-spacing:10.657280pt;}
.ws29{word-spacing:10.892800pt;}
.ws66{word-spacing:11.304960pt;}
.ws4e{word-spacing:11.893760pt;}
.ws54{word-spacing:12.541440pt;}
.ws36{word-spacing:12.659200pt;}
.ws37{word-spacing:13.189120pt;}
.ws62{word-spacing:13.836800pt;}
.ws45{word-spacing:14.484480pt;}
.ws8c{word-spacing:15.132160pt;}
.ws50{word-spacing:15.779840pt;}
.ws5c{word-spacing:16.427520pt;}
.ws51{word-spacing:17.016320pt;}
.ws52{word-spacing:17.192960pt;}
.ws42{word-spacing:17.664000pt;}
.ws4d{word-spacing:17.899520pt;}
.ws86{word-spacing:18.959360pt;}
.ws93{word-spacing:19.607040pt;}
.ws71{word-spacing:20.254720pt;}
.ws70{word-spacing:20.902400pt;}
.ws61{word-spacing:22.138880pt;}
.ws88{word-spacing:22.786560pt;}
.ws8f{word-spacing:23.434240pt;}
.ws8e{word-spacing:24.081920pt;}
.ws47{word-spacing:24.729600pt;}
.ws6d{word-spacing:30.499840pt;}
.ws6c{word-spacing:31.147520pt;}
.ws89{word-spacing:31.324160pt;}
.ws79{word-spacing:34.974720pt;}
._9{margin-left:-16.270016pt;}
._3{margin-left:-12.894720pt;}
._4{margin-left:-11.187200pt;}
._7{margin-left:-10.262400pt;}
._6{margin-left:-9.322176pt;}
._8{margin-left:-8.063232pt;}
._5{margin-left:-6.064640pt;}
._15{margin-left:-3.688832pt;}
._10{margin-left:-2.315456pt;}
._2{margin-left:-1.099584pt;}
._0{width:0.999104pt;}
._1{width:1.939584pt;}
._b{width:3.418752pt;}
._c{width:4.339840pt;}
._11{width:5.946880pt;}
._a{width:7.477760pt;}
._14{width:9.143680pt;}
._16{width:10.615680pt;}
._12{width:11.796992pt;}
._d{width:12.794240pt;}
._e{width:14.366720pt;}
._f{width:17.899520pt;}
._13{width:31.422784pt;}
.fs8{font-size:5.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:106.880000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y22{bottom:123.790666pt;}
.y6a{bottom:136.174240pt;}
.y334{bottom:136.640000pt;}
.yaa{bottom:142.515200pt;}
.y25d{bottom:144.061440pt;}
.y15f{bottom:144.088320pt;}
.y187{bottom:144.119680pt;}
.y283{bottom:145.994880pt;}
.y2dd{bottom:148.773120pt;}
.y144{bottom:149.271040pt;}
.y2fb{bottom:150.555520pt;}
.y333{bottom:150.720000pt;}
.yf3{bottom:151.829760pt;}
.y332{bottom:152.160000pt;}
.y2e6{bottom:153.185920pt;}
.y241{bottom:153.244160pt;}
.y29b{bottom:153.248640pt;}
.y1ec{bottom:153.271040pt;}
.y1b9{bottom:153.275520pt;}
.y1cf{bottom:153.280000pt;}
.y69{bottom:153.451520pt;}
.y331{bottom:153.760000pt;}
.y330{bottom:155.360000pt;}
.y32f{bottom:156.800000pt;}
.y32e{bottom:158.400000pt;}
.y32d{bottom:159.840000pt;}
.y32c{bottom:161.440000pt;}
.ya9{bottom:162.519680pt;}
.y32b{bottom:162.880000pt;}
.y25c{bottom:164.065920pt;}
.y15e{bottom:164.092800pt;}
.y176{bottom:164.119680pt;}
.y186{bottom:164.124160pt;}
.y32a{bottom:164.480000pt;}
.y282{bottom:165.999360pt;}
.y329{bottom:166.080000pt;}
.y328{bottom:167.520000pt;}
.y2dc{bottom:168.777600pt;}
.y327{bottom:169.120000pt;}
.y143{bottom:169.275520pt;}
.y2fa{bottom:170.560000pt;}
.y68{bottom:170.728800pt;}
.yf2{bottom:171.834240pt;}
.y326{bottom:172.160000pt;}
.y2e5{bottom:173.190400pt;}
.y110{bottom:173.199360pt;}
.y240{bottom:173.248640pt;}
.y29a{bottom:173.253120pt;}
.y19b{bottom:173.266560pt;}
.y1ce{bottom:173.275520pt;}
.y1b8{bottom:173.280000pt;}
.y325{bottom:173.760000pt;}
.y19{bottom:175.052000pt;}
.y324{bottom:175.200000pt;}
.y323{bottom:176.800000pt;}
.y322{bottom:178.240000pt;}
.y321{bottom:179.840000pt;}
.y320{bottom:181.280000pt;}
.ya8{bottom:182.524160pt;}
.y31f{bottom:182.880000pt;}
.y25b{bottom:184.070400pt;}
.y15d{bottom:184.097280pt;}
.y175{bottom:184.124160pt;}
.y185{bottom:184.128640pt;}
.y31e{bottom:184.480000pt;}
.y210{bottom:184.960000pt;}
.y31d{bottom:185.920000pt;}
.y281{bottom:186.003840pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y31c{bottom:187.520000pt;}
.y67{bottom:188.165440pt;}
.y2db{bottom:188.782080pt;}
.y31b{bottom:188.960000pt;}
.y142{bottom:189.280000pt;}
.y2f9{bottom:190.533120pt;}
.yf1{bottom:191.838720pt;}
.y31a{bottom:193.105280pt;}
.y2e4{bottom:193.194880pt;}
.y10f{bottom:193.203840pt;}
.y23f{bottom:193.253120pt;}
.y299{bottom:193.257600pt;}
.y19a{bottom:193.271040pt;}
.y1b7{bottom:193.275520pt;}
.y1cd{bottom:193.280000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ya7{bottom:202.528640pt;}
.y20f{bottom:204.065920pt;}
.y25a{bottom:204.074880pt;}
.y15c{bottom:204.101760pt;}
.y174{bottom:204.128640pt;}
.y184{bottom:204.133120pt;}
.y66{bottom:205.442720pt;}
.y280{bottom:206.008320pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y2da{bottom:208.786560pt;}
.y2f8{bottom:210.537600pt;}
.y141{bottom:210.725760pt;}
.yf0{bottom:211.843200pt;}
.y319{bottom:213.109760pt;}
.y1eb{bottom:213.194880pt;}
.y2e3{bottom:213.199360pt;}
.y10e{bottom:213.208320pt;}
.y22e{bottom:213.248640pt;}
.y23e{bottom:213.257600pt;}
.y298{bottom:213.262080pt;}
.y199{bottom:213.275520pt;}
.y1b6{bottom:213.280000pt;}
.ya6{bottom:222.533120pt;}
.y65{bottom:222.720000pt;}
.y64{bottom:222.728800pt;}
.y20e{bottom:224.070400pt;}
.y259{bottom:224.079360pt;}
.y15b{bottom:224.106240pt;}
.y173{bottom:224.133120pt;}
.y183{bottom:224.137600pt;}
.y27f{bottom:226.012800pt;}
.y2d9{bottom:228.791040pt;}
.y2f7{bottom:230.542080pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yef{bottom:231.847680pt;}
.y318{bottom:233.114240pt;}
.y1ea{bottom:233.199360pt;}
.y2e2{bottom:233.203840pt;}
.y10d{bottom:233.212800pt;}
.y22d{bottom:233.253120pt;}
.y23d{bottom:233.262080pt;}
.y1b5{bottom:233.266560pt;}
.y198{bottom:233.280000pt;}
.y1cc{bottom:233.920000pt;}
.y140{bottom:235.368000pt;}
.y63{bottom:240.165440pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ya5{bottom:242.537600pt;}
.y20d{bottom:244.074880pt;}
.y258{bottom:244.083840pt;}
.y15a{bottom:244.110720pt;}
.y172{bottom:244.137600pt;}
.y182{bottom:244.142080pt;}
.y27e{bottom:246.017280pt;}
.y2d8{bottom:248.795520pt;}
.y2f6{bottom:250.546560pt;}
.yee{bottom:251.852160pt;}
.y317{bottom:253.118720pt;}
.y1e9{bottom:253.203840pt;}
.y2e1{bottom:253.208320pt;}
.y10c{bottom:253.217280pt;}
.y22c{bottom:253.257600pt;}
.y1cb{bottom:253.262080pt;}
.y23c{bottom:253.266560pt;}
.y1b4{bottom:253.271040pt;}
.y197{bottom:253.275520pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y62{bottom:257.442720pt;}
.y13f{bottom:259.840000pt;}
.ya4{bottom:262.542080pt;}
.y20c{bottom:264.079360pt;}
.y257{bottom:264.088320pt;}
.y159{bottom:264.115200pt;}
.y171{bottom:264.142080pt;}
.y181{bottom:264.146560pt;}
.y27d{bottom:266.021760pt;}
.y2d7{bottom:268.800000pt;}
.y2f5{bottom:270.551040pt;}
.yed{bottom:271.856640pt;}
.y120{bottom:273.123200pt;}
.y1e8{bottom:273.208320pt;}
.y2e0{bottom:273.212800pt;}
.y10b{bottom:273.221760pt;}
.y22b{bottom:273.262080pt;}
.y1ca{bottom:273.266560pt;}
.y23b{bottom:273.271040pt;}
.y1b3{bottom:273.275520pt;}
.y196{bottom:273.280000pt;}
.y61{bottom:274.720000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y33{bottom:278.080000pt;}
.ya3{bottom:282.546560pt;}
.y13e{bottom:282.803840pt;}
.y20b{bottom:284.083840pt;}
.y256{bottom:284.092800pt;}
.y158{bottom:284.119680pt;}
.y170{bottom:284.146560pt;}
.y180{bottom:284.151040pt;}
.y27c{bottom:286.026240pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2d6{bottom:288.782080pt;}
.y2f4{bottom:290.555520pt;}
.yec{bottom:291.861120pt;}
.y60{bottom:292.195680pt;}
.y11f{bottom:293.127680pt;}
.y2b3{bottom:293.176960pt;}
.y1e7{bottom:293.212800pt;}
.y2df{bottom:293.217280pt;}
.y10a{bottom:293.226240pt;}
.y22a{bottom:293.266560pt;}
.y1c9{bottom:293.271040pt;}
.y195{bottom:293.275520pt;}
.y1b2{bottom:293.280000pt;}
.y32{bottom:298.080000pt;}
.ya2{bottom:302.551040pt;}
.y13d{bottom:302.808320pt;}
.y20a{bottom:304.088320pt;}
.y255{bottom:304.097280pt;}
.y157{bottom:304.124160pt;}
.y16f{bottom:304.151040pt;}
.y17f{bottom:304.155520pt;}
.y27b{bottom:306.030720pt;}
.y2d5{bottom:308.786560pt;}
.y10{bottom:309.452000pt;}
.y5f{bottom:309.472960pt;}
.y2f3{bottom:310.560000pt;}
.yeb{bottom:311.865600pt;}
.y11e{bottom:313.132160pt;}
.y2b2{bottom:313.181440pt;}
.y1e6{bottom:313.217280pt;}
.y2de{bottom:313.221760pt;}
.y109{bottom:313.230720pt;}
.y1b1{bottom:313.262080pt;}
.y229{bottom:313.271040pt;}
.y1c8{bottom:313.275520pt;}
.y194{bottom:313.280000pt;}
.y31{bottom:318.080000pt;}
.ya1{bottom:322.555520pt;}
.y13c{bottom:322.812800pt;}
.y209{bottom:324.092800pt;}
.y254{bottom:324.101760pt;}
.y156{bottom:324.128640pt;}
.y16e{bottom:324.155520pt;}
.y17e{bottom:324.160000pt;}
.y27a{bottom:326.035200pt;}
.y5e{bottom:326.750240pt;}
.y2d4{bottom:328.791040pt;}
.y2f2{bottom:330.551040pt;}
.yea{bottom:331.870080pt;}
.y11d{bottom:333.136640pt;}
.y2b1{bottom:333.185920pt;}
.y1e5{bottom:333.221760pt;}
.ycb{bottom:333.226240pt;}
.y108{bottom:333.235200pt;}
.y193{bottom:333.257600pt;}
.y1b0{bottom:333.266560pt;}
.y228{bottom:333.275520pt;}
.y1c7{bottom:333.280000pt;}
.y30{bottom:338.080000pt;}
.y9f{bottom:342.542080pt;}
.ya0{bottom:342.560000pt;}
.y13b{bottom:342.817280pt;}
.yf{bottom:343.809333pt;}
.y208{bottom:344.097280pt;}
.y253{bottom:344.106240pt;}
.y16c{bottom:344.115200pt;}
.y155{bottom:344.133120pt;}
.y16d{bottom:344.160000pt;}
.y5d{bottom:344.186880pt;}
.y17d{bottom:344.800000pt;}
.y279{bottom:346.039680pt;}
.y2d3{bottom:348.795520pt;}
.y2f1{bottom:350.555520pt;}
.ye9{bottom:351.874560pt;}
.y11c{bottom:353.141120pt;}
.y2b0{bottom:353.190400pt;}
.y1e4{bottom:353.226240pt;}
.yca{bottom:353.230720pt;}
.y107{bottom:353.239680pt;}
.y192{bottom:353.262080pt;}
.y1af{bottom:353.271040pt;}
.y227{bottom:353.280000pt;}
.y2f{bottom:358.080000pt;}
.y5c{bottom:361.464160pt;}
.y312{bottom:362.524160pt;}
.y9e{bottom:362.546560pt;}
.ye{bottom:362.706666pt;}
.y13a{bottom:362.821760pt;}
.y207{bottom:364.101760pt;}
.y252{bottom:364.110720pt;}
.y16b{bottom:364.119680pt;}
.y154{bottom:364.137600pt;}
.y17c{bottom:364.146560pt;}
.y278{bottom:366.044160pt;}
.y2d2{bottom:368.800000pt;}
.y2f0{bottom:370.560000pt;}
.ye8{bottom:371.879040pt;}
.y11b{bottom:373.145600pt;}
.y2af{bottom:373.194880pt;}
.y1e3{bottom:373.230720pt;}
.yc9{bottom:373.235200pt;}
.y106{bottom:373.244160pt;}
.y297{bottom:373.257600pt;}
.y191{bottom:373.266560pt;}
.y1ae{bottom:373.275520pt;}
.y82{bottom:375.089280pt;}
.y2e{bottom:378.080000pt;}
.y5b{bottom:378.741440pt;}
.y311{bottom:382.528640pt;}
.y9d{bottom:382.551040pt;}
.y139{bottom:382.826240pt;}
.y206{bottom:384.106240pt;}
.y251{bottom:384.115200pt;}
.y16a{bottom:384.124160pt;}
.y153{bottom:384.142080pt;}
.y17b{bottom:384.151040pt;}
.y277{bottom:386.048640pt;}
.y2d1{bottom:388.782080pt;}
.y2ef{bottom:390.555520pt;}
.ye7{bottom:391.883520pt;}
.y11a{bottom:393.150080pt;}
.y2ae{bottom:393.199360pt;}
.y1e2{bottom:393.235200pt;}
.yc8{bottom:393.239680pt;}
.y105{bottom:393.248640pt;}
.y296{bottom:393.262080pt;}
.y190{bottom:393.271040pt;}
.y1ad{bottom:393.280000pt;}
.y5a{bottom:396.178080pt;}
.y2d{bottom:398.080000pt;}
.y310{bottom:402.533120pt;}
.y9c{bottom:402.555520pt;}
.y138{bottom:402.830720pt;}
.y81{bottom:403.896320pt;}
.y205{bottom:404.110720pt;}
.y250{bottom:404.119680pt;}
.y169{bottom:404.128640pt;}
.y152{bottom:404.146560pt;}
.y17a{bottom:404.155520pt;}
.y276{bottom:406.053120pt;}
.y2d0{bottom:408.786560pt;}
.y2ee{bottom:410.560000pt;}
.ye6{bottom:411.888000pt;}
.y119{bottom:413.154560pt;}
.y2ad{bottom:413.203840pt;}
.y226{bottom:413.221760pt;}
.y1e1{bottom:413.239680pt;}
.yc7{bottom:413.244160pt;}
.y104{bottom:413.253120pt;}
.y295{bottom:413.266560pt;}
.y1ac{bottom:413.271040pt;}
.y18f{bottom:413.275520pt;}
.y59{bottom:413.455360pt;}
.y2c{bottom:418.080000pt;}
.y30f{bottom:422.537600pt;}
.y9b{bottom:422.560000pt;}
.y137{bottom:422.835200pt;}
.y204{bottom:424.115200pt;}
.y24f{bottom:424.124160pt;}
.y168{bottom:424.133120pt;}
.y151{bottom:424.151040pt;}
.y179{bottom:424.160000pt;}
.y275{bottom:426.057600pt;}
.y2cf{bottom:428.791040pt;}
.y2ed{bottom:430.555520pt;}
.y58{bottom:430.732640pt;}
.ye5{bottom:431.892480pt;}
.y80{bottom:432.541440pt;}
.y118{bottom:433.159040pt;}
.y2ac{bottom:433.208320pt;}
.y225{bottom:433.226240pt;}
.y1e0{bottom:433.244160pt;}
.yc6{bottom:433.248640pt;}
.y103{bottom:433.257600pt;}
.y294{bottom:433.271040pt;}
.y1ab{bottom:433.275520pt;}
.y18e{bottom:433.280000pt;}
.y2b{bottom:438.080000pt;}
.y30e{bottom:442.542080pt;}
.y9a{bottom:442.551040pt;}
.y136{bottom:442.839680pt;}
.y203{bottom:444.119680pt;}
.y24e{bottom:444.128640pt;}
.y167{bottom:444.137600pt;}
.y150{bottom:444.155520pt;}
.y274{bottom:446.062080pt;}
.yd{bottom:446.990669pt;}
.y57{bottom:448.169280pt;}
.y2ce{bottom:448.795520pt;}
.y2ec{bottom:450.560000pt;}
.ye4{bottom:451.896960pt;}
.y117{bottom:453.163520pt;}
.y2ab{bottom:453.212800pt;}
.y23a{bottom:453.221760pt;}
.y224{bottom:453.230720pt;}
.y1df{bottom:453.248640pt;}
.yc5{bottom:453.253120pt;}
.y102{bottom:453.262080pt;}
.y1c6{bottom:453.275520pt;}
.y18d{bottom:453.280000pt;}
.y2a{bottom:458.080000pt;}
.y7f{bottom:461.186560pt;}
.y30d{bottom:462.546560pt;}
.y99{bottom:462.555520pt;}
.y135{bottom:462.844160pt;}
.yc{bottom:462.990669pt;}
.y202{bottom:464.124160pt;}
.y14e{bottom:464.128640pt;}
.y24d{bottom:464.133120pt;}
.y166{bottom:464.142080pt;}
.y14f{bottom:464.160000pt;}
.y56{bottom:465.446560pt;}
.y273{bottom:466.066560pt;}
.y2cd{bottom:468.800000pt;}
.y2eb{bottom:470.474880pt;}
.ye3{bottom:471.901440pt;}
.y116{bottom:473.168000pt;}
.y2aa{bottom:473.217280pt;}
.y239{bottom:473.226240pt;}
.y223{bottom:473.235200pt;}
.y1de{bottom:473.253120pt;}
.yc4{bottom:473.257600pt;}
.y101{bottom:473.266560pt;}
.y1aa{bottom:473.275520pt;}
.y18c{bottom:473.280000pt;}
.yb{bottom:478.990666pt;}
.y7e{bottom:481.191040pt;}
.y30c{bottom:482.551040pt;}
.y98{bottom:482.560000pt;}
.y134{bottom:482.848640pt;}
.y201{bottom:484.128640pt;}
.y14d{bottom:484.133120pt;}
.y24c{bottom:484.137600pt;}
.y165{bottom:484.146560pt;}
.y178{bottom:484.155520pt;}
.y272{bottom:486.071040pt;}
.y2cc{bottom:488.786560pt;}
.y2ea{bottom:490.479360pt;}
.ye2{bottom:491.905920pt;}
.y115{bottom:493.172480pt;}
.y2a9{bottom:493.221760pt;}
.y238{bottom:493.230720pt;}
.y222{bottom:493.239680pt;}
.y293{bottom:493.248640pt;}
.y1dd{bottom:493.257600pt;}
.yc3{bottom:493.262080pt;}
.y100{bottom:493.271040pt;}
.y1c5{bottom:493.275520pt;}
.y1a9{bottom:493.280000pt;}
.ya{bottom:494.990666pt;}
.y97{bottom:502.461440pt;}
.y30b{bottom:502.555520pt;}
.y133{bottom:502.853120pt;}
.y200{bottom:504.133120pt;}
.y14c{bottom:504.137600pt;}
.y24b{bottom:504.142080pt;}
.y164{bottom:504.151040pt;}
.y177{bottom:504.160000pt;}
.y271{bottom:506.075520pt;}
.y2cb{bottom:508.791040pt;}
.y7d{bottom:509.836160pt;}
.y2e9{bottom:510.483840pt;}
.ye1{bottom:511.910400pt;}
.y114{bottom:513.176960pt;}
.y2a8{bottom:513.226240pt;}
.y237{bottom:513.235200pt;}
.y221{bottom:513.244160pt;}
.y292{bottom:513.253120pt;}
.y1a8{bottom:513.257600pt;}
.y1dc{bottom:513.262080pt;}
.yc2{bottom:513.266560pt;}
.yff{bottom:513.275520pt;}
.y1c4{bottom:513.280000pt;}
.y96{bottom:522.465920pt;}
.y30a{bottom:522.560000pt;}
.y132{bottom:522.857600pt;}
.y1ff{bottom:524.137600pt;}
.y14b{bottom:524.142080pt;}
.y24a{bottom:524.146560pt;}
.y163{bottom:524.155520pt;}
.y270{bottom:526.080000pt;}
.y2ca{bottom:528.795520pt;}
.y2e8{bottom:530.488320pt;}
.ye0{bottom:531.914880pt;}
.y55{bottom:532.643360pt;}
.y113{bottom:533.181440pt;}
.y2a7{bottom:533.230720pt;}
.y236{bottom:533.239680pt;}
.y220{bottom:533.248640pt;}
.y291{bottom:533.257600pt;}
.y1a7{bottom:533.262080pt;}
.y1db{bottom:533.266560pt;}
.yc1{bottom:533.271040pt;}
.yfe{bottom:533.280000pt;}
.y7c{bottom:538.481280pt;}
.y95{bottom:542.470400pt;}
.y309{bottom:542.537600pt;}
.y131{bottom:542.862080pt;}
.y1fe{bottom:544.142080pt;}
.y14a{bottom:544.146560pt;}
.y249{bottom:544.151040pt;}
.y162{bottom:544.160000pt;}
.y26f{bottom:547.520000pt;}
.y2c9{bottom:548.800000pt;}
.y54{bottom:550.080000pt;}
.y2e7{bottom:550.492800pt;}
.ydf{bottom:551.919360pt;}
.y29{bottom:552.800000pt;}
.y112{bottom:553.185920pt;}
.y2a6{bottom:553.235200pt;}
.y235{bottom:553.244160pt;}
.y21f{bottom:553.253120pt;}
.y290{bottom:553.262080pt;}
.y18b{bottom:553.266560pt;}
.y1da{bottom:553.271040pt;}
.yc0{bottom:553.275520pt;}
.y94{bottom:562.474880pt;}
.y308{bottom:562.542080pt;}
.y130{bottom:562.866560pt;}
.y1fd{bottom:564.146560pt;}
.y149{bottom:564.151040pt;}
.y248{bottom:564.155520pt;}
.y161{bottom:565.768000pt;}
.y7b{bottom:567.126400pt;}
.y53{bottom:567.366080pt;}
.y2c8{bottom:568.714880pt;}
.y26e{bottom:570.497280pt;}
.yde{bottom:571.923840pt;}
.y111{bottom:573.190400pt;}
.y2a5{bottom:573.239680pt;}
.y234{bottom:573.248640pt;}
.y21e{bottom:573.257600pt;}
.y28f{bottom:573.266560pt;}
.y18a{bottom:573.271040pt;}
.y1d9{bottom:573.275520pt;}
.ybf{bottom:573.280000pt;}
.y9{bottom:573.786667pt;}
.y93{bottom:582.479360pt;}
.y307{bottom:582.546560pt;}
.y12f{bottom:582.871040pt;}
.y1fc{bottom:584.151040pt;}
.y148{bottom:584.155520pt;}
.y247{bottom:584.160000pt;}
.y52{bottom:584.643360pt;}
.y2c7{bottom:588.719360pt;}
.y160{bottom:590.240000pt;}
.y26d{bottom:590.501760pt;}
.ydd{bottom:591.928320pt;}
.y8{bottom:592.685334pt;}
.yfd{bottom:593.194880pt;}
.y2a4{bottom:593.244160pt;}
.y233{bottom:593.253120pt;}
.y21d{bottom:593.262080pt;}
.y28e{bottom:593.271040pt;}
.ybe{bottom:593.275520pt;}
.y1d8{bottom:593.280000pt;}
.y7a{bottom:595.933440pt;}
.y51{bottom:602.080000pt;}
.y92{bottom:602.483840pt;}
.y306{bottom:602.551040pt;}
.y12e{bottom:602.875520pt;}
.y1fb{bottom:604.155520pt;}
.y147{bottom:604.160000pt;}
.y246{bottom:605.768000pt;}
.y28{bottom:606.080000pt;}
.y2c6{bottom:608.723840pt;}
.y26c{bottom:610.506240pt;}
.ydc{bottom:611.932800pt;}
.yfc{bottom:613.199360pt;}
.y2a3{bottom:613.248640pt;}
.y232{bottom:613.257600pt;}
.y21c{bottom:613.266560pt;}
.y1d7{bottom:613.271040pt;}
.y28d{bottom:613.275520pt;}
.ybd{bottom:613.280000pt;}
.y79{bottom:615.937920pt;}
.y50{bottom:616.800000pt;}
.y4f{bottom:618.240000pt;}
.y4e{bottom:619.840000pt;}
.y4d{bottom:621.280000pt;}
.y91{bottom:622.488320pt;}
.y305{bottom:622.555520pt;}
.y4c{bottom:622.880000pt;}
.y1fa{bottom:624.160000pt;}
.y4b{bottom:624.480000pt;}
.y146{bottom:625.768000pt;}
.y4a{bottom:625.920000pt;}
.y49{bottom:627.520000pt;}
.y2c5{bottom:628.728320pt;}
.y48{bottom:628.960000pt;}
.y245{bottom:630.240000pt;}
.y26b{bottom:630.510720pt;}
.ydb{bottom:631.937280pt;}
.y47{bottom:633.162880pt;}
.yfb{bottom:633.203840pt;}
.y2a2{bottom:633.253120pt;}
.y231{bottom:633.262080pt;}
.ybc{bottom:633.266560pt;}
.y21b{bottom:633.271040pt;}
.y189{bottom:633.275520pt;}
.y28c{bottom:633.280000pt;}
.y1a6{bottom:633.920000pt;}
.y90{bottom:642.492800pt;}
.y304{bottom:642.560000pt;}
.y12d{bottom:642.857600pt;}
.y78{bottom:644.583040pt;}
.y7{bottom:645.598667pt;}
.y1f9{bottom:645.768000pt;}
.y27{bottom:645.920160pt;}
.y2c4{bottom:648.732800pt;}
.y145{bottom:650.240000pt;}
.y26a{bottom:650.515200pt;}
.y46{bottom:650.599520pt;}
.yda{bottom:651.941760pt;}
.yfa{bottom:653.208320pt;}
.y2a1{bottom:653.257600pt;}
.y1a5{bottom:653.266560pt;}
.ybb{bottom:653.271040pt;}
.y21a{bottom:653.275520pt;}
.y188{bottom:653.280000pt;}
.y8f{bottom:662.497280pt;}
.y303{bottom:662.560000pt;}
.y12c{bottom:662.862080pt;}
.y45{bottom:667.876800pt;}
.y2c3{bottom:668.737280pt;}
.y3{bottom:668.977329pt;}
.y1f8{bottom:670.240000pt;}
.y269{bottom:670.519680pt;}
.y26{bottom:671.520000pt;}
.yd9{bottom:671.946240pt;}
.yf9{bottom:673.212800pt;}
.y77{bottom:673.228160pt;}
.y2a0{bottom:673.262080pt;}
.y1c3{bottom:673.266560pt;}
.y1a4{bottom:673.271040pt;}
.yba{bottom:673.275520pt;}
.y219{bottom:673.280000pt;}
.y8e{bottom:682.501760pt;}
.y302{bottom:682.560000pt;}
.y12b{bottom:682.866560pt;}
.y2c2{bottom:688.741760pt;}
.y268{bottom:690.524160pt;}
.yd8{bottom:691.950720pt;}
.yf8{bottom:693.217280pt;}
.y1f7{bottom:693.230720pt;}
.y29f{bottom:693.266560pt;}
.y1c2{bottom:693.271040pt;}
.y1a3{bottom:693.275520pt;}
.yb9{bottom:693.280000pt;}
.y44{bottom:700.519040pt;}
.y76{bottom:701.873280pt;}
.y8d{bottom:702.506240pt;}
.y301{bottom:702.546560pt;}
.y12a{bottom:702.871040pt;}
.y2c1{bottom:708.746240pt;}
.y267{bottom:710.528640pt;}
.yd7{bottom:711.955200pt;}
.yf7{bottom:713.221760pt;}
.y1f6{bottom:713.235200pt;}
.y28b{bottom:713.248640pt;}
.yb8{bottom:713.266560pt;}
.y29e{bottom:713.271040pt;}
.y1c1{bottom:713.275520pt;}
.y1a2{bottom:713.280000pt;}
.y43{bottom:715.884000pt;}
.y8c{bottom:722.510720pt;}
.y300{bottom:722.551040pt;}
.y129{bottom:722.875520pt;}
.y25{bottom:728.000000pt;}
.y2c0{bottom:728.750720pt;}
.y75{bottom:730.518400pt;}
.y266{bottom:730.533120pt;}
.yd6{bottom:731.959680pt;}
.y42{bottom:733.161280pt;}
.yf6{bottom:733.226240pt;}
.y1f5{bottom:733.239680pt;}
.y28a{bottom:733.253120pt;}
.y315{bottom:733.266560pt;}
.yb7{bottom:733.271040pt;}
.y29d{bottom:733.275520pt;}
.y1a1{bottom:733.280000pt;}
.y8b{bottom:742.515200pt;}
.y2ff{bottom:742.555520pt;}
.y128{bottom:742.880000pt;}
.y2bf{bottom:748.755200pt;}
.y265{bottom:750.537600pt;}
.y41{bottom:750.597920pt;}
.yd5{bottom:751.964160pt;}
.yf5{bottom:753.230720pt;}
.y1f4{bottom:753.244160pt;}
.y244{bottom:753.253120pt;}
.y289{bottom:753.257600pt;}
.y1d6{bottom:753.262080pt;}
.y1a0{bottom:753.266560pt;}
.y314{bottom:753.271040pt;}
.yb6{bottom:753.275520pt;}
.y29c{bottom:753.280000pt;}
.y74{bottom:759.163520pt;}
.y8a{bottom:762.519680pt;}
.y2fe{bottom:762.560000pt;}
.y127{bottom:762.862080pt;}
.y40{bottom:767.875200pt;}
.y2be{bottom:768.759680pt;}
.y264{bottom:770.542080pt;}
.yd4{bottom:771.968640pt;}
.yf4{bottom:773.235200pt;}
.y1f3{bottom:773.248640pt;}
.y243{bottom:773.257600pt;}
.y288{bottom:773.262080pt;}
.y1d5{bottom:773.266560pt;}
.y19f{bottom:773.271040pt;}
.y313{bottom:773.275520pt;}
.yb5{bottom:773.280000pt;}
.y2{bottom:781.661334pt;}
.y89{bottom:782.524160pt;}
.y2fd{bottom:782.560000pt;}
.y126{bottom:782.866560pt;}
.y3f{bottom:785.152480pt;}
.y73{bottom:787.970560pt;}
.y2bd{bottom:788.764160pt;}
.y263{bottom:790.546560pt;}
.yd3{bottom:791.973120pt;}
.yb4{bottom:793.239680pt;}
.y1f2{bottom:793.253120pt;}
.y1c0{bottom:793.262080pt;}
.y287{bottom:793.266560pt;}
.y1d4{bottom:793.271040pt;}
.y19e{bottom:793.275520pt;}
.y230{bottom:793.280000pt;}
.y24{bottom:793.432480pt;}
.y88{bottom:802.528640pt;}
.y3e{bottom:802.589120pt;}
.y125{bottom:802.871040pt;}
.y72{bottom:807.975040pt;}
.y2bc{bottom:808.768640pt;}
.y262{bottom:810.551040pt;}
.yd2{bottom:811.977600pt;}
.yb3{bottom:813.244160pt;}
.y1f1{bottom:813.257600pt;}
.y1bf{bottom:813.266560pt;}
.y286{bottom:813.271040pt;}
.y1d3{bottom:813.275520pt;}
.y19d{bottom:813.280000pt;}
.y3d{bottom:819.866400pt;}
.y87{bottom:822.533120pt;}
.y124{bottom:822.875520pt;}
.y2bb{bottom:828.773120pt;}
.y261{bottom:830.555520pt;}
.yd1{bottom:831.982080pt;}
.yb2{bottom:833.248640pt;}
.y218{bottom:833.253120pt;}
.y1f0{bottom:833.262080pt;}
.y1be{bottom:833.271040pt;}
.y285{bottom:833.275520pt;}
.y19c{bottom:833.280000pt;}
.y71{bottom:836.620160pt;}
.y23{bottom:836.640000pt;}
.y3c{bottom:837.143680pt;}
.y86{bottom:842.537600pt;}
.y123{bottom:842.880000pt;}
.y2ba{bottom:848.777600pt;}
.y260{bottom:850.560000pt;}
.yd0{bottom:851.986560pt;}
.yb1{bottom:853.253120pt;}
.y217{bottom:853.257600pt;}
.y1ef{bottom:853.266560pt;}
.y1d2{bottom:853.271040pt;}
.y1bd{bottom:853.275520pt;}
.y284{bottom:853.280000pt;}
.y3b{bottom:854.580320pt;}
.y1{bottom:859.312000pt;}
.y85{bottom:862.542080pt;}
.y122{bottom:864.317760pt;}
.y70{bottom:865.265280pt;}
.y2b9{bottom:868.782080pt;}
.y3a{bottom:871.857600pt;}
.ycf{bottom:871.991040pt;}
.y25f{bottom:873.096320pt;}
.yb0{bottom:873.257600pt;}
.y216{bottom:873.262080pt;}
.y1ee{bottom:873.271040pt;}
.y1d1{bottom:873.275520pt;}
.y1bc{bottom:873.280000pt;}
.y84{bottom:882.546560pt;}
.y2b8{bottom:888.786560pt;}
.y121{bottom:888.960000pt;}
.y39{bottom:889.134880pt;}
.yce{bottom:891.995520pt;}
.yaf{bottom:893.262080pt;}
.y215{bottom:893.266560pt;}
.y2fc{bottom:893.271040pt;}
.y1bb{bottom:893.275520pt;}
.y1d0{bottom:893.280000pt;}
.y6f{bottom:893.910400pt;}
.y242{bottom:893.920000pt;}
.y83{bottom:902.551040pt;}
.y25e{bottom:903.824320pt;}
.y38{bottom:906.571520pt;}
.y2b7{bottom:908.791040pt;}
.ycd{bottom:912.000000pt;}
.yae{bottom:913.266560pt;}
.y214{bottom:913.271040pt;}
.y22f{bottom:913.275520pt;}
.y1ba{bottom:913.280000pt;}
.y6e{bottom:922.555520pt;}
.y37{bottom:923.848800pt;}
.y2b6{bottom:928.795520pt;}
.yad{bottom:933.271040pt;}
.y213{bottom:933.275520pt;}
.y1ed{bottom:933.280000pt;}
.ycc{bottom:934.552320pt;}
.y36{bottom:941.126080pt;}
.y6d{bottom:942.560000pt;}
.y2b5{bottom:948.800000pt;}
.yac{bottom:953.275520pt;}
.y212{bottom:953.280000pt;}
.y35{bottom:958.562720pt;}
.y6c{bottom:965.120000pt;}
.y2b4{bottom:970.240000pt;}
.yab{bottom:973.280000pt;}
.y211{bottom:973.920000pt;}
.y34{bottom:975.840000pt;}
.y6b{bottom:1042.880000pt;}
.y316{bottom:1048.160000pt;}
.hf{height:4.402500pt;}
.h7{height:28.560000pt;}
.hd{height:38.672812pt;}
.h6{height:40.800000pt;}
.h15{height:42.656250pt;}
.h3{height:42.840000pt;}
.h10{height:42.866250pt;}
.he{height:45.675938pt;}
.hc{height:46.528000pt;}
.ha{height:47.232000pt;}
.h2{height:48.960000pt;}
.h14{height:50.321250pt;}
.h12{height:50.628750pt;}
.hb{height:61.882240pt;}
.h13{height:61.969687pt;}
.h5{height:69.360000pt;}
.h11{height:77.811562pt;}
.h4{height:105.826671pt;}
.h9{height:136.593920pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:132.320000pt;}
.x9{left:151.191040pt;}
.xa{left:170.254720pt;}
.xe{left:174.880000pt;}
.xf{left:176.800000pt;}
.x4{left:180.874667pt;}
.xd{left:184.480000pt;}
.x8{left:192.640000pt;}
.x19{left:285.440000pt;}
.x6{left:286.400000pt;}
.x7{left:288.320000pt;}
.x14{left:391.680000pt;}
.xb{left:393.760000pt;}
.xc{left:395.840000pt;}
.x3{left:404.408000pt;}
.x17{left:429.120000pt;}
.x18{left:431.200000pt;}
.x1a{left:468.640000pt;}
.x1b{left:470.720000pt;}
.x15{left:471.840000pt;}
.x16{left:473.920000pt;}
.x10{left:560.320000pt;}
.x11{left:562.400000pt;}
.x12{left:589.120000pt;}
.x13{left:591.200000pt;}
}




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