
    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_e402eb7f2f249d574562a1a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.206055;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_176cd13740b980893b2eba55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_d2edd5d463179c17e2a985c3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_766ee1feedcfd3db2a32f8e9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d5ea94635ced53034f8a691e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00b1be1b70e9b7e0d05fae81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_9d726b43574ed5909af3d104.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979004;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_85049b05c724f2ff1c1d31fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979004;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_3c27bc6e5d8661746508203d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_843d781610d0d97ca87227ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_fcacd29420bf2cf0d66664c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_a59a68f0521692000b67a700.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_e54f213abe8920f97003e9b6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6007c263a50ce54b093650a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;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_fd1e0fec2bd0603f337b294a.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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_5aa9e7ec453d1607125105f6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_582f133ba847800902378add.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_e54f213abe8920f97003e9b6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f44dcd6db5cf9fe170d27f94.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_a2aeec59980e7ec0572b4e09.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.979980;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_5aa9e7ec453d1607125105f6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0e4a37d002686967e46bbc89.woff2')format("woff");}.ff16{font-family:ff16;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-21.100800px;}
.v2{vertical-align:-15.840000px;}
.v4{vertical-align:-4.608000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.887800px;}
.v3{vertical-align:8.659800px;}
.v1{vertical-align:19.800000px;}
.lsb{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-1.200000px;}
.ls3a{letter-spacing:-1.140000px;}
.ls42{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.960000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls39{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.335664px;}
.ls32{letter-spacing:-0.318816px;}
.ls4{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.283392px;}
.ls2{letter-spacing:-0.270000px;}
.ls2e{letter-spacing:-0.265680px;}
.lsc{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.239760px;}
.ls21{letter-spacing:-0.236160px;}
.ls2a{letter-spacing:-0.191808px;}
.ls24{letter-spacing:-0.188928px;}
.ls5{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.159408px;}
.ls22{letter-spacing:-0.141696px;}
.ls3{letter-spacing:-0.120000px;}
.ls2f{letter-spacing:-0.106272px;}
.ls20{letter-spacing:-0.094464px;}
.lsd{letter-spacing:-0.060000px;}
.ls31{letter-spacing:-0.053136px;}
.ls23{letter-spacing:-0.047232px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.063312px;}
.ls36{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.143856px;}
.ls1e{letter-spacing:0.152064px;}
.ls28{letter-spacing:0.171072px;}
.ls27{letter-spacing:0.188928px;}
.ls1f{letter-spacing:0.190080px;}
.ls34{letter-spacing:0.212544px;}
.ls29{letter-spacing:0.213840px;}
.ls3e{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.283392px;}
.ls37{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.371952px;}
.ls35{letter-spacing:0.478224px;}
.ls14{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.514800px;}
.ls33{letter-spacing:0.531360px;}
.ls3d{letter-spacing:0.540000px;}
.ls3c{letter-spacing:0.600000px;}
.ls41{letter-spacing:0.840000px;}
.ls40{letter-spacing:1.140000px;}
.ls3f{letter-spacing:1.200000px;}
.ls12{letter-spacing:2.650800px;}
.ls11{letter-spacing:3.140400px;}
.ls15{letter-spacing:3.837600px;}
.lse{letter-spacing:4.563600px;}
.ls16{letter-spacing:11.302800px;}
.ls17{letter-spacing:11.475000px;}
.ls19{letter-spacing:13.309200px;}
.ls1a{letter-spacing:14.544600px;}
.ls1b{letter-spacing:15.282600px;}
.ls10{letter-spacing:20.988000px;}
.ls1c{letter-spacing:25.510200px;}
.ls0{letter-spacing:55.200000px;}
.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;}
}
.ws84{word-spacing:-32.466096px;}
.ws89{word-spacing:-32.359824px;}
.ws88{word-spacing:-32.306688px;}
.ws86{word-spacing:-32.200416px;}
.ws99{word-spacing:-32.147280px;}
.ws7e{word-spacing:-29.058912px;}
.ws80{word-spacing:-28.963008px;}
.ws69{word-spacing:-28.858752px;}
.ws6a{word-spacing:-28.811520px;}
.ws64{word-spacing:-28.764288px;}
.ws66{word-spacing:-28.717056px;}
.ws65{word-spacing:-28.622592px;}
.ws6f{word-spacing:-28.575360px;}
.ws8a{word-spacing:-23.082278px;}
.ws8b{word-spacing:-23.058754px;}
.ws8c{word-spacing:-22.789344px;}
.ws70{word-spacing:-19.856333px;}
.ws9e{word-spacing:-19.203350px;}
.ws8e{word-spacing:-18.932357px;}
.ws8d{word-spacing:-18.870830px;}
.ws90{word-spacing:-18.618854px;}
.ws8f{word-spacing:-18.525048px;}
.ws93{word-spacing:-17.816501px;}
.ws92{word-spacing:-17.694288px;}
.ws75{word-spacing:-17.556552px;}
.ws91{word-spacing:-17.435688px;}
.ws74{word-spacing:-17.386099px;}
.ws94{word-spacing:-17.305253px;}
.ws76{word-spacing:-17.211341px;}
.ws95{word-spacing:-17.168242px;}
.ws98{word-spacing:-16.971638px;}
.ws77{word-spacing:-16.894886px;}
.ws97{word-spacing:-16.875994px;}
.ws96{word-spacing:-16.551048px;}
.wsf8{word-spacing:-16.140000px;}
.ws9b{word-spacing:-15.303168px;}
.ws9d{word-spacing:-15.250032px;}
.ws82{word-spacing:-15.218150px;}
.ws81{word-spacing:-15.143760px;}
.wsc3{word-spacing:-15.000000px;}
.ws9c{word-spacing:-14.984352px;}
.wsf7{word-spacing:-14.820000px;}
.ws9a{word-spacing:-14.771808px;}
.ws101{word-spacing:-14.400000px;}
.ws87{word-spacing:-13.449096px;}
.ws71{word-spacing:-13.413888px;}
.ws7f{word-spacing:-13.330656px;}
.ws73{word-spacing:-13.319424px;}
.ws83{word-spacing:-13.252118px;}
.ws85{word-spacing:-13.212269px;}
.ws7d{word-spacing:-13.138848px;}
.ws72{word-spacing:-13.130496px;}
.ws79{word-spacing:-12.103344px;}
.ws78{word-spacing:-12.060576px;}
.ws7a{word-spacing:-11.889504px;}
.ws63{word-spacing:-11.713536px;}
.ws5f{word-spacing:-10.758528px;}
.ws5e{word-spacing:-10.720512px;}
.ws60{word-spacing:-10.568448px;}
.wsa1{word-spacing:-9.904550px;}
.wsa2{word-spacing:-9.798278px;}
.ws0{word-spacing:-8.006400px;}
.ws68{word-spacing:-7.670477px;}
.ws67{word-spacing:-7.372915px;}
.ws6d{word-spacing:-6.788952px;}
.wsa0{word-spacing:-6.764213px;}
.ws9f{word-spacing:-6.716390px;}
.ws6e{word-spacing:-6.579418px;}
.ws6c{word-spacing:-6.423552px;}
.ws6b{word-spacing:-6.300749px;}
.wsff{word-spacing:-3.720000px;}
.wsf{word-spacing:-1.500000px;}
.ws14{word-spacing:-1.440000px;}
.ws2e{word-spacing:-1.260000px;}
.wsc5{word-spacing:-1.200000px;}
.ws103{word-spacing:-1.080000px;}
.ws4f{word-spacing:-1.020000px;}
.wsc9{word-spacing:-0.960000px;}
.ws4c{word-spacing:-0.900000px;}
.wscc{word-spacing:-0.840000px;}
.wsfc{word-spacing:-0.720000px;}
.wse8{word-spacing:-0.660000px;}
.wsa8{word-spacing:-0.600000px;}
.ws3d{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.420000px;}
.ws4{word-spacing:-0.378000px;}
.wsec{word-spacing:-0.360000px;}
.ws2d{word-spacing:-0.300000px;}
.ws4b{word-spacing:-0.240000px;}
.wsa5{word-spacing:-0.212544px;}
.ws1e{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa4{word-spacing:0.053136px;}
.ws2f{word-spacing:0.060000px;}
.ws104{word-spacing:0.120000px;}
.wsa3{word-spacing:0.180000px;}
.ws26{word-spacing:0.240000px;}
.ws5{word-spacing:0.270000px;}
.ws45{word-spacing:0.360000px;}
.ws2a{word-spacing:0.420000px;}
.wsc0{word-spacing:0.480000px;}
.ws33{word-spacing:0.540000px;}
.wsb5{word-spacing:0.600000px;}
.ws3e{word-spacing:0.660000px;}
.wsea{word-spacing:0.720000px;}
.ws27{word-spacing:0.780000px;}
.ws23{word-spacing:0.840000px;}
.wsb0{word-spacing:0.900000px;}
.wsd9{word-spacing:0.960000px;}
.wsca{word-spacing:1.020000px;}
.ws3b{word-spacing:1.080000px;}
.ws55{word-spacing:1.140000px;}
.ws20{word-spacing:1.200000px;}
.wsbd{word-spacing:1.260000px;}
.ws59{word-spacing:1.320000px;}
.wsbf{word-spacing:1.380000px;}
.ws3a{word-spacing:1.440000px;}
.wse7{word-spacing:1.500000px;}
.ws1a{word-spacing:1.560000px;}
.wscd{word-spacing:1.620000px;}
.wse9{word-spacing:1.680000px;}
.ws5c{word-spacing:1.740000px;}
.ws5b{word-spacing:1.800000px;}
.ws1f{word-spacing:1.860000px;}
.wsd1{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws1c{word-spacing:2.040000px;}
.wsc7{word-spacing:2.100000px;}
.ws3c{word-spacing:2.160000px;}
.ws1b{word-spacing:2.220000px;}
.ws9{word-spacing:2.280000px;}
.wsb3{word-spacing:2.340000px;}
.ws3{word-spacing:2.400000px;}
.ws35{word-spacing:2.460000px;}
.wsa6{word-spacing:2.520000px;}
.wsc{word-spacing:2.580000px;}
.ws50{word-spacing:2.640000px;}
.ws15{word-spacing:2.688000px;}
.ws37{word-spacing:2.700000px;}
.ws5d{word-spacing:2.760000px;}
.wsaa{word-spacing:2.820000px;}
.wsc4{word-spacing:2.880000px;}
.ws18{word-spacing:3.000000px;}
.ws58{word-spacing:3.060000px;}
.ws28{word-spacing:3.120000px;}
.wse2{word-spacing:3.180000px;}
.ws12{word-spacing:3.240000px;}
.ws10{word-spacing:3.300000px;}
.ws53{word-spacing:3.360000px;}
.wsf0{word-spacing:3.420000px;}
.wsd7{word-spacing:3.480000px;}
.wsc2{word-spacing:3.540000px;}
.wsd{word-spacing:3.600000px;}
.ws48{word-spacing:3.660000px;}
.wsd0{word-spacing:3.720000px;}
.ws40{word-spacing:3.780000px;}
.wsde{word-spacing:3.840000px;}
.wsda{word-spacing:3.900000px;}
.wsd8{word-spacing:3.960000px;}
.wsd4{word-spacing:4.020000px;}
.wsbe{word-spacing:4.140000px;}
.ws25{word-spacing:4.200000px;}
.wsef{word-spacing:4.260000px;}
.wsbc{word-spacing:4.320000px;}
.wsa7{word-spacing:4.380000px;}
.wsbb{word-spacing:4.440000px;}
.ws38{word-spacing:4.500000px;}
.wsdc{word-spacing:4.560000px;}
.wsb2{word-spacing:4.620000px;}
.ws22{word-spacing:4.680000px;}
.wscf{word-spacing:4.740000px;}
.wsc6{word-spacing:4.800000px;}
.ws56{word-spacing:4.860000px;}
.wsf5{word-spacing:4.920000px;}
.wsb6{word-spacing:4.980000px;}
.wsa9{word-spacing:5.040000px;}
.ws30{word-spacing:5.160000px;}
.wsb8{word-spacing:5.220000px;}
.wsc8{word-spacing:5.280000px;}
.wscb{word-spacing:5.400000px;}
.ws29{word-spacing:5.520000px;}
.wsb{word-spacing:5.580000px;}
.ws52{word-spacing:5.640000px;}
.wsce{word-spacing:5.700000px;}
.ws108{word-spacing:5.760000px;}
.ws57{word-spacing:5.820000px;}
.ws21{word-spacing:5.880000px;}
.wsf1{word-spacing:5.940000px;}
.wsf3{word-spacing:6.000000px;}
.ws5a{word-spacing:6.060000px;}
.ws31{word-spacing:6.120000px;}
.ws100{word-spacing:6.240000px;}
.wse4{word-spacing:6.300000px;}
.ws4a{word-spacing:6.360000px;}
.wsd3{word-spacing:6.420000px;}
.wsdd{word-spacing:6.480000px;}
.wsba{word-spacing:6.540000px;}
.ws13{word-spacing:6.600000px;}
.wsad{word-spacing:6.660000px;}
.wsd5{word-spacing:6.720000px;}
.ws19{word-spacing:6.840000px;}
.ws36{word-spacing:6.900000px;}
.ws6{word-spacing:6.960000px;}
.wsb9{word-spacing:7.020000px;}
.wse0{word-spacing:7.080000px;}
.ws2b{word-spacing:7.140000px;}
.wsab{word-spacing:7.200000px;}
.ws4e{word-spacing:7.260000px;}
.ws44{word-spacing:7.320000px;}
.wsf6{word-spacing:7.380000px;}
.wsd2{word-spacing:7.440000px;}
.wse6{word-spacing:7.500000px;}
.wsdf{word-spacing:7.560000px;}
.ws51{word-spacing:7.620000px;}
.ws2c{word-spacing:7.740000px;}
.ws11{word-spacing:7.920000px;}
.ws54{word-spacing:7.980000px;}
.wsd6{word-spacing:8.040000px;}
.wsb1{word-spacing:8.220000px;}
.ws47{word-spacing:8.340000px;}
.wsb7{word-spacing:8.400000px;}
.ws1d{word-spacing:8.460000px;}
.ws4d{word-spacing:8.520000px;}
.ws107{word-spacing:8.760000px;}
.wsf2{word-spacing:8.820000px;}
.wsb4{word-spacing:8.880000px;}
.wsc1{word-spacing:8.940000px;}
.ws7{word-spacing:9.060000px;}
.wse{word-spacing:9.180000px;}
.wse1{word-spacing:9.240000px;}
.ws42{word-spacing:9.300000px;}
.ws102{word-spacing:9.360000px;}
.wsee{word-spacing:9.420000px;}
.wsdb{word-spacing:9.540000px;}
.ws46{word-spacing:9.600000px;}
.wsf9{word-spacing:9.780000px;}
.wsa{word-spacing:9.960000px;}
.wse5{word-spacing:10.080000px;}
.ws3f{word-spacing:10.140000px;}
.ws8{word-spacing:10.320000px;}
.ws43{word-spacing:10.380000px;}
.wsed{word-spacing:10.740000px;}
.wsaf{word-spacing:10.860000px;}
.ws49{word-spacing:11.040000px;}
.wsfa{word-spacing:11.160000px;}
.ws109{word-spacing:11.220000px;}
.wsae{word-spacing:11.340000px;}
.wse3{word-spacing:11.580000px;}
.ws17{word-spacing:11.700000px;}
.ws105{word-spacing:12.000000px;}
.wsfd{word-spacing:12.120000px;}
.wsf4{word-spacing:12.180000px;}
.wseb{word-spacing:12.600000px;}
.ws39{word-spacing:12.720000px;}
.ws10a{word-spacing:12.780000px;}
.wsac{word-spacing:15.000000px;}
.ws106{word-spacing:16.320000px;}
.wsfe{word-spacing:20.820000px;}
.wsfb{word-spacing:22.140000px;}
.ws7c{word-spacing:32.677800px;}
.ws61{word-spacing:49.459200px;}
.ws62{word-spacing:66.259200px;}
.ws7b{word-spacing:580.930800px;}
.ws16{word-spacing:1309.329000px;}
._6{margin-left:-11.060400px;}
._5{margin-left:-8.517600px;}
._e{margin-left:-7.116000px;}
._8{margin-left:-6.048000px;}
._7{margin-left:-5.031600px;}
._3{margin-left:-3.094200px;}
._2{margin-left:-1.101600px;}
._4{width:1.134000px;}
._9{width:2.973600px;}
._1{width:4.330800px;}
._b{width:5.716224px;}
._0{width:6.750000px;}
._a{width:7.946410px;}
._d{width:15.772531px;}
._c{width:57.088200px;}
.fc4{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs8{font-size:33.600000px;}
.fs4{font-size:36.000000px;}
.fse{font-size:37.800000px;}
.fs6{font-size:38.016000px;}
.fsb{font-size:42.768000px;}
.fs9{font-size:47.232000px;}
.fsf{font-size:47.952000px;}
.fs1{font-size:48.000000px;}
.fsd{font-size:48.600000px;}
.fs7{font-size:51.840000px;}
.fs11{font-size:53.136000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:57.600000px;}
.fsc{font-size:58.320000px;}
.fs0{font-size:60.000000px;}
.fs10{font-size:64.800000px;}
.fs3{font-size:84.000000px;}
.yaf{bottom:-484.366800px;}
.yd2{bottom:-406.930800px;}
.yd1{bottom:-390.730800px;}
.yd0{bottom:-374.530800px;}
.ycf{bottom:-358.330800px;}
.yce{bottom:-342.130800px;}
.ycd{bottom:-325.930800px;}
.ycc{bottom:-309.730800px;}
.ycb{bottom:-293.530800px;}
.yca{bottom:-277.330800px;}
.yc9{bottom:-261.130800px;}
.yc8{bottom:-244.930800px;}
.yc7{bottom:-228.406800px;}
.yc6{bottom:-209.614800px;}
.yc5{bottom:-193.414800px;}
.yc4{bottom:-177.214800px;}
.yc3{bottom:-161.014800px;}
.yc2{bottom:-144.814800px;}
.yc1{bottom:-128.614800px;}
.yc0{bottom:-112.414800px;}
.ybf{bottom:-96.214800px;}
.ybe{bottom:-80.014800px;}
.ybd{bottom:-63.814800px;}
.y7d{bottom:-50.574750px;}
.ybc{bottom:-47.938800px;}
.ybb{bottom:-32.386950px;}
.yba{bottom:-16.186800px;}
.y0{bottom:0.000000px;}
.y2{bottom:63.779550px;}
.yfa{bottom:106.207500px;}
.y123{bottom:106.237200px;}
.y48{bottom:106.942200px;}
.y73{bottom:107.557500px;}
.y1f{bottom:110.259150px;}
.y79{bottom:120.037800px;}
.yf9{bottom:124.657500px;}
.y122{bottom:124.672200px;}
.y47{bottom:124.942200px;}
.y72{bottom:125.557500px;}
.yad{bottom:135.070500px;}
.y46{bottom:142.942200px;}
.y121{bottom:143.107200px;}
.yf8{bottom:143.107500px;}
.y71{bottom:143.557500px;}
.y45{bottom:160.942200px;}
.y120{bottom:161.542200px;}
.yf7{bottom:161.557500px;}
.y1e{bottom:162.481050px;}
.y44{bottom:178.942200px;}
.y70{bottom:179.557500px;}
.y11f{bottom:179.977200px;}
.yf6{bottom:180.007500px;}
.y1d{bottom:180.481050px;}
.yb0{bottom:182.268600px;}
.y43{bottom:196.942200px;}
.y11e{bottom:198.412200px;}
.yf5{bottom:198.457500px;}
.y1c{bottom:198.481050px;}
.yb1{bottom:208.366800px;}
.y42{bottom:214.942200px;}
.y6f{bottom:215.557500px;}
.y1b{bottom:216.481050px;}
.y11d{bottom:216.847200px;}
.yf4{bottom:216.907500px;}
.y41{bottom:232.942200px;}
.y6e{bottom:233.557500px;}
.yb2{bottom:234.465000px;}
.y1a{bottom:234.481050px;}
.y125{bottom:235.282200px;}
.yf3{bottom:235.357500px;}
.y40{bottom:250.942200px;}
.y6d{bottom:251.557500px;}
.yac{bottom:251.825250px;}
.y19{bottom:252.481050px;}
.y11c{bottom:253.717200px;}
.yf2{bottom:253.807500px;}
.yb9{bottom:259.213050px;}
.yb3{bottom:260.563200px;}
.yab{bottom:266.225250px;}
.y3f{bottom:268.942200px;}
.y6c{bottom:269.557500px;}
.y18{bottom:270.481050px;}
.y124{bottom:272.152200px;}
.yf1{bottom:272.257500px;}
.yb8{bottom:275.413050px;}
.yaa{bottom:280.625250px;}
.yb4{bottom:286.661400px;}
.y3e{bottom:286.942200px;}
.y6b{bottom:287.557500px;}
.y17{bottom:288.481050px;}
.y11b{bottom:290.587200px;}
.yf0{bottom:290.707500px;}
.ya9{bottom:295.025250px;}
.y3d{bottom:304.942200px;}
.y6a{bottom:305.557500px;}
.y16{bottom:306.481050px;}
.y11a{bottom:309.022200px;}
.yef{bottom:309.157500px;}
.ya8{bottom:309.425250px;}
.yb5{bottom:312.759600px;}
.y3c{bottom:322.942200px;}
.y69{bottom:323.557500px;}
.ya7{bottom:323.825250px;}
.yae{bottom:324.013200px;}
.y15{bottom:324.481050px;}
.y119{bottom:327.457200px;}
.yee{bottom:327.607500px;}
.ya6{bottom:337.649250px;}
.yb6{bottom:338.857800px;}
.y3b{bottom:340.942200px;}
.y68{bottom:341.557500px;}
.y14{bottom:342.481050px;}
.y118{bottom:345.892200px;}
.yed{bottom:346.057500px;}
.ya5{bottom:351.473250px;}
.y3a{bottom:358.942200px;}
.y67{bottom:359.557500px;}
.y13{bottom:360.481050px;}
.y117{bottom:364.327200px;}
.yec{bottom:364.507500px;}
.yb7{bottom:364.956000px;}
.ya4{bottom:366.161250px;}
.y39{bottom:376.942200px;}
.y66{bottom:377.557500px;}
.y12{bottom:378.481050px;}
.ya3{bottom:379.985250px;}
.y116{bottom:382.762200px;}
.yeb{bottom:382.957500px;}
.ya2{bottom:394.385250px;}
.y38{bottom:394.942200px;}
.y65{bottom:395.557500px;}
.y11{bottom:396.481050px;}
.y115{bottom:401.197200px;}
.yea{bottom:401.407500px;}
.ya1{bottom:408.785100px;}
.y78{bottom:410.490300px;}
.y37{bottom:412.942200px;}
.y64{bottom:413.557500px;}
.y10{bottom:414.481050px;}
.y114{bottom:419.632200px;}
.ye9{bottom:419.857500px;}
.ya0{bottom:423.185100px;}
.y7a{bottom:423.648000px;}
.y36{bottom:430.942200px;}
.y63{bottom:431.557500px;}
.y9f{bottom:437.585250px;}
.y113{bottom:438.067200px;}
.ye8{bottom:438.307500px;}
.y77{bottom:448.942200px;}
.y62{bottom:449.557500px;}
.yf{bottom:450.481050px;}
.y9e{bottom:451.985250px;}
.y112{bottom:456.502200px;}
.ye7{bottom:456.757500px;}
.y8a{bottom:465.627600px;}
.y9d{bottom:466.385250px;}
.y35{bottom:466.942200px;}
.y61{bottom:467.557500px;}
.y111{bottom:474.937200px;}
.ye6{bottom:475.207500px;}
.y9c{bottom:480.785100px;}
.y76{bottom:484.942200px;}
.y60{bottom:485.557500px;}
.y8b{bottom:492.003600px;}
.y83{bottom:493.095600px;}
.y110{bottom:493.372200px;}
.ye5{bottom:493.657500px;}
.y9b{bottom:495.185250px;}
.y34{bottom:502.942200px;}
.y5f{bottom:503.557500px;}
.y89{bottom:503.646000px;}
.y9a{bottom:509.585250px;}
.y10f{bottom:511.807200px;}
.ye4{bottom:512.107500px;}
.y88{bottom:514.196400px;}
.y8c{bottom:518.379600px;}
.y84{bottom:519.471600px;}
.y33{bottom:520.942200px;}
.y5e{bottom:521.557500px;}
.ye{bottom:522.481050px;}
.y99{bottom:523.985250px;}
.y87{bottom:524.746800px;}
.y10e{bottom:530.242200px;}
.ye3{bottom:530.557500px;}
.y86{bottom:535.297200px;}
.y98{bottom:538.385250px;}
.y32{bottom:538.942200px;}
.y5d{bottom:539.557500px;}
.yd{bottom:541.133100px;}
.y8d{bottom:544.755600px;}
.y10d{bottom:548.677200px;}
.ye2{bottom:549.007500px;}
.y97{bottom:552.785100px;}
.y82{bottom:556.406400px;}
.y31{bottom:556.942200px;}
.y5c{bottom:557.557500px;}
.y7f{bottom:566.948400px;}
.y10c{bottom:567.112200px;}
.y96{bottom:567.185250px;}
.ye1{bottom:567.457500px;}
.y8e{bottom:571.131600px;}
.y30{bottom:574.942200px;}
.y5b{bottom:575.557500px;}
.y95{bottom:581.585250px;}
.y81{bottom:582.782400px;}
.yc{bottom:584.328000px;}
.y10b{bottom:585.547200px;}
.ye0{bottom:585.907500px;}
.y2f{bottom:592.942200px;}
.y5a{bottom:593.557500px;}
.y94{bottom:595.985250px;}
.y8f{bottom:597.507600px;}
.y10a{bottom:603.982200px;}
.ydf{bottom:604.357500px;}
.yb{bottom:609.528000px;}
.y93{bottom:610.385250px;}
.y2e{bottom:610.942200px;}
.y59{bottom:611.557500px;}
.y85{bottom:614.433600px;}
.y109{bottom:622.417200px;}
.yde{bottom:622.807500px;}
.y90{bottom:623.883600px;}
.y92{bottom:624.785100px;}
.y80{bottom:624.984000px;}
.y2d{bottom:628.942200px;}
.y58{bottom:629.557500px;}
.y7e{bottom:630.259200px;}
.ya{bottom:634.728000px;}
.y108{bottom:640.852200px;}
.ydd{bottom:641.257500px;}
.y2c{bottom:646.942200px;}
.y57{bottom:647.557500px;}
.y91{bottom:650.259600px;}
.y7c{bottom:655.025250px;}
.y107{bottom:659.287200px;}
.ydc{bottom:659.707500px;}
.y2b{bottom:664.942200px;}
.y56{bottom:665.557500px;}
.y7b{bottom:667.985250px;}
.y106{bottom:677.722200px;}
.y9{bottom:679.185000px;}
.y2a{bottom:682.942200px;}
.y55{bottom:683.557500px;}
.y105{bottom:696.157200px;}
.ydb{bottom:696.607500px;}
.y29{bottom:700.942200px;}
.y54{bottom:701.557500px;}
.y8{bottom:704.385000px;}
.y104{bottom:714.592200px;}
.y28{bottom:718.942200px;}
.y53{bottom:719.557500px;}
.y7{bottom:729.585000px;}
.y103{bottom:733.027200px;}
.yda{bottom:733.507500px;}
.y27{bottom:736.942200px;}
.y52{bottom:737.557500px;}
.y102{bottom:751.462200px;}
.yd9{bottom:751.957500px;}
.y26{bottom:754.942200px;}
.y51{bottom:755.557500px;}
.y101{bottom:769.897200px;}
.yd8{bottom:770.407500px;}
.y25{bottom:772.942200px;}
.y50{bottom:773.557500px;}
.y100{bottom:788.332200px;}
.yd7{bottom:788.857500px;}
.y24{bottom:790.942200px;}
.y4f{bottom:791.557500px;}
.yff{bottom:806.767200px;}
.yd6{bottom:807.307500px;}
.y75{bottom:808.942200px;}
.y4e{bottom:809.557500px;}
.yfe{bottom:825.202200px;}
.yd5{bottom:825.757500px;}
.y23{bottom:826.942200px;}
.y4d{bottom:827.557500px;}
.yfd{bottom:843.637200px;}
.yd4{bottom:844.207500px;}
.y74{bottom:844.942200px;}
.y4c{bottom:845.557500px;}
.yfc{bottom:862.072200px;}
.yd3{bottom:862.657500px;}
.y22{bottom:862.942200px;}
.y4b{bottom:863.557500px;}
.yfb{bottom:880.507200px;}
.y21{bottom:880.942200px;}
.y6{bottom:898.429350px;}
.y20{bottom:898.942200px;}
.y4a{bottom:899.557500px;}
.y5{bottom:914.629350px;}
.y4{bottom:930.829350px;}
.y1{bottom:946.247700px;}
.y3{bottom:947.029350px;}
.y49{bottom:948.414300px;}
.hb{height:21.600000px;}
.h11{height:24.527344px;}
.hf{height:27.583875px;}
.h10{height:29.943563px;}
.h16{height:33.686508px;}
.h12{height:34.478437px;}
.hc{height:34.546875px;}
.h3{height:34.828125px;}
.h18{height:35.004023px;}
.h14{height:35.424000px;}
.h17{height:35.477051px;}
.h8{height:36.000000px;}
.h13{height:38.390625px;}
.h1b{height:38.788242px;}
.h5{height:39.313477px;}
.h4{height:39.339844px;}
.h1a{height:39.852000px;}
.h19{height:43.189453px;}
.ha{height:43.535156px;}
.h9{height:45.000000px;}
.h7{height:46.800000px;}
.hd{height:49.939453px;}
.h2{height:55.488281px;}
.h6{height:63.000000px;}
.he{height:243.910500px;}
.h15{height:246.190500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:436.534500px;}
.w3{width:501.307500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x14{left:2.362650px;}
.x27{left:9.562500px;}
.x2d{left:13.547700px;}
.x24{left:19.402500px;}
.x30{left:21.647550px;}
.x25{left:25.342350px;}
.x2f{left:32.717550px;}
.x3{left:76.535400px;}
.x8{left:83.277750px;}
.x4{left:92.349750px;}
.xd{left:97.799400px;}
.x5{left:101.946750px;}
.x28{left:110.763000px;}
.x2c{left:124.653750px;}
.x7{left:126.684750px;}
.x6{left:129.540750px;}
.x2b{left:130.728750px;}
.x13{left:143.149500px;}
.xb{left:158.161500px;}
.x23{left:160.257600px;}
.x22{left:165.054000px;}
.x2e{left:174.415500px;}
.x15{left:178.951500px;}
.x16{left:185.440800px;}
.x11{left:191.696400px;}
.x26{left:197.250150px;}
.x2a{left:212.210100px;}
.x17{left:213.438000px;}
.xa{left:227.382600px;}
.x9{left:237.711750px;}
.x18{left:241.435200px;}
.x12{left:249.381900px;}
.x19{left:269.432400px;}
.x32{left:275.860200px;}
.xf{left:277.550400px;}
.x1a{left:297.429600px;}
.x2{left:307.488150px;}
.x29{left:308.831700px;}
.x33{left:317.750400px;}
.x34{left:321.185400px;}
.x31{left:323.545200px;}
.xc{left:328.934400px;}
.xe{left:330.800400px;}
.x10{left:334.310400px;}
.x1b{left:355.658400px;}
.x1c{left:383.655600px;}
.x1d{left:409.426800px;}
.x1e{left:438.003600px;}
.x1f{left:467.655600px;}
.x20{left:495.652800px;}
.x21{left:523.650000px;}
.x1{left:623.781600px;}
@media print{
.v5{vertical-align:-18.756267pt;}
.v2{vertical-align:-14.080000pt;}
.v4{vertical-align:-4.096000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.566933pt;}
.v3{vertical-align:7.697600pt;}
.v1{vertical-align:17.600000pt;}
.lsb{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls3a{letter-spacing:-1.013333pt;}
.ls42{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.853333pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.298368pt;}
.ls32{letter-spacing:-0.283392pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.251904pt;}
.ls2{letter-spacing:-0.240000pt;}
.ls2e{letter-spacing:-0.236160pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.213120pt;}
.ls21{letter-spacing:-0.209920pt;}
.ls2a{letter-spacing:-0.170496pt;}
.ls24{letter-spacing:-0.167936pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.141696pt;}
.ls22{letter-spacing:-0.125952pt;}
.ls3{letter-spacing:-0.106667pt;}
.ls2f{letter-spacing:-0.094464pt;}
.ls20{letter-spacing:-0.083968pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls31{letter-spacing:-0.047232pt;}
.ls23{letter-spacing:-0.041984pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.056277pt;}
.ls36{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.127872pt;}
.ls1e{letter-spacing:0.135168pt;}
.ls28{letter-spacing:0.152064pt;}
.ls27{letter-spacing:0.167936pt;}
.ls1f{letter-spacing:0.168960pt;}
.ls34{letter-spacing:0.188928pt;}
.ls29{letter-spacing:0.190080pt;}
.ls3e{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.251904pt;}
.ls37{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.330624pt;}
.ls35{letter-spacing:0.425088pt;}
.ls14{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.457600pt;}
.ls33{letter-spacing:0.472320pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls41{letter-spacing:0.746667pt;}
.ls40{letter-spacing:1.013333pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls12{letter-spacing:2.356267pt;}
.ls11{letter-spacing:2.791467pt;}
.ls15{letter-spacing:3.411200pt;}
.lse{letter-spacing:4.056533pt;}
.ls16{letter-spacing:10.046933pt;}
.ls17{letter-spacing:10.200000pt;}
.ls19{letter-spacing:11.830400pt;}
.ls1a{letter-spacing:12.928533pt;}
.ls1b{letter-spacing:13.584533pt;}
.ls10{letter-spacing:18.656000pt;}
.ls1c{letter-spacing:22.675733pt;}
.ls0{letter-spacing:49.066667pt;}
.ws84{word-spacing:-28.858752pt;}
.ws89{word-spacing:-28.764288pt;}
.ws88{word-spacing:-28.717056pt;}
.ws86{word-spacing:-28.622592pt;}
.ws99{word-spacing:-28.575360pt;}
.ws7e{word-spacing:-25.830144pt;}
.ws80{word-spacing:-25.744896pt;}
.ws69{word-spacing:-25.652224pt;}
.ws6a{word-spacing:-25.610240pt;}
.ws64{word-spacing:-25.568256pt;}
.ws66{word-spacing:-25.526272pt;}
.ws65{word-spacing:-25.442304pt;}
.ws6f{word-spacing:-25.400320pt;}
.ws8a{word-spacing:-20.517581pt;}
.ws8b{word-spacing:-20.496670pt;}
.ws8c{word-spacing:-20.257195pt;}
.ws70{word-spacing:-17.650074pt;}
.ws9e{word-spacing:-17.069645pt;}
.ws8e{word-spacing:-16.828762pt;}
.ws8d{word-spacing:-16.774071pt;}
.ws90{word-spacing:-16.550093pt;}
.ws8f{word-spacing:-16.466709pt;}
.ws93{word-spacing:-15.836890pt;}
.ws92{word-spacing:-15.728256pt;}
.ws75{word-spacing:-15.605824pt;}
.ws91{word-spacing:-15.498389pt;}
.ws74{word-spacing:-15.454310pt;}
.ws94{word-spacing:-15.382447pt;}
.ws76{word-spacing:-15.298970pt;}
.ws95{word-spacing:-15.260659pt;}
.ws98{word-spacing:-15.085901pt;}
.ws77{word-spacing:-15.017677pt;}
.ws97{word-spacing:-15.000883pt;}
.ws96{word-spacing:-14.712043pt;}
.wsf8{word-spacing:-14.346667pt;}
.ws9b{word-spacing:-13.602816pt;}
.ws9d{word-spacing:-13.555584pt;}
.ws82{word-spacing:-13.527245pt;}
.ws81{word-spacing:-13.461120pt;}
.wsc3{word-spacing:-13.333333pt;}
.ws9c{word-spacing:-13.319424pt;}
.wsf7{word-spacing:-13.173333pt;}
.ws9a{word-spacing:-13.130496pt;}
.ws101{word-spacing:-12.800000pt;}
.ws87{word-spacing:-11.954752pt;}
.ws71{word-spacing:-11.923456pt;}
.ws7f{word-spacing:-11.849472pt;}
.ws73{word-spacing:-11.839488pt;}
.ws83{word-spacing:-11.779661pt;}
.ws85{word-spacing:-11.744239pt;}
.ws7d{word-spacing:-11.678976pt;}
.ws72{word-spacing:-11.671552pt;}
.ws79{word-spacing:-10.758528pt;}
.ws78{word-spacing:-10.720512pt;}
.ws7a{word-spacing:-10.568448pt;}
.ws63{word-spacing:-10.412032pt;}
.ws5f{word-spacing:-9.563136pt;}
.ws5e{word-spacing:-9.529344pt;}
.ws60{word-spacing:-9.394176pt;}
.wsa1{word-spacing:-8.804045pt;}
.wsa2{word-spacing:-8.709581pt;}
.ws0{word-spacing:-7.116800pt;}
.ws68{word-spacing:-6.818202pt;}
.ws67{word-spacing:-6.553702pt;}
.ws6d{word-spacing:-6.034624pt;}
.wsa0{word-spacing:-6.012634pt;}
.ws9f{word-spacing:-5.970125pt;}
.ws6e{word-spacing:-5.848371pt;}
.ws6c{word-spacing:-5.709824pt;}
.ws6b{word-spacing:-5.600666pt;}
.wsff{word-spacing:-3.306667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws14{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-1.120000pt;}
.wsc5{word-spacing:-1.066667pt;}
.ws103{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.906667pt;}
.wsc9{word-spacing:-0.853333pt;}
.ws4c{word-spacing:-0.800000pt;}
.wscc{word-spacing:-0.746667pt;}
.wsfc{word-spacing:-0.640000pt;}
.wse8{word-spacing:-0.586667pt;}
.wsa8{word-spacing:-0.533333pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.373333pt;}
.ws4{word-spacing:-0.336000pt;}
.wsec{word-spacing:-0.320000pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws4b{word-spacing:-0.213333pt;}
.wsa5{word-spacing:-0.188928pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.047232pt;}
.ws2f{word-spacing:0.053333pt;}
.ws104{word-spacing:0.106667pt;}
.wsa3{word-spacing:0.160000pt;}
.ws26{word-spacing:0.213333pt;}
.ws5{word-spacing:0.240000pt;}
.ws45{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.373333pt;}
.wsc0{word-spacing:0.426667pt;}
.ws33{word-spacing:0.480000pt;}
.wsb5{word-spacing:0.533333pt;}
.ws3e{word-spacing:0.586667pt;}
.wsea{word-spacing:0.640000pt;}
.ws27{word-spacing:0.693333pt;}
.ws23{word-spacing:0.746667pt;}
.wsb0{word-spacing:0.800000pt;}
.wsd9{word-spacing:0.853333pt;}
.wsca{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.960000pt;}
.ws55{word-spacing:1.013333pt;}
.ws20{word-spacing:1.066667pt;}
.wsbd{word-spacing:1.120000pt;}
.ws59{word-spacing:1.173333pt;}
.wsbf{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.280000pt;}
.wse7{word-spacing:1.333333pt;}
.ws1a{word-spacing:1.386667pt;}
.wscd{word-spacing:1.440000pt;}
.wse9{word-spacing:1.493333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws5b{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.653333pt;}
.wsd1{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws1c{word-spacing:1.813333pt;}
.wsc7{word-spacing:1.866667pt;}
.ws3c{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.973333pt;}
.ws9{word-spacing:2.026667pt;}
.wsb3{word-spacing:2.080000pt;}
.ws3{word-spacing:2.133333pt;}
.ws35{word-spacing:2.186667pt;}
.wsa6{word-spacing:2.240000pt;}
.wsc{word-spacing:2.293333pt;}
.ws50{word-spacing:2.346667pt;}
.ws15{word-spacing:2.389333pt;}
.ws37{word-spacing:2.400000pt;}
.ws5d{word-spacing:2.453333pt;}
.wsaa{word-spacing:2.506667pt;}
.wsc4{word-spacing:2.560000pt;}
.ws18{word-spacing:2.666667pt;}
.ws58{word-spacing:2.720000pt;}
.ws28{word-spacing:2.773333pt;}
.wse2{word-spacing:2.826667pt;}
.ws12{word-spacing:2.880000pt;}
.ws10{word-spacing:2.933333pt;}
.ws53{word-spacing:2.986667pt;}
.wsf0{word-spacing:3.040000pt;}
.wsd7{word-spacing:3.093333pt;}
.wsc2{word-spacing:3.146667pt;}
.wsd{word-spacing:3.200000pt;}
.ws48{word-spacing:3.253333pt;}
.wsd0{word-spacing:3.306667pt;}
.ws40{word-spacing:3.360000pt;}
.wsde{word-spacing:3.413333pt;}
.wsda{word-spacing:3.466667pt;}
.wsd8{word-spacing:3.520000pt;}
.wsd4{word-spacing:3.573333pt;}
.wsbe{word-spacing:3.680000pt;}
.ws25{word-spacing:3.733333pt;}
.wsef{word-spacing:3.786667pt;}
.wsbc{word-spacing:3.840000pt;}
.wsa7{word-spacing:3.893333pt;}
.wsbb{word-spacing:3.946667pt;}
.ws38{word-spacing:4.000000pt;}
.wsdc{word-spacing:4.053333pt;}
.wsb2{word-spacing:4.106667pt;}
.ws22{word-spacing:4.160000pt;}
.wscf{word-spacing:4.213333pt;}
.wsc6{word-spacing:4.266667pt;}
.ws56{word-spacing:4.320000pt;}
.wsf5{word-spacing:4.373333pt;}
.wsb6{word-spacing:4.426667pt;}
.wsa9{word-spacing:4.480000pt;}
.ws30{word-spacing:4.586667pt;}
.wsb8{word-spacing:4.640000pt;}
.wsc8{word-spacing:4.693333pt;}
.wscb{word-spacing:4.800000pt;}
.ws29{word-spacing:4.906667pt;}
.wsb{word-spacing:4.960000pt;}
.ws52{word-spacing:5.013333pt;}
.wsce{word-spacing:5.066667pt;}
.ws108{word-spacing:5.120000pt;}
.ws57{word-spacing:5.173333pt;}
.ws21{word-spacing:5.226667pt;}
.wsf1{word-spacing:5.280000pt;}
.wsf3{word-spacing:5.333333pt;}
.ws5a{word-spacing:5.386667pt;}
.ws31{word-spacing:5.440000pt;}
.ws100{word-spacing:5.546667pt;}
.wse4{word-spacing:5.600000pt;}
.ws4a{word-spacing:5.653333pt;}
.wsd3{word-spacing:5.706667pt;}
.wsdd{word-spacing:5.760000pt;}
.wsba{word-spacing:5.813333pt;}
.ws13{word-spacing:5.866667pt;}
.wsad{word-spacing:5.920000pt;}
.wsd5{word-spacing:5.973333pt;}
.ws19{word-spacing:6.080000pt;}
.ws36{word-spacing:6.133333pt;}
.ws6{word-spacing:6.186667pt;}
.wsb9{word-spacing:6.240000pt;}
.wse0{word-spacing:6.293333pt;}
.ws2b{word-spacing:6.346667pt;}
.wsab{word-spacing:6.400000pt;}
.ws4e{word-spacing:6.453333pt;}
.ws44{word-spacing:6.506667pt;}
.wsf6{word-spacing:6.560000pt;}
.wsd2{word-spacing:6.613333pt;}
.wse6{word-spacing:6.666667pt;}
.wsdf{word-spacing:6.720000pt;}
.ws51{word-spacing:6.773333pt;}
.ws2c{word-spacing:6.880000pt;}
.ws11{word-spacing:7.040000pt;}
.ws54{word-spacing:7.093333pt;}
.wsd6{word-spacing:7.146667pt;}
.wsb1{word-spacing:7.306667pt;}
.ws47{word-spacing:7.413333pt;}
.wsb7{word-spacing:7.466667pt;}
.ws1d{word-spacing:7.520000pt;}
.ws4d{word-spacing:7.573333pt;}
.ws107{word-spacing:7.786667pt;}
.wsf2{word-spacing:7.840000pt;}
.wsb4{word-spacing:7.893333pt;}
.wsc1{word-spacing:7.946667pt;}
.ws7{word-spacing:8.053333pt;}
.wse{word-spacing:8.160000pt;}
.wse1{word-spacing:8.213333pt;}
.ws42{word-spacing:8.266667pt;}
.ws102{word-spacing:8.320000pt;}
.wsee{word-spacing:8.373333pt;}
.wsdb{word-spacing:8.480000pt;}
.ws46{word-spacing:8.533333pt;}
.wsf9{word-spacing:8.693333pt;}
.wsa{word-spacing:8.853333pt;}
.wse5{word-spacing:8.960000pt;}
.ws3f{word-spacing:9.013333pt;}
.ws8{word-spacing:9.173333pt;}
.ws43{word-spacing:9.226667pt;}
.wsed{word-spacing:9.546667pt;}
.wsaf{word-spacing:9.653333pt;}
.ws49{word-spacing:9.813333pt;}
.wsfa{word-spacing:9.920000pt;}
.ws109{word-spacing:9.973333pt;}
.wsae{word-spacing:10.080000pt;}
.wse3{word-spacing:10.293333pt;}
.ws17{word-spacing:10.400000pt;}
.ws105{word-spacing:10.666667pt;}
.wsfd{word-spacing:10.773333pt;}
.wsf4{word-spacing:10.826667pt;}
.wseb{word-spacing:11.200000pt;}
.ws39{word-spacing:11.306667pt;}
.ws10a{word-spacing:11.360000pt;}
.wsac{word-spacing:13.333333pt;}
.ws106{word-spacing:14.506667pt;}
.wsfe{word-spacing:18.506667pt;}
.wsfb{word-spacing:19.680000pt;}
.ws7c{word-spacing:29.046933pt;}
.ws61{word-spacing:43.963733pt;}
.ws62{word-spacing:58.897067pt;}
.ws7b{word-spacing:516.382933pt;}
.ws16{word-spacing:1163.848000pt;}
._6{margin-left:-9.831467pt;}
._5{margin-left:-7.571200pt;}
._e{margin-left:-6.325333pt;}
._8{margin-left:-5.376000pt;}
._7{margin-left:-4.472533pt;}
._3{margin-left:-2.750400pt;}
._2{margin-left:-0.979200pt;}
._4{width:1.008000pt;}
._9{width:2.643200pt;}
._1{width:3.849600pt;}
._b{width:5.081088pt;}
._0{width:6.000000pt;}
._a{width:7.063475pt;}
._d{width:14.020028pt;}
._c{width:50.745067pt;}
.fs5{font-size:25.600000pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:32.000000pt;}
.fse{font-size:33.600000pt;}
.fs6{font-size:33.792000pt;}
.fsb{font-size:38.016000pt;}
.fs9{font-size:41.984000pt;}
.fsf{font-size:42.624000pt;}
.fs1{font-size:42.666667pt;}
.fsd{font-size:43.200000pt;}
.fs7{font-size:46.080000pt;}
.fs11{font-size:47.232000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:51.200000pt;}
.fsc{font-size:51.840000pt;}
.fs0{font-size:53.333333pt;}
.fs10{font-size:57.600000pt;}
.fs3{font-size:74.666667pt;}
.yaf{bottom:-430.548267pt;}
.yd2{bottom:-361.716267pt;}
.yd1{bottom:-347.316267pt;}
.yd0{bottom:-332.916267pt;}
.ycf{bottom:-318.516267pt;}
.yce{bottom:-304.116267pt;}
.ycd{bottom:-289.716267pt;}
.ycc{bottom:-275.316267pt;}
.ycb{bottom:-260.916267pt;}
.yca{bottom:-246.516267pt;}
.yc9{bottom:-232.116267pt;}
.yc8{bottom:-217.716267pt;}
.yc7{bottom:-203.028267pt;}
.yc6{bottom:-186.324267pt;}
.yc5{bottom:-171.924267pt;}
.yc4{bottom:-157.524267pt;}
.yc3{bottom:-143.124267pt;}
.yc2{bottom:-128.724267pt;}
.yc1{bottom:-114.324267pt;}
.yc0{bottom:-99.924267pt;}
.ybf{bottom:-85.524267pt;}
.ybe{bottom:-71.124267pt;}
.ybd{bottom:-56.724267pt;}
.y7d{bottom:-44.955333pt;}
.ybc{bottom:-42.612267pt;}
.ybb{bottom:-28.788400pt;}
.yba{bottom:-14.388267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:56.692933pt;}
.yfa{bottom:94.406667pt;}
.y123{bottom:94.433067pt;}
.y48{bottom:95.059733pt;}
.y73{bottom:95.606667pt;}
.y1f{bottom:98.008133pt;}
.y79{bottom:106.700267pt;}
.yf9{bottom:110.806667pt;}
.y122{bottom:110.819733pt;}
.y47{bottom:111.059733pt;}
.y72{bottom:111.606667pt;}
.yad{bottom:120.062667pt;}
.y46{bottom:127.059733pt;}
.y121{bottom:127.206400pt;}
.yf8{bottom:127.206667pt;}
.y71{bottom:127.606667pt;}
.y45{bottom:143.059733pt;}
.y120{bottom:143.593067pt;}
.yf7{bottom:143.606667pt;}
.y1e{bottom:144.427600pt;}
.y44{bottom:159.059733pt;}
.y70{bottom:159.606667pt;}
.y11f{bottom:159.979733pt;}
.yf6{bottom:160.006667pt;}
.y1d{bottom:160.427600pt;}
.yb0{bottom:162.016533pt;}
.y43{bottom:175.059733pt;}
.y11e{bottom:176.366400pt;}
.yf5{bottom:176.406667pt;}
.y1c{bottom:176.427600pt;}
.yb1{bottom:185.214933pt;}
.y42{bottom:191.059733pt;}
.y6f{bottom:191.606667pt;}
.y1b{bottom:192.427600pt;}
.y11d{bottom:192.753067pt;}
.yf4{bottom:192.806667pt;}
.y41{bottom:207.059733pt;}
.y6e{bottom:207.606667pt;}
.yb2{bottom:208.413333pt;}
.y1a{bottom:208.427600pt;}
.y125{bottom:209.139733pt;}
.yf3{bottom:209.206667pt;}
.y40{bottom:223.059733pt;}
.y6d{bottom:223.606667pt;}
.yac{bottom:223.844667pt;}
.y19{bottom:224.427600pt;}
.y11c{bottom:225.526400pt;}
.yf2{bottom:225.606667pt;}
.yb9{bottom:230.411600pt;}
.yb3{bottom:231.611733pt;}
.yab{bottom:236.644667pt;}
.y3f{bottom:239.059733pt;}
.y6c{bottom:239.606667pt;}
.y18{bottom:240.427600pt;}
.y124{bottom:241.913067pt;}
.yf1{bottom:242.006667pt;}
.yb8{bottom:244.811600pt;}
.yaa{bottom:249.444667pt;}
.yb4{bottom:254.810133pt;}
.y3e{bottom:255.059733pt;}
.y6b{bottom:255.606667pt;}
.y17{bottom:256.427600pt;}
.y11b{bottom:258.299733pt;}
.yf0{bottom:258.406667pt;}
.ya9{bottom:262.244667pt;}
.y3d{bottom:271.059733pt;}
.y6a{bottom:271.606667pt;}
.y16{bottom:272.427600pt;}
.y11a{bottom:274.686400pt;}
.yef{bottom:274.806667pt;}
.ya8{bottom:275.044667pt;}
.yb5{bottom:278.008533pt;}
.y3c{bottom:287.059733pt;}
.y69{bottom:287.606667pt;}
.ya7{bottom:287.844667pt;}
.yae{bottom:288.011733pt;}
.y15{bottom:288.427600pt;}
.y119{bottom:291.073067pt;}
.yee{bottom:291.206667pt;}
.ya6{bottom:300.132667pt;}
.yb6{bottom:301.206933pt;}
.y3b{bottom:303.059733pt;}
.y68{bottom:303.606667pt;}
.y14{bottom:304.427600pt;}
.y118{bottom:307.459733pt;}
.yed{bottom:307.606667pt;}
.ya5{bottom:312.420667pt;}
.y3a{bottom:319.059733pt;}
.y67{bottom:319.606667pt;}
.y13{bottom:320.427600pt;}
.y117{bottom:323.846400pt;}
.yec{bottom:324.006667pt;}
.yb7{bottom:324.405333pt;}
.ya4{bottom:325.476667pt;}
.y39{bottom:335.059733pt;}
.y66{bottom:335.606667pt;}
.y12{bottom:336.427600pt;}
.ya3{bottom:337.764667pt;}
.y116{bottom:340.233067pt;}
.yeb{bottom:340.406667pt;}
.ya2{bottom:350.564667pt;}
.y38{bottom:351.059733pt;}
.y65{bottom:351.606667pt;}
.y11{bottom:352.427600pt;}
.y115{bottom:356.619733pt;}
.yea{bottom:356.806667pt;}
.ya1{bottom:363.364533pt;}
.y78{bottom:364.880267pt;}
.y37{bottom:367.059733pt;}
.y64{bottom:367.606667pt;}
.y10{bottom:368.427600pt;}
.y114{bottom:373.006400pt;}
.ye9{bottom:373.206667pt;}
.ya0{bottom:376.164533pt;}
.y7a{bottom:376.576000pt;}
.y36{bottom:383.059733pt;}
.y63{bottom:383.606667pt;}
.y9f{bottom:388.964667pt;}
.y113{bottom:389.393067pt;}
.ye8{bottom:389.606667pt;}
.y77{bottom:399.059733pt;}
.y62{bottom:399.606667pt;}
.yf{bottom:400.427600pt;}
.y9e{bottom:401.764667pt;}
.y112{bottom:405.779733pt;}
.ye7{bottom:406.006667pt;}
.y8a{bottom:413.891200pt;}
.y9d{bottom:414.564667pt;}
.y35{bottom:415.059733pt;}
.y61{bottom:415.606667pt;}
.y111{bottom:422.166400pt;}
.ye6{bottom:422.406667pt;}
.y9c{bottom:427.364533pt;}
.y76{bottom:431.059733pt;}
.y60{bottom:431.606667pt;}
.y8b{bottom:437.336533pt;}
.y83{bottom:438.307200pt;}
.y110{bottom:438.553067pt;}
.ye5{bottom:438.806667pt;}
.y9b{bottom:440.164667pt;}
.y34{bottom:447.059733pt;}
.y5f{bottom:447.606667pt;}
.y89{bottom:447.685333pt;}
.y9a{bottom:452.964667pt;}
.y10f{bottom:454.939733pt;}
.ye4{bottom:455.206667pt;}
.y88{bottom:457.063467pt;}
.y8c{bottom:460.781867pt;}
.y84{bottom:461.752533pt;}
.y33{bottom:463.059733pt;}
.y5e{bottom:463.606667pt;}
.ye{bottom:464.427600pt;}
.y99{bottom:465.764667pt;}
.y87{bottom:466.441600pt;}
.y10e{bottom:471.326400pt;}
.ye3{bottom:471.606667pt;}
.y86{bottom:475.819733pt;}
.y98{bottom:478.564667pt;}
.y32{bottom:479.059733pt;}
.y5d{bottom:479.606667pt;}
.yd{bottom:481.007200pt;}
.y8d{bottom:484.227200pt;}
.y10d{bottom:487.713067pt;}
.ye2{bottom:488.006667pt;}
.y97{bottom:491.364533pt;}
.y82{bottom:494.583467pt;}
.y31{bottom:495.059733pt;}
.y5c{bottom:495.606667pt;}
.y7f{bottom:503.954133pt;}
.y10c{bottom:504.099733pt;}
.y96{bottom:504.164667pt;}
.ye1{bottom:504.406667pt;}
.y8e{bottom:507.672533pt;}
.y30{bottom:511.059733pt;}
.y5b{bottom:511.606667pt;}
.y95{bottom:516.964667pt;}
.y81{bottom:518.028800pt;}
.yc{bottom:519.402667pt;}
.y10b{bottom:520.486400pt;}
.ye0{bottom:520.806667pt;}
.y2f{bottom:527.059733pt;}
.y5a{bottom:527.606667pt;}
.y94{bottom:529.764667pt;}
.y8f{bottom:531.117867pt;}
.y10a{bottom:536.873067pt;}
.ydf{bottom:537.206667pt;}
.yb{bottom:541.802667pt;}
.y93{bottom:542.564667pt;}
.y2e{bottom:543.059733pt;}
.y59{bottom:543.606667pt;}
.y85{bottom:546.163200pt;}
.y109{bottom:553.259733pt;}
.yde{bottom:553.606667pt;}
.y90{bottom:554.563200pt;}
.y92{bottom:555.364533pt;}
.y80{bottom:555.541333pt;}
.y2d{bottom:559.059733pt;}
.y58{bottom:559.606667pt;}
.y7e{bottom:560.230400pt;}
.ya{bottom:564.202667pt;}
.y108{bottom:569.646400pt;}
.ydd{bottom:570.006667pt;}
.y2c{bottom:575.059733pt;}
.y57{bottom:575.606667pt;}
.y91{bottom:578.008533pt;}
.y7c{bottom:582.244667pt;}
.y107{bottom:586.033067pt;}
.ydc{bottom:586.406667pt;}
.y2b{bottom:591.059733pt;}
.y56{bottom:591.606667pt;}
.y7b{bottom:593.764667pt;}
.y106{bottom:602.419733pt;}
.y9{bottom:603.720000pt;}
.y2a{bottom:607.059733pt;}
.y55{bottom:607.606667pt;}
.y105{bottom:618.806400pt;}
.ydb{bottom:619.206667pt;}
.y29{bottom:623.059733pt;}
.y54{bottom:623.606667pt;}
.y8{bottom:626.120000pt;}
.y104{bottom:635.193067pt;}
.y28{bottom:639.059733pt;}
.y53{bottom:639.606667pt;}
.y7{bottom:648.520000pt;}
.y103{bottom:651.579733pt;}
.yda{bottom:652.006667pt;}
.y27{bottom:655.059733pt;}
.y52{bottom:655.606667pt;}
.y102{bottom:667.966400pt;}
.yd9{bottom:668.406667pt;}
.y26{bottom:671.059733pt;}
.y51{bottom:671.606667pt;}
.y101{bottom:684.353067pt;}
.yd8{bottom:684.806667pt;}
.y25{bottom:687.059733pt;}
.y50{bottom:687.606667pt;}
.y100{bottom:700.739733pt;}
.yd7{bottom:701.206667pt;}
.y24{bottom:703.059733pt;}
.y4f{bottom:703.606667pt;}
.yff{bottom:717.126400pt;}
.yd6{bottom:717.606667pt;}
.y75{bottom:719.059733pt;}
.y4e{bottom:719.606667pt;}
.yfe{bottom:733.513067pt;}
.yd5{bottom:734.006667pt;}
.y23{bottom:735.059733pt;}
.y4d{bottom:735.606667pt;}
.yfd{bottom:749.899733pt;}
.yd4{bottom:750.406667pt;}
.y74{bottom:751.059733pt;}
.y4c{bottom:751.606667pt;}
.yfc{bottom:766.286400pt;}
.yd3{bottom:766.806667pt;}
.y22{bottom:767.059733pt;}
.y4b{bottom:767.606667pt;}
.yfb{bottom:782.673067pt;}
.y21{bottom:783.059733pt;}
.y6{bottom:798.603867pt;}
.y20{bottom:799.059733pt;}
.y4a{bottom:799.606667pt;}
.y5{bottom:813.003867pt;}
.y4{bottom:827.403867pt;}
.y1{bottom:841.109067pt;}
.y3{bottom:841.803867pt;}
.y49{bottom:843.034933pt;}
.hb{height:19.200000pt;}
.h11{height:21.802083pt;}
.hf{height:24.519000pt;}
.h10{height:26.616500pt;}
.h16{height:29.943562pt;}
.h12{height:30.647500pt;}
.hc{height:30.708333pt;}
.h3{height:30.958333pt;}
.h18{height:31.114687pt;}
.h14{height:31.488000pt;}
.h17{height:31.535156pt;}
.h8{height:32.000000pt;}
.h13{height:34.125000pt;}
.h1b{height:34.478438pt;}
.h5{height:34.945312pt;}
.h4{height:34.968750pt;}
.h1a{height:35.424000pt;}
.h19{height:38.390625pt;}
.ha{height:38.697917pt;}
.h9{height:40.000000pt;}
.h7{height:41.600000pt;}
.hd{height:44.390625pt;}
.h2{height:49.322917pt;}
.h6{height:56.000000pt;}
.he{height:216.809333pt;}
.h15{height:218.836000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:388.030667pt;}
.w3{width:445.606667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x14{left:2.100133pt;}
.x27{left:8.500000pt;}
.x2d{left:12.042400pt;}
.x24{left:17.246667pt;}
.x30{left:19.242267pt;}
.x25{left:22.526533pt;}
.x2f{left:29.082267pt;}
.x3{left:68.031467pt;}
.x8{left:74.024667pt;}
.x4{left:82.088667pt;}
.xd{left:86.932800pt;}
.x5{left:90.619333pt;}
.x28{left:98.456000pt;}
.x2c{left:110.803333pt;}
.x7{left:112.608667pt;}
.x6{left:115.147333pt;}
.x2b{left:116.203333pt;}
.x13{left:127.244000pt;}
.xb{left:140.588000pt;}
.x23{left:142.451200pt;}
.x22{left:146.714667pt;}
.x2e{left:155.036000pt;}
.x15{left:159.068000pt;}
.x16{left:164.836267pt;}
.x11{left:170.396800pt;}
.x26{left:175.333467pt;}
.x2a{left:188.631200pt;}
.x17{left:189.722667pt;}
.xa{left:202.117867pt;}
.x9{left:211.299333pt;}
.x18{left:214.609067pt;}
.x12{left:221.672800pt;}
.x19{left:239.495467pt;}
.x32{left:245.209067pt;}
.xf{left:246.711467pt;}
.x1a{left:264.381867pt;}
.x2{left:273.322800pt;}
.x29{left:274.517067pt;}
.x33{left:282.444800pt;}
.x34{left:285.498133pt;}
.x31{left:287.595733pt;}
.xc{left:292.386133pt;}
.xe{left:294.044800pt;}
.x10{left:297.164800pt;}
.x1b{left:316.140800pt;}
.x1c{left:341.027200pt;}
.x1d{left:363.934933pt;}
.x1e{left:389.336533pt;}
.x1f{left:415.693867pt;}
.x20{left:440.580267pt;}
.x21{left:465.466667pt;}
.x1{left:554.472533pt;}
}




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