
    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_1d4c19e87171ca0adb1a3462.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1ca71e24d0202fb2ecd78b8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191406;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_d59516c6eb060f901ffe3a48.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_aa678d7333f1b297bdc60b00.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3014ca4a307ebf2e82a8a030.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e0e264bab0b38a6a7b20b03.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1afb5fe2c2c34695ea8a3a67.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_2a5d14962c034911912e6ea1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_451c2fef7bd8b314bdfec352.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_38b6856d681506466fae5f03.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_8699729c530b40bc9752c106.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_006085c4301d247331b65a9c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f11734383b9d93ea9287b2f0.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);}
.v3{vertical-align:-20.400037px;}
.v5{vertical-align:-17.339996px;}
.v2{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.382000px;}
.v6{vertical-align:17.339996px;}
.v4{vertical-align:18.359985px;}
.v1{vertical-align:20.399963px;}
.v8{vertical-align:22.512000px;}
.v9{vertical-align:44.982000px;}
.ls11{letter-spacing:-9.180000px;}
.ls52{letter-spacing:-4.860000px;}
.ls51{letter-spacing:-4.074000px;}
.ls54{letter-spacing:-4.032000px;}
.ls43{letter-spacing:-1.722000px;}
.ls4b{letter-spacing:-1.638000px;}
.ls71{letter-spacing:-1.419600px;}
.ls50{letter-spacing:-1.344000px;}
.ls73{letter-spacing:-1.305000px;}
.ls4c{letter-spacing:-1.176000px;}
.ls4e{letter-spacing:-1.050000px;}
.ls1d{letter-spacing:-0.972000px;}
.ls44{letter-spacing:-0.966000px;}
.ls4f{letter-spacing:-0.924000px;}
.ls5f{letter-spacing:-0.882000px;}
.ls33{letter-spacing:-0.864000px;}
.ls53{letter-spacing:-0.798000px;}
.ls77{letter-spacing:-0.765000px;}
.ls4a{letter-spacing:-0.672000px;}
.ls47{letter-spacing:-0.588000px;}
.ls7c{letter-spacing:-0.585000px;}
.ls41{letter-spacing:-0.540000px;}
.ls45{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.462000px;}
.ls78{letter-spacing:-0.450000px;}
.ls63{letter-spacing:-0.436800px;}
.ls1b{letter-spacing:-0.432000px;}
.ls7d{letter-spacing:-0.405000px;}
.ls15{letter-spacing:-0.378000px;}
.ls42{letter-spacing:-0.336000px;}
.ls1a{letter-spacing:-0.324000px;}
.ls7a{letter-spacing:-0.315000px;}
.ls72{letter-spacing:-0.273000px;}
.ls18{letter-spacing:-0.270000px;}
.ls74{letter-spacing:-0.225000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5e{letter-spacing:-0.210000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.168000px;}
.ls36{letter-spacing:-0.163800px;}
.ls1c{letter-spacing:-0.162000px;}
.ls35{letter-spacing:-0.140400px;}
.ls7b{letter-spacing:-0.135000px;}
.ls37{letter-spacing:-0.109200px;}
.ls30{letter-spacing:-0.108000px;}
.ls34{letter-spacing:-0.105300px;}
.ls64{letter-spacing:-0.054600px;}
.ls19{letter-spacing:-0.054000px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013223px;}
.lsa{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.054600px;}
.ls3c{letter-spacing:0.060000px;}
.ls67{letter-spacing:0.081900px;}
.ls6b{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.090608px;}
.ls31{letter-spacing:0.108000px;}
.ls62{letter-spacing:0.109200px;}
.ls21{letter-spacing:0.117820px;}
.ls20{letter-spacing:0.121116px;}
.ls4d{letter-spacing:0.126000px;}
.lse{letter-spacing:0.153000px;}
.ls22{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.210000px;}
.ls3b{letter-spacing:0.210655px;}
.ls2d{letter-spacing:0.212303px;}
.ls25{letter-spacing:0.213580px;}
.ls2e{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.218400px;}
.ls6d{letter-spacing:0.225000px;}
.ls29{letter-spacing:0.245700px;}
.ls6{letter-spacing:0.247093px;}
.ls2a{letter-spacing:0.259690px;}
.ls9{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.273000px;}
.ls2b{letter-spacing:0.300000px;}
.ls24{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.327600px;}
.ls2c{letter-spacing:0.334202px;}
.ls5{letter-spacing:0.356421px;}
.ls4{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.378000px;}
.ls61{letter-spacing:0.382200px;}
.ls3f{letter-spacing:0.386100px;}
.ls8{letter-spacing:0.399600px;}
.ls76{letter-spacing:0.405000px;}
.ls40{letter-spacing:0.421200px;}
.ls65{letter-spacing:0.425880px;}
.lsb{letter-spacing:0.427064px;}
.lsd{letter-spacing:0.427155px;}
.ls12{letter-spacing:0.436800px;}
.ls28{letter-spacing:0.450615px;}
.ls26{letter-spacing:0.486000px;}
.ls69{letter-spacing:0.491400px;}
.ls38{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.546000px;}
.ls3d{letter-spacing:0.565264px;}
.ls23{letter-spacing:0.594000px;}
.ls3a{letter-spacing:0.600600px;}
.ls79{letter-spacing:0.630000px;}
.ls5c{letter-spacing:0.631800px;}
.ls32{letter-spacing:0.648000px;}
.ls60{letter-spacing:0.655200px;}
.lsc{letter-spacing:0.663000px;}
.ls27{letter-spacing:0.702000px;}
.ls70{letter-spacing:0.709800px;}
.ls7e{letter-spacing:0.756000px;}
.ls68{letter-spacing:0.764400px;}
.ls6c{letter-spacing:0.765000px;}
.ls7{letter-spacing:0.810000px;}
.ls7f{letter-spacing:0.918000px;}
.ls59{letter-spacing:0.972000px;}
.ls57{letter-spacing:1.026000px;}
.ls75{letter-spacing:1.035000px;}
.ls56{letter-spacing:1.080000px;}
.ls58{letter-spacing:1.134000px;}
.ls55{letter-spacing:1.140000px;}
.ls6a{letter-spacing:1.188000px;}
.ls5b{letter-spacing:1.242000px;}
.ls5d{letter-spacing:1.296000px;}
.ls6e{letter-spacing:1.350000px;}
.ls0{letter-spacing:2.592000px;}
.ls1f{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls1e{letter-spacing:3.108000px;}
.ls6f{letter-spacing:6.120000px;}
.ls5a{letter-spacing:172.242000px;}
.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;}
}
.ws9{word-spacing:-51.000000px;}
.ws4{word-spacing:-41.640000px;}
.ws3{word-spacing:-15.067500px;}
.ws27{word-spacing:-14.700000px;}
.wsf3{word-spacing:-13.596000px;}
.ws7{word-spacing:-13.500000px;}
.wsa8{word-spacing:-13.392000px;}
.wsaa{word-spacing:-13.230000px;}
.wsf2{word-spacing:-12.885600px;}
.ws11b{word-spacing:-12.744000px;}
.wsf1{word-spacing:-12.667200px;}
.wsab{word-spacing:-12.582000px;}
.wse8{word-spacing:-12.503400px;}
.wsef{word-spacing:-12.476100px;}
.wse6{word-spacing:-12.394200px;}
.ws5{word-spacing:-12.366000px;}
.wse5{word-spacing:-12.339600px;}
.ws6{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws11a{word-spacing:-12.096000px;}
.wse4{word-spacing:-11.957400px;}
.ws11c{word-spacing:-11.718000px;}
.wsf9{word-spacing:-11.565000px;}
.wsf6{word-spacing:-10.980000px;}
.wsf0{word-spacing:-10.974600px;}
.ws119{word-spacing:-10.755000px;}
.wsf5{word-spacing:-10.575000px;}
.wsf8{word-spacing:-10.440000px;}
.wsf7{word-spacing:-10.215000px;}
.wsa{word-spacing:-10.200000px;}
.ws118{word-spacing:-10.080000px;}
.ws1{word-spacing:-9.888000px;}
.ws11d{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.600000px;}
.wsb1{word-spacing:-9.534000px;}
.wsf4{word-spacing:-9.000000px;}
.wsc9{word-spacing:-8.946000px;}
.ws7a{word-spacing:-8.736000px;}
.wsa9{word-spacing:-8.599500px;}
.wse7{word-spacing:-8.482110px;}
.ws48{word-spacing:-8.388900px;}
.ws47{word-spacing:-8.353800px;}
.wse9{word-spacing:-8.056230px;}
.ws8{word-spacing:-7.967700px;}
.ws28{word-spacing:-7.862400px;}
.ws29{word-spacing:-7.827300px;}
.wsfa{word-spacing:-6.120000px;}
.ws7f{word-spacing:-5.082000px;}
.ws2a{word-spacing:-3.294000px;}
.wsd{word-spacing:-3.276000px;}
.ws26{word-spacing:-3.108000px;}
.ws23{word-spacing:-2.754000px;}
.ws32{word-spacing:-2.700000px;}
.wsea{word-spacing:-2.402400px;}
.ws2f{word-spacing:-1.890000px;}
.ws42{word-spacing:-1.856400px;}
.ws19{word-spacing:-1.836000px;}
.wsa4{word-spacing:-1.674000px;}
.ws40{word-spacing:-1.620000px;}
.ws108{word-spacing:-1.575000px;}
.ws41{word-spacing:-1.566000px;}
.ws110{word-spacing:-1.530000px;}
.ws11e{word-spacing:-1.512000px;}
.ws31{word-spacing:-1.458000px;}
.wsfe{word-spacing:-1.419600px;}
.ws3d{word-spacing:-1.350000px;}
.wsfd{word-spacing:-1.310400px;}
.ws1d{word-spacing:-1.296000px;}
.ws105{word-spacing:-1.275000px;}
.ws107{word-spacing:-1.260000px;}
.ws13{word-spacing:-1.255800px;}
.ws2c{word-spacing:-1.242000px;}
.ws46{word-spacing:-1.188000px;}
.wsa7{word-spacing:-1.176000px;}
.wseb{word-spacing:-1.146600px;}
.wsc0{word-spacing:-1.140000px;}
.ws2b{word-spacing:-1.134000px;}
.ws111{word-spacing:-1.125000px;}
.ws44{word-spacing:-1.092000px;}
.ws3e{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.037400px;}
.ws106{word-spacing:-1.035000px;}
.ws25{word-spacing:-1.020000px;}
.ws73{word-spacing:-0.966000px;}
.wsc{word-spacing:-0.960000px;}
.wsa6{word-spacing:-0.924000px;}
.ws1c{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.864000px;}
.ws101{word-spacing:-0.819000px;}
.ws10f{word-spacing:-0.720000px;}
.wsc3{word-spacing:-0.714000px;}
.ws104{word-spacing:-0.702000px;}
.ws21{word-spacing:-0.663000px;}
.ws12{word-spacing:-0.655200px;}
.ws20{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.600600px;}
.ws1a{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.588000px;}
.ws10d{word-spacing:-0.585000px;}
.ws22{word-spacing:-0.561000px;}
.ws11{word-spacing:-0.546000px;}
.ws2e{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.510000px;}
.ws10b{word-spacing:-0.495000px;}
.wsee{word-spacing:-0.491400px;}
.ws30{word-spacing:-0.486000px;}
.ws115{word-spacing:-0.450000px;}
.ws100{word-spacing:-0.436800px;}
.wsc2{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.382200px;}
.ws36{word-spacing:-0.378000px;}
.ws14{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.324000px;}
.ws2d{word-spacing:-0.300000px;}
.ws39{word-spacing:-0.270000px;}
.wsed{word-spacing:-0.218400px;}
.ws1f{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.180000px;}
.wse{word-spacing:-0.163800px;}
.wsc1{word-spacing:-0.108000px;}
.ws113{word-spacing:-0.090000px;}
.ws71{word-spacing:-0.060000px;}
.wsff{word-spacing:-0.054600px;}
.ws3a{word-spacing:-0.054000px;}
.ws10a{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws116{word-spacing:0.045000px;}
.ws37{word-spacing:0.054000px;}
.ws74{word-spacing:0.084000px;}
.ws17{word-spacing:0.108000px;}
.ws6c{word-spacing:0.109200px;}
.ws1b{word-spacing:0.162000px;}
.ws6e{word-spacing:0.180000px;}
.ws6f{word-spacing:0.216000px;}
.ws6d{word-spacing:0.218400px;}
.ws35{word-spacing:0.270000px;}
.wsfb{word-spacing:0.273000px;}
.ws34{word-spacing:0.324000px;}
.ws112{word-spacing:0.360000px;}
.ws15{word-spacing:0.378000px;}
.ws70{word-spacing:0.432000px;}
.wsec{word-spacing:0.436800px;}
.ws38{word-spacing:0.486000px;}
.ws10e{word-spacing:0.495000px;}
.ws3b{word-spacing:0.594000px;}
.wsfc{word-spacing:0.600600px;}
.ws120{word-spacing:0.648000px;}
.ws3c{word-spacing:0.702000px;}
.ws16{word-spacing:0.756000px;}
.ws114{word-spacing:0.855000px;}
.ws72{word-spacing:0.918000px;}
.ws10c{word-spacing:0.990000px;}
.ws18{word-spacing:1.134000px;}
.ws102{word-spacing:1.188000px;}
.ws11f{word-spacing:1.242000px;}
.ws109{word-spacing:1.485000px;}
.ws103{word-spacing:1.674000px;}
.ws117{word-spacing:2.340000px;}
.ws75{word-spacing:3.672000px;}
.ws33{word-spacing:5.508000px;}
.ws87{word-spacing:46.787995px;}
.wsc8{word-spacing:49.728000px;}
.wsac{word-spacing:50.866194px;}
.ws4c{word-spacing:59.934000px;}
.ws89{word-spacing:61.739995px;}
.wsc6{word-spacing:61.908000px;}
.ws82{word-spacing:64.432200px;}
.ws4a{word-spacing:70.728000px;}
.wsbc{word-spacing:74.927991px;}
.wsbf{word-spacing:82.572000px;}
.ws9c{word-spacing:83.542200px;}
.wsc5{word-spacing:86.310000px;}
.ws62{word-spacing:86.692193px;}
.wsb4{word-spacing:88.955991px;}
.wsae{word-spacing:90.719991px;}
.ws83{word-spacing:99.166200px;}
.wsb5{word-spacing:102.732000px;}
.wsb0{word-spacing:105.336000px;}
.wsb3{word-spacing:107.058000px;}
.wsc7{word-spacing:108.822000px;}
.wsb8{word-spacing:112.102191px;}
.wsaf{word-spacing:113.987994px;}
.wsd4{word-spacing:118.986000px;}
.wscd{word-spacing:119.826000px;}
.ws8a{word-spacing:120.502200px;}
.ws4d{word-spacing:123.652193px;}
.ws68{word-spacing:124.991993px;}
.ws9b{word-spacing:127.050000px;}
.wsbb{word-spacing:127.348200px;}
.ws8f{word-spacing:128.352000px;}
.ws8b{word-spacing:134.819995px;}
.wscb{word-spacing:135.492000px;}
.ws54{word-spacing:136.294193px;}
.wsa0{word-spacing:136.374000px;}
.wsd7{word-spacing:139.146000px;}
.ws67{word-spacing:139.523993px;}
.ws51{word-spacing:139.654193px;}
.ws86{word-spacing:140.364000px;}
.wsb6{word-spacing:141.077994px;}
.wsa2{word-spacing:141.456000px;}
.ws5b{word-spacing:142.757993px;}
.ws49{word-spacing:143.513993px;}
.wsbd{word-spacing:149.519994px;}
.ws52{word-spacing:151.120193px;}
.ws69{word-spacing:152.086193px;}
.ws50{word-spacing:153.174000px;}
.wsdc{word-spacing:154.228200px;}
.ws94{word-spacing:154.979995px;}
.ws9d{word-spacing:157.378200px;}
.ws8d{word-spacing:161.238000px;}
.ws8e{word-spacing:163.380000px;}
.ws4e{word-spacing:163.968000px;}
.ws53{word-spacing:164.387993px;}
.ws92{word-spacing:164.392200px;}
.ws55{word-spacing:167.542193px;}
.ws8c{word-spacing:168.966000px;}
.ws81{word-spacing:169.138200px;}
.ws59{word-spacing:171.863993px;}
.ws95{word-spacing:171.990000px;}
.ws64{word-spacing:173.334000px;}
.ws9f{word-spacing:174.342000px;}
.ws58{word-spacing:175.139993px;}
.ws91{word-spacing:175.139995px;}
.ws66{word-spacing:177.491993px;}
.ws6b{word-spacing:182.699993px;}
.ws61{word-spacing:188.579993px;}
.wsca{word-spacing:191.188200px;}
.ws93{word-spacing:192.322200px;}
.wsa1{word-spacing:196.224000px;}
.ws99{word-spacing:197.694000px;}
.wsdb{word-spacing:197.736000px;}
.ws60{word-spacing:198.370200px;}
.ws57{word-spacing:199.373993px;}
.ws88{word-spacing:199.542000px;}
.ws80{word-spacing:200.680200px;}
.ws96{word-spacing:201.768000px;}
.wsd2{word-spacing:203.830200px;}
.wse0{word-spacing:207.060000px;}
.ws9e{word-spacing:207.102000px;}
.wsc4{word-spacing:211.050000px;}
.ws4b{word-spacing:211.680000px;}
.wse2{word-spacing:212.142000px;}
.ws6a{word-spacing:212.772000px;}
.wsde{word-spacing:218.610000px;}
.ws65{word-spacing:219.240000px;}
.wsb9{word-spacing:219.462600px;}
.ws5e{word-spacing:221.297993px;}
.ws84{word-spacing:224.284200px;}
.wsdd{word-spacing:228.064200px;}
.ws97{word-spacing:228.228000px;}
.ws63{word-spacing:228.694200px;}
.wsce{word-spacing:231.924000px;}
.wscf{word-spacing:234.066000px;}
.ws5a{word-spacing:234.696000px;}
.wsd1{word-spacing:235.078200px;}
.wsa3{word-spacing:238.728000px;}
.wscc{word-spacing:239.652000px;}
.wsd6{word-spacing:239.736000px;}
.ws4f{word-spacing:240.286200px;}
.ws85{word-spacing:240.328200px;}
.ws5c{word-spacing:240.366000px;}
.wsd3{word-spacing:242.676000px;}
.ws9a{word-spacing:244.608000px;}
.wsdf{word-spacing:245.028000px;}
.wse3{word-spacing:250.236000px;}
.ws90{word-spacing:251.160000px;}
.ws76{word-spacing:251.416189px;}
.wsda{word-spacing:256.116000px;}
.ws7b{word-spacing:257.086200px;}
.wsd0{word-spacing:262.668000px;}
.ws56{word-spacing:263.298000px;}
.wse1{word-spacing:266.910000px;}
.wsd9{word-spacing:268.380000px;}
.ws5f{word-spacing:269.010000px;}
.wsd5{word-spacing:272.454000px;}
.ws5d{word-spacing:273.084000px;}
.ws98{word-spacing:277.326000px;}
.ws77{word-spacing:279.430189px;}
.wsd8{word-spacing:288.834000px;}
.ws7c{word-spacing:291.820200px;}
.ws79{word-spacing:361.792200px;}
.ws78{word-spacing:393.334200px;}
.wsb7{word-spacing:394.220400px;}
.ws7d{word-spacing:416.938200px;}
.ws7e{word-spacing:432.982200px;}
.wsba{word-spacing:465.742200px;}
.wsbe{word-spacing:549.998400px;}
.wsb2{word-spacing:906.066000px;}
.wsad{word-spacing:949.956000px;}
._5c{margin-left:-15.714000px;}
._5a{margin-left:-13.365000px;}
._3{margin-left:-11.840400px;}
._58{margin-left:-10.800000px;}
._2{margin-left:-9.188400px;}
._d{margin-left:-7.824250px;}
._4{margin-left:-5.694000px;}
._9{margin-left:-4.620000px;}
._5{margin-left:-3.400800px;}
._1{margin-left:-1.953600px;}
._0{width:1.728000px;}
._8{width:2.759994px;}
._25{width:4.074000px;}
._b{width:5.748000px;}
._59{width:7.290000px;}
._a{width:8.436000px;}
._57{width:10.035000px;}
._55{width:12.375000px;}
._56{width:13.725000px;}
._28{width:15.648000px;}
._5b{width:17.190000px;}
._3e{width:22.734000px;}
._3f{width:25.002000px;}
._6{width:42.572421px;}
._7{width:48.102577px;}
._3d{width:49.494685px;}
._c{width:50.693932px;}
._41{width:63.478797px;}
._3c{width:74.803200px;}
._2a{width:79.452000px;}
._20{width:81.197993px;}
._54{width:86.311200px;}
._1a{width:87.497400px;}
._e{width:92.849993px;}
._43{width:107.010000px;}
._42{width:126.181807px;}
._44{width:133.023605px;}
._35{width:136.197607px;}
._1c{width:142.967993px;}
._30{width:144.637802px;}
._4d{width:145.828200px;}
._47{width:148.680000px;}
._48{width:150.055800px;}
._50{width:154.329600px;}
._37{width:158.046000px;}
._45{width:160.285200px;}
._3a{width:161.551800px;}
._12{width:162.708000px;}
._31{width:163.847995px;}
._32{width:165.026995px;}
._4a{width:166.074000px;}
._53{width:167.332800px;}
._29{width:168.630000px;}
._22{width:172.798193px;}
._10{width:173.939400px;}
._1e{width:177.975593px;}
._f{width:180.841793px;}
._14{width:182.868000px;}
._2c{width:184.673995px;}
._46{width:186.469800px;}
._49{width:187.567800px;}
._19{width:188.685593px;}
._36{width:189.944400px;}
._3b{width:192.676200px;}
._1b{width:194.103600px;}
._39{width:198.422400px;}
._2e{width:200.172000px;}
._52{width:201.957600px;}
._2b{width:206.103000px;}
._34{width:207.190200px;}
._17{width:208.626600px;}
._33{width:210.037200px;}
._15{width:211.469993px;}
._2d{width:216.001807px;}
._38{width:217.182000px;}
._1d{width:219.019800px;}
._1f{width:220.760400px;}
._2f{width:223.734000px;}
._27{width:225.039600px;}
._4f{width:226.569600px;}
._11{width:227.770200px;}
._24{width:228.891001px;}
._26{width:231.868206px;}
._16{width:236.536800px;}
._18{width:239.050800px;}
._23{width:240.754200px;}
._4e{width:245.511600px;}
._4c{width:256.221600px;}
._51{width:264.726000px;}
._21{width:266.142000px;}
._13{width:271.518600px;}
._4b{width:279.006000px;}
._40{width:876.153600px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,152,195);}
.fs9{font-size:33.150000px;}
.fs8{font-size:35.100000px;}
.fse{font-size:35.490000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.600000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs6{font-size:66.000000px;}
.fsb{font-size:84.000000px;}
.fsc{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y6e{bottom:68.056797px;}
.y2d{bottom:68.307899px;}
.y15a{bottom:69.584853px;}
.yaa{bottom:69.929994px;}
.y8c{bottom:73.052995px;}
.y6d{bottom:83.055297px;}
.y2c{bottom:83.307899px;}
.y1a1{bottom:83.942109px;}
.y159{bottom:84.586203px;}
.ya9{bottom:84.928494px;}
.y8b{bottom:88.051495px;}
.y123{bottom:91.077603px;}
.y12b{bottom:92.610297px;}
.y105{bottom:93.889518px;}
.y1a0{bottom:96.688359px;}
.y6c{bottom:98.053797px;}
.y158{bottom:99.587553px;}
.ya8{bottom:99.926994px;}
.y2b{bottom:102.636898px;}
.y8a{bottom:103.052995px;}
.y122{bottom:106.076103px;}
.y12a{bottom:107.608797px;}
.y104{bottom:108.888018px;}
.y19f{bottom:109.434609px;}
.y6b{bottom:113.052297px;}
.y157{bottom:114.588903px;}
.y89{bottom:118.051495px;}
.y121{bottom:121.074603px;}
.y19e{bottom:122.180859px;}
.y129{bottom:122.607297px;}
.y103{bottom:123.886518px;}
.y6a{bottom:128.050797px;}
.y156{bottom:129.590253px;}
.y88{bottom:133.055995px;}
.y19d{bottom:134.927109px;}
.y120{bottom:136.073103px;}
.y128{bottom:137.605797px;}
.y102{bottom:138.885018px;}
.y69{bottom:143.049297px;}
.y155{bottom:144.591603px;}
.y2a{bottom:146.193311px;}
.y19c{bottom:147.673359px;}
.yd8{bottom:147.926994px;}
.y87{bottom:148.054495px;}
.y11f{bottom:151.071603px;}
.y101{bottom:153.883518px;}
.y68{bottom:158.047797px;}
.y154{bottom:159.592953px;}
.y19b{bottom:160.419609px;}
.y29{bottom:161.191811px;}
.y86{bottom:163.052995px;}
.y11e{bottom:166.070103px;}
.y100{bottom:168.882018px;}
.y67{bottom:173.046297px;}
.y19a{bottom:173.165859px;}
.y153{bottom:174.592953px;}
.y28{bottom:176.190311px;}
.yd7{bottom:178.039517px;}
.y85{bottom:178.051495px;}
.y11d{bottom:181.068603px;}
.yff{bottom:183.880518px;}
.y199{bottom:185.912109px;}
.y66{bottom:188.044797px;}
.y145{bottom:190.105797px;}
.y27{bottom:191.188811px;}
.y84{bottom:193.054495px;}
.yd6{bottom:195.480017px;}
.y11c{bottom:196.067103px;}
.y198{bottom:198.658359px;}
.yfe{bottom:198.879018px;}
.y65{bottom:203.043297px;}
.y152{bottom:205.569741px;}
.y26{bottom:206.187311px;}
.y83{bottom:208.052995px;}
.y11b{bottom:211.065603px;}
.y197{bottom:211.404609px;}
.yd5{bottom:212.920517px;}
.yfd{bottom:213.877518px;}
.y64{bottom:218.041797px;}
.y144{bottom:220.143274px;}
.y151{bottom:220.571091px;}
.y25{bottom:221.185811px;}
.y82{bottom:223.051495px;}
.y196{bottom:224.150859px;}
.y11a{bottom:226.064103px;}
.yfc{bottom:228.876018px;}
.yd4{bottom:230.361017px;}
.y150{bottom:235.571091px;}
.y24{bottom:236.197811px;}
.y195{bottom:236.897109px;}
.y143{bottom:237.583774px;}
.y81{bottom:238.049995px;}
.y119{bottom:241.062603px;}
.yfb{bottom:243.874518px;}
.yd3{bottom:247.801517px;}
.y63{bottom:248.794797px;}
.y194{bottom:249.643359px;}
.y14f{bottom:250.571091px;}
.y23{bottom:251.196311px;}
.y142{bottom:255.024274px;}
.y118{bottom:256.061103px;}
.yfa{bottom:258.873018px;}
.y193{bottom:262.389609px;}
.y62{bottom:263.793297px;}
.yd2{bottom:265.242017px;}
.y22{bottom:266.194811px;}
.y80{bottom:268.802995px;}
.y117{bottom:271.059603px;}
.y141{bottom:272.464774px;}
.yf9{bottom:273.871518px;}
.y192{bottom:275.135859px;}
.y21{bottom:281.193311px;}
.y14e{bottom:281.333228px;}
.yd1{bottom:282.682517px;}
.y7f{bottom:283.801495px;}
.y116{bottom:286.058103px;}
.y191{bottom:287.882109px;}
.yf8{bottom:288.870018px;}
.y140{bottom:289.905274px;}
.y20{bottom:296.191811px;}
.y14d{bottom:296.331728px;}
.y61{bottom:296.791947px;}
.y7e{bottom:298.799995px;}
.yd0{bottom:300.123017px;}
.y190{bottom:300.628359px;}
.y115{bottom:301.056603px;}
.yf7{bottom:303.868518px;}
.y13f{bottom:307.345774px;}
.y1f{bottom:311.190311px;}
.y14c{bottom:311.330228px;}
.y60{bottom:311.793297px;}
.y18f{bottom:313.374609px;}
.y114{bottom:316.055103px;}
.ycf{bottom:317.563517px;}
.yf6{bottom:318.867018px;}
.y13e{bottom:324.786274px;}
.y18e{bottom:326.120859px;}
.y1e{bottom:326.188811px;}
.y14b{bottom:326.328728px;}
.y5f{bottom:326.786570px;}
.y113{bottom:331.053603px;}
.yf5{bottom:333.865518px;}
.yce{bottom:335.004017px;}
.y18d{bottom:338.867109px;}
.y1d{bottom:341.187311px;}
.y14a{bottom:341.327228px;}
.y5e{bottom:341.787920px;}
.y13d{bottom:342.226774px;}
.y112{bottom:346.052103px;}
.y7d{bottom:346.174646px;}
.y18c{bottom:351.613359px;}
.ycd{bottom:352.444517px;}
.y1c{bottom:356.185811px;}
.y149{bottom:356.325728px;}
.y5d{bottom:356.789270px;}
.y13c{bottom:359.667274px;}
.y111{bottom:361.050603px;}
.y7c{bottom:361.173146px;}
.y18b{bottom:364.359609px;}
.yf4{bottom:364.618518px;}
.ycc{bottom:369.885017px;}
.y1b{bottom:371.184311px;}
.y148{bottom:371.324228px;}
.y5c{bottom:371.790620px;}
.y110{bottom:376.049103px;}
.y7b{bottom:376.174646px;}
.y18a{bottom:377.105859px;}
.y13b{bottom:377.107774px;}
.yf3{bottom:379.617018px;}
.y147{bottom:386.322728px;}
.y5b{bottom:386.791970px;}
.ycb{bottom:387.325517px;}
.y189{bottom:389.852109px;}
.y7a{bottom:391.173146px;}
.y13a{bottom:394.548274px;}
.yf2{bottom:394.615518px;}
.y1a{bottom:398.178911px;}
.y146{bottom:401.321228px;}
.y5a{bottom:401.793320px;}
.y188{bottom:402.598359px;}
.yca{bottom:404.766017px;}
.y79{bottom:406.174646px;}
.yf1{bottom:409.614018px;}
.y139{bottom:411.988774px;}
.y19{bottom:413.180261px;}
.y187{bottom:415.344609px;}
.y59{bottom:416.793320px;}
.y78{bottom:421.173146px;}
.yc9{bottom:422.206517px;}
.yf0{bottom:424.612518px;}
.y186{bottom:428.090859px;}
.y18{bottom:428.181611px;}
.y127{bottom:428.550603px;}
.y138{bottom:429.429274px;}
.y77{bottom:436.173146px;}
.yc8{bottom:439.647017px;}
.y185{bottom:440.837109px;}
.y17{bottom:443.182961px;}
.y126{bottom:443.549103px;}
.y137{bottom:446.869774px;}
.y58{bottom:449.796320px;}
.y184{bottom:453.583359px;}
.y15c{bottom:453.821228px;}
.yc7{bottom:457.087517px;}
.y16{bottom:458.184311px;}
.y136{bottom:464.310274px;}
.y57{bottom:464.794820px;}
.y183{bottom:466.329609px;}
.y76{bottom:466.926146px;}
.yef{bottom:468.999146px;}
.y15{bottom:473.184311px;}
.yc6{bottom:474.528017px;}
.y182{bottom:479.075859px;}
.y56{bottom:479.794820px;}
.y135{bottom:481.750774px;}
.y75{bottom:481.924646px;}
.yee{bottom:483.997646px;}
.y14{bottom:488.184311px;}
.y181{bottom:491.822109px;}
.yc5{bottom:491.968517px;}
.y55{bottom:494.805320px;}
.y1c4{bottom:495.889065px;}
.y74{bottom:496.923146px;}
.yed{bottom:498.996146px;}
.y134{bottom:499.191274px;}
.y180{bottom:504.568359px;}
.yc4{bottom:509.409017px;}
.y54{bottom:509.803820px;}
.y1c3{bottom:510.887565px;}
.y73{bottom:511.921646px;}
.yec{bottom:513.994646px;}
.y133{bottom:516.631774px;}
.y17f{bottom:517.318359px;}
.y53{bottom:524.802320px;}
.y1c2{bottom:525.886065px;}
.yc3{bottom:526.849517px;}
.yeb{bottom:528.993146px;}
.y132{bottom:534.072274px;}
.y52{bottom:539.800820px;}
.y1c1{bottom:540.884565px;}
.y72{bottom:543.540620px;}
.yea{bottom:543.991646px;}
.yc2{bottom:544.290017px;}
.y13{bottom:547.464311px;}
.y17e{bottom:548.302646px;}
.y131{bottom:551.512774px;}
.y51{bottom:554.799320px;}
.y1c0{bottom:555.883065px;}
.y71{bottom:558.541970px;}
.ye9{bottom:558.990146px;}
.yc1{bottom:561.730517px;}
.y17d{bottom:563.296646px;}
.y12{bottom:563.961311px;}
.y130{bottom:568.953274px;}
.y50{bottom:569.797820px;}
.y1bf{bottom:570.881565px;}
.y70{bottom:573.543320px;}
.ye8{bottom:573.988646px;}
.yc0{bottom:579.171017px;}
.y11{bottom:580.458311px;}
.y4f{bottom:584.796320px;}
.y1be{bottom:585.880065px;}
.y12f{bottom:586.393774px;}
.ye7{bottom:588.987146px;}
.y17c{bottom:591.051146px;}
.ybf{bottom:596.611517px;}
.y10{bottom:596.955311px;}
.y4e{bottom:599.794820px;}
.y1bd{bottom:600.878565px;}
.y12e{bottom:603.834274px;}
.ye6{bottom:603.985646px;}
.y17b{bottom:606.049646px;}
.yf{bottom:613.452311px;}
.ybe{bottom:614.052017px;}
.y4d{bottom:614.793320px;}
.y1bc{bottom:615.877065px;}
.ye5{bottom:618.984146px;}
.y17a{bottom:621.048146px;}
.y12d{bottom:621.274774px;}
.ya7{bottom:626.043320px;}
.ye{bottom:629.949311px;}
.y1bb{bottom:630.875565px;}
.y179{bottom:636.048146px;}
.y12c{bottom:638.715274px;}
.yd{bottom:646.446311px;}
.y4c{bottom:647.794820px;}
.ye4{bottom:649.737146px;}
.y178{bottom:651.051146px;}
.y1ba{bottom:652.630065px;}
.ya6{bottom:656.155774px;}
.y4b{bottom:662.799320px;}
.yc{bottom:662.943311px;}
.ye3{bottom:664.735646px;}
.ybd{bottom:665.085892px;}
.y177{bottom:666.049646px;}
.y1b9{bottom:667.628565px;}
.ya5{bottom:673.596274px;}
.y4a{bottom:677.797820px;}
.yb{bottom:679.440311px;}
.ye2{bottom:679.741646px;}
.y176{bottom:681.048146px;}
.y1b8{bottom:689.377065px;}
.ya4{bottom:691.036774px;}
.y49{bottom:692.796320px;}
.ye1{bottom:694.740146px;}
.ybc{bottom:695.264437px;}
.ya{bottom:695.937311px;}
.y175{bottom:696.046646px;}
.y48{bottom:707.794820px;}
.ya3{bottom:708.477274px;}
.ye0{bottom:709.738646px;}
.y174{bottom:711.046646px;}
.y1b7{bottom:711.125565px;}
.y9{bottom:712.434311px;}
.ybb{bottom:712.704937px;}
.y47{bottom:722.794820px;}
.yba{bottom:723.950437px;}
.ydf{bottom:724.737146px;}
.ya2{bottom:725.917774px;}
.y1b6{bottom:726.125565px;}
.y46{bottom:737.797774px;}
.yde{bottom:739.735646px;}
.ya1{bottom:743.358274px;}
.y173{bottom:743.790574px;}
.y8{bottom:748.434311px;}
.yb9{bottom:752.636437px;}
.y45{bottom:752.796274px;}
.ydd{bottom:754.734146px;}
.y172{bottom:758.791924px;}
.ya0{bottom:760.798774px;}
.y1b5{bottom:765.229935px;}
.y44{bottom:767.794774px;}
.yb8{bottom:770.076937px;}
.y125{bottom:771.545140px;}
.y171{bottom:773.793274px;}
.y9f{bottom:778.239274px;}
.y1b4{bottom:780.229980px;}
.y7{bottom:781.416265px;}
.y43{bottom:782.796274px;}
.y124{bottom:786.543640px;}
.yb7{bottom:787.517437px;}
.y170{bottom:788.782474px;}
.y9e{bottom:795.679774px;}
.y42{bottom:797.794774px;}
.ydc{bottom:799.110274px;}
.y16f{bottom:803.783824px;}
.yb6{bottom:804.957937px;}
.y1b3{bottom:812.587350px;}
.y41{bottom:812.797774px;}
.y9d{bottom:813.120274px;}
.ydb{bottom:814.108774px;}
.y15b{bottom:815.153687px;}
.y16e{bottom:818.785174px;}
.yb5{bottom:822.398437px;}
.y6{bottom:826.422265px;}
.y1b2{bottom:827.585850px;}
.y40{bottom:827.796274px;}
.yda{bottom:829.107274px;}
.y9c{bottom:830.560774px;}
.y16d{bottom:833.786524px;}
.y1b1{bottom:842.584350px;}
.y3f{bottom:842.794774px;}
.yd9{bottom:844.105774px;}
.y9b{bottom:848.001274px;}
.y16c{bottom:848.787874px;}
.y1b0{bottom:857.584350px;}
.y3e{bottom:857.793274px;}
.y16b{bottom:863.789224px;}
.y9a{bottom:865.441774px;}
.y2e{bottom:871.199432px;}
.y5{bottom:871.428265px;}
.yb4{bottom:872.419774px;}
.y16a{bottom:878.790574px;}
.y99{bottom:882.882274px;}
.yb3{bottom:887.418274px;}
.y1af{bottom:889.947721px;}
.y3d{bottom:890.803774px;}
.y169{bottom:893.791924px;}
.y10f{bottom:896.605774px;}
.y98{bottom:900.322774px;}
.y1ae{bottom:904.946221px;}
.y3c{bottom:905.802274px;}
.y168{bottom:908.793274px;}
.y4{bottom:916.434265px;}
.yb2{bottom:917.602774px;}
.y97{bottom:917.763274px;}
.y1ad{bottom:919.944721px;}
.y3b{bottom:920.800774px;}
.y167{bottom:923.786524px;}
.y2f{bottom:926.409576px;}
.y10e{bottom:931.339774px;}
.y1ac{bottom:934.943221px;}
.yb1{bottom:935.043274px;}
.y96{bottom:935.203774px;}
.y3a{bottom:935.799274px;}
.y166{bottom:938.787874px;}
.y10d{bottom:942.585274px;}
.y1ab{bottom:949.941721px;}
.y39{bottom:950.797774px;}
.yb0{bottom:952.483774px;}
.y95{bottom:952.644274px;}
.y165{bottom:953.789224px;}
.y10c{bottom:960.015274px;}
.y1aa{bottom:964.940221px;}
.y38{bottom:965.796274px;}
.y164{bottom:968.790574px;}
.yaf{bottom:969.924274px;}
.y94{bottom:970.084774px;}
.y10b{bottom:971.260774px;}
.y1a9{bottom:979.938721px;}
.y37{bottom:980.794774px;}
.y163{bottom:983.791924px;}
.yae{bottom:987.364774px;}
.y93{bottom:987.525274px;}
.y10a{bottom:988.690774px;}
.y6f{bottom:992.232880px;}
.yad{bottom:992.982274px;}
.y1a8{bottom:994.938721px;}
.y36{bottom:995.794774px;}
.y162{bottom:998.793274px;}
.y109{bottom:999.936274px;}
.y92{bottom:1004.965774px;}
.y35{bottom:1010.793274px;}
.y161{bottom:1013.791924px;}
.yac{bottom:1016.040274px;}
.y108{bottom:1017.366274px;}
.y91{bottom:1022.406274px;}
.y1a7{bottom:1027.312024px;}
.y107{bottom:1028.611774px;}
.y160{bottom:1028.793274px;}
.yab{bottom:1033.480774px;}
.y90{bottom:1039.846774px;}
.y1a6{bottom:1040.058274px;}
.y15f{bottom:1043.793274px;}
.y34{bottom:1043.797774px;}
.y106{bottom:1046.041774px;}
.y1a5{bottom:1052.804524px;}
.y8f{bottom:1057.287274px;}
.y15e{bottom:1058.791924px;}
.y33{bottom:1058.796274px;}
.y1a4{bottom:1065.550774px;}
.y15d{bottom:1073.793274px;}
.y32{bottom:1073.794774px;}
.y8e{bottom:1074.727774px;}
.y1a3{bottom:1078.297024px;}
.y31{bottom:1088.793274px;}
.y1a2{bottom:1091.043274px;}
.y8d{bottom:1092.168274px;}
.y30{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hd{height:31.194672px;}
.h1d{height:35.411133px;}
.h8{height:38.838867px;}
.h15{height:41.538000px;}
.h14{height:43.008000px;}
.h21{height:44.505000px;}
.h1f{height:45.090000px;}
.h3{height:45.744000px;}
.h20{height:46.080000px;}
.h9{height:47.469727px;}
.he{height:48.534668px;}
.hf{height:52.632000px;}
.hc{height:53.406000px;}
.ha{height:53.999400px;}
.h19{height:54.004800px;}
.h12{height:54.026308px;}
.h1a{height:54.026400px;}
.h18{height:54.031800px;}
.h1c{height:54.042600px;}
.hb{height:54.108000px;}
.h1b{height:54.709200px;}
.h13{height:55.296000px;}
.h2{height:57.099609px;}
.h4{height:58.527100px;}
.h10{height:60.416016px;}
.h7{height:61.799927px;}
.h1e{height:62.841797px;}
.h16{height:64.050000px;}
.h11{height:77.677734px;}
.h17{height:86.520000px;}
.h6{height:112.201172px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:23.780700px;}
.x2{left:61.191450px;}
.x6{left:140.952747px;}
.xd{left:147.983700px;}
.x4{left:233.456406px;}
.x9{left:238.143906px;}
.xe{left:244.384192px;}
.xf{left:251.457000px;}
.x7{left:254.463911px;}
.xc{left:260.458350px;}
.x11{left:300.594452px;}
.xb{left:352.437000px;}
.xa{left:400.600500px;}
.x3{left:604.783493px;}
.x10{left:816.003571px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v3{vertical-align:-18.133366pt;}
.v5{vertical-align:-15.413330pt;}
.v2{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.784000pt;}
.v6{vertical-align:15.413330pt;}
.v4{vertical-align:16.319987pt;}
.v1{vertical-align:18.133301pt;}
.v8{vertical-align:20.010667pt;}
.v9{vertical-align:39.984000pt;}
.ls11{letter-spacing:-8.160000pt;}
.ls52{letter-spacing:-4.320000pt;}
.ls51{letter-spacing:-3.621333pt;}
.ls54{letter-spacing:-3.584000pt;}
.ls43{letter-spacing:-1.530667pt;}
.ls4b{letter-spacing:-1.456000pt;}
.ls71{letter-spacing:-1.261867pt;}
.ls50{letter-spacing:-1.194667pt;}
.ls73{letter-spacing:-1.160000pt;}
.ls4c{letter-spacing:-1.045333pt;}
.ls4e{letter-spacing:-0.933333pt;}
.ls1d{letter-spacing:-0.864000pt;}
.ls44{letter-spacing:-0.858667pt;}
.ls4f{letter-spacing:-0.821333pt;}
.ls5f{letter-spacing:-0.784000pt;}
.ls33{letter-spacing:-0.768000pt;}
.ls53{letter-spacing:-0.709333pt;}
.ls77{letter-spacing:-0.680000pt;}
.ls4a{letter-spacing:-0.597333pt;}
.ls47{letter-spacing:-0.522667pt;}
.ls7c{letter-spacing:-0.520000pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls45{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.410667pt;}
.ls78{letter-spacing:-0.400000pt;}
.ls63{letter-spacing:-0.388267pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls7d{letter-spacing:-0.360000pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls42{letter-spacing:-0.298667pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls7a{letter-spacing:-0.280000pt;}
.ls72{letter-spacing:-0.242667pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls74{letter-spacing:-0.200000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5e{letter-spacing:-0.186667pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.149333pt;}
.ls36{letter-spacing:-0.145600pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls35{letter-spacing:-0.124800pt;}
.ls7b{letter-spacing:-0.120000pt;}
.ls37{letter-spacing:-0.097067pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls34{letter-spacing:-0.093600pt;}
.ls64{letter-spacing:-0.048533pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011754pt;}
.lsa{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.048533pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls67{letter-spacing:0.072800pt;}
.ls6b{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.080540pt;}
.ls31{letter-spacing:0.096000pt;}
.ls62{letter-spacing:0.097067pt;}
.ls21{letter-spacing:0.104729pt;}
.ls20{letter-spacing:0.107659pt;}
.ls4d{letter-spacing:0.112000pt;}
.lse{letter-spacing:0.136000pt;}
.ls22{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.186667pt;}
.ls3b{letter-spacing:0.187249pt;}
.ls2d{letter-spacing:0.188714pt;}
.ls25{letter-spacing:0.189849pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.194133pt;}
.ls6d{letter-spacing:0.200000pt;}
.ls29{letter-spacing:0.218400pt;}
.ls6{letter-spacing:0.219638pt;}
.ls2a{letter-spacing:0.230836pt;}
.ls9{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.242667pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls24{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.291200pt;}
.ls2c{letter-spacing:0.297069pt;}
.ls5{letter-spacing:0.316818pt;}
.ls4{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.336000pt;}
.ls61{letter-spacing:0.339733pt;}
.ls3f{letter-spacing:0.343200pt;}
.ls8{letter-spacing:0.355200pt;}
.ls76{letter-spacing:0.360000pt;}
.ls40{letter-spacing:0.374400pt;}
.ls65{letter-spacing:0.378560pt;}
.lsb{letter-spacing:0.379612pt;}
.lsd{letter-spacing:0.379694pt;}
.ls12{letter-spacing:0.388267pt;}
.ls28{letter-spacing:0.400546pt;}
.ls26{letter-spacing:0.432000pt;}
.ls69{letter-spacing:0.436800pt;}
.ls38{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.485333pt;}
.ls3d{letter-spacing:0.502457pt;}
.ls23{letter-spacing:0.528000pt;}
.ls3a{letter-spacing:0.533867pt;}
.ls79{letter-spacing:0.560000pt;}
.ls5c{letter-spacing:0.561600pt;}
.ls32{letter-spacing:0.576000pt;}
.ls60{letter-spacing:0.582400pt;}
.lsc{letter-spacing:0.589333pt;}
.ls27{letter-spacing:0.624000pt;}
.ls70{letter-spacing:0.630933pt;}
.ls7e{letter-spacing:0.672000pt;}
.ls68{letter-spacing:0.679467pt;}
.ls6c{letter-spacing:0.680000pt;}
.ls7{letter-spacing:0.720000pt;}
.ls7f{letter-spacing:0.816000pt;}
.ls59{letter-spacing:0.864000pt;}
.ls57{letter-spacing:0.912000pt;}
.ls75{letter-spacing:0.920000pt;}
.ls56{letter-spacing:0.960000pt;}
.ls58{letter-spacing:1.008000pt;}
.ls55{letter-spacing:1.013333pt;}
.ls6a{letter-spacing:1.056000pt;}
.ls5b{letter-spacing:1.104000pt;}
.ls5d{letter-spacing:1.152000pt;}
.ls6e{letter-spacing:1.200000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls1e{letter-spacing:2.762667pt;}
.ls6f{letter-spacing:5.440000pt;}
.ls5a{letter-spacing:153.104000pt;}
.ws9{word-spacing:-45.333333pt;}
.ws4{word-spacing:-37.013333pt;}
.ws3{word-spacing:-13.393333pt;}
.ws27{word-spacing:-13.066667pt;}
.wsf3{word-spacing:-12.085333pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa8{word-spacing:-11.904000pt;}
.wsaa{word-spacing:-11.760000pt;}
.wsf2{word-spacing:-11.453867pt;}
.ws11b{word-spacing:-11.328000pt;}
.wsf1{word-spacing:-11.259733pt;}
.wsab{word-spacing:-11.184000pt;}
.wse8{word-spacing:-11.114133pt;}
.wsef{word-spacing:-11.089867pt;}
.wse6{word-spacing:-11.017067pt;}
.ws5{word-spacing:-10.992000pt;}
.wse5{word-spacing:-10.968533pt;}
.ws6{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws11a{word-spacing:-10.752000pt;}
.wse4{word-spacing:-10.628800pt;}
.ws11c{word-spacing:-10.416000pt;}
.wsf9{word-spacing:-10.280000pt;}
.wsf6{word-spacing:-9.760000pt;}
.wsf0{word-spacing:-9.755200pt;}
.ws119{word-spacing:-9.560000pt;}
.wsf5{word-spacing:-9.400000pt;}
.wsf8{word-spacing:-9.280000pt;}
.wsf7{word-spacing:-9.080000pt;}
.wsa{word-spacing:-9.066667pt;}
.ws118{word-spacing:-8.960000pt;}
.ws1{word-spacing:-8.789333pt;}
.ws11d{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.533333pt;}
.wsb1{word-spacing:-8.474667pt;}
.wsf4{word-spacing:-8.000000pt;}
.wsc9{word-spacing:-7.952000pt;}
.ws7a{word-spacing:-7.765333pt;}
.wsa9{word-spacing:-7.644000pt;}
.wse7{word-spacing:-7.539653pt;}
.ws48{word-spacing:-7.456800pt;}
.ws47{word-spacing:-7.425600pt;}
.wse9{word-spacing:-7.161093pt;}
.ws8{word-spacing:-7.082400pt;}
.ws28{word-spacing:-6.988800pt;}
.ws29{word-spacing:-6.957600pt;}
.wsfa{word-spacing:-5.440000pt;}
.ws7f{word-spacing:-4.517333pt;}
.ws2a{word-spacing:-2.928000pt;}
.wsd{word-spacing:-2.912000pt;}
.ws26{word-spacing:-2.762667pt;}
.ws23{word-spacing:-2.448000pt;}
.ws32{word-spacing:-2.400000pt;}
.wsea{word-spacing:-2.135467pt;}
.ws2f{word-spacing:-1.680000pt;}
.ws42{word-spacing:-1.650133pt;}
.ws19{word-spacing:-1.632000pt;}
.wsa4{word-spacing:-1.488000pt;}
.ws40{word-spacing:-1.440000pt;}
.ws108{word-spacing:-1.400000pt;}
.ws41{word-spacing:-1.392000pt;}
.ws110{word-spacing:-1.360000pt;}
.ws11e{word-spacing:-1.344000pt;}
.ws31{word-spacing:-1.296000pt;}
.wsfe{word-spacing:-1.261867pt;}
.ws3d{word-spacing:-1.200000pt;}
.wsfd{word-spacing:-1.164800pt;}
.ws1d{word-spacing:-1.152000pt;}
.ws105{word-spacing:-1.133333pt;}
.ws107{word-spacing:-1.120000pt;}
.ws13{word-spacing:-1.116267pt;}
.ws2c{word-spacing:-1.104000pt;}
.ws46{word-spacing:-1.056000pt;}
.wsa7{word-spacing:-1.045333pt;}
.wseb{word-spacing:-1.019200pt;}
.wsc0{word-spacing:-1.013333pt;}
.ws2b{word-spacing:-1.008000pt;}
.ws111{word-spacing:-1.000000pt;}
.ws44{word-spacing:-0.970667pt;}
.ws3e{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.922133pt;}
.ws106{word-spacing:-0.920000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws73{word-spacing:-0.858667pt;}
.wsc{word-spacing:-0.853333pt;}
.wsa6{word-spacing:-0.821333pt;}
.ws1c{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws101{word-spacing:-0.728000pt;}
.ws10f{word-spacing:-0.640000pt;}
.wsc3{word-spacing:-0.634667pt;}
.ws104{word-spacing:-0.624000pt;}
.ws21{word-spacing:-0.589333pt;}
.ws12{word-spacing:-0.582400pt;}
.ws20{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.533867pt;}
.ws1a{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.522667pt;}
.ws10d{word-spacing:-0.520000pt;}
.ws22{word-spacing:-0.498667pt;}
.ws11{word-spacing:-0.485333pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.453333pt;}
.ws10b{word-spacing:-0.440000pt;}
.wsee{word-spacing:-0.436800pt;}
.ws30{word-spacing:-0.432000pt;}
.ws115{word-spacing:-0.400000pt;}
.ws100{word-spacing:-0.388267pt;}
.wsc2{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.339733pt;}
.ws36{word-spacing:-0.336000pt;}
.ws14{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.288000pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws39{word-spacing:-0.240000pt;}
.wsed{word-spacing:-0.194133pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.145600pt;}
.wsc1{word-spacing:-0.096000pt;}
.ws113{word-spacing:-0.080000pt;}
.ws71{word-spacing:-0.053333pt;}
.wsff{word-spacing:-0.048533pt;}
.ws3a{word-spacing:-0.048000pt;}
.ws10a{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws116{word-spacing:0.040000pt;}
.ws37{word-spacing:0.048000pt;}
.ws74{word-spacing:0.074667pt;}
.ws17{word-spacing:0.096000pt;}
.ws6c{word-spacing:0.097067pt;}
.ws1b{word-spacing:0.144000pt;}
.ws6e{word-spacing:0.160000pt;}
.ws6f{word-spacing:0.192000pt;}
.ws6d{word-spacing:0.194133pt;}
.ws35{word-spacing:0.240000pt;}
.wsfb{word-spacing:0.242667pt;}
.ws34{word-spacing:0.288000pt;}
.ws112{word-spacing:0.320000pt;}
.ws15{word-spacing:0.336000pt;}
.ws70{word-spacing:0.384000pt;}
.wsec{word-spacing:0.388267pt;}
.ws38{word-spacing:0.432000pt;}
.ws10e{word-spacing:0.440000pt;}
.ws3b{word-spacing:0.528000pt;}
.wsfc{word-spacing:0.533867pt;}
.ws120{word-spacing:0.576000pt;}
.ws3c{word-spacing:0.624000pt;}
.ws16{word-spacing:0.672000pt;}
.ws114{word-spacing:0.760000pt;}
.ws72{word-spacing:0.816000pt;}
.ws10c{word-spacing:0.880000pt;}
.ws18{word-spacing:1.008000pt;}
.ws102{word-spacing:1.056000pt;}
.ws11f{word-spacing:1.104000pt;}
.ws109{word-spacing:1.320000pt;}
.ws103{word-spacing:1.488000pt;}
.ws117{word-spacing:2.080000pt;}
.ws75{word-spacing:3.264000pt;}
.ws33{word-spacing:4.896000pt;}
.ws87{word-spacing:41.589329pt;}
.wsc8{word-spacing:44.202667pt;}
.wsac{word-spacing:45.214395pt;}
.ws4c{word-spacing:53.274667pt;}
.ws89{word-spacing:54.879995pt;}
.wsc6{word-spacing:55.029333pt;}
.ws82{word-spacing:57.273067pt;}
.ws4a{word-spacing:62.869333pt;}
.wsbc{word-spacing:66.602658pt;}
.wsbf{word-spacing:73.397333pt;}
.ws9c{word-spacing:74.259733pt;}
.wsc5{word-spacing:76.720000pt;}
.ws62{word-spacing:77.059727pt;}
.wsb4{word-spacing:79.071992pt;}
.wsae{word-spacing:80.639992pt;}
.ws83{word-spacing:88.147733pt;}
.wsb5{word-spacing:91.317333pt;}
.wsb0{word-spacing:93.632000pt;}
.wsb3{word-spacing:95.162667pt;}
.wsc7{word-spacing:96.730667pt;}
.wsb8{word-spacing:99.646392pt;}
.wsaf{word-spacing:101.322661pt;}
.wsd4{word-spacing:105.765333pt;}
.wscd{word-spacing:106.512000pt;}
.ws8a{word-spacing:107.113067pt;}
.ws4d{word-spacing:109.913060pt;}
.ws68{word-spacing:111.103994pt;}
.ws9b{word-spacing:112.933333pt;}
.wsbb{word-spacing:113.198400pt;}
.ws8f{word-spacing:114.090667pt;}
.ws8b{word-spacing:119.839995pt;}
.wscb{word-spacing:120.437333pt;}
.ws54{word-spacing:121.150394pt;}
.wsa0{word-spacing:121.221333pt;}
.wsd7{word-spacing:123.685333pt;}
.ws67{word-spacing:124.021327pt;}
.ws51{word-spacing:124.137060pt;}
.ws86{word-spacing:124.768000pt;}
.wsb6{word-spacing:125.402661pt;}
.wsa2{word-spacing:125.738667pt;}
.ws5b{word-spacing:126.895994pt;}
.ws49{word-spacing:127.567994pt;}
.wsbd{word-spacing:132.906661pt;}
.ws52{word-spacing:134.329060pt;}
.ws69{word-spacing:135.187727pt;}
.ws50{word-spacing:136.154667pt;}
.wsdc{word-spacing:137.091733pt;}
.ws94{word-spacing:137.759995pt;}
.ws9d{word-spacing:139.891733pt;}
.ws8d{word-spacing:143.322667pt;}
.ws8e{word-spacing:145.226667pt;}
.ws4e{word-spacing:145.749333pt;}
.ws53{word-spacing:146.122660pt;}
.ws92{word-spacing:146.126400pt;}
.ws55{word-spacing:148.926394pt;}
.ws8c{word-spacing:150.192000pt;}
.ws81{word-spacing:150.345067pt;}
.ws59{word-spacing:152.767994pt;}
.ws95{word-spacing:152.880000pt;}
.ws64{word-spacing:154.074667pt;}
.ws9f{word-spacing:154.970667pt;}
.ws58{word-spacing:155.679994pt;}
.ws91{word-spacing:155.679995pt;}
.ws66{word-spacing:157.770660pt;}
.ws6b{word-spacing:162.399994pt;}
.ws61{word-spacing:167.626660pt;}
.wsca{word-spacing:169.945067pt;}
.ws93{word-spacing:170.953067pt;}
.wsa1{word-spacing:174.421333pt;}
.ws99{word-spacing:175.728000pt;}
.wsdb{word-spacing:175.765333pt;}
.ws60{word-spacing:176.329067pt;}
.ws57{word-spacing:177.221327pt;}
.ws88{word-spacing:177.370667pt;}
.ws80{word-spacing:178.382400pt;}
.ws96{word-spacing:179.349333pt;}
.wsd2{word-spacing:181.182400pt;}
.wse0{word-spacing:184.053333pt;}
.ws9e{word-spacing:184.090667pt;}
.wsc4{word-spacing:187.600000pt;}
.ws4b{word-spacing:188.160000pt;}
.wse2{word-spacing:188.570667pt;}
.ws6a{word-spacing:189.130667pt;}
.wsde{word-spacing:194.320000pt;}
.ws65{word-spacing:194.880000pt;}
.wsb9{word-spacing:195.077867pt;}
.ws5e{word-spacing:196.709327pt;}
.ws84{word-spacing:199.363733pt;}
.wsdd{word-spacing:202.723733pt;}
.ws97{word-spacing:202.869333pt;}
.ws63{word-spacing:203.283733pt;}
.wsce{word-spacing:206.154667pt;}
.wscf{word-spacing:208.058667pt;}
.ws5a{word-spacing:208.618667pt;}
.wsd1{word-spacing:208.958400pt;}
.wsa3{word-spacing:212.202667pt;}
.wscc{word-spacing:213.024000pt;}
.wsd6{word-spacing:213.098667pt;}
.ws4f{word-spacing:213.587733pt;}
.ws85{word-spacing:213.625067pt;}
.ws5c{word-spacing:213.658667pt;}
.wsd3{word-spacing:215.712000pt;}
.ws9a{word-spacing:217.429333pt;}
.wsdf{word-spacing:217.802667pt;}
.wse3{word-spacing:222.432000pt;}
.ws90{word-spacing:223.253333pt;}
.ws76{word-spacing:223.481057pt;}
.wsda{word-spacing:227.658667pt;}
.ws7b{word-spacing:228.521067pt;}
.wsd0{word-spacing:233.482667pt;}
.ws56{word-spacing:234.042667pt;}
.wse1{word-spacing:237.253333pt;}
.wsd9{word-spacing:238.560000pt;}
.ws5f{word-spacing:239.120000pt;}
.wsd5{word-spacing:242.181333pt;}
.ws5d{word-spacing:242.741333pt;}
.ws98{word-spacing:246.512000pt;}
.ws77{word-spacing:248.382390pt;}
.wsd8{word-spacing:256.741333pt;}
.ws7c{word-spacing:259.395733pt;}
.ws79{word-spacing:321.593067pt;}
.ws78{word-spacing:349.630400pt;}
.wsb7{word-spacing:350.418133pt;}
.ws7d{word-spacing:370.611733pt;}
.ws7e{word-spacing:384.873067pt;}
.wsba{word-spacing:413.993067pt;}
.wsbe{word-spacing:488.887467pt;}
.wsb2{word-spacing:805.392000pt;}
.wsad{word-spacing:844.405333pt;}
._5c{margin-left:-13.968000pt;}
._5a{margin-left:-11.880000pt;}
._3{margin-left:-10.524800pt;}
._58{margin-left:-9.600000pt;}
._2{margin-left:-8.167467pt;}
._d{margin-left:-6.954889pt;}
._4{margin-left:-5.061333pt;}
._9{margin-left:-4.106667pt;}
._5{margin-left:-3.022933pt;}
._1{margin-left:-1.736533pt;}
._0{width:1.536000pt;}
._8{width:2.453328pt;}
._25{width:3.621333pt;}
._b{width:5.109333pt;}
._59{width:6.480000pt;}
._a{width:7.498667pt;}
._57{width:8.920000pt;}
._55{width:11.000000pt;}
._56{width:12.200000pt;}
._28{width:13.909333pt;}
._5b{width:15.280000pt;}
._3e{width:20.208000pt;}
._3f{width:22.224000pt;}
._6{width:37.842152pt;}
._7{width:42.757847pt;}
._3d{width:43.995276pt;}
._c{width:45.061273pt;}
._41{width:56.425597pt;}
._3c{width:66.491733pt;}
._2a{width:70.624000pt;}
._20{width:72.175994pt;}
._54{width:76.721067pt;}
._1a{width:77.775467pt;}
._e{width:82.533327pt;}
._43{width:95.120000pt;}
._42{width:112.161606pt;}
._44{width:118.243205pt;}
._35{width:121.064540pt;}
._1c{width:127.082660pt;}
._30{width:128.566935pt;}
._4d{width:129.625067pt;}
._47{width:132.160000pt;}
._48{width:133.382933pt;}
._50{width:137.181867pt;}
._37{width:140.485333pt;}
._45{width:142.475733pt;}
._3a{width:143.601600pt;}
._12{width:144.629333pt;}
._31{width:145.642662pt;}
._32{width:146.690662pt;}
._4a{width:147.621333pt;}
._53{width:148.740267pt;}
._29{width:149.893333pt;}
._22{width:153.598394pt;}
._10{width:154.612800pt;}
._1e{width:158.200527pt;}
._f{width:160.748261pt;}
._14{width:162.549333pt;}
._2c{width:164.154662pt;}
._46{width:165.750933pt;}
._49{width:166.726933pt;}
._19{width:167.720527pt;}
._36{width:168.839467pt;}
._3b{width:171.267733pt;}
._1b{width:172.536533pt;}
._39{width:176.375467pt;}
._2e{width:177.930667pt;}
._52{width:179.517867pt;}
._2b{width:183.202667pt;}
._34{width:184.169067pt;}
._17{width:185.445867pt;}
._33{width:186.699733pt;}
._15{width:187.973327pt;}
._2d{width:192.001606pt;}
._38{width:193.050667pt;}
._1d{width:194.684267pt;}
._1f{width:196.231467pt;}
._2f{width:198.874667pt;}
._27{width:200.035200pt;}
._4f{width:201.395200pt;}
._11{width:202.462400pt;}
._24{width:203.458667pt;}
._26{width:206.105072pt;}
._16{width:210.254933pt;}
._18{width:212.489600pt;}
._23{width:214.003733pt;}
._4e{width:218.232533pt;}
._4c{width:227.752533pt;}
._51{width:235.312000pt;}
._21{width:236.570667pt;}
._13{width:241.349867pt;}
._4b{width:248.005333pt;}
._40{width:778.803200pt;}
.fs9{font-size:29.466667pt;}
.fs8{font-size:31.200000pt;}
.fse{font-size:31.546667pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.533333pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs6{font-size:58.666667pt;}
.fsb{font-size:74.666667pt;}
.fsc{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y6e{bottom:60.494931pt;}
.y2d{bottom:60.718132pt;}
.y15a{bottom:61.853202pt;}
.yaa{bottom:62.159995pt;}
.y8c{bottom:64.935996pt;}
.y6d{bottom:73.826931pt;}
.y2c{bottom:74.051466pt;}
.y1a1{bottom:74.615208pt;}
.y159{bottom:75.187736pt;}
.ya9{bottom:75.491995pt;}
.y8b{bottom:78.267996pt;}
.y123{bottom:80.957869pt;}
.y12b{bottom:82.320264pt;}
.y105{bottom:83.457350pt;}
.y1a0{bottom:85.945208pt;}
.y6c{bottom:87.158931pt;}
.y158{bottom:88.522269pt;}
.ya8{bottom:88.823995pt;}
.y2b{bottom:91.232798pt;}
.y8a{bottom:91.602663pt;}
.y122{bottom:94.289869pt;}
.y12a{bottom:95.652264pt;}
.y104{bottom:96.789350pt;}
.y19f{bottom:97.275208pt;}
.y6b{bottom:100.490931pt;}
.y157{bottom:101.856802pt;}
.y89{bottom:104.934663pt;}
.y121{bottom:107.621869pt;}
.y19e{bottom:108.605208pt;}
.y129{bottom:108.984264pt;}
.y103{bottom:110.121350pt;}
.y6a{bottom:113.822931pt;}
.y156{bottom:115.191336pt;}
.y88{bottom:118.271996pt;}
.y19d{bottom:119.935208pt;}
.y120{bottom:120.953869pt;}
.y128{bottom:122.316264pt;}
.y102{bottom:123.453350pt;}
.y69{bottom:127.154931pt;}
.y155{bottom:128.525869pt;}
.y2a{bottom:129.949610pt;}
.y19c{bottom:131.265208pt;}
.yd8{bottom:131.490662pt;}
.y87{bottom:131.603996pt;}
.y11f{bottom:134.285869pt;}
.y101{bottom:136.785350pt;}
.y68{bottom:140.486931pt;}
.y154{bottom:141.860402pt;}
.y19b{bottom:142.595208pt;}
.y29{bottom:143.281610pt;}
.y86{bottom:144.935996pt;}
.y11e{bottom:147.617869pt;}
.y100{bottom:150.117350pt;}
.y67{bottom:153.818931pt;}
.y19a{bottom:153.925208pt;}
.y153{bottom:155.193736pt;}
.y28{bottom:156.613610pt;}
.yd7{bottom:158.257349pt;}
.y85{bottom:158.267996pt;}
.y11d{bottom:160.949869pt;}
.yff{bottom:163.449350pt;}
.y199{bottom:165.255208pt;}
.y66{bottom:167.150931pt;}
.y145{bottom:168.982931pt;}
.y27{bottom:169.945610pt;}
.y84{bottom:171.603996pt;}
.yd6{bottom:173.760015pt;}
.y11c{bottom:174.281869pt;}
.y198{bottom:176.585208pt;}
.yfe{bottom:176.781350pt;}
.y65{bottom:180.482931pt;}
.y152{bottom:182.728658pt;}
.y26{bottom:183.277610pt;}
.y83{bottom:184.935996pt;}
.y11b{bottom:187.613869pt;}
.y197{bottom:187.915208pt;}
.yd5{bottom:189.262682pt;}
.yfd{bottom:190.113350pt;}
.y64{bottom:193.814931pt;}
.y144{bottom:195.682910pt;}
.y151{bottom:196.063192pt;}
.y25{bottom:196.609610pt;}
.y82{bottom:198.267996pt;}
.y196{bottom:199.245208pt;}
.y11a{bottom:200.945869pt;}
.yfc{bottom:203.445350pt;}
.yd4{bottom:204.765349pt;}
.y150{bottom:209.396525pt;}
.y24{bottom:209.953610pt;}
.y195{bottom:210.575208pt;}
.y143{bottom:211.185577pt;}
.y81{bottom:211.599996pt;}
.y119{bottom:214.277869pt;}
.yfb{bottom:216.777350pt;}
.yd3{bottom:220.268015pt;}
.y63{bottom:221.150931pt;}
.y194{bottom:221.905208pt;}
.y14f{bottom:222.729858pt;}
.y23{bottom:223.285610pt;}
.y142{bottom:226.688243pt;}
.y118{bottom:227.609869pt;}
.yfa{bottom:230.109350pt;}
.y193{bottom:233.235208pt;}
.y62{bottom:234.482931pt;}
.yd2{bottom:235.770682pt;}
.y22{bottom:236.617610pt;}
.y80{bottom:238.935996pt;}
.y117{bottom:240.941869pt;}
.y141{bottom:242.190910pt;}
.yf9{bottom:243.441350pt;}
.y192{bottom:244.565208pt;}
.y21{bottom:249.949610pt;}
.y14e{bottom:250.073980pt;}
.yd1{bottom:251.273349pt;}
.y7f{bottom:252.267996pt;}
.y116{bottom:254.273869pt;}
.y191{bottom:255.895208pt;}
.yf8{bottom:256.773350pt;}
.y140{bottom:257.693577pt;}
.y20{bottom:263.281610pt;}
.y14d{bottom:263.405980pt;}
.y61{bottom:263.815064pt;}
.y7e{bottom:265.599996pt;}
.yd0{bottom:266.776015pt;}
.y190{bottom:267.225208pt;}
.y115{bottom:267.605869pt;}
.yf7{bottom:270.105350pt;}
.y13f{bottom:273.196243pt;}
.y1f{bottom:276.613610pt;}
.y14c{bottom:276.737980pt;}
.y60{bottom:277.149597pt;}
.y18f{bottom:278.555208pt;}
.y114{bottom:280.937869pt;}
.ycf{bottom:282.278682pt;}
.yf6{bottom:283.437350pt;}
.y13e{bottom:288.698910pt;}
.y18e{bottom:289.885208pt;}
.y1e{bottom:289.945610pt;}
.y14b{bottom:290.069980pt;}
.y5f{bottom:290.476951pt;}
.y113{bottom:294.269869pt;}
.yf5{bottom:296.769350pt;}
.yce{bottom:297.781349pt;}
.y18d{bottom:301.215208pt;}
.y1d{bottom:303.277610pt;}
.y14a{bottom:303.401980pt;}
.y5e{bottom:303.811484pt;}
.y13d{bottom:304.201577pt;}
.y112{bottom:307.601869pt;}
.y7d{bottom:307.710797pt;}
.y18c{bottom:312.545208pt;}
.ycd{bottom:313.284015pt;}
.y1c{bottom:316.609610pt;}
.y149{bottom:316.733980pt;}
.y5d{bottom:317.146018pt;}
.y13c{bottom:319.704243pt;}
.y111{bottom:320.933869pt;}
.y7c{bottom:321.042797pt;}
.y18b{bottom:323.875208pt;}
.yf4{bottom:324.105350pt;}
.ycc{bottom:328.786682pt;}
.y1b{bottom:329.941610pt;}
.y148{bottom:330.065980pt;}
.y5c{bottom:330.480551pt;}
.y110{bottom:334.265869pt;}
.y7b{bottom:334.377463pt;}
.y18a{bottom:335.205208pt;}
.y13b{bottom:335.206910pt;}
.yf3{bottom:337.437350pt;}
.y147{bottom:343.397980pt;}
.y5b{bottom:343.815084pt;}
.ycb{bottom:344.289349pt;}
.y189{bottom:346.535208pt;}
.y7a{bottom:347.709463pt;}
.y13a{bottom:350.709577pt;}
.yf2{bottom:350.769350pt;}
.y1a{bottom:353.936810pt;}
.y146{bottom:356.729980pt;}
.y5a{bottom:357.149618pt;}
.y188{bottom:357.865208pt;}
.yca{bottom:359.792015pt;}
.y79{bottom:361.044130pt;}
.yf1{bottom:364.101350pt;}
.y139{bottom:366.212243pt;}
.y19{bottom:367.271343pt;}
.y187{bottom:369.195208pt;}
.y59{bottom:370.482951pt;}
.y78{bottom:374.376130pt;}
.yc9{bottom:375.294682pt;}
.yf0{bottom:377.433350pt;}
.y186{bottom:380.525208pt;}
.y18{bottom:380.605876pt;}
.y127{bottom:380.933869pt;}
.y138{bottom:381.714910pt;}
.y77{bottom:387.709463pt;}
.yc8{bottom:390.797349pt;}
.y185{bottom:391.855208pt;}
.y17{bottom:393.940410pt;}
.y126{bottom:394.265869pt;}
.y137{bottom:397.217577pt;}
.y58{bottom:399.818951pt;}
.y184{bottom:403.185208pt;}
.y15c{bottom:403.396647pt;}
.yc7{bottom:406.300015pt;}
.y16{bottom:407.274943pt;}
.y136{bottom:412.720243pt;}
.y57{bottom:413.150951pt;}
.y183{bottom:414.515208pt;}
.y76{bottom:415.045463pt;}
.yef{bottom:416.888130pt;}
.y15{bottom:420.608276pt;}
.yc6{bottom:421.802682pt;}
.y182{bottom:425.845208pt;}
.y56{bottom:426.484284pt;}
.y135{bottom:428.222910pt;}
.y75{bottom:428.377463pt;}
.yee{bottom:430.220130pt;}
.y14{bottom:433.941610pt;}
.y181{bottom:437.175208pt;}
.yc5{bottom:437.305349pt;}
.y55{bottom:439.826951pt;}
.y1c4{bottom:440.790280pt;}
.y74{bottom:441.709463pt;}
.yed{bottom:443.552130pt;}
.y134{bottom:443.725577pt;}
.y180{bottom:448.505208pt;}
.yc4{bottom:452.808015pt;}
.y54{bottom:453.158951pt;}
.y1c3{bottom:454.122280pt;}
.y73{bottom:455.041463pt;}
.yec{bottom:456.884130pt;}
.y133{bottom:459.228243pt;}
.y17f{bottom:459.838542pt;}
.y53{bottom:466.490951pt;}
.y1c2{bottom:467.454280pt;}
.yc3{bottom:468.310682pt;}
.yeb{bottom:470.216130pt;}
.y132{bottom:474.730910pt;}
.y52{bottom:479.822951pt;}
.y1c1{bottom:480.786280pt;}
.y72{bottom:483.147218pt;}
.yea{bottom:483.548130pt;}
.yc2{bottom:483.813349pt;}
.y13{bottom:486.634943pt;}
.y17e{bottom:487.380130pt;}
.y131{bottom:490.233577pt;}
.y51{bottom:493.154951pt;}
.y1c0{bottom:494.118280pt;}
.y71{bottom:496.481751pt;}
.ye9{bottom:496.880130pt;}
.yc1{bottom:499.316015pt;}
.y17d{bottom:500.708130pt;}
.y12{bottom:501.298943pt;}
.y130{bottom:505.736243pt;}
.y50{bottom:506.486951pt;}
.y1bf{bottom:507.450280pt;}
.y70{bottom:509.816284pt;}
.ye8{bottom:510.212130pt;}
.yc0{bottom:514.818682pt;}
.y11{bottom:515.962943pt;}
.y4f{bottom:519.818951pt;}
.y1be{bottom:520.782280pt;}
.y12f{bottom:521.238910pt;}
.ye7{bottom:523.544130pt;}
.y17c{bottom:525.378797pt;}
.ybf{bottom:530.321349pt;}
.y10{bottom:530.626943pt;}
.y4e{bottom:533.150951pt;}
.y1bd{bottom:534.114280pt;}
.y12e{bottom:536.741577pt;}
.ye6{bottom:536.876130pt;}
.y17b{bottom:538.710797pt;}
.yf{bottom:545.290943pt;}
.ybe{bottom:545.824015pt;}
.y4d{bottom:546.482951pt;}
.y1bc{bottom:547.446280pt;}
.ye5{bottom:550.208130pt;}
.y17a{bottom:552.042797pt;}
.y12d{bottom:552.244243pt;}
.ya7{bottom:556.482951pt;}
.ye{bottom:559.954943pt;}
.y1bb{bottom:560.778280pt;}
.y179{bottom:565.376130pt;}
.y12c{bottom:567.746910pt;}
.yd{bottom:574.618943pt;}
.y4c{bottom:575.817618pt;}
.ye4{bottom:577.544130pt;}
.y178{bottom:578.712130pt;}
.y1ba{bottom:580.115613pt;}
.ya6{bottom:583.249577pt;}
.y4b{bottom:589.154951pt;}
.yc{bottom:589.282943pt;}
.ye3{bottom:590.876130pt;}
.ybd{bottom:591.187459pt;}
.y177{bottom:592.044130pt;}
.y1b9{bottom:593.447613pt;}
.ya5{bottom:598.752243pt;}
.y4a{bottom:602.486951pt;}
.yb{bottom:603.946943pt;}
.ye2{bottom:604.214797pt;}
.y176{bottom:605.376130pt;}
.y1b8{bottom:612.779613pt;}
.ya4{bottom:614.254910pt;}
.y49{bottom:615.818951pt;}
.ye1{bottom:617.546797pt;}
.ybc{bottom:618.012833pt;}
.ya{bottom:618.610943pt;}
.y175{bottom:618.708130pt;}
.y48{bottom:629.150951pt;}
.ya3{bottom:629.757577pt;}
.ye0{bottom:630.878797pt;}
.y174{bottom:632.041463pt;}
.y1b7{bottom:632.111613pt;}
.y9{bottom:633.274943pt;}
.ybb{bottom:633.515500pt;}
.y47{bottom:642.484284pt;}
.yba{bottom:643.511500pt;}
.ydf{bottom:644.210797pt;}
.ya2{bottom:645.260243pt;}
.y1b6{bottom:645.444946pt;}
.y46{bottom:655.820243pt;}
.yde{bottom:657.542797pt;}
.ya1{bottom:660.762910pt;}
.y173{bottom:661.147177pt;}
.y8{bottom:665.274943pt;}
.yb9{bottom:669.010167pt;}
.y45{bottom:669.152243pt;}
.ydd{bottom:670.874797pt;}
.y172{bottom:674.481710pt;}
.ya0{bottom:676.265577pt;}
.y1b5{bottom:680.204386pt;}
.y44{bottom:682.484243pt;}
.yb8{bottom:684.512833pt;}
.y125{bottom:685.817902pt;}
.y171{bottom:687.816243pt;}
.y9f{bottom:691.768243pt;}
.y1b4{bottom:693.537760pt;}
.y7{bottom:694.592236pt;}
.y43{bottom:695.818910pt;}
.y124{bottom:699.149902pt;}
.yb7{bottom:700.015500pt;}
.y170{bottom:701.139977pt;}
.y9e{bottom:707.270910pt;}
.y42{bottom:709.150910pt;}
.ydc{bottom:710.320243pt;}
.y16f{bottom:714.474510pt;}
.yb6{bottom:715.518167pt;}
.y1b3{bottom:722.299867pt;}
.y41{bottom:722.486910pt;}
.y9d{bottom:722.773577pt;}
.ydb{bottom:723.652243pt;}
.y15b{bottom:724.581055pt;}
.y16e{bottom:727.809043pt;}
.yb5{bottom:731.020833pt;}
.y6{bottom:734.597569pt;}
.y1b2{bottom:735.631867pt;}
.y40{bottom:735.818910pt;}
.yda{bottom:736.984243pt;}
.y9c{bottom:738.276243pt;}
.y16d{bottom:741.143577pt;}
.y1b1{bottom:748.963867pt;}
.y3f{bottom:749.150910pt;}
.yd9{bottom:750.316243pt;}
.y9b{bottom:753.778910pt;}
.y16c{bottom:754.478110pt;}
.y1b0{bottom:762.297200pt;}
.y3e{bottom:762.482910pt;}
.y16b{bottom:767.812643pt;}
.y9a{bottom:769.281577pt;}
.y2e{bottom:774.399495pt;}
.y5{bottom:774.602902pt;}
.yb4{bottom:775.484243pt;}
.y16a{bottom:781.147177pt;}
.y99{bottom:784.784243pt;}
.yb3{bottom:788.816243pt;}
.y1af{bottom:791.064641pt;}
.y3d{bottom:791.825577pt;}
.y169{bottom:794.481710pt;}
.y10f{bottom:796.982910pt;}
.y98{bottom:800.286910pt;}
.y1ae{bottom:804.396641pt;}
.y3c{bottom:805.157577pt;}
.y168{bottom:807.816243pt;}
.y4{bottom:814.608236pt;}
.yb2{bottom:815.646910pt;}
.y97{bottom:815.789577pt;}
.y1ad{bottom:817.728641pt;}
.y3b{bottom:818.489577pt;}
.y167{bottom:821.143577pt;}
.y2f{bottom:823.475179pt;}
.y10e{bottom:827.857577pt;}
.y1ac{bottom:831.060641pt;}
.yb1{bottom:831.149577pt;}
.y96{bottom:831.292243pt;}
.y3a{bottom:831.821577pt;}
.y166{bottom:834.478110pt;}
.y10d{bottom:837.853577pt;}
.y1ab{bottom:844.392641pt;}
.y39{bottom:845.153577pt;}
.yb0{bottom:846.652243pt;}
.y95{bottom:846.794910pt;}
.y165{bottom:847.812643pt;}
.y10c{bottom:853.346910pt;}
.y1aa{bottom:857.724641pt;}
.y38{bottom:858.485577pt;}
.y164{bottom:861.147177pt;}
.yaf{bottom:862.154910pt;}
.y94{bottom:862.297577pt;}
.y10b{bottom:863.342910pt;}
.y1a9{bottom:871.056641pt;}
.y37{bottom:871.817577pt;}
.y163{bottom:874.481710pt;}
.yae{bottom:877.657577pt;}
.y93{bottom:877.800243pt;}
.y10a{bottom:878.836243pt;}
.y6f{bottom:881.984782pt;}
.yad{bottom:882.650910pt;}
.y1a8{bottom:884.389974pt;}
.y36{bottom:885.150910pt;}
.y162{bottom:887.816243pt;}
.y109{bottom:888.832243pt;}
.y92{bottom:893.302910pt;}
.y35{bottom:898.482910pt;}
.y161{bottom:901.148377pt;}
.yac{bottom:903.146910pt;}
.y108{bottom:904.325577pt;}
.y91{bottom:908.805577pt;}
.y1a7{bottom:913.166243pt;}
.y107{bottom:914.321577pt;}
.y160{bottom:914.482910pt;}
.yab{bottom:918.649577pt;}
.y90{bottom:924.308243pt;}
.y1a6{bottom:924.496243pt;}
.y15f{bottom:927.816243pt;}
.y34{bottom:927.820243pt;}
.y106{bottom:929.814910pt;}
.y1a5{bottom:935.826243pt;}
.y8f{bottom:939.810910pt;}
.y15e{bottom:941.148377pt;}
.y33{bottom:941.152243pt;}
.y1a4{bottom:947.156243pt;}
.y15d{bottom:954.482910pt;}
.y32{bottom:954.484243pt;}
.y8e{bottom:955.313577pt;}
.y1a3{bottom:958.486243pt;}
.y31{bottom:967.816243pt;}
.y1a2{bottom:969.816243pt;}
.y8d{bottom:970.816243pt;}
.y30{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hd{height:27.728597pt;}
.h1d{height:31.476562pt;}
.h8{height:34.523438pt;}
.h15{height:36.922667pt;}
.h14{height:38.229333pt;}
.h21{height:39.560000pt;}
.h1f{height:40.080000pt;}
.h3{height:40.661333pt;}
.h20{height:40.960000pt;}
.h9{height:42.195312pt;}
.he{height:43.141927pt;}
.hf{height:46.784000pt;}
.hc{height:47.472000pt;}
.ha{height:47.999467pt;}
.h19{height:48.004267pt;}
.h12{height:48.023385pt;}
.h1a{height:48.023467pt;}
.h18{height:48.028267pt;}
.h1c{height:48.037867pt;}
.hb{height:48.096000pt;}
.h1b{height:48.630400pt;}
.h13{height:49.152000pt;}
.h2{height:50.755208pt;}
.h4{height:52.024089pt;}
.h10{height:53.703125pt;}
.h7{height:54.933268pt;}
.h1e{height:55.859375pt;}
.h16{height:56.933333pt;}
.h11{height:69.046875pt;}
.h17{height:76.906667pt;}
.h6{height:99.734375pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:21.138400pt;}
.x2{left:54.392400pt;}
.x6{left:125.291331pt;}
.xd{left:131.541066pt;}
.x4{left:207.516805pt;}
.x9{left:211.683472pt;}
.xe{left:217.230393pt;}
.xf{left:223.517333pt;}
.x7{left:226.190143pt;}
.xc{left:231.518533pt;}
.x11{left:267.195068pt;}
.xb{left:313.277333pt;}
.xa{left:356.089333pt;}
.x3{left:537.585327pt;}
.x10{left:725.336507pt;}
.x8{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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