
    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_d03c9eb4d84371e0fe838cff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a58a6e30abc65167eb4a6d40.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c42cad3314a018b3fde079e2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bbb66106f688d4fe032635ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_957c1d770b057edcb86a83d5.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_cbe797189f3ace1bdeb747b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_61e8333971231d4c4119c128.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69c3adf41aeed2e5e3ba1ab8.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_9519aae7ad1dbc5a7ca28702.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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f8fa55cdd244cbeadc8a9011.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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);}
.v5{vertical-align:-18.900009px;}
.v4{vertical-align:-17.849995px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.725927px;}
.v2{vertical-align:21.000000px;}
.ls5b{letter-spacing:-8.316000px;}
.ls76{letter-spacing:-3.060000px;}
.ls31{letter-spacing:-1.890000px;}
.ls47{letter-spacing:-1.674000px;}
.ls37{letter-spacing:-1.620000px;}
.ls33{letter-spacing:-1.512000px;}
.ls40{letter-spacing:-1.458000px;}
.ls7a{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.404000px;}
.ls41{letter-spacing:-1.350000px;}
.ls5a{letter-spacing:-1.296000px;}
.ls49{letter-spacing:-1.242000px;}
.ls2b{letter-spacing:-1.188000px;}
.ls2c{letter-spacing:-1.134000px;}
.ls36{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.026000px;}
.ls2e{letter-spacing:-0.972000px;}
.ls29{letter-spacing:-0.918000px;}
.ls15{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.810000px;}
.ls75{letter-spacing:-0.765000px;}
.ls17{letter-spacing:-0.756000px;}
.ls19{letter-spacing:-0.702000px;}
.ls28{letter-spacing:-0.648000px;}
.ls78{letter-spacing:-0.630000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls6c{letter-spacing:-0.585000px;}
.ls4c{letter-spacing:-0.540000px;}
.ls7d{letter-spacing:-0.495000px;}
.ls25{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.432000px;}
.ls67{letter-spacing:-0.405000px;}
.ls18{letter-spacing:-0.378000px;}
.ls66{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.270000px;}
.ls4a{letter-spacing:-0.245700px;}
.ls77{letter-spacing:-0.225000px;}
.ls39{letter-spacing:-0.216000px;}
.ls7b{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.175500px;}
.ls3f{letter-spacing:-0.162000px;}
.ls45{letter-spacing:-0.140400px;}
.ls79{letter-spacing:-0.135000px;}
.ls35{letter-spacing:-0.108000px;}
.ls3e{letter-spacing:-0.105300px;}
.ls6b{letter-spacing:-0.090000px;}
.ls46{letter-spacing:-0.070200px;}
.ls26{letter-spacing:-0.054000px;}
.ls74{letter-spacing:-0.045000px;}
.ls27{letter-spacing:-0.035100px;}
.ls12{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000083px;}
.ls2{letter-spacing:0.013956px;}
.ls11{letter-spacing:0.018033px;}
.ls1{letter-spacing:0.027058px;}
.ls5d{letter-spacing:0.028831px;}
.ls4b{letter-spacing:0.035100px;}
.ls5f{letter-spacing:0.045000px;}
.ls14{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.061058px;}
.ls8{letter-spacing:0.070200px;}
.ls54{letter-spacing:0.084037px;}
.ls64{letter-spacing:0.090000px;}
.ls55{letter-spacing:0.093584px;}
.ls9{letter-spacing:0.098453px;}
.ls73{letter-spacing:0.103500px;}
.ls24{letter-spacing:0.105300px;}
.lsc{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.113975px;}
.ls6a{letter-spacing:0.135000px;}
.ls4f{letter-spacing:0.136222px;}
.ls48{letter-spacing:0.140400px;}
.lsf{letter-spacing:0.157950px;}
.ls4{letter-spacing:0.159019px;}
.lsd{letter-spacing:0.159569px;}
.ls5c{letter-spacing:0.159751px;}
.lsb{letter-spacing:0.162000px;}
.lse{letter-spacing:0.175500px;}
.ls61{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.193050px;}
.ls60{letter-spacing:0.202500px;}
.ls57{letter-spacing:0.204588px;}
.ls22{letter-spacing:0.210600px;}
.ls51{letter-spacing:0.212394px;}
.ls56{letter-spacing:0.215416px;}
.ls3{letter-spacing:0.216000px;}
.ls50{letter-spacing:0.218341px;}
.ls63{letter-spacing:0.225000px;}
.ls6{letter-spacing:0.230428px;}
.ls7{letter-spacing:0.240501px;}
.ls23{letter-spacing:0.243000px;}
.ls5{letter-spacing:0.245700px;}
.ls5e{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.270000px;}
.ls38{letter-spacing:0.280800px;}
.ls68{letter-spacing:0.315000px;}
.ls3b{letter-spacing:0.315900px;}
.ls20{letter-spacing:0.324000px;}
.ls3c{letter-spacing:0.351000px;}
.ls70{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.364832px;}
.ls16{letter-spacing:0.378000px;}
.ls53{letter-spacing:0.386100px;}
.ls6e{letter-spacing:0.405000px;}
.ls44{letter-spacing:0.421200px;}
.ls30{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.456300px;}
.ls1d{letter-spacing:0.486000px;}
.ls52{letter-spacing:0.491400px;}
.ls69{letter-spacing:0.495000px;}
.ls21{letter-spacing:0.540000px;}
.ls6d{letter-spacing:0.585000px;}
.ls1c{letter-spacing:0.594000px;}
.ls7e{letter-spacing:0.630000px;}
.ls43{letter-spacing:0.648000px;}
.ls7c{letter-spacing:0.675000px;}
.ls1f{letter-spacing:0.702000px;}
.ls1e{letter-spacing:0.756000px;}
.ls65{letter-spacing:0.810000px;}
.ls81{letter-spacing:0.832500px;}
.ls80{letter-spacing:0.836940px;}
.ls34{letter-spacing:0.864000px;}
.ls6f{letter-spacing:0.976434px;}
.ls59{letter-spacing:1.080000px;}
.ls72{letter-spacing:1.174562px;}
.ls62{letter-spacing:1.264500px;}
.ls71{letter-spacing:1.899000px;}
.ls7f{letter-spacing:2.182500px;}
.ls0{letter-spacing:3.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.wsa2{word-spacing:-13.860000px;}
.ws51{word-spacing:-13.230000px;}
.ws89{word-spacing:-13.014000px;}
.ws7e{word-spacing:-12.960000px;}
.ws9c{word-spacing:-12.852000px;}
.ws30{word-spacing:-12.798000px;}
.ws76{word-spacing:-12.744000px;}
.ws9d{word-spacing:-12.690000px;}
.ws1d{word-spacing:-12.636000px;}
.ws85{word-spacing:-12.582000px;}
.wsf{word-spacing:-12.528000px;}
.ws29{word-spacing:-12.501000px;}
.ws9e{word-spacing:-12.474000px;}
.ws33{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.366000px;}
.ws9f{word-spacing:-12.312000px;}
.ws32{word-spacing:-12.258000px;}
.ws8b{word-spacing:-12.204000px;}
.ws69{word-spacing:-12.150000px;}
.ws8{word-spacing:-12.096000px;}
.ws58{word-spacing:-12.042000px;}
.ws31{word-spacing:-11.988000px;}
.ws2e{word-spacing:-11.934000px;}
.ws2f{word-spacing:-11.880000px;}
.ws84{word-spacing:-11.826000px;}
.ws7{word-spacing:-11.772000px;}
.ws2b{word-spacing:-11.718000px;}
.ws5{word-spacing:-11.664000px;}
.ws3{word-spacing:-11.610000px;}
.ws4f{word-spacing:-11.556000px;}
.ws4{word-spacing:-11.502000px;}
.ws2a{word-spacing:-11.448000px;}
.ws12{word-spacing:-11.394000px;}
.ws2{word-spacing:-11.340000px;}
.ws52{word-spacing:-11.286000px;}
.ws2c{word-spacing:-11.232000px;}
.ws4e{word-spacing:-11.178000px;}
.ws6f{word-spacing:-11.124000px;}
.ws9b{word-spacing:-11.070000px;}
.ws5d{word-spacing:-11.016000px;}
.ws5c{word-spacing:-10.908000px;}
.ws50{word-spacing:-10.854000px;}
.ws53{word-spacing:-10.746000px;}
.wsa4{word-spacing:-10.530000px;}
.wsc3{word-spacing:-10.485000px;}
.ws4d{word-spacing:-10.476000px;}
.wsb5{word-spacing:-10.440000px;}
.wsc2{word-spacing:-10.417500px;}
.wsc1{word-spacing:-10.395000px;}
.wsc4{word-spacing:-10.350000px;}
.wsde{word-spacing:-10.080000px;}
.wsdd{word-spacing:-9.945000px;}
.wsbf{word-spacing:-9.675000px;}
.ws25{word-spacing:-9.600000px;}
.wsa3{word-spacing:-9.225000px;}
.wsc0{word-spacing:-8.865000px;}
.ws88{word-spacing:-8.459100px;}
.ws6d{word-spacing:-8.424000px;}
.ws68{word-spacing:-8.388900px;}
.ws8a{word-spacing:-8.353800px;}
.ws5a{word-spacing:-8.318700px;}
.ws59{word-spacing:-8.283600px;}
.ws57{word-spacing:-8.248500px;}
.ws56{word-spacing:-8.213400px;}
.ws6c{word-spacing:-8.178300px;}
.ws6{word-spacing:-8.143200px;}
.ws6e{word-spacing:-8.108100px;}
.ws27{word-spacing:-8.073000px;}
.ws9{word-spacing:-8.037900px;}
.ws71{word-spacing:-8.002800px;}
.ws26{word-spacing:-7.967700px;}
.ws28{word-spacing:-7.932600px;}
.ws6b{word-spacing:-7.897500px;}
.ws5b{word-spacing:-7.862400px;}
.ws6a{word-spacing:-7.827300px;}
.ws2d{word-spacing:-7.792200px;}
.ws70{word-spacing:-7.722000px;}
.wsa{word-spacing:-6.630000px;}
.wsda{word-spacing:-6.030000px;}
.ws44{word-spacing:-5.508000px;}
.wsa9{word-spacing:-2.376000px;}
.ws8d{word-spacing:-2.268000px;}
.wsab{word-spacing:-2.214000px;}
.ws5f{word-spacing:-2.052000px;}
.wsac{word-spacing:-1.890000px;}
.ws60{word-spacing:-1.836000px;}
.ws3f{word-spacing:-1.674000px;}
.wsae{word-spacing:-1.620000px;}
.ws3c{word-spacing:-1.404000px;}
.wsaf{word-spacing:-1.350000px;}
.wse{word-spacing:-1.242000px;}
.ws11{word-spacing:-1.188000px;}
.wsd2{word-spacing:-1.170000px;}
.wsb7{word-spacing:-1.125000px;}
.ws72{word-spacing:-1.080000px;}
.wsb2{word-spacing:-1.035000px;}
.ws20{word-spacing:-1.026000px;}
.wsb6{word-spacing:-0.990000px;}
.ws7f{word-spacing:-0.972000px;}
.wsd3{word-spacing:-0.945000px;}
.ws8f{word-spacing:-0.918000px;}
.wsd9{word-spacing:-0.900000px;}
.wsbe{word-spacing:-0.855000px;}
.wsa6{word-spacing:-0.810000px;}
.wsc6{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.756000px;}
.wsbc{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.702000px;}
.wsd4{word-spacing:-0.675000px;}
.ws18{word-spacing:-0.648000px;}
.wsb0{word-spacing:-0.630000px;}
.ws42{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.585000px;}
.wsd{word-spacing:-0.540000px;}
.wsb9{word-spacing:-0.495000px;}
.ws47{word-spacing:-0.486000px;}
.wsd5{word-spacing:-0.450000px;}
.ws1f{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.421200px;}
.wsd6{word-spacing:-0.405000px;}
.ws62{word-spacing:-0.378000px;}
.wsce{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.324000px;}
.ws77{word-spacing:-0.315900px;}
.wsbb{word-spacing:-0.315000px;}
.ws39{word-spacing:-0.270000px;}
.wse4{word-spacing:-0.264000px;}
.ws61{word-spacing:-0.245700px;}
.wsb4{word-spacing:-0.225000px;}
.wsc{word-spacing:-0.216000px;}
.ws95{word-spacing:-0.210600px;}
.wsba{word-spacing:-0.180000px;}
.ws55{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.108000px;}
.wsbd{word-spacing:-0.090000px;}
.ws96{word-spacing:-0.070200px;}
.ws80{word-spacing:-0.054000px;}
.wsb1{word-spacing:-0.045000px;}
.wsb{word-spacing:0.000000px;}
.ws73{word-spacing:0.035100px;}
.ws7a{word-spacing:0.054000px;}
.wsdc{word-spacing:0.090000px;}
.ws66{word-spacing:0.105300px;}
.ws63{word-spacing:0.108000px;}
.wscb{word-spacing:0.135000px;}
.ws78{word-spacing:0.140400px;}
.ws45{word-spacing:0.162000px;}
.wsd7{word-spacing:0.180000px;}
.ws67{word-spacing:0.216000px;}
.wsd1{word-spacing:0.225000px;}
.ws38{word-spacing:0.270000px;}
.ws97{word-spacing:0.324000px;}
.wsca{word-spacing:0.360000px;}
.ws9a{word-spacing:0.378000px;}
.ws7c{word-spacing:0.432000px;}
.ws54{word-spacing:0.486000px;}
.wsd8{word-spacing:0.495000px;}
.wsdf{word-spacing:0.540000px;}
.ws34{word-spacing:0.594000px;}
.ws36{word-spacing:0.648000px;}
.wsdb{word-spacing:0.675000px;}
.ws46{word-spacing:0.702000px;}
.wsc8{word-spacing:0.720000px;}
.ws81{word-spacing:0.756000px;}
.ws21{word-spacing:0.810000px;}
.ws65{word-spacing:0.864000px;}
.ws4c{word-spacing:0.918000px;}
.wse2{word-spacing:0.945000px;}
.ws41{word-spacing:0.972000px;}
.wsc9{word-spacing:0.990000px;}
.ws1b{word-spacing:1.026000px;}
.wsb8{word-spacing:1.035000px;}
.ws79{word-spacing:1.080000px;}
.ws7b{word-spacing:1.134000px;}
.ws1c{word-spacing:1.188000px;}
.wse0{word-spacing:1.215000px;}
.ws13{word-spacing:1.242000px;}
.wse3{word-spacing:1.296000px;}
.wsc7{word-spacing:1.305000px;}
.ws3d{word-spacing:1.350000px;}
.wsd0{word-spacing:1.395000px;}
.ws40{word-spacing:1.404000px;}
.ws7d{word-spacing:1.458000px;}
.wscc{word-spacing:1.485000px;}
.ws74{word-spacing:1.512000px;}
.wscd{word-spacing:1.575000px;}
.ws14{word-spacing:1.620000px;}
.ws1a{word-spacing:1.674000px;}
.wscf{word-spacing:1.710000px;}
.ws17{word-spacing:1.728000px;}
.ws99{word-spacing:1.782000px;}
.wse1{word-spacing:1.890000px;}
.ws98{word-spacing:1.998000px;}
.ws19{word-spacing:2.052000px;}
.wsa7{word-spacing:2.106000px;}
.ws87{word-spacing:2.214000px;}
.wsa5{word-spacing:2.268000px;}
.ws4a{word-spacing:2.376000px;}
.ws64{word-spacing:2.484000px;}
.ws92{word-spacing:2.538000px;}
.ws8c{word-spacing:2.700000px;}
.wsad{word-spacing:2.862000px;}
.ws91{word-spacing:3.024000px;}
.wsc5{word-spacing:3.060000px;}
.wse7{word-spacing:3.132000px;}
.wse5{word-spacing:3.186000px;}
.ws90{word-spacing:3.240000px;}
.wse6{word-spacing:3.348000px;}
.wsa0{word-spacing:3.510000px;}
.ws86{word-spacing:3.564000px;}
.ws35{word-spacing:3.726000px;}
.ws48{word-spacing:3.996000px;}
.ws5e{word-spacing:4.104000px;}
.wsaa{word-spacing:4.212000px;}
.ws94{word-spacing:4.266000px;}
.ws93{word-spacing:4.320000px;}
.ws3b{word-spacing:4.752000px;}
.ws8e{word-spacing:5.400000px;}
.ws82{word-spacing:5.454000px;}
.ws3e{word-spacing:5.562000px;}
.ws23{word-spacing:5.661000px;}
.ws83{word-spacing:5.670000px;}
.ws24{word-spacing:6.018000px;}
.wse9{word-spacing:6.264000px;}
.wsa8{word-spacing:6.480000px;}
.wse8{word-spacing:6.750000px;}
.wsa1{word-spacing:8.316000px;}
.ws3a{word-spacing:8.748000px;}
.ws37{word-spacing:9.990000px;}
.ws22{word-spacing:12.852000px;}
.ws4b{word-spacing:15.282000px;}
.ws43{word-spacing:16.848000px;}
._12{margin-left:-20.952007px;}
._14{margin-left:-17.188702px;}
._7{margin-left:-14.483461px;}
._16{margin-left:-13.460399px;}
._9{margin-left:-12.392400px;}
._8{margin-left:-10.921249px;}
._d{margin-left:-9.895200px;}
._10{margin-left:-8.252012px;}
._19{margin-left:-7.200000px;}
._2{margin-left:-6.130800px;}
._3{margin-left:-4.368000px;}
._4{margin-left:-3.322800px;}
._0{margin-left:-1.876800px;}
._5{width:1.060200px;}
._6{width:2.130526px;}
._c{width:3.605700px;}
._b{width:5.604900px;}
._1b{width:6.907800px;}
._15{width:9.223732px;}
._a{width:10.967429px;}
._f{width:12.124784px;}
._13{width:13.404571px;}
._1c{width:14.493000px;}
._18{width:15.750000px;}
._11{width:16.920000px;}
._1a{width:18.045000px;}
._e{width:47.314440px;}
._17{width:48.408331px;}
._1{width:321.460800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.199200px;}
.y35{bottom:3.199350px;}
.y9c{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y34{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y73{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y33{bottom:68.043600px;}
.y192{bottom:69.551398px;}
.y1e3{bottom:69.915784px;}
.ye3{bottom:71.248503px;}
.y8d{bottom:72.622652px;}
.y160{bottom:76.993648px;}
.y5e{bottom:77.131652px;}
.ydf{bottom:79.983148px;}
.y126{bottom:79.984648px;}
.y1f7{bottom:80.148897px;}
.y191{bottom:82.297648px;}
.y1e2{bottom:82.662034px;}
.y32{bottom:83.037600px;}
.y71{bottom:83.450102px;}
.ye2{bottom:86.247003px;}
.y8c{bottom:87.621152px;}
.y15f{bottom:91.992148px;}
.y5d{bottom:92.130152px;}
.yde{bottom:94.981648px;}
.y125{bottom:94.983148px;}
.y190{bottom:95.043898px;}
.y1f6{bottom:95.148897px;}
.y1e1{bottom:95.408284px;}
.y31{bottom:98.037600px;}
.y70{bottom:98.448602px;}
.ye1{bottom:101.245503px;}
.y8b{bottom:102.622652px;}
.y15e{bottom:106.990648px;}
.y5c{bottom:107.128652px;}
.y18f{bottom:107.790148px;}
.y1e0{bottom:108.154534px;}
.ydd{bottom:109.980148px;}
.y124{bottom:109.981648px;}
.y6f{bottom:113.447102px;}
.ye0{bottom:116.244003px;}
.y30{bottom:117.494099px;}
.y8a{bottom:117.621152px;}
.y18e{bottom:120.536398px;}
.y1df{bottom:120.900784px;}
.y15d{bottom:121.989148px;}
.y5b{bottom:122.127152px;}
.y123{bottom:124.983148px;}
.y1f5{bottom:126.617249px;}
.y89{bottom:132.621152px;}
.y18d{bottom:133.282648px;}
.y1de{bottom:133.647034px;}
.y15c{bottom:136.987648px;}
.y5a{bottom:137.125652px;}
.y122{bottom:139.981648px;}
.y1f4{bottom:141.615749px;}
.ydc{bottom:142.981648px;}
.y18c{bottom:146.028898px;}
.y1dd{bottom:146.393284px;}
.y88{bottom:147.621152px;}
.y15b{bottom:151.986148px;}
.y59{bottom:152.124152px;}
.y121{bottom:154.984648px;}
.y1f3{bottom:156.615749px;}
.ydb{bottom:157.981648px;}
.y18b{bottom:158.775148px;}
.y1dc{bottom:159.139534px;}
.y2e{bottom:160.576805px;}
.y87{bottom:162.621152px;}
.y15a{bottom:166.984648px;}
.y58{bottom:167.122652px;}
.y120{bottom:169.983148px;}
.y18a{bottom:171.521398px;}
.y1db{bottom:171.885784px;}
.yda{bottom:172.981648px;}
.y2d{bottom:175.575305px;}
.y86{bottom:177.622652px;}
.y159{bottom:181.983148px;}
.y57{bottom:182.121152px;}
.y189{bottom:184.267648px;}
.y1da{bottom:184.632034px;}
.y11f{bottom:184.981648px;}
.y1f2{bottom:186.635261px;}
.ye6{bottom:186.873150px;}
.yd9{bottom:187.981648px;}
.y2c{bottom:190.573805px;}
.y85{bottom:192.621152px;}
.y158{bottom:196.981648px;}
.y188{bottom:197.013898px;}
.y56{bottom:197.119652px;}
.y1d9{bottom:197.378284px;}
.y11e{bottom:199.986148px;}
.y1f1{bottom:201.633761px;}
.ye5{bottom:201.873150px;}
.yd8{bottom:202.981648px;}
.y2b{bottom:205.572305px;}
.y84{bottom:207.622652px;}
.y187{bottom:209.760148px;}
.y1d8{bottom:210.124534px;}
.y157{bottom:211.981648px;}
.y11d{bottom:214.984648px;}
.y1f0{bottom:216.632261px;}
.ye4{bottom:216.871650px;}
.yd7{bottom:217.983148px;}
.y2a{bottom:220.570805px;}
.y186{bottom:222.506398px;}
.y83{bottom:222.621152px;}
.y1d7{bottom:222.870784px;}
.y156{bottom:226.984648px;}
.y11c{bottom:229.983148px;}
.y55{bottom:230.121152px;}
.y1ef{bottom:231.630761px;}
.yd6{bottom:232.981648px;}
.y185{bottom:235.252648px;}
.y29{bottom:235.570805px;}
.y1d6{bottom:235.617034px;}
.y82{bottom:237.621152px;}
.y155{bottom:241.983148px;}
.y11b{bottom:244.981648px;}
.y54{bottom:245.121152px;}
.y1ee{bottom:246.629261px;}
.yd5{bottom:247.981648px;}
.y184{bottom:247.998898px;}
.y1d5{bottom:248.363284px;}
.y28{bottom:250.576805px;}
.y81{bottom:252.622652px;}
.y154{bottom:256.981648px;}
.y11a{bottom:259.986148px;}
.y53{bottom:260.119652px;}
.y183{bottom:260.745148px;}
.y1d4{bottom:261.109534px;}
.y1ed{bottom:261.627761px;}
.yd4{bottom:262.983148px;}
.y27{bottom:265.575305px;}
.y80{bottom:267.621152px;}
.y153{bottom:271.981648px;}
.y182{bottom:273.491398px;}
.y1d3{bottom:273.855784px;}
.y119{bottom:274.984648px;}
.y1ec{bottom:276.626261px;}
.yd3{bottom:277.981648px;}
.y26{bottom:280.573805px;}
.y7f{bottom:282.621152px;}
.y181{bottom:286.237648px;}
.y1d2{bottom:286.602034px;}
.y152{bottom:286.984648px;}
.y118{bottom:289.983148px;}
.y1eb{bottom:291.624761px;}
.yd2{bottom:292.989148px;}
.y52{bottom:293.119652px;}
.y25{bottom:295.572305px;}
.y7e{bottom:297.621152px;}
.y180{bottom:298.983898px;}
.y1d1{bottom:299.348284px;}
.y151{bottom:301.983148px;}
.y117{bottom:304.981648px;}
.y1ea{bottom:306.623261px;}
.yd1{bottom:307.987648px;}
.y24{bottom:310.570805px;}
.y17f{bottom:311.730148px;}
.y1d0{bottom:312.094534px;}
.y7d{bottom:312.621152px;}
.y150{bottom:316.981648px;}
.y116{bottom:319.981648px;}
.y1e9{bottom:321.621761px;}
.yd0{bottom:322.986148px;}
.y17e{bottom:324.480148px;}
.y1cf{bottom:324.840784px;}
.y23{bottom:325.573805px;}
.y51{bottom:326.128629px;}
.y7c{bottom:327.627129px;}
.y14f{bottom:331.981648px;}
.y115{bottom:334.981648px;}
.y1e8{bottom:336.620261px;}
.y1ce{bottom:337.587034px;}
.ycf{bottom:337.984648px;}
.y22{bottom:340.572305px;}
.y50{bottom:341.127129px;}
.y7b{bottom:342.625629px;}
.y14e{bottom:346.986148px;}
.y114{bottom:349.983148px;}
.y1cd{bottom:350.333284px;}
.y1e7{bottom:351.618761px;}
.yce{bottom:352.983148px;}
.y21{bottom:355.570805px;}
.y4f{bottom:356.125629px;}
.y7a{bottom:357.624129px;}
.y14d{bottom:361.984648px;}
.y1cc{bottom:363.079534px;}
.y113{bottom:364.981648px;}
.y1e6{bottom:366.617261px;}
.ycd{bottom:367.981648px;}
.y20{bottom:370.572305px;}
.y4e{bottom:371.124129px;}
.y79{bottom:372.622629px;}
.y17d{bottom:373.980148px;}
.y1cb{bottom:375.825784px;}
.y14c{bottom:376.983148px;}
.y112{bottom:379.981648px;}
.y1e5{bottom:381.615761px;}
.ycc{bottom:382.981648px;}
.y1f{bottom:385.570805px;}
.y4d{bottom:386.122629px;}
.y78{bottom:387.621129px;}
.y1ca{bottom:388.572034px;}
.y14b{bottom:391.981648px;}
.y111{bottom:394.983148px;}
.y1e4{bottom:396.615738px;}
.ycb{bottom:397.981648px;}
.y1e{bottom:400.570805px;}
.y4c{bottom:401.121129px;}
.y1c9{bottom:401.318284px;}
.y77{bottom:402.619629px;}
.y14a{bottom:406.981648px;}
.y110{bottom:409.981648px;}
.yca{bottom:412.981648px;}
.y1c8{bottom:414.064534px;}
.y1d{bottom:415.572305px;}
.y4b{bottom:416.119629px;}
.y149{bottom:421.981648px;}
.y10f{bottom:424.986148px;}
.y1c7{bottom:426.810784px;}
.yc9{bottom:427.984648px;}
.y1c{bottom:430.570805px;}
.y76{bottom:435.621129px;}
.y148{bottom:436.981648px;}
.y17c{bottom:436.992148px;}
.y1c6{bottom:439.557034px;}
.y10e{bottom:439.984648px;}
.yc8{bottom:442.983148px;}
.y1b{bottom:445.570805px;}
.y4a{bottom:449.125629px;}
.y75{bottom:450.619629px;}
.y147{bottom:451.981648px;}
.y17b{bottom:451.990648px;}
.y1c5{bottom:452.303284px;}
.y10d{bottom:454.983148px;}
.yc7{bottom:457.981648px;}
.y1a{bottom:460.572305px;}
.y49{bottom:464.124129px;}
.y1c4{bottom:465.049534px;}
.y146{bottom:466.981648px;}
.y17a{bottom:466.989148px;}
.y10c{bottom:469.981648px;}
.yc6{bottom:472.983148px;}
.y19{bottom:475.570805px;}
.y1c3{bottom:477.795784px;}
.y48{bottom:479.122629px;}
.y145{bottom:481.981648px;}
.y179{bottom:481.987648px;}
.y10b{bottom:484.981648px;}
.y9b{bottom:487.731170px;}
.yc5{bottom:487.981648px;}
.y1c2{bottom:490.542034px;}
.y18{bottom:490.612815px;}
.y47{bottom:494.121129px;}
.y144{bottom:496.980148px;}
.y178{bottom:496.986148px;}
.y10a{bottom:499.981648px;}
.y9a{bottom:502.729670px;}
.yc4{bottom:502.981648px;}
.y1c1{bottom:503.288284px;}
.y6e{bottom:504.705135px;}
.y17{bottom:505.611315px;}
.y46{bottom:509.119629px;}
.y143{bottom:511.980148px;}
.y177{bottom:511.984648px;}
.y109{bottom:514.983148px;}
.y1c0{bottom:516.034534px;}
.y99{bottom:517.728170px;}
.yc3{bottom:517.981648px;}
.y6d{bottom:519.703635px;}
.y176{bottom:526.983148px;}
.y1bf{bottom:528.780784px;}
.y108{bottom:529.981648px;}
.y98{bottom:532.726670px;}
.yc2{bottom:532.983148px;}
.y6c{bottom:534.702135px;}
.y1be{bottom:541.527034px;}
.y175{bottom:541.981648px;}
.y45{bottom:542.121129px;}
.y107{bottom:544.981648px;}
.y97{bottom:547.725170px;}
.yc1{bottom:547.981648px;}
.y6b{bottom:549.700635px;}
.y16{bottom:550.755315px;}
.y1bd{bottom:554.273284px;}
.y174{bottom:556.980148px;}
.y44{bottom:557.121129px;}
.y106{bottom:559.983148px;}
.y142{bottom:559.986148px;}
.y96{bottom:562.723670px;}
.yc0{bottom:562.981648px;}
.y6a{bottom:564.699135px;}
.y1bc{bottom:567.019534px;}
.y15{bottom:567.252315px;}
.y43{bottom:572.121129px;}
.y105{bottom:574.981648px;}
.y141{bottom:574.984648px;}
.y95{bottom:577.722170px;}
.ybf{bottom:577.984648px;}
.y69{bottom:579.697635px;}
.y1bb{bottom:579.765784px;}
.y14{bottom:583.749315px;}
.y42{bottom:587.119629px;}
.y104{bottom:589.983148px;}
.y1ba{bottom:592.512034px;}
.y94{bottom:592.720670px;}
.ybe{bottom:592.983148px;}
.y68{bottom:594.696135px;}
.y13{bottom:600.246315px;}
.y41{bottom:602.119629px;}
.y103{bottom:604.981648px;}
.y1b9{bottom:605.258284px;}
.y93{bottom:607.719170px;}
.ybd{bottom:607.981648px;}
.y67{bottom:609.694635px;}
.y12{bottom:616.743315px;}
.y1b8{bottom:618.004534px;}
.y102{bottom:619.981648px;}
.y173{bottom:619.986148px;}
.y140{bottom:620.005694px;}
.y92{bottom:622.717670px;}
.ybc{bottom:622.981648px;}
.y66{bottom:624.693135px;}
.y1b7{bottom:630.750784px;}
.y11{bottom:633.240315px;}
.y101{bottom:634.983148px;}
.y172{bottom:634.984648px;}
.y13f{bottom:635.004194px;}
.y40{bottom:635.124129px;}
.y91{bottom:637.716170px;}
.ybb{bottom:637.981648px;}
.y65{bottom:639.691635px;}
.y1b6{bottom:643.497034px;}
.y10{bottom:649.737315px;}
.y100{bottom:649.981648px;}
.y171{bottom:649.983148px;}
.y13e{bottom:650.002694px;}
.y3f{bottom:650.122629px;}
.y90{bottom:652.714670px;}
.yba{bottom:652.981648px;}
.y1b5{bottom:656.243284px;}
.y170{bottom:664.981648px;}
.yff{bottom:664.983148px;}
.y13d{bottom:665.001194px;}
.y3e{bottom:665.121129px;}
.yf{bottom:666.234315px;}
.y8f{bottom:667.713170px;}
.yb9{bottom:667.986148px;}
.y1b4{bottom:668.989534px;}
.y16f{bottom:679.980148px;}
.yfe{bottom:679.981648px;}
.y13c{bottom:679.999694px;}
.y3d{bottom:680.119629px;}
.y1b3{bottom:681.735784px;}
.y8e{bottom:682.711670px;}
.ye{bottom:682.731315px;}
.yb8{bottom:682.984648px;}
.y1b2{bottom:694.482034px;}
.y16e{bottom:694.980148px;}
.yfd{bottom:694.983148px;}
.y13b{bottom:694.998194px;}
.yb7{bottom:697.983148px;}
.yd{bottom:699.228315px;}
.y1b1{bottom:707.228284px;}
.yfc{bottom:709.981648px;}
.y13a{bottom:709.996694px;}
.yb6{bottom:712.981648px;}
.y3c{bottom:713.124129px;}
.yc{bottom:715.725315px;}
.y1b0{bottom:719.974534px;}
.yfb{bottom:724.981648px;}
.y139{bottom:724.995194px;}
.yb5{bottom:727.983148px;}
.y16d{bottom:727.984694px;}
.y3b{bottom:728.122629px;}
.yb{bottom:732.222315px;}
.y1af{bottom:732.720784px;}
.yfa{bottom:739.983194px;}
.y138{bottom:739.993694px;}
.yb4{bottom:742.981648px;}
.y16c{bottom:742.983194px;}
.y3a{bottom:743.121129px;}
.y1ae{bottom:745.467034px;}
.ya{bottom:748.719315px;}
.yf9{bottom:754.981694px;}
.y137{bottom:754.992194px;}
.yb3{bottom:757.981694px;}
.y39{bottom:758.121129px;}
.y1ad{bottom:758.213284px;}
.yf8{bottom:769.981694px;}
.y136{bottom:769.990694px;}
.y1ac{bottom:770.959534px;}
.yb2{bottom:772.987694px;}
.y16b{bottom:772.998194px;}
.y38{bottom:773.121129px;}
.y9{bottom:778.719269px;}
.y1ab{bottom:783.705784px;}
.yf7{bottom:784.986194px;}
.y135{bottom:784.989194px;}
.yb1{bottom:787.986194px;}
.y16a{bottom:787.996694px;}
.y37{bottom:788.119629px;}
.y1aa{bottom:796.452034px;}
.yf6{bottom:799.984694px;}
.y134{bottom:799.987694px;}
.yb0{bottom:802.984694px;}
.y169{bottom:802.995194px;}
.y1a9{bottom:809.198284px;}
.y8{bottom:811.701269px;}
.yf5{bottom:814.983194px;}
.y133{bottom:814.986194px;}
.y207{bottom:815.537702px;}
.yaf{bottom:817.983194px;}
.y168{bottom:817.993694px;}
.y1a8{bottom:821.944534px;}
.yf4{bottom:829.981694px;}
.y132{bottom:829.984694px;}
.yae{bottom:832.981694px;}
.y167{bottom:832.992194px;}
.y1a7{bottom:834.690784px;}
.yf3{bottom:844.980194px;}
.y131{bottom:844.983194px;}
.y206{bottom:845.534700px;}
.y1a6{bottom:847.437034px;}
.yad{bottom:847.981694px;}
.y166{bottom:847.990694px;}
.y63{bottom:852.575972px;}
.y7{bottom:856.707269px;}
.yf2{bottom:859.980194px;}
.y130{bottom:859.981694px;}
.y1a5{bottom:860.183284px;}
.y205{bottom:860.533200px;}
.yac{bottom:862.983194px;}
.y165{bottom:862.989194px;}
.y62{bottom:867.574472px;}
.y1a4{bottom:872.929534px;}
.y12f{bottom:874.983194px;}
.y204{bottom:875.531700px;}
.yab{bottom:877.981694px;}
.y164{bottom:877.987694px;}
.y61{bottom:882.572972px;}
.y1a3{bottom:885.675784px;}
.y12e{bottom:889.981694px;}
.y203{bottom:890.530200px;}
.yf1{bottom:892.986194px;}
.yaa{bottom:892.987694px;}
.y60{bottom:897.572972px;}
.y1a2{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y12d{bottom:904.983194px;}
.y202{bottom:905.528700px;}
.yf0{bottom:907.984694px;}
.ya9{bottom:907.986194px;}
.y1a1{bottom:911.168284px;}
.y5f{bottom:912.571472px;}
.y12c{bottom:919.981694px;}
.y201{bottom:920.527200px;}
.yef{bottom:922.983194px;}
.ya8{bottom:922.984694px;}
.y1a0{bottom:923.914534px;}
.y12b{bottom:934.983194px;}
.y200{bottom:935.525700px;}
.y19f{bottom:936.660784px;}
.yee{bottom:937.981694px;}
.ya7{bottom:937.983194px;}
.y5{bottom:946.719269px;}
.y19e{bottom:949.407034px;}
.y12a{bottom:949.981694px;}
.y1ff{bottom:950.524200px;}
.ya6{bottom:952.981694px;}
.y163{bottom:952.984694px;}
.yed{bottom:952.993694px;}
.y2f{bottom:954.366760px;}
.y19d{bottom:962.153284px;}
.y129{bottom:964.980194px;}
.ya5{bottom:967.981694px;}
.y162{bottom:967.983194px;}
.yec{bottom:967.992194px;}
.y1fe{bottom:973.013700px;}
.y19c{bottom:974.899534px;}
.y128{bottom:979.980194px;}
.y161{bottom:982.981694px;}
.ya4{bottom:982.983194px;}
.yeb{bottom:982.990694px;}
.y19b{bottom:987.645784px;}
.y1fd{bottom:988.012200px;}
.ya3{bottom:997.981694px;}
.yea{bottom:997.989194px;}
.y19a{bottom:1000.392034px;}
.y1fc{bottom:1010.516700px;}
.ya2{bottom:1012.981694px;}
.ye9{bottom:1012.987694px;}
.y199{bottom:1013.138284px;}
.y198{bottom:1025.884534px;}
.ya1{bottom:1027.983194px;}
.ye8{bottom:1027.986194px;}
.y1fb{bottom:1033.021200px;}
.y197{bottom:1038.630784px;}
.ya0{bottom:1042.981694px;}
.ye7{bottom:1042.984694px;}
.y196{bottom:1051.377034px;}
.y1fa{bottom:1055.525700px;}
.y127{bottom:1057.981694px;}
.y9f{bottom:1057.983194px;}
.y195{bottom:1064.123284px;}
.y1f9{bottom:1070.524200px;}
.y9e{bottom:1072.981694px;}
.y194{bottom:1076.869534px;}
.y1f8{bottom:1085.524200px;}
.y9d{bottom:1087.980194px;}
.y193{bottom:1089.615784px;}
.y64{bottom:1140.640320px;}
.y74{bottom:1140.746521px;}
.y36{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h13{height:30.684673px;}
.h2{height:34.523438px;}
.h2f{height:35.411133px;}
.h7{height:38.838867px;}
.h31{height:44.505000px;}
.h30{height:45.090000px;}
.h3{height:45.679688px;}
.h32{height:46.080000px;}
.h1a{height:47.469727px;}
.h14{height:48.510668px;}
.h15{height:48.534668px;}
.h6{height:49.183594px;}
.h16{height:49.349529px;}
.h33{height:50.439000px;}
.h8{height:51.416016px;}
.h9{height:53.406000px;}
.ha{height:53.439827px;}
.h2a{height:53.511680px;}
.h2c{height:53.541680px;}
.h23{height:53.583680px;}
.h10{height:53.583863px;}
.h1e{height:53.583955px;}
.h28{height:53.589863px;}
.h2b{height:53.595680px;}
.hf{height:53.595863px;}
.h29{height:53.595907px;}
.h21{height:53.601680px;}
.hb{height:53.601863px;}
.h25{height:53.601907px;}
.h1f{height:53.601909px;}
.h26{height:53.607317px;}
.h22{height:53.607680px;}
.h11{height:53.607863px;}
.h24{height:53.607907px;}
.h20{height:53.607909px;}
.h19{height:53.608046px;}
.h18{height:53.608413px;}
.h2d{height:53.613863px;}
.h1b{height:53.614046px;}
.h17{height:53.614413px;}
.h27{height:54.054000px;}
.h2e{height:54.084000px;}
.he{height:54.096000px;}
.hc{height:54.102000px;}
.hd{height:54.108000px;}
.h1d{height:55.290000px;}
.h1c{height:55.296000px;}
.h4{height:57.099609px;}
.h12{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.852077px;}
.xa{left:254.108228px;}
.xc{left:302.498703px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xb{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v5{vertical-align:-16.800008pt;}
.v4{vertical-align:-15.866662pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.645268pt;}
.v2{vertical-align:18.666667pt;}
.ls5b{letter-spacing:-7.392000pt;}
.ls76{letter-spacing:-2.720000pt;}
.ls31{letter-spacing:-1.680000pt;}
.ls47{letter-spacing:-1.488000pt;}
.ls37{letter-spacing:-1.440000pt;}
.ls33{letter-spacing:-1.344000pt;}
.ls40{letter-spacing:-1.296000pt;}
.ls7a{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.248000pt;}
.ls41{letter-spacing:-1.200000pt;}
.ls5a{letter-spacing:-1.152000pt;}
.ls49{letter-spacing:-1.104000pt;}
.ls2b{letter-spacing:-1.056000pt;}
.ls2c{letter-spacing:-1.008000pt;}
.ls36{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.912000pt;}
.ls2e{letter-spacing:-0.864000pt;}
.ls29{letter-spacing:-0.816000pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.720000pt;}
.ls75{letter-spacing:-0.680000pt;}
.ls17{letter-spacing:-0.672000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls78{letter-spacing:-0.560000pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls6c{letter-spacing:-0.520000pt;}
.ls4c{letter-spacing:-0.480000pt;}
.ls7d{letter-spacing:-0.440000pt;}
.ls25{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.384000pt;}
.ls67{letter-spacing:-0.360000pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls66{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.240000pt;}
.ls4a{letter-spacing:-0.218400pt;}
.ls77{letter-spacing:-0.200000pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls7b{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.156000pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls45{letter-spacing:-0.124800pt;}
.ls79{letter-spacing:-0.120000pt;}
.ls35{letter-spacing:-0.096000pt;}
.ls3e{letter-spacing:-0.093600pt;}
.ls6b{letter-spacing:-0.080000pt;}
.ls46{letter-spacing:-0.062400pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls74{letter-spacing:-0.040000pt;}
.ls27{letter-spacing:-0.031200pt;}
.ls12{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000074pt;}
.ls2{letter-spacing:0.012405pt;}
.ls11{letter-spacing:0.016029pt;}
.ls1{letter-spacing:0.024051pt;}
.ls5d{letter-spacing:0.025628pt;}
.ls4b{letter-spacing:0.031200pt;}
.ls5f{letter-spacing:0.040000pt;}
.ls14{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.054273pt;}
.ls8{letter-spacing:0.062400pt;}
.ls54{letter-spacing:0.074700pt;}
.ls64{letter-spacing:0.080000pt;}
.ls55{letter-spacing:0.083186pt;}
.ls9{letter-spacing:0.087513pt;}
.ls73{letter-spacing:0.092000pt;}
.ls24{letter-spacing:0.093600pt;}
.lsc{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.101311pt;}
.ls6a{letter-spacing:0.120000pt;}
.ls4f{letter-spacing:0.121087pt;}
.ls48{letter-spacing:0.124800pt;}
.lsf{letter-spacing:0.140400pt;}
.ls4{letter-spacing:0.141350pt;}
.lsd{letter-spacing:0.141839pt;}
.ls5c{letter-spacing:0.142001pt;}
.lsb{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.156000pt;}
.ls61{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.171600pt;}
.ls60{letter-spacing:0.180000pt;}
.ls57{letter-spacing:0.181856pt;}
.ls22{letter-spacing:0.187200pt;}
.ls51{letter-spacing:0.188794pt;}
.ls56{letter-spacing:0.191480pt;}
.ls3{letter-spacing:0.192000pt;}
.ls50{letter-spacing:0.194081pt;}
.ls63{letter-spacing:0.200000pt;}
.ls6{letter-spacing:0.204824pt;}
.ls7{letter-spacing:0.213779pt;}
.ls23{letter-spacing:0.216000pt;}
.ls5{letter-spacing:0.218400pt;}
.ls5e{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.240000pt;}
.ls38{letter-spacing:0.249600pt;}
.ls68{letter-spacing:0.280000pt;}
.ls3b{letter-spacing:0.280800pt;}
.ls20{letter-spacing:0.288000pt;}
.ls3c{letter-spacing:0.312000pt;}
.ls70{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.324295pt;}
.ls16{letter-spacing:0.336000pt;}
.ls53{letter-spacing:0.343200pt;}
.ls6e{letter-spacing:0.360000pt;}
.ls44{letter-spacing:0.374400pt;}
.ls30{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.405600pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls52{letter-spacing:0.436800pt;}
.ls69{letter-spacing:0.440000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls6d{letter-spacing:0.520000pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls7e{letter-spacing:0.560000pt;}
.ls43{letter-spacing:0.576000pt;}
.ls7c{letter-spacing:0.600000pt;}
.ls1f{letter-spacing:0.624000pt;}
.ls1e{letter-spacing:0.672000pt;}
.ls65{letter-spacing:0.720000pt;}
.ls81{letter-spacing:0.740000pt;}
.ls80{letter-spacing:0.743946pt;}
.ls34{letter-spacing:0.768000pt;}
.ls6f{letter-spacing:0.867941pt;}
.ls59{letter-spacing:0.960000pt;}
.ls72{letter-spacing:1.044055pt;}
.ls62{letter-spacing:1.124000pt;}
.ls71{letter-spacing:1.688000pt;}
.ls7f{letter-spacing:1.940000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.wsa2{word-spacing:-12.320000pt;}
.ws51{word-spacing:-11.760000pt;}
.ws89{word-spacing:-11.568000pt;}
.ws7e{word-spacing:-11.520000pt;}
.ws9c{word-spacing:-11.424000pt;}
.ws30{word-spacing:-11.376000pt;}
.ws76{word-spacing:-11.328000pt;}
.ws9d{word-spacing:-11.280000pt;}
.ws1d{word-spacing:-11.232000pt;}
.ws85{word-spacing:-11.184000pt;}
.wsf{word-spacing:-11.136000pt;}
.ws29{word-spacing:-11.112000pt;}
.ws9e{word-spacing:-11.088000pt;}
.ws33{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.992000pt;}
.ws9f{word-spacing:-10.944000pt;}
.ws32{word-spacing:-10.896000pt;}
.ws8b{word-spacing:-10.848000pt;}
.ws69{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.752000pt;}
.ws58{word-spacing:-10.704000pt;}
.ws31{word-spacing:-10.656000pt;}
.ws2e{word-spacing:-10.608000pt;}
.ws2f{word-spacing:-10.560000pt;}
.ws84{word-spacing:-10.512000pt;}
.ws7{word-spacing:-10.464000pt;}
.ws2b{word-spacing:-10.416000pt;}
.ws5{word-spacing:-10.368000pt;}
.ws3{word-spacing:-10.320000pt;}
.ws4f{word-spacing:-10.272000pt;}
.ws4{word-spacing:-10.224000pt;}
.ws2a{word-spacing:-10.176000pt;}
.ws12{word-spacing:-10.128000pt;}
.ws2{word-spacing:-10.080000pt;}
.ws52{word-spacing:-10.032000pt;}
.ws2c{word-spacing:-9.984000pt;}
.ws4e{word-spacing:-9.936000pt;}
.ws6f{word-spacing:-9.888000pt;}
.ws9b{word-spacing:-9.840000pt;}
.ws5d{word-spacing:-9.792000pt;}
.ws5c{word-spacing:-9.696000pt;}
.ws50{word-spacing:-9.648000pt;}
.ws53{word-spacing:-9.552000pt;}
.wsa4{word-spacing:-9.360000pt;}
.wsc3{word-spacing:-9.320000pt;}
.ws4d{word-spacing:-9.312000pt;}
.wsb5{word-spacing:-9.280000pt;}
.wsc2{word-spacing:-9.260000pt;}
.wsc1{word-spacing:-9.240000pt;}
.wsc4{word-spacing:-9.200000pt;}
.wsde{word-spacing:-8.960000pt;}
.wsdd{word-spacing:-8.840000pt;}
.wsbf{word-spacing:-8.600000pt;}
.ws25{word-spacing:-8.533333pt;}
.wsa3{word-spacing:-8.200000pt;}
.wsc0{word-spacing:-7.880000pt;}
.ws88{word-spacing:-7.519200pt;}
.ws6d{word-spacing:-7.488000pt;}
.ws68{word-spacing:-7.456800pt;}
.ws8a{word-spacing:-7.425600pt;}
.ws5a{word-spacing:-7.394400pt;}
.ws59{word-spacing:-7.363200pt;}
.ws57{word-spacing:-7.332000pt;}
.ws56{word-spacing:-7.300800pt;}
.ws6c{word-spacing:-7.269600pt;}
.ws6{word-spacing:-7.238400pt;}
.ws6e{word-spacing:-7.207200pt;}
.ws27{word-spacing:-7.176000pt;}
.ws9{word-spacing:-7.144800pt;}
.ws71{word-spacing:-7.113600pt;}
.ws26{word-spacing:-7.082400pt;}
.ws28{word-spacing:-7.051200pt;}
.ws6b{word-spacing:-7.020000pt;}
.ws5b{word-spacing:-6.988800pt;}
.ws6a{word-spacing:-6.957600pt;}
.ws2d{word-spacing:-6.926400pt;}
.ws70{word-spacing:-6.864000pt;}
.wsa{word-spacing:-5.893333pt;}
.wsda{word-spacing:-5.360000pt;}
.ws44{word-spacing:-4.896000pt;}
.wsa9{word-spacing:-2.112000pt;}
.ws8d{word-spacing:-2.016000pt;}
.wsab{word-spacing:-1.968000pt;}
.ws5f{word-spacing:-1.824000pt;}
.wsac{word-spacing:-1.680000pt;}
.ws60{word-spacing:-1.632000pt;}
.ws3f{word-spacing:-1.488000pt;}
.wsae{word-spacing:-1.440000pt;}
.ws3c{word-spacing:-1.248000pt;}
.wsaf{word-spacing:-1.200000pt;}
.wse{word-spacing:-1.104000pt;}
.ws11{word-spacing:-1.056000pt;}
.wsd2{word-spacing:-1.040000pt;}
.wsb7{word-spacing:-1.000000pt;}
.ws72{word-spacing:-0.960000pt;}
.wsb2{word-spacing:-0.920000pt;}
.ws20{word-spacing:-0.912000pt;}
.wsb6{word-spacing:-0.880000pt;}
.ws7f{word-spacing:-0.864000pt;}
.wsd3{word-spacing:-0.840000pt;}
.ws8f{word-spacing:-0.816000pt;}
.wsd9{word-spacing:-0.800000pt;}
.wsbe{word-spacing:-0.760000pt;}
.wsa6{word-spacing:-0.720000pt;}
.wsc6{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.672000pt;}
.wsbc{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.624000pt;}
.wsd4{word-spacing:-0.600000pt;}
.ws18{word-spacing:-0.576000pt;}
.wsb0{word-spacing:-0.560000pt;}
.ws42{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.520000pt;}
.wsd{word-spacing:-0.480000pt;}
.wsb9{word-spacing:-0.440000pt;}
.ws47{word-spacing:-0.432000pt;}
.wsd5{word-spacing:-0.400000pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.374400pt;}
.wsd6{word-spacing:-0.360000pt;}
.ws62{word-spacing:-0.336000pt;}
.wsce{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.288000pt;}
.ws77{word-spacing:-0.280800pt;}
.wsbb{word-spacing:-0.280000pt;}
.ws39{word-spacing:-0.240000pt;}
.wse4{word-spacing:-0.234667pt;}
.ws61{word-spacing:-0.218400pt;}
.wsb4{word-spacing:-0.200000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws95{word-spacing:-0.187200pt;}
.wsba{word-spacing:-0.160000pt;}
.ws55{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.096000pt;}
.wsbd{word-spacing:-0.080000pt;}
.ws96{word-spacing:-0.062400pt;}
.ws80{word-spacing:-0.048000pt;}
.wsb1{word-spacing:-0.040000pt;}
.wsb{word-spacing:0.000000pt;}
.ws73{word-spacing:0.031200pt;}
.ws7a{word-spacing:0.048000pt;}
.wsdc{word-spacing:0.080000pt;}
.ws66{word-spacing:0.093600pt;}
.ws63{word-spacing:0.096000pt;}
.wscb{word-spacing:0.120000pt;}
.ws78{word-spacing:0.124800pt;}
.ws45{word-spacing:0.144000pt;}
.wsd7{word-spacing:0.160000pt;}
.ws67{word-spacing:0.192000pt;}
.wsd1{word-spacing:0.200000pt;}
.ws38{word-spacing:0.240000pt;}
.ws97{word-spacing:0.288000pt;}
.wsca{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.336000pt;}
.ws7c{word-spacing:0.384000pt;}
.ws54{word-spacing:0.432000pt;}
.wsd8{word-spacing:0.440000pt;}
.wsdf{word-spacing:0.480000pt;}
.ws34{word-spacing:0.528000pt;}
.ws36{word-spacing:0.576000pt;}
.wsdb{word-spacing:0.600000pt;}
.ws46{word-spacing:0.624000pt;}
.wsc8{word-spacing:0.640000pt;}
.ws81{word-spacing:0.672000pt;}
.ws21{word-spacing:0.720000pt;}
.ws65{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.816000pt;}
.wse2{word-spacing:0.840000pt;}
.ws41{word-spacing:0.864000pt;}
.wsc9{word-spacing:0.880000pt;}
.ws1b{word-spacing:0.912000pt;}
.wsb8{word-spacing:0.920000pt;}
.ws79{word-spacing:0.960000pt;}
.ws7b{word-spacing:1.008000pt;}
.ws1c{word-spacing:1.056000pt;}
.wse0{word-spacing:1.080000pt;}
.ws13{word-spacing:1.104000pt;}
.wse3{word-spacing:1.152000pt;}
.wsc7{word-spacing:1.160000pt;}
.ws3d{word-spacing:1.200000pt;}
.wsd0{word-spacing:1.240000pt;}
.ws40{word-spacing:1.248000pt;}
.ws7d{word-spacing:1.296000pt;}
.wscc{word-spacing:1.320000pt;}
.ws74{word-spacing:1.344000pt;}
.wscd{word-spacing:1.400000pt;}
.ws14{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.488000pt;}
.wscf{word-spacing:1.520000pt;}
.ws17{word-spacing:1.536000pt;}
.ws99{word-spacing:1.584000pt;}
.wse1{word-spacing:1.680000pt;}
.ws98{word-spacing:1.776000pt;}
.ws19{word-spacing:1.824000pt;}
.wsa7{word-spacing:1.872000pt;}
.ws87{word-spacing:1.968000pt;}
.wsa5{word-spacing:2.016000pt;}
.ws4a{word-spacing:2.112000pt;}
.ws64{word-spacing:2.208000pt;}
.ws92{word-spacing:2.256000pt;}
.ws8c{word-spacing:2.400000pt;}
.wsad{word-spacing:2.544000pt;}
.ws91{word-spacing:2.688000pt;}
.wsc5{word-spacing:2.720000pt;}
.wse7{word-spacing:2.784000pt;}
.wse5{word-spacing:2.832000pt;}
.ws90{word-spacing:2.880000pt;}
.wse6{word-spacing:2.976000pt;}
.wsa0{word-spacing:3.120000pt;}
.ws86{word-spacing:3.168000pt;}
.ws35{word-spacing:3.312000pt;}
.ws48{word-spacing:3.552000pt;}
.ws5e{word-spacing:3.648000pt;}
.wsaa{word-spacing:3.744000pt;}
.ws94{word-spacing:3.792000pt;}
.ws93{word-spacing:3.840000pt;}
.ws3b{word-spacing:4.224000pt;}
.ws8e{word-spacing:4.800000pt;}
.ws82{word-spacing:4.848000pt;}
.ws3e{word-spacing:4.944000pt;}
.ws23{word-spacing:5.032000pt;}
.ws83{word-spacing:5.040000pt;}
.ws24{word-spacing:5.349333pt;}
.wse9{word-spacing:5.568000pt;}
.wsa8{word-spacing:5.760000pt;}
.wse8{word-spacing:6.000000pt;}
.wsa1{word-spacing:7.392000pt;}
.ws3a{word-spacing:7.776000pt;}
.ws37{word-spacing:8.880000pt;}
.ws22{word-spacing:11.424000pt;}
.ws4b{word-spacing:13.584000pt;}
.ws43{word-spacing:14.976000pt;}
._12{margin-left:-18.624006pt;}
._14{margin-left:-15.278846pt;}
._7{margin-left:-12.874187pt;}
._16{margin-left:-11.964799pt;}
._9{margin-left:-11.015467pt;}
._8{margin-left:-9.707777pt;}
._d{margin-left:-8.795733pt;}
._10{margin-left:-7.335122pt;}
._19{margin-left:-6.400000pt;}
._2{margin-left:-5.449600pt;}
._3{margin-left:-3.882667pt;}
._4{margin-left:-2.953600pt;}
._0{margin-left:-1.668267pt;}
._5{width:0.942400pt;}
._6{width:1.893801pt;}
._c{width:3.205067pt;}
._b{width:4.982133pt;}
._1b{width:6.140266pt;}
._15{width:8.198873pt;}
._a{width:9.748826pt;}
._f{width:10.777585pt;}
._13{width:11.915174pt;}
._1c{width:12.882667pt;}
._18{width:14.000000pt;}
._11{width:15.040000pt;}
._1a{width:16.040000pt;}
._e{width:42.057280pt;}
._17{width:43.029628pt;}
._1{width:285.742933pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.843733pt;}
.y35{bottom:2.843867pt;}
.y9c{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y34{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y73{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y33{bottom:60.483200pt;}
.y192{bottom:61.823465pt;}
.y1e3{bottom:62.147363pt;}
.ye3{bottom:63.332003pt;}
.y8d{bottom:64.553468pt;}
.y160{bottom:68.438799pt;}
.y5e{bottom:68.561468pt;}
.ydf{bottom:71.096132pt;}
.y126{bottom:71.097465pt;}
.y1f7{bottom:71.243464pt;}
.y191{bottom:73.153465pt;}
.y1e2{bottom:73.477363pt;}
.y32{bottom:73.811200pt;}
.y71{bottom:74.177868pt;}
.ye2{bottom:76.664003pt;}
.y8c{bottom:77.885468pt;}
.y15f{bottom:81.770799pt;}
.y5d{bottom:81.893468pt;}
.yde{bottom:84.428132pt;}
.y125{bottom:84.429465pt;}
.y190{bottom:84.483465pt;}
.y1f6{bottom:84.576797pt;}
.y1e1{bottom:84.807363pt;}
.y31{bottom:87.144533pt;}
.y70{bottom:87.509868pt;}
.ye1{bottom:89.996003pt;}
.y8b{bottom:91.220135pt;}
.y15e{bottom:95.102799pt;}
.y5c{bottom:95.225468pt;}
.y18f{bottom:95.813465pt;}
.y1e0{bottom:96.137363pt;}
.ydd{bottom:97.760132pt;}
.y124{bottom:97.761465pt;}
.y6f{bottom:100.841868pt;}
.ye0{bottom:103.328003pt;}
.y30{bottom:104.439199pt;}
.y8a{bottom:104.552135pt;}
.y18e{bottom:107.143465pt;}
.y1df{bottom:107.467363pt;}
.y15d{bottom:108.434799pt;}
.y5b{bottom:108.557468pt;}
.y123{bottom:111.096132pt;}
.y1f5{bottom:112.548666pt;}
.y89{bottom:117.885468pt;}
.y18d{bottom:118.473465pt;}
.y1de{bottom:118.797363pt;}
.y15c{bottom:121.766799pt;}
.y5a{bottom:121.889468pt;}
.y122{bottom:124.428132pt;}
.y1f4{bottom:125.880666pt;}
.ydc{bottom:127.094799pt;}
.y18c{bottom:129.803465pt;}
.y1dd{bottom:130.127363pt;}
.y88{bottom:131.218802pt;}
.y15b{bottom:135.098799pt;}
.y59{bottom:135.221468pt;}
.y121{bottom:137.764132pt;}
.y1f3{bottom:139.213999pt;}
.ydb{bottom:140.428132pt;}
.y18b{bottom:141.133465pt;}
.y1dc{bottom:141.457363pt;}
.y2e{bottom:142.734938pt;}
.y87{bottom:144.552135pt;}
.y15a{bottom:148.430799pt;}
.y58{bottom:148.553468pt;}
.y120{bottom:151.096132pt;}
.y18a{bottom:152.463465pt;}
.y1db{bottom:152.787363pt;}
.yda{bottom:153.761465pt;}
.y2d{bottom:156.066938pt;}
.y86{bottom:157.886802pt;}
.y159{bottom:161.762799pt;}
.y57{bottom:161.885468pt;}
.y189{bottom:163.793465pt;}
.y1da{bottom:164.117363pt;}
.y11f{bottom:164.428132pt;}
.y1f2{bottom:165.898010pt;}
.ye6{bottom:166.109467pt;}
.yd9{bottom:167.094799pt;}
.y2c{bottom:169.398938pt;}
.y85{bottom:171.218802pt;}
.y158{bottom:175.094799pt;}
.y188{bottom:175.123465pt;}
.y56{bottom:175.217468pt;}
.y1d9{bottom:175.447363pt;}
.y11e{bottom:177.765465pt;}
.y1f1{bottom:179.230010pt;}
.ye5{bottom:179.442800pt;}
.yd8{bottom:180.428132pt;}
.y2b{bottom:182.730938pt;}
.y84{bottom:184.553468pt;}
.y187{bottom:186.453465pt;}
.y1d8{bottom:186.777363pt;}
.y157{bottom:188.428132pt;}
.y11d{bottom:191.097465pt;}
.y1f0{bottom:192.562010pt;}
.ye4{bottom:192.774800pt;}
.yd7{bottom:193.762799pt;}
.y2a{bottom:196.062938pt;}
.y186{bottom:197.783465pt;}
.y83{bottom:197.885468pt;}
.y1d7{bottom:198.107363pt;}
.y156{bottom:201.764132pt;}
.y11c{bottom:204.429465pt;}
.y55{bottom:204.552135pt;}
.y1ef{bottom:205.894010pt;}
.yd6{bottom:207.094799pt;}
.y185{bottom:209.113465pt;}
.y29{bottom:209.396271pt;}
.y1d6{bottom:209.437363pt;}
.y82{bottom:211.218802pt;}
.y155{bottom:215.096132pt;}
.y11b{bottom:217.761465pt;}
.y54{bottom:217.885468pt;}
.y1ee{bottom:219.226010pt;}
.yd5{bottom:220.428132pt;}
.y184{bottom:220.443465pt;}
.y1d5{bottom:220.767363pt;}
.y28{bottom:222.734938pt;}
.y81{bottom:224.553468pt;}
.y154{bottom:228.428132pt;}
.y11a{bottom:231.098799pt;}
.y53{bottom:231.217468pt;}
.y183{bottom:231.773465pt;}
.y1d4{bottom:232.097363pt;}
.y1ed{bottom:232.558010pt;}
.yd4{bottom:233.762799pt;}
.y27{bottom:236.066938pt;}
.y80{bottom:237.885468pt;}
.y153{bottom:241.761465pt;}
.y182{bottom:243.103465pt;}
.y1d3{bottom:243.427363pt;}
.y119{bottom:244.430799pt;}
.y1ec{bottom:245.890010pt;}
.yd3{bottom:247.094799pt;}
.y26{bottom:249.398938pt;}
.y7f{bottom:251.218802pt;}
.y181{bottom:254.433465pt;}
.y1d2{bottom:254.757363pt;}
.y152{bottom:255.097465pt;}
.y118{bottom:257.762799pt;}
.y1eb{bottom:259.222010pt;}
.yd2{bottom:260.434799pt;}
.y52{bottom:260.550802pt;}
.y25{bottom:262.730938pt;}
.y7e{bottom:264.552135pt;}
.y180{bottom:265.763465pt;}
.y1d1{bottom:266.087363pt;}
.y151{bottom:268.429465pt;}
.y117{bottom:271.094799pt;}
.y1ea{bottom:272.554010pt;}
.yd1{bottom:273.766799pt;}
.y24{bottom:276.062938pt;}
.y17f{bottom:277.093465pt;}
.y1d0{bottom:277.417363pt;}
.y7d{bottom:277.885468pt;}
.y150{bottom:281.761465pt;}
.y116{bottom:284.428132pt;}
.y1e9{bottom:285.886010pt;}
.yd0{bottom:287.098799pt;}
.y17e{bottom:288.426799pt;}
.y1cf{bottom:288.747363pt;}
.y23{bottom:289.398938pt;}
.y51{bottom:289.892115pt;}
.y7c{bottom:291.224115pt;}
.y14f{bottom:295.094799pt;}
.y115{bottom:297.761465pt;}
.y1e8{bottom:299.218010pt;}
.y1ce{bottom:300.077363pt;}
.ycf{bottom:300.430799pt;}
.y22{bottom:302.730938pt;}
.y50{bottom:303.224115pt;}
.y7b{bottom:304.556115pt;}
.y14e{bottom:308.432132pt;}
.y114{bottom:311.096132pt;}
.y1cd{bottom:311.407363pt;}
.y1e7{bottom:312.550010pt;}
.yce{bottom:313.762799pt;}
.y21{bottom:316.062938pt;}
.y4f{bottom:316.556115pt;}
.y7a{bottom:317.888115pt;}
.y14d{bottom:321.764132pt;}
.y1cc{bottom:322.737363pt;}
.y113{bottom:324.428132pt;}
.y1e6{bottom:325.882010pt;}
.ycd{bottom:327.094799pt;}
.y20{bottom:329.397605pt;}
.y4e{bottom:329.888115pt;}
.y79{bottom:331.220115pt;}
.y17d{bottom:332.426799pt;}
.y1cb{bottom:334.067363pt;}
.y14c{bottom:335.096132pt;}
.y112{bottom:337.761465pt;}
.y1e5{bottom:339.214010pt;}
.ycc{bottom:340.428132pt;}
.y1f{bottom:342.729605pt;}
.y4d{bottom:343.220115pt;}
.y78{bottom:344.552115pt;}
.y1ca{bottom:345.397363pt;}
.y14b{bottom:348.428132pt;}
.y111{bottom:351.096132pt;}
.y1e4{bottom:352.547323pt;}
.ycb{bottom:353.761465pt;}
.y1e{bottom:356.062938pt;}
.y4c{bottom:356.552115pt;}
.y1c9{bottom:356.727363pt;}
.y77{bottom:357.884115pt;}
.y14a{bottom:361.761465pt;}
.y110{bottom:364.428132pt;}
.yca{bottom:367.094799pt;}
.y1c8{bottom:368.057363pt;}
.y1d{bottom:369.397605pt;}
.y4b{bottom:369.884115pt;}
.y149{bottom:375.094799pt;}
.y10f{bottom:377.765465pt;}
.y1c7{bottom:379.387363pt;}
.yc9{bottom:380.430799pt;}
.y1c{bottom:382.729605pt;}
.y76{bottom:387.218781pt;}
.y148{bottom:388.428132pt;}
.y17c{bottom:388.437465pt;}
.y1c6{bottom:390.717363pt;}
.y10e{bottom:391.097465pt;}
.yc8{bottom:393.762799pt;}
.y1b{bottom:396.062938pt;}
.y4a{bottom:399.222781pt;}
.y75{bottom:400.550781pt;}
.y147{bottom:401.761465pt;}
.y17b{bottom:401.769465pt;}
.y1c5{bottom:402.047363pt;}
.y10d{bottom:404.429465pt;}
.yc7{bottom:407.094799pt;}
.y1a{bottom:409.397605pt;}
.y49{bottom:412.554781pt;}
.y1c4{bottom:413.377363pt;}
.y146{bottom:415.094799pt;}
.y17a{bottom:415.101465pt;}
.y10c{bottom:417.761465pt;}
.yc6{bottom:420.429465pt;}
.y19{bottom:422.729605pt;}
.y1c3{bottom:424.707363pt;}
.y48{bottom:425.886781pt;}
.y145{bottom:428.428132pt;}
.y179{bottom:428.433465pt;}
.y10b{bottom:431.094799pt;}
.y9b{bottom:433.538818pt;}
.yc5{bottom:433.761465pt;}
.y1c2{bottom:436.037363pt;}
.y18{bottom:436.100280pt;}
.y47{bottom:439.218781pt;}
.y144{bottom:441.760132pt;}
.y178{bottom:441.765465pt;}
.y10a{bottom:444.428132pt;}
.y9a{bottom:446.870818pt;}
.yc4{bottom:447.094799pt;}
.y1c1{bottom:447.367363pt;}
.y6e{bottom:448.626787pt;}
.y17{bottom:449.432280pt;}
.y46{bottom:452.550781pt;}
.y143{bottom:455.093465pt;}
.y177{bottom:455.097465pt;}
.y109{bottom:457.762799pt;}
.y1c0{bottom:458.697363pt;}
.y99{bottom:460.202818pt;}
.yc3{bottom:460.428132pt;}
.y6d{bottom:461.958787pt;}
.y176{bottom:468.429465pt;}
.y1bf{bottom:470.027363pt;}
.y108{bottom:471.094799pt;}
.y98{bottom:473.534818pt;}
.yc2{bottom:473.762799pt;}
.y6c{bottom:475.290787pt;}
.y1be{bottom:481.357363pt;}
.y175{bottom:481.761465pt;}
.y45{bottom:481.885448pt;}
.y107{bottom:484.428132pt;}
.y97{bottom:486.866818pt;}
.yc1{bottom:487.094799pt;}
.y6b{bottom:488.622787pt;}
.y16{bottom:489.560280pt;}
.y1bd{bottom:492.687363pt;}
.y174{bottom:495.093465pt;}
.y44{bottom:495.218781pt;}
.y106{bottom:497.762799pt;}
.y142{bottom:497.765465pt;}
.y96{bottom:500.198818pt;}
.yc0{bottom:500.428132pt;}
.y6a{bottom:501.954787pt;}
.y1bc{bottom:504.017363pt;}
.y15{bottom:504.224280pt;}
.y43{bottom:508.552115pt;}
.y105{bottom:511.094799pt;}
.y141{bottom:511.097465pt;}
.y95{bottom:513.530818pt;}
.ybf{bottom:513.764132pt;}
.y69{bottom:515.286787pt;}
.y1bb{bottom:515.347363pt;}
.y14{bottom:518.888280pt;}
.y42{bottom:521.884115pt;}
.y104{bottom:524.429465pt;}
.y1ba{bottom:526.677363pt;}
.y94{bottom:526.862818pt;}
.ybe{bottom:527.096132pt;}
.y68{bottom:528.618787pt;}
.y13{bottom:533.552280pt;}
.y41{bottom:535.217448pt;}
.y103{bottom:537.761465pt;}
.y1b9{bottom:538.007363pt;}
.y93{bottom:540.194818pt;}
.ybd{bottom:540.428132pt;}
.y67{bottom:541.950787pt;}
.y12{bottom:548.216280pt;}
.y1b8{bottom:549.337363pt;}
.y102{bottom:551.094799pt;}
.y173{bottom:551.098799pt;}
.y140{bottom:551.116173pt;}
.y92{bottom:553.526818pt;}
.ybc{bottom:553.761465pt;}
.y66{bottom:555.282787pt;}
.y1b7{bottom:560.667363pt;}
.y11{bottom:562.880280pt;}
.y101{bottom:564.429465pt;}
.y172{bottom:564.430799pt;}
.y13f{bottom:564.448173pt;}
.y40{bottom:564.554781pt;}
.y91{bottom:566.858818pt;}
.ybb{bottom:567.094799pt;}
.y65{bottom:568.614787pt;}
.y1b6{bottom:571.997363pt;}
.y10{bottom:577.544280pt;}
.y100{bottom:577.761465pt;}
.y171{bottom:577.762799pt;}
.y13e{bottom:577.780173pt;}
.y3f{bottom:577.886781pt;}
.y90{bottom:580.190818pt;}
.yba{bottom:580.428132pt;}
.y1b5{bottom:583.327363pt;}
.y170{bottom:591.094799pt;}
.yff{bottom:591.096132pt;}
.y13d{bottom:591.112173pt;}
.y3e{bottom:591.218781pt;}
.yf{bottom:592.208280pt;}
.y8f{bottom:593.522818pt;}
.yb9{bottom:593.765465pt;}
.y1b4{bottom:594.657363pt;}
.y16f{bottom:604.426799pt;}
.yfe{bottom:604.428132pt;}
.y13c{bottom:604.444173pt;}
.y3d{bottom:604.550781pt;}
.y1b3{bottom:605.987363pt;}
.y8e{bottom:606.854818pt;}
.ye{bottom:606.872280pt;}
.yb8{bottom:607.097465pt;}
.y1b2{bottom:617.317363pt;}
.y16e{bottom:617.760132pt;}
.yfd{bottom:617.762799pt;}
.y13b{bottom:617.776173pt;}
.yb7{bottom:620.429465pt;}
.yd{bottom:621.536280pt;}
.y1b1{bottom:628.647363pt;}
.yfc{bottom:631.094799pt;}
.y13a{bottom:631.108173pt;}
.yb6{bottom:633.761465pt;}
.y3c{bottom:633.888115pt;}
.yc{bottom:636.200280pt;}
.y1b0{bottom:639.977363pt;}
.yfb{bottom:644.428132pt;}
.y139{bottom:644.440173pt;}
.yb5{bottom:647.096132pt;}
.y16d{bottom:647.097506pt;}
.y3b{bottom:647.220115pt;}
.yb{bottom:650.864280pt;}
.y1af{bottom:651.307363pt;}
.yfa{bottom:657.762839pt;}
.y138{bottom:657.772173pt;}
.yb4{bottom:660.428132pt;}
.y16c{bottom:660.429506pt;}
.y3a{bottom:660.552115pt;}
.y1ae{bottom:662.637363pt;}
.ya{bottom:665.528280pt;}
.yf9{bottom:671.094839pt;}
.y137{bottom:671.104173pt;}
.yb3{bottom:673.761506pt;}
.y39{bottom:673.885448pt;}
.y1ad{bottom:673.967363pt;}
.yf8{bottom:684.428173pt;}
.y136{bottom:684.436173pt;}
.y1ac{bottom:685.297363pt;}
.yb2{bottom:687.100173pt;}
.y16b{bottom:687.109506pt;}
.y38{bottom:687.218781pt;}
.y9{bottom:692.194906pt;}
.y1ab{bottom:696.627363pt;}
.yf7{bottom:697.765506pt;}
.y135{bottom:697.768173pt;}
.yb1{bottom:700.432173pt;}
.y16a{bottom:700.441506pt;}
.y37{bottom:700.550781pt;}
.y1aa{bottom:707.957363pt;}
.yf6{bottom:711.097506pt;}
.y134{bottom:711.100173pt;}
.yb0{bottom:713.764173pt;}
.y169{bottom:713.773506pt;}
.y1a9{bottom:719.287363pt;}
.y8{bottom:721.512239pt;}
.yf5{bottom:724.429506pt;}
.y133{bottom:724.432173pt;}
.y207{bottom:724.922401pt;}
.yaf{bottom:727.096173pt;}
.y168{bottom:727.105506pt;}
.y1a8{bottom:730.617363pt;}
.yf4{bottom:737.761506pt;}
.y132{bottom:737.764173pt;}
.yae{bottom:740.428173pt;}
.y167{bottom:740.437506pt;}
.y1a7{bottom:741.947363pt;}
.yf3{bottom:751.093506pt;}
.y131{bottom:751.096173pt;}
.y206{bottom:751.586400pt;}
.y1a6{bottom:753.277363pt;}
.yad{bottom:753.761506pt;}
.y166{bottom:753.769506pt;}
.y63{bottom:757.845309pt;}
.y7{bottom:761.517572pt;}
.yf2{bottom:764.426839pt;}
.y130{bottom:764.428173pt;}
.y1a5{bottom:764.607363pt;}
.y205{bottom:764.918400pt;}
.yac{bottom:767.096173pt;}
.y165{bottom:767.101506pt;}
.y62{bottom:771.177309pt;}
.y1a4{bottom:775.937363pt;}
.y12f{bottom:777.762839pt;}
.y204{bottom:778.250400pt;}
.yab{bottom:780.428173pt;}
.y164{bottom:780.433506pt;}
.y61{bottom:784.509309pt;}
.y1a3{bottom:787.267363pt;}
.y12e{bottom:791.094839pt;}
.y203{bottom:791.582400pt;}
.yf1{bottom:793.765506pt;}
.yaa{bottom:793.766839pt;}
.y60{bottom:797.842642pt;}
.y1a2{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y12d{bottom:804.429506pt;}
.y202{bottom:804.914400pt;}
.yf0{bottom:807.097506pt;}
.ya9{bottom:807.098839pt;}
.y1a1{bottom:809.927363pt;}
.y5f{bottom:811.174642pt;}
.y12c{bottom:817.761506pt;}
.y201{bottom:818.246400pt;}
.yef{bottom:820.429506pt;}
.ya8{bottom:820.430839pt;}
.y1a0{bottom:821.257363pt;}
.y12b{bottom:831.096173pt;}
.y200{bottom:831.578400pt;}
.y19f{bottom:832.587363pt;}
.yee{bottom:833.761506pt;}
.ya7{bottom:833.762839pt;}
.y5{bottom:841.528239pt;}
.y19e{bottom:843.917363pt;}
.y12a{bottom:844.428173pt;}
.y1ff{bottom:844.910400pt;}
.ya6{bottom:847.094839pt;}
.y163{bottom:847.097506pt;}
.yed{bottom:847.105506pt;}
.y2f{bottom:848.326009pt;}
.y19d{bottom:855.247363pt;}
.y129{bottom:857.760173pt;}
.ya5{bottom:860.428173pt;}
.y162{bottom:860.429506pt;}
.yec{bottom:860.437506pt;}
.y1fe{bottom:864.901067pt;}
.y19c{bottom:866.577363pt;}
.y128{bottom:871.093506pt;}
.y161{bottom:873.761506pt;}
.ya4{bottom:873.762839pt;}
.yeb{bottom:873.769506pt;}
.y19b{bottom:877.907363pt;}
.y1fd{bottom:878.233067pt;}
.ya3{bottom:887.094839pt;}
.yea{bottom:887.101506pt;}
.y19a{bottom:889.237363pt;}
.y1fc{bottom:898.237067pt;}
.ya2{bottom:900.428173pt;}
.ye9{bottom:900.433506pt;}
.y199{bottom:900.567363pt;}
.y198{bottom:911.897363pt;}
.ya1{bottom:913.762839pt;}
.ye8{bottom:913.765506pt;}
.y1fb{bottom:918.241067pt;}
.y197{bottom:923.227363pt;}
.ya0{bottom:927.094839pt;}
.ye7{bottom:927.097506pt;}
.y196{bottom:934.557363pt;}
.y1fa{bottom:938.245067pt;}
.y127{bottom:940.428173pt;}
.y9f{bottom:940.429506pt;}
.y195{bottom:945.887363pt;}
.y1f9{bottom:951.577067pt;}
.y9e{bottom:953.761506pt;}
.y194{bottom:957.217363pt;}
.y1f8{bottom:964.910400pt;}
.y9d{bottom:967.093506pt;}
.y193{bottom:968.547363pt;}
.y64{bottom:1013.902507pt;}
.y74{bottom:1013.996908pt;}
.y36{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h13{height:27.275265pt;}
.h2{height:30.687500pt;}
.h2f{height:31.476562pt;}
.h7{height:34.523438pt;}
.h31{height:39.560000pt;}
.h30{height:40.080000pt;}
.h3{height:40.604167pt;}
.h32{height:40.960000pt;}
.h1a{height:42.195312pt;}
.h14{height:43.120594pt;}
.h15{height:43.141927pt;}
.h6{height:43.718750pt;}
.h16{height:43.866248pt;}
.h33{height:44.834667pt;}
.h8{height:45.703125pt;}
.h9{height:47.472000pt;}
.ha{height:47.502068pt;}
.h2a{height:47.565938pt;}
.h2c{height:47.592605pt;}
.h23{height:47.629938pt;}
.h10{height:47.630101pt;}
.h1e{height:47.630182pt;}
.h28{height:47.635434pt;}
.h2b{height:47.640605pt;}
.hf{height:47.640767pt;}
.h29{height:47.640806pt;}
.h21{height:47.645938pt;}
.hb{height:47.646101pt;}
.h25{height:47.646139pt;}
.h1f{height:47.646141pt;}
.h26{height:47.650948pt;}
.h22{height:47.651271pt;}
.h11{height:47.651434pt;}
.h24{height:47.651473pt;}
.h20{height:47.651475pt;}
.h19{height:47.651597pt;}
.h18{height:47.651922pt;}
.h2d{height:47.656767pt;}
.h1b{height:47.656930pt;}
.h17{height:47.657256pt;}
.h27{height:48.048000pt;}
.h2e{height:48.074667pt;}
.he{height:48.085333pt;}
.hc{height:48.090667pt;}
.hd{height:48.096000pt;}
.h1d{height:49.146667pt;}
.h1c{height:49.152000pt;}
.h4{height:50.755208pt;}
.h12{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.868513pt;}
.xa{left:225.873981pt;}
.xc{left:268.887736pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xb{left:727.865560pt;}
.x1{left:733.334391pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  