
    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_4e4d7cd0fc87663c5d00e921.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_294e3bb13abd70405be9c52f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.124000;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_bffc670e5074b5020d8c2f02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006000;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_171de928973a867be2cd4d73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_f669f6ce950a6743fa0a5aa5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_90f99f8b225bfe6694e441ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_4adb7bacc5f9a7a06458d0d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926000;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_17f5ab77b23dfd009e1bd096.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_d272de2bf124ba82f515ccbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.840000;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_acd3370a2fae3757ceb5d6a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_cf1f260de63ee8ae338014f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011000;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_a518c46791dc50b9e22786a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968000;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_c6d46766d6994406a76a9350.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.429000;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_7fc3f8a080e6e4b5b61af71e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011000;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_8fefbb3c18f1fb52e76748d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.124000;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_7107570f8c517b0a348d8ac2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.454000;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_4210831f9971399750ff1674.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.vd{vertical-align:-16.428000px;}
.vb{vertical-align:-6.000000px;}
.v3{vertical-align:-4.932000px;}
.v8{vertical-align:-3.504000px;}
.v6{vertical-align:-1.152000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.968000px;}
.v7{vertical-align:4.296000px;}
.v5{vertical-align:5.448000px;}
.va{vertical-align:12.084000px;}
.v10{vertical-align:14.982000px;}
.v11{vertical-align:16.938000px;}
.ve{vertical-align:18.600000px;}
.v2{vertical-align:20.412000px;}
.v1{vertical-align:22.938000px;}
.vf{vertical-align:33.504000px;}
.vc{vertical-align:38.472000px;}
.v9{vertical-align:45.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000239px;}
.ls27{letter-spacing:0.000322px;}
.ls32{letter-spacing:0.000345px;}
.ls2e{letter-spacing:0.003303px;}
.ls11{letter-spacing:0.003476px;}
.ls1c{letter-spacing:1.176476px;}
.ls7{letter-spacing:1.344328px;}
.ls14{letter-spacing:1.539200px;}
.ls18{letter-spacing:1.542342px;}
.ls35{letter-spacing:1.593325px;}
.ls24{letter-spacing:1.593328px;}
.ls2a{letter-spacing:1.593401px;}
.ls1d{letter-spacing:1.596347px;}
.ls28{letter-spacing:1.599284px;}
.ls1f{letter-spacing:1.599302px;}
.ls2c{letter-spacing:1.599401px;}
.ls22{letter-spacing:2.724307px;}
.ls1b{letter-spacing:2.727292px;}
.ls19{letter-spacing:2.730307px;}
.ls12{letter-spacing:2.730330px;}
.lsc{letter-spacing:2.730347px;}
.ls25{letter-spacing:2.733292px;}
.lse{letter-spacing:2.733302px;}
.ls29{letter-spacing:2.987751px;}
.ls33{letter-spacing:2.988342px;}
.ls2f{letter-spacing:2.993751px;}
.ls15{letter-spacing:3.134967px;}
.lsb{letter-spacing:5.476250px;}
.ls0{letter-spacing:8.310514px;}
.ls9{letter-spacing:12.096342px;}
.ls10{letter-spacing:12.822322px;}
.lsf{letter-spacing:12.826250px;}
.ls13{letter-spacing:13.416322px;}
.ls1a{letter-spacing:13.926322px;}
.lsd{letter-spacing:14.175178px;}
.ls16{letter-spacing:15.417200px;}
.ls2d{letter-spacing:17.345751px;}
.ls5{letter-spacing:17.394342px;}
.ls21{letter-spacing:19.272421px;}
.ls23{letter-spacing:19.278286px;}
.ls26{letter-spacing:20.808322px;}
.ls30{letter-spacing:21.075286px;}
.ls31{letter-spacing:21.081286px;}
.ls2b{letter-spacing:22.817751px;}
.ls17{letter-spacing:27.921345px;}
.ls1e{letter-spacing:28.491345px;}
.ls3{letter-spacing:44.994684px;}
.ls6{letter-spacing:45.000684px;}
.ls4{letter-spacing:47.995140px;}
.ls2{letter-spacing:48.001140px;}
.ls20{letter-spacing:106.299178px;}
.lsa{letter-spacing:391.932482px;}
.ls8{letter-spacing:398.796482px;}
.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;}
}
.ws5{word-spacing:-59.399190px;}
.wsd0{word-spacing:-42.806549px;}
.ws31{word-spacing:-40.499460px;}
.wsd1{word-spacing:-39.671582px;}
.ws4{word-spacing:-29.699595px;}
.wscd{word-spacing:-29.231582px;}
.ws7a{word-spacing:-25.649730px;}
.ws6{word-spacing:-21.599730px;}
.ws85{word-spacing:-20.249730px;}
.ws23{word-spacing:-16.985821px;}
.wsa3{word-spacing:-16.928822px;}
.wse9{word-spacing:-16.871822px;}
.wsb9{word-spacing:-16.814823px;}
.ws12a{word-spacing:-16.700824px;}
.ws9c{word-spacing:-16.643825px;}
.ws26{word-spacing:-16.586825px;}
.ws83{word-spacing:-16.472827px;}
.wsc7{word-spacing:-16.415827px;}
.ws5f{word-spacing:-16.358828px;}
.ws55{word-spacing:-16.301828px;}
.wsc5{word-spacing:-16.244829px;}
.ws3{word-spacing:-16.199865px;}
.ws7c{word-spacing:-16.187830px;}
.wsff{word-spacing:-16.130830px;}
.ws5a{word-spacing:-16.073831px;}
.ws34{word-spacing:-15.959832px;}
.ws82{word-spacing:-15.902833px;}
.ws11a{word-spacing:-15.845833px;}
.ws24{word-spacing:-15.788834px;}
.ws1c{word-spacing:-15.731834px;}
.ws22{word-spacing:-15.674835px;}
.ws9b{word-spacing:-15.560836px;}
.wsc3{word-spacing:-15.503837px;}
.wsa6{word-spacing:-15.446837px;}
.wse2{word-spacing:-15.389838px;}
.ws8b{word-spacing:-15.332839px;}
.wsc2{word-spacing:-15.275839px;}
.ws40{word-spacing:-15.218840px;}
.ws44{word-spacing:-15.161840px;}
.ws8{word-spacing:-15.104841px;}
.ws7{word-spacing:-15.093354px;}
.ws7e{word-spacing:-15.047842px;}
.ws53{word-spacing:-14.933843px;}
.wsa5{word-spacing:-14.876843px;}
.ws9f{word-spacing:-14.819844px;}
.wsad{word-spacing:-14.762845px;}
.ws113{word-spacing:-14.705845px;}
.ws52{word-spacing:-14.591846px;}
.wsdf{word-spacing:-14.534847px;}
.wsb7{word-spacing:-14.477848px;}
.wsda{word-spacing:-14.420848px;}
.ws75{word-spacing:-14.363849px;}
.ws89{word-spacing:-14.306849px;}
.ws66{word-spacing:-14.249850px;}
.wsa0{word-spacing:-14.192851px;}
.wsdc{word-spacing:-14.135851px;}
.ws4e{word-spacing:-14.078852px;}
.ws79{word-spacing:-14.021852px;}
.ws61{word-spacing:-13.964853px;}
.ws33{word-spacing:-13.907854px;}
.ws18{word-spacing:-13.850854px;}
.ws74{word-spacing:-13.793855px;}
.ws3b{word-spacing:-13.736855px;}
.wsaf{word-spacing:-13.679856px;}
.wsfa{word-spacing:-13.622857px;}
.wscb{word-spacing:-13.565857px;}
.ws127{word-spacing:-13.508858px;}
.ws6a{word-spacing:-13.451858px;}
.ws80{word-spacing:-13.394859px;}
.ws68{word-spacing:-13.337860px;}
.ws11{word-spacing:-13.280860px;}
.wsf2{word-spacing:-13.109862px;}
.ws16{word-spacing:-13.052863px;}
.wsbf{word-spacing:-12.995863px;}
.ws42{word-spacing:-12.938864px;}
.ws45{word-spacing:-12.881864px;}
.wscc{word-spacing:-12.829957px;}
.wscf{word-spacing:-12.828218px;}
.wsce{word-spacing:-12.825350px;}
.ws2d{word-spacing:-12.824865px;}
.ws5b{word-spacing:-12.767866px;}
.wsd3{word-spacing:-12.736752px;}
.ws3f{word-spacing:-12.653867px;}
.ws25{word-spacing:-12.539868px;}
.wse6{word-spacing:-12.482869px;}
.ws60{word-spacing:-12.425869px;}
.wsae{word-spacing:-12.368870px;}
.ws115{word-spacing:-12.311870px;}
.ws122{word-spacing:-12.254871px;}
.ws43{word-spacing:-12.197872px;}
.ws2b{word-spacing:-12.140872px;}
.wsc1{word-spacing:-12.083873px;}
.ws20{word-spacing:-12.026873px;}
.wse0{word-spacing:-11.969874px;}
.wsca{word-spacing:-11.912875px;}
.ws41{word-spacing:-11.798876px;}
.wse7{word-spacing:-11.741876px;}
.ws37{word-spacing:-11.627878px;}
.wsb5{word-spacing:-11.570878px;}
.ws4d{word-spacing:-11.513879px;}
.wsb4{word-spacing:-11.456879px;}
.ws19{word-spacing:-11.399880px;}
.wsc9{word-spacing:-11.342881px;}
.ws9e{word-spacing:-11.285881px;}
.ws7b{word-spacing:-11.228882px;}
.ws21{word-spacing:-11.171882px;}
.ws27{word-spacing:-11.114883px;}
.ws69{word-spacing:-11.057884px;}
.ws8d{word-spacing:-10.943885px;}
.ws4c{word-spacing:-10.886885px;}
.ws7d{word-spacing:-10.829886px;}
.wsa1{word-spacing:-10.804223px;}
.wsd7{word-spacing:-10.804153px;}
.wsea{word-spacing:-10.804138px;}
.ws125{word-spacing:-10.804136px;}
.ws2{word-spacing:-10.799865px;}
.wsa{word-spacing:-10.772887px;}
.ws98{word-spacing:-10.715887px;}
.wsd4{word-spacing:-10.702752px;}
.ws4b{word-spacing:-10.658888px;}
.ws64{word-spacing:-10.601888px;}
.ws0{word-spacing:-10.583849px;}
.ws71{word-spacing:-10.544889px;}
.ws62{word-spacing:-10.487890px;}
.wsf6{word-spacing:-10.430890px;}
.wse{word-spacing:-10.373891px;}
.ws129{word-spacing:-10.316891px;}
.ws51{word-spacing:-10.259892px;}
.wsc0{word-spacing:-10.202893px;}
.wsdd{word-spacing:-10.145893px;}
.wsf3{word-spacing:-10.088894px;}
.ws15{word-spacing:-10.031894px;}
.ws2c{word-spacing:-9.974895px;}
.wsf5{word-spacing:-9.917896px;}
.wsfd{word-spacing:-9.860896px;}
.wsb8{word-spacing:-9.803897px;}
.ws58{word-spacing:-9.746897px;}
.ws94{word-spacing:-9.689898px;}
.ws28{word-spacing:-9.632899px;}
.wsee{word-spacing:-9.575899px;}
.ws2e{word-spacing:-9.527983px;}
.ws2f{word-spacing:-9.518900px;}
.wsbc{word-spacing:-9.503046px;}
.wsbd{word-spacing:-9.502874px;}
.wsa2{word-spacing:-9.461900px;}
.ws1{word-spacing:-9.449865px;}
.ws8c{word-spacing:-9.404901px;}
.wsa7{word-spacing:-9.347902px;}
.wsd9{word-spacing:-9.233903px;}
.wsf8{word-spacing:-9.176903px;}
.ws67{word-spacing:-9.062905px;}
.ws73{word-spacing:-9.005905px;}
.wsd5{word-spacing:-8.998146px;}
.wsd6{word-spacing:-8.992733px;}
.wsb3{word-spacing:-8.891906px;}
.wsa8{word-spacing:-8.834907px;}
.wsd{word-spacing:-8.777908px;}
.ws11f{word-spacing:-8.720908px;}
.ws111{word-spacing:-8.663909px;}
.wsfe{word-spacing:-8.606909px;}
.ws1e{word-spacing:-8.492911px;}
.wsa9{word-spacing:-8.378912px;}
.ws3c{word-spacing:-8.321912px;}
.ws3a{word-spacing:-8.264913px;}
.ws3d{word-spacing:-8.207914px;}
.wsb{word-spacing:-8.150914px;}
.ws46{word-spacing:-8.093915px;}
.ws1f{word-spacing:-8.036915px;}
.wsf1{word-spacing:-7.979916px;}
.ws39{word-spacing:-7.922917px;}
.wsab{word-spacing:-7.865917px;}
.ws96{word-spacing:-7.751918px;}
.ws97{word-spacing:-7.694919px;}
.ws119{word-spacing:-7.637920px;}
.ws49{word-spacing:-7.523921px;}
.ws1b{word-spacing:-7.466921px;}
.ws9d{word-spacing:-7.409922px;}
.ws88{word-spacing:-7.295923px;}
.wsb0{word-spacing:-7.238924px;}
.wsb1{word-spacing:-7.181924px;}
.ws63{word-spacing:-7.124925px;}
.ws6c{word-spacing:-7.067926px;}
.wsc8{word-spacing:-7.010926px;}
.ws8a{word-spacing:-6.839928px;}
.ws47{word-spacing:-6.782929px;}
.ws90{word-spacing:-6.725929px;}
.ws6e{word-spacing:-6.668930px;}
.ws3e{word-spacing:-6.611930px;}
.ws5c{word-spacing:-6.554931px;}
.wsd8{word-spacing:-6.440932px;}
.ws10{word-spacing:-6.383933px;}
.ws118{word-spacing:-6.326933px;}
.wsb2{word-spacing:-6.212935px;}
.wsf{word-spacing:-6.155935px;}
.wsf4{word-spacing:-6.098936px;}
.ws92{word-spacing:-6.041936px;}
.ws30{word-spacing:-5.927938px;}
.ws1a{word-spacing:-5.870938px;}
.wse8{word-spacing:-5.813939px;}
.wsaa{word-spacing:-5.756939px;}
.ws36{word-spacing:-5.699940px;}
.ws54{word-spacing:-5.642941px;}
.ws32{word-spacing:-5.585941px;}
.wsde{word-spacing:-5.528942px;}
.ws65{word-spacing:-5.471942px;}
.ws5e{word-spacing:-5.414943px;}
.ws76{word-spacing:-5.357944px;}
.ws56{word-spacing:-5.300944px;}
.ws78{word-spacing:-5.243945px;}
.ws72{word-spacing:-5.186945px;}
.ws35{word-spacing:-5.129946px;}
.wsf9{word-spacing:-5.072947px;}
.ws81{word-spacing:-5.015947px;}
.ws6b{word-spacing:-4.958948px;}
.ws50{word-spacing:-4.901948px;}
.wse4{word-spacing:-4.844949px;}
.wsa4{word-spacing:-4.616951px;}
.wsf7{word-spacing:-4.559952px;}
.ws13{word-spacing:-4.502953px;}
.wsef{word-spacing:-4.331954px;}
.wse3{word-spacing:-4.274955px;}
.ws59{word-spacing:-4.160956px;}
.wsba{word-spacing:-4.103957px;}
.wsed{word-spacing:-4.046957px;}
.ws95{word-spacing:-3.989958px;}
.ws70{word-spacing:-3.932959px;}
.wsc{word-spacing:-3.875959px;}
.wsac{word-spacing:-3.818960px;}
.ws14{word-spacing:-3.761960px;}
.ws99{word-spacing:-3.704961px;}
.ws4a{word-spacing:-3.647962px;}
.ws6d{word-spacing:-3.590962px;}
.ws12b{word-spacing:-3.533963px;}
.ws101{word-spacing:-3.476963px;}
.ws116{word-spacing:-3.419964px;}
.ws1d{word-spacing:-3.305965px;}
.ws11c{word-spacing:-3.134967px;}
.ws9{word-spacing:-3.077968px;}
.ws100{word-spacing:-3.020968px;}
.wsf0{word-spacing:-2.906969px;}
.ws7f{word-spacing:-2.849970px;}
.ws38{word-spacing:-2.678972px;}
.ws57{word-spacing:-2.621972px;}
.ws93{word-spacing:-2.564973px;}
.ws11b{word-spacing:-2.507974px;}
.ws124{word-spacing:-2.450974px;}
.wse1{word-spacing:-2.393975px;}
.ws48{word-spacing:-2.222977px;}
.wsdb{word-spacing:-2.108978px;}
.ws117{word-spacing:-1.937980px;}
.wsc6{word-spacing:-1.880980px;}
.wsc4{word-spacing:-1.766981px;}
.ws84{word-spacing:-1.709982px;}
.wsbe{word-spacing:-1.652983px;}
.ws29{word-spacing:-1.538984px;}
.ws105{word-spacing:-1.196987px;}
.ws9a{word-spacing:-1.139988px;}
.ws110{word-spacing:-0.569994px;}
.ws17{word-spacing:-0.512995px;}
.wse5{word-spacing:-0.455995px;}
.ws126{word-spacing:-0.398996px;}
.ws8e{word-spacing:-0.341996px;}
.ws10f{word-spacing:-0.284997px;}
.ws11e{word-spacing:-0.227998px;}
.wsfc{word-spacing:-0.170998px;}
.ws5d{word-spacing:-0.056999px;}
.ws10c{word-spacing:-0.053999px;}
.ws120{word-spacing:-0.047999px;}
.ws2a{word-spacing:0.000000px;}
.ws6f{word-spacing:0.056999px;}
.ws10e{word-spacing:0.113999px;}
.ws12{word-spacing:0.284997px;}
.ws8f{word-spacing:0.626993px;}
.ws128{word-spacing:0.911990px;}
.ws10a{word-spacing:0.968990px;}
.ws10d{word-spacing:1.139988px;}
.ws123{word-spacing:1.196987px;}
.ws112{word-spacing:1.253987px;}
.ws12c{word-spacing:1.310986px;}
.ws4f{word-spacing:3.077968px;}
.wsd2{word-spacing:3.359952px;}
.wsb6{word-spacing:3.595126px;}
.ws86{word-spacing:3.601126px;}
.ws91{word-spacing:4.331954px;}
.ws104{word-spacing:4.730950px;}
.ws106{word-spacing:5.699940px;}
.ws10b{word-spacing:6.072819px;}
.ws107{word-spacing:7.409922px;}
.ws108{word-spacing:8.093915px;}
.ws109{word-spacing:8.435911px;}
.wsfb{word-spacing:10.974819px;}
.ws87{word-spacing:11.912875px;}
.ws114{word-spacing:13.548819px;}
.wseb{word-spacing:13.756502px;}
.ws103{word-spacing:15.617836px;}
.wsbb{word-spacing:22.350911px;}
.wsec{word-spacing:22.353908px;}
.ws77{word-spacing:22.353909px;}
.ws11d{word-spacing:22.353921px;}
.ws12d{word-spacing:22.353933px;}
.ws121{word-spacing:33.971642px;}
.ws102{word-spacing:59.393375px;}
._6{margin-left:-8.447894px;}
._f{margin-left:-5.744946px;}
._4{margin-left:-4.607992px;}
._d{margin-left:-3.476963px;}
._5{margin-left:-2.291969px;}
._1{margin-left:-1.007986px;}
._2{width:1.007986px;}
._7{width:2.735966px;}
._27{width:3.738832px;}
._26{width:5.280832px;}
._2d{width:7.979916px;}
._17{width:9.176903px;}
._2b{width:11.495875px;}
._8{width:13.217851px;}
._16{width:14.660839px;}
._e{width:15.857827px;}
._a{width:18.023804px;}
._2a{width:19.175785px;}
._c{width:21.284763px;}
._28{width:22.889745px;}
._b{width:24.032728px;}
._2c{width:27.587683px;}
._29{width:30.305677px;}
._10{width:36.530605px;}
._9{width:47.662538px;}
._15{width:55.802413px;}
._13{width:56.810398px;}
._12{width:61.046357px;}
._11{width:63.326333px;}
._14{width:68.126266px;}
._1a{width:212.793496px;}
._1b{width:267.328234px;}
._0{width:297.435478px;}
._21{width:348.013954px;}
._24{width:355.598537px;}
._25{width:369.278537px;}
._1e{width:372.926740px;}
._1d{width:382.237441px;}
._20{width:390.415645px;}
._23{width:398.461238px;}
._18{width:403.066824px;}
._1f{width:404.731959px;}
._1c{width:410.251959px;}
._22{width:418.411959px;}
._19{width:767.172323px;}
._3{width:1979.191507px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.724800px;}
.fs7{font-size:35.999400px;}
.fs0{font-size:41.999400px;}
.fs1{font-size:47.999400px;}
.fs8{font-size:53.999400px;}
.fs4{font-size:56.999400px;}
.fs2{font-size:71.999400px;}
.fs5{font-size:89.998800px;}
.fs3{font-size:131.998200px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.373000px;}
.y1{bottom:65.373000px;}
.yba{bottom:103.504500px;}
.y87{bottom:103.506000px;}
.y33{bottom:103.507500px;}
.y19e{bottom:107.301000px;}
.y1d6{bottom:108.756000px;}
.y180{bottom:109.594500px;}
.y141{bottom:109.599000px;}
.y15f{bottom:113.256000px;}
.ye4{bottom:114.115500px;}
.y106{bottom:115.044000px;}
.y57{bottom:115.531500px;}
.y32{bottom:120.007500px;}
.y11a{bottom:120.616500px;}
.yb9{bottom:123.004500px;}
.y86{bottom:123.006000px;}
.y1d5{bottom:125.256000px;}
.y19d{bottom:126.801000px;}
.y17f{bottom:129.094500px;}
.y140{bottom:129.099000px;}
.y105{bottom:131.544000px;}
.y16e{bottom:131.964000px;}
.y15e{bottom:132.756000px;}
.ye3{bottom:133.615500px;}
.y56{bottom:135.031500px;}
.y31{bottom:136.507500px;}
.y119{bottom:140.116500px;}
.y1d4{bottom:141.756000px;}
.yb8{bottom:142.504500px;}
.y85{bottom:142.506000px;}
.y19c{bottom:146.301000px;}
.y104{bottom:148.044000px;}
.y16d{bottom:148.464000px;}
.y17e{bottom:148.594500px;}
.y13f{bottom:148.599000px;}
.y145{bottom:151.176000px;}
.y15d{bottom:152.256000px;}
.y30{bottom:153.007500px;}
.ye2{bottom:153.115500px;}
.y55{bottom:154.531500px;}
.y1d3{bottom:158.256000px;}
.y118{bottom:159.616500px;}
.yb7{bottom:162.004500px;}
.y84{bottom:162.006000px;}
.y16c{bottom:164.964000px;}
.y19b{bottom:165.801000px;}
.y144{bottom:167.676000px;}
.y17d{bottom:168.094500px;}
.y13e{bottom:168.099000px;}
.y2f{bottom:169.507500px;}
.y15c{bottom:171.756000px;}
.ye1{bottom:172.615500px;}
.y54{bottom:174.031500px;}
.y1d2{bottom:174.756000px;}
.y117{bottom:179.116500px;}
.y16b{bottom:181.464000px;}
.yb6{bottom:181.504500px;}
.y83{bottom:181.506000px;}
.y143{bottom:184.176000px;}
.y19a{bottom:185.301000px;}
.y2e{bottom:186.007500px;}
.y17c{bottom:187.594500px;}
.y13d{bottom:187.599000px;}
.y15b{bottom:191.256000px;}
.ye0{bottom:192.115500px;}
.y53{bottom:193.531500px;}
.y116{bottom:198.616500px;}
.y142{bottom:200.676000px;}
.yb5{bottom:201.004500px;}
.y82{bottom:201.006000px;}
.y2d{bottom:202.507500px;}
.y199{bottom:204.801000px;}
.y17b{bottom:207.094500px;}
.y13c{bottom:207.099000px;}
.y1d1{bottom:207.756000px;}
.y15a{bottom:210.756000px;}
.ydf{bottom:211.615500px;}
.y52{bottom:213.031500px;}
.y115{bottom:218.116500px;}
.y2c{bottom:219.007500px;}
.yb4{bottom:220.504500px;}
.y81{bottom:220.506000px;}
.y1d0{bottom:224.256000px;}
.y198{bottom:224.301000px;}
.y17a{bottom:226.594500px;}
.y13b{bottom:226.599000px;}
.y159{bottom:230.256000px;}
.yde{bottom:231.115500px;}
.y51{bottom:232.531500px;}
.y2b{bottom:235.507500px;}
.y206{bottom:237.006000px;}
.y114{bottom:237.616500px;}
.yb3{bottom:240.004500px;}
.y80{bottom:240.006000px;}
.y1cf{bottom:240.756000px;}
.y197{bottom:243.801000px;}
.y179{bottom:246.094500px;}
.y13a{bottom:246.099000px;}
.y158{bottom:249.756000px;}
.ydd{bottom:250.615500px;}
.y2a{bottom:252.007500px;}
.y50{bottom:252.031500px;}
.y205{bottom:253.506000px;}
.y113{bottom:257.116500px;}
.y1ce{bottom:257.256000px;}
.yb2{bottom:259.504500px;}
.y7f{bottom:259.506000px;}
.y196{bottom:263.301000px;}
.y178{bottom:265.594500px;}
.y139{bottom:265.599000px;}
.y29{bottom:268.507500px;}
.y157{bottom:269.256000px;}
.y204{bottom:270.006000px;}
.ydc{bottom:270.115500px;}
.y4f{bottom:271.531500px;}
.y1cd{bottom:273.756000px;}
.y112{bottom:276.616500px;}
.ye6{bottom:276.865500px;}
.yb1{bottom:279.004500px;}
.y7e{bottom:279.006000px;}
.y195{bottom:282.801000px;}
.y28{bottom:285.007500px;}
.y177{bottom:285.094500px;}
.y138{bottom:285.099000px;}
.y203{bottom:286.506000px;}
.y156{bottom:288.756000px;}
.ydb{bottom:289.615500px;}
.y1cc{bottom:290.256000px;}
.y4e{bottom:291.031500px;}
.y111{bottom:296.116500px;}
.yb0{bottom:298.504500px;}
.y7d{bottom:298.506000px;}
.y27{bottom:301.507500px;}
.y194{bottom:302.301000px;}
.y202{bottom:303.006000px;}
.y176{bottom:304.594500px;}
.y137{bottom:304.599000px;}
.y1cb{bottom:306.756000px;}
.y155{bottom:308.256000px;}
.yda{bottom:309.115500px;}
.y4d{bottom:310.531500px;}
.y110{bottom:315.616500px;}
.yaf{bottom:318.004500px;}
.y7c{bottom:318.006000px;}
.y26{bottom:318.007500px;}
.ye5{bottom:318.865500px;}
.y201{bottom:319.506000px;}
.y193{bottom:321.801000px;}
.y1ca{bottom:323.256000px;}
.y175{bottom:324.094500px;}
.y136{bottom:324.099000px;}
.y154{bottom:327.756000px;}
.yd9{bottom:328.615500px;}
.y4c{bottom:330.031500px;}
.y25{bottom:334.507500px;}
.y10f{bottom:335.116500px;}
.y200{bottom:336.006000px;}
.yae{bottom:337.504500px;}
.y7b{bottom:337.506000px;}
.y1c9{bottom:339.756000px;}
.y192{bottom:341.301000px;}
.y174{bottom:343.594500px;}
.y135{bottom:343.599000px;}
.y153{bottom:347.256000px;}
.yd8{bottom:348.115500px;}
.y4b{bottom:349.531500px;}
.y24{bottom:351.007500px;}
.y1ff{bottom:352.506000px;}
.y10e{bottom:354.616500px;}
.y1c8{bottom:356.256000px;}
.yad{bottom:357.004500px;}
.y7a{bottom:357.006000px;}
.y173{bottom:363.094500px;}
.y134{bottom:363.099000px;}
.y152{bottom:366.756000px;}
.y23{bottom:367.507500px;}
.yd7{bottom:367.615500px;}
.y1fe{bottom:369.006000px;}
.y4a{bottom:369.031500px;}
.y1c7{bottom:372.756000px;}
.y10d{bottom:374.116500px;}
.yac{bottom:376.504500px;}
.y79{bottom:376.506000px;}
.y191{bottom:380.301000px;}
.y133{bottom:382.599000px;}
.y22{bottom:384.007500px;}
.y1fd{bottom:385.506000px;}
.y151{bottom:386.256000px;}
.yd6{bottom:387.115500px;}
.y49{bottom:388.531500px;}
.y1c6{bottom:389.256000px;}
.y10c{bottom:393.616500px;}
.yab{bottom:396.004500px;}
.y78{bottom:396.006000px;}
.y21{bottom:400.507500px;}
.y1fc{bottom:402.006000px;}
.y132{bottom:402.099000px;}
.y150{bottom:405.756000px;}
.yd5{bottom:406.615500px;}
.y48{bottom:408.031500px;}
.y10b{bottom:413.116500px;}
.y172{bottom:413.760000px;}
.yaa{bottom:415.504500px;}
.y77{bottom:415.506000px;}
.y20{bottom:417.007500px;}
.y1fb{bottom:418.506000px;}
.y131{bottom:421.599000px;}
.y1c5{bottom:422.256000px;}
.y14f{bottom:425.256000px;}
.yd4{bottom:426.115500px;}
.y47{bottom:427.531500px;}
.y171{bottom:430.260000px;}
.y16a{bottom:432.472500px;}
.y10a{bottom:432.616500px;}
.y1f{bottom:433.507500px;}
.ya9{bottom:435.004500px;}
.y76{bottom:435.006000px;}
.y1c4{bottom:438.756000px;}
.y130{bottom:441.099000px;}
.y14e{bottom:444.756000px;}
.yd3{bottom:445.615500px;}
.y46{bottom:447.031500px;}
.y190{bottom:448.551000px;}
.y1e{bottom:450.007500px;}
.y1fa{bottom:451.506000px;}
.y169{bottom:451.972500px;}
.y109{bottom:452.116500px;}
.ya8{bottom:454.504500px;}
.y75{bottom:454.506000px;}
.y1c3{bottom:455.256000px;}
.y12f{bottom:460.599000px;}
.y170{bottom:461.008500px;}
.y14d{bottom:464.256000px;}
.yd2{bottom:465.115500px;}
.y1d{bottom:466.507500px;}
.y45{bottom:466.531500px;}
.y1f9{bottom:468.006000px;}
.y18f{bottom:468.051000px;}
.y168{bottom:471.472500px;}
.y108{bottom:471.616500px;}
.y1c2{bottom:471.756000px;}
.ya7{bottom:474.004500px;}
.y74{bottom:474.006000px;}
.y1c{bottom:483.007500px;}
.y14c{bottom:483.756000px;}
.y1f8{bottom:484.506000px;}
.yd1{bottom:484.615500px;}
.y44{bottom:486.031500px;}
.y18e{bottom:487.551000px;}
.y1c1{bottom:488.256000px;}
.y167{bottom:490.972500px;}
.y107{bottom:491.116500px;}
.ya6{bottom:493.504500px;}
.y73{bottom:493.506000px;}
.y1b{bottom:499.507500px;}
.y1f7{bottom:501.006000px;}
.y14b{bottom:503.256000px;}
.yd0{bottom:504.115500px;}
.y1c0{bottom:504.756000px;}
.y43{bottom:505.531500px;}
.y18d{bottom:507.051000px;}
.y166{bottom:510.472500px;}
.y103{bottom:510.616500px;}
.y12e{bottom:511.555500px;}
.ya5{bottom:513.004500px;}
.y72{bottom:513.006000px;}
.y1a{bottom:516.007500px;}
.y1f6{bottom:517.506000px;}
.y1bf{bottom:521.256000px;}
.y14a{bottom:522.756000px;}
.ycf{bottom:523.615500px;}
.y42{bottom:525.031500px;}
.y18c{bottom:526.551000px;}
.y12d{bottom:528.055500px;}
.y102{bottom:530.116500px;}
.ya4{bottom:532.504500px;}
.y71{bottom:532.506000px;}
.y19{bottom:532.507500px;}
.y1f5{bottom:534.006000px;}
.y1be{bottom:537.756000px;}
.y149{bottom:542.256000px;}
.yce{bottom:543.115500px;}
.y41{bottom:544.531500px;}
.y12c{bottom:544.555500px;}
.y18b{bottom:546.051000px;}
.y18{bottom:549.007500px;}
.y101{bottom:549.616500px;}
.y1f4{bottom:550.506000px;}
.ya3{bottom:552.004500px;}
.y70{bottom:552.006000px;}
.y1bd{bottom:554.256000px;}
.y165{bottom:558.922500px;}
.y12b{bottom:561.055500px;}
.y148{bottom:561.756000px;}
.ycd{bottom:562.615500px;}
.y40{bottom:564.031500px;}
.y17{bottom:565.507500px;}
.y18a{bottom:565.551000px;}
.y1f3{bottom:567.006000px;}
.yc2{bottom:568.506000px;}
.y100{bottom:569.116500px;}
.y1bc{bottom:570.756000px;}
.ya2{bottom:571.504500px;}
.y6f{bottom:571.506000px;}
.y164{bottom:575.422500px;}
.y147{bottom:581.256000px;}
.y16{bottom:582.007500px;}
.ycc{bottom:582.115500px;}
.y1f2{bottom:583.506000px;}
.y3f{bottom:583.531500px;}
.y189{bottom:585.051000px;}
.y1bb{bottom:587.256000px;}
.yff{bottom:588.616500px;}
.ya1{bottom:591.004500px;}
.y6e{bottom:591.006000px;}
.y163{bottom:591.922500px;}
.y15{bottom:598.507500px;}
.y1f1{bottom:600.006000px;}
.y146{bottom:600.756000px;}
.ycb{bottom:601.615500px;}
.y3e{bottom:603.031500px;}
.y1ba{bottom:603.756000px;}
.y188{bottom:604.551000px;}
.yfe{bottom:608.116500px;}
.y162{bottom:608.422500px;}
.ya0{bottom:610.504500px;}
.y6d{bottom:610.506000px;}
.y14{bottom:615.007500px;}
.y1f0{bottom:616.506000px;}
.y1b9{bottom:620.256000px;}
.yca{bottom:621.115500px;}
.y3d{bottom:622.531500px;}
.y187{bottom:624.051000px;}
.yfd{bottom:627.616500px;}
.y9f{bottom:630.004500px;}
.y6c{bottom:630.006000px;}
.y13{bottom:631.507500px;}
.y1ef{bottom:633.006000px;}
.y1b8{bottom:636.756000px;}
.yc1{bottom:639.756000px;}
.yc9{bottom:640.615500px;}
.y3c{bottom:642.031500px;}
.y186{bottom:643.551000px;}
.yfc{bottom:647.116500px;}
.y12{bottom:648.007500px;}
.y9e{bottom:649.504500px;}
.y6b{bottom:649.506000px;}
.y1b7{bottom:653.256000px;}
.yc8{bottom:660.115500px;}
.y3b{bottom:661.531500px;}
.y185{bottom:663.051000px;}
.y11{bottom:664.507500px;}
.y1ee{bottom:666.006000px;}
.yfb{bottom:666.616500px;}
.y9d{bottom:669.004500px;}
.y6a{bottom:669.006000px;}
.y1b6{bottom:669.756000px;}
.yc7{bottom:679.615500px;}
.y10{bottom:681.007500px;}
.y3a{bottom:681.031500px;}
.y1ed{bottom:682.506000px;}
.y184{bottom:682.551000px;}
.yfa{bottom:686.116500px;}
.y1b5{bottom:686.256000px;}
.y9c{bottom:688.504500px;}
.y69{bottom:688.506000px;}
.y16f{bottom:696.115500px;}
.yf{bottom:697.507500px;}
.y1ec{bottom:699.006000px;}
.y39{bottom:700.531500px;}
.y1b4{bottom:702.756000px;}
.yf9{bottom:705.616500px;}
.y9b{bottom:708.004500px;}
.y68{bottom:708.006000px;}
.ye{bottom:714.007500px;}
.y1eb{bottom:715.506000px;}
.y1b3{bottom:719.256000px;}
.y38{bottom:720.031500px;}
.yf8{bottom:725.116500px;}
.y9a{bottom:727.504500px;}
.y67{bottom:727.506000px;}
.yc6{bottom:728.065500px;}
.y1ea{bottom:732.006000px;}
.y183{bottom:734.013000px;}
.y1b2{bottom:735.756000px;}
.y37{bottom:739.531500px;}
.yc5{bottom:744.565500px;}
.yf7{bottom:744.616500px;}
.y99{bottom:747.004500px;}
.y66{bottom:747.006000px;}
.y1e9{bottom:748.506000px;}
.y182{bottom:750.513000px;}
.y1b1{bottom:752.256000px;}
.y36{bottom:759.031500px;}
.yc4{bottom:761.065500px;}
.yf6{bottom:764.116500px;}
.y1e8{bottom:765.006000px;}
.y98{bottom:766.504500px;}
.y65{bottom:766.506000px;}
.y181{bottom:767.013000px;}
.y1b0{bottom:768.756000px;}
.yc3{bottom:777.565500px;}
.y35{bottom:778.531500px;}
.y1e7{bottom:781.506000px;}
.yd{bottom:781.530000px;}
.yf5{bottom:783.616500px;}
.y1af{bottom:785.256000px;}
.y97{bottom:786.004500px;}
.y64{bottom:786.006000px;}
.y1e6{bottom:798.006000px;}
.yc{bottom:798.030000px;}
.y34{bottom:798.031500px;}
.y1ae{bottom:801.756000px;}
.yf4{bottom:803.116500px;}
.y96{bottom:805.504500px;}
.y63{bottom:805.506000px;}
.y1e5{bottom:814.506000px;}
.y1ad{bottom:818.256000px;}
.yf3{bottom:822.616500px;}
.y95{bottom:825.004500px;}
.y62{bottom:825.006000px;}
.y1e4{bottom:831.006000px;}
.y1ac{bottom:834.756000px;}
.yb{bottom:839.106000px;}
.yf2{bottom:842.116500px;}
.y94{bottom:844.504500px;}
.y61{bottom:844.506000px;}
.y1e3{bottom:847.506000px;}
.y1ab{bottom:851.256000px;}
.y161{bottom:854.749500px;}
.y93{bottom:864.004500px;}
.y60{bottom:864.006000px;}
.y1aa{bottom:867.756000px;}
.y160{bottom:871.249500px;}
.ya{bottom:878.106000px;}
.y1e2{bottom:880.506000px;}
.y92{bottom:883.504500px;}
.y5f{bottom:883.506000px;}
.y1a9{bottom:884.256000px;}
.yf1{bottom:893.754000px;}
.y1e1{bottom:897.006000px;}
.y1a8{bottom:900.756000px;}
.y12a{bottom:901.734000px;}
.y91{bottom:903.004500px;}
.yc0{bottom:903.006000px;}
.yf0{bottom:910.185000px;}
.y1e0{bottom:913.506000px;}
.y9{bottom:917.106000px;}
.y1a7{bottom:917.256000px;}
.y129{bottom:921.234000px;}
.y90{bottom:922.504500px;}
.y5e{bottom:922.506000px;}
.yef{bottom:926.844000px;}
.y1df{bottom:930.006000px;}
.y1a6{bottom:933.756000px;}
.y128{bottom:940.734000px;}
.y8f{bottom:942.004500px;}
.ybf{bottom:942.006000px;}
.yee{bottom:945.016500px;}
.y1de{bottom:946.506000px;}
.y1a5{bottom:950.256000px;}
.y8{bottom:956.106000px;}
.yed{bottom:960.949500px;}
.y8e{bottom:961.504500px;}
.ybe{bottom:961.506000px;}
.y1dd{bottom:963.006000px;}
.y1a4{bottom:966.756000px;}
.y124{bottom:971.017500px;}
.y5d{bottom:971.256000px;}
.yec{bottom:977.380500px;}
.y11c{bottom:979.197000px;}
.y1dc{bottom:979.506000px;}
.y8d{bottom:981.004500px;}
.ybd{bottom:981.006000px;}
.y1a3{bottom:983.256000px;}
.y127{bottom:984.607500px;}
.y126{bottom:985.468500px;}
.y11b{bottom:988.353000px;}
.y5c{bottom:990.756000px;}
.y125{bottom:991.374000px;}
.y121{bottom:992.367000px;}
.yeb{bottom:994.039500px;}
.y7{bottom:995.106000px;}
.y1db{bottom:996.006000px;}
.y11d{bottom:997.084500px;}
.y1a2{bottom:999.756000px;}
.y8c{bottom:1000.504500px;}
.ybc{bottom:1000.506000px;}
.y120{bottom:1000.917000px;}
.y123{bottom:1001.703000px;}
.y122{bottom:1005.978000px;}
.y11f{bottom:1009.467000px;}
.y5b{bottom:1010.256000px;}
.yea{bottom:1012.212000px;}
.y1da{bottom:1012.506000px;}
.y1a1{bottom:1016.256000px;}
.y11e{bottom:1017.447000px;}
.y6{bottom:1017.606000px;}
.y8b{bottom:1020.004500px;}
.ybb{bottom:1020.006000px;}
.y1d9{bottom:1029.006000px;}
.ye9{bottom:1029.309000px;}
.y1a0{bottom:1032.756000px;}
.y8a{bottom:1039.504500px;}
.y5a{bottom:1039.506000px;}
.y5{bottom:1040.106000px;}
.ye8{bottom:1040.706000px;}
.y1d8{bottom:1045.506000px;}
.y89{bottom:1059.004500px;}
.y59{bottom:1059.006000px;}
.y1d7{bottom:1062.006000px;}
.y19f{bottom:1068.756000px;}
.y88{bottom:1078.504500px;}
.y58{bottom:1078.506000px;}
.y4{bottom:1079.106000px;}
.ye7{bottom:1081.206000px;}
.y3{bottom:1128.897000px;}
.h14{height:2.279976px;}
.h15{height:30.743561px;}
.h16{height:32.549535px;}
.h1c{height:37.199535px;}
.hc{height:37.535531px;}
.h2{height:38.261453px;}
.hf{height:42.191531px;}
.he{height:42.467531px;}
.hd{height:42.983531px;}
.h3{height:43.727453px;}
.h10{height:44.159531px;}
.h8{height:44.174535px;}
.h7{height:44.573531px;}
.h12{height:47.699976px;}
.h17{height:51.149535px;}
.ha{height:55.487535px;}
.h1b{height:55.493535px;}
.h11{height:56.258535px;}
.h4{height:56.303531px;}
.hb{height:57.947531px;}
.h1a{height:59.156535px;}
.h5{height:65.591453px;}
.h19{height:66.053535px;}
.h18{height:67.796535px;}
.h9{height:70.379062px;}
.h13{height:80.195561px;}
.h6{height:103.222592px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.536000px;}
.x2{left:87.589500px;}
.x3{left:93.543000px;}
.x1{left:100.539000px;}
.x7{left:102.046500px;}
.xb{left:117.618000px;}
.xa{left:119.055000px;}
.x10{left:122.350500px;}
.xe{left:132.162000px;}
.x11{left:160.758000px;}
.x13{left:178.041000px;}
.x15{left:196.317000px;}
.x14{left:210.246000px;}
.x16{left:227.997000px;}
.xf{left:263.856000px;}
.x17{left:268.816500px;}
.x19{left:284.142000px;}
.x5{left:285.708000px;}
.x12{left:287.005500px;}
.xd{left:288.687000px;}
.x18{left:293.106000px;}
.x1a{left:314.877000px;}
.x1b{left:322.813500px;}
.x1c{left:356.337000px;}
.x1d{left:364.188000px;}
.x8{left:446.457000px;}
.x4{left:463.464000px;}
.x9{left:471.969000px;}
.xc{left:488.976000px;}
@media print{
.vd{vertical-align:-14.602667pt;}
.vb{vertical-align:-5.333333pt;}
.v3{vertical-align:-4.384000pt;}
.v8{vertical-align:-3.114667pt;}
.v6{vertical-align:-1.024000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.749333pt;}
.v7{vertical-align:3.818667pt;}
.v5{vertical-align:4.842667pt;}
.va{vertical-align:10.741333pt;}
.v10{vertical-align:13.317333pt;}
.v11{vertical-align:15.056000pt;}
.ve{vertical-align:16.533333pt;}
.v2{vertical-align:18.144000pt;}
.v1{vertical-align:20.389333pt;}
.vf{vertical-align:29.781333pt;}
.vc{vertical-align:34.197333pt;}
.v9{vertical-align:40.373333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000212pt;}
.ls27{letter-spacing:0.000286pt;}
.ls32{letter-spacing:0.000307pt;}
.ls2e{letter-spacing:0.002936pt;}
.ls11{letter-spacing:0.003090pt;}
.ls1c{letter-spacing:1.045756pt;}
.ls7{letter-spacing:1.194958pt;}
.ls14{letter-spacing:1.368178pt;}
.ls18{letter-spacing:1.370971pt;}
.ls35{letter-spacing:1.416289pt;}
.ls24{letter-spacing:1.416292pt;}
.ls2a{letter-spacing:1.416357pt;}
.ls1d{letter-spacing:1.418975pt;}
.ls28{letter-spacing:1.421586pt;}
.ls1f{letter-spacing:1.421602pt;}
.ls2c{letter-spacing:1.421690pt;}
.ls22{letter-spacing:2.421606pt;}
.ls1b{letter-spacing:2.424260pt;}
.ls19{letter-spacing:2.426940pt;}
.ls12{letter-spacing:2.426960pt;}
.lsc{letter-spacing:2.426975pt;}
.ls25{letter-spacing:2.429593pt;}
.lse{letter-spacing:2.429602pt;}
.ls29{letter-spacing:2.655779pt;}
.ls33{letter-spacing:2.656304pt;}
.ls2f{letter-spacing:2.661112pt;}
.ls15{letter-spacing:2.786637pt;}
.lsb{letter-spacing:4.867778pt;}
.ls0{letter-spacing:7.387124pt;}
.ls9{letter-spacing:10.752304pt;}
.ls10{letter-spacing:11.397619pt;}
.lsf{letter-spacing:11.401111pt;}
.ls13{letter-spacing:11.925619pt;}
.ls1a{letter-spacing:12.378953pt;}
.lsd{letter-spacing:12.600158pt;}
.ls16{letter-spacing:13.704178pt;}
.ls2d{letter-spacing:15.418445pt;}
.ls5{letter-spacing:15.461637pt;}
.ls21{letter-spacing:17.131041pt;}
.ls23{letter-spacing:17.136254pt;}
.ls26{letter-spacing:18.496286pt;}
.ls30{letter-spacing:18.733588pt;}
.ls31{letter-spacing:18.738921pt;}
.ls2b{letter-spacing:20.282445pt;}
.ls17{letter-spacing:24.818973pt;}
.ls1e{letter-spacing:25.325640pt;}
.ls3{letter-spacing:39.995275pt;}
.ls6{letter-spacing:40.000608pt;}
.ls4{letter-spacing:42.662347pt;}
.ls2{letter-spacing:42.667680pt;}
.ls20{letter-spacing:94.488158pt;}
.lsa{letter-spacing:348.384428pt;}
.ls8{letter-spacing:354.485762pt;}
.ws5{word-spacing:-52.799280pt;}
.wsd0{word-spacing:-38.050266pt;}
.ws31{word-spacing:-35.999520pt;}
.wsd1{word-spacing:-35.263629pt;}
.ws4{word-spacing:-26.399640pt;}
.wscd{word-spacing:-25.983629pt;}
.ws7a{word-spacing:-22.799760pt;}
.ws6{word-spacing:-19.199760pt;}
.ws85{word-spacing:-17.999760pt;}
.ws23{word-spacing:-15.098508pt;}
.wsa3{word-spacing:-15.047842pt;}
.wse9{word-spacing:-14.997175pt;}
.wsb9{word-spacing:-14.946509pt;}
.ws12a{word-spacing:-14.845177pt;}
.ws9c{word-spacing:-14.794511pt;}
.ws26{word-spacing:-14.743845pt;}
.ws83{word-spacing:-14.642513pt;}
.wsc7{word-spacing:-14.591846pt;}
.ws5f{word-spacing:-14.541180pt;}
.ws55{word-spacing:-14.490514pt;}
.wsc5{word-spacing:-14.439848pt;}
.ws3{word-spacing:-14.399880pt;}
.ws7c{word-spacing:-14.389182pt;}
.wsff{word-spacing:-14.338516pt;}
.ws5a{word-spacing:-14.287850pt;}
.ws34{word-spacing:-14.186517pt;}
.ws82{word-spacing:-14.135851pt;}
.ws11a{word-spacing:-14.085185pt;}
.ws24{word-spacing:-14.034519pt;}
.ws1c{word-spacing:-13.983853pt;}
.ws22{word-spacing:-13.933187pt;}
.ws9b{word-spacing:-13.831854pt;}
.wsc3{word-spacing:-13.781188pt;}
.wsa6{word-spacing:-13.730522pt;}
.wse2{word-spacing:-13.679856pt;}
.ws8b{word-spacing:-13.629190pt;}
.wsc2{word-spacing:-13.578524pt;}
.ws40{word-spacing:-13.527858pt;}
.ws44{word-spacing:-13.477191pt;}
.ws8{word-spacing:-13.426525pt;}
.ws7{word-spacing:-13.416315pt;}
.ws7e{word-spacing:-13.375859pt;}
.ws53{word-spacing:-13.274527pt;}
.wsa5{word-spacing:-13.223861pt;}
.ws9f{word-spacing:-13.173195pt;}
.wsad{word-spacing:-13.122529pt;}
.ws113{word-spacing:-13.071862pt;}
.ws52{word-spacing:-12.970530pt;}
.wsdf{word-spacing:-12.919864pt;}
.wsb7{word-spacing:-12.869198pt;}
.wsda{word-spacing:-12.818532pt;}
.ws75{word-spacing:-12.767866pt;}
.ws89{word-spacing:-12.717199pt;}
.ws66{word-spacing:-12.666533pt;}
.wsa0{word-spacing:-12.615867pt;}
.wsdc{word-spacing:-12.565201pt;}
.ws4e{word-spacing:-12.514535pt;}
.ws79{word-spacing:-12.463869pt;}
.ws61{word-spacing:-12.413203pt;}
.ws33{word-spacing:-12.362537pt;}
.ws18{word-spacing:-12.311870pt;}
.ws74{word-spacing:-12.261204pt;}
.ws3b{word-spacing:-12.210538pt;}
.wsaf{word-spacing:-12.159872pt;}
.wsfa{word-spacing:-12.109206pt;}
.wscb{word-spacing:-12.058540pt;}
.ws127{word-spacing:-12.007874pt;}
.ws6a{word-spacing:-11.957207pt;}
.ws80{word-spacing:-11.906541pt;}
.ws68{word-spacing:-11.855875pt;}
.ws11{word-spacing:-11.805209pt;}
.wsf2{word-spacing:-11.653211pt;}
.ws16{word-spacing:-11.602545pt;}
.wsbf{word-spacing:-11.551878pt;}
.ws42{word-spacing:-11.501212pt;}
.ws45{word-spacing:-11.450546pt;}
.wscc{word-spacing:-11.404406pt;}
.wscf{word-spacing:-11.402860pt;}
.wsce{word-spacing:-11.400311pt;}
.ws2d{word-spacing:-11.399880pt;}
.ws5b{word-spacing:-11.349214pt;}
.wsd3{word-spacing:-11.321557pt;}
.ws3f{word-spacing:-11.247882pt;}
.ws25{word-spacing:-11.146549pt;}
.wse6{word-spacing:-11.095883pt;}
.ws60{word-spacing:-11.045217pt;}
.wsae{word-spacing:-10.994551pt;}
.ws115{word-spacing:-10.943885pt;}
.ws122{word-spacing:-10.893219pt;}
.ws43{word-spacing:-10.842553pt;}
.ws2b{word-spacing:-10.791886pt;}
.wsc1{word-spacing:-10.741220pt;}
.ws20{word-spacing:-10.690554pt;}
.wse0{word-spacing:-10.639888pt;}
.wsca{word-spacing:-10.589222pt;}
.ws41{word-spacing:-10.487890pt;}
.wse7{word-spacing:-10.437223pt;}
.ws37{word-spacing:-10.335891pt;}
.wsb5{word-spacing:-10.285225pt;}
.ws4d{word-spacing:-10.234559pt;}
.wsb4{word-spacing:-10.183893pt;}
.ws19{word-spacing:-10.133227pt;}
.wsc9{word-spacing:-10.082561pt;}
.ws9e{word-spacing:-10.031894pt;}
.ws7b{word-spacing:-9.981228pt;}
.ws21{word-spacing:-9.930562pt;}
.ws27{word-spacing:-9.879896pt;}
.ws69{word-spacing:-9.829230pt;}
.ws8d{word-spacing:-9.727898pt;}
.ws4c{word-spacing:-9.677231pt;}
.ws7d{word-spacing:-9.626565pt;}
.wsa1{word-spacing:-9.603754pt;}
.wsd7{word-spacing:-9.603691pt;}
.wsea{word-spacing:-9.603678pt;}
.ws125{word-spacing:-9.603676pt;}
.ws2{word-spacing:-9.599880pt;}
.wsa{word-spacing:-9.575899pt;}
.ws98{word-spacing:-9.525233pt;}
.wsd4{word-spacing:-9.513557pt;}
.ws4b{word-spacing:-9.474567pt;}
.ws64{word-spacing:-9.423901pt;}
.ws0{word-spacing:-9.407866pt;}
.ws71{word-spacing:-9.373235pt;}
.ws62{word-spacing:-9.322569pt;}
.wsf6{word-spacing:-9.271902pt;}
.wse{word-spacing:-9.221236pt;}
.ws129{word-spacing:-9.170570pt;}
.ws51{word-spacing:-9.119904pt;}
.wsc0{word-spacing:-9.069238pt;}
.wsdd{word-spacing:-9.018572pt;}
.wsf3{word-spacing:-8.967906pt;}
.ws15{word-spacing:-8.917239pt;}
.ws2c{word-spacing:-8.866573pt;}
.wsf5{word-spacing:-8.815907pt;}
.wsfd{word-spacing:-8.765241pt;}
.wsb8{word-spacing:-8.714575pt;}
.ws58{word-spacing:-8.663909pt;}
.ws94{word-spacing:-8.613243pt;}
.ws28{word-spacing:-8.562577pt;}
.wsee{word-spacing:-8.511910pt;}
.ws2e{word-spacing:-8.469318pt;}
.ws2f{word-spacing:-8.461244pt;}
.wsbc{word-spacing:-8.447152pt;}
.wsbd{word-spacing:-8.446999pt;}
.wsa2{word-spacing:-8.410578pt;}
.ws1{word-spacing:-8.399880pt;}
.ws8c{word-spacing:-8.359912pt;}
.wsa7{word-spacing:-8.309246pt;}
.wsd9{word-spacing:-8.207914pt;}
.wsf8{word-spacing:-8.157247pt;}
.ws67{word-spacing:-8.055915pt;}
.ws73{word-spacing:-8.005249pt;}
.wsd5{word-spacing:-7.998352pt;}
.wsd6{word-spacing:-7.993540pt;}
.wsb3{word-spacing:-7.903917pt;}
.wsa8{word-spacing:-7.853251pt;}
.wsd{word-spacing:-7.802585pt;}
.ws11f{word-spacing:-7.751918pt;}
.ws111{word-spacing:-7.701252pt;}
.wsfe{word-spacing:-7.650586pt;}
.ws1e{word-spacing:-7.549254pt;}
.wsa9{word-spacing:-7.447922pt;}
.ws3c{word-spacing:-7.397255pt;}
.ws3a{word-spacing:-7.346589pt;}
.ws3d{word-spacing:-7.295923pt;}
.wsb{word-spacing:-7.245257pt;}
.ws46{word-spacing:-7.194591pt;}
.ws1f{word-spacing:-7.143925pt;}
.wsf1{word-spacing:-7.093259pt;}
.ws39{word-spacing:-7.042593pt;}
.wsab{word-spacing:-6.991926pt;}
.ws96{word-spacing:-6.890594pt;}
.ws97{word-spacing:-6.839928pt;}
.ws119{word-spacing:-6.789262pt;}
.ws49{word-spacing:-6.687930pt;}
.ws1b{word-spacing:-6.637263pt;}
.ws9d{word-spacing:-6.586597pt;}
.ws88{word-spacing:-6.485265pt;}
.wsb0{word-spacing:-6.434599pt;}
.wsb1{word-spacing:-6.383933pt;}
.ws63{word-spacing:-6.333267pt;}
.ws6c{word-spacing:-6.282601pt;}
.wsc8{word-spacing:-6.231934pt;}
.ws8a{word-spacing:-6.079936pt;}
.ws47{word-spacing:-6.029270pt;}
.ws90{word-spacing:-5.978604pt;}
.ws6e{word-spacing:-5.927938pt;}
.ws3e{word-spacing:-5.877271pt;}
.ws5c{word-spacing:-5.826605pt;}
.wsd8{word-spacing:-5.725273pt;}
.ws10{word-spacing:-5.674607pt;}
.ws118{word-spacing:-5.623941pt;}
.wsb2{word-spacing:-5.522609pt;}
.wsf{word-spacing:-5.471942pt;}
.wsf4{word-spacing:-5.421276pt;}
.ws92{word-spacing:-5.370610pt;}
.ws30{word-spacing:-5.269278pt;}
.ws1a{word-spacing:-5.218612pt;}
.wse8{word-spacing:-5.167946pt;}
.wsaa{word-spacing:-5.117279pt;}
.ws36{word-spacing:-5.066613pt;}
.ws54{word-spacing:-5.015947pt;}
.ws32{word-spacing:-4.965281pt;}
.wsde{word-spacing:-4.914615pt;}
.ws65{word-spacing:-4.863949pt;}
.ws5e{word-spacing:-4.813283pt;}
.ws76{word-spacing:-4.762617pt;}
.ws56{word-spacing:-4.711950pt;}
.ws78{word-spacing:-4.661284pt;}
.ws72{word-spacing:-4.610618pt;}
.ws35{word-spacing:-4.559952pt;}
.wsf9{word-spacing:-4.509286pt;}
.ws81{word-spacing:-4.458620pt;}
.ws6b{word-spacing:-4.407954pt;}
.ws50{word-spacing:-4.357287pt;}
.wse4{word-spacing:-4.306621pt;}
.wsa4{word-spacing:-4.103957pt;}
.wsf7{word-spacing:-4.053291pt;}
.ws13{word-spacing:-4.002625pt;}
.wsef{word-spacing:-3.850626pt;}
.wse3{word-spacing:-3.799960pt;}
.ws59{word-spacing:-3.698628pt;}
.wsba{word-spacing:-3.647962pt;}
.wsed{word-spacing:-3.597295pt;}
.ws95{word-spacing:-3.546629pt;}
.ws70{word-spacing:-3.495963pt;}
.wsc{word-spacing:-3.445297pt;}
.wsac{word-spacing:-3.394631pt;}
.ws14{word-spacing:-3.343965pt;}
.ws99{word-spacing:-3.293299pt;}
.ws4a{word-spacing:-3.242633pt;}
.ws6d{word-spacing:-3.191966pt;}
.ws12b{word-spacing:-3.141300pt;}
.ws101{word-spacing:-3.090634pt;}
.ws116{word-spacing:-3.039968pt;}
.ws1d{word-spacing:-2.938636pt;}
.ws11c{word-spacing:-2.786637pt;}
.ws9{word-spacing:-2.735971pt;}
.ws100{word-spacing:-2.685305pt;}
.wsf0{word-spacing:-2.583973pt;}
.ws7f{word-spacing:-2.533307pt;}
.ws38{word-spacing:-2.381308pt;}
.ws57{word-spacing:-2.330642pt;}
.ws93{word-spacing:-2.279976pt;}
.ws11b{word-spacing:-2.229310pt;}
.ws124{word-spacing:-2.178644pt;}
.wse1{word-spacing:-2.127978pt;}
.ws48{word-spacing:-1.975979pt;}
.wsdb{word-spacing:-1.874647pt;}
.ws117{word-spacing:-1.722649pt;}
.wsc6{word-spacing:-1.671982pt;}
.wsc4{word-spacing:-1.570650pt;}
.ws84{word-spacing:-1.519984pt;}
.wsbe{word-spacing:-1.469318pt;}
.ws29{word-spacing:-1.367986pt;}
.ws105{word-spacing:-1.063989pt;}
.ws9a{word-spacing:-1.013323pt;}
.ws110{word-spacing:-0.506661pt;}
.ws17{word-spacing:-0.455995pt;}
.wse5{word-spacing:-0.405329pt;}
.ws126{word-spacing:-0.354663pt;}
.ws8e{word-spacing:-0.303997pt;}
.ws10f{word-spacing:-0.253331pt;}
.ws11e{word-spacing:-0.202665pt;}
.wsfc{word-spacing:-0.151998pt;}
.ws5d{word-spacing:-0.050666pt;}
.ws10c{word-spacing:-0.047999pt;}
.ws120{word-spacing:-0.042666pt;}
.ws2a{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.050666pt;}
.ws10e{word-spacing:0.101332pt;}
.ws12{word-spacing:0.253331pt;}
.ws8f{word-spacing:0.557327pt;}
.ws128{word-spacing:0.810658pt;}
.ws10a{word-spacing:0.861324pt;}
.ws10d{word-spacing:1.013323pt;}
.ws123{word-spacing:1.063989pt;}
.ws112{word-spacing:1.114655pt;}
.ws12c{word-spacing:1.165321pt;}
.ws4f{word-spacing:2.735971pt;}
.wsd2{word-spacing:2.986624pt;}
.wsb6{word-spacing:3.195667pt;}
.ws86{word-spacing:3.201001pt;}
.ws91{word-spacing:3.850626pt;}
.ws104{word-spacing:4.205289pt;}
.ws106{word-spacing:5.066613pt;}
.ws10b{word-spacing:5.398061pt;}
.ws107{word-spacing:6.586597pt;}
.ws108{word-spacing:7.194591pt;}
.ws109{word-spacing:7.498588pt;}
.wsfb{word-spacing:9.755395pt;}
.ws87{word-spacing:10.589222pt;}
.ws114{word-spacing:12.043395pt;}
.wseb{word-spacing:12.228002pt;}
.ws103{word-spacing:13.882521pt;}
.wsbb{word-spacing:19.867476pt;}
.wsec{word-spacing:19.870140pt;}
.ws77{word-spacing:19.870141pt;}
.ws11d{word-spacing:19.870152pt;}
.ws12d{word-spacing:19.870163pt;}
.ws121{word-spacing:30.197015pt;}
.ws102{word-spacing:52.794111pt;}
._6{margin-left:-7.509239pt;}
._f{margin-left:-5.106619pt;}
._4{margin-left:-4.095993pt;}
._d{margin-left:-3.090634pt;}
._5{margin-left:-2.037306pt;}
._1{margin-left:-0.895987pt;}
._2{width:0.895987pt;}
._7{width:2.431970pt;}
._27{width:3.323406pt;}
._26{width:4.694073pt;}
._2d{width:7.093259pt;}
._17{width:8.157247pt;}
._2b{width:10.218556pt;}
._8{width:11.749201pt;}
._16{width:13.031857pt;}
._e{width:14.095846pt;}
._a{width:16.021159pt;}
._2a{width:17.045142pt;}
._c{width:18.919789pt;}
._28{width:20.346440pt;}
._b{width:21.362425pt;}
._2c{width:24.522385pt;}
._29{width:26.938380pt;}
._10{width:32.471649pt;}
._9{width:42.366700pt;}
._15{width:49.602145pt;}
._13{width:50.498132pt;}
._12{width:54.263429pt;}
._11{width:56.290074pt;}
._14{width:60.556681pt;}
._1a{width:189.149774pt;}
._1b{width:237.625097pt;}
._0{width:264.387092pt;}
._21{width:309.345737pt;}
._24{width:316.087589pt;}
._25{width:328.247589pt;}
._1e{width:331.490436pt;}
._1d{width:339.766614pt;}
._20{width:347.036129pt;}
._23{width:354.187767pt;}
._18{width:358.281621pt;}
._1f{width:359.761741pt;}
._1c{width:364.668408pt;}
._22{width:371.921741pt;}
._19{width:681.930954pt;}
._3{width:1759.281339pt;}
.fs6{font-size:29.977600pt;}
.fs7{font-size:31.999467pt;}
.fs0{font-size:37.332800pt;}
.fs1{font-size:42.666133pt;}
.fs8{font-size:47.999467pt;}
.fs4{font-size:50.666133pt;}
.fs2{font-size:63.999467pt;}
.fs5{font-size:79.998933pt;}
.fs3{font-size:117.331733pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.442667pt;}
.y1{bottom:58.109333pt;}
.yba{bottom:92.004000pt;}
.y87{bottom:92.005333pt;}
.y33{bottom:92.006667pt;}
.y19e{bottom:95.378667pt;}
.y1d6{bottom:96.672000pt;}
.y180{bottom:97.417333pt;}
.y141{bottom:97.421333pt;}
.y15f{bottom:100.672000pt;}
.ye4{bottom:101.436000pt;}
.y106{bottom:102.261333pt;}
.y57{bottom:102.694667pt;}
.y32{bottom:106.673333pt;}
.y11a{bottom:107.214667pt;}
.yb9{bottom:109.337333pt;}
.y86{bottom:109.338667pt;}
.y1d5{bottom:111.338667pt;}
.y19d{bottom:112.712000pt;}
.y17f{bottom:114.750667pt;}
.y140{bottom:114.754667pt;}
.y105{bottom:116.928000pt;}
.y16e{bottom:117.301333pt;}
.y15e{bottom:118.005333pt;}
.ye3{bottom:118.769333pt;}
.y56{bottom:120.028000pt;}
.y31{bottom:121.340000pt;}
.y119{bottom:124.548000pt;}
.y1d4{bottom:126.005333pt;}
.yb8{bottom:126.670667pt;}
.y85{bottom:126.672000pt;}
.y19c{bottom:130.045333pt;}
.y104{bottom:131.594667pt;}
.y16d{bottom:131.968000pt;}
.y17e{bottom:132.084000pt;}
.y13f{bottom:132.088000pt;}
.y145{bottom:134.378667pt;}
.y15d{bottom:135.338667pt;}
.y30{bottom:136.006667pt;}
.ye2{bottom:136.102667pt;}
.y55{bottom:137.361333pt;}
.y1d3{bottom:140.672000pt;}
.y118{bottom:141.881333pt;}
.yb7{bottom:144.004000pt;}
.y84{bottom:144.005333pt;}
.y16c{bottom:146.634667pt;}
.y19b{bottom:147.378667pt;}
.y144{bottom:149.045333pt;}
.y17d{bottom:149.417333pt;}
.y13e{bottom:149.421333pt;}
.y2f{bottom:150.673333pt;}
.y15c{bottom:152.672000pt;}
.ye1{bottom:153.436000pt;}
.y54{bottom:154.694667pt;}
.y1d2{bottom:155.338667pt;}
.y117{bottom:159.214667pt;}
.y16b{bottom:161.301333pt;}
.yb6{bottom:161.337333pt;}
.y83{bottom:161.338667pt;}
.y143{bottom:163.712000pt;}
.y19a{bottom:164.712000pt;}
.y2e{bottom:165.340000pt;}
.y17c{bottom:166.750667pt;}
.y13d{bottom:166.754667pt;}
.y15b{bottom:170.005333pt;}
.ye0{bottom:170.769333pt;}
.y53{bottom:172.028000pt;}
.y116{bottom:176.548000pt;}
.y142{bottom:178.378667pt;}
.yb5{bottom:178.670667pt;}
.y82{bottom:178.672000pt;}
.y2d{bottom:180.006667pt;}
.y199{bottom:182.045333pt;}
.y17b{bottom:184.084000pt;}
.y13c{bottom:184.088000pt;}
.y1d1{bottom:184.672000pt;}
.y15a{bottom:187.338667pt;}
.ydf{bottom:188.102667pt;}
.y52{bottom:189.361333pt;}
.y115{bottom:193.881333pt;}
.y2c{bottom:194.673333pt;}
.yb4{bottom:196.004000pt;}
.y81{bottom:196.005333pt;}
.y1d0{bottom:199.338667pt;}
.y198{bottom:199.378667pt;}
.y17a{bottom:201.417333pt;}
.y13b{bottom:201.421333pt;}
.y159{bottom:204.672000pt;}
.yde{bottom:205.436000pt;}
.y51{bottom:206.694667pt;}
.y2b{bottom:209.340000pt;}
.y206{bottom:210.672000pt;}
.y114{bottom:211.214667pt;}
.yb3{bottom:213.337333pt;}
.y80{bottom:213.338667pt;}
.y1cf{bottom:214.005333pt;}
.y197{bottom:216.712000pt;}
.y179{bottom:218.750667pt;}
.y13a{bottom:218.754667pt;}
.y158{bottom:222.005333pt;}
.ydd{bottom:222.769333pt;}
.y2a{bottom:224.006667pt;}
.y50{bottom:224.028000pt;}
.y205{bottom:225.338667pt;}
.y113{bottom:228.548000pt;}
.y1ce{bottom:228.672000pt;}
.yb2{bottom:230.670667pt;}
.y7f{bottom:230.672000pt;}
.y196{bottom:234.045333pt;}
.y178{bottom:236.084000pt;}
.y139{bottom:236.088000pt;}
.y29{bottom:238.673333pt;}
.y157{bottom:239.338667pt;}
.y204{bottom:240.005333pt;}
.ydc{bottom:240.102667pt;}
.y4f{bottom:241.361333pt;}
.y1cd{bottom:243.338667pt;}
.y112{bottom:245.881333pt;}
.ye6{bottom:246.102667pt;}
.yb1{bottom:248.004000pt;}
.y7e{bottom:248.005333pt;}
.y195{bottom:251.378667pt;}
.y28{bottom:253.340000pt;}
.y177{bottom:253.417333pt;}
.y138{bottom:253.421333pt;}
.y203{bottom:254.672000pt;}
.y156{bottom:256.672000pt;}
.ydb{bottom:257.436000pt;}
.y1cc{bottom:258.005333pt;}
.y4e{bottom:258.694667pt;}
.y111{bottom:263.214667pt;}
.yb0{bottom:265.337333pt;}
.y7d{bottom:265.338667pt;}
.y27{bottom:268.006667pt;}
.y194{bottom:268.712000pt;}
.y202{bottom:269.338667pt;}
.y176{bottom:270.750667pt;}
.y137{bottom:270.754667pt;}
.y1cb{bottom:272.672000pt;}
.y155{bottom:274.005333pt;}
.yda{bottom:274.769333pt;}
.y4d{bottom:276.028000pt;}
.y110{bottom:280.548000pt;}
.yaf{bottom:282.670667pt;}
.y7c{bottom:282.672000pt;}
.y26{bottom:282.673333pt;}
.ye5{bottom:283.436000pt;}
.y201{bottom:284.005333pt;}
.y193{bottom:286.045333pt;}
.y1ca{bottom:287.338667pt;}
.y175{bottom:288.084000pt;}
.y136{bottom:288.088000pt;}
.y154{bottom:291.338667pt;}
.yd9{bottom:292.102667pt;}
.y4c{bottom:293.361333pt;}
.y25{bottom:297.340000pt;}
.y10f{bottom:297.881333pt;}
.y200{bottom:298.672000pt;}
.yae{bottom:300.004000pt;}
.y7b{bottom:300.005333pt;}
.y1c9{bottom:302.005333pt;}
.y192{bottom:303.378667pt;}
.y174{bottom:305.417333pt;}
.y135{bottom:305.421333pt;}
.y153{bottom:308.672000pt;}
.yd8{bottom:309.436000pt;}
.y4b{bottom:310.694667pt;}
.y24{bottom:312.006667pt;}
.y1ff{bottom:313.338667pt;}
.y10e{bottom:315.214667pt;}
.y1c8{bottom:316.672000pt;}
.yad{bottom:317.337333pt;}
.y7a{bottom:317.338667pt;}
.y173{bottom:322.750667pt;}
.y134{bottom:322.754667pt;}
.y152{bottom:326.005333pt;}
.y23{bottom:326.673333pt;}
.yd7{bottom:326.769333pt;}
.y1fe{bottom:328.005333pt;}
.y4a{bottom:328.028000pt;}
.y1c7{bottom:331.338667pt;}
.y10d{bottom:332.548000pt;}
.yac{bottom:334.670667pt;}
.y79{bottom:334.672000pt;}
.y191{bottom:338.045333pt;}
.y133{bottom:340.088000pt;}
.y22{bottom:341.340000pt;}
.y1fd{bottom:342.672000pt;}
.y151{bottom:343.338667pt;}
.yd6{bottom:344.102667pt;}
.y49{bottom:345.361333pt;}
.y1c6{bottom:346.005333pt;}
.y10c{bottom:349.881333pt;}
.yab{bottom:352.004000pt;}
.y78{bottom:352.005333pt;}
.y21{bottom:356.006667pt;}
.y1fc{bottom:357.338667pt;}
.y132{bottom:357.421333pt;}
.y150{bottom:360.672000pt;}
.yd5{bottom:361.436000pt;}
.y48{bottom:362.694667pt;}
.y10b{bottom:367.214667pt;}
.y172{bottom:367.786667pt;}
.yaa{bottom:369.337333pt;}
.y77{bottom:369.338667pt;}
.y20{bottom:370.673333pt;}
.y1fb{bottom:372.005333pt;}
.y131{bottom:374.754667pt;}
.y1c5{bottom:375.338667pt;}
.y14f{bottom:378.005333pt;}
.yd4{bottom:378.769333pt;}
.y47{bottom:380.028000pt;}
.y171{bottom:382.453333pt;}
.y16a{bottom:384.420000pt;}
.y10a{bottom:384.548000pt;}
.y1f{bottom:385.340000pt;}
.ya9{bottom:386.670667pt;}
.y76{bottom:386.672000pt;}
.y1c4{bottom:390.005333pt;}
.y130{bottom:392.088000pt;}
.y14e{bottom:395.338667pt;}
.yd3{bottom:396.102667pt;}
.y46{bottom:397.361333pt;}
.y190{bottom:398.712000pt;}
.y1e{bottom:400.006667pt;}
.y1fa{bottom:401.338667pt;}
.y169{bottom:401.753333pt;}
.y109{bottom:401.881333pt;}
.ya8{bottom:404.004000pt;}
.y75{bottom:404.005333pt;}
.y1c3{bottom:404.672000pt;}
.y12f{bottom:409.421333pt;}
.y170{bottom:409.785333pt;}
.y14d{bottom:412.672000pt;}
.yd2{bottom:413.436000pt;}
.y1d{bottom:414.673333pt;}
.y45{bottom:414.694667pt;}
.y1f9{bottom:416.005333pt;}
.y18f{bottom:416.045333pt;}
.y168{bottom:419.086667pt;}
.y108{bottom:419.214667pt;}
.y1c2{bottom:419.338667pt;}
.ya7{bottom:421.337333pt;}
.y74{bottom:421.338667pt;}
.y1c{bottom:429.340000pt;}
.y14c{bottom:430.005333pt;}
.y1f8{bottom:430.672000pt;}
.yd1{bottom:430.769333pt;}
.y44{bottom:432.028000pt;}
.y18e{bottom:433.378667pt;}
.y1c1{bottom:434.005333pt;}
.y167{bottom:436.420000pt;}
.y107{bottom:436.548000pt;}
.ya6{bottom:438.670667pt;}
.y73{bottom:438.672000pt;}
.y1b{bottom:444.006667pt;}
.y1f7{bottom:445.338667pt;}
.y14b{bottom:447.338667pt;}
.yd0{bottom:448.102667pt;}
.y1c0{bottom:448.672000pt;}
.y43{bottom:449.361333pt;}
.y18d{bottom:450.712000pt;}
.y166{bottom:453.753333pt;}
.y103{bottom:453.881333pt;}
.y12e{bottom:454.716000pt;}
.ya5{bottom:456.004000pt;}
.y72{bottom:456.005333pt;}
.y1a{bottom:458.673333pt;}
.y1f6{bottom:460.005333pt;}
.y1bf{bottom:463.338667pt;}
.y14a{bottom:464.672000pt;}
.ycf{bottom:465.436000pt;}
.y42{bottom:466.694667pt;}
.y18c{bottom:468.045333pt;}
.y12d{bottom:469.382667pt;}
.y102{bottom:471.214667pt;}
.ya4{bottom:473.337333pt;}
.y71{bottom:473.338667pt;}
.y19{bottom:473.340000pt;}
.y1f5{bottom:474.672000pt;}
.y1be{bottom:478.005333pt;}
.y149{bottom:482.005333pt;}
.yce{bottom:482.769333pt;}
.y41{bottom:484.028000pt;}
.y12c{bottom:484.049333pt;}
.y18b{bottom:485.378667pt;}
.y18{bottom:488.006667pt;}
.y101{bottom:488.548000pt;}
.y1f4{bottom:489.338667pt;}
.ya3{bottom:490.670667pt;}
.y70{bottom:490.672000pt;}
.y1bd{bottom:492.672000pt;}
.y165{bottom:496.820000pt;}
.y12b{bottom:498.716000pt;}
.y148{bottom:499.338667pt;}
.ycd{bottom:500.102667pt;}
.y40{bottom:501.361333pt;}
.y17{bottom:502.673333pt;}
.y18a{bottom:502.712000pt;}
.y1f3{bottom:504.005333pt;}
.yc2{bottom:505.338667pt;}
.y100{bottom:505.881333pt;}
.y1bc{bottom:507.338667pt;}
.ya2{bottom:508.004000pt;}
.y6f{bottom:508.005333pt;}
.y164{bottom:511.486667pt;}
.y147{bottom:516.672000pt;}
.y16{bottom:517.340000pt;}
.ycc{bottom:517.436000pt;}
.y1f2{bottom:518.672000pt;}
.y3f{bottom:518.694667pt;}
.y189{bottom:520.045333pt;}
.y1bb{bottom:522.005333pt;}
.yff{bottom:523.214667pt;}
.ya1{bottom:525.337333pt;}
.y6e{bottom:525.338667pt;}
.y163{bottom:526.153333pt;}
.y15{bottom:532.006667pt;}
.y1f1{bottom:533.338667pt;}
.y146{bottom:534.005333pt;}
.ycb{bottom:534.769333pt;}
.y3e{bottom:536.028000pt;}
.y1ba{bottom:536.672000pt;}
.y188{bottom:537.378667pt;}
.yfe{bottom:540.548000pt;}
.y162{bottom:540.820000pt;}
.ya0{bottom:542.670667pt;}
.y6d{bottom:542.672000pt;}
.y14{bottom:546.673333pt;}
.y1f0{bottom:548.005333pt;}
.y1b9{bottom:551.338667pt;}
.yca{bottom:552.102667pt;}
.y3d{bottom:553.361333pt;}
.y187{bottom:554.712000pt;}
.yfd{bottom:557.881333pt;}
.y9f{bottom:560.004000pt;}
.y6c{bottom:560.005333pt;}
.y13{bottom:561.340000pt;}
.y1ef{bottom:562.672000pt;}
.y1b8{bottom:566.005333pt;}
.yc1{bottom:568.672000pt;}
.yc9{bottom:569.436000pt;}
.y3c{bottom:570.694667pt;}
.y186{bottom:572.045333pt;}
.yfc{bottom:575.214667pt;}
.y12{bottom:576.006667pt;}
.y9e{bottom:577.337333pt;}
.y6b{bottom:577.338667pt;}
.y1b7{bottom:580.672000pt;}
.yc8{bottom:586.769333pt;}
.y3b{bottom:588.028000pt;}
.y185{bottom:589.378667pt;}
.y11{bottom:590.673333pt;}
.y1ee{bottom:592.005333pt;}
.yfb{bottom:592.548000pt;}
.y9d{bottom:594.670667pt;}
.y6a{bottom:594.672000pt;}
.y1b6{bottom:595.338667pt;}
.yc7{bottom:604.102667pt;}
.y10{bottom:605.340000pt;}
.y3a{bottom:605.361333pt;}
.y1ed{bottom:606.672000pt;}
.y184{bottom:606.712000pt;}
.yfa{bottom:609.881333pt;}
.y1b5{bottom:610.005333pt;}
.y9c{bottom:612.004000pt;}
.y69{bottom:612.005333pt;}
.y16f{bottom:618.769333pt;}
.yf{bottom:620.006667pt;}
.y1ec{bottom:621.338667pt;}
.y39{bottom:622.694667pt;}
.y1b4{bottom:624.672000pt;}
.yf9{bottom:627.214667pt;}
.y9b{bottom:629.337333pt;}
.y68{bottom:629.338667pt;}
.ye{bottom:634.673333pt;}
.y1eb{bottom:636.005333pt;}
.y1b3{bottom:639.338667pt;}
.y38{bottom:640.028000pt;}
.yf8{bottom:644.548000pt;}
.y9a{bottom:646.670667pt;}
.y67{bottom:646.672000pt;}
.yc6{bottom:647.169333pt;}
.y1ea{bottom:650.672000pt;}
.y183{bottom:652.456000pt;}
.y1b2{bottom:654.005333pt;}
.y37{bottom:657.361333pt;}
.yc5{bottom:661.836000pt;}
.yf7{bottom:661.881333pt;}
.y99{bottom:664.004000pt;}
.y66{bottom:664.005333pt;}
.y1e9{bottom:665.338667pt;}
.y182{bottom:667.122667pt;}
.y1b1{bottom:668.672000pt;}
.y36{bottom:674.694667pt;}
.yc4{bottom:676.502667pt;}
.yf6{bottom:679.214667pt;}
.y1e8{bottom:680.005333pt;}
.y98{bottom:681.337333pt;}
.y65{bottom:681.338667pt;}
.y181{bottom:681.789333pt;}
.y1b0{bottom:683.338667pt;}
.yc3{bottom:691.169333pt;}
.y35{bottom:692.028000pt;}
.y1e7{bottom:694.672000pt;}
.yd{bottom:694.693333pt;}
.yf5{bottom:696.548000pt;}
.y1af{bottom:698.005333pt;}
.y97{bottom:698.670667pt;}
.y64{bottom:698.672000pt;}
.y1e6{bottom:709.338667pt;}
.yc{bottom:709.360000pt;}
.y34{bottom:709.361333pt;}
.y1ae{bottom:712.672000pt;}
.yf4{bottom:713.881333pt;}
.y96{bottom:716.004000pt;}
.y63{bottom:716.005333pt;}
.y1e5{bottom:724.005333pt;}
.y1ad{bottom:727.338667pt;}
.yf3{bottom:731.214667pt;}
.y95{bottom:733.337333pt;}
.y62{bottom:733.338667pt;}
.y1e4{bottom:738.672000pt;}
.y1ac{bottom:742.005333pt;}
.yb{bottom:745.872000pt;}
.yf2{bottom:748.548000pt;}
.y94{bottom:750.670667pt;}
.y61{bottom:750.672000pt;}
.y1e3{bottom:753.338667pt;}
.y1ab{bottom:756.672000pt;}
.y161{bottom:759.777333pt;}
.y93{bottom:768.004000pt;}
.y60{bottom:768.005333pt;}
.y1aa{bottom:771.338667pt;}
.y160{bottom:774.444000pt;}
.ya{bottom:780.538667pt;}
.y1e2{bottom:782.672000pt;}
.y92{bottom:785.337333pt;}
.y5f{bottom:785.338667pt;}
.y1a9{bottom:786.005333pt;}
.yf1{bottom:794.448000pt;}
.y1e1{bottom:797.338667pt;}
.y1a8{bottom:800.672000pt;}
.y12a{bottom:801.541333pt;}
.y91{bottom:802.670667pt;}
.yc0{bottom:802.672000pt;}
.yf0{bottom:809.053333pt;}
.y1e0{bottom:812.005333pt;}
.y9{bottom:815.205333pt;}
.y1a7{bottom:815.338667pt;}
.y129{bottom:818.874667pt;}
.y90{bottom:820.004000pt;}
.y5e{bottom:820.005333pt;}
.yef{bottom:823.861333pt;}
.y1df{bottom:826.672000pt;}
.y1a6{bottom:830.005333pt;}
.y128{bottom:836.208000pt;}
.y8f{bottom:837.337333pt;}
.ybf{bottom:837.338667pt;}
.yee{bottom:840.014667pt;}
.y1de{bottom:841.338667pt;}
.y1a5{bottom:844.672000pt;}
.y8{bottom:849.872000pt;}
.yed{bottom:854.177333pt;}
.y8e{bottom:854.670667pt;}
.ybe{bottom:854.672000pt;}
.y1dd{bottom:856.005333pt;}
.y1a4{bottom:859.338667pt;}
.y124{bottom:863.126667pt;}
.y5d{bottom:863.338667pt;}
.yec{bottom:868.782667pt;}
.y11c{bottom:870.397333pt;}
.y1dc{bottom:870.672000pt;}
.y8d{bottom:872.004000pt;}
.ybd{bottom:872.005333pt;}
.y1a3{bottom:874.005333pt;}
.y127{bottom:875.206667pt;}
.y126{bottom:875.972000pt;}
.y11b{bottom:878.536000pt;}
.y5c{bottom:880.672000pt;}
.y125{bottom:881.221333pt;}
.y121{bottom:882.104000pt;}
.yeb{bottom:883.590667pt;}
.y7{bottom:884.538667pt;}
.y1db{bottom:885.338667pt;}
.y11d{bottom:886.297333pt;}
.y1a2{bottom:888.672000pt;}
.y8c{bottom:889.337333pt;}
.ybc{bottom:889.338667pt;}
.y120{bottom:889.704000pt;}
.y123{bottom:890.402667pt;}
.y122{bottom:894.202667pt;}
.y11f{bottom:897.304000pt;}
.y5b{bottom:898.005333pt;}
.yea{bottom:899.744000pt;}
.y1da{bottom:900.005333pt;}
.y1a1{bottom:903.338667pt;}
.y11e{bottom:904.397333pt;}
.y6{bottom:904.538667pt;}
.y8b{bottom:906.670667pt;}
.ybb{bottom:906.672000pt;}
.y1d9{bottom:914.672000pt;}
.ye9{bottom:914.941333pt;}
.y1a0{bottom:918.005333pt;}
.y8a{bottom:924.004000pt;}
.y5a{bottom:924.005333pt;}
.y5{bottom:924.538667pt;}
.ye8{bottom:925.072000pt;}
.y1d8{bottom:929.338667pt;}
.y89{bottom:941.337333pt;}
.y59{bottom:941.338667pt;}
.y1d7{bottom:944.005333pt;}
.y19f{bottom:950.005333pt;}
.y88{bottom:958.670667pt;}
.y58{bottom:958.672000pt;}
.y4{bottom:959.205333pt;}
.ye7{bottom:961.072000pt;}
.y3{bottom:1003.464000pt;}
.h14{height:2.026645pt;}
.h15{height:27.327610pt;}
.h16{height:28.932920pt;}
.h1c{height:33.066253pt;}
.hc{height:33.364916pt;}
.h2{height:34.010181pt;}
.hf{height:37.503583pt;}
.he{height:37.748916pt;}
.hd{height:38.207583pt;}
.h3{height:38.868847pt;}
.h10{height:39.252916pt;}
.h8{height:39.266253pt;}
.h7{height:39.620916pt;}
.h12{height:42.399979pt;}
.h17{height:45.466253pt;}
.ha{height:49.322253pt;}
.h1b{height:49.327587pt;}
.h11{height:50.007587pt;}
.h4{height:50.047583pt;}
.hb{height:51.508916pt;}
.h1a{height:52.583587pt;}
.h5{height:58.303514pt;}
.h19{height:58.714253pt;}
.h18{height:60.263587pt;}
.h9{height:62.559166pt;}
.h13{height:71.284943pt;}
.h6{height:91.753415pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.032000pt;}
.x2{left:77.857333pt;}
.x3{left:83.149333pt;}
.x1{left:89.368000pt;}
.x7{left:90.708000pt;}
.xb{left:104.549333pt;}
.xa{left:105.826667pt;}
.x10{left:108.756000pt;}
.xe{left:117.477333pt;}
.x11{left:142.896000pt;}
.x13{left:158.258667pt;}
.x15{left:174.504000pt;}
.x14{left:186.885333pt;}
.x16{left:202.664000pt;}
.xf{left:234.538667pt;}
.x17{left:238.948000pt;}
.x19{left:252.570667pt;}
.x5{left:253.962667pt;}
.x12{left:255.116000pt;}
.xd{left:256.610667pt;}
.x18{left:260.538667pt;}
.x1a{left:279.890667pt;}
.x1b{left:286.945333pt;}
.x1c{left:316.744000pt;}
.x1d{left:323.722667pt;}
.x8{left:396.850667pt;}
.x4{left:411.968000pt;}
.x9{left:419.528000pt;}
.xc{left:434.645333pt;}
}




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