
    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_d3912cd8ff098c5875aa2629.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_5fbdde1f343415beca4ebe4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ea8c6e7177e74c264f1ebf13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_95bf99956cbf904df4cf39dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_607ddce1f56ba3b09b2f8bea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_8a75c53e19a06b111822e6e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5c4e17f40829efb22eb46647.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_9b89ab41188d716637cf0eff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_206388f665a9b822c011d9f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_68986eb14f6b2d5985a508a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_fdf6b1df823427088fdb216d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728027;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_7250f89c2f375a76eedaf1ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a5bec636b1be3fddcfd84b60.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942871;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_d5b92571df2ad0666b8b601c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;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_b71d909d63e16bdf9e50b536.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_6b1ec7547282996fff89c43d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.728027;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_03682d0b44f1261292a49336.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.728027;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);}
.v1{vertical-align:-4.368000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.000000px;}
.ls2a{letter-spacing:-4.452000px;}
.ls2d{letter-spacing:-3.312000px;}
.ls27{letter-spacing:-1.710000px;}
.ls2b{letter-spacing:-1.668000px;}
.ls26{letter-spacing:-1.140000px;}
.ls15{letter-spacing:-0.604800px;}
.ls2c{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls14{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005700px;}
.ls8{letter-spacing:0.011400px;}
.ls5{letter-spacing:0.012000px;}
.ls29{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.017100px;}
.lse{letter-spacing:0.028500px;}
.ls1e{letter-spacing:0.188100px;}
.ls10{letter-spacing:0.245100px;}
.ls1f{letter-spacing:1.111500px;}
.ls1c{letter-spacing:1.117200px;}
.ls18{letter-spacing:1.128600px;}
.ls16{letter-spacing:1.134300px;}
.ls17{letter-spacing:1.140000px;}
.ls23{letter-spacing:1.145700px;}
.ls1b{letter-spacing:1.151400px;}
.ls19{letter-spacing:1.168500px;}
.ls3{letter-spacing:1.245600px;}
.ls2{letter-spacing:1.252800px;}
.ls4{letter-spacing:1.267200px;}
.ls13{letter-spacing:2.325600px;}
.ls1{letter-spacing:2.534400px;}
.ls1d{letter-spacing:3.431400px;}
.ls7{letter-spacing:3.665100px;}
.ls0{letter-spacing:3.780000px;}
.ls22{letter-spacing:3.824700px;}
.ls1a{letter-spacing:3.967200px;}
.lsa{letter-spacing:4.406100px;}
.lsc{letter-spacing:5.118600px;}
.lsd{letter-spacing:5.124300px;}
.lsb{letter-spacing:5.130000px;}
.ls25{letter-spacing:5.238300px;}
.ls21{letter-spacing:5.466300px;}
.ls20{letter-spacing:5.665800px;}
.ls12{letter-spacing:5.722800px;}
.ls11{letter-spacing:5.728500px;}
.ls28{letter-spacing:23.424000px;}
.ls24{letter-spacing:146.624100px;}
.ls6{letter-spacing:294.199500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-74.534400px;}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws34{word-spacing:-58.140000px;}
.ws4{word-spacing:-57.780000px;}
.wsc{word-spacing:-57.000000px;}
.ws35{word-spacing:-55.860000px;}
.ws36{word-spacing:-55.290000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wsb{word-spacing:-51.000000px;}
.wsd9{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws31{word-spacing:-20.016000px;}
.ws33{word-spacing:-16.680000px;}
.wsda{word-spacing:-13.344000px;}
.ws9{word-spacing:-12.996000px;}
.ws98{word-spacing:-5.730000px;}
.ws38{word-spacing:-5.256000px;}
.ws152{word-spacing:-4.320000px;}
.wsb8{word-spacing:-3.540000px;}
.ws132{word-spacing:-3.408000px;}
.ws3f{word-spacing:-3.390000px;}
.wsd6{word-spacing:-3.169800px;}
.ws113{word-spacing:-3.138000px;}
.ws172{word-spacing:-3.086400px;}
.ws136{word-spacing:-3.084000px;}
.wsfa{word-spacing:-3.072000px;}
.wsc7{word-spacing:-2.982000px;}
.ws81{word-spacing:-2.736000px;}
.ws1d{word-spacing:-2.701800px;}
.ws1c{word-spacing:-2.696100px;}
.ws177{word-spacing:-2.692800px;}
.ws5e{word-spacing:-2.646000px;}
.ws150{word-spacing:-2.634000px;}
.wsfd{word-spacing:-2.616000px;}
.wsf1{word-spacing:-2.580000px;}
.ws44{word-spacing:-2.526000px;}
.wsd0{word-spacing:-2.514000px;}
.ws119{word-spacing:-2.490000px;}
.wsb4{word-spacing:-2.484000px;}
.ws151{word-spacing:-2.364000px;}
.ws120{word-spacing:-2.358000px;}
.ws45{word-spacing:-2.340000px;}
.ws10{word-spacing:-2.337000px;}
.wse0{word-spacing:-2.286000px;}
.wsf4{word-spacing:-2.262000px;}
.ws9a{word-spacing:-2.226000px;}
.ws2e{word-spacing:-2.223000px;}
.ws191{word-spacing:-2.188800px;}
.ws5c{word-spacing:-2.172000px;}
.ws75{word-spacing:-2.094000px;}
.ws153{word-spacing:-2.064000px;}
.ws15b{word-spacing:-2.044800px;}
.ws195{word-spacing:-1.963200px;}
.wsb0{word-spacing:-1.962000px;}
.ws11b{word-spacing:-1.938000px;}
.ws1e{word-spacing:-1.755600px;}
.ws29{word-spacing:-1.681500px;}
.ws3c{word-spacing:-1.668000px;}
.ws99{word-spacing:-1.614000px;}
.ws6f{word-spacing:-1.524000px;}
.wsef{word-spacing:-1.488000px;}
.wsbb{word-spacing:-1.482000px;}
.ws123{word-spacing:-1.476000px;}
.ws63{word-spacing:-1.398000px;}
.ws72{word-spacing:-1.392000px;}
.ws192{word-spacing:-1.387200px;}
.ws193{word-spacing:-1.358400px;}
.ws23{word-spacing:-1.305300px;}
.wse{word-spacing:-1.267200px;}
.ws56{word-spacing:-1.224000px;}
.ws14d{word-spacing:-1.212000px;}
.ws4a{word-spacing:-1.008000px;}
.wsde{word-spacing:-0.984000px;}
.ws86{word-spacing:-0.957600px;}
.ws87{word-spacing:-0.951900px;}
.ws2f{word-spacing:-0.877800px;}
.wsa6{word-spacing:-0.876000px;}
.ws11{word-spacing:-0.843600px;}
.ws3e{word-spacing:-0.816000px;}
.ws28{word-spacing:-0.786600px;}
.ws118{word-spacing:-0.738000px;}
.ws4e{word-spacing:-0.672000px;}
.ws58{word-spacing:-0.642000px;}
.ws74{word-spacing:-0.636000px;}
.ws66{word-spacing:-0.606000px;}
.ws173{word-spacing:-0.595200px;}
.ws27{word-spacing:-0.535800px;}
.ws18f{word-spacing:-0.513600px;}
.ws40{word-spacing:-0.492000px;}
.ws4f{word-spacing:-0.438000px;}
.ws42{word-spacing:-0.306000px;}
.ws147{word-spacing:-0.300000px;}
.ws30{word-spacing:-0.240000px;}
.wsf8{word-spacing:-0.228000px;}
.ws20{word-spacing:-0.216600px;}
.ws83{word-spacing:-0.199500px;}
.ws96{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.090000px;}
.ws32{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.057000px;}
.wsd8{word-spacing:-0.054000px;}
.ws5a{word-spacing:-0.048000px;}
.ws8c{word-spacing:-0.042000px;}
.wsd{word-spacing:0.000000px;}
.ws17d{word-spacing:0.067200px;}
.ws5d{word-spacing:0.114000px;}
.wse6{word-spacing:0.156000px;}
.ws51{word-spacing:0.216000px;}
.ws145{word-spacing:0.222000px;}
.ws2b{word-spacing:0.228000px;}
.ws2a{word-spacing:0.233700px;}
.ws70{word-spacing:0.234000px;}
.ws79{word-spacing:0.264000px;}
.ws1f{word-spacing:0.381900px;}
.wsf7{word-spacing:0.384000px;}
.wsfe{word-spacing:0.396000px;}
.wsa9{word-spacing:0.498000px;}
.ws46{word-spacing:0.522000px;}
.wsbc{word-spacing:0.594000px;}
.ws138{word-spacing:0.624000px;}
.ws10f{word-spacing:0.738000px;}
.ws128{word-spacing:0.810000px;}
.ws71{word-spacing:0.912000px;}
.ws133{word-spacing:0.978000px;}
.ws130{word-spacing:0.984000px;}
.ws175{word-spacing:1.003200px;}
.wsb9{word-spacing:1.008000px;}
.ws15{word-spacing:1.043100px;}
.ws16{word-spacing:1.048800px;}
.ws158{word-spacing:1.094400px;}
.ws16c{word-spacing:1.161600px;}
.ws65{word-spacing:1.164000px;}
.ws17{word-spacing:1.191300px;}
.ws59{word-spacing:1.218000px;}
.wsdd{word-spacing:1.248000px;}
.wsee{word-spacing:1.266000px;}
.ws16d{word-spacing:1.291200px;}
.ws102{word-spacing:1.324800px;}
.ws64{word-spacing:1.326000px;}
.ws144{word-spacing:1.338000px;}
.ws8e{word-spacing:1.386000px;}
.wsf5{word-spacing:1.392000px;}
.ws18c{word-spacing:1.425600px;}
.ws43{word-spacing:1.446000px;}
.ws77{word-spacing:1.452000px;}
.wsa3{word-spacing:1.464000px;}
.ws159{word-spacing:1.550400px;}
.ws6a{word-spacing:1.566000px;}
.ws48{word-spacing:1.656000px;}
.ws7e{word-spacing:1.662000px;}
.ws141{word-spacing:1.680000px;}
.ws18a{word-spacing:1.694400px;}
.wsa8{word-spacing:1.860000px;}
.ws13e{word-spacing:1.872000px;}
.wsb1{word-spacing:1.878000px;}
.ws15a{word-spacing:1.905600px;}
.ws125{word-spacing:1.914000px;}
.wsce{word-spacing:1.944000px;}
.wscf{word-spacing:1.950000px;}
.ws198{word-spacing:2.020800px;}
.ws15e{word-spacing:2.251200px;}
.ws7d{word-spacing:2.286000px;}
.ws85{word-spacing:2.291400px;}
.ws61{word-spacing:2.298000px;}
.ws62{word-spacing:2.304000px;}
.wsd7{word-spacing:2.322000px;}
.ws2d{word-spacing:2.325600px;}
.ws9c{word-spacing:2.424000px;}
.ws9d{word-spacing:2.430000px;}
.wsdf{word-spacing:2.454000px;}
.ws14e{word-spacing:2.466000px;}
.ws6b{word-spacing:2.502000px;}
.ws8a{word-spacing:2.684700px;}
.ws11e{word-spacing:2.730000px;}
.ws84{word-spacing:2.827200px;}
.wsc9{word-spacing:2.850000px;}
.ws12a{word-spacing:2.856000px;}
.ws13f{word-spacing:2.904000px;}
.ws155{word-spacing:3.014400px;}
.ws106{word-spacing:3.030000px;}
.ws6e{word-spacing:3.054000px;}
.ws176{word-spacing:3.139200px;}
.ws13a{word-spacing:3.144000px;}
.ws134{word-spacing:3.234000px;}
.wsa5{word-spacing:3.270000px;}
.ws1b{word-spacing:3.334500px;}
.ws57{word-spacing:3.420000px;}
.wsf0{word-spacing:3.450000px;}
.wsc5{word-spacing:3.492000px;}
.wsc6{word-spacing:3.498000px;}
.ws16b{word-spacing:3.523200px;}
.ws112{word-spacing:3.558000px;}
.wse4{word-spacing:3.570000px;}
.ws10b{word-spacing:3.594000px;}
.ws12f{word-spacing:3.600000px;}
.ws18b{word-spacing:3.604800px;}
.ws16a{word-spacing:3.619200px;}
.ws148{word-spacing:3.648000px;}
.ws24{word-spacing:3.659400px;}
.ws11d{word-spacing:3.798000px;}
.ws97{word-spacing:3.828000px;}
.ws163{word-spacing:3.864000px;}
.ws47{word-spacing:3.882000px;}
.ws156{word-spacing:3.902400px;}
.ws90{word-spacing:3.918000px;}
.ws189{word-spacing:3.955200px;}
.ws12b{word-spacing:3.972000px;}
.wsec{word-spacing:3.984000px;}
.wsdc{word-spacing:4.008000px;}
.ws13b{word-spacing:4.026000px;}
.ws17b{word-spacing:4.036800px;}
.ws55{word-spacing:4.056000px;}
.wsc8{word-spacing:4.062000px;}
.ws105{word-spacing:4.152000px;}
.ws39{word-spacing:4.254000px;}
.ws89{word-spacing:4.320600px;}
.wsa4{word-spacing:4.338000px;}
.wsb6{word-spacing:4.398000px;}
.ws25{word-spacing:4.406100px;}
.ws80{word-spacing:4.470000px;}
.ws14c{word-spacing:4.494000px;}
.ws78{word-spacing:4.518000px;}
.ws88{word-spacing:4.520100px;}
.ws199{word-spacing:4.636800px;}
.ws13{word-spacing:4.662600px;}
.ws9e{word-spacing:4.704000px;}
.ws5f{word-spacing:4.740000px;}
.ws60{word-spacing:4.746000px;}
.wscc{word-spacing:4.836000px;}
.wsca{word-spacing:4.866000px;}
.ws114{word-spacing:4.908000px;}
.wsb2{word-spacing:4.920000px;}
.wsb3{word-spacing:4.926000px;}
.ws21{word-spacing:4.947600px;}
.ws143{word-spacing:4.962000px;}
.ws8f{word-spacing:4.968000px;}
.ws129{word-spacing:4.974000px;}
.ws126{word-spacing:4.992000px;}
.ws135{word-spacing:4.998000px;}
.ws50{word-spacing:5.004000px;}
.ws164{word-spacing:5.112000px;}
.ws26{word-spacing:5.124300px;}
.wsb7{word-spacing:5.154000px;}
.ws11a{word-spacing:5.196000px;}
.ws127{word-spacing:5.226000px;}
.ws14f{word-spacing:5.244000px;}
.ws15c{word-spacing:5.256000px;}
.ws190{word-spacing:5.270400px;}
.ws12d{word-spacing:5.274000px;}
.ws14{word-spacing:5.301000px;}
.ws67{word-spacing:5.322000px;}
.wse7{word-spacing:5.376000px;}
.ws19b{word-spacing:5.380800px;}
.ws103{word-spacing:5.454000px;}
.wsd1{word-spacing:5.460000px;}
.ws7a{word-spacing:5.472000px;}
.ws170{word-spacing:5.496000px;}
.ws22{word-spacing:5.597400px;}
.ws111{word-spacing:5.646000px;}
.ws157{word-spacing:5.664000px;}
.ws7c{word-spacing:5.670000px;}
.ws15d{word-spacing:5.673600px;}
.ws2c{word-spacing:5.728500px;}
.ws18{word-spacing:5.745600px;}
.wsad{word-spacing:5.808000px;}
.ws104{word-spacing:5.838000px;}
.wsaa{word-spacing:5.844000px;}
.wsf3{word-spacing:5.898000px;}
.ws9f{word-spacing:5.988000px;}
.ws12{word-spacing:5.996400px;}
.ws171{word-spacing:6.009600px;}
.ws115{word-spacing:6.012000px;}
.ws116{word-spacing:6.018000px;}
.ws188{word-spacing:6.062400px;}
.wse9{word-spacing:6.096000px;}
.ws160{word-spacing:6.100800px;}
.ws194{word-spacing:6.297600px;}
.ws174{word-spacing:6.360000px;}
.wsa1{word-spacing:6.384000px;}
.ws3a{word-spacing:6.426000px;}
.ws15f{word-spacing:6.465600px;}
.wsc3{word-spacing:6.588000px;}
.wse3{word-spacing:6.618000px;}
.ws161{word-spacing:6.768000px;}
.ws5b{word-spacing:6.876000px;}
.ws73{word-spacing:6.936000px;}
.ws117{word-spacing:6.948000px;}
.ws19{word-spacing:7.050900px;}
.ws1a{word-spacing:7.056600px;}
.ws7b{word-spacing:7.158000px;}
.ws52{word-spacing:7.284000px;}
.ws149{word-spacing:7.296000px;}
.wscb{word-spacing:7.368000px;}
.ws6d{word-spacing:7.518000px;}
.wsdb{word-spacing:7.698000px;}
.ws166{word-spacing:7.828800px;}
.ws101{word-spacing:8.028000px;}
.ws4d{word-spacing:8.322000px;}
.wsbe{word-spacing:8.328000px;}
.ws18e{word-spacing:8.520000px;}
.ws53{word-spacing:8.544000px;}
.wsed{word-spacing:8.562000px;}
.ws131{word-spacing:8.580000px;}
.wsea{word-spacing:8.682000px;}
.ws17c{word-spacing:8.851200px;}
.wse8{word-spacing:8.928000px;}
.ws146{word-spacing:8.958000px;}
.wsac{word-spacing:9.024000px;}
.wsab{word-spacing:9.054000px;}
.ws11f{word-spacing:9.126000px;}
.ws122{word-spacing:9.168000px;}
.wsa2{word-spacing:9.186000px;}
.ws165{word-spacing:9.278400px;}
.ws3b{word-spacing:9.288000px;}
.ws121{word-spacing:9.366000px;}
.ws41{word-spacing:9.378000px;}
.ws187{word-spacing:9.379200px;}
.ws184{word-spacing:9.403200px;}
.ws183{word-spacing:9.408000px;}
.ws186{word-spacing:9.470400px;}
.wsf2{word-spacing:9.522000px;}
.ws13d{word-spacing:9.642000px;}
.wsbd{word-spacing:9.678000px;}
.ws49{word-spacing:9.684000px;}
.wsd2{word-spacing:9.702000px;}
.ws124{word-spacing:9.726000px;}
.ws3d{word-spacing:9.792000px;}
.ws178{word-spacing:9.825600px;}
.ws4c{word-spacing:9.864000px;}
.wse1{word-spacing:9.870000px;}
.ws37{word-spacing:9.936000px;}
.ws179{word-spacing:10.032000px;}
.ws154{word-spacing:10.204800px;}
.ws11c{word-spacing:10.230000px;}
.ws12c{word-spacing:10.272000px;}
.ws108{word-spacing:10.278000px;}
.wsf6{word-spacing:10.284000px;}
.ws110{word-spacing:10.314000px;}
.wsc1{word-spacing:10.380000px;}
.ws14b{word-spacing:10.722000px;}
.wsaf{word-spacing:10.734000px;}
.ws181{word-spacing:10.761600px;}
.ws12e{word-spacing:10.836000px;}
.ws54{word-spacing:11.010000px;}
.wsd4{word-spacing:11.016000px;}
.ws95{word-spacing:11.022000px;}
.wsa7{word-spacing:11.202000px;}
.ws140{word-spacing:11.226000px;}
.ws69{word-spacing:11.382000px;}
.wsc2{word-spacing:11.700000px;}
.ws139{word-spacing:11.916000px;}
.wsc4{word-spacing:11.922000px;}
.ws13c{word-spacing:12.102000px;}
.ws196{word-spacing:12.168000px;}
.ws182{word-spacing:12.206400px;}
.wsae{word-spacing:12.354000px;}
.ws68{word-spacing:12.360000px;}
.ws92{word-spacing:12.474000px;}
.wsd3{word-spacing:12.606000px;}
.ws142{word-spacing:12.738000px;}
.ws16e{word-spacing:12.849600px;}
.wseb{word-spacing:12.876000px;}
.ws16f{word-spacing:12.878400px;}
.ws107{word-spacing:12.894000px;}
.wsf9{word-spacing:12.918000px;}
.ws76{word-spacing:13.020000px;}
.ws100{word-spacing:13.068000px;}
.ws19e{word-spacing:13.248000px;}
.ws180{word-spacing:13.291200px;}
.ws185{word-spacing:13.540800px;}
.ws168{word-spacing:13.612800px;}
.ws10c{word-spacing:13.620000px;}
.ws14a{word-spacing:13.668000px;}
.ws4b{word-spacing:13.704000px;}
.wsbf{word-spacing:14.376000px;}
.ws17e{word-spacing:14.380800px;}
.wsf{word-spacing:14.540700px;}
.wsc0{word-spacing:14.700000px;}
.ws109{word-spacing:14.730000px;}
.ws197{word-spacing:15.048000px;}
.ws167{word-spacing:15.316800px;}
.ws17a{word-spacing:15.355200px;}
.ws19c{word-spacing:15.643200px;}
.wsfb{word-spacing:15.684000px;}
.wsfc{word-spacing:15.690000px;}
.wscd{word-spacing:15.834000px;}
.ws6c{word-spacing:16.224000px;}
.ws137{word-spacing:16.560000px;}
.ws8b{word-spacing:16.578000px;}
.ws17f{word-spacing:16.588800px;}
.ws10d{word-spacing:16.788000px;}
.wsd5{word-spacing:17.010000px;}
.wsff{word-spacing:17.370000px;}
.ws19d{word-spacing:17.601600px;}
.ws169{word-spacing:17.625600px;}
.ws82{word-spacing:17.670000px;}
.ws10e{word-spacing:17.874000px;}
.ws7f{word-spacing:18.768000px;}
.wsa0{word-spacing:19.326000px;}
.ws8d{word-spacing:19.668000px;}
.wsb5{word-spacing:23.208000px;}
.ws94{word-spacing:23.796000px;}
.ws10a{word-spacing:24.996000px;}
.ws93{word-spacing:25.182000px;}
.wse5{word-spacing:25.500000px;}
.ws18d{word-spacing:26.467200px;}
.wse2{word-spacing:26.538000px;}
.wsba{word-spacing:26.646000px;}
.ws9b{word-spacing:32.616000px;}
.ws162{word-spacing:41.620800px;}
.ws19a{word-spacing:51.302400px;}
.ws8{word-spacing:274.834800px;}
._12{margin-left:-44.280000px;}
._13{margin-left:-30.012000px;}
._14{margin-left:-20.982000px;}
._10{margin-left:-18.336000px;}
._f{margin-left:-15.996000px;}
._c{margin-left:-14.862000px;}
._18{margin-left:-12.804000px;}
._8{margin-left:-11.650800px;}
._23{margin-left:-9.642000px;}
._9{margin-left:-8.139600px;}
._5{margin-left:-6.283800px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.541600px;}
._6{width:4.384200px;}
._b{width:6.116100px;}
._2e{width:7.612200px;}
._17{width:9.360000px;}
._d{width:10.962000px;}
._e{width:12.696000px;}
._7{width:14.523600px;}
._11{width:17.262000px;}
._24{width:19.614000px;}
._15{width:24.906000px;}
._16{width:28.266000px;}
._29{width:86.707200px;}
._2a{width:97.368000px;}
._26{width:102.643200px;}
._28{width:129.384000px;}
._2c{width:134.707200px;}
._2d{width:142.742400px;}
._2b{width:164.001600px;}
._1b{width:190.176000px;}
._27{width:226.123200px;}
._a{width:242.296800px;}
._25{width:268.180800px;}
._1c{width:270.037200px;}
._1f{width:276.667200px;}
._1a{width:292.929600px;}
._22{width:310.051200px;}
._1e{width:316.723200px;}
._20{width:353.366400px;}
._21{width:412.449600px;}
._1d{width:517.809600px;}
._19{width:545.995200px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs2{font-size:30.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.045000px;}
.y3d{bottom:71.469750px;}
.y67{bottom:74.885100px;}
.y8f{bottom:76.475100px;}
.yf9{bottom:79.280100px;}
.y147{bottom:79.404000px;}
.y178{bottom:80.047050px;}
.y1a9{bottom:80.294550px;}
.y3c{bottom:87.969750px;}
.y66{bottom:93.935100px;}
.y146{bottom:94.404000px;}
.y8e{bottom:95.225100px;}
.y1a8{bottom:96.044550px;}
.y177{bottom:98.797050px;}
.y143{bottom:101.904000px;}
.yf8{bottom:102.396900px;}
.y145{bottom:109.404000px;}
.y1a7{bottom:111.794550px;}
.y65{bottom:112.983600px;}
.y8d{bottom:113.975100px;}
.y176{bottom:117.547050px;}
.y144{bottom:124.404000px;}
.y3b{bottom:124.499325px;}
.yf7{bottom:125.514900px;}
.y1a6{bottom:127.544550px;}
.y64{bottom:132.033600px;}
.y8c{bottom:132.725100px;}
.y175{bottom:136.297050px;}
.y3a{bottom:140.999175px;}
.y1a5{bottom:143.294550px;}
.y142{bottom:146.485200px;}
.y63{bottom:151.085100px;}
.y8b{bottom:151.475100px;}
.y174{bottom:155.047050px;}
.y39{bottom:157.499250px;}
.y1a4{bottom:159.044550px;}
.y140{bottom:161.485200px;}
.y62{bottom:170.135100px;}
.y8a{bottom:170.225100px;}
.yf6{bottom:170.819700px;}
.y173{bottom:173.797050px;}
.y38{bottom:173.999325px;}
.y1a3{bottom:174.794550px;}
.y141{bottom:176.485200px;}
.yf5{bottom:187.319400px;}
.y89{bottom:188.975100px;}
.y61{bottom:189.185100px;}
.y37{bottom:190.499400px;}
.y1a2{bottom:190.544550px;}
.y172{bottom:192.547050px;}
.y13f{bottom:199.621200px;}
.y36{bottom:206.999475px;}
.y88{bottom:207.725100px;}
.y60{bottom:208.235100px;}
.y171{bottom:211.297050px;}
.y13d{bottom:214.621200px;}
.y35{bottom:223.499475px;}
.y87{bottom:226.475100px;}
.y5f{bottom:227.285100px;}
.y1a1{bottom:229.295550px;}
.y13e{bottom:229.621200px;}
.y170{bottom:230.047050px;}
.yc9{bottom:233.530800px;}
.yf4{bottom:233.530950px;}
.y34{bottom:239.999550px;}
.y86{bottom:245.225100px;}
.y5e{bottom:246.335100px;}
.y16f{bottom:248.797050px;}
.yc8{bottom:252.280800px;}
.yf3{bottom:252.280950px;}
.y13c{bottom:253.324800px;}
.y33{bottom:256.499625px;}
.y85{bottom:263.975100px;}
.y5d{bottom:265.385100px;}
.y16e{bottom:267.547050px;}
.y13b{bottom:268.324800px;}
.yc7{bottom:271.030800px;}
.yf2{bottom:271.030950px;}
.y32{bottom:272.999475px;}
.y138{bottom:275.824800px;}
.y1aa{bottom:279.202200px;}
.y84{bottom:282.725100px;}
.y13a{bottom:283.324800px;}
.y5c{bottom:284.435100px;}
.y16d{bottom:286.297050px;}
.y31{bottom:289.499550px;}
.yc6{bottom:289.780800px;}
.yf1{bottom:289.780950px;}
.y139{bottom:298.324800px;}
.y83{bottom:301.475100px;}
.y5b{bottom:303.483600px;}
.y16c{bottom:305.047050px;}
.y30{bottom:305.999625px;}
.yc5{bottom:308.530800px;}
.yf0{bottom:308.530950px;}
.y82{bottom:320.225100px;}
.y137{bottom:320.592000px;}
.y5a{bottom:322.533600px;}
.y2f{bottom:323.591850px;}
.y1a0{bottom:323.796300px;}
.y16b{bottom:323.797050px;}
.yc4{bottom:327.280800px;}
.yef{bottom:327.280950px;}
.y135{bottom:335.592000px;}
.y81{bottom:338.975100px;}
.y59{bottom:341.585100px;}
.y19f{bottom:342.546300px;}
.y16a{bottom:342.547050px;}
.yc3{bottom:346.030800px;}
.yee{bottom:346.030950px;}
.y136{bottom:350.592000px;}
.y80{bottom:357.725100px;}
.y2e{bottom:358.680600px;}
.y58{bottom:360.635100px;}
.y19e{bottom:361.296300px;}
.y169{bottom:361.297050px;}
.yc2{bottom:364.780800px;}
.yed{bottom:364.780950px;}
.y134{bottom:372.414000px;}
.y2d{bottom:375.930225px;}
.y7f{bottom:376.475100px;}
.y2b{bottom:377.022525px;}
.y57{bottom:379.685100px;}
.y19d{bottom:380.046300px;}
.y168{bottom:380.047050px;}
.yc1{bottom:383.530800px;}
.yec{bottom:383.530950px;}
.y133{bottom:387.414000px;}
.y2c{bottom:393.179850px;}
.y2a{bottom:394.272000px;}
.y130{bottom:394.914000px;}
.y7e{bottom:395.225100px;}
.y56{bottom:398.735100px;}
.y19c{bottom:398.796300px;}
.y167{bottom:398.797050px;}
.yc0{bottom:402.280800px;}
.yeb{bottom:402.280950px;}
.y132{bottom:402.414000px;}
.y1d7{bottom:402.499650px;}
.y7d{bottom:413.975100px;}
.y29{bottom:416.647500px;}
.y131{bottom:417.414000px;}
.y19b{bottom:417.546300px;}
.y166{bottom:417.547050px;}
.y55{bottom:417.785100px;}
.y1d6{bottom:418.249650px;}
.ybf{bottom:421.030800px;}
.yea{bottom:421.030950px;}
.y7c{bottom:432.725100px;}
.y1d5{bottom:433.999650px;}
.y19a{bottom:436.296300px;}
.y165{bottom:436.297050px;}
.y54{bottom:436.535100px;}
.y28{bottom:437.928825px;}
.y12f{bottom:439.332000px;}
.ybe{bottom:439.780800px;}
.ye9{bottom:439.780950px;}
.y1d4{bottom:449.749650px;}
.y7b{bottom:451.475100px;}
.y12e{bottom:454.332000px;}
.y27{bottom:454.428900px;}
.y199{bottom:455.046300px;}
.y164{bottom:455.047050px;}
.y53{bottom:455.285100px;}
.ybd{bottom:458.530800px;}
.ye8{bottom:458.530950px;}
.y1d3{bottom:465.499650px;}
.y12b{bottom:469.332000px;}
.y7a{bottom:470.225100px;}
.y26{bottom:470.928975px;}
.y198{bottom:473.796300px;}
.y163{bottom:473.797050px;}
.y52{bottom:474.035100px;}
.ybc{bottom:477.280800px;}
.ye7{bottom:477.280950px;}
.y1d2{bottom:481.249650px;}
.y12d{bottom:484.332000px;}
.y25{bottom:487.429050px;}
.y79{bottom:488.975100px;}
.y197{bottom:492.546300px;}
.y162{bottom:492.547050px;}
.y51{bottom:492.785100px;}
.ybb{bottom:496.030800px;}
.ye6{bottom:496.030950px;}
.y1d1{bottom:496.999650px;}
.y12c{bottom:499.332000px;}
.y24{bottom:503.929125px;}
.y78{bottom:507.725100px;}
.y196{bottom:511.296300px;}
.y161{bottom:511.297050px;}
.y50{bottom:511.535100px;}
.y1d0{bottom:512.749650px;}
.yba{bottom:514.780800px;}
.ye5{bottom:514.780950px;}
.y23{bottom:520.429200px;}
.y12a{bottom:522.292800px;}
.y77{bottom:526.475100px;}
.y1cf{bottom:528.499650px;}
.y129{bottom:529.792800px;}
.y195{bottom:530.046300px;}
.y160{bottom:530.047050px;}
.y4f{bottom:530.285100px;}
.yb9{bottom:533.530800px;}
.ye4{bottom:533.530950px;}
.y22{bottom:536.929275px;}
.y1ce{bottom:544.249650px;}
.y76{bottom:545.225100px;}
.y194{bottom:548.796300px;}
.y15f{bottom:548.797050px;}
.y4e{bottom:549.035100px;}
.yb8{bottom:552.280800px;}
.ye3{bottom:552.280950px;}
.y21{bottom:553.429350px;}
.y1cd{bottom:559.999650px;}
.y128{bottom:561.166800px;}
.y75{bottom:563.975100px;}
.y193{bottom:567.546300px;}
.y15e{bottom:567.547050px;}
.y4d{bottom:567.785100px;}
.y20{bottom:569.929425px;}
.ye2{bottom:571.030950px;}
.y1cc{bottom:575.749650px;}
.yb7{bottom:577.408800px;}
.y74{bottom:582.725100px;}
.y192{bottom:586.296300px;}
.y15d{bottom:586.297050px;}
.y1f{bottom:586.429500px;}
.y4c{bottom:586.535100px;}
.y127{bottom:588.091800px;}
.ye1{bottom:589.780950px;}
.y1cb{bottom:591.499650px;}
.y73{bottom:601.475100px;}
.y1e{bottom:602.929575px;}
.y15c{bottom:605.047050px;}
.y4b{bottom:605.285100px;}
.yb6{bottom:606.789900px;}
.y1ca{bottom:607.249650px;}
.ye0{bottom:608.530950px;}
.y191{bottom:617.802450px;}
.y1d{bottom:619.429650px;}
.y72{bottom:620.225100px;}
.y1c9{bottom:622.999650px;}
.y15b{bottom:623.797050px;}
.y4a{bottom:624.035100px;}
.yb5{bottom:625.539900px;}
.ydf{bottom:627.280950px;}
.y1c{bottom:635.929725px;}
.y1c8{bottom:638.749650px;}
.y71{bottom:638.975100px;}
.y15a{bottom:642.547050px;}
.y49{bottom:642.785100px;}
.y10d{bottom:643.049100px;}
.y126{bottom:643.314600px;}
.yb4{bottom:644.289900px;}
.yde{bottom:652.408950px;}
.y1b{bottom:652.429800px;}
.y1c7{bottom:654.499650px;}
.y70{bottom:657.725100px;}
.y159{bottom:661.297050px;}
.y48{bottom:661.535100px;}
.y10c{bottom:661.799100px;}
.y125{bottom:662.064600px;}
.y190{bottom:662.065050px;}
.yb3{bottom:663.039900px;}
.y1a{bottom:668.929875px;}
.y1c6{bottom:670.249650px;}
.y6f{bottom:676.475100px;}
.y158{bottom:680.047050px;}
.y47{bottom:680.285100px;}
.y10b{bottom:680.549100px;}
.y124{bottom:680.814600px;}
.y18f{bottom:680.815050px;}
.yb2{bottom:681.789900px;}
.y19{bottom:685.429950px;}
.y1c5{bottom:685.999650px;}
.ydd{bottom:694.545450px;}
.y6e{bottom:695.225100px;}
.y157{bottom:698.797050px;}
.y46{bottom:699.035100px;}
.y10a{bottom:699.299100px;}
.y123{bottom:699.564600px;}
.y18e{bottom:699.565050px;}
.yb1{bottom:700.539900px;}
.y1c4{bottom:701.749650px;}
.y18{bottom:701.930025px;}
.y6d{bottom:713.975100px;}
.y1c3{bottom:717.499650px;}
.y156{bottom:717.547050px;}
.y45{bottom:717.785100px;}
.y109{bottom:718.049100px;}
.y122{bottom:718.314600px;}
.y18d{bottom:718.315050px;}
.yb0{bottom:719.289900px;}
.y17{bottom:719.522100px;}
.y6c{bottom:732.725100px;}
.y1c2{bottom:733.249650px;}
.y155{bottom:736.297050px;}
.y44{bottom:736.535100px;}
.y108{bottom:736.799100px;}
.y121{bottom:737.064600px;}
.y18c{bottom:737.065050px;}
.yaf{bottom:738.039900px;}
.ydc{bottom:738.807900px;}
.y1c1{bottom:748.999650px;}
.y6b{bottom:751.475100px;}
.y154{bottom:755.047050px;}
.y43{bottom:755.285100px;}
.y120{bottom:755.814600px;}
.y18b{bottom:755.815050px;}
.yae{bottom:756.789900px;}
.ydb{bottom:757.557900px;}
.y107{bottom:761.927100px;}
.y1c0{bottom:764.749650px;}
.y6a{bottom:770.225100px;}
.y153{bottom:773.797050px;}
.y42{bottom:774.035100px;}
.y11f{bottom:774.564600px;}
.y18a{bottom:774.565050px;}
.y16{bottom:774.819750px;}
.yad{bottom:775.539900px;}
.yda{bottom:776.307900px;}
.y1bf{bottom:780.499650px;}
.y69{bottom:788.975100px;}
.y152{bottom:792.547050px;}
.y11e{bottom:793.314600px;}
.y189{bottom:793.315050px;}
.y15{bottom:793.569750px;}
.yac{bottom:794.289900px;}
.yd9{bottom:795.057900px;}
.y106{bottom:795.058050px;}
.y1be{bottom:796.249650px;}
.y41{bottom:805.539750px;}
.y68{bottom:807.725100px;}
.y151{bottom:811.297050px;}
.y1bd{bottom:811.999650px;}
.y11d{bottom:812.064600px;}
.y188{bottom:812.065050px;}
.yab{bottom:813.039900px;}
.yd8{bottom:813.807900px;}
.y105{bottom:813.808050px;}
.y14{bottom:816.572250px;}
.y1bc{bottom:827.749650px;}
.y150{bottom:830.047050px;}
.y11c{bottom:830.814600px;}
.y187{bottom:830.815050px;}
.yaa{bottom:831.789900px;}
.yd7{bottom:832.557900px;}
.y104{bottom:832.558050px;}
.y1bb{bottom:843.499650px;}
.y12{bottom:848.033400px;}
.y13{bottom:848.078400px;}
.y14f{bottom:848.797050px;}
.y11b{bottom:849.564600px;}
.y186{bottom:849.565050px;}
.ya9{bottom:850.539900px;}
.yd6{bottom:851.307900px;}
.y103{bottom:851.308050px;}
.y1ba{bottom:859.249650px;}
.y14e{bottom:867.547050px;}
.y11a{bottom:868.314600px;}
.y185{bottom:868.315050px;}
.ya8{bottom:869.289900px;}
.yd5{bottom:870.057900px;}
.y102{bottom:870.058050px;}
.y9e{bottom:870.613650px;}
.y10{bottom:872.033400px;}
.y11{bottom:872.078400px;}
.y1b9{bottom:874.999650px;}
.y14d{bottom:886.297050px;}
.y119{bottom:887.064600px;}
.y184{bottom:887.065050px;}
.y9d{bottom:887.863275px;}
.yd4{bottom:888.807900px;}
.y101{bottom:888.808050px;}
.y9b{bottom:888.955425px;}
.y1b8{bottom:890.749650px;}
.ya7{bottom:894.417900px;}
.y14c{bottom:905.047050px;}
.y9c{bottom:905.112900px;}
.y118{bottom:905.814600px;}
.y183{bottom:905.815050px;}
.y9a{bottom:906.204900px;}
.y1b7{bottom:906.499650px;}
.yd3{bottom:907.557900px;}
.y100{bottom:907.558050px;}
.y1b6{bottom:922.249650px;}
.y14b{bottom:923.797050px;}
.y117{bottom:924.564600px;}
.y182{bottom:924.565050px;}
.yff{bottom:926.308050px;}
.y99{bottom:927.487275px;}
.yf{bottom:930.094050px;}
.yd2{bottom:932.685900px;}
.ya6{bottom:936.553050px;}
.y1b5{bottom:937.999650px;}
.y14a{bottom:942.547050px;}
.y116{bottom:943.314600px;}
.y181{bottom:943.315050px;}
.yfe{bottom:945.058050px;}
.y98{bottom:945.829050px;}
.ye{bottom:948.844050px;}
.y1b4{bottom:953.749650px;}
.y149{bottom:961.297050px;}
.yd1{bottom:962.064300px;}
.y115{bottom:962.064600px;}
.y180{bottom:962.065050px;}
.yfd{bottom:963.808050px;}
.y97{bottom:967.112175px;}
.y1b3{bottom:969.499650px;}
.yd{bottom:971.846550px;}
.yd0{bottom:980.814300px;}
.y114{bottom:980.814600px;}
.y17f{bottom:980.815050px;}
.ya5{bottom:980.815650px;}
.yfc{bottom:982.558050px;}
.y96{bottom:984.361800px;}
.y1b2{bottom:985.249650px;}
.y148{bottom:992.803200px;}
.ycf{bottom:999.564300px;}
.y113{bottom:999.564600px;}
.y17e{bottom:999.565050px;}
.ya4{bottom:999.565650px;}
.y1b1{bottom:1000.999650px;}
.yfb{bottom:1001.308050px;}
.y95{bottom:1001.611425px;}
.yb{bottom:1003.306200px;}
.yc{bottom:1003.351200px;}
.y1b0{bottom:1016.749650px;}
.yce{bottom:1018.314300px;}
.y112{bottom:1018.314600px;}
.y17d{bottom:1018.315050px;}
.ya3{bottom:1018.315650px;}
.y94{bottom:1018.863150px;}
.yfa{bottom:1026.436200px;}
.y9{bottom:1027.306200px;}
.ya{bottom:1027.351200px;}
.y1af{bottom:1032.499650px;}
.y93{bottom:1036.112775px;}
.ycd{bottom:1037.064300px;}
.y111{bottom:1037.064600px;}
.y17c{bottom:1037.065050px;}
.ya2{bottom:1037.065650px;}
.y1ae{bottom:1048.249650px;}
.y92{bottom:1053.362400px;}
.ycc{bottom:1055.814300px;}
.y110{bottom:1055.814600px;}
.y17b{bottom:1055.815050px;}
.ya1{bottom:1055.815650px;}
.y1ad{bottom:1063.999650px;}
.y91{bottom:1070.612025px;}
.y3e{bottom:1072.822500px;}
.ycb{bottom:1074.564300px;}
.y10f{bottom:1074.564600px;}
.y17a{bottom:1074.565050px;}
.ya0{bottom:1074.565650px;}
.y1ac{bottom:1079.749650px;}
.y90{bottom:1087.861650px;}
.yca{bottom:1093.314300px;}
.y10e{bottom:1093.314600px;}
.y179{bottom:1093.315050px;}
.y9f{bottom:1093.315650px;}
.y1ab{bottom:1095.499650px;}
.y5{bottom:1096.482600px;}
.y7{bottom:1100.682600px;}
.y4{bottom:1105.482600px;}
.y2{bottom:1105.729650px;}
.y3{bottom:1114.482600px;}
.y1{bottom:1121.929650px;}
.y6{bottom:1123.260000px;}
.y40{bottom:1135.835400px;}
.y3f{bottom:1136.927550px;}
.h3{height:21.855469px;}
.h12{height:34.945312px;}
.h11{height:34.968750px;}
.hd{height:37.129395px;}
.hc{height:37.178623px;}
.ha{height:37.185223px;}
.he{height:37.379447px;}
.h4{height:39.313477px;}
.h2{height:39.339844px;}
.hb{height:41.553223px;}
.hf{height:41.748047px;}
.h10{height:41.748947px;}
.h7{height:42.949219px;}
.h9{height:43.593750px;}
.h8{height:43.681641px;}
.h13{height:43.710938px;}
.h1{height:48.082031px;}
.h6{height:52.417969px;}
.h14{height:64.968750px;}
.h5{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:1.913400px;}
.x3{left:57.879000px;}
.x14{left:59.315100px;}
.xd{left:62.735550px;}
.xe{left:64.648950px;}
.x21{left:65.690100px;}
.x2{left:70.833750px;}
.x1d{left:84.827100px;}
.x8{left:88.527150px;}
.x9{left:90.440550px;}
.x1e{left:91.726950px;}
.x16{left:102.543450px;}
.x1b{left:107.834700px;}
.x27{left:123.420300px;}
.x17{left:127.346700px;}
.x26{left:130.094700px;}
.x22{left:134.246700px;}
.x6{left:137.078100px;}
.x7{left:138.991500px;}
.x1{left:140.996550px;}
.x12{left:154.565100px;}
.xf{left:168.095400px;}
.x10{left:170.008800px;}
.x13{left:182.483100px;}
.xb{left:186.524100px;}
.x1a{left:224.763450px;}
.xc{left:233.622600px;}
.x11{left:296.804100px;}
.xa{left:304.344600px;}
.x23{left:321.141300px;}
.x1f{left:454.749450px;}
.x20{left:480.260400px;}
.x25{left:483.008400px;}
.x19{left:497.267700px;}
.x28{left:518.852700px;}
.x18{left:522.779700px;}
.x15{left:636.553200px;}
.x4{left:754.476000px;}
.x24{left:800.794500px;}
.x1c{left:808.309500px;}
@media print{
.v1{vertical-align:-3.882667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.666667pt;}
.ls2a{letter-spacing:-3.957333pt;}
.ls2d{letter-spacing:-2.944000pt;}
.ls27{letter-spacing:-1.520000pt;}
.ls2b{letter-spacing:-1.482667pt;}
.ls26{letter-spacing:-1.013333pt;}
.ls15{letter-spacing:-0.537600pt;}
.ls2c{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005067pt;}
.ls8{letter-spacing:0.010133pt;}
.ls5{letter-spacing:0.010667pt;}
.ls29{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.015200pt;}
.lse{letter-spacing:0.025333pt;}
.ls1e{letter-spacing:0.167200pt;}
.ls10{letter-spacing:0.217867pt;}
.ls1f{letter-spacing:0.988000pt;}
.ls1c{letter-spacing:0.993067pt;}
.ls18{letter-spacing:1.003200pt;}
.ls16{letter-spacing:1.008267pt;}
.ls17{letter-spacing:1.013333pt;}
.ls23{letter-spacing:1.018400pt;}
.ls1b{letter-spacing:1.023467pt;}
.ls19{letter-spacing:1.038667pt;}
.ls3{letter-spacing:1.107200pt;}
.ls2{letter-spacing:1.113600pt;}
.ls4{letter-spacing:1.126400pt;}
.ls13{letter-spacing:2.067200pt;}
.ls1{letter-spacing:2.252800pt;}
.ls1d{letter-spacing:3.050133pt;}
.ls7{letter-spacing:3.257867pt;}
.ls0{letter-spacing:3.360000pt;}
.ls22{letter-spacing:3.399733pt;}
.ls1a{letter-spacing:3.526400pt;}
.lsa{letter-spacing:3.916533pt;}
.lsc{letter-spacing:4.549867pt;}
.lsd{letter-spacing:4.554933pt;}
.lsb{letter-spacing:4.560000pt;}
.ls25{letter-spacing:4.656267pt;}
.ls21{letter-spacing:4.858933pt;}
.ls20{letter-spacing:5.036267pt;}
.ls12{letter-spacing:5.086933pt;}
.ls11{letter-spacing:5.092000pt;}
.ls28{letter-spacing:20.821333pt;}
.ls24{letter-spacing:130.332533pt;}
.ls6{letter-spacing:261.510667pt;}
.ws6{word-spacing:-66.252800pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws34{word-spacing:-51.680000pt;}
.ws4{word-spacing:-51.360000pt;}
.wsc{word-spacing:-50.666667pt;}
.ws35{word-spacing:-49.653333pt;}
.ws36{word-spacing:-49.146667pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wsb{word-spacing:-45.333333pt;}
.wsd9{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws31{word-spacing:-17.792000pt;}
.ws33{word-spacing:-14.826667pt;}
.wsda{word-spacing:-11.861333pt;}
.ws9{word-spacing:-11.552000pt;}
.ws98{word-spacing:-5.093333pt;}
.ws38{word-spacing:-4.672000pt;}
.ws152{word-spacing:-3.840000pt;}
.wsb8{word-spacing:-3.146667pt;}
.ws132{word-spacing:-3.029333pt;}
.ws3f{word-spacing:-3.013333pt;}
.wsd6{word-spacing:-2.817600pt;}
.ws113{word-spacing:-2.789333pt;}
.ws172{word-spacing:-2.743467pt;}
.ws136{word-spacing:-2.741333pt;}
.wsfa{word-spacing:-2.730667pt;}
.wsc7{word-spacing:-2.650667pt;}
.ws81{word-spacing:-2.432000pt;}
.ws1d{word-spacing:-2.401600pt;}
.ws1c{word-spacing:-2.396533pt;}
.ws177{word-spacing:-2.393600pt;}
.ws5e{word-spacing:-2.352000pt;}
.ws150{word-spacing:-2.341333pt;}
.wsfd{word-spacing:-2.325333pt;}
.wsf1{word-spacing:-2.293333pt;}
.ws44{word-spacing:-2.245333pt;}
.wsd0{word-spacing:-2.234667pt;}
.ws119{word-spacing:-2.213333pt;}
.wsb4{word-spacing:-2.208000pt;}
.ws151{word-spacing:-2.101333pt;}
.ws120{word-spacing:-2.096000pt;}
.ws45{word-spacing:-2.080000pt;}
.ws10{word-spacing:-2.077333pt;}
.wse0{word-spacing:-2.032000pt;}
.wsf4{word-spacing:-2.010667pt;}
.ws9a{word-spacing:-1.978667pt;}
.ws2e{word-spacing:-1.976000pt;}
.ws191{word-spacing:-1.945600pt;}
.ws5c{word-spacing:-1.930667pt;}
.ws75{word-spacing:-1.861333pt;}
.ws153{word-spacing:-1.834667pt;}
.ws15b{word-spacing:-1.817600pt;}
.ws195{word-spacing:-1.745067pt;}
.wsb0{word-spacing:-1.744000pt;}
.ws11b{word-spacing:-1.722667pt;}
.ws1e{word-spacing:-1.560533pt;}
.ws29{word-spacing:-1.494667pt;}
.ws3c{word-spacing:-1.482667pt;}
.ws99{word-spacing:-1.434667pt;}
.ws6f{word-spacing:-1.354667pt;}
.wsef{word-spacing:-1.322667pt;}
.wsbb{word-spacing:-1.317333pt;}
.ws123{word-spacing:-1.312000pt;}
.ws63{word-spacing:-1.242667pt;}
.ws72{word-spacing:-1.237333pt;}
.ws192{word-spacing:-1.233067pt;}
.ws193{word-spacing:-1.207467pt;}
.ws23{word-spacing:-1.160267pt;}
.wse{word-spacing:-1.126400pt;}
.ws56{word-spacing:-1.088000pt;}
.ws14d{word-spacing:-1.077333pt;}
.ws4a{word-spacing:-0.896000pt;}
.wsde{word-spacing:-0.874667pt;}
.ws86{word-spacing:-0.851200pt;}
.ws87{word-spacing:-0.846133pt;}
.ws2f{word-spacing:-0.780267pt;}
.wsa6{word-spacing:-0.778667pt;}
.ws11{word-spacing:-0.749867pt;}
.ws3e{word-spacing:-0.725333pt;}
.ws28{word-spacing:-0.699200pt;}
.ws118{word-spacing:-0.656000pt;}
.ws4e{word-spacing:-0.597333pt;}
.ws58{word-spacing:-0.570667pt;}
.ws74{word-spacing:-0.565333pt;}
.ws66{word-spacing:-0.538667pt;}
.ws173{word-spacing:-0.529067pt;}
.ws27{word-spacing:-0.476267pt;}
.ws18f{word-spacing:-0.456533pt;}
.ws40{word-spacing:-0.437333pt;}
.ws4f{word-spacing:-0.389333pt;}
.ws42{word-spacing:-0.272000pt;}
.ws147{word-spacing:-0.266667pt;}
.ws30{word-spacing:-0.213333pt;}
.wsf8{word-spacing:-0.202667pt;}
.ws20{word-spacing:-0.192533pt;}
.ws83{word-spacing:-0.177333pt;}
.ws96{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.080000pt;}
.ws32{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.050667pt;}
.wsd8{word-spacing:-0.048000pt;}
.ws5a{word-spacing:-0.042667pt;}
.ws8c{word-spacing:-0.037333pt;}
.wsd{word-spacing:0.000000pt;}
.ws17d{word-spacing:0.059733pt;}
.ws5d{word-spacing:0.101333pt;}
.wse6{word-spacing:0.138667pt;}
.ws51{word-spacing:0.192000pt;}
.ws145{word-spacing:0.197333pt;}
.ws2b{word-spacing:0.202667pt;}
.ws2a{word-spacing:0.207733pt;}
.ws70{word-spacing:0.208000pt;}
.ws79{word-spacing:0.234667pt;}
.ws1f{word-spacing:0.339467pt;}
.wsf7{word-spacing:0.341333pt;}
.wsfe{word-spacing:0.352000pt;}
.wsa9{word-spacing:0.442667pt;}
.ws46{word-spacing:0.464000pt;}
.wsbc{word-spacing:0.528000pt;}
.ws138{word-spacing:0.554667pt;}
.ws10f{word-spacing:0.656000pt;}
.ws128{word-spacing:0.720000pt;}
.ws71{word-spacing:0.810667pt;}
.ws133{word-spacing:0.869333pt;}
.ws130{word-spacing:0.874667pt;}
.ws175{word-spacing:0.891733pt;}
.wsb9{word-spacing:0.896000pt;}
.ws15{word-spacing:0.927200pt;}
.ws16{word-spacing:0.932267pt;}
.ws158{word-spacing:0.972800pt;}
.ws16c{word-spacing:1.032533pt;}
.ws65{word-spacing:1.034667pt;}
.ws17{word-spacing:1.058933pt;}
.ws59{word-spacing:1.082667pt;}
.wsdd{word-spacing:1.109333pt;}
.wsee{word-spacing:1.125333pt;}
.ws16d{word-spacing:1.147733pt;}
.ws102{word-spacing:1.177600pt;}
.ws64{word-spacing:1.178667pt;}
.ws144{word-spacing:1.189333pt;}
.ws8e{word-spacing:1.232000pt;}
.wsf5{word-spacing:1.237333pt;}
.ws18c{word-spacing:1.267200pt;}
.ws43{word-spacing:1.285333pt;}
.ws77{word-spacing:1.290667pt;}
.wsa3{word-spacing:1.301333pt;}
.ws159{word-spacing:1.378133pt;}
.ws6a{word-spacing:1.392000pt;}
.ws48{word-spacing:1.472000pt;}
.ws7e{word-spacing:1.477333pt;}
.ws141{word-spacing:1.493333pt;}
.ws18a{word-spacing:1.506133pt;}
.wsa8{word-spacing:1.653333pt;}
.ws13e{word-spacing:1.664000pt;}
.wsb1{word-spacing:1.669333pt;}
.ws15a{word-spacing:1.693867pt;}
.ws125{word-spacing:1.701333pt;}
.wsce{word-spacing:1.728000pt;}
.wscf{word-spacing:1.733333pt;}
.ws198{word-spacing:1.796267pt;}
.ws15e{word-spacing:2.001067pt;}
.ws7d{word-spacing:2.032000pt;}
.ws85{word-spacing:2.036800pt;}
.ws61{word-spacing:2.042667pt;}
.ws62{word-spacing:2.048000pt;}
.wsd7{word-spacing:2.064000pt;}
.ws2d{word-spacing:2.067200pt;}
.ws9c{word-spacing:2.154667pt;}
.ws9d{word-spacing:2.160000pt;}
.wsdf{word-spacing:2.181333pt;}
.ws14e{word-spacing:2.192000pt;}
.ws6b{word-spacing:2.224000pt;}
.ws8a{word-spacing:2.386400pt;}
.ws11e{word-spacing:2.426667pt;}
.ws84{word-spacing:2.513067pt;}
.wsc9{word-spacing:2.533333pt;}
.ws12a{word-spacing:2.538667pt;}
.ws13f{word-spacing:2.581333pt;}
.ws155{word-spacing:2.679467pt;}
.ws106{word-spacing:2.693333pt;}
.ws6e{word-spacing:2.714667pt;}
.ws176{word-spacing:2.790400pt;}
.ws13a{word-spacing:2.794667pt;}
.ws134{word-spacing:2.874667pt;}
.wsa5{word-spacing:2.906667pt;}
.ws1b{word-spacing:2.964000pt;}
.ws57{word-spacing:3.040000pt;}
.wsf0{word-spacing:3.066667pt;}
.wsc5{word-spacing:3.104000pt;}
.wsc6{word-spacing:3.109333pt;}
.ws16b{word-spacing:3.131733pt;}
.ws112{word-spacing:3.162667pt;}
.wse4{word-spacing:3.173333pt;}
.ws10b{word-spacing:3.194667pt;}
.ws12f{word-spacing:3.200000pt;}
.ws18b{word-spacing:3.204267pt;}
.ws16a{word-spacing:3.217067pt;}
.ws148{word-spacing:3.242667pt;}
.ws24{word-spacing:3.252800pt;}
.ws11d{word-spacing:3.376000pt;}
.ws97{word-spacing:3.402667pt;}
.ws163{word-spacing:3.434667pt;}
.ws47{word-spacing:3.450667pt;}
.ws156{word-spacing:3.468800pt;}
.ws90{word-spacing:3.482667pt;}
.ws189{word-spacing:3.515733pt;}
.ws12b{word-spacing:3.530667pt;}
.wsec{word-spacing:3.541333pt;}
.wsdc{word-spacing:3.562667pt;}
.ws13b{word-spacing:3.578667pt;}
.ws17b{word-spacing:3.588267pt;}
.ws55{word-spacing:3.605333pt;}
.wsc8{word-spacing:3.610667pt;}
.ws105{word-spacing:3.690667pt;}
.ws39{word-spacing:3.781333pt;}
.ws89{word-spacing:3.840533pt;}
.wsa4{word-spacing:3.856000pt;}
.wsb6{word-spacing:3.909333pt;}
.ws25{word-spacing:3.916533pt;}
.ws80{word-spacing:3.973333pt;}
.ws14c{word-spacing:3.994667pt;}
.ws78{word-spacing:4.016000pt;}
.ws88{word-spacing:4.017867pt;}
.ws199{word-spacing:4.121600pt;}
.ws13{word-spacing:4.144533pt;}
.ws9e{word-spacing:4.181333pt;}
.ws5f{word-spacing:4.213333pt;}
.ws60{word-spacing:4.218667pt;}
.wscc{word-spacing:4.298667pt;}
.wsca{word-spacing:4.325333pt;}
.ws114{word-spacing:4.362667pt;}
.wsb2{word-spacing:4.373333pt;}
.wsb3{word-spacing:4.378667pt;}
.ws21{word-spacing:4.397867pt;}
.ws143{word-spacing:4.410667pt;}
.ws8f{word-spacing:4.416000pt;}
.ws129{word-spacing:4.421333pt;}
.ws126{word-spacing:4.437333pt;}
.ws135{word-spacing:4.442667pt;}
.ws50{word-spacing:4.448000pt;}
.ws164{word-spacing:4.544000pt;}
.ws26{word-spacing:4.554933pt;}
.wsb7{word-spacing:4.581333pt;}
.ws11a{word-spacing:4.618667pt;}
.ws127{word-spacing:4.645333pt;}
.ws14f{word-spacing:4.661333pt;}
.ws15c{word-spacing:4.672000pt;}
.ws190{word-spacing:4.684800pt;}
.ws12d{word-spacing:4.688000pt;}
.ws14{word-spacing:4.712000pt;}
.ws67{word-spacing:4.730667pt;}
.wse7{word-spacing:4.778667pt;}
.ws19b{word-spacing:4.782933pt;}
.ws103{word-spacing:4.848000pt;}
.wsd1{word-spacing:4.853333pt;}
.ws7a{word-spacing:4.864000pt;}
.ws170{word-spacing:4.885333pt;}
.ws22{word-spacing:4.975467pt;}
.ws111{word-spacing:5.018667pt;}
.ws157{word-spacing:5.034667pt;}
.ws7c{word-spacing:5.040000pt;}
.ws15d{word-spacing:5.043200pt;}
.ws2c{word-spacing:5.092000pt;}
.ws18{word-spacing:5.107200pt;}
.wsad{word-spacing:5.162667pt;}
.ws104{word-spacing:5.189333pt;}
.wsaa{word-spacing:5.194667pt;}
.wsf3{word-spacing:5.242667pt;}
.ws9f{word-spacing:5.322667pt;}
.ws12{word-spacing:5.330133pt;}
.ws171{word-spacing:5.341867pt;}
.ws115{word-spacing:5.344000pt;}
.ws116{word-spacing:5.349333pt;}
.ws188{word-spacing:5.388800pt;}
.wse9{word-spacing:5.418667pt;}
.ws160{word-spacing:5.422933pt;}
.ws194{word-spacing:5.597867pt;}
.ws174{word-spacing:5.653333pt;}
.wsa1{word-spacing:5.674667pt;}
.ws3a{word-spacing:5.712000pt;}
.ws15f{word-spacing:5.747200pt;}
.wsc3{word-spacing:5.856000pt;}
.wse3{word-spacing:5.882667pt;}
.ws161{word-spacing:6.016000pt;}
.ws5b{word-spacing:6.112000pt;}
.ws73{word-spacing:6.165333pt;}
.ws117{word-spacing:6.176000pt;}
.ws19{word-spacing:6.267467pt;}
.ws1a{word-spacing:6.272533pt;}
.ws7b{word-spacing:6.362667pt;}
.ws52{word-spacing:6.474667pt;}
.ws149{word-spacing:6.485333pt;}
.wscb{word-spacing:6.549333pt;}
.ws6d{word-spacing:6.682667pt;}
.wsdb{word-spacing:6.842667pt;}
.ws166{word-spacing:6.958933pt;}
.ws101{word-spacing:7.136000pt;}
.ws4d{word-spacing:7.397333pt;}
.wsbe{word-spacing:7.402667pt;}
.ws18e{word-spacing:7.573333pt;}
.ws53{word-spacing:7.594667pt;}
.wsed{word-spacing:7.610667pt;}
.ws131{word-spacing:7.626667pt;}
.wsea{word-spacing:7.717333pt;}
.ws17c{word-spacing:7.867733pt;}
.wse8{word-spacing:7.936000pt;}
.ws146{word-spacing:7.962667pt;}
.wsac{word-spacing:8.021333pt;}
.wsab{word-spacing:8.048000pt;}
.ws11f{word-spacing:8.112000pt;}
.ws122{word-spacing:8.149333pt;}
.wsa2{word-spacing:8.165333pt;}
.ws165{word-spacing:8.247467pt;}
.ws3b{word-spacing:8.256000pt;}
.ws121{word-spacing:8.325333pt;}
.ws41{word-spacing:8.336000pt;}
.ws187{word-spacing:8.337067pt;}
.ws184{word-spacing:8.358400pt;}
.ws183{word-spacing:8.362667pt;}
.ws186{word-spacing:8.418133pt;}
.wsf2{word-spacing:8.464000pt;}
.ws13d{word-spacing:8.570667pt;}
.wsbd{word-spacing:8.602667pt;}
.ws49{word-spacing:8.608000pt;}
.wsd2{word-spacing:8.624000pt;}
.ws124{word-spacing:8.645333pt;}
.ws3d{word-spacing:8.704000pt;}
.ws178{word-spacing:8.733867pt;}
.ws4c{word-spacing:8.768000pt;}
.wse1{word-spacing:8.773333pt;}
.ws37{word-spacing:8.832000pt;}
.ws179{word-spacing:8.917333pt;}
.ws154{word-spacing:9.070933pt;}
.ws11c{word-spacing:9.093333pt;}
.ws12c{word-spacing:9.130667pt;}
.ws108{word-spacing:9.136000pt;}
.wsf6{word-spacing:9.141333pt;}
.ws110{word-spacing:9.168000pt;}
.wsc1{word-spacing:9.226667pt;}
.ws14b{word-spacing:9.530667pt;}
.wsaf{word-spacing:9.541333pt;}
.ws181{word-spacing:9.565867pt;}
.ws12e{word-spacing:9.632000pt;}
.ws54{word-spacing:9.786667pt;}
.wsd4{word-spacing:9.792000pt;}
.ws95{word-spacing:9.797333pt;}
.wsa7{word-spacing:9.957333pt;}
.ws140{word-spacing:9.978667pt;}
.ws69{word-spacing:10.117333pt;}
.wsc2{word-spacing:10.400000pt;}
.ws139{word-spacing:10.592000pt;}
.wsc4{word-spacing:10.597333pt;}
.ws13c{word-spacing:10.757333pt;}
.ws196{word-spacing:10.816000pt;}
.ws182{word-spacing:10.850133pt;}
.wsae{word-spacing:10.981333pt;}
.ws68{word-spacing:10.986667pt;}
.ws92{word-spacing:11.088000pt;}
.wsd3{word-spacing:11.205333pt;}
.ws142{word-spacing:11.322667pt;}
.ws16e{word-spacing:11.421867pt;}
.wseb{word-spacing:11.445333pt;}
.ws16f{word-spacing:11.447467pt;}
.ws107{word-spacing:11.461333pt;}
.wsf9{word-spacing:11.482667pt;}
.ws76{word-spacing:11.573333pt;}
.ws100{word-spacing:11.616000pt;}
.ws19e{word-spacing:11.776000pt;}
.ws180{word-spacing:11.814400pt;}
.ws185{word-spacing:12.036267pt;}
.ws168{word-spacing:12.100267pt;}
.ws10c{word-spacing:12.106667pt;}
.ws14a{word-spacing:12.149333pt;}
.ws4b{word-spacing:12.181333pt;}
.wsbf{word-spacing:12.778667pt;}
.ws17e{word-spacing:12.782933pt;}
.wsf{word-spacing:12.925067pt;}
.wsc0{word-spacing:13.066667pt;}
.ws109{word-spacing:13.093333pt;}
.ws197{word-spacing:13.376000pt;}
.ws167{word-spacing:13.614933pt;}
.ws17a{word-spacing:13.649067pt;}
.ws19c{word-spacing:13.905067pt;}
.wsfb{word-spacing:13.941333pt;}
.wsfc{word-spacing:13.946667pt;}
.wscd{word-spacing:14.074667pt;}
.ws6c{word-spacing:14.421333pt;}
.ws137{word-spacing:14.720000pt;}
.ws8b{word-spacing:14.736000pt;}
.ws17f{word-spacing:14.745600pt;}
.ws10d{word-spacing:14.922667pt;}
.wsd5{word-spacing:15.120000pt;}
.wsff{word-spacing:15.440000pt;}
.ws19d{word-spacing:15.645867pt;}
.ws169{word-spacing:15.667200pt;}
.ws82{word-spacing:15.706667pt;}
.ws10e{word-spacing:15.888000pt;}
.ws7f{word-spacing:16.682667pt;}
.wsa0{word-spacing:17.178667pt;}
.ws8d{word-spacing:17.482667pt;}
.wsb5{word-spacing:20.629333pt;}
.ws94{word-spacing:21.152000pt;}
.ws10a{word-spacing:22.218667pt;}
.ws93{word-spacing:22.384000pt;}
.wse5{word-spacing:22.666667pt;}
.ws18d{word-spacing:23.526400pt;}
.wse2{word-spacing:23.589333pt;}
.wsba{word-spacing:23.685333pt;}
.ws9b{word-spacing:28.992000pt;}
.ws162{word-spacing:36.996267pt;}
.ws19a{word-spacing:45.602133pt;}
.ws8{word-spacing:244.297600pt;}
._12{margin-left:-39.360000pt;}
._13{margin-left:-26.677333pt;}
._14{margin-left:-18.650667pt;}
._10{margin-left:-16.298667pt;}
._f{margin-left:-14.218667pt;}
._c{margin-left:-13.210667pt;}
._18{margin-left:-11.381333pt;}
._8{margin-left:-10.356267pt;}
._23{margin-left:-8.570667pt;}
._9{margin-left:-7.235200pt;}
._5{margin-left:-5.585600pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.259200pt;}
._6{width:3.897067pt;}
._b{width:5.436533pt;}
._2e{width:6.766400pt;}
._17{width:8.320000pt;}
._d{width:9.744000pt;}
._e{width:11.285333pt;}
._7{width:12.909867pt;}
._11{width:15.344000pt;}
._24{width:17.434667pt;}
._15{width:22.138667pt;}
._16{width:25.125333pt;}
._29{width:77.073067pt;}
._2a{width:86.549333pt;}
._26{width:91.238400pt;}
._28{width:115.008000pt;}
._2c{width:119.739733pt;}
._2d{width:126.882133pt;}
._2b{width:145.779200pt;}
._1b{width:169.045333pt;}
._27{width:200.998400pt;}
._a{width:215.374933pt;}
._25{width:238.382933pt;}
._1c{width:240.033067pt;}
._1f{width:245.926400pt;}
._1a{width:260.381867pt;}
._22{width:275.601067pt;}
._1e{width:281.531733pt;}
._20{width:314.103467pt;}
._21{width:366.621867pt;}
._1d{width:460.275200pt;}
._19{width:485.329067pt;}
.fs2{font-size:26.666667pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.040000pt;}
.y3d{bottom:63.528667pt;}
.y67{bottom:66.564533pt;}
.y8f{bottom:67.977867pt;}
.yf9{bottom:70.471200pt;}
.y147{bottom:70.581333pt;}
.y178{bottom:71.152933pt;}
.y1a9{bottom:71.372933pt;}
.y3c{bottom:78.195333pt;}
.y66{bottom:83.497867pt;}
.y146{bottom:83.914667pt;}
.y8e{bottom:84.644533pt;}
.y1a8{bottom:85.372933pt;}
.y177{bottom:87.819600pt;}
.y143{bottom:90.581333pt;}
.yf8{bottom:91.019467pt;}
.y145{bottom:97.248000pt;}
.y1a7{bottom:99.372933pt;}
.y65{bottom:100.429867pt;}
.y8d{bottom:101.311200pt;}
.y176{bottom:104.486267pt;}
.y144{bottom:110.581333pt;}
.y3b{bottom:110.666067pt;}
.yf7{bottom:111.568800pt;}
.y1a6{bottom:113.372933pt;}
.y64{bottom:117.363200pt;}
.y8c{bottom:117.977867pt;}
.y175{bottom:121.152933pt;}
.y3a{bottom:125.332600pt;}
.y1a5{bottom:127.372933pt;}
.y142{bottom:130.209067pt;}
.y63{bottom:134.297867pt;}
.y8b{bottom:134.644533pt;}
.y174{bottom:137.819600pt;}
.y39{bottom:139.999333pt;}
.y1a4{bottom:141.372933pt;}
.y140{bottom:143.542400pt;}
.y62{bottom:151.231200pt;}
.y8a{bottom:151.311200pt;}
.yf6{bottom:151.839733pt;}
.y173{bottom:154.486267pt;}
.y38{bottom:154.666067pt;}
.y1a3{bottom:155.372933pt;}
.y141{bottom:156.875733pt;}
.yf5{bottom:166.506133pt;}
.y89{bottom:167.977867pt;}
.y61{bottom:168.164533pt;}
.y37{bottom:169.332800pt;}
.y1a2{bottom:169.372933pt;}
.y172{bottom:171.152933pt;}
.y13f{bottom:177.441067pt;}
.y36{bottom:183.999533pt;}
.y88{bottom:184.644533pt;}
.y60{bottom:185.097867pt;}
.y171{bottom:187.819600pt;}
.y13d{bottom:190.774400pt;}
.y35{bottom:198.666200pt;}
.y87{bottom:201.311200pt;}
.y5f{bottom:202.031200pt;}
.y1a1{bottom:203.818267pt;}
.y13e{bottom:204.107733pt;}
.y170{bottom:204.486267pt;}
.yc9{bottom:207.582933pt;}
.yf4{bottom:207.583067pt;}
.y34{bottom:213.332933pt;}
.y86{bottom:217.977867pt;}
.y5e{bottom:218.964533pt;}
.y16f{bottom:221.152933pt;}
.yc8{bottom:224.249600pt;}
.yf3{bottom:224.249733pt;}
.y13c{bottom:225.177600pt;}
.y33{bottom:227.999667pt;}
.y85{bottom:234.644533pt;}
.y5d{bottom:235.897867pt;}
.y16e{bottom:237.819600pt;}
.y13b{bottom:238.510933pt;}
.yc7{bottom:240.916267pt;}
.yf2{bottom:240.916400pt;}
.y32{bottom:242.666200pt;}
.y138{bottom:245.177600pt;}
.y1aa{bottom:248.179733pt;}
.y84{bottom:251.311200pt;}
.y13a{bottom:251.844267pt;}
.y5c{bottom:252.831200pt;}
.y16d{bottom:254.486267pt;}
.y31{bottom:257.332933pt;}
.yc6{bottom:257.582933pt;}
.yf1{bottom:257.583067pt;}
.y139{bottom:265.177600pt;}
.y83{bottom:267.977867pt;}
.y5b{bottom:269.763200pt;}
.y16c{bottom:271.152933pt;}
.y30{bottom:271.999667pt;}
.yc5{bottom:274.249600pt;}
.yf0{bottom:274.249733pt;}
.y82{bottom:284.644533pt;}
.y137{bottom:284.970667pt;}
.y5a{bottom:286.696533pt;}
.y2f{bottom:287.637200pt;}
.y1a0{bottom:287.818933pt;}
.y16b{bottom:287.819600pt;}
.yc4{bottom:290.916267pt;}
.yef{bottom:290.916400pt;}
.y135{bottom:298.304000pt;}
.y81{bottom:301.311200pt;}
.y59{bottom:303.631200pt;}
.y19f{bottom:304.485600pt;}
.y16a{bottom:304.486267pt;}
.yc3{bottom:307.582933pt;}
.yee{bottom:307.583067pt;}
.y136{bottom:311.637333pt;}
.y80{bottom:317.977867pt;}
.y2e{bottom:318.827200pt;}
.y58{bottom:320.564533pt;}
.y19e{bottom:321.152267pt;}
.y169{bottom:321.152933pt;}
.yc2{bottom:324.249600pt;}
.yed{bottom:324.249733pt;}
.y134{bottom:331.034667pt;}
.y2d{bottom:334.160200pt;}
.y7f{bottom:334.644533pt;}
.y2b{bottom:335.131133pt;}
.y57{bottom:337.497867pt;}
.y19d{bottom:337.818933pt;}
.y168{bottom:337.819600pt;}
.yc1{bottom:340.916267pt;}
.yec{bottom:340.916400pt;}
.y133{bottom:344.368000pt;}
.y2c{bottom:349.493200pt;}
.y2a{bottom:350.464000pt;}
.y130{bottom:351.034667pt;}
.y7e{bottom:351.311200pt;}
.y56{bottom:354.431200pt;}
.y19c{bottom:354.485600pt;}
.y167{bottom:354.486267pt;}
.yc0{bottom:357.582933pt;}
.yeb{bottom:357.583067pt;}
.y132{bottom:357.701333pt;}
.y1d7{bottom:357.777467pt;}
.y7d{bottom:367.977867pt;}
.y29{bottom:370.353333pt;}
.y131{bottom:371.034667pt;}
.y19b{bottom:371.152267pt;}
.y166{bottom:371.152933pt;}
.y55{bottom:371.364533pt;}
.y1d6{bottom:371.777467pt;}
.ybf{bottom:374.249600pt;}
.yea{bottom:374.249733pt;}
.y7c{bottom:384.644533pt;}
.y1d5{bottom:385.777467pt;}
.y19a{bottom:387.818933pt;}
.y165{bottom:387.819600pt;}
.y54{bottom:388.031200pt;}
.y28{bottom:389.270067pt;}
.y12f{bottom:390.517333pt;}
.ybe{bottom:390.916267pt;}
.ye9{bottom:390.916400pt;}
.y1d4{bottom:399.777467pt;}
.y7b{bottom:401.311200pt;}
.y12e{bottom:403.850667pt;}
.y27{bottom:403.936800pt;}
.y199{bottom:404.485600pt;}
.y164{bottom:404.486267pt;}
.y53{bottom:404.697867pt;}
.ybd{bottom:407.582933pt;}
.ye8{bottom:407.583067pt;}
.y1d3{bottom:413.777467pt;}
.y12b{bottom:417.184000pt;}
.y7a{bottom:417.977867pt;}
.y26{bottom:418.603533pt;}
.y198{bottom:421.152267pt;}
.y163{bottom:421.152933pt;}
.y52{bottom:421.364533pt;}
.ybc{bottom:424.249600pt;}
.ye7{bottom:424.249733pt;}
.y1d2{bottom:427.777467pt;}
.y12d{bottom:430.517333pt;}
.y25{bottom:433.270267pt;}
.y79{bottom:434.644533pt;}
.y197{bottom:437.818933pt;}
.y162{bottom:437.819600pt;}
.y51{bottom:438.031200pt;}
.ybb{bottom:440.916267pt;}
.ye6{bottom:440.916400pt;}
.y1d1{bottom:441.777467pt;}
.y12c{bottom:443.850667pt;}
.y24{bottom:447.937000pt;}
.y78{bottom:451.311200pt;}
.y196{bottom:454.485600pt;}
.y161{bottom:454.486267pt;}
.y50{bottom:454.697867pt;}
.y1d0{bottom:455.777467pt;}
.yba{bottom:457.582933pt;}
.ye5{bottom:457.583067pt;}
.y23{bottom:462.603733pt;}
.y12a{bottom:464.260267pt;}
.y77{bottom:467.977867pt;}
.y1cf{bottom:469.777467pt;}
.y129{bottom:470.926933pt;}
.y195{bottom:471.152267pt;}
.y160{bottom:471.152933pt;}
.y4f{bottom:471.364533pt;}
.yb9{bottom:474.249600pt;}
.ye4{bottom:474.249733pt;}
.y22{bottom:477.270467pt;}
.y1ce{bottom:483.777467pt;}
.y76{bottom:484.644533pt;}
.y194{bottom:487.818933pt;}
.y15f{bottom:487.819600pt;}
.y4e{bottom:488.031200pt;}
.yb8{bottom:490.916267pt;}
.ye3{bottom:490.916400pt;}
.y21{bottom:491.937200pt;}
.y1cd{bottom:497.777467pt;}
.y128{bottom:498.814933pt;}
.y75{bottom:501.311200pt;}
.y193{bottom:504.485600pt;}
.y15e{bottom:504.486267pt;}
.y4d{bottom:504.697867pt;}
.y20{bottom:506.603933pt;}
.ye2{bottom:507.583067pt;}
.y1cc{bottom:511.777467pt;}
.yb7{bottom:513.252267pt;}
.y74{bottom:517.977867pt;}
.y192{bottom:521.152267pt;}
.y15d{bottom:521.152933pt;}
.y1f{bottom:521.270667pt;}
.y4c{bottom:521.364533pt;}
.y127{bottom:522.748267pt;}
.ye1{bottom:524.249733pt;}
.y1cb{bottom:525.777467pt;}
.y73{bottom:534.644533pt;}
.y1e{bottom:535.937400pt;}
.y15c{bottom:537.819600pt;}
.y4b{bottom:538.031200pt;}
.yb6{bottom:539.368800pt;}
.y1ca{bottom:539.777467pt;}
.ye0{bottom:540.916400pt;}
.y191{bottom:549.157733pt;}
.y1d{bottom:550.604133pt;}
.y72{bottom:551.311200pt;}
.y1c9{bottom:553.777467pt;}
.y15b{bottom:554.486267pt;}
.y4a{bottom:554.697867pt;}
.yb5{bottom:556.035467pt;}
.ydf{bottom:557.583067pt;}
.y1c{bottom:565.270867pt;}
.y1c8{bottom:567.777467pt;}
.y71{bottom:567.977867pt;}
.y15a{bottom:571.152933pt;}
.y49{bottom:571.364533pt;}
.y10d{bottom:571.599200pt;}
.y126{bottom:571.835200pt;}
.yb4{bottom:572.702133pt;}
.yde{bottom:579.919067pt;}
.y1b{bottom:579.937600pt;}
.y1c7{bottom:581.777467pt;}
.y70{bottom:584.644533pt;}
.y159{bottom:587.819600pt;}
.y48{bottom:588.031200pt;}
.y10c{bottom:588.265867pt;}
.y125{bottom:588.501867pt;}
.y190{bottom:588.502267pt;}
.yb3{bottom:589.368800pt;}
.y1a{bottom:594.604333pt;}
.y1c6{bottom:595.777467pt;}
.y6f{bottom:601.311200pt;}
.y158{bottom:604.486267pt;}
.y47{bottom:604.697867pt;}
.y10b{bottom:604.932533pt;}
.y124{bottom:605.168533pt;}
.y18f{bottom:605.168933pt;}
.yb2{bottom:606.035467pt;}
.y19{bottom:609.271067pt;}
.y1c5{bottom:609.777467pt;}
.ydd{bottom:617.373733pt;}
.y6e{bottom:617.977867pt;}
.y157{bottom:621.152933pt;}
.y46{bottom:621.364533pt;}
.y10a{bottom:621.599200pt;}
.y123{bottom:621.835200pt;}
.y18e{bottom:621.835600pt;}
.yb1{bottom:622.702133pt;}
.y1c4{bottom:623.777467pt;}
.y18{bottom:623.937800pt;}
.y6d{bottom:634.644533pt;}
.y1c3{bottom:637.777467pt;}
.y156{bottom:637.819600pt;}
.y45{bottom:638.031200pt;}
.y109{bottom:638.265867pt;}
.y122{bottom:638.501867pt;}
.y18d{bottom:638.502267pt;}
.yb0{bottom:639.368800pt;}
.y17{bottom:639.575200pt;}
.y6c{bottom:651.311200pt;}
.y1c2{bottom:651.777467pt;}
.y155{bottom:654.486267pt;}
.y44{bottom:654.697867pt;}
.y108{bottom:654.932533pt;}
.y121{bottom:655.168533pt;}
.y18c{bottom:655.168933pt;}
.yaf{bottom:656.035467pt;}
.ydc{bottom:656.718133pt;}
.y1c1{bottom:665.777467pt;}
.y6b{bottom:667.977867pt;}
.y154{bottom:671.152933pt;}
.y43{bottom:671.364533pt;}
.y120{bottom:671.835200pt;}
.y18b{bottom:671.835600pt;}
.yae{bottom:672.702133pt;}
.ydb{bottom:673.384800pt;}
.y107{bottom:677.268533pt;}
.y1c0{bottom:679.777467pt;}
.y6a{bottom:684.644533pt;}
.y153{bottom:687.819600pt;}
.y42{bottom:688.031200pt;}
.y11f{bottom:688.501867pt;}
.y18a{bottom:688.502267pt;}
.y16{bottom:688.728667pt;}
.yad{bottom:689.368800pt;}
.yda{bottom:690.051467pt;}
.y1bf{bottom:693.777467pt;}
.y69{bottom:701.311200pt;}
.y152{bottom:704.486267pt;}
.y11e{bottom:705.168533pt;}
.y189{bottom:705.168933pt;}
.y15{bottom:705.395333pt;}
.yac{bottom:706.035467pt;}
.yd9{bottom:706.718133pt;}
.y106{bottom:706.718267pt;}
.y1be{bottom:707.777467pt;}
.y41{bottom:716.035333pt;}
.y68{bottom:717.977867pt;}
.y151{bottom:721.152933pt;}
.y1bd{bottom:721.777467pt;}
.y11d{bottom:721.835200pt;}
.y188{bottom:721.835600pt;}
.yab{bottom:722.702133pt;}
.yd8{bottom:723.384800pt;}
.y105{bottom:723.384933pt;}
.y14{bottom:725.842000pt;}
.y1bc{bottom:735.777467pt;}
.y150{bottom:737.819600pt;}
.y11c{bottom:738.501867pt;}
.y187{bottom:738.502267pt;}
.yaa{bottom:739.368800pt;}
.yd7{bottom:740.051467pt;}
.y104{bottom:740.051600pt;}
.y1bb{bottom:749.777467pt;}
.y12{bottom:753.807467pt;}
.y13{bottom:753.847467pt;}
.y14f{bottom:754.486267pt;}
.y11b{bottom:755.168533pt;}
.y186{bottom:755.168933pt;}
.ya9{bottom:756.035467pt;}
.yd6{bottom:756.718133pt;}
.y103{bottom:756.718267pt;}
.y1ba{bottom:763.777467pt;}
.y14e{bottom:771.152933pt;}
.y11a{bottom:771.835200pt;}
.y185{bottom:771.835600pt;}
.ya8{bottom:772.702133pt;}
.yd5{bottom:773.384800pt;}
.y102{bottom:773.384933pt;}
.y9e{bottom:773.878800pt;}
.y10{bottom:775.140800pt;}
.y11{bottom:775.180800pt;}
.y1b9{bottom:777.777467pt;}
.y14d{bottom:787.819600pt;}
.y119{bottom:788.501867pt;}
.y184{bottom:788.502267pt;}
.y9d{bottom:789.211800pt;}
.yd4{bottom:790.051467pt;}
.y101{bottom:790.051600pt;}
.y9b{bottom:790.182600pt;}
.y1b8{bottom:791.777467pt;}
.ya7{bottom:795.038133pt;}
.y14c{bottom:804.486267pt;}
.y9c{bottom:804.544800pt;}
.y118{bottom:805.168533pt;}
.y183{bottom:805.168933pt;}
.y9a{bottom:805.515467pt;}
.y1b7{bottom:805.777467pt;}
.yd3{bottom:806.718133pt;}
.y100{bottom:806.718267pt;}
.y1b6{bottom:819.777467pt;}
.y14b{bottom:821.152933pt;}
.y117{bottom:821.835200pt;}
.y182{bottom:821.835600pt;}
.yff{bottom:823.384933pt;}
.y99{bottom:824.433133pt;}
.yf{bottom:826.750267pt;}
.yd2{bottom:829.054133pt;}
.ya6{bottom:832.491600pt;}
.y1b5{bottom:833.777467pt;}
.y14a{bottom:837.819600pt;}
.y116{bottom:838.501867pt;}
.y181{bottom:838.502267pt;}
.yfe{bottom:840.051600pt;}
.y98{bottom:840.736933pt;}
.ye{bottom:843.416933pt;}
.y1b4{bottom:847.777467pt;}
.y149{bottom:854.486267pt;}
.yd1{bottom:855.168267pt;}
.y115{bottom:855.168533pt;}
.y180{bottom:855.168933pt;}
.yfd{bottom:856.718267pt;}
.y97{bottom:859.655267pt;}
.y1b3{bottom:861.777467pt;}
.yd{bottom:863.863600pt;}
.yd0{bottom:871.834933pt;}
.y114{bottom:871.835200pt;}
.y17f{bottom:871.835600pt;}
.ya5{bottom:871.836133pt;}
.yfc{bottom:873.384933pt;}
.y96{bottom:874.988267pt;}
.y1b2{bottom:875.777467pt;}
.y148{bottom:882.491733pt;}
.ycf{bottom:888.501600pt;}
.y113{bottom:888.501867pt;}
.y17e{bottom:888.502267pt;}
.ya4{bottom:888.502800pt;}
.y1b1{bottom:889.777467pt;}
.yfb{bottom:890.051600pt;}
.y95{bottom:890.321267pt;}
.yb{bottom:891.827733pt;}
.yc{bottom:891.867733pt;}
.y1b0{bottom:903.777467pt;}
.yce{bottom:905.168267pt;}
.y112{bottom:905.168533pt;}
.y17d{bottom:905.168933pt;}
.ya3{bottom:905.169467pt;}
.y94{bottom:905.656133pt;}
.yfa{bottom:912.387733pt;}
.y9{bottom:913.161067pt;}
.ya{bottom:913.201067pt;}
.y1af{bottom:917.777467pt;}
.y93{bottom:920.989133pt;}
.ycd{bottom:921.834933pt;}
.y111{bottom:921.835200pt;}
.y17c{bottom:921.835600pt;}
.ya2{bottom:921.836133pt;}
.y1ae{bottom:931.777467pt;}
.y92{bottom:936.322133pt;}
.ycc{bottom:938.501600pt;}
.y110{bottom:938.501867pt;}
.y17b{bottom:938.502267pt;}
.ya1{bottom:938.502800pt;}
.y1ad{bottom:945.777467pt;}
.y91{bottom:951.655133pt;}
.y3e{bottom:953.620000pt;}
.ycb{bottom:955.168267pt;}
.y10f{bottom:955.168533pt;}
.y17a{bottom:955.168933pt;}
.ya0{bottom:955.169467pt;}
.y1ac{bottom:959.777467pt;}
.y90{bottom:966.988133pt;}
.yca{bottom:971.834933pt;}
.y10e{bottom:971.835200pt;}
.y179{bottom:971.835600pt;}
.y9f{bottom:971.836133pt;}
.y1ab{bottom:973.777467pt;}
.y5{bottom:974.651200pt;}
.y7{bottom:978.384533pt;}
.y4{bottom:982.651200pt;}
.y2{bottom:982.870800pt;}
.y3{bottom:990.651200pt;}
.y1{bottom:997.270800pt;}
.y6{bottom:998.453333pt;}
.y40{bottom:1009.631467pt;}
.y3f{bottom:1010.602267pt;}
.h3{height:19.427083pt;}
.h12{height:31.062500pt;}
.h11{height:31.083333pt;}
.hd{height:33.003906pt;}
.hc{height:33.047665pt;}
.ha{height:33.053531pt;}
.he{height:33.226175pt;}
.h4{height:34.945312pt;}
.h2{height:34.968750pt;}
.hb{height:36.936198pt;}
.hf{height:37.109375pt;}
.h10{height:37.110175pt;}
.h7{height:38.177083pt;}
.h9{height:38.750000pt;}
.h8{height:38.828125pt;}
.h13{height:38.854167pt;}
.h1{height:42.739583pt;}
.h6{height:46.593750pt;}
.h14{height:57.750000pt;}
.h5{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.700800pt;}
.x3{left:51.448000pt;}
.x14{left:52.724533pt;}
.xd{left:55.764933pt;}
.xe{left:57.465733pt;}
.x21{left:58.391200pt;}
.x2{left:62.963333pt;}
.x1d{left:75.401867pt;}
.x8{left:78.690800pt;}
.x9{left:80.391600pt;}
.x1e{left:81.535067pt;}
.x16{left:91.149733pt;}
.x1b{left:95.853067pt;}
.x27{left:109.706933pt;}
.x17{left:113.197067pt;}
.x26{left:115.639733pt;}
.x22{left:119.330400pt;}
.x6{left:121.847200pt;}
.x7{left:123.548000pt;}
.x1{left:125.330267pt;}
.x12{left:137.391200pt;}
.xf{left:149.418133pt;}
.x10{left:151.118933pt;}
.x13{left:162.207200pt;}
.xb{left:165.799200pt;}
.x1a{left:199.789733pt;}
.xc{left:207.664533pt;}
.x11{left:263.825867pt;}
.xa{left:270.528533pt;}
.x23{left:285.458933pt;}
.x1f{left:404.221733pt;}
.x20{left:426.898133pt;}
.x25{left:429.340800pt;}
.x19{left:442.015733pt;}
.x28{left:461.202400pt;}
.x18{left:464.693067pt;}
.x15{left:565.825067pt;}
.x4{left:670.645333pt;}
.x24{left:711.817333pt;}
.x1c{left:718.497333pt;}
}




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