
    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_094d13d49d21825594301c10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_c381757116da203257542f55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_7d0f6796dd93f019aacc2b27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_180d2e09cdbd9e44a9c2c7d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_421f09ca35b8c2486fcd9a1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_ff2fb02b38425f519787415d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_f72997c3904b3809e705c24b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_922b1750681404ca19b5e3db.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109000;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_4d6099ab8004c54279d6f506.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_76c8f81f818a002a70669651.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_e7ca32ae46cd8c3f3eb6370c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_25604f524d12f4a517478de4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_e31c7459e3b8d643a0ea3ac1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_be189aa3683f38a95c1229ce.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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_0699c791902c92d43b44006f.woff2')format("woff");}.fff{font-family:fff;line-height:0.918457;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_a0a22593b8c400bbde26e640.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;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_b62af4592616477fa0727fd7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_54d273eff18a2075508ed7de.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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_4f32d19a08a0b4e604f2af7c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.076172;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;}
.m7{transform:matrix(0.000000,-0.234856,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.234856,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.234856,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.234858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234858,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242334,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-26.543400px;}
.v3{vertical-align:-15.727800px;}
.v1{vertical-align:-13.525800px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.220000px;}
.ls16{letter-spacing:-0.900000px;}
.ls29{letter-spacing:-0.660000px;}
.ls28{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.330000px;}
.ls30{letter-spacing:-0.198000px;}
.ls19{letter-spacing:-0.066000px;}
.ls26{letter-spacing:-0.047155px;}
.ls27{letter-spacing:-0.046426px;}
.ls9{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.009000px;}
.ls4c{letter-spacing:0.009600px;}
.ls3d{letter-spacing:0.010200px;}
.ls41{letter-spacing:0.039000px;}
.ls40{letter-spacing:0.045000px;}
.ls39{letter-spacing:0.049200px;}
.ls3b{letter-spacing:0.049800px;}
.ls8{letter-spacing:0.057000px;}
.ls3a{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls14{letter-spacing:0.132000px;}
.ls36{letter-spacing:0.146400px;}
.ls37{letter-spacing:0.165600px;}
.ls2{letter-spacing:0.168000px;}
.ls38{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.228000px;}
.ls3f{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.285000px;}
.ls47{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.315000px;}
.ls45{letter-spacing:0.322800px;}
.ls33{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.378000px;}
.lse{letter-spacing:0.396000px;}
.ls1a{letter-spacing:0.462000px;}
.ls3c{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.531000px;}
.ls35{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.592800px;}
.ls20{letter-spacing:0.594000px;}
.ls43{letter-spacing:0.600000px;}
.ls42{letter-spacing:0.610200px;}
.ls44{letter-spacing:0.615000px;}
.ls2f{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.684000px;}
.ls13{letter-spacing:0.726000px;}
.lsa{letter-spacing:0.756000px;}
.ls48{letter-spacing:0.772800px;}
.ls49{letter-spacing:0.780000px;}
.ls4a{letter-spacing:0.791400px;}
.ls1b{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.798000px;}
.ls17{letter-spacing:0.858000px;}
.ls32{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.924000px;}
.ls10{letter-spacing:0.990000px;}
.ls2b{letter-spacing:1.056000px;}
.ls12{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.122000px;}
.ls50{letter-spacing:1.140000px;}
.ls51{letter-spacing:1.140600px;}
.ls1f{letter-spacing:1.254000px;}
.ls52{letter-spacing:1.260000px;}
.ls2c{letter-spacing:1.320000px;}
.ls2a{letter-spacing:1.452000px;}
.ls23{letter-spacing:1.650000px;}
.ls25{letter-spacing:1.655902px;}
.ls4d{letter-spacing:1.680000px;}
.ls2d{letter-spacing:1.782000px;}
.ls1c{letter-spacing:1.848000px;}
.ls2e{letter-spacing:2.046000px;}
.ls4e{letter-spacing:2.328000px;}
.ls4f{letter-spacing:2.340000px;}
.ls4{letter-spacing:12.510000px;}
.ls24{letter-spacing:14.652000px;}
.ls1e{letter-spacing:60.060000px;}
.lsc{letter-spacing:1186.089600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws79{word-spacing:-70.732800px;}
.ws7b{word-spacing:-46.426200px;}
.ws7a{word-spacing:-46.379774px;}
.ws78{word-spacing:-38.966400px;}
.ws8f{word-spacing:-17.622000px;}
.ws67{word-spacing:-16.500000px;}
.ws15{word-spacing:-15.000000px;}
.wsb1{word-spacing:-13.590000px;}
.ws4d{word-spacing:-12.780000px;}
.ws9f{word-spacing:-11.565000px;}
.ws9e{word-spacing:-11.295000px;}
.ws97{word-spacing:-11.250000px;}
.ws71{word-spacing:-10.725000px;}
.ws6{word-spacing:-9.324000px;}
.ws0{word-spacing:-8.262000px;}
.ws98{word-spacing:-5.940000px;}
.wsb4{word-spacing:-1.080000px;}
.ws81{word-spacing:-0.990000px;}
.ws7{word-spacing:-0.684000px;}
.ws89{word-spacing:-0.660000px;}
.wsa4{word-spacing:-0.600000px;}
.ws92{word-spacing:-0.594000px;}
.ws60{word-spacing:-0.330000px;}
.ws90{word-spacing:-0.264000px;}
.ws14{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.ws7d{word-spacing:0.046426px;}
.ws7c{word-spacing:0.047155px;}
.ws27{word-spacing:0.060000px;}
.ws86{word-spacing:0.066000px;}
.ws54{word-spacing:0.132000px;}
.ws59{word-spacing:0.198000px;}
.ws87{word-spacing:0.264000px;}
.ws1e{word-spacing:0.330000px;}
.ws6b{word-spacing:0.396000px;}
.ws49{word-spacing:0.462000px;}
.ws26{word-spacing:0.528000px;}
.ws94{word-spacing:0.540000px;}
.ws77{word-spacing:0.594000px;}
.ws99{word-spacing:0.600000px;}
.wse{word-spacing:0.627000px;}
.ws2c{word-spacing:0.660000px;}
.wsa7{word-spacing:0.720000px;}
.ws5f{word-spacing:0.726000px;}
.ws12{word-spacing:0.741000px;}
.ws73{word-spacing:0.792000px;}
.wsaf{word-spacing:0.840000px;}
.ws37{word-spacing:0.858000px;}
.ws66{word-spacing:0.924000px;}
.ws32{word-spacing:0.990000px;}
.ws42{word-spacing:1.056000px;}
.ws38{word-spacing:1.122000px;}
.ws91{word-spacing:1.188000px;}
.ws5d{word-spacing:1.254000px;}
.ws96{word-spacing:1.320000px;}
.ws20{word-spacing:1.380000px;}
.ws65{word-spacing:1.386000px;}
.ws35{word-spacing:1.452000px;}
.ws3f{word-spacing:1.518000px;}
.ws6a{word-spacing:1.584000px;}
.ws2a{word-spacing:1.782000px;}
.ws7f{word-spacing:1.848000px;}
.ws8b{word-spacing:1.914000px;}
.ws9d{word-spacing:1.920000px;}
.ws51{word-spacing:1.980000px;}
.wsab{word-spacing:2.040000px;}
.ws18{word-spacing:2.046000px;}
.ws21{word-spacing:2.178000px;}
.wsa8{word-spacing:2.220000px;}
.ws8e{word-spacing:2.244000px;}
.wsd{word-spacing:2.280000px;}
.ws50{word-spacing:2.310000px;}
.ws2d{word-spacing:2.376000px;}
.ws19{word-spacing:2.442000px;}
.ws4f{word-spacing:2.508000px;}
.wsa9{word-spacing:2.520000px;}
.ws85{word-spacing:2.574000px;}
.ws5e{word-spacing:2.640000px;}
.ws39{word-spacing:2.706000px;}
.ws5{word-spacing:2.772000px;}
.ws43{word-spacing:2.904000px;}
.ws3d{word-spacing:2.970000px;}
.ws48{word-spacing:3.036000px;}
.wsad{word-spacing:3.060000px;}
.ws1c{word-spacing:3.102000px;}
.wsa1{word-spacing:3.120000px;}
.wsb{word-spacing:3.135000px;}
.ws55{word-spacing:3.234000px;}
.ws5b{word-spacing:3.300000px;}
.ws4b{word-spacing:3.366000px;}
.ws4c{word-spacing:3.432000px;}
.ws8a{word-spacing:3.498000px;}
.ws8c{word-spacing:3.564000px;}
.ws29{word-spacing:3.630000px;}
.ws58{word-spacing:3.696000px;}
.ws22{word-spacing:3.828000px;}
.ws52{word-spacing:3.894000px;}
.ws88{word-spacing:3.960000px;}
.ws72{word-spacing:4.092000px;}
.ws3e{word-spacing:4.158000px;}
.ws9{word-spacing:4.161000px;}
.wsa{word-spacing:4.218000px;}
.ws69{word-spacing:4.224000px;}
.ws1d{word-spacing:4.290000px;}
.ws95{word-spacing:4.356000px;}
.ws8d{word-spacing:4.422000px;}
.ws1f{word-spacing:4.488000px;}
.ws76{word-spacing:4.554000px;}
.ws44{word-spacing:4.620000px;}
.ws4{word-spacing:4.662000px;}
.ws13{word-spacing:4.674000px;}
.ws45{word-spacing:4.686000px;}
.ws2e{word-spacing:4.752000px;}
.ws7e{word-spacing:4.818000px;}
.wsaa{word-spacing:4.860000px;}
.ws83{word-spacing:4.884000px;}
.ws9a{word-spacing:4.920000px;}
.ws11{word-spacing:4.959000px;}
.wsae{word-spacing:4.980000px;}
.ws6f{word-spacing:5.016000px;}
.ws4e{word-spacing:5.082000px;}
.wsb5{word-spacing:5.100000px;}
.ws84{word-spacing:5.148000px;}
.ws1b{word-spacing:5.214000px;}
.wsa5{word-spacing:5.400000px;}
.ws17{word-spacing:5.412000px;}
.ws1a{word-spacing:5.478000px;}
.wsb0{word-spacing:5.520000px;}
.ws80{word-spacing:5.544000px;}
.ws57{word-spacing:5.610000px;}
.ws2f{word-spacing:5.676000px;}
.ws61{word-spacing:5.808000px;}
.wsf{word-spacing:5.814000px;}
.ws41{word-spacing:5.874000px;}
.ws6e{word-spacing:5.940000px;}
.wsb2{word-spacing:6.000000px;}
.ws3a{word-spacing:6.006000px;}
.ws82{word-spacing:6.138000px;}
.ws2b{word-spacing:6.204000px;}
.ws36{word-spacing:6.270000px;}
.ws56{word-spacing:6.336000px;}
.ws30{word-spacing:6.402000px;}
.wsa0{word-spacing:6.420000px;}
.ws31{word-spacing:6.468000px;}
.wsb6{word-spacing:6.480000px;}
.ws53{word-spacing:6.534000px;}
.ws64{word-spacing:6.600000px;}
.ws70{word-spacing:6.666000px;}
.wsc{word-spacing:6.669000px;}
.ws93{word-spacing:6.750000px;}
.ws40{word-spacing:6.798000px;}
.ws10{word-spacing:6.840000px;}
.ws5a{word-spacing:6.864000px;}
.ws63{word-spacing:6.930000px;}
.ws9c{word-spacing:6.960000px;}
.ws25{word-spacing:6.996000px;}
.ws46{word-spacing:7.062000px;}
.wsa2{word-spacing:7.080000px;}
.ws8{word-spacing:7.125000px;}
.ws47{word-spacing:7.128000px;}
.ws5c{word-spacing:7.194000px;}
.ws33{word-spacing:7.260000px;}
.ws6c{word-spacing:7.326000px;}
.wsac{word-spacing:7.440000px;}
.ws3c{word-spacing:7.458000px;}
.ws28{word-spacing:7.500000px;}
.ws68{word-spacing:7.524000px;}
.ws62{word-spacing:7.590000px;}
.ws75{word-spacing:7.656000px;}
.wsb3{word-spacing:7.680000px;}
.ws4a{word-spacing:7.722000px;}
.ws24{word-spacing:7.788000px;}
.ws3b{word-spacing:7.854000px;}
.ws74{word-spacing:7.920000px;}
.ws34{word-spacing:8.118000px;}
.ws23{word-spacing:8.184000px;}
.ws16{word-spacing:8.250000px;}
.ws6d{word-spacing:8.316000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
.ws9b{word-spacing:15.000000px;}
.wsa3{word-spacing:28.980000px;}
.wsa6{word-spacing:29.580000px;}
._16{margin-left:-26.730000px;}
._23{margin-left:-23.562600px;}
._14{margin-left:-22.176000px;}
._8{margin-left:-16.500000px;}
._b{margin-left:-14.718000px;}
._10{margin-left:-9.174000px;}
._c{margin-left:-7.392000px;}
._f{margin-left:-6.072000px;}
._15{margin-left:-2.225100px;}
._5{margin-left:-1.008900px;}
._0{width:1.050300px;}
._e{width:2.220000px;}
._24{width:3.312600px;}
._22{width:4.858800px;}
._1d{width:5.913600px;}
._2{width:7.014000px;}
._3{width:8.946000px;}
._1f{width:10.080000px;}
._4{width:11.676000px;}
._1{width:13.344000px;}
._1e{width:14.400000px;}
._20{width:24.660000px;}
._11{width:28.446000px;}
._21{width:29.580000px;}
._a{width:37.260000px;}
._9{width:43.620000px;}
._6{width:45.000000px;}
._12{width:51.678000px;}
._13{width:55.770000px;}
._1c{width:242.838000px;}
._1a{width:267.516000px;}
._1b{width:446.688000px;}
._18{width:465.480000px;}
._17{width:479.790000px;}
._19{width:565.218000px;}
._7{width:1158.574500px;}
._d{width:1160.801100px;}
.fc3{color:rgb(130,16,1);}
.fc2{color:rgb(11,16,152);}
.fc1{color:rgb(0,105,14);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.000000px;}
.fs0{font-size:36.000000px;}
.fse{font-size:38.966400px;}
.fs5{font-size:42.000000px;}
.fsd{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fs16{font-size:46.426200px;}
.fs12{font-size:47.155200px;}
.fs15{font-size:47.899800px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs14{font-size:59.874600px;}
.fs1{font-size:60.000000px;}
.fs10{font-size:63.585000px;}
.fsc{font-size:66.000000px;}
.fs11{font-size:70.732800px;}
.fs8{font-size:72.000000px;}
.fs13{font-size:74.018400px;}
.fs7{font-size:90.000000px;}
.fsf{font-size:95.377800px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y160{bottom:0.164850px;}
.y1{bottom:85.039350px;}
.y2b{bottom:85.039500px;}
.y161{bottom:90.231678px;}
.yf{bottom:119.053650px;}
.ybd{bottom:119.418600px;}
.yae{bottom:119.465550px;}
.y11d{bottom:119.498100px;}
.y20b{bottom:119.695950px;}
.y10b{bottom:119.739600px;}
.y72{bottom:119.747850px;}
.y223{bottom:119.831850px;}
.y14b{bottom:119.981550px;}
.y51{bottom:119.997900px;}
.y125{bottom:120.084300px;}
.y3e{bottom:120.120750px;}
.y55{bottom:120.269400px;}
.y1d6{bottom:120.970500px;}
.y18f{bottom:121.036500px;}
.y16c{bottom:121.183800px;}
.yda{bottom:121.615800px;}
.y9d{bottom:122.017350px;}
.ye{bottom:131.055150px;}
.y54{bottom:136.259400px;}
.ybc{bottom:137.007600px;}
.yad{bottom:137.054550px;}
.y11c{bottom:137.087100px;}
.y20a{bottom:137.284950px;}
.y71{bottom:137.336850px;}
.y14a{bottom:137.570550px;}
.y50{bottom:137.586900px;}
.y222{bottom:137.651850px;}
.y124{bottom:137.673300px;}
.y3d{bottom:137.709750px;}
.y1d5{bottom:138.559500px;}
.yf6{bottom:138.609000px;}
.y18e{bottom:138.625500px;}
.y16b{bottom:138.772800px;}
.y256{bottom:138.978150px;}
.y9c{bottom:139.606350px;}
.yd9{bottom:148.015800px;}
.yd{bottom:149.433900px;}
.ybb{bottom:154.596600px;}
.yac{bottom:154.643550px;}
.y11b{bottom:154.676100px;}
.y209{bottom:154.873950px;}
.y70{bottom:154.925850px;}
.y149{bottom:155.159550px;}
.y4f{bottom:155.175900px;}
.y123{bottom:155.262300px;}
.y3c{bottom:155.298750px;}
.y221{bottom:155.458350px;}
.y1d4{bottom:156.148500px;}
.yf5{bottom:156.198000px;}
.y18d{bottom:156.214500px;}
.y255{bottom:156.789150px;}
.yd8{bottom:165.604800px;}
.y9b{bottom:166.006350px;}
.yc{bottom:167.808900px;}
.yab{bottom:172.232550px;}
.y11a{bottom:172.265100px;}
.y208{bottom:172.462950px;}
.y6f{bottom:172.514850px;}
.y4e{bottom:172.764900px;}
.y122{bottom:172.851300px;}
.y3b{bottom:172.887750px;}
.y220{bottom:173.278350px;}
.y1d3{bottom:173.737500px;}
.y18c{bottom:173.803500px;}
.y254{bottom:174.609150px;}
.y148{bottom:179.992050px;}
.yba{bottom:180.996600px;}
.yf4{bottom:182.598000px;}
.y9a{bottom:183.595350px;}
.yb{bottom:184.062900px;}
.y16a{bottom:186.422100px;}
.y119{bottom:189.854100px;}
.y207{bottom:190.051950px;}
.y4d{bottom:190.353900px;}
.y121{bottom:190.440300px;}
.y3a{bottom:190.476750px;}
.y21f{bottom:191.098350px;}
.y18b{bottom:191.392500px;}
.y252{bottom:192.415650px;}
.y253{bottom:192.429150px;}
.ya{bottom:195.245400px;}
.y147{bottom:197.581050px;}
.y1d2{bottom:200.137500px;}
.yf3{bottom:200.187000px;}
.yd7{bottom:200.799300px;}
.y99{bottom:201.184350px;}
.yaa{bottom:207.426750px;}
.y118{bottom:207.443100px;}
.y206{bottom:207.640950px;}
.y6e{bottom:207.709350px;}
.y4c{bottom:207.942900px;}
.y120{bottom:208.029300px;}
.y39{bottom:208.065750px;}
.y21e{bottom:208.904850px;}
.y18a{bottom:208.981500px;}
.y251{bottom:210.235650px;}
.y169{bottom:210.407100px;}
.y9{bottom:212.801400px;}
.y146{bottom:215.170050px;}
.y1d1{bottom:217.726500px;}
.yf2{bottom:217.776000px;}
.yd6{bottom:218.388300px;}
.y98{bottom:218.773350px;}
.y8{bottom:223.983900px;}
.y162{bottom:224.101626px;}
.ya9{bottom:225.021750px;}
.y117{bottom:225.032100px;}
.y205{bottom:225.229950px;}
.y6d{bottom:225.298350px;}
.y4b{bottom:225.531900px;}
.y11f{bottom:225.618300px;}
.y38{bottom:225.654750px;}
.y189{bottom:226.570500px;}
.y21d{bottom:226.724850px;}
.y250{bottom:228.055650px;}
.y145{bottom:232.759050px;}
.y87{bottom:233.829600px;}
.y1d0{bottom:235.315500px;}
.yf1{bottom:235.365000px;}
.y1bc{bottom:235.381500px;}
.y97{bottom:236.362350px;}
.y15f{bottom:236.800500px;}
.yb9{bottom:237.741000px;}
.y116{bottom:242.621100px;}
.y204{bottom:242.818950px;}
.y6c{bottom:242.887350px;}
.y188{bottom:244.159500px;}
.y21c{bottom:244.544850px;}
.y24f{bottom:245.857650px;}
.y144{bottom:250.348050px;}
.ya8{bottom:250.611750px;}
.y86{bottom:251.418600px;}
.y4a{bottom:251.931900px;}
.y37{bottom:252.054750px;}
.y1cf{bottom:252.904500px;}
.yf0{bottom:252.954000px;}
.y1bb{bottom:252.970500px;}
.yd5{bottom:253.582650px;}
.y96{bottom:253.951350px;}
.y203{bottom:260.407950px;}
.y6b{bottom:260.476350px;}
.y187{bottom:261.748500px;}
.y1ad{bottom:261.765000px;}
.y21b{bottom:262.337850px;}
.y24e{bottom:263.677650px;}
.y156{bottom:266.254950px;}
.y143{bottom:267.937050px;}
.ya7{bottom:268.206750px;}
.y85{bottom:269.007600px;}
.y115{bottom:269.021100px;}
.y49{bottom:269.520900px;}
.y36{bottom:269.643750px;}
.y1ba{bottom:270.559500px;}
.y2a{bottom:271.101600px;}
.yd4{bottom:271.177650px;}
.y95{bottom:271.540350px;}
.y154{bottom:272.859600px;}
.y11e{bottom:275.823150px;}
.y1ce{bottom:279.304500px;}
.y186{bottom:279.337500px;}
.yef{bottom:279.354000px;}
.y21a{bottom:280.157850px;}
.y24d{bottom:281.497650px;}
.y142{bottom:285.526050px;}
.y84{bottom:286.596600px;}
.y29{bottom:287.090100px;}
.y48{bottom:287.109900px;}
.y35{bottom:287.232750px;}
.y1b9{bottom:288.148500px;}
.y94{bottom:289.129350px;}
.y1e4{bottom:289.858500px;}
.y164{bottom:293.497501px;}
.y202{bottom:295.602450px;}
.y6a{bottom:295.670850px;}
.yd3{bottom:296.767650px;}
.yee{bottom:296.943000px;}
.y219{bottom:297.977850px;}
.y24c{bottom:299.317650px;}
.y141{bottom:303.115050px;}
.ya6{bottom:303.450450px;}
.y83{bottom:304.185600px;}
.y47{bottom:304.698900px;}
.y34{bottom:304.821750px;}
.y185{bottom:305.737500px;}
.y93{bottom:306.718350px;}
.y1e3{bottom:307.447500px;}
.y15e{bottom:307.598550px;}
.y1ac{bottom:310.159500px;}
.y28{bottom:311.072850px;}
.y15d{bottom:311.332950px;}
.y114{bottom:313.010100px;}
.y69{bottom:313.259850px;}
.yd2{bottom:314.362650px;}
.yed{bottom:314.532000px;}
.y1b8{bottom:314.548500px;}
.y218{bottom:315.797850px;}
.y24b{bottom:317.133150px;}
.y15a{bottom:319.318200px;}
.ya5{bottom:321.039450px;}
.y82{bottom:321.774600px;}
.y46{bottom:322.287900px;}
.y1cd{bottom:323.293500px;}
.y184{bottom:323.326500px;}
.y92{bottom:324.307350px;}
.y1e2{bottom:325.036500px;}
.y27{bottom:327.061350px;}
.y1ab{bottom:327.748500px;}
.y140{bottom:327.947550px;}
.y113{bottom:330.599100px;}
.y68{bottom:330.848850px;}
.yec{bottom:332.121000px;}
.y217{bottom:333.617850px;}
.y249{bottom:334.939650px;}
.y24a{bottom:334.953150px;}
.ya4{bottom:338.628450px;}
.y45{bottom:339.876900px;}
.y1cc{bottom:340.882500px;}
.y183{bottom:340.915500px;}
.y26{bottom:343.049850px;}
.y1aa{bottom:345.337500px;}
.y13f{bottom:345.536550px;}
.y81{bottom:348.174600px;}
.y112{bottom:348.188100px;}
.yd1{bottom:349.693500px;}
.yeb{bottom:349.710000px;}
.y33{bottom:350.349450px;}
.y91{bottom:350.707350px;}
.y216{bottom:351.437850px;}
.y248{bottom:352.759650px;}
.ya3{bottom:356.217450px;}
.y44{bottom:357.465900px;}
.y1cb{bottom:358.471500px;}
.y182{bottom:358.504500px;}
.y1b7{bottom:358.537500px;}
.y201{bottom:359.034300px;}
.y25{bottom:359.038350px;}
.y168{bottom:359.239650px;}
.y167{bottom:360.842100px;}
.y1a9{bottom:362.926500px;}
.y15c{bottom:362.961450px;}
.y13e{bottom:363.125550px;}
.y80{bottom:365.763600px;}
.y111{bottom:365.777100px;}
.yd0{bottom:367.282500px;}
.yea{bottom:367.299000px;}
.y153{bottom:367.408500px;}
.y15b{bottom:368.278200px;}
.y157{bottom:368.575200px;}
.y215{bottom:369.257850px;}
.y247{bottom:370.579650px;}
.ya2{bottom:373.806450px;}
.y24{bottom:375.026850px;}
.y1ca{bottom:376.060500px;}
.y181{bottom:376.093500px;}
.y1b6{bottom:376.126500px;}
.y165{bottom:376.163550px;}
.y1e1{bottom:378.998700px;}
.y1a8{bottom:380.515500px;}
.y13d{bottom:380.714550px;}
.y159{bottom:381.807000px;}
.y200{bottom:381.903300px;}
.y7f{bottom:383.352600px;}
.y67{bottom:383.634600px;}
.ycf{bottom:384.871500px;}
.ye9{bottom:384.888000px;}
.y245{bottom:388.386150px;}
.y246{bottom:388.399650px;}
.y23{bottom:391.015350px;}
.ya1{bottom:391.395450px;}
.y1c9{bottom:393.649500px;}
.y180{bottom:393.682500px;}
.y1b5{bottom:393.715500px;}
.y90{bottom:394.696350px;}
.y1e0{bottom:395.158200px;}
.y1a7{bottom:398.104500px;}
.y13c{bottom:398.303550px;}
.y166{bottom:400.505700px;}
.y7e{bottom:400.941600px;}
.y10a{bottom:402.460500px;}
.ye8{bottom:402.477000px;}
.y214{bottom:404.754000px;}
.y1ff{bottom:404.772300px;}
.y43{bottom:405.116550px;}
.y244{bottom:406.206150px;}
.y22{bottom:407.003850px;}
.ya0{bottom:408.984450px;}
.y1c8{bottom:411.238500px;}
.y17f{bottom:411.271500px;}
.y1b4{bottom:411.304500px;}
.y1df{bottom:411.317700px;}
.y8f{bottom:412.285350px;}
.y1fb{bottom:412.750800px;}
.y163{bottom:415.319850px;}
.y1a6{bottom:415.693500px;}
.y13b{bottom:415.892550px;}
.y7d{bottom:418.530600px;}
.y110{bottom:418.562850px;}
.y109{bottom:420.049500px;}
.yce{bottom:420.066000px;}
.y42{bottom:421.106550px;}
.y21{bottom:422.992350px;}
.y243{bottom:424.026150px;}
.y9f{bottom:426.573450px;}
.y1de{bottom:427.477200px;}
.y1fe{bottom:427.641300px;}
.y1c7{bottom:428.827500px;}
.y17e{bottom:428.860500px;}
.y1b3{bottom:428.893500px;}
.y158{bottom:428.976600px;}
.y8e{bottom:429.874350px;}
.y155{bottom:429.891450px;}
.y1a5{bottom:433.282500px;}
.y13a{bottom:433.481550px;}
.y7c{bottom:436.119600px;}
.y108{bottom:437.638500px;}
.ycd{bottom:437.655000px;}
.y241{bottom:441.837150px;}
.y242{bottom:441.846150px;}
.y1fd{bottom:443.625300px;}
.y1dd{bottom:443.636700px;}
.y17d{bottom:446.449500px;}
.y8d{bottom:447.463350px;}
.y1a4{bottom:450.871500px;}
.y139{bottom:451.070550px;}
.y7b{bottom:453.708600px;}
.y20{bottom:454.969350px;}
.y107{bottom:455.227500px;}
.ycc{bottom:455.244000px;}
.y1b2{bottom:455.293500px;}
.y240{bottom:459.657150px;}
.y1dc{bottom:459.796200px;}
.y213{bottom:464.022000px;}
.y8c{bottom:465.052350px;}
.y1fc{bottom:466.494300px;}
.y1a3{bottom:468.460500px;}
.y138{bottom:468.659550px;}
.y1f{bottom:470.957850px;}
.y7a{bottom:471.297600px;}
.y106{bottom:472.816500px;}
.ycb{bottom:472.833000px;}
.y17c{bottom:472.849500px;}
.y1db{bottom:475.955700px;}
.y23e{bottom:477.463800px;}
.y23f{bottom:477.477150px;}
.y9e{bottom:479.359200px;}
.y212{bottom:481.611000px;}
.y8b{bottom:482.641350px;}
.y1a2{bottom:486.049500px;}
.y137{bottom:486.248550px;}
.y79{bottom:488.886600px;}
.y105{bottom:490.405500px;}
.yca{bottom:490.422000px;}
.y17b{bottom:490.438500px;}
.y1fa{bottom:491.158800px;}
.y1da{bottom:492.115200px;}
.y1e{bottom:494.940600px;}
.y23d{bottom:495.283800px;}
.y211{bottom:499.200000px;}
.y1b1{bottom:499.282500px;}
.y1a1{bottom:503.638500px;}
.y136{bottom:503.837550px;}
.y78{bottom:506.475600px;}
.y152{bottom:507.625350px;}
.y104{bottom:507.994500px;}
.ye7{bottom:508.011000px;}
.y17a{bottom:508.027500px;}
.y1d{bottom:510.929100px;}
.y23c{bottom:513.103800px;}
.y1f9{bottom:514.027800px;}
.y1d9{bottom:516.787200px;}
.y210{bottom:516.789000px;}
.yc9{bottom:516.822000px;}
.y1b0{bottom:516.871500px;}
.y8a{bottom:517.835850px;}
.y1a0{bottom:521.227500px;}
.y135{bottom:521.508000px;}
.y77{bottom:524.064600px;}
.y1c6{bottom:525.583500px;}
.y1c{bottom:526.917600px;}
.y1f5{bottom:528.891300px;}
.y23a{bottom:530.910150px;}
.y23b{bottom:530.923800px;}
.y1d8{bottom:531.175200px;}
.y20f{bottom:534.378000px;}
.y103{bottom:534.394500px;}
.yc8{bottom:534.411000px;}
.y179{bottom:534.427500px;}
.y1af{bottom:534.460500px;}
.y89{bottom:535.424850px;}
.y1f8{bottom:536.896800px;}
.y19f{bottom:538.816500px;}
.y134{bottom:539.097000px;}
.y76{bottom:541.653600px;}
.y1b{bottom:542.906100px;}
.y1c5{bottom:543.172500px;}
.y1f4{bottom:544.875300px;}
.y239{bottom:548.730150px;}
.y20e{bottom:551.967000px;}
.yc7{bottom:552.000000px;}
.y1ae{bottom:552.049500px;}
.y19e{bottom:556.405500px;}
.y1a{bottom:558.894600px;}
.y75{bottom:559.242600px;}
.y53{bottom:559.556850px;}
.y1f7{bottom:559.765800px;}
.y1d7{bottom:562.321350px;}
.y133{bottom:563.929500px;}
.y238{bottom:566.550150px;}
.y14f{bottom:567.867286px;}
.y1c4{bottom:569.572500px;}
.yc6{bottom:569.589000px;}
.y66{bottom:569.638500px;}
.y150{bottom:571.045200px;}
.y19d{bottom:573.994500px;}
.y19{bottom:574.883100px;}
.y52{bottom:575.546850px;}
.y74{bottom:576.831600px;}
.y102{bottom:578.383500px;}
.y132{bottom:581.518500px;}
.y1f6{bottom:582.634800px;}
.y236{bottom:584.361150px;}
.y237{bottom:584.370150px;}
.y20d{bottom:587.161500px;}
.ye6{bottom:587.178000px;}
.yb8{bottom:587.194500px;}
.y178{bottom:587.211000px;}
.y65{bottom:587.227500px;}
.y88{bottom:588.210600px;}
.y18{bottom:590.871600px;}
.y19c{bottom:591.583500px;}
.y101{bottom:595.972500px;}
.yc5{bottom:595.989000px;}
.y131{bottom:599.107500px;}
.y235{bottom:602.181150px;}
.y20c{bottom:604.750500px;}
.ye5{bottom:604.767000px;}
.yb7{bottom:604.783500px;}
.y177{bottom:604.800000px;}
.y64{bottom:604.816500px;}
.y17{bottom:606.860100px;}
.y1f3{bottom:607.299300px;}
.y19b{bottom:609.172500px;}
.y100{bottom:613.561500px;}
.yc4{bottom:613.578000px;}
.y130{bottom:616.696500px;}
.y233{bottom:619.987650px;}
.y234{bottom:620.001150px;}
.ye4{bottom:622.356000px;}
.y10f{bottom:622.372500px;}
.y176{bottom:622.389000px;}
.y63{bottom:622.405500px;}
.y19a{bottom:626.761500px;}
.y73{bottom:629.617350px;}
.y1f2{bottom:630.168300px;}
.y1c3{bottom:631.150500px;}
.yc3{bottom:631.167000px;}
.yb6{bottom:631.183500px;}
.y12f{bottom:634.285500px;}
.y232{bottom:637.807650px;}
.ye3{bottom:639.945000px;}
.yff{bottom:639.961500px;}
.y175{bottom:639.978000px;}
.y62{bottom:639.994500px;}
.y199{bottom:644.350500px;}
.y1c2{bottom:648.739500px;}
.yc2{bottom:648.756000px;}
.yb5{bottom:648.772500px;}
.y12e{bottom:651.874500px;}
.y1ee{bottom:653.023800px;}
.y1f1{bottom:653.037300px;}
.y231{bottom:655.627650px;}
.ye2{bottom:657.534000px;}
.yfe{bottom:657.550500px;}
.y174{bottom:657.567000px;}
.y61{bottom:657.583500px;}
.y198{bottom:661.939500px;}
.y1c1{bottom:666.328500px;}
.yc1{bottom:666.345000px;}
.yb4{bottom:666.361500px;}
.y12d{bottom:669.463500px;}
.y261{bottom:673.438650px;}
.y22f{bottom:673.443150px;}
.y230{bottom:673.447650px;}
.ye1{bottom:675.123000px;}
.yfd{bottom:675.139500px;}
.y173{bottom:675.156000px;}
.y60{bottom:675.172500px;}
.y1f0{bottom:675.906300px;}
.y197{bottom:679.528500px;}
.y1c0{bottom:683.917500px;}
.yc0{bottom:683.934000px;}
.yb3{bottom:683.950500px;}
.y14e{bottom:684.220956px;}
.y12c{bottom:687.052500px;}
.y22e{bottom:691.254150px;}
.y260{bottom:691.258650px;}
.ye0{bottom:692.712000px;}
.yfc{bottom:692.728500px;}
.y172{bottom:692.745000px;}
.y5f{bottom:692.761500px;}
.y196{bottom:697.117500px;}
.y1ef{bottom:698.775300px;}
.y1bf{bottom:701.506500px;}
.ybf{bottom:701.523000px;}
.yb2{bottom:701.539500px;}
.y25e{bottom:709.065150px;}
.y22d{bottom:709.074150px;}
.y25f{bottom:709.078650px;}
.ydf{bottom:710.301000px;}
.y10e{bottom:710.317500px;}
.y171{bottom:710.334000px;}
.y5e{bottom:710.350500px;}
.y12b{bottom:711.885000px;}
.y16{bottom:712.138500px;}
.y195{bottom:714.706500px;}
.y1be{bottom:719.095500px;}
.ybe{bottom:719.112000px;}
.yb1{bottom:719.128500px;}
.y1ed{bottom:723.439800px;}
.y25d{bottom:726.885150px;}
.y22c{bottom:726.889650px;}
.yde{bottom:727.890000px;}
.y10d{bottom:727.906500px;}
.y170{bottom:727.923000px;}
.y5d{bottom:727.939500px;}
.y12a{bottom:729.474000px;}
.y194{bottom:732.295500px;}
.yb0{bottom:736.717500px;}
.y15{bottom:736.922850px;}
.y22b{bottom:744.700650px;}
.y25c{bottom:744.705150px;}
.y10c{bottom:745.495500px;}
.y16f{bottom:745.512000px;}
.y5c{bottom:745.528500px;}
.y1ec{bottom:746.308800px;}
.y129{bottom:747.063000px;}
.y193{bottom:749.884500px;}
.y14d{bottom:751.710761px;}
.yaf{bottom:754.306500px;}
.y25a{bottom:762.511650px;}
.y22a{bottom:762.520650px;}
.y25b{bottom:762.525150px;}
.ydd{bottom:763.084500px;}
.y16e{bottom:763.101000px;}
.y5b{bottom:763.117500px;}
.y128{bottom:764.652000px;}
.y192{bottom:767.473500px;}
.y1eb{bottom:769.177800px;}
.y14{bottom:771.527100px;}
.yfb{bottom:771.895500px;}
.y151{bottom:775.570092px;}
.y1e7{bottom:777.156300px;}
.y229{bottom:780.327300px;}
.y259{bottom:780.331650px;}
.ydc{bottom:780.673500px;}
.y16d{bottom:780.690000px;}
.y5a{bottom:780.706500px;}
.y127{bottom:782.241000px;}
.y191{bottom:785.062500px;}
.yfa{bottom:789.484500px;}
.y1ea{bottom:792.046800px;}
.y13{bottom:796.311450px;}
.y228{bottom:798.147300px;}
.y258{bottom:798.151650px;}
.y1bd{bottom:798.262500px;}
.y32{bottom:798.279000px;}
.y59{bottom:798.295500px;}
.y126{bottom:799.830000px;}
.ydb{bottom:807.073500px;}
.y1e9{bottom:808.030800px;}
.y31{bottom:815.868000px;}
.y58{bottom:815.884500px;}
.y227{bottom:815.967300px;}
.y190{bottom:820.257000px;}
.yf9{bottom:824.662500px;}
.y1e8{bottom:830.899800px;}
.y12{bottom:830.915850px;}
.y30{bottom:833.457000px;}
.y57{bottom:833.473500px;}
.y226{bottom:833.773650px;}
.y257{bottom:833.787300px;}
.yf8{bottom:842.251500px;}
.y2f{bottom:851.046000px;}
.y56{bottom:851.062500px;}
.y225{bottom:851.593650px;}
.y1e6{bottom:855.567600px;}
.y11{bottom:856.775400px;}
.yf7{bottom:859.840500px;}
.y41{bottom:868.651500px;}
.y14c{bottom:868.970400px;}
.y224{bottom:869.413650px;}
.y10{bottom:882.267900px;}
.y2e{bottom:886.240500px;}
.y1e5{bottom:887.233650px;}
.y5{bottom:920.367150px;}
.y40{bottom:931.885500px;}
.y2d{bottom:931.885650px;}
.y4{bottom:937.978500px;}
.y3{bottom:945.477750px;}
.y3f{bottom:949.474500px;}
.y2c{bottom:949.474650px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.891150px;}
.y6{bottom:971.391150px;}
.h4{height:19.602000px;}
.h11{height:28.045153px;}
.h18{height:35.273031px;}
.h5{height:35.328000px;}
.h16{height:36.392621px;}
.h6{height:38.388000px;}
.h7{height:41.130000px;}
.h1a{height:42.117188px;}
.h1b{height:44.749512px;}
.h10{height:45.181641px;}
.h15{height:45.490663px;}
.hb{height:47.381836px;}
.h19{height:48.309697px;}
.hc{height:50.014160px;}
.hd{height:50.153320px;}
.h2{height:52.646484px;}
.h25{height:52.663884px;}
.h23{height:52.664484px;}
.h20{height:52.682484px;}
.h1d{height:52.700484px;}
.h1e{height:52.701084px;}
.h1c{height:52.754484px;}
.ha{height:52.792969px;}
.h21{height:52.810969px;}
.h22{height:52.828969px;}
.h1f{height:52.846369px;}
.h24{height:52.864969px;}
.h13{height:53.740350px;}
.h14{height:56.236636px;}
.hf{height:57.911133px;}
.he{height:58.072266px;}
.h8{height:61.611328px;}
.h9{height:63.351562px;}
.h12{height:72.464774px;}
.h3{height:104.850000px;}
.h17{height:232.921500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:337.381500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2a{left:55.712772px;}
.xb{left:110.551200px;}
.x1{left:113.476500px;}
.x3a{left:119.309100px;}
.xf{left:121.181100px;}
.x16{left:123.307050px;}
.x3d{left:130.392600px;}
.x19{left:131.513519px;}
.x31{left:132.610350px;}
.x11{left:134.101500px;}
.xc{left:136.060200px;}
.x4{left:139.002000px;}
.x12{left:140.314950px;}
.x37{left:146.299950px;}
.x1b{left:149.248350px;}
.x13{left:155.200200px;}
.x10{left:158.128350px;}
.x41{left:160.216350px;}
.x36{left:163.363950px;}
.x3e{left:165.203850px;}
.x40{left:166.234200px;}
.x15{left:168.105900px;}
.x3f{left:169.640100px;}
.x14{left:172.211700px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x17{left:180.533250px;}
.x33{left:185.435550px;}
.x28{left:191.263500px;}
.x1e{left:201.352050px;}
.x32{left:218.255550px;}
.x3b{left:219.641100px;}
.x3c{left:236.651100px;}
.x1d{left:237.944250px;}
.x21{left:251.008800px;}
.x22{left:253.525350px;}
.x23{left:256.554000px;}
.xe{left:258.054900px;}
.x1c{left:284.344859px;}
.x30{left:292.908750px;}
.x29{left:299.519962px;}
.x1f{left:348.880950px;}
.x7{left:350.230200px;}
.x24{left:352.429500px;}
.x26{left:359.249400px;}
.x27{left:369.997500px;}
.x2b{left:372.086550px;}
.x8{left:375.347850px;}
.x9{left:379.007100px;}
.x2c{left:382.961887px;}
.x2d{left:387.659550px;}
.xa{left:397.825950px;}
.x39{left:403.852950px;}
.x25{left:405.612750px;}
.x1a{left:407.775553px;}
.x38{left:410.589450px;}
.x2e{left:414.370050px;}
.x35{left:422.207550px;}
.x3{left:441.045750px;}
.x18{left:446.410739px;}
.x34{left:450.527550px;}
.x20{left:501.529800px;}
.x2f{left:512.059350px;}
.x2{left:521.280900px;}
.xd{left:606.831900px;}
@media print{
.v2{vertical-align:-23.594133pt;}
.v3{vertical-align:-13.980267pt;}
.v1{vertical-align:-12.022933pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.973333pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls28{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls30{letter-spacing:-0.176000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls26{letter-spacing:-0.041916pt;}
.ls27{letter-spacing:-0.041268pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.008000pt;}
.ls4c{letter-spacing:0.008533pt;}
.ls3d{letter-spacing:0.009067pt;}
.ls41{letter-spacing:0.034667pt;}
.ls40{letter-spacing:0.040000pt;}
.ls39{letter-spacing:0.043733pt;}
.ls3b{letter-spacing:0.044267pt;}
.ls8{letter-spacing:0.050667pt;}
.ls3a{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls14{letter-spacing:0.117333pt;}
.ls36{letter-spacing:0.130133pt;}
.ls37{letter-spacing:0.147200pt;}
.ls2{letter-spacing:0.149333pt;}
.ls38{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.202667pt;}
.ls3f{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.253333pt;}
.ls47{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.280000pt;}
.ls45{letter-spacing:0.286933pt;}
.ls33{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.352000pt;}
.ls1a{letter-spacing:0.410667pt;}
.ls3c{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.472000pt;}
.ls35{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.526933pt;}
.ls20{letter-spacing:0.528000pt;}
.ls43{letter-spacing:0.533333pt;}
.ls42{letter-spacing:0.542400pt;}
.ls44{letter-spacing:0.546667pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.608000pt;}
.ls13{letter-spacing:0.645333pt;}
.lsa{letter-spacing:0.672000pt;}
.ls48{letter-spacing:0.686933pt;}
.ls49{letter-spacing:0.693333pt;}
.ls4a{letter-spacing:0.703467pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.709333pt;}
.ls17{letter-spacing:0.762667pt;}
.ls32{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls10{letter-spacing:0.880000pt;}
.ls2b{letter-spacing:0.938667pt;}
.ls12{letter-spacing:0.960000pt;}
.ls31{letter-spacing:0.997333pt;}
.ls50{letter-spacing:1.013333pt;}
.ls51{letter-spacing:1.013867pt;}
.ls1f{letter-spacing:1.114667pt;}
.ls52{letter-spacing:1.120000pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls2a{letter-spacing:1.290667pt;}
.ls23{letter-spacing:1.466667pt;}
.ls25{letter-spacing:1.471913pt;}
.ls4d{letter-spacing:1.493333pt;}
.ls2d{letter-spacing:1.584000pt;}
.ls1c{letter-spacing:1.642667pt;}
.ls2e{letter-spacing:1.818667pt;}
.ls4e{letter-spacing:2.069333pt;}
.ls4f{letter-spacing:2.080000pt;}
.ls4{letter-spacing:11.120000pt;}
.ls24{letter-spacing:13.024000pt;}
.ls1e{letter-spacing:53.386667pt;}
.lsc{letter-spacing:1054.301867pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws79{word-spacing:-62.873600pt;}
.ws7b{word-spacing:-41.267733pt;}
.ws7a{word-spacing:-41.226466pt;}
.ws78{word-spacing:-34.636800pt;}
.ws8f{word-spacing:-15.664000pt;}
.ws67{word-spacing:-14.666667pt;}
.ws15{word-spacing:-13.333333pt;}
.wsb1{word-spacing:-12.080000pt;}
.ws4d{word-spacing:-11.360000pt;}
.ws9f{word-spacing:-10.280000pt;}
.ws9e{word-spacing:-10.040000pt;}
.ws97{word-spacing:-10.000000pt;}
.ws71{word-spacing:-9.533333pt;}
.ws6{word-spacing:-8.288000pt;}
.ws0{word-spacing:-7.344000pt;}
.ws98{word-spacing:-5.280000pt;}
.wsb4{word-spacing:-0.960000pt;}
.ws81{word-spacing:-0.880000pt;}
.ws7{word-spacing:-0.608000pt;}
.ws89{word-spacing:-0.586667pt;}
.wsa4{word-spacing:-0.533333pt;}
.ws92{word-spacing:-0.528000pt;}
.ws60{word-spacing:-0.293333pt;}
.ws90{word-spacing:-0.234667pt;}
.ws14{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.041268pt;}
.ws7c{word-spacing:0.041916pt;}
.ws27{word-spacing:0.053333pt;}
.ws86{word-spacing:0.058667pt;}
.ws54{word-spacing:0.117333pt;}
.ws59{word-spacing:0.176000pt;}
.ws87{word-spacing:0.234667pt;}
.ws1e{word-spacing:0.293333pt;}
.ws6b{word-spacing:0.352000pt;}
.ws49{word-spacing:0.410667pt;}
.ws26{word-spacing:0.469333pt;}
.ws94{word-spacing:0.480000pt;}
.ws77{word-spacing:0.528000pt;}
.ws99{word-spacing:0.533333pt;}
.wse{word-spacing:0.557333pt;}
.ws2c{word-spacing:0.586667pt;}
.wsa7{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.645333pt;}
.ws12{word-spacing:0.658667pt;}
.ws73{word-spacing:0.704000pt;}
.wsaf{word-spacing:0.746667pt;}
.ws37{word-spacing:0.762667pt;}
.ws66{word-spacing:0.821333pt;}
.ws32{word-spacing:0.880000pt;}
.ws42{word-spacing:0.938667pt;}
.ws38{word-spacing:0.997333pt;}
.ws91{word-spacing:1.056000pt;}
.ws5d{word-spacing:1.114667pt;}
.ws96{word-spacing:1.173333pt;}
.ws20{word-spacing:1.226667pt;}
.ws65{word-spacing:1.232000pt;}
.ws35{word-spacing:1.290667pt;}
.ws3f{word-spacing:1.349333pt;}
.ws6a{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.584000pt;}
.ws7f{word-spacing:1.642667pt;}
.ws8b{word-spacing:1.701333pt;}
.ws9d{word-spacing:1.706667pt;}
.ws51{word-spacing:1.760000pt;}
.wsab{word-spacing:1.813333pt;}
.ws18{word-spacing:1.818667pt;}
.ws21{word-spacing:1.936000pt;}
.wsa8{word-spacing:1.973333pt;}
.ws8e{word-spacing:1.994667pt;}
.wsd{word-spacing:2.026667pt;}
.ws50{word-spacing:2.053333pt;}
.ws2d{word-spacing:2.112000pt;}
.ws19{word-spacing:2.170667pt;}
.ws4f{word-spacing:2.229333pt;}
.wsa9{word-spacing:2.240000pt;}
.ws85{word-spacing:2.288000pt;}
.ws5e{word-spacing:2.346667pt;}
.ws39{word-spacing:2.405333pt;}
.ws5{word-spacing:2.464000pt;}
.ws43{word-spacing:2.581333pt;}
.ws3d{word-spacing:2.640000pt;}
.ws48{word-spacing:2.698667pt;}
.wsad{word-spacing:2.720000pt;}
.ws1c{word-spacing:2.757333pt;}
.wsa1{word-spacing:2.773333pt;}
.wsb{word-spacing:2.786667pt;}
.ws55{word-spacing:2.874667pt;}
.ws5b{word-spacing:2.933333pt;}
.ws4b{word-spacing:2.992000pt;}
.ws4c{word-spacing:3.050667pt;}
.ws8a{word-spacing:3.109333pt;}
.ws8c{word-spacing:3.168000pt;}
.ws29{word-spacing:3.226667pt;}
.ws58{word-spacing:3.285333pt;}
.ws22{word-spacing:3.402667pt;}
.ws52{word-spacing:3.461333pt;}
.ws88{word-spacing:3.520000pt;}
.ws72{word-spacing:3.637333pt;}
.ws3e{word-spacing:3.696000pt;}
.ws9{word-spacing:3.698667pt;}
.wsa{word-spacing:3.749333pt;}
.ws69{word-spacing:3.754667pt;}
.ws1d{word-spacing:3.813333pt;}
.ws95{word-spacing:3.872000pt;}
.ws8d{word-spacing:3.930667pt;}
.ws1f{word-spacing:3.989333pt;}
.ws76{word-spacing:4.048000pt;}
.ws44{word-spacing:4.106667pt;}
.ws4{word-spacing:4.144000pt;}
.ws13{word-spacing:4.154667pt;}
.ws45{word-spacing:4.165333pt;}
.ws2e{word-spacing:4.224000pt;}
.ws7e{word-spacing:4.282667pt;}
.wsaa{word-spacing:4.320000pt;}
.ws83{word-spacing:4.341333pt;}
.ws9a{word-spacing:4.373333pt;}
.ws11{word-spacing:4.408000pt;}
.wsae{word-spacing:4.426667pt;}
.ws6f{word-spacing:4.458667pt;}
.ws4e{word-spacing:4.517333pt;}
.wsb5{word-spacing:4.533333pt;}
.ws84{word-spacing:4.576000pt;}
.ws1b{word-spacing:4.634667pt;}
.wsa5{word-spacing:4.800000pt;}
.ws17{word-spacing:4.810667pt;}
.ws1a{word-spacing:4.869333pt;}
.wsb0{word-spacing:4.906667pt;}
.ws80{word-spacing:4.928000pt;}
.ws57{word-spacing:4.986667pt;}
.ws2f{word-spacing:5.045333pt;}
.ws61{word-spacing:5.162667pt;}
.wsf{word-spacing:5.168000pt;}
.ws41{word-spacing:5.221333pt;}
.ws6e{word-spacing:5.280000pt;}
.wsb2{word-spacing:5.333333pt;}
.ws3a{word-spacing:5.338667pt;}
.ws82{word-spacing:5.456000pt;}
.ws2b{word-spacing:5.514667pt;}
.ws36{word-spacing:5.573333pt;}
.ws56{word-spacing:5.632000pt;}
.ws30{word-spacing:5.690667pt;}
.wsa0{word-spacing:5.706667pt;}
.ws31{word-spacing:5.749333pt;}
.wsb6{word-spacing:5.760000pt;}
.ws53{word-spacing:5.808000pt;}
.ws64{word-spacing:5.866667pt;}
.ws70{word-spacing:5.925333pt;}
.wsc{word-spacing:5.928000pt;}
.ws93{word-spacing:6.000000pt;}
.ws40{word-spacing:6.042667pt;}
.ws10{word-spacing:6.080000pt;}
.ws5a{word-spacing:6.101333pt;}
.ws63{word-spacing:6.160000pt;}
.ws9c{word-spacing:6.186667pt;}
.ws25{word-spacing:6.218667pt;}
.ws46{word-spacing:6.277333pt;}
.wsa2{word-spacing:6.293333pt;}
.ws8{word-spacing:6.333333pt;}
.ws47{word-spacing:6.336000pt;}
.ws5c{word-spacing:6.394667pt;}
.ws33{word-spacing:6.453333pt;}
.ws6c{word-spacing:6.512000pt;}
.wsac{word-spacing:6.613333pt;}
.ws3c{word-spacing:6.629333pt;}
.ws28{word-spacing:6.666667pt;}
.ws68{word-spacing:6.688000pt;}
.ws62{word-spacing:6.746667pt;}
.ws75{word-spacing:6.805333pt;}
.wsb3{word-spacing:6.826667pt;}
.ws4a{word-spacing:6.864000pt;}
.ws24{word-spacing:6.922667pt;}
.ws3b{word-spacing:6.981333pt;}
.ws74{word-spacing:7.040000pt;}
.ws34{word-spacing:7.216000pt;}
.ws23{word-spacing:7.274667pt;}
.ws16{word-spacing:7.333333pt;}
.ws6d{word-spacing:7.392000pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
.ws9b{word-spacing:13.333333pt;}
.wsa3{word-spacing:25.760000pt;}
.wsa6{word-spacing:26.293333pt;}
._16{margin-left:-23.760000pt;}
._23{margin-left:-20.944533pt;}
._14{margin-left:-19.712000pt;}
._8{margin-left:-14.666667pt;}
._b{margin-left:-13.082667pt;}
._10{margin-left:-8.154667pt;}
._c{margin-left:-6.570667pt;}
._f{margin-left:-5.397333pt;}
._15{margin-left:-1.977867pt;}
._5{margin-left:-0.896800pt;}
._0{width:0.933600pt;}
._e{width:1.973333pt;}
._24{width:2.944533pt;}
._22{width:4.318933pt;}
._1d{width:5.256533pt;}
._2{width:6.234667pt;}
._3{width:7.952000pt;}
._1f{width:8.960000pt;}
._4{width:10.378667pt;}
._1{width:11.861333pt;}
._1e{width:12.800000pt;}
._20{width:21.920000pt;}
._11{width:25.285333pt;}
._21{width:26.293333pt;}
._a{width:33.120000pt;}
._9{width:38.773333pt;}
._6{width:40.000000pt;}
._12{width:45.936000pt;}
._13{width:49.573333pt;}
._1c{width:215.856000pt;}
._1a{width:237.792000pt;}
._1b{width:397.056000pt;}
._18{width:413.760000pt;}
._17{width:426.480000pt;}
._19{width:502.416000pt;}
._7{width:1029.844000pt;}
._d{width:1031.823200pt;}
.fs3{font-size:24.000000pt;}
.fs0{font-size:32.000000pt;}
.fse{font-size:34.636800pt;}
.fs5{font-size:37.333333pt;}
.fsd{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fs16{font-size:41.267733pt;}
.fs12{font-size:41.915733pt;}
.fs15{font-size:42.577600pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs14{font-size:53.221867pt;}
.fs1{font-size:53.333333pt;}
.fs10{font-size:56.520000pt;}
.fsc{font-size:58.666667pt;}
.fs11{font-size:62.873600pt;}
.fs8{font-size:64.000000pt;}
.fs13{font-size:65.794133pt;}
.fs7{font-size:80.000000pt;}
.fsf{font-size:84.780267pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:0.146533pt;}
.y1{bottom:75.590533pt;}
.y2b{bottom:75.590667pt;}
.y161{bottom:80.205936pt;}
.yf{bottom:105.825467pt;}
.ybd{bottom:106.149867pt;}
.yae{bottom:106.191600pt;}
.y11d{bottom:106.220533pt;}
.y20b{bottom:106.396400pt;}
.y10b{bottom:106.435200pt;}
.y72{bottom:106.442533pt;}
.y223{bottom:106.517200pt;}
.y14b{bottom:106.650267pt;}
.y51{bottom:106.664800pt;}
.y125{bottom:106.741600pt;}
.y3e{bottom:106.774000pt;}
.y55{bottom:106.906133pt;}
.y1d6{bottom:107.529333pt;}
.y18f{bottom:107.588000pt;}
.y16c{bottom:107.718933pt;}
.yda{bottom:108.102933pt;}
.y9d{bottom:108.459867pt;}
.ye{bottom:116.493467pt;}
.y54{bottom:121.119467pt;}
.ybc{bottom:121.784533pt;}
.yad{bottom:121.826267pt;}
.y11c{bottom:121.855200pt;}
.y20a{bottom:122.031067pt;}
.y71{bottom:122.077200pt;}
.y14a{bottom:122.284933pt;}
.y50{bottom:122.299467pt;}
.y222{bottom:122.357200pt;}
.y124{bottom:122.376267pt;}
.y3d{bottom:122.408667pt;}
.y1d5{bottom:123.164000pt;}
.yf6{bottom:123.208000pt;}
.y18e{bottom:123.222667pt;}
.y16b{bottom:123.353600pt;}
.y256{bottom:123.536133pt;}
.y9c{bottom:124.094533pt;}
.yd9{bottom:131.569600pt;}
.yd{bottom:132.830133pt;}
.ybb{bottom:137.419200pt;}
.yac{bottom:137.460933pt;}
.y11b{bottom:137.489867pt;}
.y209{bottom:137.665733pt;}
.y70{bottom:137.711867pt;}
.y149{bottom:137.919600pt;}
.y4f{bottom:137.934133pt;}
.y123{bottom:138.010933pt;}
.y3c{bottom:138.043333pt;}
.y221{bottom:138.185200pt;}
.y1d4{bottom:138.798667pt;}
.yf5{bottom:138.842667pt;}
.y18d{bottom:138.857333pt;}
.y255{bottom:139.368133pt;}
.yd8{bottom:147.204267pt;}
.y9b{bottom:147.561200pt;}
.yc{bottom:149.163467pt;}
.yab{bottom:153.095600pt;}
.y11a{bottom:153.124533pt;}
.y208{bottom:153.300400pt;}
.y6f{bottom:153.346533pt;}
.y4e{bottom:153.568800pt;}
.y122{bottom:153.645600pt;}
.y3b{bottom:153.678000pt;}
.y220{bottom:154.025200pt;}
.y1d3{bottom:154.433333pt;}
.y18c{bottom:154.492000pt;}
.y254{bottom:155.208133pt;}
.y148{bottom:159.992933pt;}
.yba{bottom:160.885867pt;}
.yf4{bottom:162.309333pt;}
.y9a{bottom:163.195867pt;}
.yb{bottom:163.611467pt;}
.y16a{bottom:165.708533pt;}
.y119{bottom:168.759200pt;}
.y207{bottom:168.935067pt;}
.y4d{bottom:169.203467pt;}
.y121{bottom:169.280267pt;}
.y3a{bottom:169.312667pt;}
.y21f{bottom:169.865200pt;}
.y18b{bottom:170.126667pt;}
.y252{bottom:171.036133pt;}
.y253{bottom:171.048133pt;}
.ya{bottom:173.551467pt;}
.y147{bottom:175.627600pt;}
.y1d2{bottom:177.900000pt;}
.yf3{bottom:177.944000pt;}
.yd7{bottom:178.488267pt;}
.y99{bottom:178.830533pt;}
.yaa{bottom:184.379333pt;}
.y118{bottom:184.393867pt;}
.y206{bottom:184.569733pt;}
.y6e{bottom:184.630533pt;}
.y4c{bottom:184.838133pt;}
.y120{bottom:184.914933pt;}
.y39{bottom:184.947333pt;}
.y21e{bottom:185.693200pt;}
.y18a{bottom:185.761333pt;}
.y251{bottom:186.876133pt;}
.y169{bottom:187.028533pt;}
.y9{bottom:189.156800pt;}
.y146{bottom:191.262267pt;}
.y1d1{bottom:193.534667pt;}
.yf2{bottom:193.578667pt;}
.yd6{bottom:194.122933pt;}
.y98{bottom:194.465200pt;}
.y8{bottom:199.096800pt;}
.y162{bottom:199.201445pt;}
.ya9{bottom:200.019333pt;}
.y117{bottom:200.028533pt;}
.y205{bottom:200.204400pt;}
.y6d{bottom:200.265200pt;}
.y4b{bottom:200.472800pt;}
.y11f{bottom:200.549600pt;}
.y38{bottom:200.582000pt;}
.y189{bottom:201.396000pt;}
.y21d{bottom:201.533200pt;}
.y250{bottom:202.716133pt;}
.y145{bottom:206.896933pt;}
.y87{bottom:207.848533pt;}
.y1d0{bottom:209.169333pt;}
.yf1{bottom:209.213333pt;}
.y1bc{bottom:209.228000pt;}
.y97{bottom:210.099867pt;}
.y15f{bottom:210.489333pt;}
.yb9{bottom:211.325333pt;}
.y116{bottom:215.663200pt;}
.y204{bottom:215.839067pt;}
.y6c{bottom:215.899867pt;}
.y188{bottom:217.030667pt;}
.y21c{bottom:217.373200pt;}
.y24f{bottom:218.540133pt;}
.y144{bottom:222.531600pt;}
.ya8{bottom:222.766000pt;}
.y86{bottom:223.483200pt;}
.y4a{bottom:223.939467pt;}
.y37{bottom:224.048667pt;}
.y1cf{bottom:224.804000pt;}
.yf0{bottom:224.848000pt;}
.y1bb{bottom:224.862667pt;}
.yd5{bottom:225.406800pt;}
.y96{bottom:225.734533pt;}
.y203{bottom:231.473733pt;}
.y6b{bottom:231.534533pt;}
.y187{bottom:232.665333pt;}
.y1ad{bottom:232.680000pt;}
.y21b{bottom:233.189200pt;}
.y24e{bottom:234.380133pt;}
.y156{bottom:236.671067pt;}
.y143{bottom:238.166267pt;}
.ya7{bottom:238.406000pt;}
.y85{bottom:239.117867pt;}
.y115{bottom:239.129867pt;}
.y49{bottom:239.574133pt;}
.y36{bottom:239.683333pt;}
.y1ba{bottom:240.497333pt;}
.y2a{bottom:240.979200pt;}
.yd4{bottom:241.046800pt;}
.y95{bottom:241.369200pt;}
.y154{bottom:242.541867pt;}
.y11e{bottom:245.176133pt;}
.y1ce{bottom:248.270667pt;}
.y186{bottom:248.300000pt;}
.yef{bottom:248.314667pt;}
.y21a{bottom:249.029200pt;}
.y24d{bottom:250.220133pt;}
.y142{bottom:253.800933pt;}
.y84{bottom:254.752533pt;}
.y29{bottom:255.191200pt;}
.y48{bottom:255.208800pt;}
.y35{bottom:255.318000pt;}
.y1b9{bottom:256.132000pt;}
.y94{bottom:257.003867pt;}
.y1e4{bottom:257.652000pt;}
.y164{bottom:260.886668pt;}
.y202{bottom:262.757733pt;}
.y6a{bottom:262.818533pt;}
.yd3{bottom:263.793467pt;}
.yee{bottom:263.949333pt;}
.y219{bottom:264.869200pt;}
.y24c{bottom:266.060133pt;}
.y141{bottom:269.435600pt;}
.ya6{bottom:269.733733pt;}
.y83{bottom:270.387200pt;}
.y47{bottom:270.843467pt;}
.y34{bottom:270.952667pt;}
.y185{bottom:271.766667pt;}
.y93{bottom:272.638533pt;}
.y1e3{bottom:273.286667pt;}
.y15e{bottom:273.420933pt;}
.y1ac{bottom:275.697333pt;}
.y28{bottom:276.509200pt;}
.y15d{bottom:276.740400pt;}
.y114{bottom:278.231200pt;}
.y69{bottom:278.453200pt;}
.yd2{bottom:279.433467pt;}
.yed{bottom:279.584000pt;}
.y1b8{bottom:279.598667pt;}
.y218{bottom:280.709200pt;}
.y24b{bottom:281.896133pt;}
.y15a{bottom:283.838400pt;}
.ya5{bottom:285.368400pt;}
.y82{bottom:286.021867pt;}
.y46{bottom:286.478133pt;}
.y1cd{bottom:287.372000pt;}
.y184{bottom:287.401333pt;}
.y92{bottom:288.273200pt;}
.y1e2{bottom:288.921333pt;}
.y27{bottom:290.721200pt;}
.y1ab{bottom:291.332000pt;}
.y140{bottom:291.508933pt;}
.y113{bottom:293.865867pt;}
.y68{bottom:294.087867pt;}
.yec{bottom:295.218667pt;}
.y217{bottom:296.549200pt;}
.y249{bottom:297.724133pt;}
.y24a{bottom:297.736133pt;}
.ya4{bottom:301.003067pt;}
.y45{bottom:302.112800pt;}
.y1cc{bottom:303.006667pt;}
.y183{bottom:303.036000pt;}
.y26{bottom:304.933200pt;}
.y1aa{bottom:306.966667pt;}
.y13f{bottom:307.143600pt;}
.y81{bottom:309.488533pt;}
.y112{bottom:309.500533pt;}
.yd1{bottom:310.838667pt;}
.yeb{bottom:310.853333pt;}
.y33{bottom:311.421733pt;}
.y91{bottom:311.739867pt;}
.y216{bottom:312.389200pt;}
.y248{bottom:313.564133pt;}
.ya3{bottom:316.637733pt;}
.y44{bottom:317.747467pt;}
.y1cb{bottom:318.641333pt;}
.y182{bottom:318.670667pt;}
.y1b7{bottom:318.700000pt;}
.y201{bottom:319.141600pt;}
.y25{bottom:319.145200pt;}
.y168{bottom:319.324133pt;}
.y167{bottom:320.748533pt;}
.y1a9{bottom:322.601333pt;}
.y15c{bottom:322.632400pt;}
.y13e{bottom:322.778267pt;}
.y80{bottom:325.123200pt;}
.y111{bottom:325.135200pt;}
.yd0{bottom:326.473333pt;}
.yea{bottom:326.488000pt;}
.y153{bottom:326.585333pt;}
.y15b{bottom:327.358400pt;}
.y157{bottom:327.622400pt;}
.y215{bottom:328.229200pt;}
.y247{bottom:329.404133pt;}
.ya2{bottom:332.272400pt;}
.y24{bottom:333.357200pt;}
.y1ca{bottom:334.276000pt;}
.y181{bottom:334.305333pt;}
.y1b6{bottom:334.334667pt;}
.y165{bottom:334.367600pt;}
.y1e1{bottom:336.887733pt;}
.y1a8{bottom:338.236000pt;}
.y13d{bottom:338.412933pt;}
.y159{bottom:339.384000pt;}
.y200{bottom:339.469600pt;}
.y7f{bottom:340.757867pt;}
.y67{bottom:341.008533pt;}
.ycf{bottom:342.108000pt;}
.ye9{bottom:342.122667pt;}
.y245{bottom:345.232133pt;}
.y246{bottom:345.244133pt;}
.y23{bottom:347.569200pt;}
.ya1{bottom:347.907067pt;}
.y1c9{bottom:349.910667pt;}
.y180{bottom:349.940000pt;}
.y1b5{bottom:349.969333pt;}
.y90{bottom:350.841200pt;}
.y1e0{bottom:351.251733pt;}
.y1a7{bottom:353.870667pt;}
.y13c{bottom:354.047600pt;}
.y166{bottom:356.005067pt;}
.y7e{bottom:356.392533pt;}
.y10a{bottom:357.742667pt;}
.ye8{bottom:357.757333pt;}
.y214{bottom:359.781333pt;}
.y1ff{bottom:359.797600pt;}
.y43{bottom:360.103600pt;}
.y244{bottom:361.072133pt;}
.y22{bottom:361.781200pt;}
.ya0{bottom:363.541733pt;}
.y1c8{bottom:365.545333pt;}
.y17f{bottom:365.574667pt;}
.y1b4{bottom:365.604000pt;}
.y1df{bottom:365.615733pt;}
.y8f{bottom:366.475867pt;}
.y1fb{bottom:366.889600pt;}
.y163{bottom:369.173200pt;}
.y1a6{bottom:369.505333pt;}
.y13b{bottom:369.682267pt;}
.y7d{bottom:372.027200pt;}
.y110{bottom:372.055867pt;}
.y109{bottom:373.377333pt;}
.yce{bottom:373.392000pt;}
.y42{bottom:374.316933pt;}
.y21{bottom:375.993200pt;}
.y243{bottom:376.912133pt;}
.y9f{bottom:379.176400pt;}
.y1de{bottom:379.979733pt;}
.y1fe{bottom:380.125600pt;}
.y1c7{bottom:381.180000pt;}
.y17e{bottom:381.209333pt;}
.y1b3{bottom:381.238667pt;}
.y158{bottom:381.312533pt;}
.y8e{bottom:382.110533pt;}
.y155{bottom:382.125733pt;}
.y1a5{bottom:385.140000pt;}
.y13a{bottom:385.316933pt;}
.y7c{bottom:387.661867pt;}
.y108{bottom:389.012000pt;}
.ycd{bottom:389.026667pt;}
.y241{bottom:392.744133pt;}
.y242{bottom:392.752133pt;}
.y1fd{bottom:394.333600pt;}
.y1dd{bottom:394.343733pt;}
.y17d{bottom:396.844000pt;}
.y8d{bottom:397.745200pt;}
.y1a4{bottom:400.774667pt;}
.y139{bottom:400.951600pt;}
.y7b{bottom:403.296533pt;}
.y20{bottom:404.417200pt;}
.y107{bottom:404.646667pt;}
.ycc{bottom:404.661333pt;}
.y1b2{bottom:404.705333pt;}
.y240{bottom:408.584133pt;}
.y1dc{bottom:408.707733pt;}
.y213{bottom:412.464000pt;}
.y8c{bottom:413.379867pt;}
.y1fc{bottom:414.661600pt;}
.y1a3{bottom:416.409333pt;}
.y138{bottom:416.586267pt;}
.y1f{bottom:418.629200pt;}
.y7a{bottom:418.931200pt;}
.y106{bottom:420.281333pt;}
.ycb{bottom:420.296000pt;}
.y17c{bottom:420.310667pt;}
.y1db{bottom:423.071733pt;}
.y23e{bottom:424.412267pt;}
.y23f{bottom:424.424133pt;}
.y9e{bottom:426.097067pt;}
.y212{bottom:428.098667pt;}
.y8b{bottom:429.014533pt;}
.y1a2{bottom:432.044000pt;}
.y137{bottom:432.220933pt;}
.y79{bottom:434.565867pt;}
.y105{bottom:435.916000pt;}
.yca{bottom:435.930667pt;}
.y17b{bottom:435.945333pt;}
.y1fa{bottom:436.585600pt;}
.y1da{bottom:437.435733pt;}
.y1e{bottom:439.947200pt;}
.y23d{bottom:440.252267pt;}
.y211{bottom:443.733333pt;}
.y1b1{bottom:443.806667pt;}
.y1a1{bottom:447.678667pt;}
.y136{bottom:447.855600pt;}
.y78{bottom:450.200533pt;}
.y152{bottom:451.222533pt;}
.y104{bottom:451.550667pt;}
.ye7{bottom:451.565333pt;}
.y17a{bottom:451.580000pt;}
.y1d{bottom:454.159200pt;}
.y23c{bottom:456.092267pt;}
.y1f9{bottom:456.913600pt;}
.y1d9{bottom:459.366400pt;}
.y210{bottom:459.368000pt;}
.yc9{bottom:459.397333pt;}
.y1b0{bottom:459.441333pt;}
.y8a{bottom:460.298533pt;}
.y1a0{bottom:463.313333pt;}
.y135{bottom:463.562667pt;}
.y77{bottom:465.835200pt;}
.y1c6{bottom:467.185333pt;}
.y1c{bottom:468.371200pt;}
.y1f5{bottom:470.125600pt;}
.y23a{bottom:471.920133pt;}
.y23b{bottom:471.932267pt;}
.y1d8{bottom:472.155733pt;}
.y20f{bottom:475.002667pt;}
.y103{bottom:475.017333pt;}
.yc8{bottom:475.032000pt;}
.y179{bottom:475.046667pt;}
.y1af{bottom:475.076000pt;}
.y89{bottom:475.933200pt;}
.y1f8{bottom:477.241600pt;}
.y19f{bottom:478.948000pt;}
.y134{bottom:479.197333pt;}
.y76{bottom:481.469867pt;}
.y1b{bottom:482.583200pt;}
.y1c5{bottom:482.820000pt;}
.y1f4{bottom:484.333600pt;}
.y239{bottom:487.760133pt;}
.y20e{bottom:490.637333pt;}
.yc7{bottom:490.666667pt;}
.y1ae{bottom:490.710667pt;}
.y19e{bottom:494.582667pt;}
.y1a{bottom:496.795200pt;}
.y75{bottom:497.104533pt;}
.y53{bottom:497.383867pt;}
.y1f7{bottom:497.569600pt;}
.y1d7{bottom:499.841200pt;}
.y133{bottom:501.270667pt;}
.y238{bottom:503.600133pt;}
.y14f{bottom:504.770921pt;}
.y1c4{bottom:506.286667pt;}
.yc6{bottom:506.301333pt;}
.y66{bottom:506.345333pt;}
.y150{bottom:507.595733pt;}
.y19d{bottom:510.217333pt;}
.y19{bottom:511.007200pt;}
.y52{bottom:511.597200pt;}
.y74{bottom:512.739200pt;}
.y102{bottom:514.118667pt;}
.y132{bottom:516.905333pt;}
.y1f6{bottom:517.897600pt;}
.y236{bottom:519.432133pt;}
.y237{bottom:519.440133pt;}
.y20d{bottom:521.921333pt;}
.ye6{bottom:521.936000pt;}
.yb8{bottom:521.950667pt;}
.y178{bottom:521.965333pt;}
.y65{bottom:521.980000pt;}
.y88{bottom:522.853867pt;}
.y18{bottom:525.219200pt;}
.y19c{bottom:525.852000pt;}
.y101{bottom:529.753333pt;}
.yc5{bottom:529.768000pt;}
.y131{bottom:532.540000pt;}
.y235{bottom:535.272133pt;}
.y20c{bottom:537.556000pt;}
.ye5{bottom:537.570667pt;}
.yb7{bottom:537.585333pt;}
.y177{bottom:537.600000pt;}
.y64{bottom:537.614667pt;}
.y17{bottom:539.431200pt;}
.y1f3{bottom:539.821600pt;}
.y19b{bottom:541.486667pt;}
.y100{bottom:545.388000pt;}
.yc4{bottom:545.402667pt;}
.y130{bottom:548.174667pt;}
.y233{bottom:551.100133pt;}
.y234{bottom:551.112133pt;}
.ye4{bottom:553.205333pt;}
.y10f{bottom:553.220000pt;}
.y176{bottom:553.234667pt;}
.y63{bottom:553.249333pt;}
.y19a{bottom:557.121333pt;}
.y73{bottom:559.659867pt;}
.y1f2{bottom:560.149600pt;}
.y1c3{bottom:561.022667pt;}
.yc3{bottom:561.037333pt;}
.yb6{bottom:561.052000pt;}
.y12f{bottom:563.809333pt;}
.y232{bottom:566.940133pt;}
.ye3{bottom:568.840000pt;}
.yff{bottom:568.854667pt;}
.y175{bottom:568.869333pt;}
.y62{bottom:568.884000pt;}
.y199{bottom:572.756000pt;}
.y1c2{bottom:576.657333pt;}
.yc2{bottom:576.672000pt;}
.yb5{bottom:576.686667pt;}
.y12e{bottom:579.444000pt;}
.y1ee{bottom:580.465600pt;}
.y1f1{bottom:580.477600pt;}
.y231{bottom:582.780133pt;}
.ye2{bottom:584.474667pt;}
.yfe{bottom:584.489333pt;}
.y174{bottom:584.504000pt;}
.y61{bottom:584.518667pt;}
.y198{bottom:588.390667pt;}
.y1c1{bottom:592.292000pt;}
.yc1{bottom:592.306667pt;}
.yb4{bottom:592.321333pt;}
.y12d{bottom:595.078667pt;}
.y261{bottom:598.612133pt;}
.y22f{bottom:598.616133pt;}
.y230{bottom:598.620133pt;}
.ye1{bottom:600.109333pt;}
.yfd{bottom:600.124000pt;}
.y173{bottom:600.138667pt;}
.y60{bottom:600.153333pt;}
.y1f0{bottom:600.805600pt;}
.y197{bottom:604.025333pt;}
.y1c0{bottom:607.926667pt;}
.yc0{bottom:607.941333pt;}
.yb3{bottom:607.956000pt;}
.y14e{bottom:608.196405pt;}
.y12c{bottom:610.713333pt;}
.y22e{bottom:614.448133pt;}
.y260{bottom:614.452133pt;}
.ye0{bottom:615.744000pt;}
.yfc{bottom:615.758667pt;}
.y172{bottom:615.773333pt;}
.y5f{bottom:615.788000pt;}
.y196{bottom:619.660000pt;}
.y1ef{bottom:621.133600pt;}
.y1bf{bottom:623.561333pt;}
.ybf{bottom:623.576000pt;}
.yb2{bottom:623.590667pt;}
.y25e{bottom:630.280133pt;}
.y22d{bottom:630.288133pt;}
.y25f{bottom:630.292133pt;}
.ydf{bottom:631.378667pt;}
.y10e{bottom:631.393333pt;}
.y171{bottom:631.408000pt;}
.y5e{bottom:631.422667pt;}
.y12b{bottom:632.786667pt;}
.y16{bottom:633.012000pt;}
.y195{bottom:635.294667pt;}
.y1be{bottom:639.196000pt;}
.ybe{bottom:639.210667pt;}
.yb1{bottom:639.225333pt;}
.y1ed{bottom:643.057600pt;}
.y25d{bottom:646.120133pt;}
.y22c{bottom:646.124133pt;}
.yde{bottom:647.013333pt;}
.y10d{bottom:647.028000pt;}
.y170{bottom:647.042667pt;}
.y5d{bottom:647.057333pt;}
.y12a{bottom:648.421333pt;}
.y194{bottom:650.929333pt;}
.yb0{bottom:654.860000pt;}
.y15{bottom:655.042533pt;}
.y22b{bottom:661.956133pt;}
.y25c{bottom:661.960133pt;}
.y10c{bottom:662.662667pt;}
.y16f{bottom:662.677333pt;}
.y5c{bottom:662.692000pt;}
.y1ec{bottom:663.385600pt;}
.y129{bottom:664.056000pt;}
.y193{bottom:666.564000pt;}
.y14d{bottom:668.187343pt;}
.yaf{bottom:670.494667pt;}
.y25a{bottom:677.788133pt;}
.y22a{bottom:677.796133pt;}
.y25b{bottom:677.800133pt;}
.ydd{bottom:678.297333pt;}
.y16e{bottom:678.312000pt;}
.y5b{bottom:678.326667pt;}
.y128{bottom:679.690667pt;}
.y192{bottom:682.198667pt;}
.y1eb{bottom:683.713600pt;}
.y14{bottom:685.801867pt;}
.yfb{bottom:686.129333pt;}
.y151{bottom:689.395637pt;}
.y1e7{bottom:690.805600pt;}
.y229{bottom:693.624267pt;}
.y259{bottom:693.628133pt;}
.ydc{bottom:693.932000pt;}
.y16d{bottom:693.946667pt;}
.y5a{bottom:693.961333pt;}
.y127{bottom:695.325333pt;}
.y191{bottom:697.833333pt;}
.yfa{bottom:701.764000pt;}
.y1ea{bottom:704.041600pt;}
.y13{bottom:707.832400pt;}
.y228{bottom:709.464267pt;}
.y258{bottom:709.468133pt;}
.y1bd{bottom:709.566667pt;}
.y32{bottom:709.581333pt;}
.y59{bottom:709.596000pt;}
.y126{bottom:710.960000pt;}
.ydb{bottom:717.398667pt;}
.y1e9{bottom:718.249600pt;}
.y31{bottom:725.216000pt;}
.y58{bottom:725.230667pt;}
.y227{bottom:725.304267pt;}
.y190{bottom:729.117333pt;}
.yf9{bottom:733.033333pt;}
.y1e8{bottom:738.577600pt;}
.y12{bottom:738.591867pt;}
.y30{bottom:740.850667pt;}
.y57{bottom:740.865333pt;}
.y226{bottom:741.132133pt;}
.y257{bottom:741.144267pt;}
.yf8{bottom:748.668000pt;}
.y2f{bottom:756.485333pt;}
.y56{bottom:756.500000pt;}
.y225{bottom:756.972133pt;}
.y1e6{bottom:760.504533pt;}
.y11{bottom:761.578133pt;}
.yf7{bottom:764.302667pt;}
.y41{bottom:772.134667pt;}
.y14c{bottom:772.418133pt;}
.y224{bottom:772.812133pt;}
.y10{bottom:784.238133pt;}
.y2e{bottom:787.769333pt;}
.y1e5{bottom:788.652133pt;}
.y5{bottom:818.104133pt;}
.y40{bottom:828.342667pt;}
.y2d{bottom:828.342800pt;}
.y4{bottom:833.758667pt;}
.y3{bottom:840.424667pt;}
.y3f{bottom:843.977333pt;}
.y2c{bottom:843.977467pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458800pt;}
.y6{bottom:863.458800pt;}
.h4{height:17.424000pt;}
.h11{height:24.929025pt;}
.h18{height:31.353805pt;}
.h5{height:31.402667pt;}
.h16{height:32.348997pt;}
.h6{height:34.122667pt;}
.h7{height:36.560000pt;}
.h1a{height:37.437500pt;}
.h1b{height:39.777344pt;}
.h10{height:40.161458pt;}
.h15{height:40.436145pt;}
.hb{height:42.117188pt;}
.h19{height:42.941953pt;}
.hc{height:44.457031pt;}
.hd{height:44.580729pt;}
.h2{height:46.796875pt;}
.h25{height:46.812342pt;}
.h23{height:46.812875pt;}
.h20{height:46.828875pt;}
.h1d{height:46.844875pt;}
.h1e{height:46.845408pt;}
.h1c{height:46.892875pt;}
.ha{height:46.927083pt;}
.h21{height:46.943083pt;}
.h22{height:46.959083pt;}
.h1f{height:46.974550pt;}
.h24{height:46.991083pt;}
.h13{height:47.769200pt;}
.h14{height:49.988121pt;}
.hf{height:51.476562pt;}
.he{height:51.619792pt;}
.h8{height:54.765625pt;}
.h9{height:56.312500pt;}
.h12{height:64.413132pt;}
.h3{height:93.200000pt;}
.h17{height:207.041333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:299.894667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2a{left:49.522464pt;}
.xb{left:98.267733pt;}
.x1{left:100.868000pt;}
.x3a{left:106.052533pt;}
.xf{left:107.716533pt;}
.x16{left:109.606267pt;}
.x3d{left:115.904533pt;}
.x19{left:116.900906pt;}
.x31{left:117.875867pt;}
.x11{left:119.201333pt;}
.xc{left:120.942400pt;}
.x4{left:123.557333pt;}
.x12{left:124.724400pt;}
.x37{left:130.044400pt;}
.x1b{left:132.665200pt;}
.x13{left:137.955733pt;}
.x10{left:140.558533pt;}
.x41{left:142.414533pt;}
.x36{left:145.212400pt;}
.x3e{left:146.847867pt;}
.x40{left:147.763733pt;}
.x15{left:149.427467pt;}
.x3f{left:150.791200pt;}
.x14{left:153.077067pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x17{left:160.474000pt;}
.x33{left:164.831600pt;}
.x28{left:170.012000pt;}
.x1e{left:178.979600pt;}
.x32{left:194.004933pt;}
.x3b{left:195.236533pt;}
.x3c{left:210.356533pt;}
.x1d{left:211.506000pt;}
.x21{left:223.118933pt;}
.x22{left:225.355867pt;}
.x23{left:228.048000pt;}
.xe{left:229.382133pt;}
.x1c{left:252.750986pt;}
.x30{left:260.363333pt;}
.x29{left:266.239966pt;}
.x1f{left:310.116400pt;}
.x7{left:311.315733pt;}
.x24{left:313.270667pt;}
.x26{left:319.332800pt;}
.x27{left:328.886667pt;}
.x2b{left:330.743600pt;}
.x8{left:333.642533pt;}
.x9{left:336.895200pt;}
.x2c{left:340.410567pt;}
.x2d{left:344.586267pt;}
.xa{left:353.623067pt;}
.x39{left:358.980400pt;}
.x25{left:360.544667pt;}
.x1a{left:362.467158pt;}
.x38{left:364.968400pt;}
.x2e{left:368.328933pt;}
.x35{left:375.295600pt;}
.x3{left:392.040667pt;}
.x18{left:396.809546pt;}
.x34{left:400.468933pt;}
.x20{left:445.804267pt;}
.x2f{left:455.163867pt;}
.x2{left:463.360800pt;}
.xd{left:539.406133pt;}
}




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