
    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_eae319fa0668a414783f775a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_237856d949b9eaff7e732e38.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908691;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_16b9b7de816b3a46e7724da5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_2986bb7fe23802fc237a5c79.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095000;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_c01b626afa8d1e1bcda53016.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.760000;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_9bad13f4beb76d927b330f4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.760000;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_59836240a89988685b581568.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985000;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_9e29551384f1ecb64f3e75b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.138000;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_15c3e09357c72c7395e432df.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095000;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_9e29551384f1ecb64f3e75b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.138000;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_d4ab90675cb004d23b4e9277.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095000;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_2ba5facf4d9bdeb866177a2b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.138000;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_71ca85e04e1f6bac90082193.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986000;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_8fd7023e1fc633ea6f752a20.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095000;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_36fa05695601ab19a44554cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.095000;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_44b9782de1dc838a9099cc91.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.138000;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_8686cbf81b669ab2303a2661.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_16b9b7de816b3a46e7724da5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0012671087428be7a351eb64.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.109375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8db450b166afb787de878839.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.894043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e5a8ed3f96f4a4fad517f5b6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.901855;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);}
.v9{vertical-align:-9.936000px;}
.v8{vertical-align:-7.938000px;}
.v4{vertical-align:-1.449000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.449000px;}
.v1{vertical-align:2.848800px;}
.v3{vertical-align:4.647600px;}
.v7{vertical-align:7.938000px;}
.v6{vertical-align:9.774000px;}
.v2{vertical-align:25.980000px;}
.ls47{letter-spacing:-4.680000px;}
.ls2{letter-spacing:-4.380000px;}
.ls5{letter-spacing:-4.260000px;}
.ls43{letter-spacing:-4.080000px;}
.ls34{letter-spacing:-2.400000px;}
.ls1d{letter-spacing:-2.304000px;}
.ls31{letter-spacing:-1.968000px;}
.ls37{letter-spacing:-1.920000px;}
.ls3{letter-spacing:-1.860000px;}
.ls22{letter-spacing:-1.488000px;}
.ls4{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.200000px;}
.ls4d{letter-spacing:-1.152000px;}
.ls24{letter-spacing:-1.104000px;}
.ls3c{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-1.008000px;}
.ls4f{letter-spacing:-0.960000px;}
.ls35{letter-spacing:-0.912000px;}
.ls30{letter-spacing:-0.672000px;}
.ls53{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.624000px;}
.lsa{letter-spacing:-0.600000px;}
.ls2f{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.432000px;}
.ls49{letter-spacing:-0.419760px;}
.ls32{letter-spacing:-0.384000px;}
.ls2c{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.174900px;}
.ls51{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.104940px;}
.ls3a{letter-spacing:-0.096000px;}
.ls2b{letter-spacing:-0.069960px;}
.ls42{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.048000px;}
.ls4a{letter-spacing:0.096000px;}
.ls55{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.348840px;}
.lsd{letter-spacing:0.349020px;}
.lsb{letter-spacing:0.349080px;}
.lsf{letter-spacing:0.349260px;}
.lsc{letter-spacing:0.349380px;}
.lse{letter-spacing:0.349620px;}
.ls10{letter-spacing:0.349680px;}
.ls1e{letter-spacing:0.349800px;}
.ls25{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.624000px;}
.ls38{letter-spacing:0.672000px;}
.ls7{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.806400px;}
.ls19{letter-spacing:0.816000px;}
.ls15{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.912000px;}
.ls2a{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.056000px;}
.ls0{letter-spacing:1.260000px;}
.ls4e{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.344000px;}
.ls21{letter-spacing:1.392000px;}
.ls41{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.776000px;}
.ls23{letter-spacing:2.016000px;}
.ls4c{letter-spacing:2.064000px;}
.ls50{letter-spacing:3.591600px;}
.ls12{letter-spacing:3.730800px;}
.ls44{letter-spacing:4.440000px;}
.ls8{letter-spacing:5.330400px;}
.ls11{letter-spacing:7.366800px;}
.ls3e{letter-spacing:8.091600px;}
.ls45{letter-spacing:19.675800px;}
.ls52{letter-spacing:22.145400px;}
.ls3f{letter-spacing:22.272600px;}
.ls54{letter-spacing:74.160000px;}
.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:-130.086000px;}
.ws13b{word-spacing:-60.000000px;}
.wse7{word-spacing:-54.000000px;}
.ws150{word-spacing:-31.680000px;}
.ws1c{word-spacing:-16.080000px;}
.ws171{word-spacing:-15.960000px;}
.ws5{word-spacing:-15.840000px;}
.ws9a{word-spacing:-15.780000px;}
.ws98{word-spacing:-15.750000px;}
.ws67{word-spacing:-15.720000px;}
.ws9b{word-spacing:-15.540000px;}
.ws168{word-spacing:-15.420000px;}
.ws11b{word-spacing:-15.360000px;}
.ws17{word-spacing:-15.300000px;}
.ws99{word-spacing:-15.276000px;}
.ws151{word-spacing:-15.240000px;}
.wsa1{word-spacing:-15.000000px;}
.ws121{word-spacing:-14.736000px;}
.ws6c{word-spacing:-14.688000px;}
.wsbf{word-spacing:-14.448000px;}
.ws103{word-spacing:-14.112000px;}
.ws6a{word-spacing:-14.064000px;}
.ws39{word-spacing:-14.016000px;}
.ws124{word-spacing:-13.968000px;}
.ws69{word-spacing:-13.728000px;}
.ws120{word-spacing:-13.584000px;}
.ws123{word-spacing:-13.536000px;}
.wse6{word-spacing:-13.500000px;}
.ws37{word-spacing:-13.488000px;}
.ws32{word-spacing:-13.440000px;}
.ws9f{word-spacing:-13.392000px;}
.ws3b{word-spacing:-13.344000px;}
.wsbe{word-spacing:-13.296000px;}
.ws6e{word-spacing:-13.248000px;}
.ws9d{word-spacing:-13.200000px;}
.ws34{word-spacing:-13.152000px;}
.ws35{word-spacing:-13.104000px;}
.ws102{word-spacing:-13.056000px;}
.wsc2{word-spacing:-13.008000px;}
.ws70{word-spacing:-12.960000px;}
.ws36{word-spacing:-12.912000px;}
.ws3a{word-spacing:-12.864000px;}
.ws38{word-spacing:-12.816000px;}
.ws11f{word-spacing:-12.768000px;}
.ws6f{word-spacing:-12.720000px;}
.ws33{word-spacing:-12.672000px;}
.wsc3{word-spacing:-12.576000px;}
.ws13c{word-spacing:-12.528000px;}
.ws68{word-spacing:-12.384000px;}
.wsbd{word-spacing:-12.288000px;}
.wse5{word-spacing:-12.240000px;}
.wsa0{word-spacing:-12.192000px;}
.ws9e{word-spacing:-12.144000px;}
.wse8{word-spacing:-12.048000px;}
.ws125{word-spacing:-11.904000px;}
.wsc0{word-spacing:-11.760000px;}
.ws71{word-spacing:-11.664000px;}
.ws6{word-spacing:-11.580000px;}
.ws6d{word-spacing:-11.568000px;}
.ws122{word-spacing:-11.520000px;}
.ws11c{word-spacing:-11.400000px;}
.ws6b{word-spacing:-11.184000px;}
.wsc1{word-spacing:-10.944000px;}
.wsa2{word-spacing:-10.704000px;}
.ws66{word-spacing:-9.584520px;}
.ws11d{word-spacing:-9.129780px;}
.ws9c{word-spacing:-9.059820px;}
.ws11e{word-spacing:-8.814960px;}
.ws104{word-spacing:-8.784000px;}
.ws14c{word-spacing:-5.460000px;}
.ws23{word-spacing:-5.100000px;}
.ws160{word-spacing:-4.860000px;}
.ws15f{word-spacing:-4.800000px;}
.ws16e{word-spacing:-4.740000px;}
.ws12e{word-spacing:-4.680000px;}
.ws4{word-spacing:-4.488000px;}
.ws162{word-spacing:-4.320000px;}
.ws161{word-spacing:-4.260000px;}
.ws155{word-spacing:-4.200000px;}
.ws154{word-spacing:-4.140000px;}
.ws132{word-spacing:-3.840000px;}
.ws10b{word-spacing:-3.720000px;}
.ws164{word-spacing:-3.660000px;}
.ws135{word-spacing:-3.648000px;}
.ws9{word-spacing:-3.600000px;}
.ws2b{word-spacing:-3.540000px;}
.wsa6{word-spacing:-3.480000px;}
.ws3{word-spacing:-3.432000px;}
.wsc9{word-spacing:-3.420000px;}
.ws131{word-spacing:-3.408000px;}
.ws110{word-spacing:-3.216000px;}
.wsb7{word-spacing:-3.168000px;}
.wsc8{word-spacing:-3.120000px;}
.wsb2{word-spacing:-3.060000px;}
.ws107{word-spacing:-3.000000px;}
.wsa4{word-spacing:-2.940000px;}
.wsa5{word-spacing:-2.880000px;}
.ws88{word-spacing:-2.832000px;}
.ws2c{word-spacing:-2.820000px;}
.wsea{word-spacing:-2.760000px;}
.ws111{word-spacing:-2.736000px;}
.ws16{word-spacing:-2.700000px;}
.wsf{word-spacing:-2.646000px;}
.ws90{word-spacing:-2.592000px;}
.ws156{word-spacing:-2.580000px;}
.ws11a{word-spacing:-2.544000px;}
.ws118{word-spacing:-2.448000px;}
.wsac{word-spacing:-2.400000px;}
.ws148{word-spacing:-2.352000px;}
.wse9{word-spacing:-2.340000px;}
.ws76{word-spacing:-2.280000px;}
.ws10a{word-spacing:-2.220000px;}
.ws113{word-spacing:-2.208000px;}
.ws112{word-spacing:-2.160000px;}
.ws119{word-spacing:-2.112000px;}
.wsc{word-spacing:-2.100000px;}
.ws14{word-spacing:-2.046000px;}
.wsa{word-spacing:-2.040000px;}
.ws8f{word-spacing:-2.016000px;}
.ws12b{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.920000px;}
.ws108{word-spacing:-1.860000px;}
.wsa7{word-spacing:-1.800000px;}
.wsa9{word-spacing:-1.767000px;}
.wsa8{word-spacing:-1.740000px;}
.ws117{word-spacing:-1.728000px;}
.ws77{word-spacing:-1.680000px;}
.ws82{word-spacing:-1.632000px;}
.ws19{word-spacing:-1.620000px;}
.wsf8{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.566000px;}
.wsb{word-spacing:-1.560000px;}
.wsf7{word-spacing:-1.536000px;}
.ws10{word-spacing:-1.500000px;}
.ws81{word-spacing:-1.440000px;}
.wsdf{word-spacing:-1.392000px;}
.ws109{word-spacing:-1.380000px;}
.ws139{word-spacing:-1.344000px;}
.wsff{word-spacing:-1.296000px;}
.ws13{word-spacing:-1.260000px;}
.wsf6{word-spacing:-1.152000px;}
.ws172{word-spacing:-1.140000px;}
.wsb8{word-spacing:-1.104000px;}
.ws140{word-spacing:-1.080000px;}
.ws1a{word-spacing:-1.020000px;}
.ws97{word-spacing:-1.008000px;}
.ws64{word-spacing:-0.960000px;}
.ws129{word-spacing:-0.900000px;}
.ws57{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.840000px;}
.ws5f{word-spacing:-0.816000px;}
.wsb9{word-spacing:-0.768000px;}
.ws96{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.678000px;}
.wsf9{word-spacing:-0.672000px;}
.ws8{word-spacing:-0.660000px;}
.wsd{word-spacing:-0.612000px;}
.ws7{word-spacing:-0.606000px;}
.ws11{word-spacing:-0.600000px;}
.wsae{word-spacing:-0.540000px;}
.wse1{word-spacing:-0.528000px;}
.ws84{word-spacing:-0.480000px;}
.wsf4{word-spacing:-0.456000px;}
.ws8d{word-spacing:-0.432000px;}
.wsa3{word-spacing:-0.420000px;}
.wse4{word-spacing:-0.384000px;}
.ws30{word-spacing:-0.360000px;}
.ws79{word-spacing:-0.349800px;}
.ws115{word-spacing:-0.336000px;}
.wsca{word-spacing:-0.300000px;}
.wsba{word-spacing:-0.288000px;}
.ws10f{word-spacing:-0.192000px;}
.ws27{word-spacing:-0.180000px;}
.wsc6{word-spacing:-0.120000px;}
.ws89{word-spacing:-0.048000px;}
.wse{word-spacing:-0.006000px;}
.ws1{word-spacing:0.000000px;}
.wsf5{word-spacing:0.048000px;}
.ws75{word-spacing:0.060000px;}
.wsaa{word-spacing:0.069960px;}
.wsfc{word-spacing:0.144000px;}
.ws3f{word-spacing:0.180000px;}
.wsdb{word-spacing:0.240000px;}
.wsbc{word-spacing:0.288000px;}
.wsad{word-spacing:0.300000px;}
.wsd2{word-spacing:0.360000px;}
.ws10e{word-spacing:0.384000px;}
.ws28{word-spacing:0.420000px;}
.wse3{word-spacing:0.432000px;}
.ws14a{word-spacing:0.480000px;}
.wsd6{word-spacing:0.528000px;}
.ws144{word-spacing:0.540000px;}
.wse2{word-spacing:0.576000px;}
.wsd1{word-spacing:0.600000px;}
.ws13f{word-spacing:0.660000px;}
.ws128{word-spacing:0.720000px;}
.ws92{word-spacing:0.816000px;}
.wscf{word-spacing:0.840000px;}
.ws85{word-spacing:0.912000px;}
.ws94{word-spacing:0.960000px;}
.wsd5{word-spacing:1.008000px;}
.ws7e{word-spacing:1.020000px;}
.wsfe{word-spacing:1.056000px;}
.ws26{word-spacing:1.080000px;}
.ws127{word-spacing:1.140000px;}
.ws95{word-spacing:1.152000px;}
.ws80{word-spacing:1.200000px;}
.ws157{word-spacing:1.260000px;}
.wsfd{word-spacing:1.296000px;}
.wsb1{word-spacing:1.320000px;}
.ws65{word-spacing:1.344000px;}
.ws106{word-spacing:1.368000px;}
.ws4e{word-spacing:1.380000px;}
.ws134{word-spacing:1.392000px;}
.ws29{word-spacing:1.440000px;}
.ws130{word-spacing:1.488000px;}
.ws12c{word-spacing:1.500000px;}
.ws5e{word-spacing:1.536000px;}
.ws7c{word-spacing:1.620000px;}
.ws7b{word-spacing:1.680000px;}
.ws8a{word-spacing:1.776000px;}
.ws1f{word-spacing:1.860000px;}
.ws133{word-spacing:1.872000px;}
.wsde{word-spacing:1.920000px;}
.ws8b{word-spacing:1.968000px;}
.ws40{word-spacing:2.040000px;}
.ws5a{word-spacing:2.064000px;}
.ws41{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.wsf2{word-spacing:2.220000px;}
.ws7f{word-spacing:2.340000px;}
.wsd7{word-spacing:2.400000px;}
.ws4d{word-spacing:2.460000px;}
.ws5b{word-spacing:2.496000px;}
.ws13d{word-spacing:2.520000px;}
.ws5c{word-spacing:2.544000px;}
.ws3c{word-spacing:2.580000px;}
.wsed{word-spacing:2.640000px;}
.ws86{word-spacing:2.688000px;}
.ws10c{word-spacing:2.700000px;}
.ws100{word-spacing:2.736000px;}
.ws16a{word-spacing:2.760000px;}
.wsc7{word-spacing:2.820000px;}
.ws63{word-spacing:2.928000px;}
.wsee{word-spacing:3.000000px;}
.wsdd{word-spacing:3.024000px;}
.ws7d{word-spacing:3.060000px;}
.ws149{word-spacing:3.120000px;}
.ws8c{word-spacing:3.168000px;}
.ws163{word-spacing:3.180000px;}
.ws13e{word-spacing:3.240000px;}
.ws158{word-spacing:3.360000px;}
.ws49{word-spacing:3.420000px;}
.ws62{word-spacing:3.456000px;}
.ws4a{word-spacing:3.480000px;}
.wsf0{word-spacing:3.540000px;}
.wsd3{word-spacing:3.600000px;}
.ws3d{word-spacing:3.660000px;}
.ws58{word-spacing:3.696000px;}
.ws42{word-spacing:3.720000px;}
.ws14f{word-spacing:3.780000px;}
.ws16c{word-spacing:3.840000px;}
.ws72{word-spacing:3.900000px;}
.ws12a{word-spacing:3.960000px;}
.ws1d{word-spacing:4.020000px;}
.ws91{word-spacing:4.032000px;}
.ws1e{word-spacing:4.080000px;}
.wsb5{word-spacing:4.128000px;}
.ws48{word-spacing:4.140000px;}
.ws152{word-spacing:4.200000px;}
.ws2f{word-spacing:4.260000px;}
.ws44{word-spacing:4.320000px;}
.ws2{word-spacing:4.380000px;}
.wsb4{word-spacing:4.416000px;}
.ws43{word-spacing:4.440000px;}
.ws169{word-spacing:4.500000px;}
.wsce{word-spacing:4.560000px;}
.wsf3{word-spacing:4.617000px;}
.wsb3{word-spacing:4.680000px;}
.ws4f{word-spacing:4.920000px;}
.ws22{word-spacing:4.980000px;}
.ws2a{word-spacing:5.040000px;}
.ws176{word-spacing:5.100000px;}
.wsb6{word-spacing:5.136000px;}
.ws74{word-spacing:5.220000px;}
.ws21{word-spacing:5.280000px;}
.ws101{word-spacing:5.376000px;}
.ws165{word-spacing:5.400000px;}
.ws25{word-spacing:5.460000px;}
.ws105{word-spacing:5.472000px;}
.ws24{word-spacing:5.520000px;}
.wsdc{word-spacing:5.568000px;}
.wsef{word-spacing:5.580000px;}
.wsf1{word-spacing:5.700000px;}
.ws143{word-spacing:5.760000px;}
.ws87{word-spacing:5.808000px;}
.ws14b{word-spacing:5.820000px;}
.wscb{word-spacing:5.880000px;}
.wsda{word-spacing:5.904000px;}
.ws7a{word-spacing:5.940000px;}
.ws83{word-spacing:6.048000px;}
.ws142{word-spacing:6.060000px;}
.wsd9{word-spacing:6.096000px;}
.ws167{word-spacing:6.120000px;}
.ws10d{word-spacing:6.180000px;}
.ws3e{word-spacing:6.360000px;}
.ws141{word-spacing:6.480000px;}
.ws145{word-spacing:6.720000px;}
.ws126{word-spacing:6.780000px;}
.ws15c{word-spacing:6.840000px;}
.ws2e{word-spacing:6.900000px;}
.ws61{word-spacing:6.912000px;}
.ws146{word-spacing:6.960000px;}
.wseb{word-spacing:7.020000px;}
.wsec{word-spacing:7.140000px;}
.ws56{word-spacing:7.152000px;}
.ws55{word-spacing:7.248000px;}
.ws4b{word-spacing:7.260000px;}
.ws54{word-spacing:7.392000px;}
.ws136{word-spacing:7.440000px;}
.ws78{word-spacing:7.500000px;}
.ws12f{word-spacing:7.560000px;}
.ws153{word-spacing:7.620000px;}
.ws52{word-spacing:7.680000px;}
.ws166{word-spacing:7.740000px;}
.wsd8{word-spacing:7.776000px;}
.ws15d{word-spacing:7.920000px;}
.ws46{word-spacing:7.980000px;}
.ws15e{word-spacing:8.040000px;}
.ws178{word-spacing:8.100000px;}
.wsb0{word-spacing:8.220000px;}
.ws179{word-spacing:8.280000px;}
.ws4c{word-spacing:8.340000px;}
.wsd4{word-spacing:8.640000px;}
.ws47{word-spacing:8.700000px;}
.wsbb{word-spacing:8.736000px;}
.wscc{word-spacing:9.000000px;}
.wsc5{word-spacing:9.060000px;}
.wscd{word-spacing:9.180000px;}
.wsab{word-spacing:9.240000px;}
.ws50{word-spacing:9.300000px;}
.ws51{word-spacing:9.420000px;}
.wsc4{word-spacing:9.720000px;}
.wse0{word-spacing:9.888000px;}
.wsd0{word-spacing:10.080000px;}
.wsaf{word-spacing:10.260000px;}
.ws15b{word-spacing:10.440000px;}
.ws31{word-spacing:10.848000px;}
.ws175{word-spacing:10.980000px;}
.ws14d{word-spacing:11.220000px;}
.ws159{word-spacing:11.640000px;}
.wsfa{word-spacing:11.760000px;}
.wsfb{word-spacing:11.856000px;}
.ws174{word-spacing:12.240000px;}
.ws5d{word-spacing:12.336000px;}
.ws15a{word-spacing:12.420000px;}
.ws16d{word-spacing:12.480000px;}
.ws20{word-spacing:12.600000px;}
.ws45{word-spacing:15.300000px;}
.ws16b{word-spacing:15.540000px;}
.ws12d{word-spacing:16.320000px;}
.ws14e{word-spacing:16.980000px;}
.ws173{word-spacing:19.200000px;}
.ws138{word-spacing:19.488000px;}
.ws16f{word-spacing:19.800000px;}
.ws116{word-spacing:21.408000px;}
.ws170{word-spacing:22.140000px;}
.ws137{word-spacing:22.464000px;}
.ws114{word-spacing:23.376000px;}
.ws13a{word-spacing:25.296000px;}
.ws8e{word-spacing:26.544000px;}
.ws147{word-spacing:28.800000px;}
.ws177{word-spacing:29.280000px;}
.ws93{word-spacing:31.248000px;}
.ws60{word-spacing:50.400000px;}
.ws59{word-spacing:50.976000px;}
.ws53{word-spacing:51.216000px;}
.ws1b{word-spacing:2194.500000px;}
._1b{margin-left:-49.243200px;}
._19{margin-left:-43.242000px;}
._18{margin-left:-30.926400px;}
._26{margin-left:-29.150400px;}
._30{margin-left:-26.520600px;}
._0{margin-left:-23.871000px;}
._14{margin-left:-20.541000px;}
._c{margin-left:-16.788000px;}
._8{margin-left:-11.376000px;}
._5{margin-left:-10.032000px;}
._2{margin-left:-7.708800px;}
._31{margin-left:-6.237000px;}
._7{margin-left:-5.022000px;}
._3{margin-left:-3.360000px;}
._4{margin-left:-1.716000px;}
._6{width:1.872000px;}
._1c{width:3.151200px;}
._1{width:4.161000px;}
._20{width:5.535000px;}
._1a{width:7.677600px;}
._2f{width:9.857400px;}
._29{width:11.404800px;}
._2a{width:14.384400px;}
._2b{width:17.000400px;}
._2c{width:18.369600px;}
._28{width:20.370600px;}
._32{width:21.552000px;}
._27{width:22.645800px;}
._2d{width:23.874600px;}
._25{width:25.455600px;}
._21{width:27.551400px;}
._23{width:28.955400px;}
._24{width:29.961000px;}
._2e{width:31.569600px;}
._22{width:34.522800px;}
._1d{width:36.624000px;}
._15{width:44.208000px;}
._1e{width:48.864000px;}
._1f{width:50.304000px;}
._16{width:56.112000px;}
._33{width:74.160000px;}
._e{width:90.516000px;}
._11{width:239.532000px;}
._f{width:391.794000px;}
._d{width:411.876000px;}
._10{width:522.816000px;}
._17{width:527.461200px;}
._a{width:530.317800px;}
._9{width:683.183400px;}
._b{width:688.602000px;}
._12{width:799.625400px;}
._13{width:998.909400px;}
.fc6{color:rgb(112,109,110);}
.fc5{color:rgb(90,87,88);}
.fc3{color:transparent;}
.fc1{color:rgb(21,49,105);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(198,19,80);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:34.980000px;}
.fs1{font-size:37.405200px;}
.fsa{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:84.162000px;}
.fs8{font-size:108.000000px;}
.fsf{font-size:120.000000px;}
.fs4{font-size:132.000000px;}
.fs9{font-size:144.000000px;}
.fs5{font-size:168.000000px;}
.fs6{font-size:186.000000px;}
.fs2{font-size:438.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:79.201650px;}
.y73{bottom:79.913850px;}
.y94{bottom:80.363550px;}
.ya{bottom:92.629500px;}
.y52{bottom:95.701650px;}
.y3{bottom:126.059100px;}
.y2{bottom:127.412250px;}
.y27{bottom:151.000500px;}
.y50{bottom:151.500000px;}
.y92{bottom:152.007750px;}
.ye8{bottom:168.000000px;}
.ybc{bottom:171.000000px;}
.y91{bottom:172.759800px;}
.y18b{bottom:173.101650px;}
.y1b7{bottom:173.348400px;}
.y1{bottom:174.858750px;}
.y26{bottom:175.000500px;}
.y4f{bottom:176.477850px;}
.ye7{bottom:184.500000px;}
.ybb{bottom:187.500000px;}
.y90{bottom:189.259800px;}
.y9{bottom:194.683500px;}
.y18a{bottom:194.703300px;}
.y1b6{bottom:195.196650px;}
.y25{bottom:199.000500px;}
.ye6{bottom:204.000000px;}
.yba{bottom:207.000000px;}
.y4e{bottom:209.959650px;}
.y189{bottom:216.305100px;}
.y1b5{bottom:217.045050px;}
.ye5{bottom:220.500000px;}
.y24{bottom:223.000500px;}
.yb9{bottom:223.500000px;}
.y4d{bottom:234.937650px;}
.ye4{bottom:237.000000px;}
.y188{bottom:237.906600px;}
.y1b4{bottom:238.893300px;}
.yb8{bottom:240.000000px;}
.y100{bottom:243.000000px;}
.y23{bottom:247.000500px;}
.ye3{bottom:253.500000px;}
.yb7{bottom:256.500000px;}
.y144{bottom:259.500000px;}
.y187{bottom:259.508400px;}
.y1b3{bottom:260.741700px;}
.yff{bottom:262.500000px;}
.y4c{bottom:268.419300px;}
.y110{bottom:270.000000px;}
.ye2{bottom:273.000000px;}
.yb6{bottom:276.000000px;}
.y1dd{bottom:276.153750px;}
.yfe{bottom:279.000000px;}
.y186{bottom:281.110050px;}
.y1b2{bottom:282.589950px;}
.y10f{bottom:286.500000px;}
.ye1{bottom:289.500000px;}
.y4b{bottom:293.397150px;}
.yb5{bottom:295.500000px;}
.y22{bottom:297.016500px;}
.y1dc{bottom:297.513750px;}
.y132{bottom:298.500000px;}
.y185{bottom:302.711700px;}
.y1b1{bottom:304.438350px;}
.ye0{bottom:306.000000px;}
.yb4{bottom:312.000000px;}
.y131{bottom:318.000000px;}
.y4a{bottom:318.375150px;}
.y1db{bottom:318.873750px;}
.y1a{bottom:319.128600px;}
.y21{bottom:320.008500px;}
.ydf{bottom:322.500000px;}
.y184{bottom:324.313350px;}
.y10e{bottom:325.500000px;}
.y1b0{bottom:326.286600px;}
.yfd{bottom:328.500000px;}
.y69{bottom:331.062300px;}
.yb3{bottom:331.500000px;}
.y8f{bottom:333.903900px;}
.y143{bottom:334.500000px;}
.y130{bottom:337.500000px;}
.y8{bottom:339.223500px;}
.y1da{bottom:340.233750px;}
.yde{bottom:342.000000px;}
.y49{bottom:343.353000px;}
.y20{bottom:344.008500px;}
.yfc{bottom:345.000000px;}
.y183{bottom:345.915000px;}
.yb2{bottom:348.000000px;}
.y1af{bottom:348.135000px;}
.y142{bottom:351.000000px;}
.y12f{bottom:354.000000px;}
.y8e{bottom:355.203900px;}
.y68{bottom:356.614200px;}
.ydd{bottom:358.500000px;}
.yfb{bottom:361.500000px;}
.y1d9{bottom:361.593750px;}
.y19{bottom:364.140600px;}
.yb1{bottom:364.500000px;}
.y141{bottom:367.500000px;}
.y182{bottom:367.516650px;}
.y1f{bottom:368.008500px;}
.y48{bottom:368.330850px;}
.y1ae{bottom:369.983250px;}
.y12e{bottom:370.500000px;}
.y113{bottom:375.000000px;}
.y8d{bottom:376.503900px;}
.ydc{bottom:378.000000px;}
.y1d8{bottom:382.953750px;}
.yb0{bottom:384.000000px;}
.y140{bottom:387.000000px;}
.y181{bottom:389.118300px;}
.y1ad{bottom:391.831650px;}
.y1e{bottom:392.008500px;}
.y47{bottom:393.308700px;}
.y158{bottom:393.507150px;}
.ydb{bottom:394.500000px;}
.y8c{bottom:397.803900px;}
.y67{bottom:399.214200px;}
.yaf{bottom:400.500000px;}
.y1d7{bottom:404.313750px;}
.y13f{bottom:406.500000px;}
.y180{bottom:410.720100px;}
.yda{bottom:411.000000px;}
.y1ac{bottom:413.680050px;}
.y157{bottom:414.807150px;}
.y1d{bottom:416.008500px;}
.y46{bottom:418.286550px;}
.y8b{bottom:419.103900px;}
.yae{bottom:420.000000px;}
.y13e{bottom:423.000000px;}
.y66{bottom:424.766250px;}
.y1d6{bottom:425.673750px;}
.yd9{bottom:427.500000px;}
.y18{bottom:430.404600px;}
.y17f{bottom:432.321600px;}
.y1ab{bottom:435.528300px;}
.y156{bottom:436.107150px;}
.yad{bottom:436.500000px;}
.y1c{bottom:440.008500px;}
.y8a{bottom:440.403900px;}
.y7{bottom:441.277500px;}
.y13d{bottom:442.500000px;}
.y45{bottom:443.264400px;}
.yd8{bottom:444.000000px;}
.y1d5{bottom:451.285650px;}
.yac{bottom:453.000000px;}
.y17e{bottom:453.923400px;}
.y1aa{bottom:457.376700px;}
.y155{bottom:457.407150px;}
.y13c{bottom:459.000000px;}
.yd7{bottom:460.500000px;}
.y1b{bottom:464.008500px;}
.y89{bottom:465.955950px;}
.y65{bottom:467.366250px;}
.y44{bottom:468.242400px;}
.y17{bottom:475.404600px;}
.y13b{bottom:475.500000px;}
.y17d{bottom:475.525050px;}
.yd6{bottom:477.000000px;}
.y154{bottom:478.707150px;}
.y1a9{bottom:479.224950px;}
.y64{bottom:492.918150px;}
.y43{bottom:493.220250px;}
.yd5{bottom:493.500000px;}
.y13a{bottom:495.000000px;}
.y17c{bottom:497.126700px;}
.y153{bottom:500.007150px;}
.y1a8{bottom:501.073350px;}
.y10d{bottom:512.722800px;}
.yd4{bottom:513.000000px;}
.y1d4{bottom:515.305650px;}
.y112{bottom:518.122950px;}
.y42{bottom:518.198100px;}
.y17b{bottom:518.728350px;}
.y152{bottom:521.307150px;}
.y1a7{bottom:522.921600px;}
.y88{bottom:529.855800px;}
.yd3{bottom:532.500000px;}
.y16{bottom:533.160450px;}
.y10c{bottom:534.022950px;}
.y63{bottom:535.518150px;}
.y1d3{bottom:536.665650px;}
.yfa{bottom:537.622950px;}
.y17a{bottom:540.330000px;}
.y151{bottom:542.607150px;}
.y41{bottom:543.175950px;}
.y6{bottom:543.331500px;}
.y1a6{bottom:544.770000px;}
.y87{bottom:550.855800px;}
.yd2{bottom:552.000000px;}
.y10b{bottom:555.322800px;}
.y111{bottom:557.122950px;}
.y1d2{bottom:558.025650px;}
.yf9{bottom:558.922800px;}
.y62{bottom:561.070200px;}
.y179{bottom:561.931650px;}
.y150{bottom:563.907150px;}
.y1a5{bottom:566.618250px;}
.y12d{bottom:567.332850px;}
.y40{bottom:568.153800px;}
.yd1{bottom:568.500000px;}
.y86{bottom:571.855800px;}
.y10a{bottom:576.622950px;}
.y1d1{bottom:579.385650px;}
.yf8{bottom:580.222800px;}
.y178{bottom:583.533300px;}
.yd0{bottom:585.000000px;}
.y14f{bottom:585.207150px;}
.y1a4{bottom:588.466650px;}
.y12c{bottom:588.632850px;}
.y61{bottom:590.874000px;}
.y3f{bottom:593.131650px;}
.y109{bottom:597.922800px;}
.yab{bottom:597.993750px;}
.y1d0{bottom:600.745650px;}
.ycf{bottom:601.500000px;}
.yf7{bottom:601.522950px;}
.y177{bottom:605.134950px;}
.y12b{bottom:609.932850px;}
.y1a3{bottom:610.314900px;}
.y14e{bottom:610.759050px;}
.y60{bottom:616.426050px;}
.y3e{bottom:618.109500px;}
.y108{bottom:619.222800px;}
.yaa{bottom:619.293750px;}
.y1cf{bottom:622.105650px;}
.y85{bottom:622.359900px;}
.yf6{bottom:622.822800px;}
.y176{bottom:626.736750px;}
.y12a{bottom:631.232850px;}
.y1a2{bottom:632.163300px;}
.y15{bottom:635.664000px;}
.y107{bottom:640.522950px;}
.ya9{bottom:640.593750px;}
.y3d{bottom:643.087350px;}
.y84{bottom:643.359900px;}
.y1ce{bottom:643.465650px;}
.yf5{bottom:644.122950px;}
.y139{bottom:644.774850px;}
.y5{bottom:645.385500px;}
.y175{bottom:648.338400px;}
.y129{bottom:652.532850px;}
.y14d{bottom:653.359050px;}
.y1a1{bottom:654.011550px;}
.y106{bottom:661.822800px;}
.ya8{bottom:661.893750px;}
.y83{bottom:664.359900px;}
.y1cd{bottom:664.825650px;}
.yf4{bottom:665.422800px;}
.y138{bottom:666.074850px;}
.y3c{bottom:668.065350px;}
.y174{bottom:669.940050px;}
.y128{bottom:673.832850px;}
.y14c{bottom:674.659050px;}
.y1a0{bottom:675.859950px;}
.y5f{bottom:680.285850px;}
.y14{bottom:680.676000px;}
.y105{bottom:683.122950px;}
.y82{bottom:685.359900px;}
.y1cc{bottom:686.185650px;}
.yf3{bottom:686.722800px;}
.y137{bottom:687.374850px;}
.ya7{bottom:687.445650px;}
.y173{bottom:691.541700px;}
.y3b{bottom:693.043200px;}
.y127{bottom:695.132850px;}
.y14b{bottom:695.959050px;}
.y19f{bottom:697.708200px;}
.y104{bottom:704.422800px;}
.y5e{bottom:705.837900px;}
.y81{bottom:706.359900px;}
.y1cb{bottom:707.545650px;}
.yf2{bottom:708.022950px;}
.y136{bottom:708.674850px;}
.y172{bottom:713.143350px;}
.y126{bottom:716.432850px;}
.y14a{bottom:717.259050px;}
.y3a{bottom:718.021050px;}
.y19e{bottom:719.556600px;}
.y103{bottom:725.722800px;}
.y5d{bottom:727.137750px;}
.y80{bottom:727.359900px;}
.y1ca{bottom:728.905650px;}
.yf1{bottom:729.322800px;}
.y135{bottom:729.974850px;}
.ya6{bottom:730.045650px;}
.y171{bottom:734.745000px;}
.y125{bottom:737.732850px;}
.y149{bottom:738.559050px;}
.y19d{bottom:741.404850px;}
.y39{bottom:742.998900px;}
.y13{bottom:746.940000px;}
.yce{bottom:747.022950px;}
.y4{bottom:747.439500px;}
.y7f{bottom:748.359900px;}
.y1c9{bottom:750.265650px;}
.yf0{bottom:750.622950px;}
.y134{bottom:751.274850px;}
.ya5{bottom:751.345650px;}
.y170{bottom:756.346650px;}
.y124{bottom:759.032850px;}
.y148{bottom:759.859050px;}
.y19c{bottom:763.253250px;}
.y38{bottom:767.976750px;}
.ycd{bottom:768.322800px;}
.y7e{bottom:769.359900px;}
.y5c{bottom:769.737900px;}
.y1c8{bottom:771.625650px;}
.yef{bottom:771.922800px;}
.y133{bottom:772.574850px;}
.ya4{bottom:772.645800px;}
.y16f{bottom:777.948300px;}
.y123{bottom:780.332850px;}
.y19b{bottom:785.101650px;}
.y102{bottom:789.622800px;}
.y147{bottom:789.663000px;}
.y7d{bottom:790.359900px;}
.y37{bottom:792.954600px;}
.y1c7{bottom:792.985650px;}
.yee{bottom:793.222800px;}
.ycc{bottom:793.874850px;}
.ya3{bottom:793.945650px;}
.y5b{bottom:795.289800px;}
.y16e{bottom:799.549950px;}
.y122{bottom:801.632850px;}
.y12{bottom:804.711000px;}
.y19a{bottom:806.949900px;}
.y7c{bottom:811.359900px;}
.y1c6{bottom:814.345650px;}
.y101{bottom:815.174850px;}
.ya2{bottom:815.245650px;}
.y5a{bottom:816.589800px;}
.y36{bottom:817.932450px;}
.y146{bottom:819.466950px;}
.y16d{bottom:821.151600px;}
.y121{bottom:822.932850px;}
.y199{bottom:828.798300px;}
.y15f{bottom:832.222800px;}
.y7b{bottom:832.359900px;}
.y1c5{bottom:835.705650px;}
.yed{bottom:835.822800px;}
.ycb{bottom:836.474850px;}
.ya1{bottom:836.545650px;}
.y16c{bottom:842.753400px;}
.y120{bottom:844.232850px;}
.y145{bottom:849.270900px;}
.y198{bottom:850.646550px;}
.y35{bottom:851.414400px;}
.y7a{bottom:853.359900px;}
.y15e{bottom:853.522950px;}
.yec{bottom:855.322800px;}
.y1c4{bottom:857.065650px;}
.yca{bottom:857.774850px;}
.ya0{bottom:857.845650px;}
.y59{bottom:859.189800px;}
.y16b{bottom:864.355050px;}
.y11{bottom:864.696000px;}
.y11f{bottom:865.532850px;}
.y197{bottom:872.494950px;}
.y79{bottom:874.359900px;}
.y15d{bottom:874.822800px;}
.y34{bottom:876.392250px;}
.y1c3{bottom:878.425650px;}
.yc9{bottom:879.074850px;}
.y9f{bottom:879.145800px;}
.y58{bottom:884.741850px;}
.y16a{bottom:885.956700px;}
.y11e{bottom:886.832850px;}
.y72{bottom:887.770050px;}
.y196{bottom:894.343200px;}
.y78{bottom:895.359900px;}
.yeb{bottom:896.122800px;}
.y1c2{bottom:899.785650px;}
.yc8{bottom:900.374850px;}
.y9e{bottom:900.445650px;}
.y33{bottom:901.370100px;}
.y169{bottom:907.558350px;}
.y11d{bottom:908.132850px;}
.y71{bottom:913.321950px;}
.y195{bottom:916.191600px;}
.y15c{bottom:917.422800px;}
.y57{bottom:918.797700px;}
.y1c1{bottom:921.145800px;}
.yc7{bottom:921.674850px;}
.y9d{bottom:921.745650px;}
.y32{bottom:926.347950px;}
.y168{bottom:929.160000px;}
.y11c{bottom:929.432850px;}
.y70{bottom:934.622100px;}
.y77{bottom:936.817200px;}
.y194{bottom:938.039850px;}
.yea{bottom:938.722800px;}
.y56{bottom:940.097700px;}
.y1c0{bottom:942.505800px;}
.yc6{bottom:942.974850px;}
.y9c{bottom:943.045650px;}
.y11b{bottom:950.732850px;}
.y167{bottom:950.761650px;}
.y31{bottom:951.325800px;}
.y193{bottom:959.888250px;}
.ye9{bottom:960.022950px;}
.y1bf{bottom:963.865650px;}
.yc5{bottom:964.274850px;}
.y9b{bottom:964.345800px;}
.y6f{bottom:968.677950px;}
.y11a{bottom:972.032850px;}
.y166{bottom:972.363300px;}
.y30{bottom:976.303650px;}
.y15b{bottom:981.322950px;}
.y192{bottom:981.736500px;}
.y76{bottom:984.051150px;}
.y1be{bottom:985.225650px;}
.yc4{bottom:985.574850px;}
.y9a{bottom:985.645650px;}
.y119{bottom:993.332850px;}
.y165{bottom:993.964950px;}
.y2f{bottom:1001.281650px;}
.y15a{bottom:1002.622800px;}
.y191{bottom:1003.584900px;}
.y55{bottom:1003.957500px;}
.yb{bottom:1005.474750px;}
.y1bd{bottom:1006.585650px;}
.yc3{bottom:1006.874850px;}
.y99{bottom:1006.945650px;}
.y10{bottom:1014.448950px;}
.y118{bottom:1014.632850px;}
.y164{bottom:1015.566600px;}
.y159{bottom:1023.922800px;}
.y190{bottom:1025.433150px;}
.y2e{bottom:1026.259500px;}
.y1bc{bottom:1027.945650px;}
.yc2{bottom:1028.174850px;}
.y98{bottom:1028.245650px;}
.y75{bottom:1029.051150px;}
.y54{bottom:1029.509550px;}
.y6e{bottom:1032.537750px;}
.y163{bottom:1037.168400px;}
.y18f{bottom:1047.281550px;}
.y1bb{bottom:1049.305650px;}
.yc1{bottom:1049.474850px;}
.y97{bottom:1049.545650px;}
.y2d{bottom:1051.237200px;}
.yd{bottom:1056.771000px;}
.y117{bottom:1057.232850px;}
.y6d{bottom:1058.089800px;}
.y162{bottom:1058.770050px;}
.y18e{bottom:1069.129800px;}
.yf{bottom:1069.657950px;}
.y1ba{bottom:1070.665650px;}
.yc0{bottom:1070.774850px;}
.y96{bottom:1070.845800px;}
.y74{bottom:1074.051150px;}
.y116{bottom:1076.732850px;}
.y161{bottom:1080.371700px;}
.y2c{bottom:1084.719150px;}
.y29{bottom:1089.756000px;}
.y18d{bottom:1090.978200px;}
.y1b9{bottom:1092.025800px;}
.ybf{bottom:1092.074850px;}
.y6c{bottom:1092.145650px;}
.yc{bottom:1101.783000px;}
.y2b{bottom:1109.697000px;}
.y18c{bottom:1112.826450px;}
.ybe{bottom:1113.374850px;}
.y1b8{bottom:1113.385650px;}
.y6b{bottom:1113.445650px;}
.ye{bottom:1114.657950px;}
.y115{bottom:1115.732850px;}
.y51{bottom:1119.051150px;}
.y160{bottom:1123.515000px;}
.y28{bottom:1125.747000px;}
.y2a{bottom:1134.674850px;}
.y6a{bottom:1134.745650px;}
.y114{bottom:1135.232850px;}
.y95{bottom:1179.993300px;}
.ybd{bottom:1179.994800px;}
.y93{bottom:1180.560300px;}
.h3{height:26.782123px;}
.h10{height:41.712000px;}
.h18{height:43.728000px;}
.h11{height:44.560800px;}
.hd{height:45.540000px;}
.h14{height:45.600000px;}
.h19{height:46.320000px;}
.h16{height:46.359600px;}
.h1f{height:48.462891px;}
.h1e{height:49.533000px;}
.h1b{height:51.927000px;}
.hb{height:52.140000px;}
.h1d{height:53.847656px;}
.he{height:54.660000px;}
.h1c{height:56.377020px;}
.h15{height:56.377620px;}
.h17{height:56.378220px;}
.h1a{height:56.540039px;}
.h20{height:58.236891px;}
.h21{height:58.398891px;}
.h2{height:60.259992px;}
.h6{height:63.840000px;}
.h13{height:72.996000px;}
.hc{height:93.852000px;}
.h7{height:100.320000px;}
.h22{height:104.280000px;}
.h9{height:114.708000px;}
.hf{height:125.136000px;}
.h12{height:131.184000px;}
.h8{height:145.992000px;}
.ha{height:161.634000px;}
.h5{height:320.586914px;}
.h4{height:854.375400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:873.154200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:19.759800px;}
.x7{left:89.193300px;}
.x5{left:93.354300px;}
.x19{left:132.409500px;}
.x1a{left:135.330150px;}
.x18{left:136.771500px;}
.xd{left:141.257550px;}
.xf{left:153.619200px;}
.x8{left:156.316800px;}
.x1d{left:157.759800px;}
.x1b{left:159.271650px;}
.x23{left:162.754800px;}
.x17{left:167.906400px;}
.x21{left:184.472700px;}
.x9{left:188.290800px;}
.x15{left:194.802900px;}
.x20{left:202.713750px;}
.x11{left:234.142050px;}
.x12{left:235.375500px;}
.xa{left:240.303300px;}
.x10{left:257.159550px;}
.x4{left:266.802300px;}
.xe{left:290.660100px;}
.xc{left:320.150550px;}
.x14{left:337.873500px;}
.x16{left:342.377400px;}
.x13{left:349.291500px;}
.x6{left:364.147800px;}
.xb{left:382.931700px;}
.x24{left:439.802550px;}
.x22{left:509.170200px;}
.x1f{left:521.503050px;}
.x2{left:656.971050px;}
.x1c{left:661.041600px;}
.x1{left:662.392800px;}
.x1e{left:738.245850px;}
@media print{
.v9{vertical-align:-8.832000pt;}
.v8{vertical-align:-7.056000pt;}
.v4{vertical-align:-1.288000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.288000pt;}
.v1{vertical-align:2.532267pt;}
.v3{vertical-align:4.131200pt;}
.v7{vertical-align:7.056000pt;}
.v6{vertical-align:8.688000pt;}
.v2{vertical-align:23.093333pt;}
.ls47{letter-spacing:-4.160000pt;}
.ls2{letter-spacing:-3.893333pt;}
.ls5{letter-spacing:-3.786667pt;}
.ls43{letter-spacing:-3.626667pt;}
.ls34{letter-spacing:-2.133333pt;}
.ls1d{letter-spacing:-2.048000pt;}
.ls31{letter-spacing:-1.749333pt;}
.ls37{letter-spacing:-1.706667pt;}
.ls3{letter-spacing:-1.653333pt;}
.ls22{letter-spacing:-1.322667pt;}
.ls4{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls4d{letter-spacing:-1.024000pt;}
.ls24{letter-spacing:-0.981333pt;}
.ls3c{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls4f{letter-spacing:-0.853333pt;}
.ls35{letter-spacing:-0.810667pt;}
.ls30{letter-spacing:-0.597333pt;}
.ls53{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.554667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls2f{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.384000pt;}
.ls49{letter-spacing:-0.373120pt;}
.ls32{letter-spacing:-0.341333pt;}
.ls2c{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.155467pt;}
.ls51{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.093280pt;}
.ls3a{letter-spacing:-0.085333pt;}
.ls2b{letter-spacing:-0.062187pt;}
.ls42{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.042667pt;}
.ls4a{letter-spacing:0.085333pt;}
.ls55{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.310080pt;}
.lsd{letter-spacing:0.310240pt;}
.lsb{letter-spacing:0.310293pt;}
.lsf{letter-spacing:0.310453pt;}
.lsc{letter-spacing:0.310560pt;}
.lse{letter-spacing:0.310773pt;}
.ls10{letter-spacing:0.310827pt;}
.ls1e{letter-spacing:0.310933pt;}
.ls25{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.554667pt;}
.ls38{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.716800pt;}
.ls19{letter-spacing:0.725333pt;}
.ls15{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.810667pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.938667pt;}
.ls0{letter-spacing:1.120000pt;}
.ls4e{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.194667pt;}
.ls21{letter-spacing:1.237333pt;}
.ls41{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.578667pt;}
.ls23{letter-spacing:1.792000pt;}
.ls4c{letter-spacing:1.834667pt;}
.ls50{letter-spacing:3.192533pt;}
.ls12{letter-spacing:3.316267pt;}
.ls44{letter-spacing:3.946667pt;}
.ls8{letter-spacing:4.738133pt;}
.ls11{letter-spacing:6.548267pt;}
.ls3e{letter-spacing:7.192533pt;}
.ls45{letter-spacing:17.489600pt;}
.ls52{letter-spacing:19.684800pt;}
.ls3f{letter-spacing:19.797867pt;}
.ls54{letter-spacing:65.920000pt;}
.ws0{word-spacing:-115.632000pt;}
.ws13b{word-spacing:-53.333333pt;}
.wse7{word-spacing:-48.000000pt;}
.ws150{word-spacing:-28.160000pt;}
.ws1c{word-spacing:-14.293333pt;}
.ws171{word-spacing:-14.186667pt;}
.ws5{word-spacing:-14.080000pt;}
.ws9a{word-spacing:-14.026667pt;}
.ws98{word-spacing:-14.000000pt;}
.ws67{word-spacing:-13.973333pt;}
.ws9b{word-spacing:-13.813333pt;}
.ws168{word-spacing:-13.706667pt;}
.ws11b{word-spacing:-13.653333pt;}
.ws17{word-spacing:-13.600000pt;}
.ws99{word-spacing:-13.578667pt;}
.ws151{word-spacing:-13.546667pt;}
.wsa1{word-spacing:-13.333333pt;}
.ws121{word-spacing:-13.098667pt;}
.ws6c{word-spacing:-13.056000pt;}
.wsbf{word-spacing:-12.842667pt;}
.ws103{word-spacing:-12.544000pt;}
.ws6a{word-spacing:-12.501333pt;}
.ws39{word-spacing:-12.458667pt;}
.ws124{word-spacing:-12.416000pt;}
.ws69{word-spacing:-12.202667pt;}
.ws120{word-spacing:-12.074667pt;}
.ws123{word-spacing:-12.032000pt;}
.wse6{word-spacing:-12.000000pt;}
.ws37{word-spacing:-11.989333pt;}
.ws32{word-spacing:-11.946667pt;}
.ws9f{word-spacing:-11.904000pt;}
.ws3b{word-spacing:-11.861333pt;}
.wsbe{word-spacing:-11.818667pt;}
.ws6e{word-spacing:-11.776000pt;}
.ws9d{word-spacing:-11.733333pt;}
.ws34{word-spacing:-11.690667pt;}
.ws35{word-spacing:-11.648000pt;}
.ws102{word-spacing:-11.605333pt;}
.wsc2{word-spacing:-11.562667pt;}
.ws70{word-spacing:-11.520000pt;}
.ws36{word-spacing:-11.477333pt;}
.ws3a{word-spacing:-11.434667pt;}
.ws38{word-spacing:-11.392000pt;}
.ws11f{word-spacing:-11.349333pt;}
.ws6f{word-spacing:-11.306667pt;}
.ws33{word-spacing:-11.264000pt;}
.wsc3{word-spacing:-11.178667pt;}
.ws13c{word-spacing:-11.136000pt;}
.ws68{word-spacing:-11.008000pt;}
.wsbd{word-spacing:-10.922667pt;}
.wse5{word-spacing:-10.880000pt;}
.wsa0{word-spacing:-10.837333pt;}
.ws9e{word-spacing:-10.794667pt;}
.wse8{word-spacing:-10.709333pt;}
.ws125{word-spacing:-10.581333pt;}
.wsc0{word-spacing:-10.453333pt;}
.ws71{word-spacing:-10.368000pt;}
.ws6{word-spacing:-10.293333pt;}
.ws6d{word-spacing:-10.282667pt;}
.ws122{word-spacing:-10.240000pt;}
.ws11c{word-spacing:-10.133333pt;}
.ws6b{word-spacing:-9.941333pt;}
.wsc1{word-spacing:-9.728000pt;}
.wsa2{word-spacing:-9.514667pt;}
.ws66{word-spacing:-8.519573pt;}
.ws11d{word-spacing:-8.115360pt;}
.ws9c{word-spacing:-8.053173pt;}
.ws11e{word-spacing:-7.835520pt;}
.ws104{word-spacing:-7.808000pt;}
.ws14c{word-spacing:-4.853333pt;}
.ws23{word-spacing:-4.533333pt;}
.ws160{word-spacing:-4.320000pt;}
.ws15f{word-spacing:-4.266667pt;}
.ws16e{word-spacing:-4.213333pt;}
.ws12e{word-spacing:-4.160000pt;}
.ws4{word-spacing:-3.989333pt;}
.ws162{word-spacing:-3.840000pt;}
.ws161{word-spacing:-3.786667pt;}
.ws155{word-spacing:-3.733333pt;}
.ws154{word-spacing:-3.680000pt;}
.ws132{word-spacing:-3.413333pt;}
.ws10b{word-spacing:-3.306667pt;}
.ws164{word-spacing:-3.253333pt;}
.ws135{word-spacing:-3.242667pt;}
.ws9{word-spacing:-3.200000pt;}
.ws2b{word-spacing:-3.146667pt;}
.wsa6{word-spacing:-3.093333pt;}
.ws3{word-spacing:-3.050667pt;}
.wsc9{word-spacing:-3.040000pt;}
.ws131{word-spacing:-3.029333pt;}
.ws110{word-spacing:-2.858667pt;}
.wsb7{word-spacing:-2.816000pt;}
.wsc8{word-spacing:-2.773333pt;}
.wsb2{word-spacing:-2.720000pt;}
.ws107{word-spacing:-2.666667pt;}
.wsa4{word-spacing:-2.613333pt;}
.wsa5{word-spacing:-2.560000pt;}
.ws88{word-spacing:-2.517333pt;}
.ws2c{word-spacing:-2.506667pt;}
.wsea{word-spacing:-2.453333pt;}
.ws111{word-spacing:-2.432000pt;}
.ws16{word-spacing:-2.400000pt;}
.wsf{word-spacing:-2.352000pt;}
.ws90{word-spacing:-2.304000pt;}
.ws156{word-spacing:-2.293333pt;}
.ws11a{word-spacing:-2.261333pt;}
.ws118{word-spacing:-2.176000pt;}
.wsac{word-spacing:-2.133333pt;}
.ws148{word-spacing:-2.090667pt;}
.wse9{word-spacing:-2.080000pt;}
.ws76{word-spacing:-2.026667pt;}
.ws10a{word-spacing:-1.973333pt;}
.ws113{word-spacing:-1.962667pt;}
.ws112{word-spacing:-1.920000pt;}
.ws119{word-spacing:-1.877333pt;}
.wsc{word-spacing:-1.866667pt;}
.ws14{word-spacing:-1.818667pt;}
.wsa{word-spacing:-1.813333pt;}
.ws8f{word-spacing:-1.792000pt;}
.ws12b{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.706667pt;}
.ws108{word-spacing:-1.653333pt;}
.wsa7{word-spacing:-1.600000pt;}
.wsa9{word-spacing:-1.570667pt;}
.wsa8{word-spacing:-1.546667pt;}
.ws117{word-spacing:-1.536000pt;}
.ws77{word-spacing:-1.493333pt;}
.ws82{word-spacing:-1.450667pt;}
.ws19{word-spacing:-1.440000pt;}
.wsf8{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.392000pt;}
.wsb{word-spacing:-1.386667pt;}
.wsf7{word-spacing:-1.365333pt;}
.ws10{word-spacing:-1.333333pt;}
.ws81{word-spacing:-1.280000pt;}
.wsdf{word-spacing:-1.237333pt;}
.ws109{word-spacing:-1.226667pt;}
.ws139{word-spacing:-1.194667pt;}
.wsff{word-spacing:-1.152000pt;}
.ws13{word-spacing:-1.120000pt;}
.wsf6{word-spacing:-1.024000pt;}
.ws172{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-0.981333pt;}
.ws140{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws97{word-spacing:-0.896000pt;}
.ws64{word-spacing:-0.853333pt;}
.ws129{word-spacing:-0.800000pt;}
.ws57{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.746667pt;}
.ws5f{word-spacing:-0.725333pt;}
.wsb9{word-spacing:-0.682667pt;}
.ws96{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.602667pt;}
.wsf9{word-spacing:-0.597333pt;}
.ws8{word-spacing:-0.586667pt;}
.wsd{word-spacing:-0.544000pt;}
.ws7{word-spacing:-0.538667pt;}
.ws11{word-spacing:-0.533333pt;}
.wsae{word-spacing:-0.480000pt;}
.wse1{word-spacing:-0.469333pt;}
.ws84{word-spacing:-0.426667pt;}
.wsf4{word-spacing:-0.405333pt;}
.ws8d{word-spacing:-0.384000pt;}
.wsa3{word-spacing:-0.373333pt;}
.wse4{word-spacing:-0.341333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws79{word-spacing:-0.310933pt;}
.ws115{word-spacing:-0.298667pt;}
.wsca{word-spacing:-0.266667pt;}
.wsba{word-spacing:-0.256000pt;}
.ws10f{word-spacing:-0.170667pt;}
.ws27{word-spacing:-0.160000pt;}
.wsc6{word-spacing:-0.106667pt;}
.ws89{word-spacing:-0.042667pt;}
.wse{word-spacing:-0.005333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf5{word-spacing:0.042667pt;}
.ws75{word-spacing:0.053333pt;}
.wsaa{word-spacing:0.062187pt;}
.wsfc{word-spacing:0.128000pt;}
.ws3f{word-spacing:0.160000pt;}
.wsdb{word-spacing:0.213333pt;}
.wsbc{word-spacing:0.256000pt;}
.wsad{word-spacing:0.266667pt;}
.wsd2{word-spacing:0.320000pt;}
.ws10e{word-spacing:0.341333pt;}
.ws28{word-spacing:0.373333pt;}
.wse3{word-spacing:0.384000pt;}
.ws14a{word-spacing:0.426667pt;}
.wsd6{word-spacing:0.469333pt;}
.ws144{word-spacing:0.480000pt;}
.wse2{word-spacing:0.512000pt;}
.wsd1{word-spacing:0.533333pt;}
.ws13f{word-spacing:0.586667pt;}
.ws128{word-spacing:0.640000pt;}
.ws92{word-spacing:0.725333pt;}
.wscf{word-spacing:0.746667pt;}
.ws85{word-spacing:0.810667pt;}
.ws94{word-spacing:0.853333pt;}
.wsd5{word-spacing:0.896000pt;}
.ws7e{word-spacing:0.906667pt;}
.wsfe{word-spacing:0.938667pt;}
.ws26{word-spacing:0.960000pt;}
.ws127{word-spacing:1.013333pt;}
.ws95{word-spacing:1.024000pt;}
.ws80{word-spacing:1.066667pt;}
.ws157{word-spacing:1.120000pt;}
.wsfd{word-spacing:1.152000pt;}
.wsb1{word-spacing:1.173333pt;}
.ws65{word-spacing:1.194667pt;}
.ws106{word-spacing:1.216000pt;}
.ws4e{word-spacing:1.226667pt;}
.ws134{word-spacing:1.237333pt;}
.ws29{word-spacing:1.280000pt;}
.ws130{word-spacing:1.322667pt;}
.ws12c{word-spacing:1.333333pt;}
.ws5e{word-spacing:1.365333pt;}
.ws7c{word-spacing:1.440000pt;}
.ws7b{word-spacing:1.493333pt;}
.ws8a{word-spacing:1.578667pt;}
.ws1f{word-spacing:1.653333pt;}
.ws133{word-spacing:1.664000pt;}
.wsde{word-spacing:1.706667pt;}
.ws8b{word-spacing:1.749333pt;}
.ws40{word-spacing:1.813333pt;}
.ws5a{word-spacing:1.834667pt;}
.ws41{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.wsf2{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.080000pt;}
.wsd7{word-spacing:2.133333pt;}
.ws4d{word-spacing:2.186667pt;}
.ws5b{word-spacing:2.218667pt;}
.ws13d{word-spacing:2.240000pt;}
.ws5c{word-spacing:2.261333pt;}
.ws3c{word-spacing:2.293333pt;}
.wsed{word-spacing:2.346667pt;}
.ws86{word-spacing:2.389333pt;}
.ws10c{word-spacing:2.400000pt;}
.ws100{word-spacing:2.432000pt;}
.ws16a{word-spacing:2.453333pt;}
.wsc7{word-spacing:2.506667pt;}
.ws63{word-spacing:2.602667pt;}
.wsee{word-spacing:2.666667pt;}
.wsdd{word-spacing:2.688000pt;}
.ws7d{word-spacing:2.720000pt;}
.ws149{word-spacing:2.773333pt;}
.ws8c{word-spacing:2.816000pt;}
.ws163{word-spacing:2.826667pt;}
.ws13e{word-spacing:2.880000pt;}
.ws158{word-spacing:2.986667pt;}
.ws49{word-spacing:3.040000pt;}
.ws62{word-spacing:3.072000pt;}
.ws4a{word-spacing:3.093333pt;}
.wsf0{word-spacing:3.146667pt;}
.wsd3{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.253333pt;}
.ws58{word-spacing:3.285333pt;}
.ws42{word-spacing:3.306667pt;}
.ws14f{word-spacing:3.360000pt;}
.ws16c{word-spacing:3.413333pt;}
.ws72{word-spacing:3.466667pt;}
.ws12a{word-spacing:3.520000pt;}
.ws1d{word-spacing:3.573333pt;}
.ws91{word-spacing:3.584000pt;}
.ws1e{word-spacing:3.626667pt;}
.wsb5{word-spacing:3.669333pt;}
.ws48{word-spacing:3.680000pt;}
.ws152{word-spacing:3.733333pt;}
.ws2f{word-spacing:3.786667pt;}
.ws44{word-spacing:3.840000pt;}
.ws2{word-spacing:3.893333pt;}
.wsb4{word-spacing:3.925333pt;}
.ws43{word-spacing:3.946667pt;}
.ws169{word-spacing:4.000000pt;}
.wsce{word-spacing:4.053333pt;}
.wsf3{word-spacing:4.104000pt;}
.wsb3{word-spacing:4.160000pt;}
.ws4f{word-spacing:4.373333pt;}
.ws22{word-spacing:4.426667pt;}
.ws2a{word-spacing:4.480000pt;}
.ws176{word-spacing:4.533333pt;}
.wsb6{word-spacing:4.565333pt;}
.ws74{word-spacing:4.640000pt;}
.ws21{word-spacing:4.693333pt;}
.ws101{word-spacing:4.778667pt;}
.ws165{word-spacing:4.800000pt;}
.ws25{word-spacing:4.853333pt;}
.ws105{word-spacing:4.864000pt;}
.ws24{word-spacing:4.906667pt;}
.wsdc{word-spacing:4.949333pt;}
.wsef{word-spacing:4.960000pt;}
.wsf1{word-spacing:5.066667pt;}
.ws143{word-spacing:5.120000pt;}
.ws87{word-spacing:5.162667pt;}
.ws14b{word-spacing:5.173333pt;}
.wscb{word-spacing:5.226667pt;}
.wsda{word-spacing:5.248000pt;}
.ws7a{word-spacing:5.280000pt;}
.ws83{word-spacing:5.376000pt;}
.ws142{word-spacing:5.386667pt;}
.wsd9{word-spacing:5.418667pt;}
.ws167{word-spacing:5.440000pt;}
.ws10d{word-spacing:5.493333pt;}
.ws3e{word-spacing:5.653333pt;}
.ws141{word-spacing:5.760000pt;}
.ws145{word-spacing:5.973333pt;}
.ws126{word-spacing:6.026667pt;}
.ws15c{word-spacing:6.080000pt;}
.ws2e{word-spacing:6.133333pt;}
.ws61{word-spacing:6.144000pt;}
.ws146{word-spacing:6.186667pt;}
.wseb{word-spacing:6.240000pt;}
.wsec{word-spacing:6.346667pt;}
.ws56{word-spacing:6.357333pt;}
.ws55{word-spacing:6.442667pt;}
.ws4b{word-spacing:6.453333pt;}
.ws54{word-spacing:6.570667pt;}
.ws136{word-spacing:6.613333pt;}
.ws78{word-spacing:6.666667pt;}
.ws12f{word-spacing:6.720000pt;}
.ws153{word-spacing:6.773333pt;}
.ws52{word-spacing:6.826667pt;}
.ws166{word-spacing:6.880000pt;}
.wsd8{word-spacing:6.912000pt;}
.ws15d{word-spacing:7.040000pt;}
.ws46{word-spacing:7.093333pt;}
.ws15e{word-spacing:7.146667pt;}
.ws178{word-spacing:7.200000pt;}
.wsb0{word-spacing:7.306667pt;}
.ws179{word-spacing:7.360000pt;}
.ws4c{word-spacing:7.413333pt;}
.wsd4{word-spacing:7.680000pt;}
.ws47{word-spacing:7.733333pt;}
.wsbb{word-spacing:7.765333pt;}
.wscc{word-spacing:8.000000pt;}
.wsc5{word-spacing:8.053333pt;}
.wscd{word-spacing:8.160000pt;}
.wsab{word-spacing:8.213333pt;}
.ws50{word-spacing:8.266667pt;}
.ws51{word-spacing:8.373333pt;}
.wsc4{word-spacing:8.640000pt;}
.wse0{word-spacing:8.789333pt;}
.wsd0{word-spacing:8.960000pt;}
.wsaf{word-spacing:9.120000pt;}
.ws15b{word-spacing:9.280000pt;}
.ws31{word-spacing:9.642667pt;}
.ws175{word-spacing:9.760000pt;}
.ws14d{word-spacing:9.973333pt;}
.ws159{word-spacing:10.346667pt;}
.wsfa{word-spacing:10.453333pt;}
.wsfb{word-spacing:10.538667pt;}
.ws174{word-spacing:10.880000pt;}
.ws5d{word-spacing:10.965333pt;}
.ws15a{word-spacing:11.040000pt;}
.ws16d{word-spacing:11.093333pt;}
.ws20{word-spacing:11.200000pt;}
.ws45{word-spacing:13.600000pt;}
.ws16b{word-spacing:13.813333pt;}
.ws12d{word-spacing:14.506667pt;}
.ws14e{word-spacing:15.093333pt;}
.ws173{word-spacing:17.066667pt;}
.ws138{word-spacing:17.322667pt;}
.ws16f{word-spacing:17.600000pt;}
.ws116{word-spacing:19.029333pt;}
.ws170{word-spacing:19.680000pt;}
.ws137{word-spacing:19.968000pt;}
.ws114{word-spacing:20.778667pt;}
.ws13a{word-spacing:22.485333pt;}
.ws8e{word-spacing:23.594667pt;}
.ws147{word-spacing:25.600000pt;}
.ws177{word-spacing:26.026667pt;}
.ws93{word-spacing:27.776000pt;}
.ws60{word-spacing:44.800000pt;}
.ws59{word-spacing:45.312000pt;}
.ws53{word-spacing:45.525333pt;}
.ws1b{word-spacing:1950.666667pt;}
._1b{margin-left:-43.771733pt;}
._19{margin-left:-38.437333pt;}
._18{margin-left:-27.490133pt;}
._26{margin-left:-25.911467pt;}
._30{margin-left:-23.573867pt;}
._0{margin-left:-21.218667pt;}
._14{margin-left:-18.258667pt;}
._c{margin-left:-14.922667pt;}
._8{margin-left:-10.112000pt;}
._5{margin-left:-8.917333pt;}
._2{margin-left:-6.852267pt;}
._31{margin-left:-5.544000pt;}
._7{margin-left:-4.464000pt;}
._3{margin-left:-2.986667pt;}
._4{margin-left:-1.525333pt;}
._6{width:1.664000pt;}
._1c{width:2.801067pt;}
._1{width:3.698667pt;}
._20{width:4.920000pt;}
._1a{width:6.824533pt;}
._2f{width:8.762133pt;}
._29{width:10.137600pt;}
._2a{width:12.786133pt;}
._2b{width:15.111467pt;}
._2c{width:16.328533pt;}
._28{width:18.107200pt;}
._32{width:19.157333pt;}
._27{width:20.129600pt;}
._2d{width:21.221867pt;}
._25{width:22.627200pt;}
._21{width:24.490133pt;}
._23{width:25.738133pt;}
._24{width:26.632000pt;}
._2e{width:28.061867pt;}
._22{width:30.686933pt;}
._1d{width:32.554667pt;}
._15{width:39.296000pt;}
._1e{width:43.434667pt;}
._1f{width:44.714667pt;}
._16{width:49.877333pt;}
._33{width:65.920000pt;}
._e{width:80.458667pt;}
._11{width:212.917333pt;}
._f{width:348.261333pt;}
._d{width:366.112000pt;}
._10{width:464.725333pt;}
._17{width:468.854400pt;}
._a{width:471.393600pt;}
._9{width:607.274133pt;}
._b{width:612.090667pt;}
._12{width:710.778133pt;}
._13{width:887.919467pt;}
.fsb{font-size:31.093333pt;}
.fs1{font-size:33.249067pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:74.810667pt;}
.fs8{font-size:96.000000pt;}
.fsf{font-size:106.666667pt;}
.fs4{font-size:117.333333pt;}
.fs9{font-size:128.000000pt;}
.fs5{font-size:149.333333pt;}
.fs6{font-size:165.333333pt;}
.fs2{font-size:389.333333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:70.401467pt;}
.y73{bottom:71.034533pt;}
.y94{bottom:71.434267pt;}
.ya{bottom:82.337333pt;}
.y52{bottom:85.068133pt;}
.y3{bottom:112.052533pt;}
.y2{bottom:113.255333pt;}
.y27{bottom:134.222667pt;}
.y50{bottom:134.666667pt;}
.y92{bottom:135.118000pt;}
.ye8{bottom:149.333333pt;}
.ybc{bottom:152.000000pt;}
.y91{bottom:153.564267pt;}
.y18b{bottom:153.868133pt;}
.y1b7{bottom:154.087467pt;}
.y1{bottom:155.430000pt;}
.y26{bottom:155.556000pt;}
.y4f{bottom:156.869200pt;}
.ye7{bottom:164.000000pt;}
.ybb{bottom:166.666667pt;}
.y90{bottom:168.230933pt;}
.y9{bottom:173.052000pt;}
.y18a{bottom:173.069600pt;}
.y1b6{bottom:173.508133pt;}
.y25{bottom:176.889333pt;}
.ye6{bottom:181.333333pt;}
.yba{bottom:184.000000pt;}
.y4e{bottom:186.630800pt;}
.y189{bottom:192.271200pt;}
.y1b5{bottom:192.928933pt;}
.ye5{bottom:196.000000pt;}
.y24{bottom:198.222667pt;}
.yb9{bottom:198.666667pt;}
.y4d{bottom:208.833467pt;}
.ye4{bottom:210.666667pt;}
.y188{bottom:211.472533pt;}
.y1b4{bottom:212.349600pt;}
.yb8{bottom:213.333333pt;}
.y100{bottom:216.000000pt;}
.y23{bottom:219.556000pt;}
.ye3{bottom:225.333333pt;}
.yb7{bottom:228.000000pt;}
.y144{bottom:230.666667pt;}
.y187{bottom:230.674133pt;}
.y1b3{bottom:231.770400pt;}
.yff{bottom:233.333333pt;}
.y4c{bottom:238.594933pt;}
.y110{bottom:240.000000pt;}
.ye2{bottom:242.666667pt;}
.yb6{bottom:245.333333pt;}
.y1dd{bottom:245.470000pt;}
.yfe{bottom:248.000000pt;}
.y186{bottom:249.875600pt;}
.y1b2{bottom:251.191067pt;}
.y10f{bottom:254.666667pt;}
.ye1{bottom:257.333333pt;}
.y4b{bottom:260.797467pt;}
.yb5{bottom:262.666667pt;}
.y22{bottom:264.014667pt;}
.y1dc{bottom:264.456667pt;}
.y132{bottom:265.333333pt;}
.y185{bottom:269.077067pt;}
.y1b1{bottom:270.611867pt;}
.ye0{bottom:272.000000pt;}
.yb4{bottom:277.333333pt;}
.y131{bottom:282.666667pt;}
.y4a{bottom:283.000133pt;}
.y1db{bottom:283.443333pt;}
.y1a{bottom:283.669867pt;}
.y21{bottom:284.452000pt;}
.ydf{bottom:286.666667pt;}
.y184{bottom:288.278533pt;}
.y10e{bottom:289.333333pt;}
.y1b0{bottom:290.032533pt;}
.yfd{bottom:292.000000pt;}
.y69{bottom:294.277600pt;}
.yb3{bottom:294.666667pt;}
.y8f{bottom:296.803467pt;}
.y143{bottom:297.333333pt;}
.y130{bottom:300.000000pt;}
.y8{bottom:301.532000pt;}
.y1da{bottom:302.430000pt;}
.yde{bottom:304.000000pt;}
.y49{bottom:305.202667pt;}
.y20{bottom:305.785333pt;}
.yfc{bottom:306.666667pt;}
.y183{bottom:307.480000pt;}
.yb2{bottom:309.333333pt;}
.y1af{bottom:309.453333pt;}
.y142{bottom:312.000000pt;}
.y12f{bottom:314.666667pt;}
.y8e{bottom:315.736800pt;}
.y68{bottom:316.990400pt;}
.ydd{bottom:318.666667pt;}
.yfb{bottom:321.333333pt;}
.y1d9{bottom:321.416667pt;}
.y19{bottom:323.680533pt;}
.yb1{bottom:324.000000pt;}
.y141{bottom:326.666667pt;}
.y182{bottom:326.681467pt;}
.y1f{bottom:327.118667pt;}
.y48{bottom:327.405200pt;}
.y1ae{bottom:328.874000pt;}
.y12e{bottom:329.333333pt;}
.y113{bottom:333.333333pt;}
.y8d{bottom:334.670133pt;}
.ydc{bottom:336.000000pt;}
.y1d8{bottom:340.403333pt;}
.yb0{bottom:341.333333pt;}
.y140{bottom:344.000000pt;}
.y181{bottom:345.882933pt;}
.y1ad{bottom:348.294800pt;}
.y1e{bottom:348.452000pt;}
.y47{bottom:349.607733pt;}
.y158{bottom:349.784133pt;}
.ydb{bottom:350.666667pt;}
.y8c{bottom:353.603467pt;}
.y67{bottom:354.857067pt;}
.yaf{bottom:356.000000pt;}
.y1d7{bottom:359.390000pt;}
.y13f{bottom:361.333333pt;}
.y180{bottom:365.084533pt;}
.yda{bottom:365.333333pt;}
.y1ac{bottom:367.715600pt;}
.y157{bottom:368.717467pt;}
.y1d{bottom:369.785333pt;}
.y46{bottom:371.810267pt;}
.y8b{bottom:372.536800pt;}
.yae{bottom:373.333333pt;}
.y13e{bottom:376.000000pt;}
.y66{bottom:377.570000pt;}
.y1d6{bottom:378.376667pt;}
.yd9{bottom:380.000000pt;}
.y18{bottom:382.581867pt;}
.y17f{bottom:384.285867pt;}
.y1ab{bottom:387.136267pt;}
.y156{bottom:387.650800pt;}
.yad{bottom:388.000000pt;}
.y1c{bottom:391.118667pt;}
.y8a{bottom:391.470133pt;}
.y7{bottom:392.246667pt;}
.y13d{bottom:393.333333pt;}
.y45{bottom:394.012800pt;}
.yd8{bottom:394.666667pt;}
.y1d5{bottom:401.142800pt;}
.yac{bottom:402.666667pt;}
.y17e{bottom:403.487467pt;}
.y1aa{bottom:406.557067pt;}
.y155{bottom:406.584133pt;}
.y13c{bottom:408.000000pt;}
.yd7{bottom:409.333333pt;}
.y1b{bottom:412.452000pt;}
.y89{bottom:414.183067pt;}
.y65{bottom:415.436667pt;}
.y44{bottom:416.215467pt;}
.y17{bottom:422.581867pt;}
.y13b{bottom:422.666667pt;}
.y17d{bottom:422.688933pt;}
.yd6{bottom:424.000000pt;}
.y154{bottom:425.517467pt;}
.y1a9{bottom:425.977733pt;}
.y64{bottom:438.149467pt;}
.y43{bottom:438.418000pt;}
.yd5{bottom:438.666667pt;}
.y13a{bottom:440.000000pt;}
.y17c{bottom:441.890400pt;}
.y153{bottom:444.450800pt;}
.y1a8{bottom:445.398533pt;}
.y10d{bottom:455.753600pt;}
.yd4{bottom:456.000000pt;}
.y1d4{bottom:458.049467pt;}
.y112{bottom:460.553733pt;}
.y42{bottom:460.620533pt;}
.y17b{bottom:461.091867pt;}
.y152{bottom:463.384133pt;}
.y1a7{bottom:464.819200pt;}
.y88{bottom:470.982933pt;}
.yd3{bottom:473.333333pt;}
.y16{bottom:473.920400pt;}
.y10c{bottom:474.687067pt;}
.y63{bottom:476.016133pt;}
.y1d3{bottom:477.036133pt;}
.yfa{bottom:477.887067pt;}
.y17a{bottom:480.293333pt;}
.y151{bottom:482.317467pt;}
.y41{bottom:482.823067pt;}
.y6{bottom:482.961333pt;}
.y1a6{bottom:484.240000pt;}
.y87{bottom:489.649600pt;}
.yd2{bottom:490.666667pt;}
.y10b{bottom:493.620267pt;}
.y111{bottom:495.220400pt;}
.y1d2{bottom:496.022800pt;}
.yf9{bottom:496.820267pt;}
.y62{bottom:498.729067pt;}
.y179{bottom:499.494800pt;}
.y150{bottom:501.250800pt;}
.y1a5{bottom:503.660667pt;}
.y12d{bottom:504.295867pt;}
.y40{bottom:505.025600pt;}
.yd1{bottom:505.333333pt;}
.y86{bottom:508.316267pt;}
.y10a{bottom:512.553733pt;}
.y1d1{bottom:515.009467pt;}
.yf8{bottom:515.753600pt;}
.y178{bottom:518.696267pt;}
.yd0{bottom:520.000000pt;}
.y14f{bottom:520.184133pt;}
.y1a4{bottom:523.081467pt;}
.y12c{bottom:523.229200pt;}
.y61{bottom:525.221333pt;}
.y3f{bottom:527.228133pt;}
.y109{bottom:531.486933pt;}
.yab{bottom:531.550000pt;}
.y1d0{bottom:533.996133pt;}
.ycf{bottom:534.666667pt;}
.yf7{bottom:534.687067pt;}
.y177{bottom:537.897733pt;}
.y12b{bottom:542.162533pt;}
.y1a3{bottom:542.502133pt;}
.y14e{bottom:542.896933pt;}
.y60{bottom:547.934267pt;}
.y3e{bottom:549.430667pt;}
.y108{bottom:550.420267pt;}
.yaa{bottom:550.483333pt;}
.y1cf{bottom:552.982800pt;}
.y85{bottom:553.208800pt;}
.yf6{bottom:553.620267pt;}
.y176{bottom:557.099333pt;}
.y12a{bottom:561.095867pt;}
.y1a2{bottom:561.922933pt;}
.y15{bottom:565.034667pt;}
.y107{bottom:569.353733pt;}
.ya9{bottom:569.416667pt;}
.y3d{bottom:571.633200pt;}
.y84{bottom:571.875467pt;}
.y1ce{bottom:571.969467pt;}
.yf5{bottom:572.553733pt;}
.y139{bottom:573.133200pt;}
.y5{bottom:573.676000pt;}
.y175{bottom:576.300800pt;}
.y129{bottom:580.029200pt;}
.y14d{bottom:580.763600pt;}
.y1a1{bottom:581.343600pt;}
.y106{bottom:588.286933pt;}
.ya8{bottom:588.350000pt;}
.y83{bottom:590.542133pt;}
.y1cd{bottom:590.956133pt;}
.yf4{bottom:591.486933pt;}
.y138{bottom:592.066533pt;}
.y3c{bottom:593.835867pt;}
.y174{bottom:595.502267pt;}
.y128{bottom:598.962533pt;}
.y14c{bottom:599.696933pt;}
.y1a0{bottom:600.764400pt;}
.y5f{bottom:604.698533pt;}
.y14{bottom:605.045333pt;}
.y105{bottom:607.220400pt;}
.y82{bottom:609.208800pt;}
.y1cc{bottom:609.942800pt;}
.yf3{bottom:610.420267pt;}
.y137{bottom:610.999867pt;}
.ya7{bottom:611.062800pt;}
.y173{bottom:614.703733pt;}
.y3b{bottom:616.038400pt;}
.y127{bottom:617.895867pt;}
.y14b{bottom:618.630267pt;}
.y19f{bottom:620.185067pt;}
.y104{bottom:626.153600pt;}
.y5e{bottom:627.411467pt;}
.y81{bottom:627.875467pt;}
.y1cb{bottom:628.929467pt;}
.yf2{bottom:629.353733pt;}
.y136{bottom:629.933200pt;}
.y172{bottom:633.905200pt;}
.y126{bottom:636.829200pt;}
.y14a{bottom:637.563600pt;}
.y3a{bottom:638.240933pt;}
.y19e{bottom:639.605867pt;}
.y103{bottom:645.086933pt;}
.y5d{bottom:646.344667pt;}
.y80{bottom:646.542133pt;}
.y1ca{bottom:647.916133pt;}
.yf1{bottom:648.286933pt;}
.y135{bottom:648.866533pt;}
.ya6{bottom:648.929467pt;}
.y171{bottom:653.106667pt;}
.y125{bottom:655.762533pt;}
.y149{bottom:656.496933pt;}
.y19d{bottom:659.026533pt;}
.y39{bottom:660.443467pt;}
.y13{bottom:663.946667pt;}
.yce{bottom:664.020400pt;}
.y4{bottom:664.390667pt;}
.y7f{bottom:665.208800pt;}
.y1c9{bottom:666.902800pt;}
.yf0{bottom:667.220400pt;}
.y134{bottom:667.799867pt;}
.ya5{bottom:667.862800pt;}
.y170{bottom:672.308133pt;}
.y124{bottom:674.695867pt;}
.y148{bottom:675.430267pt;}
.y19c{bottom:678.447333pt;}
.y38{bottom:682.646000pt;}
.ycd{bottom:682.953600pt;}
.y7e{bottom:683.875467pt;}
.y5c{bottom:684.211467pt;}
.y1c8{bottom:685.889467pt;}
.yef{bottom:686.153600pt;}
.y133{bottom:686.733200pt;}
.ya4{bottom:686.796267pt;}
.y16f{bottom:691.509600pt;}
.y123{bottom:693.629200pt;}
.y19b{bottom:697.868133pt;}
.y102{bottom:701.886933pt;}
.y147{bottom:701.922667pt;}
.y7d{bottom:702.542133pt;}
.y37{bottom:704.848533pt;}
.y1c7{bottom:704.876133pt;}
.yee{bottom:705.086933pt;}
.ycc{bottom:705.666533pt;}
.ya3{bottom:705.729467pt;}
.y5b{bottom:706.924267pt;}
.y16e{bottom:710.711067pt;}
.y122{bottom:712.562533pt;}
.y12{bottom:715.298667pt;}
.y19a{bottom:717.288800pt;}
.y7c{bottom:721.208800pt;}
.y1c6{bottom:723.862800pt;}
.y101{bottom:724.599867pt;}
.ya2{bottom:724.662800pt;}
.y5a{bottom:725.857600pt;}
.y36{bottom:727.051067pt;}
.y146{bottom:728.415067pt;}
.y16d{bottom:729.912533pt;}
.y121{bottom:731.495867pt;}
.y199{bottom:736.709600pt;}
.y15f{bottom:739.753600pt;}
.y7b{bottom:739.875467pt;}
.y1c5{bottom:742.849467pt;}
.yed{bottom:742.953600pt;}
.ycb{bottom:743.533200pt;}
.ya1{bottom:743.596133pt;}
.y16c{bottom:749.114133pt;}
.y120{bottom:750.429200pt;}
.y145{bottom:754.907467pt;}
.y198{bottom:756.130267pt;}
.y35{bottom:756.812800pt;}
.y7a{bottom:758.542133pt;}
.y15e{bottom:758.687067pt;}
.yec{bottom:760.286933pt;}
.y1c4{bottom:761.836133pt;}
.yca{bottom:762.466533pt;}
.ya0{bottom:762.529467pt;}
.y59{bottom:763.724267pt;}
.y16b{bottom:768.315600pt;}
.y11{bottom:768.618667pt;}
.y11f{bottom:769.362533pt;}
.y197{bottom:775.551067pt;}
.y79{bottom:777.208800pt;}
.y15d{bottom:777.620267pt;}
.y34{bottom:779.015333pt;}
.y1c3{bottom:780.822800pt;}
.yc9{bottom:781.399867pt;}
.y9f{bottom:781.462933pt;}
.y58{bottom:786.437200pt;}
.y16a{bottom:787.517067pt;}
.y11e{bottom:788.295867pt;}
.y72{bottom:789.128933pt;}
.y196{bottom:794.971733pt;}
.y78{bottom:795.875467pt;}
.yeb{bottom:796.553600pt;}
.y1c2{bottom:799.809467pt;}
.yc8{bottom:800.333200pt;}
.y9e{bottom:800.396133pt;}
.y33{bottom:801.217867pt;}
.y169{bottom:806.718533pt;}
.y11d{bottom:807.229200pt;}
.y71{bottom:811.841733pt;}
.y195{bottom:814.392533pt;}
.y15c{bottom:815.486933pt;}
.y57{bottom:816.709067pt;}
.y1c1{bottom:818.796267pt;}
.yc7{bottom:819.266533pt;}
.y9d{bottom:819.329467pt;}
.y32{bottom:823.420400pt;}
.y168{bottom:825.920000pt;}
.y11c{bottom:826.162533pt;}
.y70{bottom:830.775200pt;}
.y77{bottom:832.726400pt;}
.y194{bottom:833.813200pt;}
.yea{bottom:834.420267pt;}
.y56{bottom:835.642400pt;}
.y1c0{bottom:837.782933pt;}
.yc6{bottom:838.199867pt;}
.y9c{bottom:838.262800pt;}
.y11b{bottom:845.095867pt;}
.y167{bottom:845.121467pt;}
.y31{bottom:845.622933pt;}
.y193{bottom:853.234000pt;}
.ye9{bottom:853.353733pt;}
.y1bf{bottom:856.769467pt;}
.yc5{bottom:857.133200pt;}
.y9b{bottom:857.196267pt;}
.y6f{bottom:861.047067pt;}
.y11a{bottom:864.029200pt;}
.y166{bottom:864.322933pt;}
.y30{bottom:867.825467pt;}
.y15b{bottom:872.287067pt;}
.y192{bottom:872.654667pt;}
.y76{bottom:874.712133pt;}
.y1be{bottom:875.756133pt;}
.yc4{bottom:876.066533pt;}
.y9a{bottom:876.129467pt;}
.y119{bottom:882.962533pt;}
.y165{bottom:883.524400pt;}
.y2f{bottom:890.028133pt;}
.y15a{bottom:891.220267pt;}
.y191{bottom:892.075467pt;}
.y55{bottom:892.406667pt;}
.yb{bottom:893.755333pt;}
.y1bd{bottom:894.742800pt;}
.yc3{bottom:894.999867pt;}
.y99{bottom:895.062800pt;}
.y10{bottom:901.732400pt;}
.y118{bottom:901.895867pt;}
.y164{bottom:902.725867pt;}
.y159{bottom:910.153600pt;}
.y190{bottom:911.496133pt;}
.y2e{bottom:912.230667pt;}
.y1bc{bottom:913.729467pt;}
.yc2{bottom:913.933200pt;}
.y98{bottom:913.996133pt;}
.y75{bottom:914.712133pt;}
.y54{bottom:915.119600pt;}
.y6e{bottom:917.811333pt;}
.y163{bottom:921.927467pt;}
.y18f{bottom:930.916933pt;}
.y1bb{bottom:932.716133pt;}
.yc1{bottom:932.866533pt;}
.y97{bottom:932.929467pt;}
.y2d{bottom:934.433067pt;}
.yd{bottom:939.352000pt;}
.y117{bottom:939.762533pt;}
.y6d{bottom:940.524267pt;}
.y162{bottom:941.128933pt;}
.y18e{bottom:950.337600pt;}
.yf{bottom:950.807067pt;}
.y1ba{bottom:951.702800pt;}
.yc0{bottom:951.799867pt;}
.y96{bottom:951.862933pt;}
.y74{bottom:954.712133pt;}
.y116{bottom:957.095867pt;}
.y161{bottom:960.330400pt;}
.y2c{bottom:964.194800pt;}
.y29{bottom:968.672000pt;}
.y18d{bottom:969.758400pt;}
.y1b9{bottom:970.689600pt;}
.ybf{bottom:970.733200pt;}
.y6c{bottom:970.796133pt;}
.yc{bottom:979.362667pt;}
.y2b{bottom:986.397333pt;}
.y18c{bottom:989.179067pt;}
.ybe{bottom:989.666533pt;}
.y1b8{bottom:989.676133pt;}
.y6b{bottom:989.729467pt;}
.ye{bottom:990.807067pt;}
.y115{bottom:991.762533pt;}
.y51{bottom:994.712133pt;}
.y160{bottom:998.680000pt;}
.y28{bottom:1000.664000pt;}
.y2a{bottom:1008.599867pt;}
.y6a{bottom:1008.662800pt;}
.y114{bottom:1009.095867pt;}
.y95{bottom:1048.882933pt;}
.ybd{bottom:1048.884267pt;}
.y93{bottom:1049.386933pt;}
.h3{height:23.806332pt;}
.h10{height:37.077333pt;}
.h18{height:38.869333pt;}
.h11{height:39.609600pt;}
.hd{height:40.480000pt;}
.h14{height:40.533333pt;}
.h19{height:41.173333pt;}
.h16{height:41.208533pt;}
.h1f{height:43.078125pt;}
.h1e{height:44.029333pt;}
.h1b{height:46.157333pt;}
.hb{height:46.346667pt;}
.h1d{height:47.864583pt;}
.he{height:48.586667pt;}
.h1c{height:50.112907pt;}
.h15{height:50.113440pt;}
.h17{height:50.113973pt;}
.h1a{height:50.257812pt;}
.h20{height:51.766125pt;}
.h21{height:51.910125pt;}
.h2{height:53.564437pt;}
.h6{height:56.746667pt;}
.h13{height:64.885333pt;}
.hc{height:83.424000pt;}
.h7{height:89.173333pt;}
.h22{height:92.693333pt;}
.h9{height:101.962667pt;}
.hf{height:111.232000pt;}
.h12{height:116.608000pt;}
.h8{height:129.770667pt;}
.ha{height:143.674667pt;}
.h5{height:284.966146pt;}
.h4{height:759.444800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:776.137067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:17.564267pt;}
.x7{left:79.282933pt;}
.x5{left:82.981600pt;}
.x19{left:117.697333pt;}
.x1a{left:120.293467pt;}
.x18{left:121.574667pt;}
.xd{left:125.562267pt;}
.xf{left:136.550400pt;}
.x8{left:138.948267pt;}
.x1d{left:140.230933pt;}
.x1b{left:141.574800pt;}
.x23{left:144.670933pt;}
.x17{left:149.250133pt;}
.x21{left:163.975733pt;}
.x9{left:167.369600pt;}
.x15{left:173.158133pt;}
.x20{left:180.190000pt;}
.x11{left:208.126267pt;}
.x12{left:209.222667pt;}
.xa{left:213.602933pt;}
.x10{left:228.586267pt;}
.x4{left:237.157600pt;}
.xe{left:258.364533pt;}
.xc{left:284.578267pt;}
.x14{left:300.332000pt;}
.x16{left:304.335467pt;}
.x13{left:310.481333pt;}
.x6{left:323.686933pt;}
.xb{left:340.383733pt;}
.x24{left:390.935600pt;}
.x22{left:452.595733pt;}
.x1f{left:463.558267pt;}
.x2{left:583.974267pt;}
.x1c{left:587.592533pt;}
.x1{left:588.793600pt;}
.x1e{left:656.218533pt;}
}




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