
    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_03fdd6db3fec7354c1f1dd21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_f8c7337f10cd528dba83a2cd.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_746382ba62cf594ea4e47418.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_959e7b83dc2d9c8d66813fe1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f2d28cccdf950e9315c1a024.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4cbf0bccb185bb9a0525ac5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_7d50fa3a48e8cec91ef3e6b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.430000;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_d0538a56da1aab6863813466.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_58bf3cf5653252331ecaee09.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_1e68dcf31a09fb4899559579.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_41771844a1aa4c16c953bac5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.904000;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_e59d1c24ff58738fbf90fa5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_28a54c9c6c177d2f9a73daa4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_19b341cb759eaca0e650f48a.woff2')format("woff");}.fff{font-family:fff;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_36f948f03d55de79e2f6e7ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b12b2c982e1152acd7a3dbe4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_de5812b5e1e1ddf986dd79db.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.683000;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:ff13;src:url('chunks/assets/font_a8f3a02e6f1b69cc94a92abf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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:ff14;src:url('chunks/assets/font_4eb7a9951988bca86a616e03.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.929000;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:ff15;src:url('chunks/assets/font_ad9513ce9f794e7af215dba2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.635000;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);}
.v2{vertical-align:-21.690000px;}
.v5{vertical-align:-10.764000px;}
.v7{vertical-align:-8.469881px;}
.v9{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.108000px;}
.v4{vertical-align:18.132000px;}
.v8{vertical-align:20.492105px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.ls0{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000918px;}
.ls68{letter-spacing:0.001114px;}
.ls2e{letter-spacing:0.001166px;}
.ls1d{letter-spacing:0.001200px;}
.ls54{letter-spacing:0.001535px;}
.ls3e{letter-spacing:0.002173px;}
.ls5d{letter-spacing:0.002339px;}
.ls27{letter-spacing:0.002760px;}
.ls4c{letter-spacing:0.002916px;}
.ls35{letter-spacing:0.003270px;}
.ls4a{letter-spacing:0.466668px;}
.ls3a{letter-spacing:1.532526px;}
.ls41{letter-spacing:1.537250px;}
.ls1c{letter-spacing:1.661780px;}
.ls23{letter-spacing:1.946534px;}
.ls9{letter-spacing:1.952534px;}
.ls4f{letter-spacing:2.362570px;}
.ls3f{letter-spacing:2.846251px;}
.ls3c{letter-spacing:2.850975px;}
.ls3{letter-spacing:2.984916px;}
.ls30{letter-spacing:2.987235px;}
.ls7{letter-spacing:2.990525px;}
.ls2{letter-spacing:2.992894px;}
.ls2d{letter-spacing:2.993235px;}
.ls36{letter-spacing:2.996207px;}
.ls38{letter-spacing:3.002207px;}
.ls28{letter-spacing:3.615159px;}
.lsb{letter-spacing:3.621159px;}
.ls1{letter-spacing:4.536000px;}
.ls4e{letter-spacing:7.058045px;}
.ls39{letter-spacing:7.681344px;}
.ls45{letter-spacing:7.686068px;}
.ls34{letter-spacing:8.298065px;}
.ls1b{letter-spacing:8.304065px;}
.ls4d{letter-spacing:8.466140px;}
.ls8{letter-spacing:9.756441px;}
.ls6a{letter-spacing:9.764400px;}
.ls57{letter-spacing:11.289055px;}
.ls56{letter-spacing:11.293222px;}
.ls53{letter-spacing:11.529055px;}
.ls47{letter-spacing:12.547732px;}
.ls46{letter-spacing:12.548745px;}
.ls3b{letter-spacing:13.211907px;}
.ls60{letter-spacing:13.280339px;}
.ls5e{letter-spacing:13.281270px;}
.ls62{letter-spacing:13.284539px;}
.ls5f{letter-spacing:13.286339px;}
.ls52{letter-spacing:13.981358px;}
.ls37{letter-spacing:14.204339px;}
.ls61{letter-spacing:14.205270px;}
.ls65{letter-spacing:15.935073px;}
.ls2b{letter-spacing:15.935520px;}
.ls63{letter-spacing:15.937473px;}
.ls64{letter-spacing:15.938760px;}
.ls13{letter-spacing:15.939847px;}
.ls2c{letter-spacing:15.941520px;}
.ls2a{letter-spacing:16.399809px;}
.ls24{letter-spacing:16.781073px;}
.lsd{letter-spacing:16.833847px;}
.lse{letter-spacing:16.837473px;}
.ls51{letter-spacing:17.285235px;}
.ls59{letter-spacing:18.083779px;}
.ls25{letter-spacing:18.355200px;}
.ls11{letter-spacing:18.379473px;}
.ls10{letter-spacing:18.387847px;}
.ls2f{letter-spacing:18.929235px;}
.ls5b{letter-spacing:19.025607px;}
.ls1e{letter-spacing:19.382916px;}
.ls50{letter-spacing:19.747358px;}
.ls29{letter-spacing:19.919520px;}
.ls32{letter-spacing:19.923847px;}
.ls58{letter-spacing:19.925282px;}
.ls66{letter-spacing:20.013005px;}
.ls67{letter-spacing:20.023200px;}
.ls22{letter-spacing:20.228198px;}
.ls55{letter-spacing:20.279282px;}
.ls5a{letter-spacing:20.681780px;}
.ls17{letter-spacing:21.253200px;}
.ls20{letter-spacing:21.662822px;}
.ls18{letter-spacing:23.155200px;}
.ls33{letter-spacing:23.345235px;}
.ls12{letter-spacing:23.409847px;}
.ls69{letter-spacing:23.413114px;}
.ls6{letter-spacing:23.456102px;}
.ls15{letter-spacing:23.540916px;}
.ls14{letter-spacing:23.814758px;}
.lsc{letter-spacing:24.723847px;}
.ls16{letter-spacing:25.598916px;}
.ls26{letter-spacing:26.305200px;}
.ls4{letter-spacing:26.762916px;}
.lsf{letter-spacing:27.003847px;}
.ls1a{letter-spacing:27.020916px;}
.ls5{letter-spacing:27.401318px;}
.ls19{letter-spacing:28.411200px;}
.ls1f{letter-spacing:29.317200px;}
.ls21{letter-spacing:29.875200px;}
.ls5c{letter-spacing:33.227607px;}
.ls31{letter-spacing:33.773235px;}
.lsa{letter-spacing:35.642916px;}
.ls40{letter-spacing:71.049027px;}
.ls3d{letter-spacing:98.693056px;}
.ls42{letter-spacing:132.468655px;}
.ls43{letter-spacing:260.267963px;}
.ls4b{letter-spacing:305.225062px;}
.ls44{letter-spacing:311.734418px;}
.ls49{letter-spacing:323.503764px;}
.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;}
}
.ws4c{word-spacing:-45.664080px;}
.wsc5{word-spacing:-33.211407px;}
.ws78{word-spacing:-26.899125px;}
.wscb{word-spacing:-25.755988px;}
.wsb7{word-spacing:-22.416000px;}
.ws20{word-spacing:-19.510886px;}
.wsf3{word-spacing:-19.104330px;}
.wsea{word-spacing:-18.882988px;}
.wsec{word-spacing:-18.876988px;}
.wsf0{word-spacing:-18.530483px;}
.wsfa{word-spacing:-17.932800px;}
.ws1{word-spacing:-16.680000px;}
.ws2e{word-spacing:-16.605661px;}
.wsdd{word-spacing:-15.361116px;}
.wsc4{word-spacing:-14.280742px;}
.wsad{word-spacing:-14.111860px;}
.wsc3{word-spacing:-10.290742px;}
.ws130{word-spacing:-7.316582px;}
.ws10d{word-spacing:-6.814464px;}
.ws12f{word-spacing:-6.384077px;}
.wsd1{word-spacing:-5.523302px;}
.ws50{word-spacing:-4.877722px;}
.ws121{word-spacing:-3.873485px;}
.ws51{word-spacing:-3.586560px;}
.wsff{word-spacing:-3.335478px;}
.ws86{word-spacing:-3.156173px;}
.wsc8{word-spacing:-3.096742px;}
.ws3e{word-spacing:-2.940979px;}
.ws30{word-spacing:-2.869248px;}
.wsb8{word-spacing:-2.654054px;}
.wsac{word-spacing:-2.438861px;}
.ws96{word-spacing:-2.295398px;}
.ws15{word-spacing:-1.936742px;}
.ws2a{word-spacing:-1.865011px;}
.ws11e{word-spacing:-1.649818px;}
.wsf6{word-spacing:-1.434864px;}
.wsf7{word-spacing:-1.434624px;}
.wsf8{word-spacing:-1.428872px;}
.ws9e{word-spacing:-1.362893px;}
.ws4f{word-spacing:-1.291162px;}
.ws11f{word-spacing:-1.219430px;}
.wsab{word-spacing:-1.147699px;}
.ws7b{word-spacing:-1.075968px;}
.ws129{word-spacing:-0.789043px;}
.ws22{word-spacing:-0.717312px;}
.ws11b{word-spacing:-0.573850px;}
.ws7{word-spacing:-0.445091px;}
.ws4b{word-spacing:-0.430387px;}
.ws104{word-spacing:-0.286925px;}
.ws27{word-spacing:-0.071731px;}
.wsaa{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws100{word-spacing:0.011956px;}
.ws118{word-spacing:0.134400px;}
.ws8a{word-spacing:0.215194px;}
.wsd6{word-spacing:0.310834px;}
.ws95{word-spacing:0.358656px;}
.wsae{word-spacing:0.430387px;}
.ws103{word-spacing:0.483602px;}
.ws12{word-spacing:0.490161px;}
.ws102{word-spacing:0.502118px;}
.wsd{word-spacing:0.536728px;}
.ws43{word-spacing:0.573850px;}
.wsa3{word-spacing:0.645581px;}
.ws128{word-spacing:0.717312px;}
.ws75{word-spacing:0.729263px;}
.ws90{word-spacing:0.731656px;}
.ws7c{word-spacing:0.789043px;}
.wscc{word-spacing:0.853842px;}
.ws5c{word-spacing:0.860774px;}
.wsa{word-spacing:0.929456px;}
.wsd0{word-spacing:0.932506px;}
.ws61{word-spacing:0.968371px;}
.ws55{word-spacing:1.004237px;}
.wsda{word-spacing:1.040102px;}
.ws116{word-spacing:1.147692px;}
.ws10e{word-spacing:1.147699px;}
.ws3c{word-spacing:1.200013px;}
.ws3d{word-spacing:1.219430px;}
.wsb6{word-spacing:1.362893px;}
.ws6c{word-spacing:1.434624px;}
.ws42{word-spacing:1.578086px;}
.ws5a{word-spacing:1.721549px;}
.ws59{word-spacing:1.731381px;}
.ws4{word-spacing:1.845820px;}
.wsd3{word-spacing:1.865011px;}
.ws10c{word-spacing:1.892865px;}
.ws65{word-spacing:1.936742px;}
.wsbb{word-spacing:2.008474px;}
.ws54{word-spacing:2.080205px;}
.ws91{word-spacing:2.151936px;}
.ws115{word-spacing:2.163877px;}
.ws122{word-spacing:2.295398px;}
.ws77{word-spacing:2.367123px;}
.ws1a{word-spacing:2.367130px;}
.wsfd{word-spacing:2.402980px;}
.ws7f{word-spacing:2.438861px;}
.ws125{word-spacing:2.510592px;}
.ws69{word-spacing:2.582323px;}
.ws8e{word-spacing:2.642082px;}
.ws5e{word-spacing:2.701858px;}
.ws64{word-spacing:2.725786px;}
.wsf2{word-spacing:2.815196px;}
.ws72{word-spacing:2.816633px;}
.wsf4{word-spacing:2.821196px;}
.ws79{word-spacing:2.940979px;}
.wseb{word-spacing:2.954714px;}
.wse9{word-spacing:2.960095px;}
.ws119{word-spacing:3.012710px;}
.ws117{word-spacing:3.039381px;}
.ws58{word-spacing:3.084442px;}
.wse7{word-spacing:3.106108px;}
.wsf1{word-spacing:3.151377px;}
.wsee{word-spacing:3.154212px;}
.ws93{word-spacing:3.156173px;}
.wsef{word-spacing:3.175196px;}
.ws76{word-spacing:3.180063px;}
.wsed{word-spacing:3.199198px;}
.wsba{word-spacing:3.227895px;}
.wsb2{word-spacing:3.227904px;}
.ws13{word-spacing:3.299614px;}
.ws94{word-spacing:3.299635px;}
.wsf{word-spacing:3.351276px;}
.ws2d{word-spacing:3.359389px;}
.ws9f{word-spacing:3.371366px;}
.ws97{word-spacing:3.443098px;}
.ws62{word-spacing:3.613095px;}
.ws5d{word-spacing:3.639381px;}
.ws21{word-spacing:3.658291px;}
.ws11{word-spacing:3.678549px;}
.ws108{word-spacing:3.718043px;}
.ws8{word-spacing:3.744004px;}
.ws7a{word-spacing:3.801754px;}
.ws17{word-spacing:3.873485px;}
.wsa9{word-spacing:3.883029px;}
.ws6f{word-spacing:3.945216px;}
.ws60{word-spacing:4.016921px;}
.ws113{word-spacing:4.076697px;}
.ws1c{word-spacing:4.160410px;}
.ws112{word-spacing:4.196248px;}
.ws1e{word-spacing:4.232141px;}
.ws52{word-spacing:4.303872px;}
.wsb0{word-spacing:4.375603px;}
.ws9{word-spacing:4.398550px;}
.ws123{word-spacing:4.447334px;}
.ws36{word-spacing:4.483200px;}
.ws6e{word-spacing:4.519066px;}
.wsf5{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.wsbf{word-spacing:4.662528px;}
.wsa0{word-spacing:4.734259px;}
.ws6b{word-spacing:4.805990px;}
.ws66{word-spacing:4.949453px;}
.ws2c{word-spacing:4.973331px;}
.ws24{word-spacing:5.021184px;}
.ws114{word-spacing:5.033106px;}
.wsbe{word-spacing:5.092915px;}
.ws4a{word-spacing:5.164646px;}
.ws49{word-spacing:5.236378px;}
.ws68{word-spacing:5.379825px;}
.ws11c{word-spacing:5.451571px;}
.ws127{word-spacing:5.523302px;}
.ws53{word-spacing:5.595034px;}
.ws111{word-spacing:5.630862px;}
.ws8c{word-spacing:5.666765px;}
.ws2b{word-spacing:5.738496px;}
.ws8f{word-spacing:5.810189px;}
.ws57{word-spacing:5.810227px;}
.wsa4{word-spacing:5.881958px;}
.wsb4{word-spacing:5.929740px;}
.wsc0{word-spacing:5.953690px;}
.ws10{word-spacing:5.969460px;}
.wsd7{word-spacing:5.989516px;}
.ws80{word-spacing:6.001470px;}
.wscd{word-spacing:6.007263px;}
.wsa5{word-spacing:6.025421px;}
.wsc2{word-spacing:6.049291px;}
.wsb9{word-spacing:6.061245px;}
.ws82{word-spacing:6.097152px;}
.ws8d{word-spacing:6.121021px;}
.ws44{word-spacing:6.228618px;}
.ws41{word-spacing:6.240614px;}
.wse{word-spacing:6.296733px;}
.ws56{word-spacing:6.312346px;}
.ws2f{word-spacing:6.455775px;}
.ws2{word-spacing:6.496289px;}
.ws23{word-spacing:6.527539px;}
.ws89{word-spacing:6.599270px;}
.wsd4{word-spacing:6.671002px;}
.wsbd{word-spacing:6.779921px;}
.ws83{word-spacing:6.814464px;}
.ws26{word-spacing:6.886195px;}
.ws71{word-spacing:6.929204px;}
.ws9b{word-spacing:6.957926px;}
.wsf9{word-spacing:6.983972px;}
.ws11a{word-spacing:7.029658px;}
.ws6{word-spacing:7.082188px;}
.ws10b{word-spacing:7.101389px;}
.ws73{word-spacing:7.125252px;}
.ws1f{word-spacing:7.173120px;}
.ws5f{word-spacing:7.244803px;}
.wsb1{word-spacing:7.244851px;}
.ws99{word-spacing:7.316582px;}
.ws9a{word-spacing:7.388314px;}
.ws4e{word-spacing:7.531776px;}
.wsc7{word-spacing:7.577306px;}
.ws98{word-spacing:7.603507px;}
.ws67{word-spacing:7.675238px;}
.ws109{word-spacing:7.723008px;}
.ws88{word-spacing:7.746970px;}
.wsa8{word-spacing:7.818701px;}
.ws10a{word-spacing:7.842559px;}
.ws28{word-spacing:7.890432px;}
.ws7e{word-spacing:7.962163px;}
.ws11d{word-spacing:8.033894px;}
.ws34{word-spacing:8.105626px;}
.ws32{word-spacing:8.177357px;}
.wsc{word-spacing:8.194917px;}
.ws46{word-spacing:8.211139px;}
.ws48{word-spacing:8.249088px;}
.ws4d{word-spacing:8.320819px;}
.ws16{word-spacing:8.392550px;}
.ws81{word-spacing:8.464282px;}
.ws1d{word-spacing:8.536013px;}
.wsb{word-spacing:8.587644px;}
.ws33{word-spacing:8.607744px;}
.ws5b{word-spacing:8.751206px;}
.ws6d{word-spacing:8.894669px;}
.wsb5{word-spacing:8.966400px;}
.ws85{word-spacing:9.038131px;}
.wsa6{word-spacing:9.109862px;}
.wsa7{word-spacing:9.181594px;}
.ws63{word-spacing:9.253325px;}
.ws105{word-spacing:9.287972px;}
.wsa1{word-spacing:9.396787px;}
.ws38{word-spacing:9.468518px;}
.ws107{word-spacing:9.540250px;}
.ws29{word-spacing:9.683712px;}
.ws8b{word-spacing:9.755443px;}
.ws45{word-spacing:9.827174px;}
.wsc9{word-spacing:9.970637px;}
.wsd5{word-spacing:10.114099px;}
.ws19{word-spacing:10.185830px;}
.ws6a{word-spacing:10.257562px;}
.ws74{word-spacing:10.293359px;}
.ws3f{word-spacing:10.329293px;}
.ws124{word-spacing:10.401024px;}
.ws39{word-spacing:10.472755px;}
.ws120{word-spacing:10.544486px;}
.ws7d{word-spacing:10.759680px;}
.ws9c{word-spacing:10.974874px;}
.ws47{word-spacing:11.118336px;}
.wsca{word-spacing:11.261798px;}
.ws110{word-spacing:11.429095px;}
.ws92{word-spacing:11.548723px;}
.wsd2{word-spacing:11.663972px;}
.ws106{word-spacing:11.692186px;}
.ws35{word-spacing:11.763917px;}
.wsfb{word-spacing:11.907300px;}
.ws25{word-spacing:11.979110px;}
.wsbc{word-spacing:12.050842px;}
.wsa2{word-spacing:12.122573px;}
.wsc1{word-spacing:12.206178px;}
.wsd8{word-spacing:12.265954px;}
.wsd9{word-spacing:12.325729px;}
.wscf{word-spacing:12.481229px;}
.ws12b{word-spacing:12.983347px;}
.ws3b{word-spacing:13.055078px;}
.ws3a{word-spacing:13.084694px;}
.ws12d{word-spacing:13.198541px;}
.ws37{word-spacing:13.270272px;}
.ws18{word-spacing:13.342003px;}
.ws10f{word-spacing:13.413734px;}
.wsb3{word-spacing:13.772390px;}
.ws1b{word-spacing:13.844122px;}
.ws5{word-spacing:14.282194px;}
.wsfc{word-spacing:14.336387px;}
.ws12a{word-spacing:14.349840px;}
.wsfe{word-spacing:14.358100px;}
.wsce{word-spacing:14.411972px;}
.ws126{word-spacing:14.417971px;}
.ws40{word-spacing:14.776627px;}
.ws87{word-spacing:15.063552px;}
.wsaf{word-spacing:15.207014px;}
.ws84{word-spacing:15.422208px;}
.ws12c{word-spacing:15.493939px;}
.ws12e{word-spacing:16.785101px;}
.ws9d{word-spacing:21.949635px;}
.wsdb{word-spacing:41.113575px;}
.wse2{word-spacing:47.710831px;}
.wse0{word-spacing:68.729699px;}
.ws31{word-spacing:69.937725px;}
.wse1{word-spacing:81.041182px;}
.wsdf{word-spacing:81.097656px;}
.ws14{word-spacing:83.925075px;}
.wsde{word-spacing:93.109612px;}
.wse3{word-spacing:108.713780px;}
.wse8{word-spacing:124.018422px;}
.wse5{word-spacing:247.926913px;}
.wsdc{word-spacing:332.579456px;}
.wse4{word-spacing:340.731867px;}
.wsc6{word-spacing:496.733258px;}
.wse6{word-spacing:540.947949px;}
.ws101{word-spacing:598.427258px;}
.ws70{word-spacing:722.189722px;}
._6{margin-left:-71.409600px;}
._23{margin-left:-60.081886px;}
._1d{margin-left:-50.068378px;}
._54{margin-left:-46.894800px;}
._13{margin-left:-43.899494px;}
._14{margin-left:-42.846292px;}
._8{margin-left:-40.909125px;}
._2b{margin-left:-39.398494px;}
._1f{margin-left:-38.061337px;}
._11{margin-left:-36.786871px;}
._29{margin-left:-32.216721px;}
._2a{margin-left:-28.950503px;}
._55{margin-left:-26.336149px;}
._52{margin-left:-15.583330px;}
._5{margin-left:-14.505075px;}
._22{margin-left:-12.997657px;}
._1c{margin-left:-10.831411px;}
._12{margin-left:-9.696422px;}
._7{margin-left:-8.181825px;}
._a{margin-left:-6.250915px;}
._3{margin-left:-5.184000px;}
._1a{margin-left:-4.080000px;}
._1{margin-left:-3.000000px;}
._2{margin-left:-1.080000px;}
._c{width:1.080000px;}
._4{width:3.000000px;}
._35{width:4.066178px;}
._57{width:5.159108px;}
._53{width:7.464077px;}
._58{width:8.565172px;}
._e{width:9.654553px;}
._30{width:10.726194px;}
._b{width:11.847283px;}
._10{width:12.970914px;}
._1e{width:14.992257px;}
._f{width:16.429105px;}
._17{width:17.852827px;}
._9{width:19.014560px;}
._18{width:21.000321px;}
._2f{width:22.382554px;}
._d{width:23.596384px;}
._16{width:24.743232px;}
._2e{width:25.882253px;}
._15{width:27.029952px;}
._20{width:28.038221px;}
._31{width:29.483520px;}
._2d{width:30.857126px;}
._56{width:32.772750px;}
._2c{width:33.916147px;}
._34{width:68.609925px;}
._33{width:73.078250px;}
._1b{width:80.697600px;}
._37{width:84.090815px;}
._32{width:93.917568px;}
._21{width:96.836850px;}
._4b{width:108.657306px;}
._47{width:111.763414px;}
._19{width:116.203950px;}
._40{width:117.919155px;}
._3b{width:124.074896px;}
._28{width:136.993882px;}
._36{width:139.436012px;}
._38{width:145.535279px;}
._3c{width:157.677337px;}
._4a{width:163.946028px;}
._4e{width:167.052136px;}
._4c{width:170.101770px;}
._4f{width:200.936951px;}
._42{width:227.254157px;}
._39{width:245.664906px;}
._3d{width:285.648987px;}
._3a{width:297.169824px;}
._48{width:324.785948px;}
._50{width:328.626227px;}
._3e{width:337.097431px;}
._4d{width:350.030135px;}
._51{width:380.074671px;}
._26{width:483.241210px;}
._25{width:527.667418px;}
._27{width:596.444976px;}
._41{width:648.609276px;}
._24{width:652.924426px;}
._43{width:688.539434px;}
._49{width:751.678138px;}
._44{width:779.348186px;}
._46{width:788.553560px;}
._45{width:791.718694px;}
._3f{width:794.991675px;}
._0{width:847.320000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,21,56);}
.fc3{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:35.865600px;}
.fs14{font-size:37.649637px;}
.fsf{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:47.820600px;}
.fs9{font-size:54.000000px;}
.fs13{font-size:56.474691px;}
.fsd{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.454600px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fsc{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs11{font-size:103.292400px;}
.fs5{font-size:108.000000px;}
.fsb{font-size:123.975000px;}
.fs8{font-size:228.000000px;}
.fs6{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:11.653502px;}
.y33{bottom:11.653503px;}
.y3e{bottom:17.860499px;}
.y2c{bottom:18.178501px;}
.y3c{bottom:19.976915px;}
.y2e{bottom:21.928501px;}
.y25{bottom:31.220999px;}
.y32{bottom:34.153502px;}
.y31{bottom:56.653502px;}
.y35{bottom:56.653503px;}
.y5{bottom:66.525004px;}
.y3a{bottom:67.453498px;}
.y2a{bottom:71.120996px;}
.y30{bottom:79.153503px;}
.y4{bottom:97.125005px;}
.y29{bottom:104.120996px;}
.y68{bottom:108.000000px;}
.y27{bottom:131.026503px;}
.y21{bottom:139.264499px;}
.ya2{bottom:152.832000px;}
.y67{bottom:152.848500px;}
.y101{bottom:157.378500px;}
.y1d0{bottom:158.394000px;}
.y147{bottom:175.152000px;}
.ya1{bottom:176.187000px;}
.y66{bottom:176.203500px;}
.yc2{bottom:176.359500px;}
.y154{bottom:178.506000px;}
.yce{bottom:179.667000px;}
.y121{bottom:179.722500px;}
.y100{bottom:184.269000px;}
.y1e5{bottom:184.842000px;}
.y1aa{bottom:185.190000px;}
.y1cf{bottom:185.284500px;}
.y146{bottom:187.662000px;}
.y1be{bottom:187.882500px;}
.y160{bottom:188.694000px;}
.yc1{bottom:194.293500px;}
.y18{bottom:196.933500px;}
.y1a3{bottom:197.434500px;}
.ya0{bottom:202.471500px;}
.y1a9{bottom:203.122500px;}
.y153{bottom:205.396500px;}
.y1bd{bottom:205.815000px;}
.ycd{bottom:206.559000px;}
.y120{bottom:206.613000px;}
.y15f{bottom:206.626500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y145{bottom:211.018500px;}
.yff{bottom:211.159500px;}
.y1e4{bottom:211.732500px;}
.y1ce{bottom:212.176500px;}
.y134{bottom:212.305500px;}
.y1a2{bottom:215.367000px;}
.yc0{bottom:217.648500px;}
.y1a1{bottom:220.791000px;}
.y1a8{bottom:221.055000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1bc{bottom:223.749000px;}
.y9f{bottom:229.362000px;}
.y15e{bottom:229.983000px;}
.ybf{bottom:230.158500px;}
.y116{bottom:230.494500px;}
.y152{bottom:232.287000px;}
.ycc{bottom:233.449500px;}
.y11f{bottom:233.505000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y133{bottom:235.662000px;}
.y1fb{bottom:236.413500px;}
.y144{bottom:237.774000px;}
.y180{bottom:237.966000px;}
.yfe{bottom:238.051500px;}
.y1e3{bottom:238.623000px;}
.y1cd{bottom:239.067000px;}
.y1bb{bottom:241.681500px;}
.y1a7{bottom:244.410000px;}
.yeb{bottom:245.076000px;}
.y115{bottom:248.427000px;}
.y1a0{bottom:248.542500px;}
.y23{bottom:249.628540px;}
.ybe{bottom:253.515000px;}
.y17f{bottom:255.898500px;}
.y9e{bottom:256.254000px;}
.y15d{bottom:257.734500px;}
.y151{bottom:259.177500px;}
.y1ba{bottom:259.614000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ycb{bottom:260.340000px;}
.y11e{bottom:260.395500px;}
.yea{bottom:263.008500px;}
.y1fa{bottom:263.304000px;}
.y132{bottom:263.413500px;}
.y143{bottom:264.664500px;}
.y1e2{bottom:265.513500px;}
.y1cc{bottom:265.957500px;}
.y87{bottom:268.126500px;}
.y39{bottom:268.950016px;}
.y37{bottom:268.950027px;}
.y114{bottom:271.783500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y17e{bottom:273.831000px;}
.y19f{bottom:275.433000px;}
.y1b9{bottom:277.546500px;}
.y17d{bottom:279.253500px;}
.ybd{bottom:281.266500px;}
.y15c{bottom:284.626500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yfd{bottom:285.558000px;}
.y150{bottom:286.069500px;}
.ye9{bottom:286.365000px;}
.yca{bottom:287.230500px;}
.y11d{bottom:287.286000px;}
.y1f9{bottom:290.194500px;}
.y131{bottom:290.305500px;}
.y86{bottom:291.483000px;}
.y142{bottom:291.556500px;}
.y17c{bottom:291.763500px;}
.y1a6{bottom:291.783000px;}
.y1e1{bottom:292.405500px;}
.y1cb{bottom:292.848000px;}
.y9d{bottom:294.726000px;}
.y1b8{bottom:295.479000px;}
.ye8{bottom:298.873500px;}
.y38{bottom:299.425489px;}
.y19e{bottom:302.325000px;}
.ybc{bottom:308.157000px;}
.y85{bottom:309.415500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y15b{bottom:311.517000px;}
.y14f{bottom:312.960000px;}
.y1b7{bottom:313.413000px;}
.yc9{bottom:314.122500px;}
.y11c{bottom:314.176500px;}
.y17b{bottom:315.120000px;}
.ye7{bottom:316.807500px;}
.y130{bottom:317.196000px;}
.y141{bottom:318.447000px;}
.y113{bottom:319.156500px;}
.y1e0{bottom:319.296000px;}
.y1ca{bottom:319.738500px;}
.y84{bottom:321.925500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y17a{bottom:327.630000px;}
.y1f8{bottom:333.337500px;}
.ybb{bottom:335.049000px;}
.y1b6{bottom:336.768000px;}
.y15a{bottom:338.407500px;}
.y14e{bottom:339.850500px;}
.ye6{bottom:340.162500px;}
.y19d{bottom:340.797000px;}
.yc8{bottom:341.013000px;}
.y11b{bottom:341.068500px;}
.y12f{bottom:344.086500px;}
.y83{bottom:345.282000px;}
.y140{bottom:345.337500px;}
.y1df{bottom:346.186500px;}
.y9c{bottom:346.465500px;}
.y1c9{bottom:346.630500px;}
.yf{bottom:348.133500px;}
.y179{bottom:350.985000px;}
.y34{bottom:355.725014px;}
.y1f7{bottom:360.228000px;}
.yba{bottom:361.939500px;}
.y1b5{bottom:363.219000px;}
.y14d{bottom:366.741000px;}
.y65{bottom:370.521000px;}
.y12e{bottom:370.977000px;}
.y82{bottom:372.037500px;}
.y13f{bottom:372.228000px;}
.y1de{bottom:373.077000px;}
.y9b{bottom:373.357500px;}
.y1c8{bottom:373.521000px;}
.y159{bottom:376.879500px;}
.y178{bottom:377.742000px;}
.y11a{bottom:386.740500px;}
.ye{bottom:386.785499px;}
.yb9{bottom:388.830000px;}
.y19c{bottom:390.942000px;}
.yc7{bottom:392.014500px;}
.y64{bottom:395.743500px;}
.y12d{bottom:397.869000px;}
.y81{bottom:398.928000px;}
.y13e{bottom:399.120000px;}
.y1dd{bottom:399.969000px;}
.y9a{bottom:400.248000px;}
.y1c7{bottom:400.411500px;}
.ye5{bottom:401.622000px;}
.y1f6{bottom:403.369500px;}
.y177{bottom:404.632500px;}
.y19b{bottom:405.139500px;}
.y14c{bottom:405.214500px;}
.yd{bottom:408.044999px;}
.yb8{bottom:415.720500px;}
.ye4{bottom:415.819500px;}
.y19a{bottom:419.335500px;}
.y63{bottom:420.964500px;}
.y12c{bottom:424.759500px;}
.y80{bottom:425.820000px;}
.y13d{bottom:426.010500px;}
.y1dc{bottom:426.859500px;}
.y99{bottom:427.138500px;}
.y1c6{bottom:427.302000px;}
.y1f5{bottom:430.261500px;}
.y176{bottom:431.523000px;}
.y14b{bottom:438.595500px;}
.ye3{bottom:441.667500px;}
.y199{bottom:442.187491px;}
.yb7{bottom:442.612500px;}
.y62{bottom:446.187000px;}
.y12b{bottom:451.650000px;}
.y7f{bottom:452.710500px;}
.y13c{bottom:452.901000px;}
.y1db{bottom:453.750000px;}
.y98{bottom:454.029000px;}
.y1c5{bottom:454.194000px;}
.y2f{bottom:454.200016px;}
.y158{bottom:454.975500px;}
.y175{bottom:458.413500px;}
.y198{bottom:459.247711px;}
.yb6{bottom:469.503000px;}
.y61{bottom:471.408000px;}
.ye2{bottom:472.320000px;}
.y1f4{bottom:473.403000px;}
.y12a{bottom:478.540500px;}
.y7e{bottom:479.601000px;}
.y13b{bottom:479.791500px;}
.y1da{bottom:480.640500px;}
.y97{bottom:480.921000px;}
.y1c4{bottom:481.084500px;}
.y174{bottom:485.305500px;}
.ye1{bottom:493.989000px;}
.yb5{bottom:496.393500px;}
.y60{bottom:496.630500px;}
.y1f3{bottom:500.295000px;}
.y197{bottom:500.440952px;}
.yc{bottom:502.864502px;}
.y129{bottom:505.431000px;}
.y7d{bottom:506.491500px;}
.y13a{bottom:506.682000px;}
.y1d9{bottom:507.532500px;}
.y96{bottom:507.811500px;}
.y1c3{bottom:507.975000px;}
.y173{bottom:512.196000px;}
.ye0{bottom:515.658000px;}
.y196{bottom:517.501172px;}
.y14a{bottom:517.687500px;}
.yb{bottom:520.864502px;}
.y5f{bottom:521.851500px;}
.yb4{bottom:523.284000px;}
.y128{bottom:532.323000px;}
.y7c{bottom:533.382000px;}
.y139{bottom:533.574000px;}
.y1d8{bottom:534.423000px;}
.y95{bottom:534.702000px;}
.y1c2{bottom:534.865500px;}
.ydf{bottom:537.327000px;}
.ya{bottom:538.864499px;}
.y172{bottom:539.086500px;}
.y1f2{bottom:543.436500px;}
.y5e{bottom:547.074000px;}
.yb3{bottom:550.176000px;}
.y195{bottom:551.621613px;}
.y2d{bottom:552.675018px;}
.y9{bottom:556.864499px;}
.yde{bottom:558.996000px;}
.y127{bottom:559.213500px;}
.y7b{bottom:560.274000px;}
.y1d7{bottom:561.313500px;}
.y94{bottom:561.592500px;}
.y1c1{bottom:561.757500px;}
.y171{bottom:565.977000px;}
.y194{bottom:568.681833px;}
.y1f1{bottom:570.327000px;}
.y5d{bottom:572.295000px;}
.yb2{bottom:577.066500px;}
.y138{bottom:580.084500px;}
.yfc{bottom:583.123500px;}
.y126{bottom:586.104000px;}
.y7a{bottom:587.164500px;}
.y1d6{bottom:588.204000px;}
.y93{bottom:588.484500px;}
.ydd{bottom:589.650000px;}
.y170{bottom:592.867500px;}
.y5c{bottom:597.517500px;}
.y1c0{bottom:600.229500px;}
.yfb{bottom:601.056000px;}
.y193{bottom:602.801093px;}
.yb1{bottom:603.957000px;}
.y112{bottom:610.153500px;}
.y1a5{bottom:612.295500px;}
.y125{bottom:612.994500px;}
.y1f0{bottom:613.470000px;}
.y79{bottom:614.055000px;}
.y1d5{bottom:615.094500px;}
.y92{bottom:615.375000px;}
.y16f{bottom:619.759500px;}
.y192{bottom:619.861313px;}
.y5b{bottom:622.738500px;}
.y111{bottom:628.086000px;}
.yb0{bottom:630.847500px;}
.y1a4{bottom:633.964500px;}
.ydc{bottom:637.078500px;}
.y124{bottom:639.886500px;}
.y1ef{bottom:640.360500px;}
.yfa{bottom:640.632000px;}
.y78{bottom:640.945500px;}
.y1d4{bottom:641.986500px;}
.y91{bottom:642.265500px;}
.y8{bottom:645.510000px;}
.y110{bottom:646.018500px;}
.y16e{bottom:646.650000px;}
.y5a{bottom:647.961000px;}
.y191{bottom:653.981754px;}
.yaf{bottom:657.738000px;}
.y1bf{bottom:658.704000px;}
.y7{bottom:666.771000px;}
.yf9{bottom:667.522500px;}
.y77{bottom:667.837500px;}
.y90{bottom:669.156000px;}
.yc6{bottom:669.739500px;}
.y2b{bottom:670.644024px;}
.y190{bottom:671.040793px;}
.y59{bottom:673.182000px;}
.y16d{bottom:673.540500px;}
.ydb{bottom:676.656000px;}
.y1b4{bottom:679.947000px;}
.y1ee{bottom:683.503500px;}
.y123{bottom:684.535500px;}
.yae{bottom:684.630000px;}
.y10f{bottom:685.596000px;}
.y1d3{bottom:686.635500px;}
.yc5{bottom:691.408500px;}
.yf8{bottom:694.413000px;}
.y76{bottom:694.728000px;}
.y8f{bottom:696.048000px;}
.y1b3{bottom:697.879500px;}
.y58{bottom:698.404500px;}
.y16c{bottom:700.431000px;}
.y119{bottom:701.478000px;}
.yda{bottom:703.546500px;}
.y18f{bottom:705.161234px;}
.y28{bottom:708.144035px;}
.y1ed{bottom:710.394000px;}
.yad{bottom:711.520500px;}
.y10e{bottom:712.486500px;}
.y118{bottom:719.412000px;}
.y1b2{bottom:719.548500px;}
.yf7{bottom:721.305000px;}
.y75{bottom:721.618500px;}
.y18e{bottom:722.221455px;}
.y57{bottom:723.625500px;}
.y122{bottom:725.335500px;}
.y6{bottom:726.298500px;}
.y16b{bottom:727.323000px;}
.yc4{bottom:727.690500px;}
.yd9{bottom:730.437000px;}
.y157{bottom:730.917000px;}
.y8e{bottom:734.520000px;}
.y1ec{bottom:737.284500px;}
.y117{bottom:737.344500px;}
.y1d2{bottom:737.638500px;}
.yac{bottom:738.411000px;}
.y10d{bottom:739.377000px;}
.yf6{bottom:748.195500px;}
.y74{bottom:748.509000px;}
.y56{bottom:748.848000px;}
.y156{bottom:752.586000px;}
.y3{bottom:752.599495px;}
.y16a{bottom:754.213500px;}
.y18d{bottom:756.340714px;}
.yd8{bottom:757.327500px;}
.y1b1{bottom:759.126000px;}
.yab{bottom:765.301500px;}
.y10c{bottom:766.267500px;}
.y202{bottom:771.295500px;}
.y18c{bottom:773.400935px;}
.yf5{bottom:775.086000px;}
.y73{bottom:775.401000px;}
.y1eb{bottom:780.427500px;}
.y169{bottom:781.104000px;}
.y55{bottom:784.087500px;}
.yd7{bottom:784.218000px;}
.y1b0{bottom:786.016500px;}
.y8d{bottom:786.259500px;}
.y10b{bottom:793.158000px;}
.y155{bottom:793.159500px;}
.y201{bottom:798.186000px;}
.yf4{bottom:801.976500px;}
.y72{bottom:802.291500px;}
.yaa{bottom:803.775000px;}
.y1ea{bottom:807.318000px;}
.y18b{bottom:807.521376px;}
.y168{bottom:807.994500px;}
.yd6{bottom:811.110000px;}
.y1af{bottom:812.907000px;}
.y8c{bottom:813.151500px;}
.y149{bottom:816.322500px;}
.y10a{bottom:820.050000px;}
.y18a{bottom:824.581596px;}
.y200{bottom:825.076500px;}
.yf3{bottom:828.868500px;}
.y71{bottom:829.182000px;}
.y148{bottom:834.255000px;}
.y167{bottom:834.886500px;}
.yd5{bottom:838.000500px;}
.y26{bottom:839.544033px;}
.y1ae{bottom:839.797500px;}
.y8b{bottom:840.042000px;}
.y109{bottom:846.940500px;}
.y1e9{bottom:850.461000px;}
.yf2{bottom:855.759000px;}
.y70{bottom:856.072500px;}
.y189{bottom:858.700856px;}
.y166{bottom:861.777000px;}
.ya9{bottom:862.249500px;}
.yd4{bottom:864.891000px;}
.y137{bottom:866.484000px;}
.y1ad{bottom:866.688000px;}
.y8a{bottom:866.932500px;}
.y1ff{bottom:868.219500px;}
.y51{bottom:869.278549px;}
.y108{bottom:873.831000px;}
.y54{bottom:874.501500px;}
.y188{bottom:875.761076px;}
.y1e8{bottom:877.351500px;}
.y2{bottom:879.369000px;}
.yf1{bottom:882.649500px;}
.y6f{bottom:882.963000px;}
.y136{bottom:884.416500px;}
.y165{bottom:888.667500px;}
.ya8{bottom:889.140000px;}
.y50{bottom:891.778530px;}
.yd3{bottom:891.781500px;}
.y1ac{bottom:893.580000px;}
.y89{bottom:893.823000px;}
.y1fe{bottom:895.110000px;}
.y107{bottom:900.721500px;}
.y135{bottom:902.349000px;}
.yf0{bottom:909.540000px;}
.y4f{bottom:909.853535px;}
.y6e{bottom:909.855000px;}
.y187{bottom:909.881517px;}
.y164{bottom:915.558000px;}
.ya7{bottom:916.032000px;}
.yd2{bottom:918.673500px;}
.y1e7{bottom:920.494500px;}
.y186{bottom:926.941737px;}
.y106{bottom:927.613500px;}
.y4e{bottom:927.928545px;}
.y1ab{bottom:932.052000px;}
.y88{bottom:932.296500px;}
.y53{bottom:934.222500px;}
.yef{bottom:936.432000px;}
.y6d{bottom:936.745500px;}
.y1fd{bottom:938.253000px;}
.y163{bottom:942.450000px;}
.ya6{bottom:942.922500px;}
.y185{bottom:944.000777px;}
.yd1{bottom:945.564000px;}
.y4d{bottom:946.003544px;}
.y1e6{bottom:947.385000px;}
.y105{bottom:954.504000px;}
.y184{bottom:961.060997px;}
.yee{bottom:963.322500px;}
.y6c{bottom:963.636000px;}
.y4c{bottom:964.078548px;}
.y1fc{bottom:965.143500px;}
.y1{bottom:966.726000px;}
.y162{bottom:969.340500px;}
.ya5{bottom:969.813000px;}
.yd0{bottom:972.454500px;}
.y52{bottom:980.586000px;}
.y104{bottom:981.394500px;}
.y4b{bottom:982.153530px;}
.y183{bottom:985.195198px;}
.yed{bottom:990.213000px;}
.y6b{bottom:990.526500px;}
.y161{bottom:996.231000px;}
.ya4{bottom:996.703500px;}
.y4a{bottom:1000.228546px;}
.y103{bottom:1008.285000px;}
.y182{bottom:1009.329399px;}
.ycf{bottom:1010.926500px;}
.y6a{bottom:1017.418500px;}
.y49{bottom:1018.303545px;}
.ya3{bottom:1023.595500px;}
.y181{bottom:1026.389619px;}
.yec{bottom:1028.685000px;}
.y102{bottom:1035.177000px;}
.y48{bottom:1036.378544px;}
.y24{bottom:1040.919033px;}
.y1d1{bottom:1046.899500px;}
.y47{bottom:1054.453537px;}
.y69{bottom:1062.067500px;}
.yc3{bottom:1064.832000px;}
.y46{bottom:1072.528536px;}
.y45{bottom:1090.603535px;}
.y44{bottom:1108.678539px;}
.y22{bottom:1117.597539px;}
.y43{bottom:1126.753538px;}
.y42{bottom:1144.828537px;}
.y3b{bottom:1150.528622px;}
.y41{bottom:1162.903542px;}
.y40{bottom:1180.978540px;}
.y3f{bottom:1199.053539px;}
.y3d{bottom:1214.700037px;}
.h22{height:23.141700px;}
.h28{height:28.285733px;}
.h8{height:32.130000px;}
.h9{height:34.188000px;}
.h2b{height:35.865450px;}
.h12{height:37.500000px;}
.h31{height:38.243700px;}
.h2d{height:38.249700px;}
.h1b{height:39.999023px;}
.h13{height:41.250000px;}
.h2e{height:42.356018px;}
.h14{height:43.681641px;}
.hb{height:44.443359px;}
.h23{height:44.831700px;}
.h20{height:45.621856px;}
.h3{height:48.195000px;}
.h30{height:48.729332px;}
.h7{height:48.840000px;}
.h1c{height:48.887695px;}
.h21{height:49.090950px;}
.h2a{height:50.427034px;}
.h6{height:51.282000px;}
.h24{height:53.798400px;}
.h2f{height:56.631523px;}
.hc{height:58.500000px;}
.h2{height:58.608000px;}
.h32{height:59.939700px;}
.h29{height:60.512272px;}
.h26{height:61.893450px;}
.h27{height:61.899450px;}
.h17{height:62.220703px;}
.h1f{height:64.557900px;}
.h2c{height:71.930400px;}
.h25{height:72.614557px;}
.h19{height:73.441418px;}
.hd{height:78.626953px;}
.h11{height:79.998047px;}
.h5{height:83.028000px;}
.h18{height:86.774998px;}
.h1e{height:88.022250px;}
.h15{height:98.475002px;}
.h4{height:119.055004px;}
.h10{height:131.399998px;}
.h1a{height:168.884766px;}
.he{height:201.375000px;}
.hf{height:218.408203px;}
.h16{height:324.974991px;}
.h1d{height:1188.000000px;}
.h0{height:1262.833500px;}
.ha{height:1262.850000px;}
.h1{height:1263.000000px;}
.w5{width:248.700005px;}
.w7{width:287.549995px;}
.w6{width:542.250000px;}
.w2{width:637.794021px;}
.w4{width:790.949982px;}
.w0{width:892.912500px;}
.w8{width:892.949982px;}
.w3{width:892.950000px;}
.w1{width:893.250000px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:51.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xf{left:108.000000px;}
.x2c{left:116.967000px;}
.x18{left:122.238000px;}
.xe{left:128.196000px;}
.x8{left:132.586500px;}
.x10{left:134.338500px;}
.x33{left:142.420500px;}
.x1e{left:148.633500px;}
.xd{left:151.897500px;}
.xa{left:161.893500px;}
.x16{left:163.143000px;}
.xc{left:176.443500px;}
.x11{left:182.491500px;}
.x34{left:192.579000px;}
.x2d{left:197.050500px;}
.x22{left:199.946392px;}
.x4{left:203.484001px;}
.x23{left:231.936372px;}
.x2f{left:259.171500px;}
.x1c{left:262.176000px;}
.x2b{left:273.201651px;}
.x9{left:274.914000px;}
.x31{left:287.598000px;}
.x20{left:289.582500px;}
.x15{left:299.338500px;}
.x1d{left:302.809500px;}
.x24{left:305.192812px;}
.x13{left:306.541500px;}
.x14{left:312.394500px;}
.x2a{left:339.545903px;}
.x12{left:351.676500px;}
.x25{left:371.537064px;}
.x30{left:390.532500px;}
.xb{left:405.597000px;}
.x26{left:437.881315px;}
.x19{left:450.220500px;}
.x3{left:454.959000px;}
.x17{left:458.409000px;}
.x27{left:519.580474px;}
.x1f{left:544.275000px;}
.x7{left:554.025009px;}
.x6{left:593.250000px;}
.x32{left:596.142000px;}
.x21{left:607.345500px;}
.x1a{left:622.342500px;}
.x28{left:633.229460px;}
.x29{left:759.745059px;}
.x2e{left:772.741500px;}
.x1b{left:784.050000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v5{vertical-align:-9.568000pt;}
.v7{vertical-align:-7.528783pt;}
.v9{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.429333pt;}
.v4{vertical-align:16.117333pt;}
.v8{vertical-align:18.215204pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000816pt;}
.ls68{letter-spacing:0.000990pt;}
.ls2e{letter-spacing:0.001037pt;}
.ls1d{letter-spacing:0.001067pt;}
.ls54{letter-spacing:0.001365pt;}
.ls3e{letter-spacing:0.001931pt;}
.ls5d{letter-spacing:0.002079pt;}
.ls27{letter-spacing:0.002453pt;}
.ls4c{letter-spacing:0.002592pt;}
.ls35{letter-spacing:0.002906pt;}
.ls4a{letter-spacing:0.414816pt;}
.ls3a{letter-spacing:1.362245pt;}
.ls41{letter-spacing:1.366444pt;}
.ls1c{letter-spacing:1.477137pt;}
.ls23{letter-spacing:1.730253pt;}
.ls9{letter-spacing:1.735586pt;}
.ls4f{letter-spacing:2.100062pt;}
.ls3f{letter-spacing:2.530001pt;}
.ls3c{letter-spacing:2.534200pt;}
.ls3{letter-spacing:2.653258pt;}
.ls30{letter-spacing:2.655320pt;}
.ls7{letter-spacing:2.658245pt;}
.ls2{letter-spacing:2.660351pt;}
.ls2d{letter-spacing:2.660654pt;}
.ls36{letter-spacing:2.663295pt;}
.ls38{letter-spacing:2.668629pt;}
.ls28{letter-spacing:3.213475pt;}
.lsb{letter-spacing:3.218808pt;}
.ls1{letter-spacing:4.032000pt;}
.ls4e{letter-spacing:6.273818pt;}
.ls39{letter-spacing:6.827861pt;}
.ls45{letter-spacing:6.832060pt;}
.ls34{letter-spacing:7.376058pt;}
.ls1b{letter-spacing:7.381391pt;}
.ls4d{letter-spacing:7.525458pt;}
.ls8{letter-spacing:8.672392pt;}
.ls6a{letter-spacing:8.679467pt;}
.ls57{letter-spacing:10.034716pt;}
.ls56{letter-spacing:10.038419pt;}
.ls53{letter-spacing:10.248049pt;}
.ls47{letter-spacing:11.153540pt;}
.ls46{letter-spacing:11.154440pt;}
.ls3b{letter-spacing:11.743917pt;}
.ls60{letter-spacing:11.804746pt;}
.ls5e{letter-spacing:11.805573pt;}
.ls62{letter-spacing:11.808479pt;}
.ls5f{letter-spacing:11.810079pt;}
.ls52{letter-spacing:12.427874pt;}
.ls37{letter-spacing:12.626079pt;}
.ls61{letter-spacing:12.626906pt;}
.ls65{letter-spacing:14.164510pt;}
.ls2b{letter-spacing:14.164906pt;}
.ls63{letter-spacing:14.166643pt;}
.ls64{letter-spacing:14.167786pt;}
.ls13{letter-spacing:14.168753pt;}
.ls2c{letter-spacing:14.170240pt;}
.ls2a{letter-spacing:14.577608pt;}
.ls24{letter-spacing:14.916510pt;}
.lsd{letter-spacing:14.963420pt;}
.lse{letter-spacing:14.966643pt;}
.ls51{letter-spacing:15.364654pt;}
.ls59{letter-spacing:16.074470pt;}
.ls25{letter-spacing:16.315733pt;}
.ls11{letter-spacing:16.337310pt;}
.ls10{letter-spacing:16.344753pt;}
.ls2f{letter-spacing:16.825987pt;}
.ls5b{letter-spacing:16.911651pt;}
.ls1e{letter-spacing:17.229258pt;}
.ls50{letter-spacing:17.553207pt;}
.ls29{letter-spacing:17.706240pt;}
.ls32{letter-spacing:17.710086pt;}
.ls58{letter-spacing:17.711362pt;}
.ls66{letter-spacing:17.789338pt;}
.ls67{letter-spacing:17.798400pt;}
.ls22{letter-spacing:17.980621pt;}
.ls55{letter-spacing:18.026029pt;}
.ls5a{letter-spacing:18.383804pt;}
.ls17{letter-spacing:18.891733pt;}
.ls20{letter-spacing:19.255842pt;}
.ls18{letter-spacing:20.582400pt;}
.ls33{letter-spacing:20.751320pt;}
.ls12{letter-spacing:20.808753pt;}
.ls69{letter-spacing:20.811657pt;}
.ls6{letter-spacing:20.849869pt;}
.ls15{letter-spacing:20.925258pt;}
.ls14{letter-spacing:21.168674pt;}
.lsc{letter-spacing:21.976753pt;}
.ls16{letter-spacing:22.754592pt;}
.ls26{letter-spacing:23.382400pt;}
.ls4{letter-spacing:23.789258pt;}
.lsf{letter-spacing:24.003420pt;}
.ls1a{letter-spacing:24.018592pt;}
.ls5{letter-spacing:24.356727pt;}
.ls19{letter-spacing:25.254400pt;}
.ls1f{letter-spacing:26.059733pt;}
.ls21{letter-spacing:26.555733pt;}
.ls5c{letter-spacing:29.535651pt;}
.ls31{letter-spacing:30.020654pt;}
.lsa{letter-spacing:31.682592pt;}
.ls40{letter-spacing:63.154691pt;}
.ls3d{letter-spacing:87.727161pt;}
.ls42{letter-spacing:117.749915pt;}
.ls43{letter-spacing:231.349301pt;}
.ls4b{letter-spacing:271.311166pt;}
.ls44{letter-spacing:277.097260pt;}
.ls49{letter-spacing:287.558901pt;}
.ws4c{word-spacing:-40.590294pt;}
.wsc5{word-spacing:-29.521250pt;}
.ws78{word-spacing:-23.910333pt;}
.wscb{word-spacing:-22.894211pt;}
.wsb7{word-spacing:-19.925333pt;}
.ws20{word-spacing:-17.343010pt;}
.wsf3{word-spacing:-16.981626pt;}
.wsea{word-spacing:-16.784878pt;}
.wsec{word-spacing:-16.779545pt;}
.wsf0{word-spacing:-16.471540pt;}
.wsfa{word-spacing:-15.940267pt;}
.ws1{word-spacing:-14.826667pt;}
.ws2e{word-spacing:-14.760588pt;}
.wsdd{word-spacing:-13.654325pt;}
.wsc4{word-spacing:-12.693993pt;}
.wsad{word-spacing:-12.543875pt;}
.wsc3{word-spacing:-9.147327pt;}
.ws130{word-spacing:-6.503629pt;}
.ws10d{word-spacing:-6.057301pt;}
.ws12f{word-spacing:-5.674735pt;}
.wsd1{word-spacing:-4.909602pt;}
.ws50{word-spacing:-4.335753pt;}
.ws121{word-spacing:-3.443098pt;}
.ws51{word-spacing:-3.188053pt;}
.wsff{word-spacing:-2.964869pt;}
.ws86{word-spacing:-2.805487pt;}
.wsc8{word-spacing:-2.752660pt;}
.ws3e{word-spacing:-2.614204pt;}
.ws30{word-spacing:-2.550443pt;}
.wsb8{word-spacing:-2.359159pt;}
.wsac{word-spacing:-2.167876pt;}
.ws96{word-spacing:-2.040354pt;}
.ws15{word-spacing:-1.721549pt;}
.ws2a{word-spacing:-1.657788pt;}
.ws11e{word-spacing:-1.466505pt;}
.wsf6{word-spacing:-1.275435pt;}
.wsf7{word-spacing:-1.275221pt;}
.wsf8{word-spacing:-1.270108pt;}
.ws9e{word-spacing:-1.211460pt;}
.ws4f{word-spacing:-1.147699pt;}
.ws11f{word-spacing:-1.083938pt;}
.wsab{word-spacing:-1.020177pt;}
.ws7b{word-spacing:-0.956416pt;}
.ws129{word-spacing:-0.701372pt;}
.ws22{word-spacing:-0.637611pt;}
.ws11b{word-spacing:-0.510089pt;}
.ws7{word-spacing:-0.395636pt;}
.ws4b{word-spacing:-0.382566pt;}
.ws104{word-spacing:-0.255044pt;}
.ws27{word-spacing:-0.063761pt;}
.wsaa{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws100{word-spacing:0.010627pt;}
.ws118{word-spacing:0.119467pt;}
.ws8a{word-spacing:0.191283pt;}
.wsd6{word-spacing:0.276297pt;}
.ws95{word-spacing:0.318805pt;}
.wsae{word-spacing:0.382566pt;}
.ws103{word-spacing:0.429868pt;}
.ws12{word-spacing:0.435698pt;}
.ws102{word-spacing:0.446327pt;}
.wsd{word-spacing:0.477092pt;}
.ws43{word-spacing:0.510089pt;}
.wsa3{word-spacing:0.573850pt;}
.ws128{word-spacing:0.637611pt;}
.ws75{word-spacing:0.648234pt;}
.ws90{word-spacing:0.650361pt;}
.ws7c{word-spacing:0.701372pt;}
.wscc{word-spacing:0.758971pt;}
.ws5c{word-spacing:0.765133pt;}
.wsa{word-spacing:0.826183pt;}
.wsd0{word-spacing:0.828894pt;}
.ws61{word-spacing:0.860774pt;}
.ws55{word-spacing:0.892655pt;}
.wsda{word-spacing:0.924535pt;}
.ws116{word-spacing:1.020171pt;}
.ws10e{word-spacing:1.020177pt;}
.ws3c{word-spacing:1.066678pt;}
.ws3d{word-spacing:1.083938pt;}
.wsb6{word-spacing:1.211460pt;}
.ws6c{word-spacing:1.275221pt;}
.ws42{word-spacing:1.402743pt;}
.ws5a{word-spacing:1.530266pt;}
.ws59{word-spacing:1.539005pt;}
.ws4{word-spacing:1.640729pt;}
.wsd3{word-spacing:1.657788pt;}
.ws10c{word-spacing:1.682547pt;}
.ws65{word-spacing:1.721549pt;}
.wsbb{word-spacing:1.785310pt;}
.ws54{word-spacing:1.849071pt;}
.ws91{word-spacing:1.912832pt;}
.ws115{word-spacing:1.923447pt;}
.ws122{word-spacing:2.040354pt;}
.ws77{word-spacing:2.104109pt;}
.ws1a{word-spacing:2.104115pt;}
.wsfd{word-spacing:2.135982pt;}
.ws7f{word-spacing:2.167876pt;}
.ws125{word-spacing:2.231637pt;}
.ws69{word-spacing:2.295398pt;}
.ws8e{word-spacing:2.348517pt;}
.ws5e{word-spacing:2.401651pt;}
.ws64{word-spacing:2.422921pt;}
.wsf2{word-spacing:2.502396pt;}
.ws72{word-spacing:2.503674pt;}
.wsf4{word-spacing:2.507730pt;}
.ws79{word-spacing:2.614204pt;}
.wseb{word-spacing:2.626412pt;}
.wse9{word-spacing:2.631195pt;}
.ws119{word-spacing:2.677965pt;}
.ws117{word-spacing:2.701672pt;}
.ws58{word-spacing:2.741726pt;}
.wse7{word-spacing:2.760985pt;}
.wsf1{word-spacing:2.801224pt;}
.wsee{word-spacing:2.803744pt;}
.ws93{word-spacing:2.805487pt;}
.wsef{word-spacing:2.822396pt;}
.ws76{word-spacing:2.826722pt;}
.wsed{word-spacing:2.843731pt;}
.wsba{word-spacing:2.869240pt;}
.wsb2{word-spacing:2.869248pt;}
.ws13{word-spacing:2.932990pt;}
.ws94{word-spacing:2.933009pt;}
.wsf{word-spacing:2.978912pt;}
.ws2d{word-spacing:2.986124pt;}
.ws9f{word-spacing:2.996770pt;}
.ws97{word-spacing:3.060531pt;}
.ws62{word-spacing:3.211640pt;}
.ws5d{word-spacing:3.235005pt;}
.ws21{word-spacing:3.251814pt;}
.ws11{word-spacing:3.269821pt;}
.ws108{word-spacing:3.304927pt;}
.ws8{word-spacing:3.328003pt;}
.ws7a{word-spacing:3.379337pt;}
.ws17{word-spacing:3.443098pt;}
.wsa9{word-spacing:3.451582pt;}
.ws6f{word-spacing:3.506859pt;}
.ws60{word-spacing:3.570596pt;}
.ws113{word-spacing:3.623730pt;}
.ws1c{word-spacing:3.698142pt;}
.ws112{word-spacing:3.729998pt;}
.ws1e{word-spacing:3.761903pt;}
.ws52{word-spacing:3.825664pt;}
.wsb0{word-spacing:3.889425pt;}
.ws9{word-spacing:3.909822pt;}
.ws123{word-spacing:3.953186pt;}
.ws36{word-spacing:3.985067pt;}
.ws6e{word-spacing:4.016947pt;}
.wsf5{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.wsbf{word-spacing:4.144469pt;}
.wsa0{word-spacing:4.208230pt;}
.ws6b{word-spacing:4.271991pt;}
.ws66{word-spacing:4.399514pt;}
.ws2c{word-spacing:4.420738pt;}
.ws24{word-spacing:4.463275pt;}
.ws114{word-spacing:4.473872pt;}
.wsbe{word-spacing:4.527036pt;}
.ws4a{word-spacing:4.590797pt;}
.ws49{word-spacing:4.654558pt;}
.ws68{word-spacing:4.782067pt;}
.ws11c{word-spacing:4.845841pt;}
.ws127{word-spacing:4.909602pt;}
.ws53{word-spacing:4.973363pt;}
.ws111{word-spacing:5.005211pt;}
.ws8c{word-spacing:5.037124pt;}
.ws2b{word-spacing:5.100885pt;}
.ws8f{word-spacing:5.164612pt;}
.ws57{word-spacing:5.164646pt;}
.wsa4{word-spacing:5.228407pt;}
.wsb4{word-spacing:5.270880pt;}
.wsc0{word-spacing:5.292169pt;}
.ws10{word-spacing:5.306187pt;}
.wsd7{word-spacing:5.324014pt;}
.ws80{word-spacing:5.334640pt;}
.wscd{word-spacing:5.339789pt;}
.wsa5{word-spacing:5.355930pt;}
.wsc2{word-spacing:5.377148pt;}
.wsb9{word-spacing:5.387774pt;}
.ws82{word-spacing:5.419691pt;}
.ws8d{word-spacing:5.440907pt;}
.ws44{word-spacing:5.536549pt;}
.ws41{word-spacing:5.547213pt;}
.wse{word-spacing:5.597096pt;}
.ws56{word-spacing:5.610974pt;}
.ws2f{word-spacing:5.738467pt;}
.ws2{word-spacing:5.774479pt;}
.ws23{word-spacing:5.802257pt;}
.ws89{word-spacing:5.866018pt;}
.wsd4{word-spacing:5.929779pt;}
.wsbd{word-spacing:6.026596pt;}
.ws83{word-spacing:6.057301pt;}
.ws26{word-spacing:6.121062pt;}
.ws71{word-spacing:6.159293pt;}
.ws9b{word-spacing:6.184823pt;}
.wsf9{word-spacing:6.207975pt;}
.ws11a{word-spacing:6.248585pt;}
.ws6{word-spacing:6.295279pt;}
.ws10b{word-spacing:6.312346pt;}
.ws73{word-spacing:6.333557pt;}
.ws1f{word-spacing:6.376107pt;}
.ws5f{word-spacing:6.439825pt;}
.wsb1{word-spacing:6.439868pt;}
.ws99{word-spacing:6.503629pt;}
.ws9a{word-spacing:6.567390pt;}
.ws4e{word-spacing:6.694912pt;}
.wsc7{word-spacing:6.735383pt;}
.ws98{word-spacing:6.758673pt;}
.ws67{word-spacing:6.822434pt;}
.ws109{word-spacing:6.864896pt;}
.ws88{word-spacing:6.886195pt;}
.wsa8{word-spacing:6.949956pt;}
.ws10a{word-spacing:6.971164pt;}
.ws28{word-spacing:7.013717pt;}
.ws7e{word-spacing:7.077478pt;}
.ws11d{word-spacing:7.141239pt;}
.ws34{word-spacing:7.205001pt;}
.ws32{word-spacing:7.268762pt;}
.wsc{word-spacing:7.284370pt;}
.ws46{word-spacing:7.298791pt;}
.ws48{word-spacing:7.332523pt;}
.ws4d{word-spacing:7.396284pt;}
.ws16{word-spacing:7.460045pt;}
.ws81{word-spacing:7.523806pt;}
.ws1d{word-spacing:7.587567pt;}
.wsb{word-spacing:7.633461pt;}
.ws33{word-spacing:7.651328pt;}
.ws5b{word-spacing:7.778850pt;}
.ws6d{word-spacing:7.906372pt;}
.wsb5{word-spacing:7.970133pt;}
.ws85{word-spacing:8.033894pt;}
.wsa6{word-spacing:8.097655pt;}
.wsa7{word-spacing:8.161417pt;}
.ws63{word-spacing:8.225178pt;}
.ws105{word-spacing:8.255975pt;}
.wsa1{word-spacing:8.352700pt;}
.ws38{word-spacing:8.416461pt;}
.ws107{word-spacing:8.480222pt;}
.ws29{word-spacing:8.607744pt;}
.ws8b{word-spacing:8.671505pt;}
.ws45{word-spacing:8.735266pt;}
.wsc9{word-spacing:8.862788pt;}
.wsd5{word-spacing:8.990310pt;}
.ws19{word-spacing:9.054071pt;}
.ws6a{word-spacing:9.117833pt;}
.ws74{word-spacing:9.149652pt;}
.ws3f{word-spacing:9.181594pt;}
.ws124{word-spacing:9.245355pt;}
.ws39{word-spacing:9.309116pt;}
.ws120{word-spacing:9.372877pt;}
.ws7d{word-spacing:9.564160pt;}
.ws9c{word-spacing:9.755443pt;}
.ws47{word-spacing:9.882965pt;}
.wsca{word-spacing:10.010487pt;}
.ws110{word-spacing:10.159196pt;}
.ws92{word-spacing:10.265532pt;}
.wsd2{word-spacing:10.367975pt;}
.ws106{word-spacing:10.393054pt;}
.ws35{word-spacing:10.456815pt;}
.wsfb{word-spacing:10.584267pt;}
.ws25{word-spacing:10.648098pt;}
.wsbc{word-spacing:10.711859pt;}
.wsa2{word-spacing:10.775620pt;}
.wsc1{word-spacing:10.849936pt;}
.wsd8{word-spacing:10.903070pt;}
.wsd9{word-spacing:10.956204pt;}
.wscf{word-spacing:11.094426pt;}
.ws12b{word-spacing:11.540753pt;}
.ws3b{word-spacing:11.604514pt;}
.ws3a{word-spacing:11.630839pt;}
.ws12d{word-spacing:11.732036pt;}
.ws37{word-spacing:11.795797pt;}
.ws18{word-spacing:11.859558pt;}
.ws10f{word-spacing:11.923319pt;}
.wsb3{word-spacing:12.242125pt;}
.ws1b{word-spacing:12.305886pt;}
.ws5{word-spacing:12.695284pt;}
.wsfc{word-spacing:12.743455pt;}
.ws12a{word-spacing:12.755413pt;}
.wsfe{word-spacing:12.762755pt;}
.wsce{word-spacing:12.810642pt;}
.ws126{word-spacing:12.815974pt;}
.ws40{word-spacing:13.134780pt;}
.ws87{word-spacing:13.389824pt;}
.wsaf{word-spacing:13.517346pt;}
.ws84{word-spacing:13.708629pt;}
.ws12c{word-spacing:13.772390pt;}
.ws12e{word-spacing:14.920090pt;}
.ws9d{word-spacing:19.510787pt;}
.wsdb{word-spacing:36.545400pt;}
.wse2{word-spacing:42.409628pt;}
.wse0{word-spacing:61.093066pt;}
.ws31{word-spacing:62.166867pt;}
.wse1{word-spacing:72.036606pt;}
.wsdf{word-spacing:72.086806pt;}
.ws14{word-spacing:74.600067pt;}
.wsde{word-spacing:82.764099pt;}
.wse3{word-spacing:96.634471pt;}
.wse8{word-spacing:110.238597pt;}
.wse5{word-spacing:220.379479pt;}
.wsdc{word-spacing:295.626183pt;}
.wse4{word-spacing:302.872771pt;}
.wsc6{word-spacing:441.540673pt;}
.wse6{word-spacing:480.842621pt;}
.ws101{word-spacing:531.935340pt;}
.ws70{word-spacing:641.946419pt;}
._6{margin-left:-63.475200pt;}
._23{margin-left:-53.406121pt;}
._1d{margin-left:-44.505225pt;}
._54{margin-left:-41.684267pt;}
._13{margin-left:-39.021773pt;}
._14{margin-left:-38.085593pt;}
._8{margin-left:-36.363667pt;}
._2b{margin-left:-35.020883pt;}
._1f{margin-left:-33.832300pt;}
._11{margin-left:-32.699441pt;}
._29{margin-left:-28.637085pt;}
._2a{margin-left:-25.733781pt;}
._55{margin-left:-23.409910pt;}
._52{margin-left:-13.851849pt;}
._5{margin-left:-12.893400pt;}
._22{margin-left:-11.553473pt;}
._1c{margin-left:-9.627921pt;}
._12{margin-left:-8.619042pt;}
._7{margin-left:-7.272733pt;}
._a{margin-left:-5.556369pt;}
._3{margin-left:-4.608000pt;}
._1a{margin-left:-3.626667pt;}
._1{margin-left:-2.666667pt;}
._2{margin-left:-0.960000pt;}
._c{width:0.960000pt;}
._4{width:2.666667pt;}
._35{width:3.614380pt;}
._57{width:4.585874pt;}
._53{width:6.634735pt;}
._58{width:7.613486pt;}
._e{width:8.581825pt;}
._30{width:9.534395pt;}
._b{width:10.530918pt;}
._10{width:11.529701pt;}
._1e{width:13.326451pt;}
._f{width:14.603649pt;}
._17{width:15.869179pt;}
._9{width:16.901831pt;}
._18{width:18.666952pt;}
._2f{width:19.895603pt;}
._d{width:20.974564pt;}
._16{width:21.993984pt;}
._2e{width:23.006447pt;}
._15{width:24.026624pt;}
._20{width:24.922863pt;}
._31{width:26.207573pt;}
._2d{width:27.428557pt;}
._56{width:29.131333pt;}
._2c{width:30.147686pt;}
._34{width:60.986600pt;}
._33{width:64.958445pt;}
._1b{width:71.731200pt;}
._37{width:74.747391pt;}
._32{width:83.482283pt;}
._21{width:86.077200pt;}
._4b{width:96.584272pt;}
._47{width:99.345257pt;}
._19{width:103.292400pt;}
._40{width:104.817027pt;}
._3b{width:110.288797pt;}
._28{width:121.772339pt;}
._36{width:123.943122pt;}
._38{width:129.364692pt;}
._3c{width:140.157633pt;}
._4a{width:145.729803pt;}
._4e{width:148.490788pt;}
._4c{width:151.201573pt;}
._4f{width:178.610623pt;}
._42{width:202.003695pt;}
._39{width:218.368805pt;}
._3d{width:253.910211pt;}
._3a{width:264.150955pt;}
._48{width:288.698621pt;}
._50{width:292.112202pt;}
._3e{width:299.642161pt;}
._4d{width:311.137898pt;}
._51{width:337.844152pt;}
._26{width:429.547742pt;}
._25{width:469.037705pt;}
._27{width:530.173312pt;}
._41{width:576.541579pt;}
._24{width:580.377267pt;}
._43{width:612.035052pt;}
._49{width:668.158345pt;}
._44{width:692.753943pt;}
._46{width:700.936498pt;}
._45{width:703.749950pt;}
._3f{width:706.659267pt;}
._0{width:753.173333pt;}
.fs15{font-size:31.880533pt;}
.fs14{font-size:33.466344pt;}
.fsf{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:42.507200pt;}
.fs9{font-size:48.000000pt;}
.fs13{font-size:50.199725pt;}
.fsd{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.181867pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fsc{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs11{font-size:91.815467pt;}
.fs5{font-size:96.000000pt;}
.fsb{font-size:110.200000pt;}
.fs8{font-size:202.666667pt;}
.fs6{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:10.358668pt;}
.y33{bottom:10.358669pt;}
.y3e{bottom:15.875999pt;}
.y2c{bottom:16.158667pt;}
.y3c{bottom:17.757258pt;}
.y2e{bottom:19.492001pt;}
.y25{bottom:27.751999pt;}
.y32{bottom:30.358668pt;}
.y31{bottom:50.358668pt;}
.y35{bottom:50.358669pt;}
.y5{bottom:59.133337pt;}
.y3a{bottom:59.958665pt;}
.y2a{bottom:63.218664pt;}
.y30{bottom:70.358669pt;}
.y4{bottom:86.333337pt;}
.y29{bottom:92.551997pt;}
.y68{bottom:96.000000pt;}
.y27{bottom:116.468002pt;}
.y21{bottom:123.790666pt;}
.ya2{bottom:135.850667pt;}
.y67{bottom:135.865333pt;}
.y101{bottom:139.892000pt;}
.y1d0{bottom:140.794667pt;}
.y147{bottom:155.690667pt;}
.ya1{bottom:156.610667pt;}
.y66{bottom:156.625333pt;}
.yc2{bottom:156.764000pt;}
.y154{bottom:158.672000pt;}
.yce{bottom:159.704000pt;}
.y121{bottom:159.753333pt;}
.y100{bottom:163.794667pt;}
.y1e5{bottom:164.304000pt;}
.y1aa{bottom:164.613333pt;}
.y1cf{bottom:164.697333pt;}
.y146{bottom:166.810667pt;}
.y1be{bottom:167.006667pt;}
.y160{bottom:167.728000pt;}
.yc1{bottom:172.705333pt;}
.y18{bottom:175.052000pt;}
.y1a3{bottom:175.497333pt;}
.ya0{bottom:179.974667pt;}
.y1a9{bottom:180.553333pt;}
.y153{bottom:182.574667pt;}
.y1bd{bottom:182.946667pt;}
.ycd{bottom:183.608000pt;}
.y120{bottom:183.656000pt;}
.y15f{bottom:183.668000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y145{bottom:187.572000pt;}
.yff{bottom:187.697333pt;}
.y1e4{bottom:188.206667pt;}
.y1ce{bottom:188.601333pt;}
.y134{bottom:188.716000pt;}
.y1a2{bottom:191.437333pt;}
.yc0{bottom:193.465333pt;}
.y1a1{bottom:196.258667pt;}
.y1a8{bottom:196.493333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1bc{bottom:198.888000pt;}
.y9f{bottom:203.877333pt;}
.y15e{bottom:204.429333pt;}
.ybf{bottom:204.585333pt;}
.y116{bottom:204.884000pt;}
.y152{bottom:206.477333pt;}
.ycc{bottom:207.510667pt;}
.y11f{bottom:207.560000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y133{bottom:209.477333pt;}
.y1fb{bottom:210.145333pt;}
.y144{bottom:211.354667pt;}
.y180{bottom:211.525333pt;}
.yfe{bottom:211.601333pt;}
.y1e3{bottom:212.109333pt;}
.y1cd{bottom:212.504000pt;}
.y1bb{bottom:214.828000pt;}
.y1a7{bottom:217.253333pt;}
.yeb{bottom:217.845333pt;}
.y115{bottom:220.824000pt;}
.y1a0{bottom:220.926667pt;}
.y23{bottom:221.892035pt;}
.ybe{bottom:225.346667pt;}
.y17f{bottom:227.465333pt;}
.y9e{bottom:227.781333pt;}
.y15d{bottom:229.097333pt;}
.y151{bottom:230.380000pt;}
.y1ba{bottom:230.768000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ycb{bottom:231.413333pt;}
.y11e{bottom:231.462667pt;}
.yea{bottom:233.785333pt;}
.y1fa{bottom:234.048000pt;}
.y132{bottom:234.145333pt;}
.y143{bottom:235.257333pt;}
.y1e2{bottom:236.012000pt;}
.y1cc{bottom:236.406667pt;}
.y87{bottom:238.334667pt;}
.y39{bottom:239.066681pt;}
.y37{bottom:239.066691pt;}
.y114{bottom:241.585333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y17e{bottom:243.405333pt;}
.y19f{bottom:244.829333pt;}
.y1b9{bottom:246.708000pt;}
.y17d{bottom:248.225333pt;}
.ybd{bottom:250.014667pt;}
.y15c{bottom:253.001333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yfd{bottom:253.829333pt;}
.y150{bottom:254.284000pt;}
.ye9{bottom:254.546667pt;}
.yca{bottom:255.316000pt;}
.y11d{bottom:255.365333pt;}
.y1f9{bottom:257.950667pt;}
.y131{bottom:258.049333pt;}
.y86{bottom:259.096000pt;}
.y142{bottom:259.161333pt;}
.y17c{bottom:259.345333pt;}
.y1a6{bottom:259.362667pt;}
.y1e1{bottom:259.916000pt;}
.y1cb{bottom:260.309333pt;}
.y9d{bottom:261.978667pt;}
.y1b8{bottom:262.648000pt;}
.ye8{bottom:265.665333pt;}
.y38{bottom:266.155991pt;}
.y19e{bottom:268.733333pt;}
.ybc{bottom:273.917333pt;}
.y85{bottom:275.036000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y15b{bottom:276.904000pt;}
.y14f{bottom:278.186667pt;}
.y1b7{bottom:278.589333pt;}
.yc9{bottom:279.220000pt;}
.y11c{bottom:279.268000pt;}
.y17b{bottom:280.106667pt;}
.ye7{bottom:281.606667pt;}
.y130{bottom:281.952000pt;}
.y141{bottom:283.064000pt;}
.y113{bottom:283.694667pt;}
.y1e0{bottom:283.818667pt;}
.y1ca{bottom:284.212000pt;}
.y84{bottom:286.156000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y17a{bottom:291.226667pt;}
.y1f8{bottom:296.300000pt;}
.ybb{bottom:297.821333pt;}
.y1b6{bottom:299.349333pt;}
.y15a{bottom:300.806667pt;}
.y14e{bottom:302.089333pt;}
.ye6{bottom:302.366667pt;}
.y19d{bottom:302.930667pt;}
.yc8{bottom:303.122667pt;}
.y11b{bottom:303.172000pt;}
.y12f{bottom:305.854667pt;}
.y83{bottom:306.917333pt;}
.y140{bottom:306.966667pt;}
.y1df{bottom:307.721333pt;}
.y9c{bottom:307.969333pt;}
.y1c9{bottom:308.116000pt;}
.yf{bottom:309.452000pt;}
.y179{bottom:311.986667pt;}
.y34{bottom:316.200012pt;}
.y1f7{bottom:320.202667pt;}
.yba{bottom:321.724000pt;}
.y1b5{bottom:322.861333pt;}
.y14d{bottom:325.992000pt;}
.y65{bottom:329.352000pt;}
.y12e{bottom:329.757333pt;}
.y82{bottom:330.700000pt;}
.y13f{bottom:330.869333pt;}
.y1de{bottom:331.624000pt;}
.y9b{bottom:331.873333pt;}
.y1c8{bottom:332.018667pt;}
.y159{bottom:335.004000pt;}
.y178{bottom:335.770667pt;}
.y11a{bottom:343.769333pt;}
.ye{bottom:343.809333pt;}
.yb9{bottom:345.626667pt;}
.y19c{bottom:347.504000pt;}
.yc7{bottom:348.457333pt;}
.y64{bottom:351.772000pt;}
.y12d{bottom:353.661333pt;}
.y81{bottom:354.602667pt;}
.y13e{bottom:354.773333pt;}
.y1dd{bottom:355.528000pt;}
.y9a{bottom:355.776000pt;}
.y1c7{bottom:355.921333pt;}
.ye5{bottom:356.997333pt;}
.y1f6{bottom:358.550667pt;}
.y177{bottom:359.673333pt;}
.y19b{bottom:360.124000pt;}
.y14c{bottom:360.190667pt;}
.yd{bottom:362.706666pt;}
.yb8{bottom:369.529333pt;}
.ye4{bottom:369.617333pt;}
.y19a{bottom:372.742667pt;}
.y63{bottom:374.190667pt;}
.y12c{bottom:377.564000pt;}
.y80{bottom:378.506667pt;}
.y13d{bottom:378.676000pt;}
.y1dc{bottom:379.430667pt;}
.y99{bottom:379.678667pt;}
.y1c6{bottom:379.824000pt;}
.y1f5{bottom:382.454667pt;}
.y176{bottom:383.576000pt;}
.y14b{bottom:389.862667pt;}
.ye3{bottom:392.593333pt;}
.y199{bottom:393.055548pt;}
.yb7{bottom:393.433333pt;}
.y62{bottom:396.610667pt;}
.y12b{bottom:401.466667pt;}
.y7f{bottom:402.409333pt;}
.y13c{bottom:402.578667pt;}
.y1db{bottom:403.333333pt;}
.y98{bottom:403.581333pt;}
.y1c5{bottom:403.728000pt;}
.y2f{bottom:403.733348pt;}
.y158{bottom:404.422667pt;}
.y175{bottom:407.478667pt;}
.y198{bottom:408.220188pt;}
.yb6{bottom:417.336000pt;}
.y61{bottom:419.029333pt;}
.ye2{bottom:419.840000pt;}
.y1f4{bottom:420.802667pt;}
.y12a{bottom:425.369333pt;}
.y7e{bottom:426.312000pt;}
.y13b{bottom:426.481333pt;}
.y1da{bottom:427.236000pt;}
.y97{bottom:427.485333pt;}
.y1c4{bottom:427.630667pt;}
.y174{bottom:431.382667pt;}
.ye1{bottom:439.101333pt;}
.yb5{bottom:441.238667pt;}
.y60{bottom:441.449333pt;}
.y1f3{bottom:444.706667pt;}
.y197{bottom:444.836401pt;}
.yc{bottom:446.990669pt;}
.y129{bottom:449.272000pt;}
.y7d{bottom:450.214667pt;}
.y13a{bottom:450.384000pt;}
.y1d9{bottom:451.140000pt;}
.y96{bottom:451.388000pt;}
.y1c3{bottom:451.533333pt;}
.y173{bottom:455.285333pt;}
.ye0{bottom:458.362667pt;}
.y196{bottom:460.001042pt;}
.y14a{bottom:460.166667pt;}
.yb{bottom:462.990669pt;}
.y5f{bottom:463.868000pt;}
.yb4{bottom:465.141333pt;}
.y128{bottom:473.176000pt;}
.y7c{bottom:474.117333pt;}
.y139{bottom:474.288000pt;}
.y1d8{bottom:475.042667pt;}
.y95{bottom:475.290667pt;}
.y1c2{bottom:475.436000pt;}
.ydf{bottom:477.624000pt;}
.ya{bottom:478.990666pt;}
.y172{bottom:479.188000pt;}
.y1f2{bottom:483.054667pt;}
.y5e{bottom:486.288000pt;}
.yb3{bottom:489.045333pt;}
.y195{bottom:490.330322pt;}
.y2d{bottom:491.266683pt;}
.y9{bottom:494.990666pt;}
.yde{bottom:496.885333pt;}
.y127{bottom:497.078667pt;}
.y7b{bottom:498.021333pt;}
.y1d7{bottom:498.945333pt;}
.y94{bottom:499.193333pt;}
.y1c1{bottom:499.340000pt;}
.y171{bottom:503.090667pt;}
.y194{bottom:505.494963pt;}
.y1f1{bottom:506.957333pt;}
.y5d{bottom:508.706667pt;}
.yb2{bottom:512.948000pt;}
.y138{bottom:515.630667pt;}
.yfc{bottom:518.332000pt;}
.y126{bottom:520.981333pt;}
.y7a{bottom:521.924000pt;}
.y1d6{bottom:522.848000pt;}
.y93{bottom:523.097333pt;}
.ydd{bottom:524.133333pt;}
.y170{bottom:526.993333pt;}
.y5c{bottom:531.126667pt;}
.y1c0{bottom:533.537333pt;}
.yfb{bottom:534.272000pt;}
.y193{bottom:535.823194pt;}
.yb1{bottom:536.850667pt;}
.y112{bottom:542.358667pt;}
.y1a5{bottom:544.262667pt;}
.y125{bottom:544.884000pt;}
.y1f0{bottom:545.306667pt;}
.y79{bottom:545.826667pt;}
.y1d5{bottom:546.750667pt;}
.y92{bottom:547.000000pt;}
.y16f{bottom:550.897333pt;}
.y192{bottom:550.987834pt;}
.y5b{bottom:553.545333pt;}
.y111{bottom:558.298667pt;}
.yb0{bottom:560.753333pt;}
.y1a4{bottom:563.524000pt;}
.ydc{bottom:566.292000pt;}
.y124{bottom:568.788000pt;}
.y1ef{bottom:569.209333pt;}
.yfa{bottom:569.450667pt;}
.y78{bottom:569.729333pt;}
.y1d4{bottom:570.654667pt;}
.y91{bottom:570.902667pt;}
.y8{bottom:573.786667pt;}
.y110{bottom:574.238667pt;}
.y16e{bottom:574.800000pt;}
.y5a{bottom:575.965333pt;}
.y191{bottom:581.317115pt;}
.yaf{bottom:584.656000pt;}
.y1bf{bottom:585.514667pt;}
.y7{bottom:592.685334pt;}
.yf9{bottom:593.353333pt;}
.y77{bottom:593.633333pt;}
.y90{bottom:594.805333pt;}
.yc6{bottom:595.324000pt;}
.y2b{bottom:596.128021pt;}
.y190{bottom:596.480705pt;}
.y59{bottom:598.384000pt;}
.y16d{bottom:598.702667pt;}
.ydb{bottom:601.472000pt;}
.y1b4{bottom:604.397333pt;}
.y1ee{bottom:607.558667pt;}
.y123{bottom:608.476000pt;}
.yae{bottom:608.560000pt;}
.y10f{bottom:609.418667pt;}
.y1d3{bottom:610.342667pt;}
.yc5{bottom:614.585333pt;}
.yf8{bottom:617.256000pt;}
.y76{bottom:617.536000pt;}
.y8f{bottom:618.709333pt;}
.y1b3{bottom:620.337333pt;}
.y58{bottom:620.804000pt;}
.y16c{bottom:622.605333pt;}
.y119{bottom:623.536000pt;}
.yda{bottom:625.374667pt;}
.y18f{bottom:626.809986pt;}
.y28{bottom:629.461365pt;}
.y1ed{bottom:631.461333pt;}
.yad{bottom:632.462667pt;}
.y10e{bottom:633.321333pt;}
.y118{bottom:639.477333pt;}
.y1b2{bottom:639.598667pt;}
.yf7{bottom:641.160000pt;}
.y75{bottom:641.438667pt;}
.y18e{bottom:641.974626pt;}
.y57{bottom:643.222667pt;}
.y122{bottom:644.742667pt;}
.y6{bottom:645.598667pt;}
.y16b{bottom:646.509333pt;}
.yc4{bottom:646.836000pt;}
.yd9{bottom:649.277333pt;}
.y157{bottom:649.704000pt;}
.y8e{bottom:652.906667pt;}
.y1ec{bottom:655.364000pt;}
.y117{bottom:655.417333pt;}
.y1d2{bottom:655.678667pt;}
.yac{bottom:656.365333pt;}
.y10d{bottom:657.224000pt;}
.yf6{bottom:665.062667pt;}
.y74{bottom:665.341333pt;}
.y56{bottom:665.642667pt;}
.y156{bottom:668.965333pt;}
.y3{bottom:668.977329pt;}
.y16a{bottom:670.412000pt;}
.y18d{bottom:672.302857pt;}
.yd8{bottom:673.180000pt;}
.y1b1{bottom:674.778667pt;}
.yab{bottom:680.268000pt;}
.y10c{bottom:681.126667pt;}
.y202{bottom:685.596000pt;}
.y18c{bottom:687.467498pt;}
.yf5{bottom:688.965333pt;}
.y73{bottom:689.245333pt;}
.y1eb{bottom:693.713333pt;}
.y169{bottom:694.314667pt;}
.y55{bottom:696.966667pt;}
.yd7{bottom:697.082667pt;}
.y1b0{bottom:698.681333pt;}
.y8d{bottom:698.897333pt;}
.y10b{bottom:705.029333pt;}
.y155{bottom:705.030667pt;}
.y201{bottom:709.498667pt;}
.yf4{bottom:712.868000pt;}
.y72{bottom:713.148000pt;}
.yaa{bottom:714.466667pt;}
.y1ea{bottom:717.616000pt;}
.y18b{bottom:717.796778pt;}
.y168{bottom:718.217333pt;}
.yd6{bottom:720.986667pt;}
.y1af{bottom:722.584000pt;}
.y8c{bottom:722.801333pt;}
.y149{bottom:725.620000pt;}
.y10a{bottom:728.933333pt;}
.y18a{bottom:732.961419pt;}
.y200{bottom:733.401333pt;}
.yf3{bottom:736.772000pt;}
.y71{bottom:737.050667pt;}
.y148{bottom:741.560000pt;}
.y167{bottom:742.121333pt;}
.yd5{bottom:744.889333pt;}
.y26{bottom:746.261363pt;}
.y1ae{bottom:746.486667pt;}
.y8b{bottom:746.704000pt;}
.y109{bottom:752.836000pt;}
.y1e9{bottom:755.965333pt;}
.yf2{bottom:760.674667pt;}
.y70{bottom:760.953333pt;}
.y189{bottom:763.289650pt;}
.y166{bottom:766.024000pt;}
.ya9{bottom:766.444000pt;}
.yd4{bottom:768.792000pt;}
.y137{bottom:770.208000pt;}
.y1ad{bottom:770.389333pt;}
.y8a{bottom:770.606667pt;}
.y1ff{bottom:771.750667pt;}
.y51{bottom:772.692043pt;}
.y108{bottom:776.738667pt;}
.y54{bottom:777.334667pt;}
.y188{bottom:778.454290pt;}
.y1e8{bottom:779.868000pt;}
.y2{bottom:781.661334pt;}
.yf1{bottom:784.577333pt;}
.y6f{bottom:784.856000pt;}
.y136{bottom:786.148000pt;}
.y165{bottom:789.926667pt;}
.ya8{bottom:790.346667pt;}
.y50{bottom:792.692027pt;}
.yd3{bottom:792.694667pt;}
.y1ac{bottom:794.293333pt;}
.y89{bottom:794.509333pt;}
.y1fe{bottom:795.653333pt;}
.y107{bottom:800.641333pt;}
.y135{bottom:802.088000pt;}
.yf0{bottom:808.480000pt;}
.y4f{bottom:808.758698pt;}
.y6e{bottom:808.760000pt;}
.y187{bottom:808.783571pt;}
.y164{bottom:813.829333pt;}
.ya7{bottom:814.250667pt;}
.yd2{bottom:816.598667pt;}
.y1e7{bottom:818.217333pt;}
.y186{bottom:823.948211pt;}
.y106{bottom:824.545333pt;}
.y4e{bottom:824.825373pt;}
.y1ab{bottom:828.490667pt;}
.y88{bottom:828.708000pt;}
.y53{bottom:830.420000pt;}
.yef{bottom:832.384000pt;}
.y6d{bottom:832.662667pt;}
.y1fd{bottom:834.002667pt;}
.y163{bottom:837.733333pt;}
.ya6{bottom:838.153333pt;}
.y185{bottom:839.111802pt;}
.yd1{bottom:840.501333pt;}
.y4d{bottom:840.892039pt;}
.y1e6{bottom:842.120000pt;}
.y105{bottom:848.448000pt;}
.y184{bottom:854.276442pt;}
.yee{bottom:856.286667pt;}
.y6c{bottom:856.565333pt;}
.y4c{bottom:856.958710pt;}
.y1fc{bottom:857.905333pt;}
.y1{bottom:859.312000pt;}
.y162{bottom:861.636000pt;}
.ya5{bottom:862.056000pt;}
.yd0{bottom:864.404000pt;}
.y52{bottom:871.632000pt;}
.y104{bottom:872.350667pt;}
.y4b{bottom:873.025360pt;}
.y183{bottom:875.729065pt;}
.yed{bottom:880.189333pt;}
.y6b{bottom:880.468000pt;}
.y161{bottom:885.538667pt;}
.ya4{bottom:885.958667pt;}
.y4a{bottom:889.092041pt;}
.y103{bottom:896.253333pt;}
.y182{bottom:897.181688pt;}
.ycf{bottom:898.601333pt;}
.y6a{bottom:904.372000pt;}
.y49{bottom:905.158707pt;}
.ya3{bottom:909.862667pt;}
.y181{bottom:912.346328pt;}
.yec{bottom:914.386667pt;}
.y102{bottom:920.157333pt;}
.y48{bottom:921.225372pt;}
.y24{bottom:925.261363pt;}
.y1d1{bottom:930.577333pt;}
.y47{bottom:937.292033pt;}
.y69{bottom:944.060000pt;}
.yc3{bottom:946.517333pt;}
.y46{bottom:953.358699pt;}
.y45{bottom:969.425364pt;}
.y44{bottom:985.492035pt;}
.y22{bottom:993.420035pt;}
.y43{bottom:1001.558701pt;}
.y42{bottom:1017.625366pt;}
.y3b{bottom:1022.692108pt;}
.y41{bottom:1033.692037pt;}
.y40{bottom:1049.758703pt;}
.y3f{bottom:1065.825368pt;}
.y3d{bottom:1079.733366pt;}
.h22{height:20.570400pt;}
.h28{height:25.142874pt;}
.h8{height:28.560000pt;}
.h9{height:30.389333pt;}
.h2b{height:31.880400pt;}
.h12{height:33.333333pt;}
.h31{height:33.994400pt;}
.h2d{height:33.999733pt;}
.h1b{height:35.554688pt;}
.h13{height:36.666667pt;}
.h2e{height:37.649794pt;}
.h14{height:38.828125pt;}
.hb{height:39.505208pt;}
.h23{height:39.850400pt;}
.h20{height:40.552761pt;}
.h3{height:42.840000pt;}
.h30{height:43.314962pt;}
.h7{height:43.413333pt;}
.h1c{height:43.455729pt;}
.h21{height:43.636400pt;}
.h2a{height:44.824030pt;}
.h6{height:45.584000pt;}
.h24{height:47.820800pt;}
.h2f{height:50.339132pt;}
.hc{height:52.000000pt;}
.h2{height:52.096000pt;}
.h32{height:53.279733pt;}
.h29{height:53.788686pt;}
.h26{height:55.016400pt;}
.h27{height:55.021733pt;}
.h17{height:55.307292pt;}
.h1f{height:57.384800pt;}
.h2c{height:63.938133pt;}
.h25{height:64.546273pt;}
.h19{height:65.281260pt;}
.hd{height:69.890625pt;}
.h11{height:71.109375pt;}
.h5{height:73.802667pt;}
.h18{height:77.133331pt;}
.h1e{height:78.242000pt;}
.h15{height:87.533335pt;}
.h4{height:105.826671pt;}
.h10{height:116.799998pt;}
.h1a{height:150.119792pt;}
.he{height:179.000000pt;}
.hf{height:194.140625pt;}
.h16{height:288.866659pt;}
.h1d{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w5{width:221.066671pt;}
.w7{width:255.599996pt;}
.w6{width:482.000000pt;}
.w2{width:566.928019pt;}
.w4{width:703.066650pt;}
.w0{width:793.700000pt;}
.w8{width:793.733317pt;}
.w3{width:793.733333pt;}
.w1{width:794.000000pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:45.333333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xf{left:96.000000pt;}
.x2c{left:103.970667pt;}
.x18{left:108.656000pt;}
.xe{left:113.952000pt;}
.x8{left:117.854667pt;}
.x10{left:119.412000pt;}
.x33{left:126.596000pt;}
.x1e{left:132.118667pt;}
.xd{left:135.020000pt;}
.xa{left:143.905333pt;}
.x16{left:145.016000pt;}
.xc{left:156.838667pt;}
.x11{left:162.214667pt;}
.x34{left:171.181333pt;}
.x2d{left:175.156000pt;}
.x22{left:177.730126pt;}
.x4{left:180.874667pt;}
.x23{left:206.165664pt;}
.x2f{left:230.374667pt;}
.x1c{left:233.045333pt;}
.x2b{left:242.845912pt;}
.x9{left:244.368000pt;}
.x31{left:255.642667pt;}
.x20{left:257.406667pt;}
.x15{left:266.078667pt;}
.x1d{left:269.164000pt;}
.x24{left:271.282499pt;}
.x13{left:272.481333pt;}
.x14{left:277.684000pt;}
.x2a{left:301.818580pt;}
.x12{left:312.601333pt;}
.x25{left:330.255168pt;}
.x30{left:347.140000pt;}
.xb{left:360.530667pt;}
.x26{left:389.227836pt;}
.x19{left:400.196000pt;}
.x3{left:404.408000pt;}
.x17{left:407.474667pt;}
.x27{left:461.849310pt;}
.x1f{left:483.800000pt;}
.x7{left:492.466675pt;}
.x6{left:527.333333pt;}
.x32{left:529.904000pt;}
.x21{left:539.862667pt;}
.x1a{left:553.193333pt;}
.x28{left:562.870631pt;}
.x29{left:675.328942pt;}
.x2e{left:686.881333pt;}
.x1b{left:696.933333pt;}
}




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