
    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_414f19138c69f60ee6a31545.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_8527e3609f65b414ee42762b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_ca850de22a413539512653ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_7ad76eab19148a1569674173.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_231ba18ce4e33fa6adcf19e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_25dfcd3fe191699ef0bf8567.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_0db3eee4a7df3eb354c7d166.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.362000;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_4a6c4f22aa927d0a3fc4b813.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_46b03f12f54bec5bd8c631ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.258000;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_d13f70eb7fe7246c09fc61cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_d17382dfaf46c3db25abbb77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.384000;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_11845c19ac53640c23c441b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_303b56545cf556c1d6be2762.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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);}
.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);}
.v6{vertical-align:-18.899963px;}
.v4{vertical-align:-17.849995px;}
.v5{vertical-align:-10.799194px;}
.v7{vertical-align:-8.099854px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.713927px;}
.v2{vertical-align:21.000000px;}
.ls3d{letter-spacing:-3.402000px;}
.ls54{letter-spacing:-2.160000px;}
.ls63{letter-spacing:-1.080000px;}
.ls38{letter-spacing:-0.648000px;}
.ls3a{letter-spacing:-0.504000px;}
.ls58{letter-spacing:-0.495000px;}
.ls40{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.324000px;}
.ls29{letter-spacing:-0.270000px;}
.ls5a{letter-spacing:-0.225000px;}
.ls47{letter-spacing:-0.216000px;}
.ls55{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.175500px;}
.ls28{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.108000px;}
.ls53{letter-spacing:-0.105300px;}
.ls57{letter-spacing:-0.090000px;}
.ls48{letter-spacing:-0.070200px;}
.ls25{letter-spacing:-0.054000px;}
.ls62{letter-spacing:-0.045000px;}
.ls26{letter-spacing:-0.035100px;}
.ls17{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.000083px;}
.ls36{letter-spacing:0.000341px;}
.ls34{letter-spacing:0.008915px;}
.ls3{letter-spacing:0.013223px;}
.ls5{letter-spacing:0.013772px;}
.ls4{letter-spacing:0.013864px;}
.ls2{letter-spacing:0.013956px;}
.ls2b{letter-spacing:0.016255px;}
.ls16{letter-spacing:0.017845px;}
.ls4b{letter-spacing:0.018943px;}
.ls1{letter-spacing:0.027058px;}
.ls32{letter-spacing:0.030851px;}
.ls24{letter-spacing:0.035100px;}
.ls35{letter-spacing:0.035483px;}
.ls3e{letter-spacing:0.040133px;}
.ls56{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.050346px;}
.lsd{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.054037px;}
.ls10{letter-spacing:0.074424px;}
.ls44{letter-spacing:0.084935px;}
.ls3b{letter-spacing:0.085838px;}
.ls5e{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.105300px;}
.lse{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.126476px;}
.ls5d{letter-spacing:0.135000px;}
.ls4c{letter-spacing:0.140400px;}
.ls2c{letter-spacing:0.148765px;}
.ls42{letter-spacing:0.149022px;}
.ls1e{letter-spacing:0.157950px;}
.lsf{letter-spacing:0.158836px;}
.lsb{letter-spacing:0.159019px;}
.ls11{letter-spacing:0.159021px;}
.ls2f{letter-spacing:0.159276px;}
.ls8{letter-spacing:0.159572px;}
.ls20{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.175500px;}
.ls50{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.188945px;}
.ls4f{letter-spacing:0.202500px;}
.ls4d{letter-spacing:0.210600px;}
.ls2e{letter-spacing:0.210851px;}
.ls6{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.219535px;}
.ls51{letter-spacing:0.225000px;}
.ls15{letter-spacing:0.245700px;}
.ls4e{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.270000px;}
.ls46{letter-spacing:0.272802px;}
.ls5b{letter-spacing:0.315000px;}
.lsa{letter-spacing:0.324000px;}
.ls1b{letter-spacing:0.335899px;}
.ls52{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.368550px;}
.ls14{letter-spacing:0.378000px;}
.ls4a{letter-spacing:0.386100px;}
.ls41{letter-spacing:0.390717px;}
.ls1f{letter-spacing:0.421200px;}
.ls2d{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.486000px;}
.ls1a{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.585000px;}
.ls3f{letter-spacing:0.594000px;}
.ls61{letter-spacing:0.630000px;}
.ls1c{letter-spacing:0.647951px;}
.ls1d{letter-spacing:0.648000px;}
.ls43{letter-spacing:0.695479px;}
.ls22{letter-spacing:0.702000px;}
.ls7{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.810000px;}
.ls5f{letter-spacing:1.129438px;}
.ls60{letter-spacing:1.210500px;}
.ls30{letter-spacing:2.965975px;}
.ls33{letter-spacing:2.967806px;}
.ls0{letter-spacing:3.000000px;}
.ls37{letter-spacing:444.319887px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws98{word-spacing:-13.860000px;}
.ws6c{word-spacing:-13.596000px;}
.ws97{word-spacing:-12.852000px;}
.ws86{word-spacing:-12.582000px;}
.ws7{word-spacing:-12.528000px;}
.ws57{word-spacing:-12.366000px;}
.wsd{word-spacing:-12.312000px;}
.ws35{word-spacing:-12.258000px;}
.ws85{word-spacing:-12.150000px;}
.ws80{word-spacing:-12.096000px;}
.ws8d{word-spacing:-11.988000px;}
.wsb8{word-spacing:-11.718000px;}
.wsaa{word-spacing:-10.530000px;}
.wsb0{word-spacing:-10.440000px;}
.ws99{word-spacing:-10.417500px;}
.ws9b{word-spacing:-10.350000px;}
.wsab{word-spacing:-10.215000px;}
.ws9c{word-spacing:-9.810000px;}
.ws0{word-spacing:-9.600000px;}
.ws19{word-spacing:-8.388900px;}
.ws93{word-spacing:-8.353800px;}
.ws2{word-spacing:-8.213400px;}
.ws95{word-spacing:-8.178300px;}
.ws9a{word-spacing:-8.145000px;}
.ws16{word-spacing:-8.143200px;}
.ws94{word-spacing:-8.108100px;}
.ws1a{word-spacing:-8.073000px;}
.ws34{word-spacing:-8.037900px;}
.ws17{word-spacing:-8.002800px;}
.ws1b{word-spacing:-7.967700px;}
.ws18{word-spacing:-7.932600px;}
.ws81{word-spacing:-7.897500px;}
.ws96{word-spacing:-7.862400px;}
.ws56{word-spacing:-7.792200px;}
.ws3{word-spacing:-6.630000px;}
.wsad{word-spacing:-6.120000px;}
.wsb5{word-spacing:-6.030000px;}
.ws6b{word-spacing:-4.284000px;}
.ws78{word-spacing:-2.970000px;}
.ws44{word-spacing:-2.376000px;}
.ws30{word-spacing:-2.322000px;}
.ws3c{word-spacing:-2.214000px;}
.ws42{word-spacing:-1.836000px;}
.ws28{word-spacing:-1.782000px;}
.ws69{word-spacing:-1.728000px;}
.ws10{word-spacing:-1.242000px;}
.wse{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.134000px;}
.ws50{word-spacing:-1.080000px;}
.wsa1{word-spacing:-1.035000px;}
.ws32{word-spacing:-1.026000px;}
.wsa9{word-spacing:-0.990000px;}
.ws4f{word-spacing:-0.972000px;}
.ws20{word-spacing:-0.918000px;}
.wsa8{word-spacing:-0.900000px;}
.ws2a{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.810000px;}
.ws1f{word-spacing:-0.756000px;}
.ws9f{word-spacing:-0.720000px;}
.ws3b{word-spacing:-0.702000px;}
.ws9e{word-spacing:-0.675000px;}
.ws8{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.594000px;}
.ws2c{word-spacing:-0.540000px;}
.wsa7{word-spacing:-0.495000px;}
.ws26{word-spacing:-0.486000px;}
.ws3f{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.421200px;}
.ws63{word-spacing:-0.378000px;}
.wsb2{word-spacing:-0.360000px;}
.ws8c{word-spacing:-0.324000px;}
.ws7f{word-spacing:-0.270000px;}
.ws9d{word-spacing:-0.264000px;}
.wsa2{word-spacing:-0.225000px;}
.ws5{word-spacing:-0.216000px;}
.wsa0{word-spacing:-0.180000px;}
.ws79{word-spacing:-0.162000px;}
.wsb4{word-spacing:-0.135000px;}
.ws11{word-spacing:-0.108000px;}
.wsb6{word-spacing:-0.090000px;}
.ws37{word-spacing:-0.054037px;}
.ws31{word-spacing:-0.054000px;}
.ws59{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws54{word-spacing:0.035100px;}
.ws84{word-spacing:0.054000px;}
.wsf{word-spacing:0.108000px;}
.wsac{word-spacing:0.135000px;}
.ws7e{word-spacing:0.162000px;}
.ws27{word-spacing:0.216000px;}
.ws92{word-spacing:0.270000px;}
.wsb{word-spacing:0.324000px;}
.ws88{word-spacing:0.378000px;}
.wsa{word-spacing:0.432000px;}
.ws47{word-spacing:0.486000px;}
.ws13{word-spacing:0.540000px;}
.ws51{word-spacing:0.594000px;}
.ws66{word-spacing:0.648000px;}
.wsb1{word-spacing:0.675000px;}
.ws55{word-spacing:0.702000px;}
.ws45{word-spacing:0.756000px;}
.ws53{word-spacing:0.810000px;}
.ws25{word-spacing:0.864000px;}
.wsae{word-spacing:0.900000px;}
.ws65{word-spacing:0.918000px;}
.ws72{word-spacing:0.972000px;}
.wsa3{word-spacing:0.990000px;}
.wsc{word-spacing:1.026000px;}
.wsa4{word-spacing:1.035000px;}
.ws12{word-spacing:1.080000px;}
.wsa6{word-spacing:1.125000px;}
.ws29{word-spacing:1.134000px;}
.wsa5{word-spacing:1.170000px;}
.ws1c{word-spacing:1.188000px;}
.ws9{word-spacing:1.242000px;}
.ws1e{word-spacing:1.296000px;}
.wsb3{word-spacing:1.305000px;}
.ws22{word-spacing:1.350000px;}
.ws38{word-spacing:1.404000px;}
.ws8a{word-spacing:1.458000px;}
.ws2f{word-spacing:1.512000px;}
.ws6f{word-spacing:1.566000px;}
.wsaf{word-spacing:1.575000px;}
.ws2e{word-spacing:1.674000px;}
.wsb7{word-spacing:1.710000px;}
.ws6e{word-spacing:1.728000px;}
.ws2b{word-spacing:1.782000px;}
.ws8b{word-spacing:1.836000px;}
.ws87{word-spacing:1.944000px;}
.ws21{word-spacing:1.998000px;}
.ws6{word-spacing:2.052000px;}
.ws4b{word-spacing:2.106000px;}
.ws91{word-spacing:2.160000px;}
.ws90{word-spacing:2.214000px;}
.ws4a{word-spacing:2.268000px;}
.ws2d{word-spacing:2.322000px;}
.ws7a{word-spacing:2.376000px;}
.ws3a{word-spacing:2.484000px;}
.ws7d{word-spacing:2.538000px;}
.ws4d{word-spacing:2.808000px;}
.ws83{word-spacing:2.970000px;}
.wsb9{word-spacing:3.024000px;}
.ws62{word-spacing:3.132000px;}
.ws4e{word-spacing:3.186000px;}
.ws7c{word-spacing:3.240000px;}
.ws61{word-spacing:3.294000px;}
.ws7b{word-spacing:3.348000px;}
.ws71{word-spacing:3.402000px;}
.ws4c{word-spacing:3.510000px;}
.ws89{word-spacing:3.564000px;}
.ws39{word-spacing:3.618000px;}
.ws76{word-spacing:3.834000px;}
.ws70{word-spacing:3.888000px;}
.ws6d{word-spacing:4.104000px;}
.ws64{word-spacing:4.266000px;}
.ws33{word-spacing:4.482000px;}
.ws5f{word-spacing:4.536000px;}
.ws74{word-spacing:4.698000px;}
.ws15{word-spacing:4.743000px;}
.ws75{word-spacing:4.752000px;}
.ws49{word-spacing:4.860000px;}
.ws73{word-spacing:4.914000px;}
.ws41{word-spacing:4.968000px;}
.ws48{word-spacing:5.238000px;}
.ws3d{word-spacing:5.346000px;}
.ws77{word-spacing:5.400000px;}
.ws3e{word-spacing:5.454000px;}
.wsbc{word-spacing:5.670000px;}
.ws67{word-spacing:5.778000px;}
.ws8e{word-spacing:5.886000px;}
.ws60{word-spacing:6.264000px;}
.ws14{word-spacing:6.426000px;}
.wsba{word-spacing:6.480000px;}
.ws68{word-spacing:6.588000px;}
.ws43{word-spacing:6.696000px;}
.wsbb{word-spacing:6.750000px;}
.ws40{word-spacing:6.966000px;}
.ws8f{word-spacing:7.074000px;}
.ws82{word-spacing:11.232000px;}
.ws36{word-spacing:12.293463px;}
.ws6a{word-spacing:15.282000px;}
.ws46{word-spacing:20.952000px;}
.ws5c{word-spacing:413.490000px;}
.ws5b{word-spacing:416.724000px;}
.ws5d{word-spacing:421.218000px;}
.ws5a{word-spacing:427.224000px;}
.ws5e{word-spacing:430.500000px;}
.ws58{word-spacing:455.742000px;}
._18{margin-left:-20.952007px;}
._13{margin-left:-19.176325px;}
._12{margin-left:-17.620846px;}
._17{margin-left:-16.182648px;}
._a{margin-left:-14.688017px;}
._6{margin-left:-13.341600px;}
._7{margin-left:-12.327615px;}
._9{margin-left:-11.191200px;}
._d{margin-left:-9.901241px;}
._1e{margin-left:-8.836194px;}
._16{margin-left:-7.236006px;}
._3{margin-left:-5.248261px;}
._e{margin-left:-4.230600px;}
._2{margin-left:-3.182400px;}
._0{margin-left:-1.876800px;}
._4{width:1.029600px;}
._c{width:2.621394px;}
._10{width:3.875400px;}
._b{width:5.528400px;}
._11{width:6.876000px;}
._1f{width:8.412000px;}
._21{width:9.691194px;}
._8{width:10.746000px;}
._5{width:12.298800px;}
._1d{width:13.985994px;}
._19{width:15.454261px;}
._20{width:17.190000px;}
._15{width:20.335200px;}
._14{width:21.826801px;}
._f{width:47.607004px;}
._1{width:312.244800px;}
._1b{width:403.284000px;}
._1a{width:409.164000px;}
._1c{width:552.164400px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsd{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsb{font-size:41.068199px;}
.fsc{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:3.199200px;}
.y33{bottom:3.199350px;}
.ye0{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.yba{bottom:3.311005px;}
.yb8{bottom:3.405762px;}
.y32{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ybc{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y31{bottom:68.037600px;}
.y309{bottom:68.117249px;}
.y280{bottom:68.527200px;}
.y19a{bottom:68.929629px;}
.yb6{bottom:69.542249px;}
.y208{bottom:70.981648px;}
.y1a7{bottom:75.316650px;}
.y1f9{bottom:76.998148px;}
.y76{bottom:77.048552px;}
.y134{bottom:78.077114px;}
.y221{bottom:78.495148px;}
.ycf{bottom:79.736400px;}
.y2bc{bottom:80.880148px;}
.y30{bottom:83.037600px;}
.y308{bottom:83.115749px;}
.y27f{bottom:83.525700px;}
.y199{bottom:83.928129px;}
.yb5{bottom:84.540749px;}
.y167{bottom:84.642748px;}
.y207{bottom:85.999648px;}
.y13d{bottom:86.696996px;}
.y1a6{bottom:90.315150px;}
.y1f8{bottom:91.996648px;}
.y75{bottom:92.047052px;}
.y133{bottom:93.075614px;}
.y220{bottom:93.493648px;}
.y2bb{bottom:93.626398px;}
.yce{bottom:94.736400px;}
.y307{bottom:98.115749px;}
.y27e{bottom:98.527200px;}
.y198{bottom:98.926629px;}
.yb4{bottom:99.539249px;}
.y166{bottom:99.641248px;}
.y206{bottom:100.998148px;}
.y13c{bottom:101.695496px;}
.y2f{bottom:102.494099px;}
.y101{bottom:104.121152px;}
.y1a5{bottom:105.313650px;}
.y2ba{bottom:106.372648px;}
.y1f7{bottom:106.995148px;}
.y74{bottom:107.045552px;}
.y132{bottom:108.074114px;}
.y21f{bottom:108.492148px;}
.ycd{bottom:109.736400px;}
.y27d{bottom:113.525700px;}
.y197{bottom:113.925129px;}
.yb3{bottom:114.537749px;}
.y165{bottom:114.651748px;}
.y205{bottom:115.996648px;}
.y13b{bottom:116.693996px;}
.y2b9{bottom:119.118898px;}
.y100{bottom:119.125652px;}
.y1a4{bottom:120.312150px;}
.y1f6{bottom:121.993648px;}
.y73{bottom:122.047052px;}
.y131{bottom:123.072614px;}
.y21e{bottom:123.490648px;}
.ycc{bottom:124.734900px;}
.y306{bottom:128.123261px;}
.y27c{bottom:128.528700px;}
.y196{bottom:128.923629px;}
.yb2{bottom:129.536249px;}
.y164{bottom:129.650248px;}
.y244{bottom:130.984648px;}
.y204{bottom:130.995148px;}
.y2b8{bottom:131.865148px;}
.yff{bottom:134.124152px;}
.y1a3{bottom:135.310650px;}
.y1f5{bottom:136.992148px;}
.y72{bottom:137.045552px;}
.y130{bottom:138.071114px;}
.y21d{bottom:138.489148px;}
.y2d{bottom:141.072454px;}
.y305{bottom:143.121761px;}
.y27b{bottom:143.527200px;}
.y195{bottom:143.922129px;}
.yb1{bottom:144.534749px;}
.y2b7{bottom:144.611398px;}
.y163{bottom:144.648748px;}
.y243{bottom:145.983148px;}
.y203{bottom:145.993648px;}
.yfe{bottom:149.122652px;}
.y1a2{bottom:150.309150px;}
.y1f4{bottom:151.990648px;}
.y71{bottom:152.044052px;}
.y12f{bottom:153.069614px;}
.y21c{bottom:153.487648px;}
.y2c{bottom:156.070954px;}
.y2b6{bottom:157.357648px;}
.ycb{bottom:157.736400px;}
.y304{bottom:158.120261px;}
.y27a{bottom:158.525700px;}
.y194{bottom:158.920629px;}
.yb0{bottom:159.537749px;}
.y162{bottom:159.647248px;}
.y242{bottom:160.981648px;}
.y202{bottom:160.992148px;}
.yfd{bottom:164.121152px;}
.y1f3{bottom:166.989148px;}
.y12e{bottom:168.068114px;}
.y21b{bottom:168.486148px;}
.y2b5{bottom:170.103898px;}
.y2b{bottom:171.072443px;}
.yca{bottom:172.736400px;}
.y303{bottom:173.118761px;}
.y279{bottom:173.528700px;}
.y193{bottom:173.919129px;}
.yaf{bottom:174.536249px;}
.y161{bottom:174.645748px;}
.y241{bottom:175.984648px;}
.y201{bottom:175.990648px;}
.yfc{bottom:179.119652px;}
.y1f2{bottom:181.987648px;}
.y2b4{bottom:182.850148px;}
.y12d{bottom:183.066614px;}
.y21a{bottom:183.484648px;}
.y70{bottom:185.062052px;}
.y2a{bottom:186.070943px;}
.yc9{bottom:187.736400px;}
.y302{bottom:188.117261px;}
.y278{bottom:188.527200px;}
.y192{bottom:188.917629px;}
.yae{bottom:189.534749px;}
.y160{bottom:189.644248px;}
.y240{bottom:190.983148px;}
.y200{bottom:190.989148px;}
.y2b3{bottom:195.596398px;}
.y1f1{bottom:196.986148px;}
.y12c{bottom:198.065114px;}
.y219{bottom:198.483148px;}
.y6f{bottom:200.060552px;}
.y145{bottom:200.982142px;}
.y29{bottom:201.072305px;}
.yc8{bottom:202.742400px;}
.y301{bottom:203.115761px;}
.y277{bottom:203.525700px;}
.y191{bottom:203.916129px;}
.yad{bottom:204.546589px;}
.y15f{bottom:204.642748px;}
.y23f{bottom:205.981648px;}
.y1ff{bottom:205.987648px;}
.y2b2{bottom:208.342648px;}
.y1f0{bottom:211.984648px;}
.yfb{bottom:212.131652px;}
.y12b{bottom:213.063614px;}
.y218{bottom:213.481648px;}
.y6e{bottom:215.059052px;}
.y1b7{bottom:215.820150px;}
.y144{bottom:215.980642px;}
.y28{bottom:216.070805px;}
.yc7{bottom:217.740900px;}
.y300{bottom:218.115761px;}
.y276{bottom:218.527200px;}
.y190{bottom:218.914629px;}
.yac{bottom:219.545089px;}
.y15e{bottom:219.641248px;}
.y1fe{bottom:220.986148px;}
.y23e{bottom:220.992148px;}
.y2b1{bottom:221.088898px;}
.y1ef{bottom:226.983148px;}
.yfa{bottom:227.130152px;}
.y12a{bottom:228.062114px;}
.y217{bottom:228.483148px;}
.y6d{bottom:230.057552px;}
.y1b6{bottom:230.818650px;}
.y143{bottom:230.979142px;}
.y27{bottom:231.072305px;}
.yc6{bottom:232.739400px;}
.y275{bottom:233.525700px;}
.y2b0{bottom:233.835148px;}
.y18f{bottom:233.913129px;}
.yab{bottom:234.543589px;}
.y15d{bottom:234.644248px;}
.y1fd{bottom:235.984648px;}
.y23d{bottom:235.990648px;}
.y1ee{bottom:241.981648px;}
.yf9{bottom:242.128652px;}
.y129{bottom:243.060614px;}
.y216{bottom:243.481648px;}
.y6c{bottom:245.056052px;}
.y1b5{bottom:245.817150px;}
.y142{bottom:245.977642px;}
.y26{bottom:246.070805px;}
.y2af{bottom:246.581398px;}
.yc5{bottom:247.737900px;}
.y2ff{bottom:248.363284px;}
.y274{bottom:248.545200px;}
.y18e{bottom:248.911629px;}
.yaa{bottom:249.542089px;}
.y15c{bottom:249.642748px;}
.y1fc{bottom:250.983148px;}
.y23c{bottom:250.989148px;}
.y1ed{bottom:256.980148px;}
.yf8{bottom:257.127152px;}
.y128{bottom:258.059114px;}
.y215{bottom:258.481648px;}
.y2ae{bottom:259.327648px;}
.y6b{bottom:260.054552px;}
.y1b4{bottom:260.815650px;}
.y141{bottom:260.976142px;}
.y25{bottom:261.073805px;}
.y2fe{bottom:261.109534px;}
.yc4{bottom:262.736400px;}
.y273{bottom:263.543700px;}
.y18d{bottom:263.910129px;}
.ya9{bottom:264.540589px;}
.y15b{bottom:264.641248px;}
.y1fb{bottom:265.981648px;}
.y23b{bottom:265.987648px;}
.y1ec{bottom:271.980148px;}
.y2ad{bottom:272.073898px;}
.yf7{bottom:272.125652px;}
.y127{bottom:273.057614px;}
.y214{bottom:273.484648px;}
.y2fd{bottom:273.855784px;}
.y6a{bottom:275.053052px;}
.y1b3{bottom:275.814150px;}
.y140{bottom:275.974642px;}
.y24{bottom:276.072305px;}
.yc3{bottom:277.736400px;}
.y272{bottom:278.542200px;}
.y18c{bottom:278.908629px;}
.ya8{bottom:279.539089px;}
.y15a{bottom:279.650271px;}
.y1fa{bottom:280.980148px;}
.y23a{bottom:280.986148px;}
.y2ac{bottom:284.820148px;}
.y2fc{bottom:286.602034px;}
.yf6{bottom:287.124152px;}
.y126{bottom:288.056114px;}
.y213{bottom:288.483148px;}
.y69{bottom:290.051552px;}
.y1b2{bottom:290.812650px;}
.y13f{bottom:290.973142px;}
.y23{bottom:291.070805px;}
.yc2{bottom:292.736400px;}
.y271{bottom:293.540700px;}
.y18b{bottom:293.907129px;}
.ya7{bottom:294.537589px;}
.y159{bottom:294.648771px;}
.y239{bottom:295.984648px;}
.y2ab{bottom:297.566398px;}
.y2fb{bottom:299.348284px;}
.yf5{bottom:302.122652px;}
.y125{bottom:303.054614px;}
.y212{bottom:303.481648px;}
.y1eb{bottom:305.028194px;}
.y68{bottom:305.050052px;}
.y1b1{bottom:305.811150px;}
.y13e{bottom:305.971642px;}
.y22{bottom:306.073805px;}
.yc1{bottom:307.734900px;}
.y270{bottom:308.539200px;}
.y18a{bottom:308.905629px;}
.ya6{bottom:309.536089px;}
.y158{bottom:309.647271px;}
.y2aa{bottom:310.312648px;}
.y238{bottom:310.983148px;}
.y2fa{bottom:312.094534px;}
.yf4{bottom:317.121152px;}
.y124{bottom:318.053114px;}
.y211{bottom:318.480148px;}
.y1ea{bottom:320.026694px;}
.y67{bottom:320.048552px;}
.y21{bottom:321.072305px;}
.y2a9{bottom:323.058898px;}
.y26f{bottom:323.537700px;}
.y189{bottom:323.904129px;}
.ya5{bottom:324.534589px;}
.y157{bottom:324.645771px;}
.y2f9{bottom:324.840784px;}
.y237{bottom:325.981648px;}
.y210{bottom:329.862139px;}
.yf3{bottom:332.119652px;}
.y123{bottom:333.051614px;}
.y1e9{bottom:335.025194px;}
.y66{bottom:335.047052px;}
.y2a8{bottom:335.805148px;}
.y20{bottom:336.070805px;}
.y2f8{bottom:337.587034px;}
.y26e{bottom:338.536200px;}
.y188{bottom:338.902629px;}
.ya4{bottom:339.537612px;}
.y156{bottom:339.644271px;}
.yc0{bottom:340.737900px;}
.y236{bottom:340.981648px;}
.y20f{bottom:344.860639px;}
.y122{bottom:348.050114px;}
.y2a7{bottom:348.551398px;}
.y1e8{bottom:350.023694px;}
.y65{bottom:350.045552px;}
.y2f7{bottom:350.333284px;}
.y1f{bottom:351.073805px;}
.y26d{bottom:353.534700px;}
.y187{bottom:353.901129px;}
.ya3{bottom:354.536112px;}
.y155{bottom:354.642771px;}
.ybf{bottom:355.736400px;}
.y235{bottom:355.980148px;}
.y234{bottom:359.613013px;}
.y20e{bottom:359.859139px;}
.y2a6{bottom:361.297648px;}
.y121{bottom:363.048614px;}
.y2f6{bottom:363.079534px;}
.y1e7{bottom:365.022194px;}
.y64{bottom:365.047052px;}
.yf2{bottom:365.124129px;}
.y1e{bottom:366.072305px;}
.y26c{bottom:368.533200px;}
.y186{bottom:368.899629px;}
.ya2{bottom:369.534612px;}
.y154{bottom:369.641271px;}
.ybe{bottom:370.734900px;}
.y2a5{bottom:374.043898px;}
.y233{bottom:374.611513px;}
.y20d{bottom:374.857639px;}
.y2f5{bottom:375.825784px;}
.y120{bottom:378.047114px;}
.y1e6{bottom:380.020694px;}
.y63{bottom:380.045552px;}
.yf1{bottom:380.122629px;}
.y1d{bottom:381.070805px;}
.y26b{bottom:383.531700px;}
.y185{bottom:383.898129px;}
.ya1{bottom:384.546612px;}
.y153{bottom:384.642771px;}
.y2a4{bottom:386.790148px;}
.y2f4{bottom:388.572034px;}
.y232{bottom:389.610013px;}
.y20c{bottom:389.856139px;}
.y11f{bottom:393.045614px;}
.y1e5{bottom:395.019194px;}
.y62{bottom:395.044052px;}
.yf0{bottom:395.121129px;}
.y1c{bottom:396.070805px;}
.y26a{bottom:398.530200px;}
.y184{bottom:398.896629px;}
.y2a3{bottom:399.536398px;}
.ya0{bottom:399.545112px;}
.y152{bottom:399.641271px;}
.y2f3{bottom:401.318284px;}
.y231{bottom:404.608513px;}
.y20b{bottom:404.854639px;}
.y11e{bottom:408.044114px;}
.y253{bottom:408.472630px;}
.y1e4{bottom:410.017694px;}
.y61{bottom:410.044052px;}
.yef{bottom:410.125629px;}
.y1b{bottom:411.115815px;}
.y2a2{bottom:412.282648px;}
.y269{bottom:413.528700px;}
.y183{bottom:413.895129px;}
.y2f2{bottom:414.064534px;}
.y9f{bottom:414.543612px;}
.y151{bottom:414.645771px;}
.y230{bottom:419.607013px;}
.y20a{bottom:419.853139px;}
.y11d{bottom:423.042614px;}
.y252{bottom:423.471130px;}
.y1e3{bottom:425.016194px;}
.y2a1{bottom:425.028898px;}
.yee{bottom:425.124129px;}
.y1a{bottom:426.114315px;}
.y2f1{bottom:426.810784px;}
.y268{bottom:428.527200px;}
.y182{bottom:428.893629px;}
.y9e{bottom:429.542112px;}
.y150{bottom:429.644271px;}
.y22f{bottom:434.605513px;}
.y209{bottom:434.851639px;}
.y2a0{bottom:437.775148px;}
.y11c{bottom:438.041114px;}
.y251{bottom:438.469630px;}
.y2f0{bottom:439.557034px;}
.y1e2{bottom:440.014694px;}
.yed{bottom:440.122629px;}
.y60{bottom:443.054552px;}
.y267{bottom:443.525700px;}
.y181{bottom:443.892129px;}
.yd9{bottom:444.388493px;}
.y9d{bottom:444.540612px;}
.y14f{bottom:444.642771px;}
.y22e{bottom:449.604013px;}
.y29f{bottom:450.521398px;}
.y2ef{bottom:452.303284px;}
.y11b{bottom:453.039614px;}
.y250{bottom:453.468130px;}
.y1e1{bottom:455.013194px;}
.yec{bottom:455.121129px;}
.y5f{bottom:458.053052px;}
.y266{bottom:458.549700px;}
.y180{bottom:458.890629px;}
.yd8{bottom:459.388493px;}
.y9c{bottom:459.539112px;}
.y14e{bottom:459.641271px;}
.y29e{bottom:463.267648px;}
.y22d{bottom:464.602513px;}
.y2ee{bottom:465.049534px;}
.y11a{bottom:468.038114px;}
.y24f{bottom:468.466630px;}
.y1e0{bottom:470.011694px;}
.yeb{bottom:470.119629px;}
.y19{bottom:471.258315px;}
.y5e{bottom:473.051552px;}
.y265{bottom:473.548200px;}
.y17f{bottom:473.889129px;}
.yd7{bottom:474.386993px;}
.y9b{bottom:474.537612px;}
.y14d{bottom:474.650271px;}
.y29d{bottom:476.013898px;}
.y2ed{bottom:477.795784px;}
.y22c{bottom:479.602513px;}
.y119{bottom:483.036614px;}
.y24e{bottom:483.465130px;}
.y1df{bottom:485.010194px;}
.yea{bottom:485.119629px;}
.y18{bottom:487.755315px;}
.y5d{bottom:488.050052px;}
.y264{bottom:488.546700px;}
.y29c{bottom:488.760148px;}
.y17e{bottom:488.887629px;}
.y9a{bottom:489.536112px;}
.y14c{bottom:489.648771px;}
.y2ec{bottom:490.542034px;}
.y22b{bottom:494.601013px;}
.y118{bottom:498.035114px;}
.y24d{bottom:498.463630px;}
.y1de{bottom:500.008694px;}
.ye9{bottom:500.119629px;}
.y29b{bottom:501.506398px;}
.y5c{bottom:503.048552px;}
.y2eb{bottom:503.288284px;}
.y263{bottom:503.545200px;}
.y17d{bottom:503.886129px;}
.y17{bottom:504.252315px;}
.y99{bottom:504.534612px;}
.y14b{bottom:504.647271px;}
.ydf{bottom:505.694564px;}
.y117{bottom:513.033614px;}
.y24c{bottom:513.462130px;}
.y29a{bottom:514.252648px;}
.y1dd{bottom:515.007194px;}
.y2ea{bottom:516.034534px;}
.y5b{bottom:518.047052px;}
.y262{bottom:518.543700px;}
.y17c{bottom:518.884629px;}
.y98{bottom:519.539112px;}
.y14a{bottom:519.645771px;}
.y16{bottom:520.749315px;}
.yde{bottom:523.229564px;}
.y299{bottom:526.998898px;}
.y116{bottom:528.032114px;}
.y24b{bottom:528.460630px;}
.y2e9{bottom:528.780784px;}
.y1dc{bottom:530.005694px;}
.y5a{bottom:533.045552px;}
.ye8{bottom:533.121129px;}
.y261{bottom:533.542200px;}
.y17b{bottom:533.883129px;}
.y97{bottom:534.537612px;}
.y149{bottom:534.644271px;}
.y15{bottom:537.246315px;}
.y298{bottom:539.745148px;}
.ydd{bottom:540.764564px;}
.y2e8{bottom:541.527034px;}
.y115{bottom:543.030614px;}
.y24a{bottom:543.459130px;}
.y1db{bottom:545.004194px;}
.y59{bottom:548.047052px;}
.ye7{bottom:548.121129px;}
.y260{bottom:548.540700px;}
.y17a{bottom:548.881629px;}
.y96{bottom:549.536112px;}
.y148{bottom:549.642771px;}
.y297{bottom:552.491398px;}
.y14{bottom:553.743315px;}
.y2e7{bottom:554.273284px;}
.y114{bottom:558.035114px;}
.ydc{bottom:558.299564px;}
.y249{bottom:558.457630px;}
.y1da{bottom:560.002694px;}
.y58{bottom:563.045552px;}
.ye6{bottom:563.121129px;}
.y25f{bottom:563.539200px;}
.y179{bottom:563.880129px;}
.y95{bottom:564.534612px;}
.y147{bottom:564.641271px;}
.y296{bottom:565.237648px;}
.y2e6{bottom:567.019534px;}
.y13{bottom:570.240315px;}
.y113{bottom:573.033614px;}
.y248{bottom:573.456130px;}
.y1b0{bottom:574.423652px;}
.y1d9{bottom:575.001194px;}
.ydb{bottom:575.834564px;}
.y295{bottom:577.983898px;}
.y57{bottom:578.051552px;}
.ye5{bottom:578.121129px;}
.y25e{bottom:578.537700px;}
.y178{bottom:578.878629px;}
.y94{bottom:579.533112px;}
.y146{bottom:579.639771px;}
.y2e5{bottom:579.765784px;}
.y12{bottom:586.737315px;}
.y112{bottom:588.032114px;}
.y247{bottom:588.454630px;}
.y1af{bottom:589.422152px;}
.y1d8{bottom:589.999694px;}
.y294{bottom:590.730148px;}
.y2e4{bottom:592.512034px;}
.y56{bottom:593.050052px;}
.ye4{bottom:593.122629px;}
.yda{bottom:593.368332px;}
.y25d{bottom:593.536200px;}
.y177{bottom:593.877129px;}
.y111{bottom:603.030614px;}
.y11{bottom:603.234315px;}
.y246{bottom:603.453130px;}
.y293{bottom:603.480148px;}
.y1ae{bottom:604.420652px;}
.y1d7{bottom:604.998194px;}
.y2e3{bottom:605.258284px;}
.y55{bottom:608.048552px;}
.ye3{bottom:608.121129px;}
.y25c{bottom:608.534700px;}
.y176{bottom:608.875629px;}
.y93{bottom:612.536112px;}
.y2e2{bottom:618.004534px;}
.y110{bottom:618.035114px;}
.y245{bottom:618.451630px;}
.y1ad{bottom:619.419152px;}
.y10{bottom:619.731315px;}
.y1d6{bottom:619.996694px;}
.y54{bottom:623.047052px;}
.ye2{bottom:623.121129px;}
.y25b{bottom:623.533200px;}
.y175{bottom:623.874129px;}
.y92{bottom:627.534612px;}
.y2e1{bottom:630.750784px;}
.y10f{bottom:633.033614px;}
.y1ac{bottom:634.417652px;}
.y1d5{bottom:634.995194px;}
.y16e{bottom:635.380628px;}
.yf{bottom:636.228315px;}
.y53{bottom:638.045552px;}
.ye1{bottom:638.119629px;}
.y25a{bottom:638.531700px;}
.y174{bottom:638.872629px;}
.y91{bottom:642.539112px;}
.y2e0{bottom:643.497034px;}
.yd6{bottom:647.256148px;}
.y10e{bottom:648.032114px;}
.y1ab{bottom:649.416152px;}
.y1d4{bottom:649.993694px;}
.y16d{bottom:650.379128px;}
.ye{bottom:652.725315px;}
.y292{bottom:652.980148px;}
.y52{bottom:653.047052px;}
.y259{bottom:653.530200px;}
.y173{bottom:653.871129px;}
.y2df{bottom:656.243284px;}
.y90{bottom:657.537612px;}
.yd5{bottom:662.254648px;}
.y10d{bottom:663.030614px;}
.y1aa{bottom:664.414652px;}
.y1d3{bottom:664.992194px;}
.y16c{bottom:665.377628px;}
.y51{bottom:668.045552px;}
.y258{bottom:668.528700px;}
.y172{bottom:668.869629px;}
.y2de{bottom:668.989534px;}
.yd{bottom:669.222315px;}
.y8f{bottom:672.536112px;}
.yd4{bottom:677.253148px;}
.y10c{bottom:678.029114px;}
.y1a9{bottom:679.413152px;}
.y1d2{bottom:679.990694px;}
.y16b{bottom:680.376128px;}
.y2dd{bottom:681.735784px;}
.y291{bottom:682.984648px;}
.y50{bottom:683.048552px;}
.y257{bottom:683.527200px;}
.y171{bottom:683.869629px;}
.yc{bottom:685.719315px;}
.y8e{bottom:687.534612px;}
.yd3{bottom:692.254648px;}
.y10b{bottom:693.029114px;}
.y1a8{bottom:694.411652px;}
.y2dc{bottom:694.482034px;}
.y1d1{bottom:694.989194px;}
.y16a{bottom:695.374628px;}
.y290{bottom:697.983148px;}
.y4f{bottom:698.047052px;}
.y256{bottom:698.525700px;}
.y10a{bottom:702.033131px;}
.y8d{bottom:702.534612px;}
.y2db{bottom:707.228284px;}
.yd2{bottom:707.253148px;}
.y1d0{bottom:709.987694px;}
.y169{bottom:710.373128px;}
.y31a{bottom:711.526655px;}
.y28f{bottom:712.981648px;}
.y4e{bottom:713.045552px;}
.y255{bottom:713.524200px;}
.yb{bottom:715.719315px;}
.y170{bottom:716.871129px;}
.y109{bottom:717.039177px;}
.y8c{bottom:717.536112px;}
.y2da{bottom:719.974534px;}
.yd1{bottom:722.253148px;}
.y1cf{bottom:724.986194px;}
.y168{bottom:725.371628px;}
.y28e{bottom:727.980148px;}
.y4d{bottom:728.047052px;}
.y254{bottom:728.524200px;}
.y16f{bottom:731.869629px;}
.y108{bottom:732.037677px;}
.y8b{bottom:732.534612px;}
.y2d9{bottom:732.720784px;}
.ya{bottom:733.719315px;}
.yd0{bottom:737.251648px;}
.y1ce{bottom:739.984694px;}
.y319{bottom:741.523653px;}
.y28d{bottom:742.980148px;}
.y4c{bottom:743.045552px;}
.y2d8{bottom:745.467034px;}
.y107{bottom:747.036177px;}
.y8a{bottom:747.534612px;}
.y1cd{bottom:754.983194px;}
.y318{bottom:756.522153px;}
.y4b{bottom:758.047006px;}
.y2d7{bottom:758.213284px;}
.y13a{bottom:758.373174px;}
.y106{bottom:762.034677px;}
.y89{bottom:762.533112px;}
.y22a{bottom:765.943458px;}
.y9{bottom:766.695269px;}
.y1cc{bottom:769.981694px;}
.y2d6{bottom:770.959534px;}
.y317{bottom:771.520653px;}
.y28c{bottom:772.992194px;}
.y4a{bottom:773.045506px;}
.y139{bottom:773.374674px;}
.y105{bottom:777.033177px;}
.y284{bottom:780.814615px;}
.y229{bottom:780.941958px;}
.y2d5{bottom:783.705784px;}
.y1cb{bottom:784.980194px;}
.y316{bottom:786.519153px;}
.y28b{bottom:787.990694px;}
.y49{bottom:788.048506px;}
.y138{bottom:788.373174px;}
.y104{bottom:792.034677px;}
.y88{bottom:795.534795px;}
.y283{bottom:795.813115px;}
.y228{bottom:795.940458px;}
.y2d4{bottom:796.452034px;}
.y1a1{bottom:799.177692px;}
.y1ca{bottom:799.980194px;}
.y315{bottom:801.517653px;}
.y28a{bottom:802.989194px;}
.y48{bottom:803.047006px;}
.y137{bottom:803.374674px;}
.y103{bottom:807.033177px;}
.y2d3{bottom:809.198284px;}
.y87{bottom:810.534795px;}
.y282{bottom:810.813115px;}
.y227{bottom:810.938958px;}
.y8{bottom:811.701269px;}
.y1a0{bottom:814.176192px;}
.y314{bottom:816.516153px;}
.y289{bottom:817.987694px;}
.y47{bottom:818.045506px;}
.y136{bottom:818.373174px;}
.y2d2{bottom:821.944534px;}
.y102{bottom:822.031677px;}
.y86{bottom:825.554221px;}
.y281{bottom:825.811615px;}
.y226{bottom:825.937458px;}
.y19f{bottom:829.174692px;}
.y313{bottom:831.514653px;}
.y288{bottom:832.986194px;}
.y1c9{bottom:833.005694px;}
.y46{bottom:833.048506px;}
.y135{bottom:833.371674px;}
.y2d1{bottom:834.690784px;}
.y85{bottom:840.552721px;}
.y225{bottom:840.935958px;}
.y19e{bottom:844.173192px;}
.y312{bottom:846.513153px;}
.y2d0{bottom:847.437034px;}
.y287{bottom:847.984694px;}
.y1c8{bottom:848.004194px;}
.y45{bottom:848.047006px;}
.y84{bottom:855.551221px;}
.y224{bottom:855.934458px;}
.y7{bottom:856.707269px;}
.y19d{bottom:859.174692px;}
.y2cf{bottom:860.183284px;}
.y286{bottom:862.983194px;}
.y1c7{bottom:863.002694px;}
.y44{bottom:863.045506px;}
.y311{bottom:869.001153px;}
.y83{bottom:870.549721px;}
.y223{bottom:870.932958px;}
.y2ce{bottom:872.929534px;}
.y19c{bottom:874.173192px;}
.y285{bottom:877.981694px;}
.y1c6{bottom:878.001194px;}
.y43{bottom:878.050006px;}
.y310{bottom:883.999653px;}
.y2cd{bottom:885.675784px;}
.y222{bottom:885.931458px;}
.y19b{bottom:889.171692px;}
.y1c5{bottom:892.999694px;}
.yb7{bottom:893.032471px;}
.y42{bottom:893.048506px;}
.yb9{bottom:896.438232px;}
.y2cc{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y30f{bottom:906.504153px;}
.y1c4{bottom:907.998194px;}
.y41{bottom:908.047006px;}
.y2cb{bottom:911.168284px;}
.y82{bottom:921.093721px;}
.y1c3{bottom:922.996694px;}
.y40{bottom:923.045506px;}
.y2ca{bottom:923.914534px;}
.y30e{bottom:929.008653px;}
.y81{bottom:936.092221px;}
.y2c9{bottom:936.660784px;}
.y1c2{bottom:937.995194px;}
.y3f{bottom:938.051506px;}
.y5{bottom:946.719269px;}
.y2c8{bottom:949.407034px;}
.y80{bottom:951.090721px;}
.y30d{bottom:951.513153px;}
.y1c1{bottom:952.993694px;}
.y3e{bottom:953.050006px;}
.y2e{bottom:954.366760px;}
.y2c7{bottom:962.153284px;}
.y7f{bottom:966.089221px;}
.y30c{bottom:966.513153px;}
.y1c0{bottom:967.992194px;}
.y3d{bottom:968.048506px;}
.y2c6{bottom:974.899534px;}
.y7e{bottom:981.087721px;}
.y1bf{bottom:982.990694px;}
.y3c{bottom:983.047006px;}
.y2c5{bottom:987.645784px;}
.y7d{bottom:996.086221px;}
.y30b{bottom:996.513153px;}
.y1be{bottom:997.989194px;}
.y3b{bottom:998.045506px;}
.y2c4{bottom:1000.392034px;}
.y7c{bottom:1011.084721px;}
.y30a{bottom:1011.513153px;}
.y1bd{bottom:1012.987694px;}
.y3a{bottom:1013.047006px;}
.y2c3{bottom:1013.138284px;}
.y2c2{bottom:1025.884534px;}
.y7b{bottom:1026.084721px;}
.y1bc{bottom:1027.986194px;}
.y39{bottom:1028.045506px;}
.y2c1{bottom:1038.630784px;}
.y7a{bottom:1041.083221px;}
.y1bb{bottom:1042.984694px;}
.y38{bottom:1043.047006px;}
.y2c0{bottom:1051.377034px;}
.y1ba{bottom:1057.983194px;}
.y37{bottom:1058.045506px;}
.y2bf{bottom:1064.123284px;}
.y1b9{bottom:1072.981694px;}
.y36{bottom:1073.045506px;}
.y79{bottom:1074.084721px;}
.y2be{bottom:1076.869534px;}
.y1b8{bottom:1087.980194px;}
.y35{bottom:1088.044006px;}
.y78{bottom:1089.083221px;}
.y2bd{bottom:1089.615784px;}
.y77{bottom:1140.640320px;}
.ybd{bottom:1140.746521px;}
.y34{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h20{height:13.050000px;}
.h22{height:19.615503px;}
.h10{height:30.684673px;}
.h2{height:34.523438px;}
.h41{height:35.411133px;}
.h21{height:38.528523px;}
.h7{height:38.838867px;}
.h23{height:38.906783px;}
.h2d{height:41.538000px;}
.h2c{height:43.008000px;}
.h30{height:43.154297px;}
.h43{height:44.505000px;}
.h44{height:45.090000px;}
.h3{height:45.679688px;}
.h42{height:46.080000px;}
.h1b{height:47.469727px;}
.h11{height:48.510668px;}
.h6{height:49.183594px;}
.h12{height:49.373529px;}
.h45{height:50.439000px;}
.h8{height:53.406000px;}
.h9{height:53.427827px;}
.h37{height:53.511680px;}
.h3b{height:53.511865px;}
.h3c{height:53.529865px;}
.h40{height:53.535680px;}
.h38{height:53.535907px;}
.h1e{height:53.559863px;}
.h39{height:53.565863px;}
.h35{height:53.571131px;}
.h1a{height:53.583863px;}
.h27{height:53.583869px;}
.h17{height:53.584046px;}
.h1d{height:53.589863px;}
.h32{height:53.589909px;}
.h18{height:53.590046px;}
.h31{height:53.595406px;}
.hb{height:53.595863px;}
.h1f{height:53.595904px;}
.h3a{height:53.595907px;}
.h3e{height:53.595911px;}
.h19{height:53.596046px;}
.h36{height:53.601131px;}
.h2f{height:53.601314px;}
.h34{height:53.601680px;}
.hc{height:53.601863px;}
.h3d{height:53.601865px;}
.he{height:53.601909px;}
.h3f{height:53.601911px;}
.h15{height:53.602046px;}
.hd{height:53.602504px;}
.h2e{height:53.607314px;}
.ha{height:53.607863px;}
.h26{height:53.607869px;}
.h2a{height:53.607892px;}
.h33{height:53.607909px;}
.h28{height:53.607915px;}
.h14{height:53.608046px;}
.h1c{height:53.608779px;}
.h24{height:53.613869px;}
.h29{height:53.613915px;}
.h13{height:53.614046px;}
.h25{height:54.102000px;}
.h16{height:54.108000px;}
.h2b{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:245.325005px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.xc{left:118.743759px;}
.x7{left:141.395702px;}
.xe{left:148.713730px;}
.x10{left:227.418594px;}
.x5{left:233.858253px;}
.x11{left:238.570793px;}
.x6{left:251.863629px;}
.x13{left:254.096999px;}
.x14{left:302.498703px;}
.xa{left:409.896011px;}
.xb{left:514.343399px;}
.xd{left:545.069412px;}
.x4{left:586.814117px;}
.xf{left:623.774094px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x12{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v6{vertical-align:-16.799967pt;}
.v4{vertical-align:-15.866662pt;}
.v5{vertical-align:-9.599284pt;}
.v7{vertical-align:-7.199870pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.634602pt;}
.v2{vertical-align:18.666667pt;}
.ls3d{letter-spacing:-3.024000pt;}
.ls54{letter-spacing:-1.920000pt;}
.ls63{letter-spacing:-0.960000pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls3a{letter-spacing:-0.448000pt;}
.ls58{letter-spacing:-0.440000pt;}
.ls40{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.288000pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls5a{letter-spacing:-0.200000pt;}
.ls47{letter-spacing:-0.192000pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.156000pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls53{letter-spacing:-0.093600pt;}
.ls57{letter-spacing:-0.080000pt;}
.ls48{letter-spacing:-0.062400pt;}
.ls25{letter-spacing:-0.048000pt;}
.ls62{letter-spacing:-0.040000pt;}
.ls26{letter-spacing:-0.031200pt;}
.ls17{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.000074pt;}
.ls36{letter-spacing:0.000303pt;}
.ls34{letter-spacing:0.007924pt;}
.ls3{letter-spacing:0.011754pt;}
.ls5{letter-spacing:0.012242pt;}
.ls4{letter-spacing:0.012324pt;}
.ls2{letter-spacing:0.012405pt;}
.ls2b{letter-spacing:0.014449pt;}
.ls16{letter-spacing:0.015862pt;}
.ls4b{letter-spacing:0.016839pt;}
.ls1{letter-spacing:0.024051pt;}
.ls32{letter-spacing:0.027423pt;}
.ls24{letter-spacing:0.031200pt;}
.ls35{letter-spacing:0.031541pt;}
.ls3e{letter-spacing:0.035674pt;}
.ls56{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.044752pt;}
.lsd{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.048033pt;}
.ls10{letter-spacing:0.066155pt;}
.ls44{letter-spacing:0.075498pt;}
.ls3b{letter-spacing:0.076300pt;}
.ls5e{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.093600pt;}
.lse{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.112423pt;}
.ls5d{letter-spacing:0.120000pt;}
.ls4c{letter-spacing:0.124800pt;}
.ls2c{letter-spacing:0.132236pt;}
.ls42{letter-spacing:0.132464pt;}
.ls1e{letter-spacing:0.140400pt;}
.lsf{letter-spacing:0.141187pt;}
.lsb{letter-spacing:0.141350pt;}
.ls11{letter-spacing:0.141352pt;}
.ls2f{letter-spacing:0.141579pt;}
.ls8{letter-spacing:0.141842pt;}
.ls20{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.156000pt;}
.ls50{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.167952pt;}
.ls4f{letter-spacing:0.180000pt;}
.ls4d{letter-spacing:0.187200pt;}
.ls2e{letter-spacing:0.187423pt;}
.ls6{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.195143pt;}
.ls51{letter-spacing:0.200000pt;}
.ls15{letter-spacing:0.218400pt;}
.ls4e{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.240000pt;}
.ls46{letter-spacing:0.242490pt;}
.ls5b{letter-spacing:0.280000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls1b{letter-spacing:0.298577pt;}
.ls52{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.327600pt;}
.ls14{letter-spacing:0.336000pt;}
.ls4a{letter-spacing:0.343200pt;}
.ls41{letter-spacing:0.347304pt;}
.ls1f{letter-spacing:0.374400pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.432000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.520000pt;}
.ls3f{letter-spacing:0.528000pt;}
.ls61{letter-spacing:0.560000pt;}
.ls1c{letter-spacing:0.575956pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls43{letter-spacing:0.618203pt;}
.ls22{letter-spacing:0.624000pt;}
.ls7{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.720000pt;}
.ls5f{letter-spacing:1.003945pt;}
.ls60{letter-spacing:1.076000pt;}
.ls30{letter-spacing:2.636423pt;}
.ls33{letter-spacing:2.638050pt;}
.ls0{letter-spacing:2.666667pt;}
.ls37{letter-spacing:394.951011pt;}
.ws1{word-spacing:-13.333333pt;}
.ws98{word-spacing:-12.320000pt;}
.ws6c{word-spacing:-12.085333pt;}
.ws97{word-spacing:-11.424000pt;}
.ws86{word-spacing:-11.184000pt;}
.ws7{word-spacing:-11.136000pt;}
.ws57{word-spacing:-10.992000pt;}
.wsd{word-spacing:-10.944000pt;}
.ws35{word-spacing:-10.896000pt;}
.ws85{word-spacing:-10.800000pt;}
.ws80{word-spacing:-10.752000pt;}
.ws8d{word-spacing:-10.656000pt;}
.wsb8{word-spacing:-10.416000pt;}
.wsaa{word-spacing:-9.360000pt;}
.wsb0{word-spacing:-9.280000pt;}
.ws99{word-spacing:-9.260000pt;}
.ws9b{word-spacing:-9.200000pt;}
.wsab{word-spacing:-9.080000pt;}
.ws9c{word-spacing:-8.720000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws19{word-spacing:-7.456800pt;}
.ws93{word-spacing:-7.425600pt;}
.ws2{word-spacing:-7.300800pt;}
.ws95{word-spacing:-7.269600pt;}
.ws9a{word-spacing:-7.240000pt;}
.ws16{word-spacing:-7.238400pt;}
.ws94{word-spacing:-7.207200pt;}
.ws1a{word-spacing:-7.176000pt;}
.ws34{word-spacing:-7.144800pt;}
.ws17{word-spacing:-7.113600pt;}
.ws1b{word-spacing:-7.082400pt;}
.ws18{word-spacing:-7.051200pt;}
.ws81{word-spacing:-7.020000pt;}
.ws96{word-spacing:-6.988800pt;}
.ws56{word-spacing:-6.926400pt;}
.ws3{word-spacing:-5.893333pt;}
.wsad{word-spacing:-5.440000pt;}
.wsb5{word-spacing:-5.360000pt;}
.ws6b{word-spacing:-3.808000pt;}
.ws78{word-spacing:-2.640000pt;}
.ws44{word-spacing:-2.112000pt;}
.ws30{word-spacing:-2.064000pt;}
.ws3c{word-spacing:-1.968000pt;}
.ws42{word-spacing:-1.632000pt;}
.ws28{word-spacing:-1.584000pt;}
.ws69{word-spacing:-1.536000pt;}
.ws10{word-spacing:-1.104000pt;}
.wse{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-1.008000pt;}
.ws50{word-spacing:-0.960000pt;}
.wsa1{word-spacing:-0.920000pt;}
.ws32{word-spacing:-0.912000pt;}
.wsa9{word-spacing:-0.880000pt;}
.ws4f{word-spacing:-0.864000pt;}
.ws20{word-spacing:-0.816000pt;}
.wsa8{word-spacing:-0.800000pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.720000pt;}
.ws1f{word-spacing:-0.672000pt;}
.ws9f{word-spacing:-0.640000pt;}
.ws3b{word-spacing:-0.624000pt;}
.ws9e{word-spacing:-0.600000pt;}
.ws8{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.528000pt;}
.ws2c{word-spacing:-0.480000pt;}
.wsa7{word-spacing:-0.440000pt;}
.ws26{word-spacing:-0.432000pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.374400pt;}
.ws63{word-spacing:-0.336000pt;}
.wsb2{word-spacing:-0.320000pt;}
.ws8c{word-spacing:-0.288000pt;}
.ws7f{word-spacing:-0.240000pt;}
.ws9d{word-spacing:-0.234667pt;}
.wsa2{word-spacing:-0.200000pt;}
.ws5{word-spacing:-0.192000pt;}
.wsa0{word-spacing:-0.160000pt;}
.ws79{word-spacing:-0.144000pt;}
.wsb4{word-spacing:-0.120000pt;}
.ws11{word-spacing:-0.096000pt;}
.wsb6{word-spacing:-0.080000pt;}
.ws37{word-spacing:-0.048033pt;}
.ws31{word-spacing:-0.048000pt;}
.ws59{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws54{word-spacing:0.031200pt;}
.ws84{word-spacing:0.048000pt;}
.wsf{word-spacing:0.096000pt;}
.wsac{word-spacing:0.120000pt;}
.ws7e{word-spacing:0.144000pt;}
.ws27{word-spacing:0.192000pt;}
.ws92{word-spacing:0.240000pt;}
.wsb{word-spacing:0.288000pt;}
.ws88{word-spacing:0.336000pt;}
.wsa{word-spacing:0.384000pt;}
.ws47{word-spacing:0.432000pt;}
.ws13{word-spacing:0.480000pt;}
.ws51{word-spacing:0.528000pt;}
.ws66{word-spacing:0.576000pt;}
.wsb1{word-spacing:0.600000pt;}
.ws55{word-spacing:0.624000pt;}
.ws45{word-spacing:0.672000pt;}
.ws53{word-spacing:0.720000pt;}
.ws25{word-spacing:0.768000pt;}
.wsae{word-spacing:0.800000pt;}
.ws65{word-spacing:0.816000pt;}
.ws72{word-spacing:0.864000pt;}
.wsa3{word-spacing:0.880000pt;}
.wsc{word-spacing:0.912000pt;}
.wsa4{word-spacing:0.920000pt;}
.ws12{word-spacing:0.960000pt;}
.wsa6{word-spacing:1.000000pt;}
.ws29{word-spacing:1.008000pt;}
.wsa5{word-spacing:1.040000pt;}
.ws1c{word-spacing:1.056000pt;}
.ws9{word-spacing:1.104000pt;}
.ws1e{word-spacing:1.152000pt;}
.wsb3{word-spacing:1.160000pt;}
.ws22{word-spacing:1.200000pt;}
.ws38{word-spacing:1.248000pt;}
.ws8a{word-spacing:1.296000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws6f{word-spacing:1.392000pt;}
.wsaf{word-spacing:1.400000pt;}
.ws2e{word-spacing:1.488000pt;}
.wsb7{word-spacing:1.520000pt;}
.ws6e{word-spacing:1.536000pt;}
.ws2b{word-spacing:1.584000pt;}
.ws8b{word-spacing:1.632000pt;}
.ws87{word-spacing:1.728000pt;}
.ws21{word-spacing:1.776000pt;}
.ws6{word-spacing:1.824000pt;}
.ws4b{word-spacing:1.872000pt;}
.ws91{word-spacing:1.920000pt;}
.ws90{word-spacing:1.968000pt;}
.ws4a{word-spacing:2.016000pt;}
.ws2d{word-spacing:2.064000pt;}
.ws7a{word-spacing:2.112000pt;}
.ws3a{word-spacing:2.208000pt;}
.ws7d{word-spacing:2.256000pt;}
.ws4d{word-spacing:2.496000pt;}
.ws83{word-spacing:2.640000pt;}
.wsb9{word-spacing:2.688000pt;}
.ws62{word-spacing:2.784000pt;}
.ws4e{word-spacing:2.832000pt;}
.ws7c{word-spacing:2.880000pt;}
.ws61{word-spacing:2.928000pt;}
.ws7b{word-spacing:2.976000pt;}
.ws71{word-spacing:3.024000pt;}
.ws4c{word-spacing:3.120000pt;}
.ws89{word-spacing:3.168000pt;}
.ws39{word-spacing:3.216000pt;}
.ws76{word-spacing:3.408000pt;}
.ws70{word-spacing:3.456000pt;}
.ws6d{word-spacing:3.648000pt;}
.ws64{word-spacing:3.792000pt;}
.ws33{word-spacing:3.984000pt;}
.ws5f{word-spacing:4.032000pt;}
.ws74{word-spacing:4.176000pt;}
.ws15{word-spacing:4.216000pt;}
.ws75{word-spacing:4.224000pt;}
.ws49{word-spacing:4.320000pt;}
.ws73{word-spacing:4.368000pt;}
.ws41{word-spacing:4.416000pt;}
.ws48{word-spacing:4.656000pt;}
.ws3d{word-spacing:4.752000pt;}
.ws77{word-spacing:4.800000pt;}
.ws3e{word-spacing:4.848000pt;}
.wsbc{word-spacing:5.040000pt;}
.ws67{word-spacing:5.136000pt;}
.ws8e{word-spacing:5.232000pt;}
.ws60{word-spacing:5.568000pt;}
.ws14{word-spacing:5.712000pt;}
.wsba{word-spacing:5.760000pt;}
.ws68{word-spacing:5.856000pt;}
.ws43{word-spacing:5.952000pt;}
.wsbb{word-spacing:6.000000pt;}
.ws40{word-spacing:6.192000pt;}
.ws8f{word-spacing:6.288000pt;}
.ws82{word-spacing:9.984000pt;}
.ws36{word-spacing:10.927522pt;}
.ws6a{word-spacing:13.584000pt;}
.ws46{word-spacing:18.624000pt;}
.ws5c{word-spacing:367.546667pt;}
.ws5b{word-spacing:370.421333pt;}
.ws5d{word-spacing:374.416000pt;}
.ws5a{word-spacing:379.754667pt;}
.ws5e{word-spacing:382.666667pt;}
.ws58{word-spacing:405.104000pt;}
._18{margin-left:-18.624006pt;}
._13{margin-left:-17.045622pt;}
._12{margin-left:-15.662974pt;}
._17{margin-left:-14.384576pt;}
._a{margin-left:-13.056015pt;}
._6{margin-left:-11.859200pt;}
._7{margin-left:-10.957880pt;}
._9{margin-left:-9.947733pt;}
._d{margin-left:-8.801103pt;}
._1e{margin-left:-7.854394pt;}
._16{margin-left:-6.432005pt;}
._3{margin-left:-4.665120pt;}
._e{margin-left:-3.760533pt;}
._2{margin-left:-2.828800pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.915200pt;}
._c{width:2.330128pt;}
._10{width:3.444800pt;}
._b{width:4.914133pt;}
._11{width:6.112000pt;}
._1f{width:7.477334pt;}
._21{width:8.614394pt;}
._8{width:9.552000pt;}
._5{width:10.932267pt;}
._1d{width:12.431995pt;}
._19{width:13.737120pt;}
._20{width:15.280000pt;}
._15{width:18.075733pt;}
._14{width:19.401601pt;}
._f{width:42.317337pt;}
._1{width:277.550933pt;}
._1b{width:358.474667pt;}
._1a{width:363.701333pt;}
._1c{width:490.812800pt;}
.fsd{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsb{font-size:36.505066pt;}
.fsc{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:2.843733pt;}
.y33{bottom:2.843867pt;}
.ye0{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.yba{bottom:2.943115pt;}
.yb8{bottom:3.027344pt;}
.y32{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ybc{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y31{bottom:60.477867pt;}
.y309{bottom:60.548666pt;}
.y280{bottom:60.913067pt;}
.y19a{bottom:61.270781pt;}
.yb6{bottom:61.815332pt;}
.y208{bottom:63.094799pt;}
.y1a7{bottom:66.948133pt;}
.y1f9{bottom:68.442799pt;}
.y76{bottom:68.487602pt;}
.y134{bottom:69.401879pt;}
.y221{bottom:69.773465pt;}
.ycf{bottom:70.876800pt;}
.y2bc{bottom:71.893465pt;}
.y30{bottom:73.811200pt;}
.y308{bottom:73.880666pt;}
.y27f{bottom:74.245067pt;}
.y199{bottom:74.602781pt;}
.yb5{bottom:75.147332pt;}
.y167{bottom:75.237998pt;}
.y207{bottom:76.444132pt;}
.y13d{bottom:77.063997pt;}
.y1a6{bottom:80.280133pt;}
.y1f8{bottom:81.774799pt;}
.y75{bottom:81.819602pt;}
.y133{bottom:82.733879pt;}
.y220{bottom:83.105465pt;}
.y2bb{bottom:83.223465pt;}
.yce{bottom:84.210133pt;}
.y307{bottom:87.213999pt;}
.y27e{bottom:87.579733pt;}
.y198{bottom:87.934781pt;}
.yb4{bottom:88.479332pt;}
.y166{bottom:88.569998pt;}
.y206{bottom:89.776132pt;}
.y13c{bottom:90.395997pt;}
.y2f{bottom:91.105865pt;}
.y101{bottom:92.552135pt;}
.y1a5{bottom:93.612133pt;}
.y2ba{bottom:94.553465pt;}
.y1f7{bottom:95.106799pt;}
.y74{bottom:95.151602pt;}
.y132{bottom:96.065879pt;}
.y21f{bottom:96.437465pt;}
.ycd{bottom:97.543467pt;}
.y27d{bottom:100.911733pt;}
.y197{bottom:101.266781pt;}
.yb3{bottom:101.811332pt;}
.y165{bottom:101.912665pt;}
.y205{bottom:103.108132pt;}
.y13b{bottom:103.727997pt;}
.y2b9{bottom:105.883465pt;}
.y100{bottom:105.889468pt;}
.y1a4{bottom:106.944133pt;}
.y1f6{bottom:108.438799pt;}
.y73{bottom:108.486269pt;}
.y131{bottom:109.397879pt;}
.y21e{bottom:109.769465pt;}
.ycc{bottom:110.875467pt;}
.y306{bottom:113.887343pt;}
.y27c{bottom:114.247733pt;}
.y196{bottom:114.598781pt;}
.yb2{bottom:115.143332pt;}
.y164{bottom:115.244665pt;}
.y244{bottom:116.430799pt;}
.y204{bottom:116.440132pt;}
.y2b8{bottom:117.213465pt;}
.yff{bottom:119.221468pt;}
.y1a3{bottom:120.276133pt;}
.y1f5{bottom:121.770799pt;}
.y72{bottom:121.818269pt;}
.y130{bottom:122.729879pt;}
.y21d{bottom:123.101465pt;}
.y2d{bottom:125.397737pt;}
.y305{bottom:127.219343pt;}
.y27b{bottom:127.579733pt;}
.y195{bottom:127.930781pt;}
.yb1{bottom:128.475332pt;}
.y2b7{bottom:128.543465pt;}
.y163{bottom:128.576665pt;}
.y243{bottom:129.762799pt;}
.y203{bottom:129.772132pt;}
.yfe{bottom:132.553468pt;}
.y1a2{bottom:133.608133pt;}
.y1f4{bottom:135.102799pt;}
.y71{bottom:135.150269pt;}
.y12f{bottom:136.061879pt;}
.y21c{bottom:136.433465pt;}
.y2c{bottom:138.729737pt;}
.y2b6{bottom:139.873465pt;}
.ycb{bottom:140.210133pt;}
.y304{bottom:140.551343pt;}
.y27a{bottom:140.911733pt;}
.y194{bottom:141.262781pt;}
.yb0{bottom:141.811332pt;}
.y162{bottom:141.908665pt;}
.y242{bottom:143.094799pt;}
.y202{bottom:143.104132pt;}
.yfd{bottom:145.885468pt;}
.y1f3{bottom:148.434799pt;}
.y12e{bottom:149.393879pt;}
.y21b{bottom:149.765465pt;}
.y2b5{bottom:151.203465pt;}
.y2b{bottom:152.064394pt;}
.yca{bottom:153.543467pt;}
.y303{bottom:153.883343pt;}
.y279{bottom:154.247733pt;}
.y193{bottom:154.594781pt;}
.yaf{bottom:155.143332pt;}
.y161{bottom:155.240665pt;}
.y241{bottom:156.430799pt;}
.y201{bottom:156.436132pt;}
.yfc{bottom:159.217468pt;}
.y1f2{bottom:161.766799pt;}
.y2b4{bottom:162.533465pt;}
.y12d{bottom:162.725879pt;}
.y21a{bottom:163.097465pt;}
.y70{bottom:164.499602pt;}
.y2a{bottom:165.396394pt;}
.yc9{bottom:166.876800pt;}
.y302{bottom:167.215343pt;}
.y278{bottom:167.579733pt;}
.y192{bottom:167.926781pt;}
.yae{bottom:168.475332pt;}
.y160{bottom:168.572665pt;}
.y240{bottom:169.762799pt;}
.y200{bottom:169.768132pt;}
.y2b3{bottom:173.863465pt;}
.y1f1{bottom:175.098799pt;}
.y12c{bottom:176.057879pt;}
.y219{bottom:176.429465pt;}
.y6f{bottom:177.831602pt;}
.y145{bottom:178.650792pt;}
.y29{bottom:178.730938pt;}
.yc8{bottom:180.215467pt;}
.y301{bottom:180.547343pt;}
.y277{bottom:180.911733pt;}
.y191{bottom:181.258781pt;}
.yad{bottom:181.819190pt;}
.y15f{bottom:181.904665pt;}
.y23f{bottom:183.094799pt;}
.y1ff{bottom:183.100132pt;}
.y2b2{bottom:185.193465pt;}
.y1f0{bottom:188.430799pt;}
.yfb{bottom:188.561468pt;}
.y12b{bottom:189.389879pt;}
.y218{bottom:189.761465pt;}
.y6e{bottom:191.163602pt;}
.y1b7{bottom:191.840133pt;}
.y144{bottom:191.982792pt;}
.y28{bottom:192.062938pt;}
.yc7{bottom:193.547467pt;}
.y300{bottom:193.880676pt;}
.y276{bottom:194.246400pt;}
.y190{bottom:194.590781pt;}
.yac{bottom:195.151190pt;}
.y15e{bottom:195.236665pt;}
.y1fe{bottom:196.432132pt;}
.y23e{bottom:196.437465pt;}
.y2b1{bottom:196.523465pt;}
.y1ef{bottom:201.762799pt;}
.yfa{bottom:201.893468pt;}
.y12a{bottom:202.721879pt;}
.y217{bottom:203.096132pt;}
.y6d{bottom:204.495602pt;}
.y1b6{bottom:205.172133pt;}
.y143{bottom:205.314792pt;}
.y27{bottom:205.397605pt;}
.yc6{bottom:206.879467pt;}
.y275{bottom:207.578400pt;}
.y2b0{bottom:207.853465pt;}
.y18f{bottom:207.922781pt;}
.yab{bottom:208.483190pt;}
.y15d{bottom:208.572665pt;}
.y1fd{bottom:209.764132pt;}
.y23d{bottom:209.769465pt;}
.y1ee{bottom:215.094799pt;}
.yf9{bottom:215.225468pt;}
.y129{bottom:216.053879pt;}
.y216{bottom:216.428132pt;}
.y6c{bottom:217.827602pt;}
.y1b5{bottom:218.504133pt;}
.y142{bottom:218.646792pt;}
.y26{bottom:218.729605pt;}
.y2af{bottom:219.183465pt;}
.yc5{bottom:220.211467pt;}
.y2ff{bottom:220.767363pt;}
.y274{bottom:220.929067pt;}
.y18e{bottom:221.254781pt;}
.yaa{bottom:221.815190pt;}
.y15c{bottom:221.904665pt;}
.y1fc{bottom:223.096132pt;}
.y23c{bottom:223.101465pt;}
.y1ed{bottom:228.426799pt;}
.yf8{bottom:228.557468pt;}
.y128{bottom:229.385879pt;}
.y215{bottom:229.761465pt;}
.y2ae{bottom:230.513465pt;}
.y6b{bottom:231.159602pt;}
.y1b4{bottom:231.836133pt;}
.y141{bottom:231.978792pt;}
.y25{bottom:232.065605pt;}
.y2fe{bottom:232.097363pt;}
.yc4{bottom:233.543467pt;}
.y273{bottom:234.261067pt;}
.y18d{bottom:234.586781pt;}
.ya9{bottom:235.147190pt;}
.y15b{bottom:235.236665pt;}
.y1fb{bottom:236.428132pt;}
.y23b{bottom:236.433465pt;}
.y1ec{bottom:241.760132pt;}
.y2ad{bottom:241.843465pt;}
.yf7{bottom:241.889468pt;}
.y127{bottom:242.717879pt;}
.y214{bottom:243.097465pt;}
.y2fd{bottom:243.427363pt;}
.y6a{bottom:244.491602pt;}
.y1b3{bottom:245.168133pt;}
.y140{bottom:245.310792pt;}
.y24{bottom:245.397605pt;}
.yc3{bottom:246.876800pt;}
.y272{bottom:247.593067pt;}
.y18c{bottom:247.918781pt;}
.ya8{bottom:248.479190pt;}
.y15a{bottom:248.578018pt;}
.y1fa{bottom:249.760132pt;}
.y23a{bottom:249.765465pt;}
.y2ac{bottom:253.173465pt;}
.y2fc{bottom:254.757363pt;}
.yf6{bottom:255.221468pt;}
.y126{bottom:256.049879pt;}
.y213{bottom:256.429465pt;}
.y69{bottom:257.823602pt;}
.y1b2{bottom:258.500133pt;}
.y13f{bottom:258.642792pt;}
.y23{bottom:258.729605pt;}
.yc2{bottom:260.210133pt;}
.y271{bottom:260.925067pt;}
.y18b{bottom:261.250781pt;}
.ya7{bottom:261.811190pt;}
.y159{bottom:261.910018pt;}
.y239{bottom:263.097465pt;}
.y2ab{bottom:264.503465pt;}
.y2fb{bottom:266.087363pt;}
.yf5{bottom:268.553468pt;}
.y125{bottom:269.381879pt;}
.y212{bottom:269.761465pt;}
.y1eb{bottom:271.136173pt;}
.y68{bottom:271.155602pt;}
.y1b1{bottom:271.832133pt;}
.y13e{bottom:271.974792pt;}
.y22{bottom:272.065605pt;}
.yc1{bottom:273.542133pt;}
.y270{bottom:274.257067pt;}
.y18a{bottom:274.582781pt;}
.ya6{bottom:275.143190pt;}
.y158{bottom:275.242018pt;}
.y2aa{bottom:275.833465pt;}
.y238{bottom:276.429465pt;}
.y2fa{bottom:277.417363pt;}
.yf4{bottom:281.885468pt;}
.y124{bottom:282.713879pt;}
.y211{bottom:283.093465pt;}
.y1ea{bottom:284.468173pt;}
.y67{bottom:284.487602pt;}
.y21{bottom:285.397605pt;}
.y2a9{bottom:287.163465pt;}
.y26f{bottom:287.589067pt;}
.y189{bottom:287.914781pt;}
.ya5{bottom:288.475190pt;}
.y157{bottom:288.574018pt;}
.y2f9{bottom:288.747363pt;}
.y237{bottom:289.761465pt;}
.y210{bottom:293.210790pt;}
.yf3{bottom:295.217468pt;}
.y123{bottom:296.045879pt;}
.y1e9{bottom:297.800173pt;}
.y66{bottom:297.819602pt;}
.y2a8{bottom:298.493465pt;}
.y20{bottom:298.729605pt;}
.y2f8{bottom:300.077363pt;}
.y26e{bottom:300.921067pt;}
.y188{bottom:301.246781pt;}
.ya4{bottom:301.811210pt;}
.y156{bottom:301.906018pt;}
.yc0{bottom:302.878133pt;}
.y236{bottom:303.094799pt;}
.y20f{bottom:306.542790pt;}
.y122{bottom:309.377879pt;}
.y2a7{bottom:309.823465pt;}
.y1e8{bottom:311.132173pt;}
.y65{bottom:311.151602pt;}
.y2f7{bottom:311.407363pt;}
.y1f{bottom:312.065605pt;}
.y26d{bottom:314.253067pt;}
.y187{bottom:314.578781pt;}
.ya3{bottom:315.143210pt;}
.y155{bottom:315.238018pt;}
.ybf{bottom:316.210133pt;}
.y235{bottom:316.426799pt;}
.y234{bottom:319.656012pt;}
.y20e{bottom:319.874790pt;}
.y2a6{bottom:321.153465pt;}
.y121{bottom:322.709879pt;}
.y2f6{bottom:322.737363pt;}
.y1e7{bottom:324.464173pt;}
.y64{bottom:324.486269pt;}
.yf2{bottom:324.554781pt;}
.y1e{bottom:325.397605pt;}
.y26c{bottom:327.585067pt;}
.y186{bottom:327.910781pt;}
.ya2{bottom:328.475210pt;}
.y154{bottom:328.570018pt;}
.ybe{bottom:329.542133pt;}
.y2a5{bottom:332.483465pt;}
.y233{bottom:332.988012pt;}
.y20d{bottom:333.206790pt;}
.y2f5{bottom:334.067363pt;}
.y120{bottom:336.041879pt;}
.y1e6{bottom:337.796173pt;}
.y63{bottom:337.818269pt;}
.yf1{bottom:337.886781pt;}
.y1d{bottom:338.729605pt;}
.y26b{bottom:340.917067pt;}
.y185{bottom:341.242781pt;}
.ya1{bottom:341.819210pt;}
.y153{bottom:341.904685pt;}
.y2a4{bottom:343.813465pt;}
.y2f4{bottom:345.397363pt;}
.y232{bottom:346.320012pt;}
.y20c{bottom:346.538790pt;}
.y11f{bottom:349.373879pt;}
.y1e5{bottom:351.128173pt;}
.y62{bottom:351.150269pt;}
.yf0{bottom:351.218781pt;}
.y1c{bottom:352.062938pt;}
.y26a{bottom:354.249067pt;}
.y184{bottom:354.574781pt;}
.y2a3{bottom:355.143465pt;}
.ya0{bottom:355.151210pt;}
.y152{bottom:355.236685pt;}
.y2f3{bottom:356.727363pt;}
.y231{bottom:359.652012pt;}
.y20b{bottom:359.870790pt;}
.y11e{bottom:362.705879pt;}
.y253{bottom:363.086782pt;}
.y1e4{bottom:364.460173pt;}
.y61{bottom:364.483602pt;}
.yef{bottom:364.556115pt;}
.y1b{bottom:365.436280pt;}
.y2a2{bottom:366.473465pt;}
.y269{bottom:367.581067pt;}
.y183{bottom:367.906781pt;}
.y2f2{bottom:368.057363pt;}
.y9f{bottom:368.483210pt;}
.y151{bottom:368.574018pt;}
.y230{bottom:372.984012pt;}
.y20a{bottom:373.202790pt;}
.y11d{bottom:376.037879pt;}
.y252{bottom:376.418782pt;}
.y1e3{bottom:377.792173pt;}
.y2a1{bottom:377.803465pt;}
.yee{bottom:377.888115pt;}
.y1a{bottom:378.768280pt;}
.y2f1{bottom:379.387363pt;}
.y268{bottom:380.913067pt;}
.y182{bottom:381.238781pt;}
.y9e{bottom:381.815210pt;}
.y150{bottom:381.906018pt;}
.y22f{bottom:386.316012pt;}
.y209{bottom:386.534790pt;}
.y2a0{bottom:389.133465pt;}
.y11c{bottom:389.369879pt;}
.y251{bottom:389.750782pt;}
.y2f0{bottom:390.717363pt;}
.y1e2{bottom:391.124173pt;}
.yed{bottom:391.220115pt;}
.y60{bottom:393.826269pt;}
.y267{bottom:394.245067pt;}
.y181{bottom:394.570781pt;}
.yd9{bottom:395.011994pt;}
.y9d{bottom:395.147210pt;}
.y14f{bottom:395.238018pt;}
.y22e{bottom:399.648012pt;}
.y29f{bottom:400.463465pt;}
.y2ef{bottom:402.047363pt;}
.y11b{bottom:402.701879pt;}
.y250{bottom:403.082782pt;}
.y1e1{bottom:404.456173pt;}
.yec{bottom:404.552115pt;}
.y5f{bottom:407.158269pt;}
.y266{bottom:407.599733pt;}
.y180{bottom:407.902781pt;}
.yd8{bottom:408.345327pt;}
.y9c{bottom:408.479210pt;}
.y14e{bottom:408.570018pt;}
.y29e{bottom:411.793465pt;}
.y22d{bottom:412.980012pt;}
.y2ee{bottom:413.377363pt;}
.y11a{bottom:416.033879pt;}
.y24f{bottom:416.414782pt;}
.y1e0{bottom:417.788173pt;}
.yeb{bottom:417.884115pt;}
.y19{bottom:418.896280pt;}
.y5e{bottom:420.490269pt;}
.y265{bottom:420.931733pt;}
.y17f{bottom:421.234781pt;}
.yd7{bottom:421.677327pt;}
.y9b{bottom:421.811210pt;}
.y14d{bottom:421.911352pt;}
.y29d{bottom:423.123465pt;}
.y2ed{bottom:424.707363pt;}
.y22c{bottom:426.313345pt;}
.y119{bottom:429.365879pt;}
.y24e{bottom:429.746782pt;}
.y1df{bottom:431.120173pt;}
.yea{bottom:431.217448pt;}
.y18{bottom:433.560280pt;}
.y5d{bottom:433.822269pt;}
.y264{bottom:434.263733pt;}
.y29c{bottom:434.453465pt;}
.y17e{bottom:434.566781pt;}
.y9a{bottom:435.143210pt;}
.y14c{bottom:435.243352pt;}
.y2ec{bottom:436.037363pt;}
.y22b{bottom:439.645345pt;}
.y118{bottom:442.697879pt;}
.y24d{bottom:443.078782pt;}
.y1de{bottom:444.452173pt;}
.ye9{bottom:444.550781pt;}
.y29b{bottom:445.783465pt;}
.y5c{bottom:447.154269pt;}
.y2eb{bottom:447.367363pt;}
.y263{bottom:447.595733pt;}
.y17d{bottom:447.898781pt;}
.y17{bottom:448.224280pt;}
.y99{bottom:448.475210pt;}
.y14b{bottom:448.575352pt;}
.ydf{bottom:449.506279pt;}
.y117{bottom:456.029879pt;}
.y24c{bottom:456.410782pt;}
.y29a{bottom:457.113465pt;}
.y1dd{bottom:457.784173pt;}
.y2ea{bottom:458.697363pt;}
.y5b{bottom:460.486269pt;}
.y262{bottom:460.927733pt;}
.y17c{bottom:461.230781pt;}
.y98{bottom:461.812544pt;}
.y14a{bottom:461.907352pt;}
.y16{bottom:462.888280pt;}
.yde{bottom:465.092946pt;}
.y299{bottom:468.443465pt;}
.y116{bottom:469.361879pt;}
.y24b{bottom:469.742782pt;}
.y2e9{bottom:470.027363pt;}
.y1dc{bottom:471.116173pt;}
.y5a{bottom:473.818269pt;}
.ye8{bottom:473.885448pt;}
.y261{bottom:474.259733pt;}
.y17b{bottom:474.562781pt;}
.y97{bottom:475.144544pt;}
.y149{bottom:475.239352pt;}
.y15{bottom:477.552280pt;}
.y298{bottom:479.773465pt;}
.ydd{bottom:480.679613pt;}
.y2e8{bottom:481.357363pt;}
.y115{bottom:482.693879pt;}
.y24a{bottom:483.074782pt;}
.y1db{bottom:484.448173pt;}
.y59{bottom:487.152935pt;}
.ye7{bottom:487.218781pt;}
.y260{bottom:487.591733pt;}
.y17a{bottom:487.894781pt;}
.y96{bottom:488.476544pt;}
.y148{bottom:488.571352pt;}
.y297{bottom:491.103465pt;}
.y14{bottom:492.216280pt;}
.y2e7{bottom:492.687363pt;}
.y114{bottom:496.031212pt;}
.ydc{bottom:496.266279pt;}
.y249{bottom:496.406782pt;}
.y1da{bottom:497.780173pt;}
.y58{bottom:500.484935pt;}
.ye6{bottom:500.552115pt;}
.y25f{bottom:500.923733pt;}
.y179{bottom:501.226781pt;}
.y95{bottom:501.808544pt;}
.y147{bottom:501.903352pt;}
.y296{bottom:502.433465pt;}
.y2e6{bottom:504.017363pt;}
.y13{bottom:506.880280pt;}
.y113{bottom:509.363212pt;}
.y248{bottom:509.738782pt;}
.y1b0{bottom:510.598801pt;}
.y1d9{bottom:511.112173pt;}
.ydb{bottom:511.852946pt;}
.y295{bottom:513.763465pt;}
.y57{bottom:513.823602pt;}
.ye5{bottom:513.885448pt;}
.y25e{bottom:514.255733pt;}
.y178{bottom:514.558781pt;}
.y94{bottom:515.140544pt;}
.y146{bottom:515.235352pt;}
.y2e5{bottom:515.347363pt;}
.y12{bottom:521.544280pt;}
.y112{bottom:522.695212pt;}
.y247{bottom:523.070782pt;}
.y1af{bottom:523.930801pt;}
.y1d8{bottom:524.444173pt;}
.y294{bottom:525.093465pt;}
.y2e4{bottom:526.677363pt;}
.y56{bottom:527.155602pt;}
.ye4{bottom:527.220115pt;}
.yda{bottom:527.438517pt;}
.y25d{bottom:527.587733pt;}
.y177{bottom:527.890781pt;}
.y111{bottom:536.027212pt;}
.y11{bottom:536.208280pt;}
.y246{bottom:536.402782pt;}
.y293{bottom:536.426799pt;}
.y1ae{bottom:537.262801pt;}
.y1d7{bottom:537.776173pt;}
.y2e3{bottom:538.007363pt;}
.y55{bottom:540.487602pt;}
.ye3{bottom:540.552115pt;}
.y25c{bottom:540.919733pt;}
.y176{bottom:541.222781pt;}
.y93{bottom:544.476544pt;}
.y2e2{bottom:549.337363pt;}
.y110{bottom:549.364546pt;}
.y245{bottom:549.734782pt;}
.y1ad{bottom:550.594801pt;}
.y10{bottom:550.872280pt;}
.y1d6{bottom:551.108173pt;}
.y54{bottom:553.819602pt;}
.ye2{bottom:553.885448pt;}
.y25b{bottom:554.251733pt;}
.y175{bottom:554.554781pt;}
.y92{bottom:557.808544pt;}
.y2e1{bottom:560.667363pt;}
.y10f{bottom:562.696546pt;}
.y1ac{bottom:563.926801pt;}
.y1d5{bottom:564.440173pt;}
.y16e{bottom:564.782780pt;}
.yf{bottom:565.536280pt;}
.y53{bottom:567.151602pt;}
.ye1{bottom:567.217448pt;}
.y25a{bottom:567.583733pt;}
.y174{bottom:567.886781pt;}
.y91{bottom:571.145877pt;}
.y2e0{bottom:571.997363pt;}
.yd6{bottom:575.338798pt;}
.y10e{bottom:576.028546pt;}
.y1ab{bottom:577.258801pt;}
.y1d4{bottom:577.772173pt;}
.y16d{bottom:578.114780pt;}
.ye{bottom:580.200280pt;}
.y292{bottom:580.426799pt;}
.y52{bottom:580.486269pt;}
.y259{bottom:580.915733pt;}
.y173{bottom:581.218781pt;}
.y2df{bottom:583.327363pt;}
.y90{bottom:584.477877pt;}
.yd5{bottom:588.670798pt;}
.y10d{bottom:589.360546pt;}
.y1aa{bottom:590.590801pt;}
.y1d3{bottom:591.104173pt;}
.y16c{bottom:591.446780pt;}
.y51{bottom:593.818269pt;}
.y258{bottom:594.247733pt;}
.y172{bottom:594.550781pt;}
.y2de{bottom:594.657363pt;}
.yd{bottom:594.864280pt;}
.y8f{bottom:597.809877pt;}
.yd4{bottom:602.002798pt;}
.y10c{bottom:602.692546pt;}
.y1a9{bottom:603.922801pt;}
.y1d2{bottom:604.436173pt;}
.y16b{bottom:604.778780pt;}
.y2dd{bottom:605.987363pt;}
.y291{bottom:607.097465pt;}
.y50{bottom:607.154269pt;}
.y257{bottom:607.579733pt;}
.y171{bottom:607.884115pt;}
.yc{bottom:609.528280pt;}
.y8e{bottom:611.141877pt;}
.yd3{bottom:615.337465pt;}
.y10b{bottom:616.025879pt;}
.y1a8{bottom:617.254801pt;}
.y2dc{bottom:617.317363pt;}
.y1d1{bottom:617.768173pt;}
.y16a{bottom:618.110780pt;}
.y290{bottom:620.429465pt;}
.y4f{bottom:620.486269pt;}
.y256{bottom:620.911733pt;}
.y10a{bottom:624.029450pt;}
.y8d{bottom:624.475210pt;}
.y2db{bottom:628.647363pt;}
.yd2{bottom:628.669465pt;}
.y1d0{bottom:631.100173pt;}
.y169{bottom:631.442780pt;}
.y31a{bottom:632.468137pt;}
.y28f{bottom:633.761465pt;}
.y4e{bottom:633.818269pt;}
.y255{bottom:634.243733pt;}
.yb{bottom:636.194946pt;}
.y170{bottom:637.218781pt;}
.y109{bottom:637.368158pt;}
.y8c{bottom:637.809877pt;}
.y2da{bottom:639.977363pt;}
.yd1{bottom:642.002798pt;}
.y1cf{bottom:644.432173pt;}
.y168{bottom:644.774780pt;}
.y28e{bottom:647.093465pt;}
.y4d{bottom:647.152935pt;}
.y254{bottom:647.577067pt;}
.y16f{bottom:650.550781pt;}
.y108{bottom:650.700158pt;}
.y8b{bottom:651.141877pt;}
.y2d9{bottom:651.307363pt;}
.ya{bottom:652.194946pt;}
.yd0{bottom:655.334798pt;}
.y1ce{bottom:657.764173pt;}
.y319{bottom:659.132136pt;}
.y28d{bottom:660.426799pt;}
.y4c{bottom:660.484935pt;}
.y2d8{bottom:662.637363pt;}
.y107{bottom:664.032158pt;}
.y8a{bottom:664.475210pt;}
.y1cd{bottom:671.096173pt;}
.y318{bottom:672.464136pt;}
.y4b{bottom:673.819561pt;}
.y2d7{bottom:673.967363pt;}
.y13a{bottom:674.109488pt;}
.y106{bottom:677.364158pt;}
.y89{bottom:677.807210pt;}
.y22a{bottom:680.838629pt;}
.y9{bottom:681.506906pt;}
.y1cc{bottom:684.428173pt;}
.y2d6{bottom:685.297363pt;}
.y317{bottom:685.796136pt;}
.y28c{bottom:687.104173pt;}
.y4a{bottom:687.151561pt;}
.y139{bottom:687.444154pt;}
.y105{bottom:690.696158pt;}
.y284{bottom:694.057436pt;}
.y229{bottom:694.170629pt;}
.y2d5{bottom:696.627363pt;}
.y1cb{bottom:697.760173pt;}
.y316{bottom:699.128136pt;}
.y28b{bottom:700.436173pt;}
.y49{bottom:700.487561pt;}
.y138{bottom:700.776154pt;}
.y104{bottom:704.030824pt;}
.y88{bottom:707.142040pt;}
.y283{bottom:707.389436pt;}
.y228{bottom:707.502629pt;}
.y2d4{bottom:707.957363pt;}
.y1a1{bottom:710.380171pt;}
.y1ca{bottom:711.093506pt;}
.y315{bottom:712.460136pt;}
.y28a{bottom:713.768173pt;}
.y48{bottom:713.819561pt;}
.y137{bottom:714.110821pt;}
.y103{bottom:717.362824pt;}
.y2d3{bottom:719.287363pt;}
.y87{bottom:720.475373pt;}
.y282{bottom:720.722769pt;}
.y227{bottom:720.834629pt;}
.y8{bottom:721.512239pt;}
.y1a0{bottom:723.712171pt;}
.y314{bottom:725.792136pt;}
.y289{bottom:727.100173pt;}
.y47{bottom:727.151561pt;}
.y136{bottom:727.442821pt;}
.y2d2{bottom:730.617363pt;}
.y102{bottom:730.694824pt;}
.y86{bottom:733.825975pt;}
.y281{bottom:734.054769pt;}
.y226{bottom:734.166629pt;}
.y19f{bottom:737.044171pt;}
.y313{bottom:739.124136pt;}
.y288{bottom:740.432173pt;}
.y1c9{bottom:740.449506pt;}
.y46{bottom:740.487561pt;}
.y135{bottom:740.774821pt;}
.y2d1{bottom:741.947363pt;}
.y85{bottom:747.157975pt;}
.y225{bottom:747.498629pt;}
.y19e{bottom:750.376171pt;}
.y312{bottom:752.456136pt;}
.y2d0{bottom:753.277363pt;}
.y287{bottom:753.764173pt;}
.y1c8{bottom:753.781506pt;}
.y45{bottom:753.819561pt;}
.y84{bottom:760.489975pt;}
.y224{bottom:760.830629pt;}
.y7{bottom:761.517572pt;}
.y19d{bottom:763.710837pt;}
.y2cf{bottom:764.607363pt;}
.y286{bottom:767.096173pt;}
.y1c7{bottom:767.113506pt;}
.y44{bottom:767.151561pt;}
.y311{bottom:772.445469pt;}
.y83{bottom:773.821975pt;}
.y223{bottom:774.162629pt;}
.y2ce{bottom:775.937363pt;}
.y19c{bottom:777.042837pt;}
.y285{bottom:780.428173pt;}
.y1c6{bottom:780.445506pt;}
.y43{bottom:780.488895pt;}
.y310{bottom:785.777469pt;}
.y2cd{bottom:787.267363pt;}
.y222{bottom:787.494629pt;}
.y19b{bottom:790.374837pt;}
.y1c5{bottom:793.777506pt;}
.yb7{bottom:793.806641pt;}
.y42{bottom:793.820895pt;}
.yb9{bottom:796.833984pt;}
.y2cc{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y30f{bottom:805.781469pt;}
.y1c4{bottom:807.109506pt;}
.y41{bottom:807.152895pt;}
.y2cb{bottom:809.927363pt;}
.y82{bottom:818.749975pt;}
.y1c3{bottom:820.441506pt;}
.y40{bottom:820.484895pt;}
.y2ca{bottom:821.257363pt;}
.y30e{bottom:825.785469pt;}
.y81{bottom:832.081975pt;}
.y2c9{bottom:832.587363pt;}
.y1c2{bottom:833.773506pt;}
.y3f{bottom:833.823561pt;}
.y5{bottom:841.528239pt;}
.y2c8{bottom:843.917363pt;}
.y80{bottom:845.413975pt;}
.y30d{bottom:845.789469pt;}
.y1c1{bottom:847.105506pt;}
.y3e{bottom:847.155561pt;}
.y2e{bottom:848.326009pt;}
.y2c7{bottom:855.247363pt;}
.y7f{bottom:858.745975pt;}
.y30c{bottom:859.122803pt;}
.y1c0{bottom:860.437506pt;}
.y3d{bottom:860.487561pt;}
.y2c6{bottom:866.577363pt;}
.y7e{bottom:872.077975pt;}
.y1bf{bottom:873.769506pt;}
.y3c{bottom:873.819561pt;}
.y2c5{bottom:877.907363pt;}
.y7d{bottom:885.409975pt;}
.y30b{bottom:885.789469pt;}
.y1be{bottom:887.101506pt;}
.y3b{bottom:887.151561pt;}
.y2c4{bottom:889.237363pt;}
.y7c{bottom:898.741975pt;}
.y30a{bottom:899.122803pt;}
.y1bd{bottom:900.433506pt;}
.y3a{bottom:900.486228pt;}
.y2c3{bottom:900.567363pt;}
.y2c2{bottom:911.897363pt;}
.y7b{bottom:912.075308pt;}
.y1bc{bottom:913.765506pt;}
.y39{bottom:913.818228pt;}
.y2c1{bottom:923.227363pt;}
.y7a{bottom:925.407308pt;}
.y1bb{bottom:927.097506pt;}
.y38{bottom:927.152895pt;}
.y2c0{bottom:934.557363pt;}
.y1ba{bottom:940.429506pt;}
.y37{bottom:940.484895pt;}
.y2bf{bottom:945.887363pt;}
.y1b9{bottom:953.761506pt;}
.y36{bottom:953.818228pt;}
.y79{bottom:954.741975pt;}
.y2be{bottom:957.217363pt;}
.y1b8{bottom:967.093506pt;}
.y35{bottom:967.150228pt;}
.y78{bottom:968.073975pt;}
.y2bd{bottom:968.547363pt;}
.y77{bottom:1013.902507pt;}
.ybd{bottom:1013.996908pt;}
.y34{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h20{height:11.600000pt;}
.h22{height:17.436003pt;}
.h10{height:27.275265pt;}
.h2{height:30.687500pt;}
.h41{height:31.476562pt;}
.h21{height:34.247576pt;}
.h7{height:34.523438pt;}
.h23{height:34.583807pt;}
.h2d{height:36.922667pt;}
.h2c{height:38.229333pt;}
.h30{height:38.359375pt;}
.h43{height:39.560000pt;}
.h44{height:40.080000pt;}
.h3{height:40.604167pt;}
.h42{height:40.960000pt;}
.h1b{height:42.195312pt;}
.h11{height:43.120594pt;}
.h6{height:43.718750pt;}
.h12{height:43.887581pt;}
.h45{height:44.834667pt;}
.h8{height:47.472000pt;}
.h9{height:47.491402pt;}
.h37{height:47.565938pt;}
.h3b{height:47.566102pt;}
.h3c{height:47.582102pt;}
.h40{height:47.587271pt;}
.h38{height:47.587473pt;}
.h1e{height:47.608767pt;}
.h39{height:47.614101pt;}
.h35{height:47.618783pt;}
.h1a{height:47.630101pt;}
.h27{height:47.630106pt;}
.h17{height:47.630264pt;}
.h1d{height:47.635434pt;}
.h32{height:47.635475pt;}
.h18{height:47.635597pt;}
.h31{height:47.640361pt;}
.hb{height:47.640767pt;}
.h1f{height:47.640804pt;}
.h3a{height:47.640806pt;}
.h3e{height:47.640810pt;}
.h19{height:47.640930pt;}
.h36{height:47.645450pt;}
.h2f{height:47.645613pt;}
.h34{height:47.645938pt;}
.hc{height:47.646101pt;}
.h3d{height:47.646102pt;}
.he{height:47.646141pt;}
.h3f{height:47.646143pt;}
.h15{height:47.646264pt;}
.hd{height:47.646670pt;}
.h2e{height:47.650946pt;}
.ha{height:47.651434pt;}
.h26{height:47.651439pt;}
.h2a{height:47.651460pt;}
.h33{height:47.651475pt;}
.h28{height:47.651480pt;}
.h14{height:47.651597pt;}
.h1c{height:47.652248pt;}
.h24{height:47.656773pt;}
.h29{height:47.656813pt;}
.h13{height:47.656930pt;}
.h25{height:48.090667pt;}
.h16{height:48.096000pt;}
.h2b{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:218.066671pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.xc{left:105.550008pt;}
.x7{left:125.685069pt;}
.xe{left:132.189982pt;}
.x10{left:202.149862pt;}
.x5{left:207.874003pt;}
.x11{left:212.062927pt;}
.x6{left:223.878781pt;}
.x13{left:225.863999pt;}
.x14{left:268.887736pt;}
.xa{left:364.352010pt;}
.xb{left:457.194132pt;}
.xd{left:484.506144pt;}
.x4{left:521.612549pt;}
.xf{left:554.465861pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x12{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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