
    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_97125a5f1779f0fac07e9164.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_fb373d64485f2fb508a5bf7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_59586258dff86709abf3af90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.684000;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_888f8b2aed90b4b92e86964f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.697000;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_eeaf115c31fe5849e9e64d6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_53afd3ee104b9e5391acaea6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_c5e8e5ef8f2385674efa571f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_cf131803b8da92d706d16c12.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896000;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_3ee3ae83dc3301eff814cf59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905000;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_fb445d22ce67e63a46ad35fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_56e10c83a348f8356d3f1725.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_24a846a2790958e674f8d4b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.580000;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_757047a711cea6ce7a90a35c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.716000;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_c61cf665865027f5e93c7c24.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.799000;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_8404db0f0fe6b60f227c75ba.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_afc06764af93b5ed54a1ac38.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_13a54ba84514d42f0207e68d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;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_a1ef4b645e5d04af7faa1276.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.451000;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_afe899a93240d232772f172b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.778000;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;}
.m1{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);}
.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);}
.v16{vertical-align:-66.365400px;}
.v11{vertical-align:-46.546860px;}
.v13{vertical-align:-25.919514px;}
.v2{vertical-align:-22.842180px;}
.v12{vertical-align:-19.924200px;}
.v3{vertical-align:-8.962500px;}
.vc{vertical-align:-5.992968px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.796120px;}
.v8{vertical-align:16.954680px;}
.v10{vertical-align:18.035160px;}
.va{vertical-align:20.627340px;}
.v1{vertical-align:21.653880px;}
.v4{vertical-align:24.677340px;}
.vb{vertical-align:26.622660px;}
.v7{vertical-align:36.450000px;}
.v6{vertical-align:39.473460px;}
.vf{vertical-align:40.985160px;}
.v17{vertical-align:62.477460px;}
.ve{vertical-align:75.869586px;}
.v9{vertical-align:76.896120px;}
.v14{vertical-align:80.189100px;}
.vd{vertical-align:81.864900px;}
.v18{vertical-align:84.400800px;}
.v15{vertical-align:102.220200px;}
.ls5{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.001810px;}
.ls42{letter-spacing:0.002650px;}
.ls33{letter-spacing:0.009144px;}
.ls4c{letter-spacing:0.009652px;}
.ls49{letter-spacing:0.010254px;}
.ls48{letter-spacing:0.014803px;}
.ls3a{letter-spacing:0.019432px;}
.ls1c{letter-spacing:0.020922px;}
.ls2e{letter-spacing:0.025602px;}
.ls8{letter-spacing:0.026494px;}
.ls13{letter-spacing:0.034424px;}
.ls30{letter-spacing:0.035334px;}
.ls4{letter-spacing:0.048342px;}
.ls40{letter-spacing:0.048566px;}
.ls4a{letter-spacing:0.049512px;}
.ls47{letter-spacing:0.058368px;}
.ls22{letter-spacing:2.966591px;}
.ls19{letter-spacing:3.022811px;}
.ls2{letter-spacing:3.029576px;}
.ls6{letter-spacing:3.058734px;}
.ls3b{letter-spacing:3.081116px;}
.ls0{letter-spacing:3.083456px;}
.ls1{letter-spacing:3.191276px;}
.lse{letter-spacing:3.458890px;}
.ls29{letter-spacing:3.461230px;}
.ls17{letter-spacing:8.326635px;}
.ls11{letter-spacing:8.328975px;}
.ls1b{letter-spacing:8.332531px;}
.ls2a{letter-spacing:8.334871px;}
.ls2c{letter-spacing:8.337211px;}
.lsb{letter-spacing:9.956921px;}
.lsa{letter-spacing:9.956932px;}
.ls34{letter-spacing:9.998184px;}
.ls44{letter-spacing:12.362442px;}
.ls10{letter-spacing:13.331512px;}
.ls2f{letter-spacing:16.304891px;}
.ls35{letter-spacing:16.619771px;}
.ls1a{letter-spacing:16.626772px;}
.ls9{letter-spacing:16.676676px;}
.lsd{letter-spacing:16.680772px;}
.ls3d{letter-spacing:16.788772px;}
.ls25{letter-spacing:17.757156px;}
.ls1f{letter-spacing:17.895232px;}
.ls15{letter-spacing:18.026676px;}
.ls16{letter-spacing:18.070792px;}
.ls41{letter-spacing:18.344177px;}
.ls43{letter-spacing:18.363870px;}
.ls1d{letter-spacing:19.543931px;}
.ls23{letter-spacing:19.546271px;}
.lsc{letter-spacing:19.597811px;}
.ls7{letter-spacing:19.915776px;}
.ls21{letter-spacing:19.969656px;}
.ls20{letter-spacing:20.786111px;}
.ls18{letter-spacing:21.001751px;}
.ls4f{letter-spacing:21.713936px;}
.ls3c{letter-spacing:23.226600px;}
.ls28{letter-spacing:23.808172px;}
.ls2d{letter-spacing:23.862172px;}
.ls50{letter-spacing:24.144416px;}
.ls3f{letter-spacing:24.250212px;}
.ls3e{letter-spacing:26.519400px;}
.ls4e{letter-spacing:26.682656px;}
.ls39{letter-spacing:28.385334px;}
.ls38{letter-spacing:28.407004px;}
.ls3{letter-spacing:30.628372px;}
.lsf{letter-spacing:31.212484px;}
.ls26{letter-spacing:31.268764px;}
.ls46{letter-spacing:31.812000px;}
.ls14{letter-spacing:35.965624px;}
.ls32{letter-spacing:45.032171px;}
.ls4d{letter-spacing:65.820642px;}
.ls4b{letter-spacing:65.820882px;}
.ls36{letter-spacing:344.054092px;}
.ls45{letter-spacing:546.290552px;}
.ls31{letter-spacing:643.376092px;}
.ls27{letter-spacing:654.932092px;}
.ls2b{letter-spacing:727.562092px;}
.ls24{letter-spacing:731.666092px;}
.ls12{letter-spacing:732.638092px;}
.ls1e{letter-spacing:744.896092px;}
.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;}
}
.ws8e{word-spacing:-29.887920px;}
.ws91{word-spacing:-29.855434px;}
.wsa{word-spacing:-28.244097px;}
.wsa1{word-spacing:-21.553076px;}
.ws9f{word-spacing:-21.552956px;}
.wsa4{word-spacing:-20.921550px;}
.wscf{word-spacing:-19.930939px;}
.ws12e{word-spacing:-17.942994px;}
.ws12a{word-spacing:-17.932740px;}
.wse7{word-spacing:-16.252407px;}
.ws114{word-spacing:-16.198501px;}
.wsb7{word-spacing:-14.943960px;}
.wscd{word-spacing:-14.453234px;}
.wsba{word-spacing:-10.235895px;}
.ws105{word-spacing:-8.419794px;}
.wsc1{word-spacing:-7.697408px;}
.ws125{word-spacing:-7.446984px;}
.wsa9{word-spacing:-4.629212px;}
.wsb9{word-spacing:-4.577612px;}
.ws99{word-spacing:-4.575212px;}
.wsa2{word-spacing:-3.352289px;}
.wsaa{word-spacing:-1.319778px;}
.wsc4{word-spacing:-1.282412px;}
.ws12d{word-spacing:-0.103310px;}
.ws179{word-spacing:-0.071731px;}
.ws25{word-spacing:-0.059776px;}
.ws110{word-spacing:-0.053798px;}
.ws26{word-spacing:0.000000px;}
.ws19{word-spacing:0.921892px;}
.ws9b{word-spacing:1.236631px;}
.wsc3{word-spacing:2.010388px;}
.wsb{word-spacing:3.095303px;}
.wsb2{word-spacing:8.601388px;}
.wscc{word-spacing:9.965051px;}
.wsae{word-spacing:11.460388px;}
.ws1a{word-spacing:13.538337px;}
.wse8{word-spacing:13.753961px;}
.ws13{word-spacing:13.989974px;}
.ws6b{word-spacing:14.378002px;}
.ws192{word-spacing:14.530324px;}
.wsd3{word-spacing:14.981380px;}
.ws187{word-spacing:15.011980px;}
.wsd5{word-spacing:15.141220px;}
.wsf9{word-spacing:15.304946px;}
.ws10c{word-spacing:15.335738px;}
.wsc{word-spacing:15.417296px;}
.ws73{word-spacing:15.419537px;}
.ws41{word-spacing:15.457315px;}
.ws71{word-spacing:15.466999px;}
.wsd{word-spacing:15.492882px;}
.ws10{word-spacing:15.546788px;}
.ws188{word-spacing:15.610808px;}
.ws20{word-spacing:15.627138px;}
.wsca{word-spacing:15.674779px;}
.wsab{word-spacing:15.682012px;}
.ws5e{word-spacing:15.735811px;}
.wsac{word-spacing:15.736050px;}
.wsc9{word-spacing:15.789669px;}
.ws16c{word-spacing:15.835696px;}
.ws4e{word-spacing:15.844005px;}
.ws75{word-spacing:15.844304px;}
.ws32{word-spacing:15.951422px;}
.ws5f{word-spacing:16.168229px;}
.ws17a{word-spacing:16.203612px;}
.ws88{word-spacing:16.276483px;}
.ws14f{word-spacing:16.382824px;}
.wsd8{word-spacing:16.443616px;}
.ws16e{word-spacing:16.491258px;}
.wsf7{word-spacing:16.492931px;}
.ws50{word-spacing:16.546012px;}
.ws81{word-spacing:16.546730px;}
.ws90{word-spacing:16.567053px;}
.ws7b{word-spacing:16.600169px;}
.wsce{word-spacing:16.620971px;}
.ws6c{word-spacing:16.654685px;}
.ws154{word-spacing:16.816677px;}
.ws8d{word-spacing:16.924334px;}
.ws8f{word-spacing:16.924812px;}
.ws11{word-spacing:17.013814px;}
.ws17b{word-spacing:17.016611px;}
.ws5d{word-spacing:17.037728px;}
.ws17{word-spacing:17.049267px;}
.ws153{word-spacing:17.085071px;}
.ws79{word-spacing:17.086685px;}
.wsb5{word-spacing:17.139228px;}
.ws174{word-spacing:17.139706px;}
.wse2{word-spacing:17.254416px;}
.ws18d{word-spacing:17.436722px;}
.ws2d{word-spacing:17.470027px;}
.ws2e{word-spacing:17.517489px;}
.ws14c{word-spacing:17.564353px;}
.wsdb{word-spacing:17.571287px;}
.ws150{word-spacing:17.572543px;}
.ws182{word-spacing:17.658102px;}
.ws18e{word-spacing:17.667301px;}
.ws194{word-spacing:17.714536px;}
.ws9a{word-spacing:17.719466px;}
.wsa6{word-spacing:17.726047px;}
.ws21{word-spacing:17.732981px;}
.ws9c{word-spacing:17.733400px;}
.wsa3{word-spacing:17.735312px;}
.wsa5{word-spacing:17.739676px;}
.ws9d{word-spacing:17.779965px;}
.ws87{word-spacing:17.788154px;}
.wsf3{word-spacing:17.788632px;}
.ws38{word-spacing:17.805728px;}
.wsfa{word-spacing:17.842789px;}
.ws16{word-spacing:17.847472px;}
.ws76{word-spacing:17.896289px;}
.ws14a{word-spacing:17.897424px;}
.ws93{word-spacing:17.934866px;}
.wsef{word-spacing:17.950924px;}
.ws15{word-spacing:17.966420px;}
.ws94{word-spacing:17.967422px;}
.ws95{word-spacing:17.967482px;}
.wsf5{word-spacing:18.004842px;}
.ws85{word-spacing:18.058162px;}
.ws11f{word-spacing:18.058580px;}
.ws51{word-spacing:18.111193px;}
.ws160{word-spacing:18.111781px;}
.wsf{word-spacing:18.139005px;}
.ws15d{word-spacing:18.148065px;}
.ws172{word-spacing:18.274072px;}
.ws190{word-spacing:18.306157px;}
.ws17e{word-spacing:18.309115px;}
.ws53{word-spacing:18.310836px;}
.ws122{word-spacing:18.327811px;}
.ws186{word-spacing:18.333539px;}
.ws13e{word-spacing:18.344353px;}
.ws8{word-spacing:18.345375px;}
.ws196{word-spacing:18.353714px;}
.ws13d{word-spacing:18.354897px;}
.ws27{word-spacing:18.356242px;}
.wse9{word-spacing:18.359685px;}
.ws18f{word-spacing:18.362752px;}
.ws193{word-spacing:18.363774px;}
.ws199{word-spacing:18.364366px;}
.ws181{word-spacing:18.364419px;}
.ws189{word-spacing:18.364796px;}
.ws100{word-spacing:18.382147px;}
.ws17c{word-spacing:18.387122px;}
.ws127{word-spacing:18.387553px;}
.ws180{word-spacing:18.387876px;}
.ws106{word-spacing:18.399119px;}
.ws9{word-spacing:18.399281px;}
.ws18{word-spacing:18.409556px;}
.ws18c{word-spacing:18.409610px;}
.ws115{word-spacing:18.410578px;}
.ws109{word-spacing:18.410686px;}
.ws10b{word-spacing:18.418777px;}
.ws40{word-spacing:18.436065px;}
.ws4f{word-spacing:18.437380px;}
.ws112{word-spacing:18.464484px;}
.ws10e{word-spacing:18.472488px;}
.ws29{word-spacing:18.482570px;}
.ws11d{word-spacing:18.489684px;}
.ws152{word-spacing:18.543601px;}
.ws155{word-spacing:18.597639px;}
.ws4a{word-spacing:18.598117px;}
.ws72{word-spacing:18.651437px;}
.ws156{word-spacing:18.652453px;}
.ws57{word-spacing:18.712468px;}
.ws11e{word-spacing:18.751502px;}
.ws36{word-spacing:18.760528px;}
.ws198{word-spacing:18.766831px;}
.ws12{word-spacing:18.830528px;}
.ws60{word-spacing:18.921086px;}
.ws185{word-spacing:18.927096px;}
.ws74{word-spacing:18.940692px;}
.wsf1{word-spacing:18.975123px;}
.wsd2{word-spacing:19.028742px;}
.ws167{word-spacing:19.030715px;}
.wsc2{word-spacing:19.031372px;}
.wsc0{word-spacing:19.035461px;}
.ws39{word-spacing:19.082660px;}
.ws6f{word-spacing:19.091566px;}
.ws14e{word-spacing:19.138610px;}
.ws1f{word-spacing:19.192528px;}
.ws197{word-spacing:19.227344px;}
.ws17f{word-spacing:19.232939px;}
.ws2b{word-spacing:19.299885px;}
.wsd7{word-spacing:19.300065px;}
.ws126{word-spacing:19.315681px;}
.ws117{word-spacing:19.408558px;}
.ws123{word-spacing:19.425893px;}
.ws30{word-spacing:19.570550px;}
.wsf4{word-spacing:19.677848px;}
.ws13f{word-spacing:19.678266px;}
.ws107{word-spacing:19.696572px;}
.ws80{word-spacing:19.732483px;}
.ws2f{word-spacing:19.785325px;}
.ws77{word-spacing:19.786640px;}
.ws165{word-spacing:19.839183px;}
.ws92{word-spacing:19.839422px;}
.ws69{word-spacing:19.839781px;}
.ws96{word-spacing:19.839900px;}
.ws97{word-spacing:19.839960px;}
.ws3a{word-spacing:19.840080px;}
.ws5{word-spacing:19.840139px;}
.ws31{word-spacing:19.840438px;}
.wsee{word-spacing:19.840558px;}
.wscb{word-spacing:19.874929px;}
.ws145{word-spacing:19.875407px;}
.ws63{word-spacing:19.885509px;}
.ws64{word-spacing:19.885688px;}
.ws4{word-spacing:19.886286px;}
.ws67{word-spacing:19.886764px;}
.wsfe{word-spacing:19.887004px;}
.ws6{word-spacing:19.887123px;}
.ws68{word-spacing:19.893579px;}
.ws9e{word-spacing:19.893678px;}
.ws6d{word-spacing:19.893698px;}
.ws11b{word-spacing:19.893758px;}
.wsb6{word-spacing:19.893818px;}
.wsa8{word-spacing:19.893878px;}
.ws86{word-spacing:19.893938px;}
.ws3{word-spacing:19.894356px;}
.ws7{word-spacing:19.900453px;}
.ws7e{word-spacing:19.913365px;}
.ws6a{word-spacing:19.939606px;}
.wsa0{word-spacing:19.947078px;}
.ws98{word-spacing:19.947198px;}
.ws58{word-spacing:19.955806px;}
.ws48{word-spacing:20.001534px;}
.ws14d{word-spacing:20.110984px;}
.ws16a{word-spacing:20.163885px;}
.ws143{word-spacing:20.164722px;}
.ws11a{word-spacing:20.183073px;}
.ws62{word-spacing:20.211467px;}
.wsd6{word-spacing:20.271362px;}
.ws191{word-spacing:20.308689px;}
.ws15c{word-spacing:20.380632px;}
.wsf0{word-spacing:20.487273px;}
.wse4{word-spacing:20.508572px;}
.ws14{word-spacing:20.524205px;}
.wsdc{word-spacing:20.595108px;}
.wsda{word-spacing:20.596722px;}
.wse0{word-spacing:20.711432px;}
.ws16b{word-spacing:20.743771px;}
.ws70{word-spacing:20.811198px;}
.ws116{word-spacing:20.865534px;}
.ws84{word-spacing:20.866969px;}
.ws13b{word-spacing:20.912219px;}
.ws101{word-spacing:20.920169px;}
.wse{word-spacing:20.937591px;}
.ws49{word-spacing:20.974386px;}
.ws158{word-spacing:20.991542px;}
.ws121{word-spacing:21.026929px;}
.ws159{word-spacing:21.027228px;}
.ws54{word-spacing:21.188981px;}
.ws136{word-spacing:21.189997px;}
.ws42{word-spacing:21.243736px;}
.ws2c{word-spacing:21.250789px;}
.wsf8{word-spacing:21.398256px;}
.ws15a{word-spacing:21.405728px;}
.wsd4{word-spacing:21.513145px;}
.wsb0{word-spacing:21.620921px;}
.wsd0{word-spacing:21.626803px;}
.wsc6{word-spacing:21.728757px;}
.wsc7{word-spacing:21.729175px;}
.ws55{word-spacing:21.730371px;}
.wsd9{word-spacing:21.783392px;}
.ws168{word-spacing:21.856438px;}
.wsf6{word-spacing:21.883337px;}
.ws3c{word-spacing:21.883875px;}
.ws164{word-spacing:21.890749px;}
.ws169{word-spacing:21.891527px;}
.ws147{word-spacing:21.892662px;}
.ws44{word-spacing:21.946700px;}
.ws28{word-spacing:21.952737px;}
.ws135{word-spacing:22.015083px;}
.ws162{word-spacing:22.017474px;}
.ws16f{word-spacing:22.054535px;}
.ws178{word-spacing:22.107975px;}
.ws2a{word-spacing:22.217006px;}
.wseb{word-spacing:22.270386px;}
.ws161{word-spacing:22.323945px;}
.ws3f{word-spacing:22.324363px;}
.ws18b{word-spacing:22.355230px;}
.ws16d{word-spacing:22.377982px;}
.wsbb{word-spacing:22.416266px;}
.wsbd{word-spacing:22.426907px;}
.wsbf{word-spacing:22.432319px;}
.ws15f{word-spacing:22.432737px;}
.ws13a{word-spacing:22.485041px;}
.ws83{word-spacing:22.540393px;}
.ws78{word-spacing:22.593594px;}
.ws139{word-spacing:22.647033px;}
.ws5b{word-spacing:22.694794px;}
.ws137{word-spacing:22.748114px;}
.wsdd{word-spacing:22.755467px;}
.ws103{word-spacing:22.756782px;}
.ws148{word-spacing:22.809205px;}
.ws24{word-spacing:22.809683px;}
.ws43{word-spacing:22.864020px;}
.ws7f{word-spacing:22.871312px;}
.ws5c{word-spacing:22.884343px;}
.wsf2{word-spacing:22.900483px;}
.ws56{word-spacing:22.917459px;}
.wsea{word-spacing:22.918655px;}
.ws7d{word-spacing:23.025295px;}
.ws173{word-spacing:23.027507px;}
.ws171{word-spacing:23.078735px;}
.ws35{word-spacing:23.078914px;}
.ws1d{word-spacing:23.186690px;}
.ws151{word-spacing:23.207073px;}
.ws8c{word-spacing:23.241504px;}
.ws52{word-spacing:23.351073px;}
.ws195{word-spacing:23.494462px;}
.ws142{word-spacing:23.565250px;}
.ws141{word-spacing:23.566446px;}
.ws4c{word-spacing:23.721086px;}
.ws144{word-spacing:23.890132px;}
.ws4b{word-spacing:23.890730px;}
.ws45{word-spacing:23.943571px;}
.wsa7{word-spacing:24.050630px;}
.ws7a{word-spacing:24.105624px;}
.ws4d{word-spacing:24.151292px;}
.ws102{word-spacing:24.159362px;}
.wse5{word-spacing:24.210572px;}
.ws149{word-spacing:24.213579px;}
.ws66{word-spacing:24.375870px;}
.ws170{word-spacing:24.484005px;}
.ws177{word-spacing:24.484722px;}
.wse1{word-spacing:24.592020px;}
.ws138{word-spacing:24.700752px;}
.ws47{word-spacing:24.799502px;}
.ws15b{word-spacing:24.809006px;}
.ws7c{word-spacing:24.970162px;}
.ws104{word-spacing:25.023541px;}
.wsfb{word-spacing:25.124883px;}
.wsfc{word-spacing:25.132154px;}
.ws17d{word-spacing:25.163231px;}
.ws119{word-spacing:25.178779px;}
.ws146{word-spacing:25.191631px;}
.ws124{word-spacing:25.240109px;}
.ws118{word-spacing:25.246565px;}
.ws120{word-spacing:25.347885px;}
.wsfd{word-spacing:25.367850px;}
.ws163{word-spacing:25.497086px;}
.ws3e{word-spacing:25.509818px;}
.ws14b{word-spacing:25.563437px;}
.ws3b{word-spacing:25.617773px;}
.ws82{word-spacing:25.663920px;}
.ws157{word-spacing:25.762789px;}
.wsde{word-spacing:25.995258px;}
.wsdf{word-spacing:25.995975px;}
.ws3d{word-spacing:26.158864px;}
.ws8b{word-spacing:26.212184px;}
.ws15e{word-spacing:26.213200px;}
.ws184{word-spacing:26.297460px;}
.ws1e{word-spacing:26.393245px;}
.wsff{word-spacing:26.428035px;}
.wsb3{word-spacing:26.481893px;}
.wsb1{word-spacing:26.481918px;}
.ws5a{word-spacing:26.482909px;}
.wsd1{word-spacing:26.528512px;}
.ws89{word-spacing:26.535810px;}
.ws37{word-spacing:26.589967px;}
.ws140{word-spacing:26.590147px;}
.wsec{word-spacing:26.751840px;}
.ws61{word-spacing:26.752259px;}
.ws22{word-spacing:26.753634px;}
.ws59{word-spacing:26.807447px;}
.ws183{word-spacing:26.842309px;}
.wsb4{word-spacing:26.859497px;}
.ws166{word-spacing:26.888574px;}
.ws46{word-spacing:26.913414px;}
.ws176{word-spacing:27.076602px;}
.ws23{word-spacing:27.175771px;}
.wsed{word-spacing:27.291198px;}
.ws65{word-spacing:27.508423px;}
.ws18a{word-spacing:27.544612px;}
.ws34{word-spacing:27.939825px;}
.ws8a{word-spacing:27.940005px;}
.ws6e{word-spacing:28.119571px;}
.ws1c{word-spacing:28.859297px;}
.wse3{word-spacing:29.280123px;}
.wsaf{word-spacing:29.289982px;}
.wsad{word-spacing:29.343840px;}
.ws33{word-spacing:29.579417px;}
.ws1{word-spacing:32.190807px;}
.ws0{word-spacing:32.294960px;}
.ws2{word-spacing:32.323796px;}
.wsbe{word-spacing:32.683588px;}
.ws175{word-spacing:39.519223px;}
.ws12b{word-spacing:50.743620px;}
.ws132{word-spacing:50.746020px;}
.ws12c{word-spacing:50.797020px;}
.wsb8{word-spacing:57.737788px;}
.wsbc{word-spacing:63.625588px;}
.ws133{word-spacing:65.766888px;}
.ws12f{word-spacing:65.767128px;}
.ws129{word-spacing:65.767684px;}
.ws134{word-spacing:65.769288px;}
.ws130{word-spacing:65.769528px;}
.ws11c{word-spacing:68.729663px;}
.ws1b{word-spacing:80.687600px;}
.ws131{word-spacing:133.893877px;}
.ws13c{word-spacing:159.939148px;}
.ws113{word-spacing:159.945148px;}
.ws128{word-spacing:172.503877px;}
.ws10a{word-spacing:223.028286px;}
.ws10d{word-spacing:354.897291px;}
.ws108{word-spacing:364.992789px;}
.ws10f{word-spacing:373.937390px;}
.ws111{word-spacing:502.512487px;}
.wsc8{word-spacing:566.960392px;}
.wse6{word-spacing:616.060244px;}
.wsc5{word-spacing:803.489992px;}
._0{margin-left:-48.296686px;}
._2{margin-left:-46.214418px;}
._28{margin-left:-40.512254px;}
._11{margin-left:-39.492155px;}
._4{margin-left:-37.575366px;}
._33{margin-left:-35.358947px;}
._22{margin-left:-34.153500px;}
._15{margin-left:-31.561404px;}
._14{margin-left:-29.663357px;}
._6{margin-left:-28.563315px;}
._9{margin-left:-26.867868px;}
._f{margin-left:-25.824583px;}
._13{margin-left:-23.901675px;}
._1b{margin-left:-22.816216px;}
._8{margin-left:-21.441520px;}
._3{margin-left:-10.499123px;}
._1a{margin-left:-6.877415px;}
._7{margin-left:-5.645622px;}
._5{margin-left:-4.460369px;}
._19{margin-left:-3.092865px;}
._1{margin-left:-1.709818px;}
._a{width:1.052636px;}
._d{width:2.228093px;}
._b{width:3.517073px;}
._24{width:4.948690px;}
._21{width:10.169108px;}
._27{width:13.981464px;}
._c{width:16.539733px;}
._1d{width:17.840046px;}
._10{width:19.489056px;}
._1c{width:20.904367px;}
._e{width:21.998663px;}
._18{width:23.022812px;}
._12{width:24.276473px;}
._23{width:26.782126px;}
._16{width:27.818200px;}
._20{width:29.965046px;}
._34{width:33.350384px;}
._1f{width:68.782774px;}
._29{width:70.401811px;}
._1e{width:80.784526px;}
._17{width:115.492495px;}
._2c{width:175.614942px;}
._32{width:181.144830px;}
._2b{width:183.330942px;}
._2a{width:191.205471px;}
._30{width:210.120519px;}
._31{width:234.457225px;}
._2f{width:258.366881px;}
._2d{width:287.339880px;}
._2e{width:311.676587px;}
._26{width:617.789177px;}
._25{width:704.446171px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:14.814300px;}
.fs8{font-size:28.040520px;}
.fs6{font-size:29.887920px;}
.fs3{font-size:35.865480px;}
.fs2{font-size:41.843100px;}
.fs4{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y17f{bottom:3.738000px;}
.y16f{bottom:3.913500px;}
.y127{bottom:4.264500px;}
.ye7{bottom:8.703000px;}
.ye6{bottom:10.431000px;}
.yec{bottom:11.541525px;}
.y173{bottom:12.091500px;}
.y163{bottom:12.267000px;}
.y11b{bottom:12.619500px;}
.ye5{bottom:15.462000px;}
.y174{bottom:17.992500px;}
.y164{bottom:18.168000px;}
.y11c{bottom:18.519000px;}
.ye4{bottom:23.455500px;}
.ye9{bottom:27.714000px;}
.y175{bottom:33.240000px;}
.y165{bottom:33.531000px;}
.ye3{bottom:33.918000px;}
.y11d{bottom:34.176000px;}
.ye2{bottom:46.078500px;}
.y176{bottom:48.427500px;}
.y166{bottom:48.895500px;}
.y11e{bottom:49.773000px;}
.ye1{bottom:59.101500px;}
.ydc{bottom:63.393000px;}
.y177{bottom:63.675000px;}
.y167{bottom:64.260000px;}
.y11f{bottom:65.370000px;}
.ydb{bottom:69.349500px;}
.ye0{bottom:72.157500px;}
.yda{bottom:75.274500px;}
.y178{bottom:78.864000px;}
.y168{bottom:79.564500px;}
.y120{bottom:80.968500px;}
.yd9{bottom:81.231000px;}
.y170{bottom:82.426500px;}
.y180{bottom:83.595000px;}
.y128{bottom:84.064500px;}
.ydf{bottom:84.318000px;}
.yd8{bottom:87.187500px;}
.yd7{bottom:93.114000px;}
.y179{bottom:94.111500px;}
.yde{bottom:94.780500px;}
.y169{bottom:94.929000px;}
.y121{bottom:96.565500px;}
.yd6{bottom:99.070500px;}
.ye8{bottom:102.774000px;}
.yd5{bottom:105.027000px;}
.yeb{bottom:106.692525px;}
.ydd{bottom:107.803500px;}
.y17a{bottom:109.299000px;}
.y16a{bottom:110.292000px;}
.yea{bottom:111.445650px;}
.y122{bottom:112.162500px;}
.y17b{bottom:124.546500px;}
.y16b{bottom:125.598000px;}
.y123{bottom:127.761000px;}
.y17c{bottom:139.735500px;}
.y16c{bottom:140.961000px;}
.y124{bottom:143.358000px;}
.y17d{bottom:154.981500px;}
.y16d{bottom:156.325500px;}
.y125{bottom:158.955000px;}
.y17e{bottom:170.170500px;}
.y16e{bottom:171.631500px;}
.y126{bottom:174.553500px;}
.y9e{bottom:259.502925px;}
.y9d{bottom:263.175000px;}
.y53{bottom:266.967300px;}
.y74{bottom:266.967450px;}
.y10c{bottom:266.967600px;}
.y194{bottom:266.967720px;}
.yd3{bottom:266.967900px;}
.y137{bottom:266.968050px;}
.y161{bottom:266.968200px;}
.y26{bottom:266.968680px;}
.y9b{bottom:269.735220px;}
.y9a{bottom:273.434250px;}
.y9f{bottom:273.435345px;}
.y9c{bottom:279.846750px;}
.y52{bottom:284.909250px;}
.y73{bottom:284.909400px;}
.y10b{bottom:284.909550px;}
.y193{bottom:284.909700px;}
.yd2{bottom:284.909850px;}
.y136{bottom:284.910000px;}
.y160{bottom:284.910150px;}
.y25{bottom:284.910630px;}
.y99{bottom:302.540100px;}
.y51{bottom:302.837250px;}
.y72{bottom:302.837400px;}
.y10a{bottom:302.837550px;}
.y192{bottom:302.837700px;}
.yd1{bottom:302.837850px;}
.y135{bottom:302.838000px;}
.y15f{bottom:302.838150px;}
.y24{bottom:302.838630px;}
.y50{bottom:320.765250px;}
.y71{bottom:320.765400px;}
.y109{bottom:320.765550px;}
.y191{bottom:320.765700px;}
.yd0{bottom:320.765850px;}
.y15e{bottom:320.766150px;}
.y23{bottom:320.766630px;}
.y98{bottom:331.524705px;}
.y97{bottom:335.210250px;}
.y4f{bottom:338.706600px;}
.y70{bottom:338.706750px;}
.y108{bottom:338.706900px;}
.y190{bottom:338.707050px;}
.ycf{bottom:338.707200px;}
.y15d{bottom:338.707500px;}
.y22{bottom:338.707980px;}
.y134{bottom:348.481350px;}
.y4e{bottom:356.634600px;}
.y6f{bottom:356.634750px;}
.y107{bottom:356.634900px;}
.y18f{bottom:356.635050px;}
.yce{bottom:356.635200px;}
.y15c{bottom:356.635500px;}
.y21{bottom:356.635980px;}
.y96{bottom:357.255600px;}
.y1b0{bottom:364.181250px;}
.y133{bottom:366.422700px;}
.y4d{bottom:374.562600px;}
.y6e{bottom:374.562750px;}
.y106{bottom:374.562900px;}
.y18e{bottom:374.563050px;}
.ycd{bottom:374.563200px;}
.y15b{bottom:374.563500px;}
.y20{bottom:374.563980px;}
.y95{bottom:375.183600px;}
.y1af{bottom:382.109700px;}
.y132{bottom:384.350700px;}
.y94{bottom:388.886280px;}
.y4c{bottom:392.503950px;}
.y6d{bottom:392.504100px;}
.y18d{bottom:392.504400px;}
.y1f{bottom:392.505330px;}
.ycc{bottom:392.653500px;}
.y105{bottom:393.044550px;}
.y93{bottom:393.124965px;}
.y1ae{bottom:400.037700px;}
.y131{bottom:402.278700px;}
.y4b{bottom:410.431950px;}
.y6c{bottom:410.432100px;}
.y18c{bottom:410.432400px;}
.y1e{bottom:410.433330px;}
.ycb{bottom:410.581500px;}
.y104{bottom:410.972550px;}
.y1ad{bottom:417.979050px;}
.y130{bottom:420.220050px;}
.y92{bottom:422.096085px;}
.y91{bottom:425.795115px;}
.y4a{bottom:428.360400px;}
.y6b{bottom:428.360550px;}
.y18b{bottom:428.360850px;}
.y1d{bottom:428.361780px;}
.yca{bottom:428.509500px;}
.y103{bottom:428.913900px;}
.y15a{bottom:434.099058px;}
.y1ac{bottom:435.907050px;}
.y49{bottom:446.301750px;}
.y6a{bottom:446.301900px;}
.y18a{bottom:446.302200px;}
.yc9{bottom:446.450850px;}
.y102{bottom:446.841900px;}
.y90{bottom:447.826965px;}
.y12f{bottom:450.919050px;}
.y159{bottom:450.946458px;}
.y1ab{bottom:453.835050px;}
.y8f{bottom:462.069285px;}
.y1c{bottom:463.515630px;}
.y48{bottom:464.229750px;}
.y189{bottom:464.230200px;}
.yc8{bottom:464.378850px;}
.y101{bottom:464.769900px;}
.y8e{bottom:465.768315px;}
.y158{bottom:467.794458px;}
.y1aa{bottom:471.776400px;}
.y69{bottom:476.798250px;}
.y47{bottom:482.157750px;}
.yc7{bottom:482.306850px;}
.y100{bottom:482.711850px;}
.y157{bottom:484.642458px;}
.y1a9{bottom:489.704400px;}
.y68{bottom:494.726250px;}
.y8d{bottom:494.739435px;}
.y12e{bottom:496.563000px;}
.y8c{bottom:498.438465px;}
.y46{bottom:500.099100px;}
.yc6{bottom:500.248800px;}
.yff{bottom:500.639850px;}
.y156{bottom:501.490458px;}
.y1a8{bottom:507.632400px;}
.y188{bottom:511.372350px;}
.y1d1{bottom:512.263950px;}
.y67{bottom:512.856900px;}
.y1b{bottom:513.384180px;}
.y12d{bottom:514.491000px;}
.y45{bottom:518.027100px;}
.yc5{bottom:518.176800px;}
.y155{bottom:518.338458px;}
.yfe{bottom:518.567850px;}
.y8b{bottom:520.470315px;}
.y1a7{bottom:525.574350px;}
.y1d0{bottom:528.693600px;}
.y187{bottom:529.313700px;}
.y12c{bottom:532.432350px;}
.y154{bottom:535.186458px;}
.y44{bottom:535.968450px;}
.yfd{bottom:536.509200px;}
.y8a{bottom:538.412265px;}
.y1a6{bottom:543.502350px;}
.y66{bottom:543.555900px;}
.y1cf{bottom:545.136750px;}
.y1a{bottom:546.081180px;}
.y186{bottom:547.241700px;}
.y12b{bottom:550.360350px;}
.y153{bottom:552.034500px;}
.y89{bottom:552.641235px;}
.y43{bottom:553.896450px;}
.yfc{bottom:554.437200px;}
.yc4{bottom:554.788500px;}
.y88{bottom:556.340250px;}
.y1a5{bottom:561.430350px;}
.y1ce{bottom:561.579300px;}
.y19{bottom:562.510830px;}
.y185{bottom:565.169700px;}
.y12a{bottom:568.288350px;}
.y152{bottom:569.490000px;}
.y42{bottom:571.824900px;}
.yfb{bottom:572.365200px;}
.y65{bottom:574.052250px;}
.y1cd{bottom:578.008950px;}
.y18{bottom:578.953980px;}
.y1a4{bottom:579.371700px;}
.y184{bottom:583.111050px;}
.y87{bottom:585.311370px;}
.y151{bottom:586.338000px;}
.y86{bottom:589.010400px;}
.y41{bottom:589.766250px;}
.y64{bottom:592.182900px;}
.y1cc{bottom:594.452100px;}
.y17{bottom:595.396530px;}
.y1a3{bottom:597.299700px;}
.y183{bottom:601.039050px;}
.yc3{bottom:603.348000px;}
.yfa{bottom:604.968000px;}
.y150{bottom:607.154850px;}
.y40{bottom:607.694250px;}
.y63{bottom:610.327050px;}
.y1cb{bottom:610.894650px;}
.y16{bottom:611.826180px;}
.y1a2{bottom:615.241050px;}
.y129{bottom:620.196000px;}
.yc2{bottom:621.276000px;}
.y85{bottom:621.679950px;}
.y14f{bottom:623.584500px;}
.y3f{bottom:625.622250px;}
.y1ca{bottom:627.324300px;}
.y62{bottom:628.255050px;}
.y15{bottom:628.269330px;}
.y1a1{bottom:633.169050px;}
.yc1{bottom:639.217350px;}
.y84{bottom:639.607950px;}
.y11a{bottom:643.081500px;}
.y3e{bottom:643.563600px;}
.y1c9{bottom:643.767450px;}
.y14{bottom:644.712480px;}
.y61{bottom:646.183050px;}
.y1a0{bottom:651.097500px;}
.yf9{bottom:652.515000px;}
.y182{bottom:654.283200px;}
.yc0{bottom:657.145350px;}
.y83{bottom:657.549900px;}
.y1c8{bottom:660.210600px;}
.y13{bottom:661.141530px;}
.y14e{bottom:661.438458px;}
.y3d{bottom:661.491600px;}
.y19f{bottom:669.038850px;}
.yf8{bottom:670.443000px;}
.y82{bottom:675.477900px;}
.y1c7{bottom:676.639650px;}
.y60{bottom:676.882050px;}
.y12{bottom:677.584680px;}
.y14d{bottom:678.286458px;}
.y3c{bottom:679.419600px;}
.y181{bottom:685.873500px;}
.ybe{bottom:685.900458px;}
.yf7{bottom:688.384350px;}
.ybf{bottom:690.355369px;}
.y1c6{bottom:693.082800px;}
.y81{bottom:693.405900px;}
.y11{bottom:694.027830px;}
.ybd{bottom:694.864128px;}
.y5f{bottom:695.012700px;}
.y14c{bottom:695.134472px;}
.y172{bottom:696.745500px;}
.y3b{bottom:697.361550px;}
.y19e{bottom:703.477350px;}
.yf6{bottom:706.312350px;}
.y1c5{bottom:709.525950px;}
.y10{bottom:710.456880px;}
.y80{bottom:711.347250px;}
.y14b{bottom:711.982472px;}
.y5e{bottom:712.954050px;}
.y3a{bottom:715.289550px;}
.ybc{bottom:721.067778px;}
.y1c4{bottom:725.955000px;}
.yf{bottom:726.900030px;}
.y14a{bottom:728.830472px;}
.y7f{bottom:729.275250px;}
.y5d{bottom:730.882050px;}
.ybb{bottom:738.995778px;}
.y39{bottom:741.547200px;}
.y1c3{bottom:742.398150px;}
.ye{bottom:743.343180px;}
.yf5{bottom:744.895200px;}
.y149{bottom:745.678472px;}
.y7e{bottom:747.203250px;}
.y5c{bottom:748.810050px;}
.y19d{bottom:749.863050px;}
.yba{bottom:756.937128px;}
.y1c2{bottom:758.841300px;}
.y38{bottom:759.475200px;}
.y148{bottom:762.526472px;}
.y7d{bottom:765.144600px;}
.y5b{bottom:766.751400px;}
.y19c{bottom:767.804400px;}
.y1c1{bottom:775.270350px;}
.y37{bottom:777.416550px;}
.yb8{bottom:778.361943px;}
.y147{bottom:779.374500px;}
.yb7{bottom:782.047500px;}
.y7c{bottom:783.073050px;}
.y5a{bottom:784.679400px;}
.y19b{bottom:785.732400px;}
.yb5{bottom:787.784975px;}
.y1c0{bottom:791.713500px;}
.yb9{bottom:792.293778px;}
.y36{bottom:795.344550px;}
.yf4{bottom:795.425850px;}
.y146{bottom:796.830000px;}
.yb6{bottom:798.706280px;}
.y7b{bottom:801.014400px;}
.yd{bottom:802.594380px;}
.y59{bottom:802.607400px;}
.y19a{bottom:803.660850px;}
.yb4{bottom:803.930478px;}
.y1bf{bottom:808.156650px;}
.y35{bottom:813.272550px;}
.yf3{bottom:813.353850px;}
.y145{bottom:813.678000px;}
.yb3{bottom:817.349688px;}
.y7a{bottom:818.942400px;}
.y199{bottom:821.602200px;}
.yb2{bottom:821.858490px;}
.y1be{bottom:824.586300px;}
.yc{bottom:824.748060px;}
.y34{bottom:831.213900px;}
.yf2{bottom:831.281850px;}
.y58{bottom:833.509200px;}
.y144{bottom:834.494850px;}
.yb{bottom:835.467195px;}
.y79{bottom:836.870400px;}
.y198{bottom:839.530200px;}
.y1bd{bottom:841.028850px;}
.y33{bottom:849.141900px;}
.yf1{bottom:849.223800px;}
.yb1{bottom:849.952500px;}
.y143{bottom:850.924500px;}
.ya{bottom:851.910345px;}
.y78{bottom:854.811750px;}
.yaf{bottom:856.499528px;}
.y197{bottom:857.458200px;}
.y1bc{bottom:857.458500px;}
.y119{bottom:858.484500px;}
.yae{bottom:860.198558px;}
.yb0{bottom:866.624544px;}
.y32{bottom:867.069900px;}
.yf0{bottom:867.151800px;}
.y77{bottom:872.739750px;}
.y1bb{bottom:873.901650px;}
.y9{bottom:874.049940px;}
.y196{bottom:875.399550px;}
.y118{bottom:875.940000px;}
.y57{bottom:879.355350px;}
.y8{bottom:884.782560px;}
.y31{bottom:885.011850px;}
.yad{bottom:887.563028px;}
.y171{bottom:888.562500px;}
.y142{bottom:888.764972px;}
.y1ba{bottom:890.344200px;}
.y76{bottom:890.667750px;}
.yac{bottom:891.262043px;}
.y195{bottom:893.327550px;}
.y117{bottom:893.382000px;}
.y56{bottom:897.283350px;}
.y162{bottom:899.272500px;}
.y7{bottom:901.225710px;}
.y141{bottom:905.612972px;}
.y1b9{bottom:906.773850px;}
.yab{bottom:909.190043px;}
.y116{bottom:910.230000px;}
.y30{bottom:911.268900px;}
.y55{bottom:915.224700px;}
.y75{bottom:920.394750px;}
.yef{bottom:920.557650px;}
.y140{bottom:922.461558px;}
.y1b8{bottom:923.217000px;}
.y6{bottom:923.365305px;}
.yaa{bottom:923.445848px;}
.ya9{bottom:923.445860px;}
.y115{bottom:927.078000px;}
.ya8{bottom:927.131417px;}
.y2f{bottom:929.196900px;}
.yee{bottom:937.000800px;}
.y13f{bottom:939.308958px;}
.y1b7{bottom:939.659550px;}
.y114{bottom:943.926000px;}
.y2e{bottom:947.125350px;}
.y5{bottom:948.974850px;}
.y54{bottom:952.093050px;}
.yed{bottom:953.673000px;}
.y1b6{bottom:956.089200px;}
.y13e{bottom:956.170458px;}
.ya7{bottom:956.750537px;}
.ya6{bottom:956.777492px;}
.ya5{bottom:960.449565px;}
.y113{bottom:961.381500px;}
.y2d{bottom:965.066700px;}
.y4{bottom:966.916200px;}
.yd4{bottom:970.830000px;}
.y1b5{bottom:972.532350px;}
.y13d{bottom:973.018458px;}
.y112{bottom:978.824100px;}
.y2c{bottom:982.994700px;}
.ya4{bottom:982.994715px;}
.y1b4{bottom:988.975500px;}
.y13c{bottom:989.866458px;}
.y111{bottom:995.671500px;}
.y2b{bottom:1000.922700px;}
.ya3{bottom:1000.922715px;}
.y1b3{bottom:1005.404550px;}
.y13b{bottom:1006.714500px;}
.y110{bottom:1012.519500px;}
.y2a{bottom:1018.864050px;}
.ya2{bottom:1018.864065px;}
.y3{bottom:1018.864200px;}
.y1b2{bottom:1021.847700px;}
.y13a{bottom:1024.156500px;}
.y10f{bottom:1029.367500px;}
.ya1{bottom:1033.093035px;}
.y29{bottom:1036.792050px;}
.y1b1{bottom:1038.290850px;}
.y139{bottom:1041.004500px;}
.y2{bottom:1045.756350px;}
.y10e{bottom:1046.823000px;}
.y28{bottom:1054.720050px;}
.y138{bottom:1061.821050px;}
.ya0{bottom:1068.962970px;}
.y1{bottom:1072.662000px;}
.y10d{bottom:1078.264200px;}
.y27{bottom:1111.515000px;}
.h24{height:15.450852px;}
.h4{height:24.245064px;}
.h27{height:29.245386px;}
.h16{height:29.457542px;}
.h6{height:33.139740px;}
.h5{height:40.348710px;}
.h29{height:40.348824px;}
.h28{height:40.348878px;}
.h9{height:42.082191px;}
.h25{height:42.486852px;}
.h8{height:44.831880px;}
.h2{height:49.437698px;}
.h3{height:49.491638px;}
.h15{height:50.084882px;}
.h7{height:50.498342px;}
.hf{height:51.111422px;}
.hc{height:51.165362px;}
.he{height:51.167702px;}
.ha{height:54.134882px;}
.h12{height:54.188822px;}
.h20{height:56.023922px;}
.h1a{height:56.026262px;}
.h18{height:56.080202px;}
.h13{height:59.574060px;}
.h17{height:59.628000px;}
.h1{height:60.598349px;}
.h11{height:61.786560px;}
.h1e{height:62.867040px;}
.h10{height:65.907542px;}
.hd{height:65.961482px;}
.h19{height:68.823182px;}
.hb{height:68.931002px;}
.h1b{height:70.768442px;}
.h1d{height:85.817040px;}
.h22{height:86.791834px;}
.h21{height:104.611234px;}
.h14{height:106.353662px;}
.h1f{height:109.646642px;}
.h1c{height:111.322442px;}
.h23{height:116.724000px;}
.h2b{height:186.760500px;}
.h2a{height:188.338500px;}
.h26{height:191.494500px;}
.h0{height:1263.000000px;}
.w1{width:155.704500px;}
.w2{width:622.968000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x41{left:4.937550px;}
.x40{left:25.647000px;}
.x3f{left:27.406500px;}
.x3e{left:32.560500px;}
.x3d{left:40.738500px;}
.x3c{left:51.448500px;}
.x59{left:62.448300px;}
.x3b{left:63.886500px;}
.x4e{left:66.363000px;}
.x4c{left:71.152500px;}
.x4b{left:75.067500px;}
.x3a{left:77.250000px;}
.x4a{left:79.039500px;}
.x33{left:80.799000px;}
.x34{left:90.583500px;}
.x39{left:103.051500px;}
.x35{left:113.730000px;}
.x36{left:121.939500px;}
.x37{left:127.095000px;}
.x38{left:128.853000px;}
.x49{left:141.439500px;}
.x58{left:149.660700px;}
.xf{left:202.147440px;}
.x12{left:208.453050px;}
.x1{left:211.167000px;}
.x4f{left:217.512000px;}
.x10{left:224.557140px;}
.x13{left:227.555550px;}
.xc{left:229.404195px;}
.x2{left:233.752500px;}
.x45{left:239.962650px;}
.x5b{left:240.975150px;}
.xe{left:244.659240px;}
.x4{left:246.267000px;}
.x51{left:249.169500px;}
.x53{left:252.315150px;}
.x18{left:255.217467px;}
.x16{left:256.702902px;}
.x52{left:259.227000px;}
.x6{left:273.037095px;}
.x7{left:275.182140px;}
.x44{left:280.624500px;}
.x9{left:285.644220px;}
.x47{left:288.022500px;}
.x57{left:290.925210px;}
.x56{left:297.837000px;}
.x5a{left:301.927500px;}
.x31{left:307.233045px;}
.x4d{left:311.367000px;}
.x5{left:314.401320px;}
.x11{left:316.021500px;}
.xb{left:334.568265px;}
.x3{left:338.228700px;}
.x25{left:344.992560px;}
.x46{left:362.529000px;}
.x24{left:364.392465px;}
.x8{left:373.408140px;}
.x42{left:383.710500px;}
.x1b{left:384.952767px;}
.xa{left:387.866265px;}
.x48{left:390.933000px;}
.x1c{left:395.981874px;}
.x26{left:397.346010px;}
.x1f{left:403.110326px;}
.x14{left:404.379435px;}
.x17{left:407.443692px;}
.x20{left:408.510326px;}
.xd{left:412.086240px;}
.x29{left:424.616340px;}
.x2a{left:434.215170px;}
.x32{left:436.671375px;}
.x1a{left:438.534252px;}
.x2d{left:441.693913px;}
.x50{left:448.416000px;}
.x54{left:458.163000px;}
.x55{left:459.985500px;}
.x19{left:461.376327px;}
.x15{left:463.266689px;}
.x2e{left:466.749000px;}
.x21{left:469.948500px;}
.x1d{left:472.594389px;}
.x2f{left:476.347245px;}
.x2b{left:477.576930px;}
.x22{left:479.547330px;}
.x1e{left:508.288524px;}
.x23{left:515.767680px;}
.x30{left:536.814195px;}
.x43{left:555.768000px;}
.x27{left:595.634460px;}
.x2c{left:631.963170px;}
.x28{left:684.640140px;}
@media print{
.v16{vertical-align:-58.991467pt;}
.v11{vertical-align:-41.374987pt;}
.v13{vertical-align:-23.039568pt;}
.v2{vertical-align:-20.304160pt;}
.v12{vertical-align:-17.710400pt;}
.v3{vertical-align:-7.966667pt;}
.vc{vertical-align:-5.327083pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.152107pt;}
.v8{vertical-align:15.070827pt;}
.v10{vertical-align:16.031253pt;}
.va{vertical-align:18.335413pt;}
.v1{vertical-align:19.247893pt;}
.v4{vertical-align:21.935413pt;}
.vb{vertical-align:23.664587pt;}
.v7{vertical-align:32.400000pt;}
.v6{vertical-align:35.087520pt;}
.vf{vertical-align:36.431253pt;}
.v17{vertical-align:55.535520pt;}
.ve{vertical-align:67.439632pt;}
.v9{vertical-align:68.352107pt;}
.v14{vertical-align:71.279200pt;}
.vd{vertical-align:72.768800pt;}
.v18{vertical-align:75.022933pt;}
.v15{vertical-align:90.862400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.001609pt;}
.ls42{letter-spacing:0.002356pt;}
.ls33{letter-spacing:0.008128pt;}
.ls4c{letter-spacing:0.008579pt;}
.ls49{letter-spacing:0.009115pt;}
.ls48{letter-spacing:0.013158pt;}
.ls3a{letter-spacing:0.017273pt;}
.ls1c{letter-spacing:0.018597pt;}
.ls2e{letter-spacing:0.022757pt;}
.ls8{letter-spacing:0.023550pt;}
.ls13{letter-spacing:0.030599pt;}
.ls30{letter-spacing:0.031408pt;}
.ls4{letter-spacing:0.042971pt;}
.ls40{letter-spacing:0.043170pt;}
.ls4a{letter-spacing:0.044010pt;}
.ls47{letter-spacing:0.051883pt;}
.ls22{letter-spacing:2.636970pt;}
.ls19{letter-spacing:2.686943pt;}
.ls2{letter-spacing:2.692957pt;}
.ls6{letter-spacing:2.718875pt;}
.ls3b{letter-spacing:2.738770pt;}
.ls0{letter-spacing:2.740850pt;}
.ls1{letter-spacing:2.836690pt;}
.lse{letter-spacing:3.074569pt;}
.ls29{letter-spacing:3.076649pt;}
.ls17{letter-spacing:7.401453pt;}
.ls11{letter-spacing:7.403533pt;}
.ls1b{letter-spacing:7.406694pt;}
.ls2a{letter-spacing:7.408774pt;}
.ls2c{letter-spacing:7.410854pt;}
.lsb{letter-spacing:8.850597pt;}
.lsa{letter-spacing:8.850607pt;}
.ls34{letter-spacing:8.887274pt;}
.ls44{letter-spacing:10.988838pt;}
.ls10{letter-spacing:11.850233pt;}
.ls2f{letter-spacing:14.493237pt;}
.ls35{letter-spacing:14.773129pt;}
.ls1a{letter-spacing:14.779353pt;}
.ls9{letter-spacing:14.823712pt;}
.lsd{letter-spacing:14.827353pt;}
.ls3d{letter-spacing:14.923353pt;}
.ls25{letter-spacing:15.784139pt;}
.ls1f{letter-spacing:15.906873pt;}
.ls15{letter-spacing:16.023712pt;}
.ls16{letter-spacing:16.062927pt;}
.ls41{letter-spacing:16.305935pt;}
.ls43{letter-spacing:16.323440pt;}
.ls1d{letter-spacing:17.372383pt;}
.ls23{letter-spacing:17.374463pt;}
.lsc{letter-spacing:17.420277pt;}
.ls7{letter-spacing:17.702912pt;}
.ls21{letter-spacing:17.750805pt;}
.ls20{letter-spacing:18.476543pt;}
.ls18{letter-spacing:18.668223pt;}
.ls4f{letter-spacing:19.301277pt;}
.ls3c{letter-spacing:20.645867pt;}
.ls28{letter-spacing:21.162820pt;}
.ls2d{letter-spacing:21.210820pt;}
.ls50{letter-spacing:21.461703pt;}
.ls3f{letter-spacing:21.555744pt;}
.ls3e{letter-spacing:23.572800pt;}
.ls4e{letter-spacing:23.717917pt;}
.ls39{letter-spacing:25.231408pt;}
.ls38{letter-spacing:25.250670pt;}
.ls3{letter-spacing:27.225219pt;}
.lsf{letter-spacing:27.744430pt;}
.ls26{letter-spacing:27.794457pt;}
.ls46{letter-spacing:28.277334pt;}
.ls14{letter-spacing:31.969443pt;}
.ls32{letter-spacing:40.028597pt;}
.ls4d{letter-spacing:58.507238pt;}
.ls4b{letter-spacing:58.507451pt;}
.ls36{letter-spacing:305.825860pt;}
.ls45{letter-spacing:485.591602pt;}
.ls31{letter-spacing:571.889860pt;}
.ls27{letter-spacing:582.161860pt;}
.ls2b{letter-spacing:646.721860pt;}
.ls24{letter-spacing:650.369860pt;}
.ls12{letter-spacing:651.233860pt;}
.ls1e{letter-spacing:662.129860pt;}
.ws8e{word-spacing:-26.567040pt;}
.ws91{word-spacing:-26.538164pt;}
.wsa{word-spacing:-25.105864pt;}
.wsa1{word-spacing:-19.158290pt;}
.ws9f{word-spacing:-19.158183pt;}
.wsa4{word-spacing:-18.596933pt;}
.wscf{word-spacing:-17.716390pt;}
.ws12e{word-spacing:-15.949328pt;}
.ws12a{word-spacing:-15.940213pt;}
.wse7{word-spacing:-14.446584pt;}
.ws114{word-spacing:-14.398667pt;}
.wsb7{word-spacing:-13.283520pt;}
.wscd{word-spacing:-12.847319pt;}
.wsba{word-spacing:-9.098574pt;}
.ws105{word-spacing:-7.484261pt;}
.wsc1{word-spacing:-6.842141pt;}
.ws125{word-spacing:-6.619542pt;}
.wsa9{word-spacing:-4.114855pt;}
.wsb9{word-spacing:-4.068988pt;}
.ws99{word-spacing:-4.066855pt;}
.wsa2{word-spacing:-2.979813pt;}
.wsaa{word-spacing:-1.173136pt;}
.wsc4{word-spacing:-1.139922pt;}
.ws12d{word-spacing:-0.091831pt;}
.ws179{word-spacing:-0.063761pt;}
.ws25{word-spacing:-0.053134pt;}
.ws110{word-spacing:-0.047821pt;}
.ws26{word-spacing:0.000000pt;}
.ws19{word-spacing:0.819459pt;}
.ws9b{word-spacing:1.099227pt;}
.wsc3{word-spacing:1.787012pt;}
.wsb{word-spacing:2.751381pt;}
.wsb2{word-spacing:7.645678pt;}
.wscc{word-spacing:8.857823pt;}
.wsae{word-spacing:10.187012pt;}
.ws1a{word-spacing:12.034077pt;}
.wse8{word-spacing:12.225743pt;}
.ws13{word-spacing:12.435532pt;}
.ws6b{word-spacing:12.780447pt;}
.ws192{word-spacing:12.915843pt;}
.wsd3{word-spacing:13.316782pt;}
.ws187{word-spacing:13.343982pt;}
.wsd5{word-spacing:13.458862pt;}
.wsf9{word-spacing:13.604397pt;}
.ws10c{word-spacing:13.631767pt;}
.wsc{word-spacing:13.704263pt;}
.ws73{word-spacing:13.706255pt;}
.ws41{word-spacing:13.739835pt;}
.ws71{word-spacing:13.748443pt;}
.wsd{word-spacing:13.771451pt;}
.ws10{word-spacing:13.819367pt;}
.ws188{word-spacing:13.876274pt;}
.ws20{word-spacing:13.890789pt;}
.wsca{word-spacing:13.933137pt;}
.wsab{word-spacing:13.939566pt;}
.ws5e{word-spacing:13.987387pt;}
.wsac{word-spacing:13.987600pt;}
.wsc9{word-spacing:14.035261pt;}
.ws16c{word-spacing:14.076174pt;}
.ws4e{word-spacing:14.083560pt;}
.ws75{word-spacing:14.083826pt;}
.ws32{word-spacing:14.179042pt;}
.ws5f{word-spacing:14.371759pt;}
.ws17a{word-spacing:14.403210pt;}
.ws88{word-spacing:14.467985pt;}
.ws14f{word-spacing:14.562510pt;}
.wsd8{word-spacing:14.616548pt;}
.ws16e{word-spacing:14.658896pt;}
.wsf7{word-spacing:14.660383pt;}
.ws50{word-spacing:14.707566pt;}
.ws81{word-spacing:14.708204pt;}
.ws90{word-spacing:14.726270pt;}
.ws7b{word-spacing:14.755706pt;}
.wsce{word-spacing:14.774197pt;}
.ws6c{word-spacing:14.804164pt;}
.ws154{word-spacing:14.948158pt;}
.ws8d{word-spacing:15.043852pt;}
.ws8f{word-spacing:15.044277pt;}
.ws11{word-spacing:15.123390pt;}
.ws17b{word-spacing:15.125877pt;}
.ws5d{word-spacing:15.144647pt;}
.ws17{word-spacing:15.154904pt;}
.ws153{word-spacing:15.186730pt;}
.ws79{word-spacing:15.188164pt;}
.wsb5{word-spacing:15.234869pt;}
.ws174{word-spacing:15.235294pt;}
.wse2{word-spacing:15.337258pt;}
.ws18d{word-spacing:15.499308pt;}
.ws2d{word-spacing:15.528913pt;}
.ws2e{word-spacing:15.571102pt;}
.ws14c{word-spacing:15.612759pt;}
.wsdb{word-spacing:15.618922pt;}
.ws150{word-spacing:15.620038pt;}
.ws182{word-spacing:15.696091pt;}
.ws18e{word-spacing:15.704268pt;}
.ws194{word-spacing:15.746254pt;}
.ws9a{word-spacing:15.750637pt;}
.wsa6{word-spacing:15.756486pt;}
.ws21{word-spacing:15.762650pt;}
.ws9c{word-spacing:15.763022pt;}
.wsa3{word-spacing:15.764722pt;}
.wsa5{word-spacing:15.768601pt;}
.ws9d{word-spacing:15.804413pt;}
.ws87{word-spacing:15.811693pt;}
.wsf3{word-spacing:15.812118pt;}
.ws38{word-spacing:15.827314pt;}
.wsfa{word-spacing:15.860257pt;}
.ws16{word-spacing:15.864419pt;}
.ws76{word-spacing:15.907812pt;}
.ws14a{word-spacing:15.908822pt;}
.ws93{word-spacing:15.942103pt;}
.wsef{word-spacing:15.956377pt;}
.ws15{word-spacing:15.970151pt;}
.ws94{word-spacing:15.971042pt;}
.ws95{word-spacing:15.971095pt;}
.wsf5{word-spacing:16.004304pt;}
.ws85{word-spacing:16.051699pt;}
.ws11f{word-spacing:16.052071pt;}
.ws51{word-spacing:16.098838pt;}
.ws160{word-spacing:16.099361pt;}
.wsf{word-spacing:16.123560pt;}
.ws15d{word-spacing:16.131613pt;}
.ws172{word-spacing:16.243620pt;}
.ws190{word-spacing:16.272139pt;}
.ws17e{word-spacing:16.274769pt;}
.ws53{word-spacing:16.276299pt;}
.ws122{word-spacing:16.291387pt;}
.ws186{word-spacing:16.296479pt;}
.ws13e{word-spacing:16.306091pt;}
.ws8{word-spacing:16.307000pt;}
.ws196{word-spacing:16.314412pt;}
.ws13d{word-spacing:16.315464pt;}
.ws27{word-spacing:16.316660pt;}
.wse9{word-spacing:16.319720pt;}
.ws18f{word-spacing:16.322446pt;}
.ws193{word-spacing:16.323355pt;}
.ws199{word-spacing:16.323881pt;}
.ws181{word-spacing:16.323928pt;}
.ws189{word-spacing:16.324263pt;}
.ws100{word-spacing:16.339686pt;}
.ws17c{word-spacing:16.344109pt;}
.ws127{word-spacing:16.344491pt;}
.ws180{word-spacing:16.344778pt;}
.ws106{word-spacing:16.354773pt;}
.ws9{word-spacing:16.354916pt;}
.ws18{word-spacing:16.364050pt;}
.ws18c{word-spacing:16.364098pt;}
.ws115{word-spacing:16.364959pt;}
.ws109{word-spacing:16.365054pt;}
.ws10b{word-spacing:16.372246pt;}
.ws40{word-spacing:16.387613pt;}
.ws4f{word-spacing:16.388782pt;}
.ws112{word-spacing:16.412875pt;}
.ws10e{word-spacing:16.419989pt;}
.ws29{word-spacing:16.428951pt;}
.ws11d{word-spacing:16.435274pt;}
.ws152{word-spacing:16.483201pt;}
.ws155{word-spacing:16.531234pt;}
.ws4a{word-spacing:16.531659pt;}
.ws72{word-spacing:16.579055pt;}
.ws156{word-spacing:16.579958pt;}
.ws57{word-spacing:16.633305pt;}
.ws11e{word-spacing:16.668001pt;}
.ws36{word-spacing:16.676025pt;}
.ws198{word-spacing:16.681627pt;}
.ws12{word-spacing:16.738247pt;}
.ws60{word-spacing:16.818743pt;}
.ws185{word-spacing:16.824085pt;}
.ws74{word-spacing:16.836171pt;}
.wsf1{word-spacing:16.866776pt;}
.wsd2{word-spacing:16.914437pt;}
.ws167{word-spacing:16.916191pt;}
.wsc2{word-spacing:16.916775pt;}
.wsc0{word-spacing:16.920410pt;}
.ws39{word-spacing:16.962364pt;}
.ws6f{word-spacing:16.970281pt;}
.ws14e{word-spacing:17.012098pt;}
.ws1f{word-spacing:17.060025pt;}
.ws197{word-spacing:17.090972pt;}
.ws17f{word-spacing:17.095946pt;}
.ws2b{word-spacing:17.155454pt;}
.wsd7{word-spacing:17.155613pt;}
.ws126{word-spacing:17.169494pt;}
.ws117{word-spacing:17.252051pt;}
.ws123{word-spacing:17.267460pt;}
.ws30{word-spacing:17.396045pt;}
.wsf4{word-spacing:17.491420pt;}
.ws13f{word-spacing:17.491792pt;}
.ws107{word-spacing:17.508064pt;}
.ws80{word-spacing:17.539985pt;}
.ws2f{word-spacing:17.586955pt;}
.ws77{word-spacing:17.588124pt;}
.ws165{word-spacing:17.634829pt;}
.ws92{word-spacing:17.635042pt;}
.ws69{word-spacing:17.635361pt;}
.ws96{word-spacing:17.635467pt;}
.ws97{word-spacing:17.635520pt;}
.ws3a{word-spacing:17.635626pt;}
.ws5{word-spacing:17.635679pt;}
.ws31{word-spacing:17.635945pt;}
.wsee{word-spacing:17.636051pt;}
.wscb{word-spacing:17.666603pt;}
.ws145{word-spacing:17.667028pt;}
.ws63{word-spacing:17.676008pt;}
.ws64{word-spacing:17.676168pt;}
.ws4{word-spacing:17.676699pt;}
.ws67{word-spacing:17.677124pt;}
.wsfe{word-spacing:17.677336pt;}
.ws6{word-spacing:17.677443pt;}
.ws68{word-spacing:17.683181pt;}
.ws9e{word-spacing:17.683270pt;}
.ws6d{word-spacing:17.683287pt;}
.ws11b{word-spacing:17.683341pt;}
.wsb6{word-spacing:17.683394pt;}
.wsa8{word-spacing:17.683447pt;}
.ws86{word-spacing:17.683500pt;}
.ws3{word-spacing:17.683872pt;}
.ws7{word-spacing:17.689292pt;}
.ws7e{word-spacing:17.700769pt;}
.ws6a{word-spacing:17.724094pt;}
.wsa0{word-spacing:17.730736pt;}
.ws98{word-spacing:17.730842pt;}
.ws58{word-spacing:17.738494pt;}
.ws48{word-spacing:17.779141pt;}
.ws14d{word-spacing:17.876430pt;}
.ws16a{word-spacing:17.923454pt;}
.ws143{word-spacing:17.924197pt;}
.ws11a{word-spacing:17.940510pt;}
.ws62{word-spacing:17.965748pt;}
.wsd6{word-spacing:18.018989pt;}
.ws191{word-spacing:18.052168pt;}
.ws15c{word-spacing:18.116118pt;}
.wsf0{word-spacing:18.210909pt;}
.wse4{word-spacing:18.229842pt;}
.ws14{word-spacing:18.243738pt;}
.wsdc{word-spacing:18.306763pt;}
.wsda{word-spacing:18.308197pt;}
.wse0{word-spacing:18.410162pt;}
.ws16b{word-spacing:18.438907pt;}
.ws70{word-spacing:18.498842pt;}
.ws116{word-spacing:18.547141pt;}
.ws84{word-spacing:18.548417pt;}
.ws13b{word-spacing:18.588639pt;}
.ws101{word-spacing:18.595706pt;}
.wse{word-spacing:18.611192pt;}
.ws49{word-spacing:18.643899pt;}
.ws158{word-spacing:18.659148pt;}
.ws121{word-spacing:18.690603pt;}
.ws159{word-spacing:18.690869pt;}
.ws54{word-spacing:18.834650pt;}
.ws136{word-spacing:18.835553pt;}
.ws42{word-spacing:18.883321pt;}
.ws2c{word-spacing:18.889591pt;}
.wsf8{word-spacing:19.020672pt;}
.ws15a{word-spacing:19.027314pt;}
.wsd4{word-spacing:19.122796pt;}
.wsb0{word-spacing:19.218597pt;}
.wsd0{word-spacing:19.223825pt;}
.wsc6{word-spacing:19.314451pt;}
.wsc7{word-spacing:19.314823pt;}
.ws55{word-spacing:19.315885pt;}
.wsd9{word-spacing:19.363015pt;}
.ws168{word-spacing:19.427945pt;}
.wsf6{word-spacing:19.451855pt;}
.ws3c{word-spacing:19.452334pt;}
.ws164{word-spacing:19.458444pt;}
.ws169{word-spacing:19.459135pt;}
.ws147{word-spacing:19.460144pt;}
.ws44{word-spacing:19.508177pt;}
.ws28{word-spacing:19.513544pt;}
.ws135{word-spacing:19.568963pt;}
.ws162{word-spacing:19.571088pt;}
.ws16f{word-spacing:19.604031pt;}
.ws178{word-spacing:19.651533pt;}
.ws2a{word-spacing:19.748450pt;}
.wseb{word-spacing:19.795899pt;}
.ws161{word-spacing:19.843507pt;}
.ws3f{word-spacing:19.843879pt;}
.ws18b{word-spacing:19.871315pt;}
.ws16d{word-spacing:19.891540pt;}
.wsbb{word-spacing:19.925570pt;}
.wsbd{word-spacing:19.935029pt;}
.wsbf{word-spacing:19.939839pt;}
.ws15f{word-spacing:19.940211pt;}
.ws13a{word-spacing:19.986703pt;}
.ws83{word-spacing:20.035905pt;}
.ws78{word-spacing:20.083194pt;}
.ws139{word-spacing:20.130696pt;}
.ws5b{word-spacing:20.173150pt;}
.ws137{word-spacing:20.220546pt;}
.wsdd{word-spacing:20.227082pt;}
.ws103{word-spacing:20.228251pt;}
.ws148{word-spacing:20.274849pt;}
.ws24{word-spacing:20.275274pt;}
.ws43{word-spacing:20.323573pt;}
.ws7f{word-spacing:20.330055pt;}
.ws5c{word-spacing:20.341639pt;}
.wsf2{word-spacing:20.355985pt;}
.ws56{word-spacing:20.371075pt;}
.wsea{word-spacing:20.372138pt;}
.ws7d{word-spacing:20.466929pt;}
.ws173{word-spacing:20.468895pt;}
.ws171{word-spacing:20.514431pt;}
.ws35{word-spacing:20.514590pt;}
.ws1d{word-spacing:20.610391pt;}
.ws151{word-spacing:20.628510pt;}
.ws8c{word-spacing:20.659115pt;}
.ws52{word-spacing:20.756510pt;}
.ws195{word-spacing:20.883966pt;}
.ws142{word-spacing:20.946889pt;}
.ws141{word-spacing:20.947952pt;}
.ws4c{word-spacing:21.085410pt;}
.ws144{word-spacing:21.235673pt;}
.ws4b{word-spacing:21.236204pt;}
.ws45{word-spacing:21.283175pt;}
.wsa7{word-spacing:21.378338pt;}
.ws7a{word-spacing:21.427221pt;}
.ws4d{word-spacing:21.467815pt;}
.ws102{word-spacing:21.474989pt;}
.wse5{word-spacing:21.520508pt;}
.ws149{word-spacing:21.523181pt;}
.ws66{word-spacing:21.667440pt;}
.ws170{word-spacing:21.763560pt;}
.ws177{word-spacing:21.764197pt;}
.wse1{word-spacing:21.859573pt;}
.ws138{word-spacing:21.956224pt;}
.ws47{word-spacing:22.044001pt;}
.ws15b{word-spacing:22.052450pt;}
.ws7c{word-spacing:22.195699pt;}
.ws104{word-spacing:22.243148pt;}
.wsfb{word-spacing:22.333229pt;}
.wsfc{word-spacing:22.339693pt;}
.ws17d{word-spacing:22.367316pt;}
.ws119{word-spacing:22.381137pt;}
.ws146{word-spacing:22.392561pt;}
.ws124{word-spacing:22.435653pt;}
.ws118{word-spacing:22.441391pt;}
.ws120{word-spacing:22.531453pt;}
.wsfd{word-spacing:22.549200pt;}
.ws163{word-spacing:22.664076pt;}
.ws3e{word-spacing:22.675394pt;}
.ws14b{word-spacing:22.723055pt;}
.ws3b{word-spacing:22.771354pt;}
.ws82{word-spacing:22.812373pt;}
.ws157{word-spacing:22.900257pt;}
.wsde{word-spacing:23.106896pt;}
.wsdf{word-spacing:23.107533pt;}
.ws3d{word-spacing:23.252324pt;}
.ws8b{word-spacing:23.299719pt;}
.ws15e{word-spacing:23.300622pt;}
.ws184{word-spacing:23.375520pt;}
.ws1e{word-spacing:23.460662pt;}
.wsff{word-spacing:23.491586pt;}
.wsb3{word-spacing:23.539460pt;}
.wsb1{word-spacing:23.539482pt;}
.ws5a{word-spacing:23.540363pt;}
.wsd1{word-spacing:23.580900pt;}
.ws89{word-spacing:23.587387pt;}
.ws37{word-spacing:23.635527pt;}
.ws140{word-spacing:23.635686pt;}
.wsec{word-spacing:23.779414pt;}
.ws61{word-spacing:23.779786pt;}
.ws22{word-spacing:23.781008pt;}
.ws59{word-spacing:23.828842pt;}
.ws183{word-spacing:23.859830pt;}
.wsb4{word-spacing:23.875108pt;}
.ws166{word-spacing:23.900955pt;}
.ws46{word-spacing:23.923035pt;}
.ws176{word-spacing:24.068091pt;}
.ws23{word-spacing:24.156241pt;}
.wsed{word-spacing:24.258842pt;}
.ws65{word-spacing:24.451932pt;}
.ws18a{word-spacing:24.484099pt;}
.ws34{word-spacing:24.835400pt;}
.ws8a{word-spacing:24.835560pt;}
.ws6e{word-spacing:24.995175pt;}
.ws1c{word-spacing:25.652709pt;}
.wse3{word-spacing:26.026776pt;}
.wsaf{word-spacing:26.035540pt;}
.wsad{word-spacing:26.083414pt;}
.ws33{word-spacing:26.292815pt;}
.ws1{word-spacing:28.614051pt;}
.ws0{word-spacing:28.706631pt;}
.ws2{word-spacing:28.732263pt;}
.wsbe{word-spacing:29.052078pt;}
.ws175{word-spacing:35.128198pt;}
.ws12b{word-spacing:45.105440pt;}
.ws132{word-spacing:45.107573pt;}
.ws12c{word-spacing:45.152906pt;}
.wsb8{word-spacing:51.322478pt;}
.wsbc{word-spacing:56.556078pt;}
.ws133{word-spacing:58.459456pt;}
.ws12f{word-spacing:58.459669pt;}
.ws129{word-spacing:58.460164pt;}
.ws134{word-spacing:58.461589pt;}
.ws130{word-spacing:58.461803pt;}
.ws11c{word-spacing:61.093034pt;}
.ws1b{word-spacing:71.722311pt;}
.ws131{word-spacing:119.016780pt;}
.ws13c{word-spacing:142.168132pt;}
.ws113{word-spacing:142.173465pt;}
.ws128{word-spacing:153.336780pt;}
.ws10a{word-spacing:198.247366pt;}
.ws10d{word-spacing:315.464259pt;}
.ws108{word-spacing:324.438035pt;}
.ws10f{word-spacing:332.388791pt;}
.ws111{word-spacing:446.677766pt;}
.wsc8{word-spacing:503.964793pt;}
.wse6{word-spacing:547.609106pt;}
.wsc5{word-spacing:714.213326pt;}
._0{margin-left:-42.930387pt;}
._2{margin-left:-41.079483pt;}
._28{margin-left:-36.010892pt;}
._11{margin-left:-35.104138pt;}
._4{margin-left:-33.400326pt;}
._33{margin-left:-31.430175pt;}
._22{margin-left:-30.358666pt;}
._15{margin-left:-28.054582pt;}
._14{margin-left:-26.367428pt;}
._6{margin-left:-25.389613pt;}
._9{margin-left:-23.882550pt;}
._f{margin-left:-22.955184pt;}
._13{margin-left:-21.245934pt;}
._1b{margin-left:-20.281081pt;}
._8{margin-left:-19.059129pt;}
._3{margin-left:-9.332554pt;}
._1a{margin-left:-6.113258pt;}
._7{margin-left:-5.018331pt;}
._5{margin-left:-3.964773pt;}
._19{margin-left:-2.749214pt;}
._1{margin-left:-1.519838pt;}
._a{width:0.935676pt;}
._d{width:1.980527pt;}
._b{width:3.126287pt;}
._24{width:4.398835pt;}
._21{width:9.039207pt;}
._27{width:12.427968pt;}
._c{width:14.701985pt;}
._1d{width:15.857819pt;}
._10{width:17.323605pt;}
._1c{width:18.581660pt;}
._e{width:19.554367pt;}
._18{width:20.464722pt;}
._12{width:21.579087pt;}
._23{width:23.806334pt;}
._16{width:24.727288pt;}
._20{width:26.635596pt;}
._34{width:29.644785pt;}
._1f{width:61.140243pt;}
._29{width:62.579388pt;}
._1e{width:71.808467pt;}
._17{width:102.659996pt;}
._2c{width:156.102170pt;}
._32{width:161.017627pt;}
._2b{width:162.960837pt;}
._2a{width:169.960419pt;}
._30{width:186.773795pt;}
._31{width:208.406423pt;}
._2f{width:229.659450pt;}
._2d{width:255.413227pt;}
._2e{width:277.045855pt;}
._26{width:549.145935pt;}
._25{width:626.174374pt;}
.fs7{font-size:13.168267pt;}
.fs8{font-size:24.924907pt;}
.fs6{font-size:26.567040pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:37.193867pt;}
.fs4{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y17f{bottom:3.322667pt;}
.y16f{bottom:3.478667pt;}
.y127{bottom:3.790667pt;}
.ye7{bottom:7.736000pt;}
.ye6{bottom:9.272000pt;}
.yec{bottom:10.259133pt;}
.y173{bottom:10.748000pt;}
.y163{bottom:10.904000pt;}
.y11b{bottom:11.217333pt;}
.ye5{bottom:13.744000pt;}
.y174{bottom:15.993333pt;}
.y164{bottom:16.149333pt;}
.y11c{bottom:16.461333pt;}
.ye4{bottom:20.849333pt;}
.ye9{bottom:24.634667pt;}
.y175{bottom:29.546667pt;}
.y165{bottom:29.805333pt;}
.ye3{bottom:30.149333pt;}
.y11d{bottom:30.378667pt;}
.ye2{bottom:40.958667pt;}
.y176{bottom:43.046667pt;}
.y166{bottom:43.462667pt;}
.y11e{bottom:44.242667pt;}
.ye1{bottom:52.534667pt;}
.ydc{bottom:56.349333pt;}
.y177{bottom:56.600000pt;}
.y167{bottom:57.120000pt;}
.y11f{bottom:58.106667pt;}
.ydb{bottom:61.644000pt;}
.ye0{bottom:64.140000pt;}
.yda{bottom:66.910667pt;}
.y178{bottom:70.101333pt;}
.y168{bottom:70.724000pt;}
.y120{bottom:71.972000pt;}
.yd9{bottom:72.205333pt;}
.y170{bottom:73.268000pt;}
.y180{bottom:74.306667pt;}
.y128{bottom:74.724000pt;}
.ydf{bottom:74.949333pt;}
.yd8{bottom:77.500000pt;}
.yd7{bottom:82.768000pt;}
.y179{bottom:83.654667pt;}
.yde{bottom:84.249333pt;}
.y169{bottom:84.381333pt;}
.y121{bottom:85.836000pt;}
.yd6{bottom:88.062667pt;}
.ye8{bottom:91.354667pt;}
.yd5{bottom:93.357333pt;}
.yeb{bottom:94.837800pt;}
.ydd{bottom:95.825333pt;}
.y17a{bottom:97.154667pt;}
.y16a{bottom:98.037333pt;}
.yea{bottom:99.062800pt;}
.y122{bottom:99.700000pt;}
.y17b{bottom:110.708000pt;}
.y16b{bottom:111.642667pt;}
.y123{bottom:113.565333pt;}
.y17c{bottom:124.209333pt;}
.y16c{bottom:125.298667pt;}
.y124{bottom:127.429333pt;}
.y17d{bottom:137.761333pt;}
.y16d{bottom:138.956000pt;}
.y125{bottom:141.293333pt;}
.y17e{bottom:151.262667pt;}
.y16e{bottom:152.561333pt;}
.y126{bottom:155.158667pt;}
.y9e{bottom:230.669267pt;}
.y9d{bottom:233.933333pt;}
.y53{bottom:237.304267pt;}
.y74{bottom:237.304400pt;}
.y10c{bottom:237.304533pt;}
.y194{bottom:237.304640pt;}
.yd3{bottom:237.304800pt;}
.y137{bottom:237.304933pt;}
.y161{bottom:237.305067pt;}
.y26{bottom:237.305493pt;}
.y9b{bottom:239.764640pt;}
.y9a{bottom:243.052667pt;}
.y9f{bottom:243.053640pt;}
.y9c{bottom:248.752667pt;}
.y52{bottom:253.252667pt;}
.y73{bottom:253.252800pt;}
.y10b{bottom:253.252933pt;}
.y193{bottom:253.253067pt;}
.yd2{bottom:253.253200pt;}
.y136{bottom:253.253333pt;}
.y160{bottom:253.253467pt;}
.y25{bottom:253.253893pt;}
.y99{bottom:268.924533pt;}
.y51{bottom:269.188667pt;}
.y72{bottom:269.188800pt;}
.y10a{bottom:269.188933pt;}
.y192{bottom:269.189067pt;}
.yd1{bottom:269.189200pt;}
.y135{bottom:269.189333pt;}
.y15f{bottom:269.189467pt;}
.y24{bottom:269.189893pt;}
.y50{bottom:285.124667pt;}
.y71{bottom:285.124800pt;}
.y109{bottom:285.124933pt;}
.y191{bottom:285.125067pt;}
.yd0{bottom:285.125200pt;}
.y15e{bottom:285.125467pt;}
.y23{bottom:285.125893pt;}
.y98{bottom:294.688627pt;}
.y97{bottom:297.964667pt;}
.y4f{bottom:301.072533pt;}
.y70{bottom:301.072667pt;}
.y108{bottom:301.072800pt;}
.y190{bottom:301.072933pt;}
.ycf{bottom:301.073067pt;}
.y15d{bottom:301.073333pt;}
.y22{bottom:301.073760pt;}
.y134{bottom:309.761200pt;}
.y4e{bottom:317.008533pt;}
.y6f{bottom:317.008667pt;}
.y107{bottom:317.008800pt;}
.y18f{bottom:317.008933pt;}
.yce{bottom:317.009067pt;}
.y15c{bottom:317.009333pt;}
.y21{bottom:317.009760pt;}
.y96{bottom:317.560533pt;}
.y1b0{bottom:323.716667pt;}
.y133{bottom:325.709067pt;}
.y4d{bottom:332.944533pt;}
.y6e{bottom:332.944667pt;}
.y106{bottom:332.944800pt;}
.y18e{bottom:332.944933pt;}
.ycd{bottom:332.945067pt;}
.y15b{bottom:332.945333pt;}
.y20{bottom:332.945760pt;}
.y95{bottom:333.496533pt;}
.y1af{bottom:339.653067pt;}
.y132{bottom:341.645067pt;}
.y94{bottom:345.676693pt;}
.y4c{bottom:348.892400pt;}
.y6d{bottom:348.892533pt;}
.y18d{bottom:348.892800pt;}
.y1f{bottom:348.893627pt;}
.ycc{bottom:349.025333pt;}
.y105{bottom:349.372933pt;}
.y93{bottom:349.444413pt;}
.y1ae{bottom:355.589067pt;}
.y131{bottom:357.581067pt;}
.y4b{bottom:364.828400pt;}
.y6c{bottom:364.828533pt;}
.y18c{bottom:364.828800pt;}
.y1e{bottom:364.829627pt;}
.ycb{bottom:364.961333pt;}
.y104{bottom:365.308933pt;}
.y1ad{bottom:371.536933pt;}
.y130{bottom:373.528933pt;}
.y92{bottom:375.196520pt;}
.y91{bottom:378.484547pt;}
.y4a{bottom:380.764800pt;}
.y6b{bottom:380.764933pt;}
.y18b{bottom:380.765200pt;}
.y1d{bottom:380.766027pt;}
.yca{bottom:380.897333pt;}
.y103{bottom:381.256800pt;}
.y15a{bottom:385.865829pt;}
.y1ac{bottom:387.472933pt;}
.y49{bottom:396.712667pt;}
.y6a{bottom:396.712800pt;}
.y18a{bottom:396.713067pt;}
.yc9{bottom:396.845200pt;}
.y102{bottom:397.192800pt;}
.y90{bottom:398.068413pt;}
.y12f{bottom:400.816933pt;}
.y159{bottom:400.841296pt;}
.y1ab{bottom:403.408933pt;}
.y8f{bottom:410.728253pt;}
.y1c{bottom:412.013893pt;}
.y48{bottom:412.648667pt;}
.y189{bottom:412.649067pt;}
.yc8{bottom:412.781200pt;}
.y101{bottom:413.128800pt;}
.y8e{bottom:414.016280pt;}
.y158{bottom:415.817296pt;}
.y1aa{bottom:419.356800pt;}
.y69{bottom:423.820667pt;}
.y47{bottom:428.584667pt;}
.yc7{bottom:428.717200pt;}
.y100{bottom:429.077200pt;}
.y157{bottom:430.793296pt;}
.y1a9{bottom:435.292800pt;}
.y68{bottom:439.756667pt;}
.y8d{bottom:439.768387pt;}
.y12e{bottom:441.389333pt;}
.y8c{bottom:443.056413pt;}
.y46{bottom:444.532533pt;}
.yc6{bottom:444.665600pt;}
.yff{bottom:445.013200pt;}
.y156{bottom:445.769296pt;}
.y1a8{bottom:451.228800pt;}
.y188{bottom:454.553200pt;}
.y1d1{bottom:455.345733pt;}
.y67{bottom:455.872800pt;}
.y1b{bottom:456.341493pt;}
.y12d{bottom:457.325333pt;}
.y45{bottom:460.468533pt;}
.yc5{bottom:460.601600pt;}
.y155{bottom:460.745296pt;}
.yfe{bottom:460.949200pt;}
.y8b{bottom:462.640280pt;}
.y1a7{bottom:467.177200pt;}
.y1d0{bottom:469.949867pt;}
.y187{bottom:470.501067pt;}
.y12c{bottom:473.273200pt;}
.y154{bottom:475.721296pt;}
.y44{bottom:476.416400pt;}
.yfd{bottom:476.897067pt;}
.y8a{bottom:478.588680pt;}
.y1a6{bottom:483.113200pt;}
.y66{bottom:483.160800pt;}
.y1cf{bottom:484.566000pt;}
.y1a{bottom:485.405493pt;}
.y186{bottom:486.437067pt;}
.y12b{bottom:489.209200pt;}
.y153{bottom:490.697333pt;}
.y89{bottom:491.236653pt;}
.y43{bottom:492.352400pt;}
.yfc{bottom:492.833067pt;}
.yc4{bottom:493.145333pt;}
.y88{bottom:494.524667pt;}
.y1a5{bottom:499.049200pt;}
.y1ce{bottom:499.181600pt;}
.y19{bottom:500.009627pt;}
.y185{bottom:502.373067pt;}
.y12a{bottom:505.145200pt;}
.y152{bottom:506.213333pt;}
.y42{bottom:508.288800pt;}
.yfb{bottom:508.769067pt;}
.y65{bottom:510.268667pt;}
.y1cd{bottom:513.785733pt;}
.y18{bottom:514.625760pt;}
.y1a4{bottom:514.997067pt;}
.y184{bottom:518.320933pt;}
.y87{bottom:520.276773pt;}
.y151{bottom:521.189333pt;}
.y86{bottom:523.564800pt;}
.y41{bottom:524.236667pt;}
.y64{bottom:526.384800pt;}
.y1cc{bottom:528.401867pt;}
.y17{bottom:529.241360pt;}
.y1a3{bottom:530.933067pt;}
.y183{bottom:534.256933pt;}
.yc3{bottom:536.309333pt;}
.yfa{bottom:537.749333pt;}
.y150{bottom:539.693200pt;}
.y40{bottom:540.172667pt;}
.y63{bottom:542.512933pt;}
.y1cb{bottom:543.017467pt;}
.y16{bottom:543.845493pt;}
.y1a2{bottom:546.880933pt;}
.y129{bottom:551.285333pt;}
.yc2{bottom:552.245333pt;}
.y85{bottom:552.604400pt;}
.y14f{bottom:554.297333pt;}
.y3f{bottom:556.108667pt;}
.y1ca{bottom:557.621600pt;}
.y62{bottom:558.448933pt;}
.y15{bottom:558.461627pt;}
.y1a1{bottom:562.816933pt;}
.yc1{bottom:568.193200pt;}
.y84{bottom:568.540400pt;}
.y11a{bottom:571.628000pt;}
.y3e{bottom:572.056533pt;}
.y1c9{bottom:572.237733pt;}
.y14{bottom:573.077760pt;}
.y61{bottom:574.384933pt;}
.y1a0{bottom:578.753333pt;}
.yf9{bottom:580.013333pt;}
.y182{bottom:581.585067pt;}
.yc0{bottom:584.129200pt;}
.y83{bottom:584.488800pt;}
.y1c8{bottom:586.853867pt;}
.y13{bottom:587.681360pt;}
.y14e{bottom:587.945296pt;}
.y3d{bottom:587.992533pt;}
.y19f{bottom:594.701200pt;}
.yf8{bottom:595.949333pt;}
.y82{bottom:600.424800pt;}
.y1c7{bottom:601.457467pt;}
.y60{bottom:601.672933pt;}
.y12{bottom:602.297493pt;}
.y14d{bottom:602.921296pt;}
.y3c{bottom:603.928533pt;}
.y181{bottom:609.665333pt;}
.ybe{bottom:609.689296pt;}
.yf7{bottom:611.897200pt;}
.ybf{bottom:613.649217pt;}
.y1c6{bottom:616.073600pt;}
.y81{bottom:616.360800pt;}
.y11{bottom:616.913627pt;}
.ybd{bottom:617.657003pt;}
.y5f{bottom:617.789067pt;}
.y14c{bottom:617.897308pt;}
.y172{bottom:619.329333pt;}
.y3b{bottom:619.876933pt;}
.y19e{bottom:625.313200pt;}
.yf6{bottom:627.833200pt;}
.y1c5{bottom:630.689733pt;}
.y10{bottom:631.517227pt;}
.y80{bottom:632.308667pt;}
.y14b{bottom:632.873308pt;}
.y5e{bottom:633.736933pt;}
.y3a{bottom:635.812933pt;}
.ybc{bottom:640.949136pt;}
.y1c4{bottom:645.293333pt;}
.yf{bottom:646.133360pt;}
.y14a{bottom:647.849308pt;}
.y7f{bottom:648.244667pt;}
.y5d{bottom:649.672933pt;}
.ybb{bottom:656.885136pt;}
.y39{bottom:659.153067pt;}
.y1c3{bottom:659.909467pt;}
.ye{bottom:660.749493pt;}
.yf5{bottom:662.129067pt;}
.y149{bottom:662.825308pt;}
.y7e{bottom:664.180667pt;}
.y5c{bottom:665.608933pt;}
.y19d{bottom:666.544933pt;}
.yba{bottom:672.833003pt;}
.y1c2{bottom:674.525600pt;}
.y38{bottom:675.089067pt;}
.y148{bottom:677.801308pt;}
.y7d{bottom:680.128533pt;}
.y5b{bottom:681.556800pt;}
.y19c{bottom:682.492800pt;}
.y1c1{bottom:689.129200pt;}
.y37{bottom:691.036933pt;}
.yb8{bottom:691.877283pt;}
.y147{bottom:692.777333pt;}
.yb7{bottom:695.153333pt;}
.y7c{bottom:696.064933pt;}
.y5a{bottom:697.492800pt;}
.y19b{bottom:698.428800pt;}
.yb5{bottom:700.253311pt;}
.y1c0{bottom:703.745333pt;}
.yb9{bottom:704.261136pt;}
.y36{bottom:706.972933pt;}
.yf4{bottom:707.045200pt;}
.y146{bottom:708.293333pt;}
.yb6{bottom:709.961137pt;}
.y7b{bottom:712.012800pt;}
.yd{bottom:713.417227pt;}
.y59{bottom:713.428800pt;}
.y19a{bottom:714.365200pt;}
.yb4{bottom:714.604869pt;}
.y1bf{bottom:718.361467pt;}
.y35{bottom:722.908933pt;}
.yf3{bottom:722.981200pt;}
.y145{bottom:723.269333pt;}
.yb3{bottom:726.533056pt;}
.y7a{bottom:727.948800pt;}
.y199{bottom:730.313067pt;}
.yb2{bottom:730.540880pt;}
.y1be{bottom:732.965600pt;}
.yc{bottom:733.109387pt;}
.y34{bottom:738.856800pt;}
.yf2{bottom:738.917200pt;}
.y58{bottom:740.897067pt;}
.y144{bottom:741.773200pt;}
.yb{bottom:742.637507pt;}
.y79{bottom:743.884800pt;}
.y198{bottom:746.249067pt;}
.y1bd{bottom:747.581200pt;}
.y33{bottom:754.792800pt;}
.yf1{bottom:754.865600pt;}
.yb1{bottom:755.513333pt;}
.y143{bottom:756.377333pt;}
.ya{bottom:757.253640pt;}
.y78{bottom:759.832667pt;}
.yaf{bottom:761.332913pt;}
.y197{bottom:762.185067pt;}
.y1bc{bottom:762.185333pt;}
.y119{bottom:763.097333pt;}
.yae{bottom:764.620940pt;}
.yb0{bottom:770.332928pt;}
.y32{bottom:770.728800pt;}
.yf0{bottom:770.801600pt;}
.y77{bottom:775.768667pt;}
.y1bb{bottom:776.801467pt;}
.y9{bottom:776.933280pt;}
.y196{bottom:778.132933pt;}
.y118{bottom:778.613333pt;}
.y57{bottom:781.649200pt;}
.y8{bottom:786.473387pt;}
.y31{bottom:786.677200pt;}
.yad{bottom:788.944913pt;}
.y171{bottom:789.833333pt;}
.y142{bottom:790.013308pt;}
.y1ba{bottom:791.417067pt;}
.y76{bottom:791.704667pt;}
.yac{bottom:792.232927pt;}
.y195{bottom:794.068933pt;}
.y117{bottom:794.117333pt;}
.y56{bottom:797.585200pt;}
.y162{bottom:799.353333pt;}
.y7{bottom:801.089520pt;}
.y141{bottom:804.989308pt;}
.y1b9{bottom:806.021200pt;}
.yab{bottom:808.168927pt;}
.y116{bottom:809.093333pt;}
.y30{bottom:810.016800pt;}
.y55{bottom:813.533067pt;}
.y75{bottom:818.128667pt;}
.yef{bottom:818.273467pt;}
.y140{bottom:819.965829pt;}
.y1b8{bottom:820.637333pt;}
.y6{bottom:820.769160pt;}
.yaa{bottom:820.840753pt;}
.ya9{bottom:820.840764pt;}
.y115{bottom:824.069333pt;}
.ya8{bottom:824.116815pt;}
.y2f{bottom:825.952800pt;}
.yee{bottom:832.889600pt;}
.y13f{bottom:834.941296pt;}
.y1b7{bottom:835.252933pt;}
.y114{bottom:839.045333pt;}
.y2e{bottom:841.889200pt;}
.y5{bottom:843.533200pt;}
.y54{bottom:846.304933pt;}
.yed{bottom:847.709333pt;}
.y1b6{bottom:849.857067pt;}
.y13e{bottom:849.929296pt;}
.ya7{bottom:850.444921pt;}
.ya6{bottom:850.468881pt;}
.ya5{bottom:853.732947pt;}
.y113{bottom:854.561333pt;}
.y2d{bottom:857.837067pt;}
.y4{bottom:859.481067pt;}
.yd4{bottom:862.960000pt;}
.y1b5{bottom:864.473200pt;}
.y13d{bottom:864.905296pt;}
.y112{bottom:870.065867pt;}
.y2c{bottom:873.773067pt;}
.ya4{bottom:873.773080pt;}
.y1b4{bottom:879.089333pt;}
.y13c{bottom:879.881296pt;}
.y111{bottom:885.041333pt;}
.y2b{bottom:889.709067pt;}
.ya3{bottom:889.709080pt;}
.y1b3{bottom:893.692933pt;}
.y13b{bottom:894.857333pt;}
.y110{bottom:900.017333pt;}
.y2a{bottom:905.656933pt;}
.ya2{bottom:905.656947pt;}
.y3{bottom:905.657067pt;}
.y1b2{bottom:908.309067pt;}
.y13a{bottom:910.361333pt;}
.y10f{bottom:914.993333pt;}
.ya1{bottom:918.304920pt;}
.y29{bottom:921.592933pt;}
.y1b1{bottom:922.925200pt;}
.y139{bottom:925.337333pt;}
.y2{bottom:929.561200pt;}
.y10e{bottom:930.509333pt;}
.y28{bottom:937.528933pt;}
.y138{bottom:943.840933pt;}
.ya0{bottom:950.189307pt;}
.y1{bottom:953.477333pt;}
.y10d{bottom:958.457067pt;}
.y27{bottom:988.013333pt;}
.h24{height:13.734091pt;}
.h4{height:21.551168pt;}
.h27{height:25.995899pt;}
.h16{height:26.184482pt;}
.h6{height:29.457547pt;}
.h5{height:35.865520pt;}
.h29{height:35.865621pt;}
.h28{height:35.865669pt;}
.h9{height:37.406392pt;}
.h25{height:37.766091pt;}
.h8{height:39.850560pt;}
.h2{height:43.944621pt;}
.h3{height:43.992567pt;}
.h15{height:44.519895pt;}
.h7{height:44.887415pt;}
.hf{height:45.432375pt;}
.hc{height:45.480322pt;}
.he{height:45.482402pt;}
.ha{height:48.119895pt;}
.h12{height:48.167842pt;}
.h20{height:49.799042pt;}
.h1a{height:49.801122pt;}
.h18{height:49.849069pt;}
.h13{height:52.954720pt;}
.h17{height:53.002667pt;}
.h1{height:53.865199pt;}
.h11{height:54.921387pt;}
.h1e{height:55.881813pt;}
.h10{height:58.584482pt;}
.hd{height:58.632429pt;}
.h19{height:61.176162pt;}
.hb{height:61.272002pt;}
.h1b{height:62.905282pt;}
.h1d{height:76.281813pt;}
.h22{height:77.148297pt;}
.h21{height:92.987763pt;}
.h14{height:94.536589pt;}
.h1f{height:97.463682pt;}
.h1c{height:98.953282pt;}
.h23{height:103.754667pt;}
.h2b{height:166.009333pt;}
.h2a{height:167.412000pt;}
.h26{height:170.217333pt;}
.h0{height:1122.666667pt;}
.w1{width:138.404000pt;}
.w2{width:553.749333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x41{left:4.388933pt;}
.x40{left:22.797333pt;}
.x3f{left:24.361333pt;}
.x3e{left:28.942667pt;}
.x3d{left:36.212000pt;}
.x3c{left:45.732000pt;}
.x59{left:55.509600pt;}
.x3b{left:56.788000pt;}
.x4e{left:58.989333pt;}
.x4c{left:63.246667pt;}
.x4b{left:66.726667pt;}
.x3a{left:68.666667pt;}
.x4a{left:70.257333pt;}
.x33{left:71.821333pt;}
.x34{left:80.518667pt;}
.x39{left:91.601333pt;}
.x35{left:101.093333pt;}
.x36{left:108.390667pt;}
.x37{left:112.973333pt;}
.x38{left:114.536000pt;}
.x49{left:125.724000pt;}
.x58{left:133.031733pt;}
.xf{left:179.686613pt;}
.x12{left:185.291600pt;}
.x1{left:187.704000pt;}
.x4f{left:193.344000pt;}
.x10{left:199.606347pt;}
.x13{left:202.271600pt;}
.xc{left:203.914840pt;}
.x2{left:207.780000pt;}
.x45{left:213.300133pt;}
.x5b{left:214.200133pt;}
.xe{left:217.474880pt;}
.x4{left:218.904000pt;}
.x51{left:221.484000pt;}
.x53{left:224.280133pt;}
.x18{left:226.859971pt;}
.x16{left:228.180357pt;}
.x52{left:230.424000pt;}
.x6{left:242.699640pt;}
.x7{left:244.606347pt;}
.x44{left:249.444000pt;}
.x9{left:253.905973pt;}
.x47{left:256.020000pt;}
.x57{left:258.600187pt;}
.x56{left:264.744000pt;}
.x5a{left:268.380000pt;}
.x31{left:273.096040pt;}
.x4d{left:276.770667pt;}
.x5{left:279.467840pt;}
.x11{left:280.908000pt;}
.xb{left:297.394013pt;}
.x3{left:300.647733pt;}
.x25{left:306.660053pt;}
.x46{left:322.248000pt;}
.x24{left:323.904413pt;}
.x8{left:331.918347pt;}
.x42{left:341.076000pt;}
.x1b{left:342.180237pt;}
.xa{left:344.770013pt;}
.x48{left:347.496000pt;}
.x1c{left:351.983888pt;}
.x26{left:353.196453pt;}
.x1f{left:358.320290pt;}
.x14{left:359.448387pt;}
.x17{left:362.172171pt;}
.x20{left:363.120290pt;}
.xd{left:366.298880pt;}
.x29{left:377.436747pt;}
.x2a{left:385.969040pt;}
.x32{left:388.152333pt;}
.x1a{left:389.808224pt;}
.x2d{left:392.616812pt;}
.x50{left:398.592000pt;}
.x54{left:407.256000pt;}
.x55{left:408.876000pt;}
.x19{left:410.112291pt;}
.x15{left:411.792612pt;}
.x2e{left:414.888000pt;}
.x21{left:417.732000pt;}
.x1d{left:420.083901pt;}
.x2f{left:423.419773pt;}
.x2b{left:424.512827pt;}
.x22{left:426.264293pt;}
.x1e{left:451.812021pt;}
.x23{left:458.460160pt;}
.x30{left:477.168173pt;}
.x43{left:494.016000pt;}
.x27{left:529.452853pt;}
.x2c{left:561.745040pt;}
.x28{left:608.569013pt;}
}




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