
    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_3df7c76ac9927d8bed7a09e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f524bc6f9b08ca5d6fcc6e0c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_26242331079e3a7b06d5add0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b470d216027c667fe604dd0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_acf84b7624e063a3d5727a7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_7ddbb3520218c13352e09b3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_c31400a838dd84e5c2540d37.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_6fd367698e10aa8da478fd83.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9ae8baaacbadd7c4294de34e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_31d42f8ab33656ad00a12d7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_13ff5b90665d23c5d7bf470a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.882324;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_ae9d551ffe30dff654871995.woff2')format("woff");}.fff{font-family:fff;line-height:2.150879;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_9c11a645a2b8256c6cba3952.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.931152;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_1af234e3fb7a411c87c143db.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908203;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_75e1f1605411ac7a4156765a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.758301;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_4e2cc4a39325074d04a134d9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e9ff8d4c5483256d9e988f75.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_58c7fc2b5d28b1c1f8ab2d23.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0038d9631cbb2515cf30275f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284180;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:ff17;src:url('chunks/assets/font_2e6b9f5190192a8cf552b346.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;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:ff18;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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:ff19;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284180;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:ff1a;src:url('chunks/assets/font_c6e8bceff833d4f80d22b978.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_f99ddedc85492f69f9c4e12d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.vb{vertical-align:-41.731200px;}
.v15{vertical-align:-39.611520px;}
.v11{vertical-align:-25.171200px;}
.vf{vertical-align:-18.720000px;}
.v4{vertical-align:-14.374080px;}
.v2{vertical-align:-12.254400px;}
.v10{vertical-align:-10.068480px;}
.v7{vertical-align:-2.185920px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.240640px;}
.v12{vertical-align:3.576960px;}
.v14{vertical-align:5.762880px;}
.v19{vertical-align:10.108800px;}
.v1{vertical-align:12.254400px;}
.v3{vertical-align:14.374080px;}
.v16{vertical-align:18.000000px;}
.v5{vertical-align:24.534720px;}
.v13{vertical-align:28.056960px;}
.v8{vertical-align:30.970920px;}
.va{vertical-align:33.141720px;}
.vd{vertical-align:35.302320px;}
.v9{vertical-align:38.880600px;}
.ve{vertical-align:40.319400px;}
.vc{vertical-align:57.621720px;}
.v18{vertical-align:71.982720px;}
.v17{vertical-align:77.759400px;}
.lsab{letter-spacing:-1.374480px;}
.ls22{letter-spacing:-1.192320px;}
.lsaa{letter-spacing:-1.135440px;}
.ls18{letter-spacing:-1.126080px;}
.ls3c{letter-spacing:-0.820080px;}
.ls25{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.728640px;}
.lsae{letter-spacing:-0.725760px;}
.ls3b{letter-spacing:-0.662400px;}
.ls14{letter-spacing:-0.596160px;}
.lsa8{letter-spacing:-0.478080px;}
.ls17{letter-spacing:-0.463680px;}
.lsa9{letter-spacing:-0.418320px;}
.ls15{letter-spacing:-0.397440px;}
.lsa7{letter-spacing:-0.358560px;}
.ls19{letter-spacing:-0.331200px;}
.ls70{letter-spacing:-0.289440px;}
.ls7c{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.264960px;}
.ls7f{letter-spacing:-0.233280px;}
.ls3d{letter-spacing:-0.198720px;}
.ls3e{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.132480px;}
.lsa3{letter-spacing:-0.119520px;}
.ls7e{letter-spacing:-0.096480px;}
.ls24{letter-spacing:-0.077760px;}
.lsa5{letter-spacing:-0.059760px;}
.lsad{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000041px;}
.ls90{letter-spacing:0.017280px;}
.ls7d{letter-spacing:0.048240px;}
.ls9d{letter-spacing:0.059760px;}
.ls27{letter-spacing:0.066240px;}
.lsa6{letter-spacing:0.077760px;}
.ls40{letter-spacing:0.096480px;}
.ls91{letter-spacing:0.104400px;}
.ls92{letter-spacing:0.116640px;}
.lsa4{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.132480px;}
.ls26{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.144720px;}
.ls35{letter-spacing:0.155520px;}
.lsa1{letter-spacing:0.179280px;}
.ls3f{letter-spacing:0.192960px;}
.ls78{letter-spacing:0.198720px;}
.ls13{letter-spacing:0.216000px;}
.ls9c{letter-spacing:0.239040px;}
.ls21{letter-spacing:0.264960px;}
.ls9a{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.331200px;}
.ls59{letter-spacing:0.337680px;}
.ls9b{letter-spacing:0.358560px;}
.lsac{letter-spacing:0.362880px;}
.ls51{letter-spacing:0.385920px;}
.ls2c{letter-spacing:0.463680px;}
.lsb{letter-spacing:0.596160px;}
.ls9e{letter-spacing:0.597600px;}
.ls11{letter-spacing:0.728640px;}
.ls4f{letter-spacing:0.820080px;}
.ls46{letter-spacing:0.861120px;}
.ls85{letter-spacing:0.868320px;}
.lsa0{letter-spacing:0.896400px;}
.lsa2{letter-spacing:0.956160px;}
.ls8d{letter-spacing:1.059840px;}
.ls41{letter-spacing:1.109520px;}
.ls2f{letter-spacing:1.192320px;}
.ls56{letter-spacing:1.258560px;}
.ls6c{letter-spacing:1.391040px;}
.ls30{letter-spacing:1.457280px;}
.ls54{letter-spacing:1.543680px;}
.ls2d{letter-spacing:1.589760px;}
.ls86{letter-spacing:1.784880px;}
.ls52{letter-spacing:1.798560px;}
.ls50{letter-spacing:1.833120px;}
.ls4e{letter-spacing:1.842480px;}
.ls6{letter-spacing:1.854720px;}
.ls2e{letter-spacing:1.920960px;}
.ls7{letter-spacing:1.987200px;}
.ls5b{letter-spacing:2.119680px;}
.ls53{letter-spacing:2.157120px;}
.lsa{letter-spacing:2.185920px;}
.ls2b{letter-spacing:2.252160px;}
.ls82{letter-spacing:2.318400px;}
.ls89{letter-spacing:2.517120px;}
.ls5c{letter-spacing:2.649600px;}
.ls12{letter-spacing:2.715840px;}
.ls6f{letter-spacing:2.756160px;}
.ls99{letter-spacing:2.848320px;}
.ls5d{letter-spacing:3.303360px;}
.ls5f{letter-spacing:3.340800px;}
.ls67{letter-spacing:3.346560px;}
.ls93{letter-spacing:3.363840px;}
.ls8c{letter-spacing:3.404160px;}
.ls74{letter-spacing:3.879360px;}
.ls6e{letter-spacing:3.991680px;}
.ls71{letter-spacing:4.003200px;}
.ls94{letter-spacing:4.299840px;}
.ls28{letter-spacing:4.305600px;}
.ls69{letter-spacing:4.308480px;}
.ls75{letter-spacing:4.331520px;}
.ls36{letter-spacing:4.345920px;}
.ls76{letter-spacing:4.389120px;}
.ls4b{letter-spacing:4.409280px;}
.ls7a{letter-spacing:4.424400px;}
.ls6a{letter-spacing:4.769280px;}
.ls1d{letter-spacing:5.034240px;}
.ls4c{letter-spacing:5.232960px;}
.ls4d{letter-spacing:5.621760px;}
.ls1b{letter-spacing:5.696640px;}
.ls1a{letter-spacing:5.762880px;}
.ls8b{letter-spacing:6.425280px;}
.ls9{letter-spacing:6.491520px;}
.ls5{letter-spacing:7.220160px;}
.ls81{letter-spacing:7.816320px;}
.lsd{letter-spacing:7.948800px;}
.ls20{letter-spacing:8.611200px;}
.lse{letter-spacing:9.339840px;}
.ls10{letter-spacing:10.068480px;}
.ls68{letter-spacing:10.200960px;}
.ls79{letter-spacing:10.664640px;}
.ls65{letter-spacing:10.797120px;}
.ls5a{letter-spacing:10.913760px;}
.ls6b{letter-spacing:10.929600px;}
.ls98{letter-spacing:12.983040px;}
.ls38{letter-spacing:13.579200px;}
.ls88{letter-spacing:13.910400px;}
.ls43{letter-spacing:14.175360px;}
.ls44{letter-spacing:14.241600px;}
.ls1c{letter-spacing:14.374080px;}
.ls39{letter-spacing:14.572800px;}
.ls31{letter-spacing:14.970240px;}
.ls96{letter-spacing:15.168960px;}
.ls87{letter-spacing:17.156160px;}
.ls60{letter-spacing:17.381520px;}
.ls8f{letter-spacing:17.403120px;}
.ls77{letter-spacing:17.406720px;}
.ls83{letter-spacing:17.884800px;}
.ls4{letter-spacing:18.017280px;}
.ls7b{letter-spacing:18.083520px;}
.ls4a{letter-spacing:18.105120px;}
.ls61{letter-spacing:18.126720px;}
.ls45{letter-spacing:18.130320px;}
.ls42{letter-spacing:18.137520px;}
.ls2a{letter-spacing:18.216000px;}
.ls64{letter-spacing:18.480960px;}
.ls34{letter-spacing:18.547200px;}
.ls57{letter-spacing:18.613440px;}
.ls84{letter-spacing:18.691200px;}
.ls95{letter-spacing:18.745920px;}
.ls72{letter-spacing:19.408320px;}
.lsc{letter-spacing:20.136960px;}
.ls5e{letter-spacing:20.269440px;}
.ls37{letter-spacing:20.998080px;}
.ls6d{letter-spacing:21.329280px;}
.ls97{letter-spacing:22.786560px;}
.ls1e{letter-spacing:23.780160px;}
.lsf{letter-spacing:25.171200px;}
.ls48{letter-spacing:26.628480px;}
.ls29{letter-spacing:29.543040px;}
.ls33{letter-spacing:32.391360px;}
.ls63{letter-spacing:40.507200px;}
.ls8e{letter-spacing:41.244480px;}
.ls49{letter-spacing:44.827200px;}
.ls80{letter-spacing:49.158720px;}
.ls55{letter-spacing:51.760080px;}
.ls58{letter-spacing:53.403840px;}
.ls73{letter-spacing:54.780480px;}
.ls9f{letter-spacing:103.862880px;}
.ls1f{letter-spacing:111.024000px;}
.ls2{letter-spacing:160.574400px;}
.ls8a{letter-spacing:198.521280px;}
.ls66{letter-spacing:306.691200px;}
.ls62{letter-spacing:392.405760px;}
.ls47{letter-spacing:408.965760px;}
.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;}
}
.ws4f{word-spacing:-66.240000px;}
.ws53{word-spacing:-66.041280px;}
.ws57{word-spacing:-48.432960px;}
.ws74{word-spacing:-48.384720px;}
.ws58{word-spacing:-48.336480px;}
.ws71{word-spacing:-48.288240px;}
.ws54{word-spacing:-48.240000px;}
.ws72{word-spacing:-48.143520px;}
.ws61{word-spacing:-47.950560px;}
.ws52{word-spacing:-47.419920px;}
.ws64{word-spacing:-38.880000px;}
.ws7a{word-spacing:-38.646720px;}
.ws69{word-spacing:-31.710960px;}
.ws85{word-spacing:-30.649680px;}
.ws8d{word-spacing:-19.517760px;}
.ws55{word-spacing:-18.216000px;}
.ws3b{word-spacing:-18.144000px;}
.ws56{word-spacing:-17.856000px;}
.ws3a{word-spacing:-17.208000px;}
.ws8{word-spacing:-16.891200px;}
.ws67{word-spacing:-16.824960px;}
.ws6{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws39{word-spacing:-16.427520px;}
.ws68{word-spacing:-16.228800px;}
.ws5{word-spacing:-16.162560px;}
.ws62{word-spacing:-16.096320px;}
.ws9{word-spacing:-15.963840px;}
.ws7{word-spacing:-15.831360px;}
.ws38{word-spacing:-15.433920px;}
.ws93{word-spacing:-15.298560px;}
.ws3{word-spacing:-15.228000px;}
.ws91{word-spacing:-15.059520px;}
.ws8f{word-spacing:-14.940000px;}
.ws95{word-spacing:-14.880240px;}
.ws8c{word-spacing:-14.820480px;}
.ws8e{word-spacing:-14.581440px;}
.ws50{word-spacing:-14.572800px;}
.ws90{word-spacing:-14.521680px;}
.ws94{word-spacing:-14.461920px;}
.ws92{word-spacing:-13.804560px;}
.wsbf{word-spacing:-12.610080px;}
.wsc0{word-spacing:-11.884320px;}
.ws1{word-spacing:-11.676000px;}
.ws65{word-spacing:-10.612800px;}
.ws7b{word-spacing:-3.643200px;}
.wsb3{word-spacing:-0.896400px;}
.ws60{word-spacing:-0.861120px;}
.ws70{word-spacing:-0.728640px;}
.wsa4{word-spacing:-0.358560px;}
.ws5e{word-spacing:-0.331200px;}
.wsc3{word-spacing:-0.317520px;}
.ws80{word-spacing:-0.209469px;}
.ws6b{word-spacing:-0.198720px;}
.ws9e{word-spacing:-0.179280px;}
.ws77{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.132480px;}
.ws98{word-spacing:-0.119520px;}
.ws7e{word-spacing:-0.116640px;}
.ws4e{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.wsb0{word-spacing:0.059760px;}
.ws4d{word-spacing:0.077760px;}
.wsa0{word-spacing:0.119520px;}
.ws4c{word-spacing:0.132480px;}
.ws78{word-spacing:0.233280px;}
.ws9a{word-spacing:0.239040px;}
.ws59{word-spacing:0.264960px;}
.ws76{word-spacing:0.288000px;}
.ws2d{word-spacing:0.331200px;}
.wsa6{word-spacing:0.358560px;}
.ws73{word-spacing:0.397440px;}
.wsc2{word-spacing:0.408240px;}
.ws23{word-spacing:0.463680px;}
.wsaa{word-spacing:0.537840px;}
.wsf{word-spacing:0.596160px;}
.ws5b{word-spacing:0.662400px;}
.ws26{word-spacing:0.728640px;}
.wsb2{word-spacing:0.776880px;}
.wsb1{word-spacing:0.836640px;}
.ws99{word-spacing:0.956160px;}
.wsc4{word-spacing:1.088640px;}
.ws29{word-spacing:1.126080px;}
.ws46{word-spacing:1.192320px;}
.ws22{word-spacing:1.324800px;}
.ws1b{word-spacing:1.457280px;}
.wsb7{word-spacing:1.553760px;}
.ws6a{word-spacing:1.854720px;}
.ws19{word-spacing:2.053440px;}
.ws18{word-spacing:2.185920px;}
.wsa5{word-spacing:2.211120px;}
.wsa3{word-spacing:2.390400px;}
.wsa1{word-spacing:2.689200px;}
.ws36{word-spacing:2.782080px;}
.wsa2{word-spacing:2.808720px;}
.ws37{word-spacing:2.914560px;}
.ws66{word-spacing:3.312000px;}
.ws12{word-spacing:3.444480px;}
.ws32{word-spacing:3.576960px;}
.ws51{word-spacing:3.643200px;}
.ws45{word-spacing:3.974400px;}
.ws63{word-spacing:4.040640px;}
.wse{word-spacing:4.173120px;}
.ws13{word-spacing:4.305600px;}
.wsd{word-spacing:4.901760px;}
.wsc{word-spacing:5.034240px;}
.ws40{word-spacing:5.431680px;}
.ws41{word-spacing:5.497920px;}
.ws42{word-spacing:5.630400px;}
.ws21{word-spacing:5.762880px;}
.ws79{word-spacing:5.795280px;}
.ws81{word-spacing:6.160320px;}
.ws9f{word-spacing:6.274800px;}
.ws7f{word-spacing:6.359040px;}
.ws20{word-spacing:6.491520px;}
.wsc1{word-spacing:6.513840px;}
.ws75{word-spacing:6.515280px;}
.ws1a{word-spacing:6.888960px;}
.ws14{word-spacing:7.087680px;}
.ws15{word-spacing:7.220160px;}
.ws25{word-spacing:7.617600px;}
.ws9d{word-spacing:7.768800px;}
.ws24{word-spacing:7.816320px;}
.ws5a{word-spacing:7.948800px;}
.ws4a{word-spacing:8.280000px;}
.wsb{word-spacing:8.478720px;}
.wsa{word-spacing:8.611200px;}
.ws5f{word-spacing:8.677440px;}
.wsad{word-spacing:8.724960px;}
.wsaf{word-spacing:8.904240px;}
.wsae{word-spacing:9.203040px;}
.ws27{word-spacing:9.207360px;}
.ws28{word-spacing:9.339840px;}
.ws2e{word-spacing:9.737280px;}
.ws4b{word-spacing:9.936000px;}
.ws2f{word-spacing:10.068480px;}
.wsb9{word-spacing:10.637280px;}
.ws2c{word-spacing:10.797120px;}
.wsb8{word-spacing:10.816560px;}
.wsba{word-spacing:11.055600px;}
.ws6d{word-spacing:11.525760px;}
.ws9b{word-spacing:11.593440px;}
.ws6f{word-spacing:11.923200px;}
.ws9c{word-spacing:12.071520px;}
.ws6e{word-spacing:12.121920px;}
.ws33{word-spacing:12.254400px;}
.ws49{word-spacing:12.651840px;}
.ws89{word-spacing:12.850560px;}
.ws34{word-spacing:12.983040px;}
.wsa8{word-spacing:13.505760px;}
.wsa7{word-spacing:13.685040px;}
.ws43{word-spacing:13.711680px;}
.wsa9{word-spacing:13.744800px;}
.wsbd{word-spacing:14.222880px;}
.ws44{word-spacing:14.374080px;}
.wsbe{word-spacing:14.940000px;}
.ws30{word-spacing:14.970240px;}
.ws48{word-spacing:15.102720px;}
.ws3e{word-spacing:15.698880px;}
.ws3f{word-spacing:15.831360px;}
.ws35{word-spacing:16.560000px;}
.wsbc{word-spacing:16.613280px;}
.ws88{word-spacing:16.957440px;}
.wsbb{word-spacing:17.091360px;}
.ws96{word-spacing:17.156160px;}
.ws11{word-spacing:17.884800px;}
.ws10{word-spacing:18.017280px;}
.wsb4{word-spacing:18.525600px;}
.ws87{word-spacing:18.613440px;}
.ws86{word-spacing:18.745920px;}
.ws17{word-spacing:19.474560px;}
.wsb5{word-spacing:19.959840px;}
.ws6c{word-spacing:20.004480px;}
.ws1f{word-spacing:20.136960px;}
.ws3d{word-spacing:20.733120px;}
.ws7c{word-spacing:20.836080px;}
.ws3c{word-spacing:20.865600px;}
.wsb6{word-spacing:21.453840px;}
.ws83{word-spacing:21.991680px;}
.ws84{word-spacing:22.322880px;}
.ws82{word-spacing:22.919040px;}
.ws1c{word-spacing:23.051520px;}
.ws1e{word-spacing:23.647680px;}
.ws1d{word-spacing:23.780160px;}
.ws47{word-spacing:24.508800px;}
.ws2b{word-spacing:25.038720px;}
.ws2a{word-spacing:25.171200px;}
.ws7d{word-spacing:26.046000px;}
.wsac{word-spacing:26.473680px;}
.wsab{word-spacing:26.712720px;}
.ws5c{word-spacing:31.662720px;}
.ws97{word-spacing:31.732560px;}
.ws5d{word-spacing:32.391360px;}
.ws8a{word-spacing:33.848640px;}
.ws8b{word-spacing:34.444800px;}
.ws31{word-spacing:34.577280px;}
.ws2{word-spacing:39.000011px;}
._22{margin-left:-27.754560px;}
._c{margin-left:-19.715760px;}
._24{margin-left:-11.404080px;}
._13{margin-left:-9.538560px;}
._14{margin-left:-7.021440px;}
._1d{margin-left:-4.305600px;}
._6{margin-left:-1.674000px;}
._2{width:1.668000px;}
._3{width:2.850000px;}
._8{width:4.762800px;}
._9{width:6.684000px;}
._1{width:8.124000px;}
._0{width:9.180000px;}
._e{width:10.760880px;}
._21{width:11.790720px;}
._12{width:14.006640px;}
._10{width:15.138720px;}
._27{width:16.548073px;}
._26{width:18.083520px;}
._a{width:19.402080px;}
._b{width:23.653680px;}
._11{width:24.882000px;}
._d{width:26.008320px;}
._15{width:31.927680px;}
._f{width:33.968880px;}
._5{width:35.999989px;}
._28{width:40.008631px;}
._19{width:41.106240px;}
._4{width:54.000001px;}
._2d{width:62.047200px;}
._23{width:70.374480px;}
._25{width:95.946240px;}
._20{width:100.817280px;}
._1b{width:106.176720px;}
._2b{width:109.681680px;}
._1e{width:124.285102px;}
._1c{width:155.430960px;}
._29{width:166.039310px;}
._16{width:171.305520px;}
._2c{width:176.130720px;}
._1a{width:190.638720px;}
._17{width:195.871680px;}
._18{width:197.196480px;}
._2a{width:207.863341px;}
._1f{width:209.259803px;}
._7{width:1455.084000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,139);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(88,88,88);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:45.360000px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fsb{font-size:69.823091px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fse{font-size:108.000000px;}
.y16c{bottom:-70.380150px;}
.y16b{bottom:-52.740150px;}
.y16a{bottom:-26.100000px;}
.y0{bottom:0.000000px;}
.y169{bottom:19.799850px;}
.y23{bottom:88.875000px;}
.y4{bottom:97.125005px;}
.y147{bottom:105.480000px;}
.y22{bottom:105.975001px;}
.y21{bottom:118.575000px;}
.y36{bottom:126.720000px;}
.y20{bottom:139.264499px;}
.y167{bottom:185.940000px;}
.yde{bottom:188.273520px;}
.y95{bottom:188.645040px;}
.y58{bottom:189.245520px;}
.y122{bottom:190.604880px;}
.y77{bottom:194.035680px;}
.y17{bottom:196.933500px;}
.y166{bottom:199.386000px;}
.yba{bottom:207.185760px;}
.y13f{bottom:207.828900px;}
.ydd{bottom:209.155680px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y57{bottom:210.127680px;}
.y121{bottom:211.669200px;}
.y165{bottom:215.046000px;}
.y76{bottom:215.100000px;}
.y94{bottom:218.519280px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y13e{bottom:225.114480px;}
.y102{bottom:227.519280px;}
.ydc{bottom:230.220000px;}
.y164{bottom:230.530500px;}
.y56{bottom:231.192000px;}
.y120{bottom:232.551360px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yb8{bottom:237.049920px;}
.yb9{bottom:240.643440px;}
.y13d{bottom:242.220780px;}
.y163{bottom:246.015000px;}
.ydb{bottom:247.320000px;}
.y93{bottom:248.392800px;}
.y75{bottom:249.480000px;}
.y55{bottom:252.256320px;}
.y11f{bottom:253.615680px;}
.yda{bottom:255.600000px;}
.y101{bottom:257.575680px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y162{bottom:261.499500px;}
.yb7{bottom:267.106320px;}
.y13c{bottom:268.500240px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y54{bottom:273.138480px;}
.y11e{bottom:274.680000px;}
.y161{bottom:277.159500px;}
.y92{bottom:278.631360px;}
.y100{bottom:278.640000px;}
.yd9{bottom:282.241440px;}
.y74{bottom:283.680000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y13b{bottom:285.785820px;}
.yb4{bottom:289.611360px;}
.y160{bottom:292.644000px;}
.yb6{bottom:292.674960px;}
.yb5{bottom:293.204880px;}
.y53{bottom:294.202800px;}
.y91{bottom:299.515680px;}
.yd8{bottom:303.653520px;}
.yff{bottom:307.254420px;}
.y15f{bottom:308.128500px;}
.y11d{bottom:309.240000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yb3{bottom:310.538160px;}
.y13a{bottom:312.065280px;}
.y52{bottom:315.267120px;}
.yfe{bottom:315.540000px;}
.y90{bottom:320.580000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y15e{bottom:323.613000px;}
.yd7{bottom:324.535680px;}
.y139{bottom:329.350860px;}
.y51{bottom:336.149280px;}
.y15d{bottom:339.273000px;}
.yb1{bottom:340.578000px;}
.yfb{bottom:344.874420px;}
.yfd{bottom:344.880000px;}
.yd6{bottom:345.600000px;}
.yb2{bottom:346.887360px;}
.ye{bottom:348.133500px;}
.y73{bottom:351.087120px;}
.yfa{bottom:353.160000px;}
.y15c{bottom:354.757500px;}
.y8f{bottom:355.140000px;}
.y138{bottom:355.451040px;}
.y50{bottom:357.213600px;}
.yfc{bottom:363.592800px;}
.y15b{bottom:370.242000px;}
.y72{bottom:372.151440px;}
.y137{bottom:372.736620px;}
.yb0{bottom:373.333680px;}
.yd5{bottom:374.214420px;}
.y11c{bottom:376.503120px;}
.y4f{bottom:378.277920px;}
.yd4{bottom:382.500000px;}
.yf8{bottom:385.194420px;}
.y15a{bottom:385.726500px;}
.yd{bottom:386.785499px;}
.y136{bottom:390.022200px;}
.y71{bottom:393.033600px;}
.yf9{bottom:393.480000px;}
.yaf{bottom:395.640000px;}
.y11b{bottom:397.567440px;}
.y4e{bottom:399.160080px;}
.y159{bottom:401.386500px;}
.yf7{bottom:403.200000px;}
.yc{bottom:408.044999px;}
.yd1{bottom:411.834420px;}
.yd3{bottom:411.840000px;}
.y8e{bottom:412.022160px;}
.y70{bottom:414.097920px;}
.y135{bottom:416.301660px;}
.y158{bottom:416.871000px;}
.y11a{bottom:418.449600px;}
.yd0{bottom:420.120000px;}
.y4d{bottom:420.224400px;}
.yae{bottom:421.194420px;}
.yf6{bottom:427.319280px;}
.yad{bottom:429.480000px;}
.yd2{bottom:430.552800px;}
.y157{bottom:432.355500px;}
.y8d{bottom:433.086480px;}
.y134{bottom:433.587240px;}
.y6f{bottom:435.162240px;}
.y119{bottom:439.513920px;}
.y4c{bottom:441.288720px;}
.y156{bottom:447.840000px;}
.y133{bottom:450.872820px;}
.ycf{bottom:452.154420px;}
.y6e{bottom:456.044400px;}
.yf5{bottom:457.203600px;}
.y8b{bottom:459.004860px;}
.y118{bottom:460.578240px;}
.yab{bottom:462.054420px;}
.y4b{bottom:462.170880px;}
.y155{bottom:463.863960px;}
.yce{bottom:470.160000px;}
.yaa{bottom:470.340000px;}
.y132{bottom:476.973000px;}
.y6d{bottom:477.108720px;}
.yac{bottom:480.772800px;}
.y117{bottom:481.460400px;}
.y8c{bottom:482.220000px;}
.y89{bottom:482.225040px;}
.y4a{bottom:483.235200px;}
.yf4{bottom:487.253520px;}
.y34{bottom:487.429500px;}
.y131{bottom:494.258580px;}
.ycd{bottom:494.285760px;}
.y6c{bottom:498.173040px;}
.y33{bottom:501.829501px;}
.ya9{bottom:502.374420px;}
.y116{bottom:502.524720px;}
.yb{bottom:502.864502px;}
.y49{bottom:504.299520px;}
.yf3{bottom:508.317840px;}
.y8a{bottom:508.680000px;}
.y154{bottom:517.140000px;}
.y6b{bottom:519.055200px;}
.ya8{bottom:520.380000px;}
.y130{bottom:520.538040px;}
.ya{bottom:520.864502px;}
.y115{bottom:523.589040px;}
.ycc{bottom:524.160000px;}
.ycb{bottom:524.169360px;}
.y48{bottom:525.181680px;}
.yf2{bottom:529.200000px;}
.y88{bottom:530.100000px;}
.y32{bottom:535.330497px;}
.y12f{bottom:537.823620px;}
.y9{bottom:538.864499px;}
.y6a{bottom:540.119520px;}
.y153{bottom:541.749420px;}
.ya7{bottom:544.319280px;}
.y114{bottom:544.471200px;}
.y47{bottom:546.246000px;}
.y87{bottom:550.982160px;}
.y31{bottom:553.330497px;}
.yca{bottom:554.225760px;}
.y8{bottom:556.864499px;}
.yf1{bottom:557.994420px;}
.y69{bottom:561.183840px;}
.y12e{bottom:564.103080px;}
.y113{bottom:565.535520px;}
.yf0{bottom:566.280000px;}
.y152{bottom:566.594640px;}
.y46{bottom:567.310320px;}
.y30{bottom:571.330497px;}
.y86{bottom:572.046480px;}
.ya6{bottom:574.199280px;}
.y12d{bottom:581.388660px;}
.y68{bottom:582.066000px;}
.y151{bottom:583.880220px;}
.yc9{bottom:584.100000px;}
.y112{bottom:586.599840px;}
.y45{bottom:588.192480px;}
.y84{bottom:597.964860px;}
.y2f{bottom:598.330500px;}
.yef{bottom:598.853520px;}
.y150{bottom:601.165800px;}
.y67{bottom:603.130320px;}
.ya5{bottom:604.437840px;}
.y111{bottom:607.482000px;}
.y12c{bottom:607.488840px;}
.y44{bottom:609.256800px;}
.yc8{bottom:614.700000px;}
.y2e{bottom:616.330500px;}
.yee{bottom:619.917840px;}
.y82{bottom:621.166320px;}
.y85{bottom:621.180000px;}
.y66{bottom:624.194640px;}
.y12b{bottom:624.774420px;}
.ya4{bottom:625.315680px;}
.y14f{bottom:625.831740px;}
.y110{bottom:628.546320px;}
.y43{bottom:630.321120px;}
.yc6{bottom:640.620720px;}
.yed{bottom:640.800000px;}
.y12a{bottom:642.060000px;}
.y2d{bottom:643.330511px;}
.y65{bottom:645.076800px;}
.y7{bottom:645.510000px;}
.ya3{bottom:646.380000px;}
.yc4{bottom:646.565760px;}
.yc7{bottom:647.460000px;}
.y83{bottom:647.640000px;}
.y10f{bottom:649.610640px;}
.y14e{bottom:650.676960px;}
.y42{bottom:651.203280px;}
.yc5{bottom:657.360000px;}
.y2c{bottom:661.330511px;}
.y64{bottom:666.141120px;}
.y6{bottom:666.771000px;}
.yec{bottom:667.086480px;}
.y14d{bottom:667.783260px;}
.y81{bottom:669.041280px;}
.y10e{bottom:670.492800px;}
.y41{bottom:672.267600px;}
.y129{bottom:673.380000px;}
.ya2{bottom:675.174420px;}
.yeb{bottom:675.360000px;}
.yc3{bottom:678.427200px;}
.y2b{bottom:679.330511px;}
.ya1{bottom:683.460000px;}
.y63{bottom:687.205440px;}
.y80{bottom:689.923440px;}
.y10d{bottom:691.557120px;}
.y14c{bottom:692.628480px;}
.y40{bottom:693.331920px;}
.y2a{bottom:697.330511px;}
.yc2{bottom:699.491520px;}
.y62{bottom:708.087600px;}
.yea{bottom:709.373520px;}
.y10c{bottom:712.621440px;}
.y3f{bottom:714.214080px;}
.y29{bottom:715.330511px;}
.ya0{bottom:716.040000px;}
.y14b{bottom:717.294420px;}
.y7f{bottom:719.797680px;}
.yc1{bottom:720.555840px;}
.y5{bottom:726.298500px;}
.y61{bottom:729.151920px;}
.ye9{bottom:730.255680px;}
.y28{bottom:733.330511px;}
.y10b{bottom:733.503600px;}
.y14a{bottom:734.580000px;}
.y3e{bottom:735.278400px;}
.y9f{bottom:736.915680px;}
.y128{bottom:740.148840px;}
.yc0{bottom:742.857840px;}
.y7e{bottom:750.036240px;}
.y60{bottom:750.216240px;}
.y27{bottom:751.292998px;}
.ye8{bottom:751.320000px;}
.y3{bottom:752.599495px;}
.y3d{bottom:756.342720px;}
.y149{bottom:757.080000px;}
.y127{bottom:757.434420px;}
.y9e{bottom:757.985430px;}
.y109{bottom:763.559130px;}
.ybf{bottom:763.740000px;}
.y9d{bottom:766.260000px;}
.y10a{bottom:767.152650px;}
.y7d{bottom:770.918400px;}
.y5f{bottom:771.098400px;}
.y126{bottom:774.720000px;}
.y3c{bottom:777.224880px;}
.ye7{bottom:777.606480px;}
.ye6{bottom:785.880000px;}
.y7c{bottom:791.982720px;}
.y5e{bottom:792.162720px;}
.y125{bottom:792.720000px;}
.y108{bottom:793.615530px;}
.y145{bottom:796.123470px;}
.y3b{bottom:798.289200px;}
.ybe{bottom:798.300000px;}
.y26{bottom:798.406504px;}
.y148{bottom:801.900000px;}
.y9c{bottom:806.934420px;}
.y124{bottom:813.047040px;}
.y5d{bottom:813.227040px;}
.y7b{bottom:813.229200px;}
.y9b{bottom:815.220000px;}
.y3a{bottom:819.353520px;}
.ye5{bottom:819.715680px;}
.y144{bottom:822.402930px;}
.y107{bottom:823.489770px;}
.y123{bottom:833.929200px;}
.y5c{bottom:834.109200px;}
.y7a{bottom:834.111360px;}
.y143{bottom:839.688510px;}
.y39{bottom:840.235680px;}
.ye4{bottom:840.780000px;}
.y99{bottom:844.734420px;}
.y25{bottom:846.580500px;}
.y98{bottom:853.019850px;}
.y106{bottom:853.546170px;}
.ybd{bottom:854.993520px;}
.y5b{bottom:855.173520px;}
.y79{bottom:855.175680px;}
.y38{bottom:861.300000px;}
.y9a{bottom:863.452650px;}
.y142{bottom:865.967970px;}
.ye3{bottom:867.064320px;}
.y168{bottom:873.900000px;}
.y103{bottom:876.051210px;}
.ybc{bottom:876.057840px;}
.y5a{bottom:876.237840px;}
.y78{bottom:876.240000px;}
.ye0{bottom:876.780000px;}
.y105{bottom:879.114810px;}
.y2{bottom:879.369000px;}
.y104{bottom:879.644730px;}
.ye2{bottom:881.100000px;}
.y141{bottom:883.253550px;}
.y97{bottom:885.054420px;}
.ye1{bottom:891.358410px;}
.ydf{bottom:894.780000px;}
.y37{bottom:895.679850px;}
.ybb{bottom:896.940000px;}
.y59{bottom:897.120000px;}
.y140{bottom:900.359850px;}
.y96{bottom:903.060000px;}
.y24{bottom:925.168500px;}
.y146{bottom:960.120000px;}
.y35{bottom:961.380000px;}
.y1{bottom:966.726000px;}
.h49{height:30.060000px;}
.h7{height:32.130000px;}
.ha{height:43.804688px;}
.h6{height:45.900000px;}
.h19{height:46.537363px;}
.h20{height:46.866094px;}
.h11{height:47.109375px;}
.h48{height:47.309062px;}
.h3{height:48.195000px;}
.h10{height:48.375000px;}
.h30{height:49.401200px;}
.hb{height:50.062500px;}
.h3b{height:52.814531px;}
.h43{height:52.998047px;}
.h2{height:55.080000px;}
.h15{height:56.320312px;}
.h46{height:58.621992px;}
.h14{height:58.651172px;}
.hf{height:58.886719px;}
.h41{height:60.226875px;}
.he{height:60.468750px;}
.h33{height:64.978594px;}
.h17{height:65.010937px;}
.h47{height:65.213258px;}
.h1e{height:65.529141px;}
.h32{height:66.757500px;}
.h45{height:70.628906px;}
.h36{height:70.664062px;}
.h39{height:70.814531px;}
.h4a{height:71.982422px;}
.h18{height:75.093750px;}
.h5{height:78.030000px;}
.h42{height:78.367500px;}
.h16{height:81.101250px;}
.hd{height:82.400391px;}
.h1c{height:89.980312px;}
.h1f{height:89.988981px;}
.h3f{height:89.994741px;}
.h40{height:90.009141px;}
.h2c{height:90.012021px;}
.h34{height:90.017781px;}
.h21{height:90.026421px;}
.h3e{height:90.035061px;}
.h22{height:90.037941px;}
.h31{height:90.046553px;}
.h1d{height:90.063861px;}
.h35{height:93.586101px;}
.h2a{height:98.109218px;}
.h1a{height:102.234712px;}
.hc{height:102.796875px;}
.h24{height:103.691992px;}
.h1b{height:104.354393px;}
.h27{height:104.409141px;}
.h25{height:104.409741px;}
.h44{height:108.843750px;}
.h38{height:109.694531px;}
.h29{height:111.133931px;}
.h4{height:119.055004px;}
.h3d{height:123.074392px;}
.h37{height:123.100312px;}
.h26{height:123.122033px;}
.h2e{height:123.122632px;}
.h28{height:123.150861px;}
.h2f{height:123.151461px;}
.h2b{height:123.154312px;}
.h23{height:123.188273px;}
.h2d{height:123.188873px;}
.h3c{height:136.993657px;}
.h3a{height:163.693931px;}
.h9{height:1062.750000px;}
.h8{height:1062.991500px;}
.h13{height:1092.750000px;}
.h12{height:1092.960000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:574.200000px;}
.w2{width:637.794021px;}
.w3{width:748.345500px;}
.w4{width:748.500000px;}
.w5{width:774.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:112.320000px;}
.x9{left:121.140000px;}
.x5{left:127.558500px;}
.x33{left:133.560000px;}
.x8{left:137.905200px;}
.xa{left:142.020000px;}
.x14{left:144.900000px;}
.x1e{left:146.894400px;}
.x32{left:148.551840px;}
.x11{left:168.842880px;}
.x25{left:183.960000px;}
.x13{left:188.104140px;}
.x15{left:199.440000px;}
.xe{left:202.320000px;}
.x4{left:203.484001px;}
.x16{left:208.440000px;}
.xf{left:211.140000px;}
.x27{left:212.758200px;}
.x12{left:217.450980px;}
.x1b{left:219.073680px;}
.x26{left:221.039640px;}
.xd{left:247.681440px;}
.x18{left:252.543600px;}
.xc{left:255.600000px;}
.xb{left:258.300000px;}
.x17{left:259.735320px;}
.x1f{left:263.880000px;}
.x10{left:265.315320px;}
.x20{left:271.800000px;}
.x36{left:287.100000px;}
.x28{left:332.469900px;}
.x29{left:333.736200px;}
.x2e{left:335.160000px;}
.x2c{left:365.040000px;}
.x21{left:390.960000px;}
.x19{left:398.160000px;}
.x35{left:421.020000px;}
.x2a{left:423.720000px;}
.x22{left:431.280000px;}
.x24{left:443.340000px;}
.x3{left:454.959000px;}
.x23{left:476.280000px;}
.x1c{left:489.769200px;}
.x30{left:497.355120px;}
.x1d{left:520.935120px;}
.x31{left:528.338880px;}
.x2d{left:537.660000px;}
.x6{left:581.580000px;}
.x1a{left:590.940000px;}
.x2f{left:631.980000px;}
.x2b{left:641.700000px;}
.x34{left:708.480000px;}
@media print{
.vb{vertical-align:-37.094400pt;}
.v15{vertical-align:-35.210240pt;}
.v11{vertical-align:-22.374400pt;}
.vf{vertical-align:-16.640000pt;}
.v4{vertical-align:-12.776960pt;}
.v2{vertical-align:-10.892800pt;}
.v10{vertical-align:-8.949760pt;}
.v7{vertical-align:-1.943040pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.991680pt;}
.v12{vertical-align:3.179520pt;}
.v14{vertical-align:5.122560pt;}
.v19{vertical-align:8.985600pt;}
.v1{vertical-align:10.892800pt;}
.v3{vertical-align:12.776960pt;}
.v16{vertical-align:16.000000pt;}
.v5{vertical-align:21.808640pt;}
.v13{vertical-align:24.939520pt;}
.v8{vertical-align:27.529707pt;}
.va{vertical-align:29.459307pt;}
.vd{vertical-align:31.379840pt;}
.v9{vertical-align:34.560533pt;}
.ve{vertical-align:35.839467pt;}
.vc{vertical-align:51.219307pt;}
.v18{vertical-align:63.984640pt;}
.v17{vertical-align:69.119467pt;}
.lsab{letter-spacing:-1.221760pt;}
.ls22{letter-spacing:-1.059840pt;}
.lsaa{letter-spacing:-1.009280pt;}
.ls18{letter-spacing:-1.000960pt;}
.ls3c{letter-spacing:-0.728960pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.647680pt;}
.lsae{letter-spacing:-0.645120pt;}
.ls3b{letter-spacing:-0.588800pt;}
.ls14{letter-spacing:-0.529920pt;}
.lsa8{letter-spacing:-0.424960pt;}
.ls17{letter-spacing:-0.412160pt;}
.lsa9{letter-spacing:-0.371840pt;}
.ls15{letter-spacing:-0.353280pt;}
.lsa7{letter-spacing:-0.318720pt;}
.ls19{letter-spacing:-0.294400pt;}
.ls70{letter-spacing:-0.257280pt;}
.ls7c{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.235520pt;}
.ls7f{letter-spacing:-0.207360pt;}
.ls3d{letter-spacing:-0.176640pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.117760pt;}
.lsa3{letter-spacing:-0.106240pt;}
.ls7e{letter-spacing:-0.085760pt;}
.ls24{letter-spacing:-0.069120pt;}
.lsa5{letter-spacing:-0.053120pt;}
.lsad{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000036pt;}
.ls90{letter-spacing:0.015360pt;}
.ls7d{letter-spacing:0.042880pt;}
.ls9d{letter-spacing:0.053120pt;}
.ls27{letter-spacing:0.058880pt;}
.lsa6{letter-spacing:0.069120pt;}
.ls40{letter-spacing:0.085760pt;}
.ls91{letter-spacing:0.092800pt;}
.ls92{letter-spacing:0.103680pt;}
.lsa4{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.117760pt;}
.ls26{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.128640pt;}
.ls35{letter-spacing:0.138240pt;}
.lsa1{letter-spacing:0.159360pt;}
.ls3f{letter-spacing:0.171520pt;}
.ls78{letter-spacing:0.176640pt;}
.ls13{letter-spacing:0.192000pt;}
.ls9c{letter-spacing:0.212480pt;}
.ls21{letter-spacing:0.235520pt;}
.ls9a{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.294400pt;}
.ls59{letter-spacing:0.300160pt;}
.ls9b{letter-spacing:0.318720pt;}
.lsac{letter-spacing:0.322560pt;}
.ls51{letter-spacing:0.343040pt;}
.ls2c{letter-spacing:0.412160pt;}
.lsb{letter-spacing:0.529920pt;}
.ls9e{letter-spacing:0.531200pt;}
.ls11{letter-spacing:0.647680pt;}
.ls4f{letter-spacing:0.728960pt;}
.ls46{letter-spacing:0.765440pt;}
.ls85{letter-spacing:0.771840pt;}
.lsa0{letter-spacing:0.796800pt;}
.lsa2{letter-spacing:0.849920pt;}
.ls8d{letter-spacing:0.942080pt;}
.ls41{letter-spacing:0.986240pt;}
.ls2f{letter-spacing:1.059840pt;}
.ls56{letter-spacing:1.118720pt;}
.ls6c{letter-spacing:1.236480pt;}
.ls30{letter-spacing:1.295360pt;}
.ls54{letter-spacing:1.372160pt;}
.ls2d{letter-spacing:1.413120pt;}
.ls86{letter-spacing:1.586560pt;}
.ls52{letter-spacing:1.598720pt;}
.ls50{letter-spacing:1.629440pt;}
.ls4e{letter-spacing:1.637760pt;}
.ls6{letter-spacing:1.648640pt;}
.ls2e{letter-spacing:1.707520pt;}
.ls7{letter-spacing:1.766400pt;}
.ls5b{letter-spacing:1.884160pt;}
.ls53{letter-spacing:1.917440pt;}
.lsa{letter-spacing:1.943040pt;}
.ls2b{letter-spacing:2.001920pt;}
.ls82{letter-spacing:2.060800pt;}
.ls89{letter-spacing:2.237440pt;}
.ls5c{letter-spacing:2.355200pt;}
.ls12{letter-spacing:2.414080pt;}
.ls6f{letter-spacing:2.449920pt;}
.ls99{letter-spacing:2.531840pt;}
.ls5d{letter-spacing:2.936320pt;}
.ls5f{letter-spacing:2.969600pt;}
.ls67{letter-spacing:2.974720pt;}
.ls93{letter-spacing:2.990080pt;}
.ls8c{letter-spacing:3.025920pt;}
.ls74{letter-spacing:3.448320pt;}
.ls6e{letter-spacing:3.548160pt;}
.ls71{letter-spacing:3.558400pt;}
.ls94{letter-spacing:3.822080pt;}
.ls28{letter-spacing:3.827200pt;}
.ls69{letter-spacing:3.829760pt;}
.ls75{letter-spacing:3.850240pt;}
.ls36{letter-spacing:3.863040pt;}
.ls76{letter-spacing:3.901440pt;}
.ls4b{letter-spacing:3.919360pt;}
.ls7a{letter-spacing:3.932800pt;}
.ls6a{letter-spacing:4.239360pt;}
.ls1d{letter-spacing:4.474880pt;}
.ls4c{letter-spacing:4.651520pt;}
.ls4d{letter-spacing:4.997120pt;}
.ls1b{letter-spacing:5.063680pt;}
.ls1a{letter-spacing:5.122560pt;}
.ls8b{letter-spacing:5.711360pt;}
.ls9{letter-spacing:5.770240pt;}
.ls5{letter-spacing:6.417920pt;}
.ls81{letter-spacing:6.947840pt;}
.lsd{letter-spacing:7.065600pt;}
.ls20{letter-spacing:7.654400pt;}
.lse{letter-spacing:8.302080pt;}
.ls10{letter-spacing:8.949760pt;}
.ls68{letter-spacing:9.067520pt;}
.ls79{letter-spacing:9.479680pt;}
.ls65{letter-spacing:9.597440pt;}
.ls5a{letter-spacing:9.701120pt;}
.ls6b{letter-spacing:9.715200pt;}
.ls98{letter-spacing:11.540480pt;}
.ls38{letter-spacing:12.070400pt;}
.ls88{letter-spacing:12.364800pt;}
.ls43{letter-spacing:12.600320pt;}
.ls44{letter-spacing:12.659200pt;}
.ls1c{letter-spacing:12.776960pt;}
.ls39{letter-spacing:12.953600pt;}
.ls31{letter-spacing:13.306880pt;}
.ls96{letter-spacing:13.483520pt;}
.ls87{letter-spacing:15.249920pt;}
.ls60{letter-spacing:15.450240pt;}
.ls8f{letter-spacing:15.469440pt;}
.ls77{letter-spacing:15.472640pt;}
.ls83{letter-spacing:15.897600pt;}
.ls4{letter-spacing:16.015360pt;}
.ls7b{letter-spacing:16.074240pt;}
.ls4a{letter-spacing:16.093440pt;}
.ls61{letter-spacing:16.112640pt;}
.ls45{letter-spacing:16.115840pt;}
.ls42{letter-spacing:16.122240pt;}
.ls2a{letter-spacing:16.192000pt;}
.ls64{letter-spacing:16.427520pt;}
.ls34{letter-spacing:16.486400pt;}
.ls57{letter-spacing:16.545280pt;}
.ls84{letter-spacing:16.614400pt;}
.ls95{letter-spacing:16.663040pt;}
.ls72{letter-spacing:17.251840pt;}
.lsc{letter-spacing:17.899520pt;}
.ls5e{letter-spacing:18.017280pt;}
.ls37{letter-spacing:18.664960pt;}
.ls6d{letter-spacing:18.959360pt;}
.ls97{letter-spacing:20.254720pt;}
.ls1e{letter-spacing:21.137920pt;}
.lsf{letter-spacing:22.374400pt;}
.ls48{letter-spacing:23.669760pt;}
.ls29{letter-spacing:26.260480pt;}
.ls33{letter-spacing:28.792320pt;}
.ls63{letter-spacing:36.006400pt;}
.ls8e{letter-spacing:36.661760pt;}
.ls49{letter-spacing:39.846400pt;}
.ls80{letter-spacing:43.696640pt;}
.ls55{letter-spacing:46.008960pt;}
.ls58{letter-spacing:47.470080pt;}
.ls73{letter-spacing:48.693760pt;}
.ls9f{letter-spacing:92.322560pt;}
.ls1f{letter-spacing:98.688000pt;}
.ls2{letter-spacing:142.732800pt;}
.ls8a{letter-spacing:176.463360pt;}
.ls66{letter-spacing:272.614400pt;}
.ls62{letter-spacing:348.805120pt;}
.ls47{letter-spacing:363.525120pt;}
.ws4f{word-spacing:-58.880000pt;}
.ws53{word-spacing:-58.703360pt;}
.ws57{word-spacing:-43.051520pt;}
.ws74{word-spacing:-43.008640pt;}
.ws58{word-spacing:-42.965760pt;}
.ws71{word-spacing:-42.922880pt;}
.ws54{word-spacing:-42.880000pt;}
.ws72{word-spacing:-42.794240pt;}
.ws61{word-spacing:-42.622720pt;}
.ws52{word-spacing:-42.151040pt;}
.ws64{word-spacing:-34.560000pt;}
.ws7a{word-spacing:-34.352640pt;}
.ws69{word-spacing:-28.187520pt;}
.ws85{word-spacing:-27.244160pt;}
.ws8d{word-spacing:-17.349120pt;}
.ws55{word-spacing:-16.192000pt;}
.ws3b{word-spacing:-16.128000pt;}
.ws56{word-spacing:-15.872000pt;}
.ws3a{word-spacing:-15.296000pt;}
.ws8{word-spacing:-15.014400pt;}
.ws67{word-spacing:-14.955520pt;}
.ws6{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws39{word-spacing:-14.602240pt;}
.ws68{word-spacing:-14.425600pt;}
.ws5{word-spacing:-14.366720pt;}
.ws62{word-spacing:-14.307840pt;}
.ws9{word-spacing:-14.190080pt;}
.ws7{word-spacing:-14.072320pt;}
.ws38{word-spacing:-13.719040pt;}
.ws93{word-spacing:-13.598720pt;}
.ws3{word-spacing:-13.536000pt;}
.ws91{word-spacing:-13.386240pt;}
.ws8f{word-spacing:-13.280000pt;}
.ws95{word-spacing:-13.226880pt;}
.ws8c{word-spacing:-13.173760pt;}
.ws8e{word-spacing:-12.961280pt;}
.ws50{word-spacing:-12.953600pt;}
.ws90{word-spacing:-12.908160pt;}
.ws94{word-spacing:-12.855040pt;}
.ws92{word-spacing:-12.270720pt;}
.wsbf{word-spacing:-11.208960pt;}
.wsc0{word-spacing:-10.563840pt;}
.ws1{word-spacing:-10.378667pt;}
.ws65{word-spacing:-9.433600pt;}
.ws7b{word-spacing:-3.238400pt;}
.wsb3{word-spacing:-0.796800pt;}
.ws60{word-spacing:-0.765440pt;}
.ws70{word-spacing:-0.647680pt;}
.wsa4{word-spacing:-0.318720pt;}
.ws5e{word-spacing:-0.294400pt;}
.wsc3{word-spacing:-0.282240pt;}
.ws80{word-spacing:-0.186195pt;}
.ws6b{word-spacing:-0.176640pt;}
.ws9e{word-spacing:-0.159360pt;}
.ws77{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.117760pt;}
.ws98{word-spacing:-0.106240pt;}
.ws7e{word-spacing:-0.103680pt;}
.ws4e{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.053120pt;}
.ws4d{word-spacing:0.069120pt;}
.wsa0{word-spacing:0.106240pt;}
.ws4c{word-spacing:0.117760pt;}
.ws78{word-spacing:0.207360pt;}
.ws9a{word-spacing:0.212480pt;}
.ws59{word-spacing:0.235520pt;}
.ws76{word-spacing:0.256000pt;}
.ws2d{word-spacing:0.294400pt;}
.wsa6{word-spacing:0.318720pt;}
.ws73{word-spacing:0.353280pt;}
.wsc2{word-spacing:0.362880pt;}
.ws23{word-spacing:0.412160pt;}
.wsaa{word-spacing:0.478080pt;}
.wsf{word-spacing:0.529920pt;}
.ws5b{word-spacing:0.588800pt;}
.ws26{word-spacing:0.647680pt;}
.wsb2{word-spacing:0.690560pt;}
.wsb1{word-spacing:0.743680pt;}
.ws99{word-spacing:0.849920pt;}
.wsc4{word-spacing:0.967680pt;}
.ws29{word-spacing:1.000960pt;}
.ws46{word-spacing:1.059840pt;}
.ws22{word-spacing:1.177600pt;}
.ws1b{word-spacing:1.295360pt;}
.wsb7{word-spacing:1.381120pt;}
.ws6a{word-spacing:1.648640pt;}
.ws19{word-spacing:1.825280pt;}
.ws18{word-spacing:1.943040pt;}
.wsa5{word-spacing:1.965440pt;}
.wsa3{word-spacing:2.124800pt;}
.wsa1{word-spacing:2.390400pt;}
.ws36{word-spacing:2.472960pt;}
.wsa2{word-spacing:2.496640pt;}
.ws37{word-spacing:2.590720pt;}
.ws66{word-spacing:2.944000pt;}
.ws12{word-spacing:3.061760pt;}
.ws32{word-spacing:3.179520pt;}
.ws51{word-spacing:3.238400pt;}
.ws45{word-spacing:3.532800pt;}
.ws63{word-spacing:3.591680pt;}
.wse{word-spacing:3.709440pt;}
.ws13{word-spacing:3.827200pt;}
.wsd{word-spacing:4.357120pt;}
.wsc{word-spacing:4.474880pt;}
.ws40{word-spacing:4.828160pt;}
.ws41{word-spacing:4.887040pt;}
.ws42{word-spacing:5.004800pt;}
.ws21{word-spacing:5.122560pt;}
.ws79{word-spacing:5.151360pt;}
.ws81{word-spacing:5.475840pt;}
.ws9f{word-spacing:5.577600pt;}
.ws7f{word-spacing:5.652480pt;}
.ws20{word-spacing:5.770240pt;}
.wsc1{word-spacing:5.790080pt;}
.ws75{word-spacing:5.791360pt;}
.ws1a{word-spacing:6.123520pt;}
.ws14{word-spacing:6.300160pt;}
.ws15{word-spacing:6.417920pt;}
.ws25{word-spacing:6.771200pt;}
.ws9d{word-spacing:6.905600pt;}
.ws24{word-spacing:6.947840pt;}
.ws5a{word-spacing:7.065600pt;}
.ws4a{word-spacing:7.360000pt;}
.wsb{word-spacing:7.536640pt;}
.wsa{word-spacing:7.654400pt;}
.ws5f{word-spacing:7.713280pt;}
.wsad{word-spacing:7.755520pt;}
.wsaf{word-spacing:7.914880pt;}
.wsae{word-spacing:8.180480pt;}
.ws27{word-spacing:8.184320pt;}
.ws28{word-spacing:8.302080pt;}
.ws2e{word-spacing:8.655360pt;}
.ws4b{word-spacing:8.832000pt;}
.ws2f{word-spacing:8.949760pt;}
.wsb9{word-spacing:9.455360pt;}
.ws2c{word-spacing:9.597440pt;}
.wsb8{word-spacing:9.614720pt;}
.wsba{word-spacing:9.827200pt;}
.ws6d{word-spacing:10.245120pt;}
.ws9b{word-spacing:10.305280pt;}
.ws6f{word-spacing:10.598400pt;}
.ws9c{word-spacing:10.730240pt;}
.ws6e{word-spacing:10.775040pt;}
.ws33{word-spacing:10.892800pt;}
.ws49{word-spacing:11.246080pt;}
.ws89{word-spacing:11.422720pt;}
.ws34{word-spacing:11.540480pt;}
.wsa8{word-spacing:12.005120pt;}
.wsa7{word-spacing:12.164480pt;}
.ws43{word-spacing:12.188160pt;}
.wsa9{word-spacing:12.217600pt;}
.wsbd{word-spacing:12.642560pt;}
.ws44{word-spacing:12.776960pt;}
.wsbe{word-spacing:13.280000pt;}
.ws30{word-spacing:13.306880pt;}
.ws48{word-spacing:13.424640pt;}
.ws3e{word-spacing:13.954560pt;}
.ws3f{word-spacing:14.072320pt;}
.ws35{word-spacing:14.720000pt;}
.wsbc{word-spacing:14.767360pt;}
.ws88{word-spacing:15.073280pt;}
.wsbb{word-spacing:15.192320pt;}
.ws96{word-spacing:15.249920pt;}
.ws11{word-spacing:15.897600pt;}
.ws10{word-spacing:16.015360pt;}
.wsb4{word-spacing:16.467200pt;}
.ws87{word-spacing:16.545280pt;}
.ws86{word-spacing:16.663040pt;}
.ws17{word-spacing:17.310720pt;}
.wsb5{word-spacing:17.742080pt;}
.ws6c{word-spacing:17.781760pt;}
.ws1f{word-spacing:17.899520pt;}
.ws3d{word-spacing:18.429440pt;}
.ws7c{word-spacing:18.520960pt;}
.ws3c{word-spacing:18.547200pt;}
.wsb6{word-spacing:19.070080pt;}
.ws83{word-spacing:19.548160pt;}
.ws84{word-spacing:19.842560pt;}
.ws82{word-spacing:20.372480pt;}
.ws1c{word-spacing:20.490240pt;}
.ws1e{word-spacing:21.020160pt;}
.ws1d{word-spacing:21.137920pt;}
.ws47{word-spacing:21.785600pt;}
.ws2b{word-spacing:22.256640pt;}
.ws2a{word-spacing:22.374400pt;}
.ws7d{word-spacing:23.152000pt;}
.wsac{word-spacing:23.532160pt;}
.wsab{word-spacing:23.744640pt;}
.ws5c{word-spacing:28.144640pt;}
.ws97{word-spacing:28.206720pt;}
.ws5d{word-spacing:28.792320pt;}
.ws8a{word-spacing:30.087680pt;}
.ws8b{word-spacing:30.617600pt;}
.ws31{word-spacing:30.735360pt;}
.ws2{word-spacing:34.666676pt;}
._22{margin-left:-24.670720pt;}
._c{margin-left:-17.525120pt;}
._24{margin-left:-10.136960pt;}
._13{margin-left:-8.478720pt;}
._14{margin-left:-6.241280pt;}
._1d{margin-left:-3.827200pt;}
._6{margin-left:-1.488000pt;}
._2{width:1.482667pt;}
._3{width:2.533333pt;}
._8{width:4.233600pt;}
._9{width:5.941333pt;}
._1{width:7.221333pt;}
._0{width:8.160000pt;}
._e{width:9.565227pt;}
._21{width:10.480640pt;}
._12{width:12.450347pt;}
._10{width:13.456640pt;}
._27{width:14.709398pt;}
._26{width:16.074240pt;}
._a{width:17.246293pt;}
._b{width:21.025493pt;}
._11{width:22.117333pt;}
._d{width:23.118507pt;}
._15{width:28.380160pt;}
._f{width:30.194560pt;}
._5{width:31.999990pt;}
._28{width:35.563228pt;}
._19{width:36.538880pt;}
._4{width:48.000001pt;}
._2d{width:55.153067pt;}
._23{width:62.555093pt;}
._25{width:85.285547pt;}
._20{width:89.615360pt;}
._1b{width:94.379307pt;}
._2b{width:97.494827pt;}
._1e{width:110.475646pt;}
._1c{width:138.160853pt;}
._29{width:147.590498pt;}
._16{width:152.271573pt;}
._2c{width:156.560640pt;}
._1a{width:169.456640pt;}
._17{width:174.108160pt;}
._18{width:175.285760pt;}
._2a{width:184.767414pt;}
._1f{width:186.008714pt;}
._7{width:1293.408000pt;}
.fsd{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:40.320000pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fsb{font-size:62.064970pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fse{font-size:96.000000pt;}
.y16c{bottom:-62.560133pt;}
.y16b{bottom:-46.880133pt;}
.y16a{bottom:-23.200000pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:17.599867pt;}
.y23{bottom:79.000000pt;}
.y4{bottom:86.333337pt;}
.y147{bottom:93.760000pt;}
.y22{bottom:94.200001pt;}
.y21{bottom:105.400000pt;}
.y36{bottom:112.640000pt;}
.y20{bottom:123.790666pt;}
.y167{bottom:165.280000pt;}
.yde{bottom:167.354240pt;}
.y95{bottom:167.684480pt;}
.y58{bottom:168.218240pt;}
.y122{bottom:169.426560pt;}
.y77{bottom:172.476160pt;}
.y17{bottom:175.052000pt;}
.y166{bottom:177.232000pt;}
.yba{bottom:184.165120pt;}
.y13f{bottom:184.736800pt;}
.ydd{bottom:185.916160pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y57{bottom:186.780160pt;}
.y121{bottom:188.150400pt;}
.y165{bottom:191.152000pt;}
.y76{bottom:191.200000pt;}
.y94{bottom:194.239360pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y13e{bottom:200.101760pt;}
.y102{bottom:202.239360pt;}
.ydc{bottom:204.640000pt;}
.y164{bottom:204.916000pt;}
.y56{bottom:205.504000pt;}
.y120{bottom:206.712320pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yb8{bottom:210.711040pt;}
.yb9{bottom:213.905280pt;}
.y13d{bottom:215.307360pt;}
.y163{bottom:218.680000pt;}
.ydb{bottom:219.840000pt;}
.y93{bottom:220.793600pt;}
.y75{bottom:221.760000pt;}
.y55{bottom:224.227840pt;}
.y11f{bottom:225.436160pt;}
.yda{bottom:227.200000pt;}
.y101{bottom:228.956160pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y162{bottom:232.444000pt;}
.yb7{bottom:237.427840pt;}
.y13c{bottom:238.666880pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y54{bottom:242.789760pt;}
.y11e{bottom:244.160000pt;}
.y161{bottom:246.364000pt;}
.y92{bottom:247.672320pt;}
.y100{bottom:247.680000pt;}
.yd9{bottom:250.881280pt;}
.y74{bottom:252.160000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y13b{bottom:254.031840pt;}
.yb4{bottom:257.432320pt;}
.y160{bottom:260.128000pt;}
.yb6{bottom:260.155520pt;}
.yb5{bottom:260.626560pt;}
.y53{bottom:261.513600pt;}
.y91{bottom:266.236160pt;}
.yd8{bottom:269.914240pt;}
.yff{bottom:273.115040pt;}
.y15f{bottom:273.892000pt;}
.y11d{bottom:274.880000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yb3{bottom:276.033920pt;}
.y13a{bottom:277.391360pt;}
.y52{bottom:280.237440pt;}
.yfe{bottom:280.480000pt;}
.y90{bottom:284.960000pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y15e{bottom:287.656000pt;}
.yd7{bottom:288.476160pt;}
.y139{bottom:292.756320pt;}
.y51{bottom:298.799360pt;}
.y15d{bottom:301.576000pt;}
.yb1{bottom:302.736000pt;}
.yfb{bottom:306.555040pt;}
.yfd{bottom:306.560000pt;}
.yd6{bottom:307.200000pt;}
.yb2{bottom:308.344320pt;}
.ye{bottom:309.452000pt;}
.y73{bottom:312.077440pt;}
.yfa{bottom:313.920000pt;}
.y15c{bottom:315.340000pt;}
.y8f{bottom:315.680000pt;}
.y138{bottom:315.956480pt;}
.y50{bottom:317.523200pt;}
.yfc{bottom:323.193600pt;}
.y15b{bottom:329.104000pt;}
.y72{bottom:330.801280pt;}
.y137{bottom:331.321440pt;}
.yb0{bottom:331.852160pt;}
.yd5{bottom:332.635040pt;}
.y11c{bottom:334.669440pt;}
.y4f{bottom:336.247040pt;}
.yd4{bottom:340.000000pt;}
.yf8{bottom:342.395040pt;}
.y15a{bottom:342.868000pt;}
.yd{bottom:343.809333pt;}
.y136{bottom:346.686400pt;}
.y71{bottom:349.363200pt;}
.yf9{bottom:349.760000pt;}
.yaf{bottom:351.680000pt;}
.y11b{bottom:353.393280pt;}
.y4e{bottom:354.808960pt;}
.y159{bottom:356.788000pt;}
.yf7{bottom:358.400000pt;}
.yc{bottom:362.706666pt;}
.yd1{bottom:366.075040pt;}
.yd3{bottom:366.080000pt;}
.y8e{bottom:366.241920pt;}
.y70{bottom:368.087040pt;}
.y135{bottom:370.045920pt;}
.y158{bottom:370.552000pt;}
.y11a{bottom:371.955200pt;}
.yd0{bottom:373.440000pt;}
.y4d{bottom:373.532800pt;}
.yae{bottom:374.395040pt;}
.yf6{bottom:379.839360pt;}
.yad{bottom:381.760000pt;}
.yd2{bottom:382.713600pt;}
.y157{bottom:384.316000pt;}
.y8d{bottom:384.965760pt;}
.y134{bottom:385.410880pt;}
.y6f{bottom:386.810880pt;}
.y119{bottom:390.679040pt;}
.y4c{bottom:392.256640pt;}
.y156{bottom:398.080000pt;}
.y133{bottom:400.775840pt;}
.ycf{bottom:401.915040pt;}
.y6e{bottom:405.372800pt;}
.yf5{bottom:406.403200pt;}
.y8b{bottom:408.004320pt;}
.y118{bottom:409.402880pt;}
.yab{bottom:410.715040pt;}
.y4b{bottom:410.818560pt;}
.y155{bottom:412.323520pt;}
.yce{bottom:417.920000pt;}
.yaa{bottom:418.080000pt;}
.y132{bottom:423.976000pt;}
.y6d{bottom:424.096640pt;}
.yac{bottom:427.353600pt;}
.y117{bottom:427.964800pt;}
.y8c{bottom:428.640000pt;}
.y89{bottom:428.644480pt;}
.y4a{bottom:429.542400pt;}
.yf4{bottom:433.114240pt;}
.y34{bottom:433.270667pt;}
.y131{bottom:439.340960pt;}
.ycd{bottom:439.365120pt;}
.y6c{bottom:442.820480pt;}
.y33{bottom:446.070667pt;}
.ya9{bottom:446.555040pt;}
.y116{bottom:446.688640pt;}
.yb{bottom:446.990669pt;}
.y49{bottom:448.266240pt;}
.yf3{bottom:451.838080pt;}
.y8a{bottom:452.160000pt;}
.y154{bottom:459.680000pt;}
.y6b{bottom:461.382400pt;}
.ya8{bottom:462.560000pt;}
.y130{bottom:462.700480pt;}
.ya{bottom:462.990669pt;}
.y115{bottom:465.412480pt;}
.ycc{bottom:465.920000pt;}
.ycb{bottom:465.928320pt;}
.y48{bottom:466.828160pt;}
.yf2{bottom:470.400000pt;}
.y88{bottom:471.200000pt;}
.y32{bottom:475.849331pt;}
.y12f{bottom:478.065440pt;}
.y9{bottom:478.990666pt;}
.y6a{bottom:480.106240pt;}
.y153{bottom:481.555040pt;}
.ya7{bottom:483.839360pt;}
.y114{bottom:483.974400pt;}
.y47{bottom:485.552000pt;}
.y87{bottom:489.761920pt;}
.y31{bottom:491.849331pt;}
.yca{bottom:492.645120pt;}
.y8{bottom:494.990666pt;}
.yf1{bottom:495.995040pt;}
.y69{bottom:498.830080pt;}
.y12e{bottom:501.424960pt;}
.y113{bottom:502.698240pt;}
.yf0{bottom:503.360000pt;}
.y152{bottom:503.639680pt;}
.y46{bottom:504.275840pt;}
.y30{bottom:507.849331pt;}
.y86{bottom:508.485760pt;}
.ya6{bottom:510.399360pt;}
.y12d{bottom:516.789920pt;}
.y68{bottom:517.392000pt;}
.y151{bottom:519.004640pt;}
.yc9{bottom:519.200000pt;}
.y112{bottom:521.422080pt;}
.y45{bottom:522.837760pt;}
.y84{bottom:531.524320pt;}
.y2f{bottom:531.849333pt;}
.yef{bottom:532.314240pt;}
.y150{bottom:534.369600pt;}
.y67{bottom:536.115840pt;}
.ya5{bottom:537.278080pt;}
.y111{bottom:539.984000pt;}
.y12c{bottom:539.990080pt;}
.y44{bottom:541.561600pt;}
.yc8{bottom:546.400000pt;}
.y2e{bottom:547.849333pt;}
.yee{bottom:551.038080pt;}
.y82{bottom:552.147840pt;}
.y85{bottom:552.160000pt;}
.y66{bottom:554.839680pt;}
.y12b{bottom:555.355040pt;}
.ya4{bottom:555.836160pt;}
.y14f{bottom:556.294880pt;}
.y110{bottom:558.707840pt;}
.y43{bottom:560.285440pt;}
.yc6{bottom:569.440640pt;}
.yed{bottom:569.600000pt;}
.y12a{bottom:570.720000pt;}
.y2d{bottom:571.849343pt;}
.y65{bottom:573.401600pt;}
.y7{bottom:573.786667pt;}
.ya3{bottom:574.560000pt;}
.yc4{bottom:574.725120pt;}
.yc7{bottom:575.520000pt;}
.y83{bottom:575.680000pt;}
.y10f{bottom:577.431680pt;}
.y14e{bottom:578.379520pt;}
.y42{bottom:578.847360pt;}
.yc5{bottom:584.320000pt;}
.y2c{bottom:587.849343pt;}
.y64{bottom:592.125440pt;}
.y6{bottom:592.685334pt;}
.yec{bottom:592.965760pt;}
.y14d{bottom:593.585120pt;}
.y81{bottom:594.703360pt;}
.y10e{bottom:595.993600pt;}
.y41{bottom:597.571200pt;}
.y129{bottom:598.560000pt;}
.ya2{bottom:600.155040pt;}
.yeb{bottom:600.320000pt;}
.yc3{bottom:603.046400pt;}
.y2b{bottom:603.849343pt;}
.ya1{bottom:607.520000pt;}
.y63{bottom:610.849280pt;}
.y80{bottom:613.265280pt;}
.y10d{bottom:614.717440pt;}
.y14c{bottom:615.669760pt;}
.y40{bottom:616.295040pt;}
.y2a{bottom:619.849343pt;}
.yc2{bottom:621.770240pt;}
.y62{bottom:629.411200pt;}
.yea{bottom:630.554240pt;}
.y10c{bottom:633.441280pt;}
.y3f{bottom:634.856960pt;}
.y29{bottom:635.849343pt;}
.ya0{bottom:636.480000pt;}
.y14b{bottom:637.595040pt;}
.y7f{bottom:639.820160pt;}
.yc1{bottom:640.494080pt;}
.y5{bottom:645.598667pt;}
.y61{bottom:648.135040pt;}
.ye9{bottom:649.116160pt;}
.y28{bottom:651.849343pt;}
.y10b{bottom:652.003200pt;}
.y14a{bottom:652.960000pt;}
.y3e{bottom:653.580800pt;}
.y9f{bottom:655.036160pt;}
.y128{bottom:657.910080pt;}
.yc0{bottom:660.318080pt;}
.y7e{bottom:666.698880pt;}
.y60{bottom:666.858880pt;}
.y27{bottom:667.815998pt;}
.ye8{bottom:667.840000pt;}
.y3{bottom:668.977329pt;}
.y3d{bottom:672.304640pt;}
.y149{bottom:672.960000pt;}
.y127{bottom:673.275040pt;}
.y9e{bottom:673.764827pt;}
.y109{bottom:678.719227pt;}
.ybf{bottom:678.880000pt;}
.y9d{bottom:681.120000pt;}
.y10a{bottom:681.913467pt;}
.y7d{bottom:685.260800pt;}
.y5f{bottom:685.420800pt;}
.y126{bottom:688.640000pt;}
.y3c{bottom:690.866560pt;}
.ye7{bottom:691.205760pt;}
.ye6{bottom:698.560000pt;}
.y7c{bottom:703.984640pt;}
.y5e{bottom:704.144640pt;}
.y125{bottom:704.640000pt;}
.y108{bottom:705.436027pt;}
.y145{bottom:707.665307pt;}
.y3b{bottom:709.590400pt;}
.ybe{bottom:709.600000pt;}
.y26{bottom:709.694670pt;}
.y148{bottom:712.800000pt;}
.y9c{bottom:717.275040pt;}
.y124{bottom:722.708480pt;}
.y5d{bottom:722.868480pt;}
.y7b{bottom:722.870400pt;}
.y9b{bottom:724.640000pt;}
.y3a{bottom:728.314240pt;}
.ye5{bottom:728.636160pt;}
.y144{bottom:731.024827pt;}
.y107{bottom:731.990907pt;}
.y123{bottom:741.270400pt;}
.y5c{bottom:741.430400pt;}
.y7a{bottom:741.432320pt;}
.y143{bottom:746.389787pt;}
.y39{bottom:746.876160pt;}
.ye4{bottom:747.360000pt;}
.y99{bottom:750.875040pt;}
.y25{bottom:752.516000pt;}
.y98{bottom:758.239867pt;}
.y106{bottom:758.707707pt;}
.ybd{bottom:759.994240pt;}
.y5b{bottom:760.154240pt;}
.y79{bottom:760.156160pt;}
.y38{bottom:765.600000pt;}
.y9a{bottom:767.513467pt;}
.y142{bottom:769.749307pt;}
.ye3{bottom:770.723840pt;}
.y168{bottom:776.800000pt;}
.y103{bottom:778.712187pt;}
.ybc{bottom:778.718080pt;}
.y5a{bottom:778.878080pt;}
.y78{bottom:778.880000pt;}
.ye0{bottom:779.360000pt;}
.y105{bottom:781.435387pt;}
.y2{bottom:781.661334pt;}
.y104{bottom:781.906427pt;}
.ye2{bottom:783.200000pt;}
.y141{bottom:785.114267pt;}
.y97{bottom:786.715040pt;}
.ye1{bottom:792.318587pt;}
.ydf{bottom:795.360000pt;}
.y37{bottom:796.159867pt;}
.ybb{bottom:797.280000pt;}
.y59{bottom:797.440000pt;}
.y140{bottom:800.319867pt;}
.y96{bottom:802.720000pt;}
.y24{bottom:822.372000pt;}
.y146{bottom:853.440000pt;}
.y35{bottom:854.560000pt;}
.y1{bottom:859.312000pt;}
.h49{height:26.720000pt;}
.h7{height:28.560000pt;}
.ha{height:38.937500pt;}
.h6{height:40.800000pt;}
.h19{height:41.366545pt;}
.h20{height:41.658750pt;}
.h11{height:41.875000pt;}
.h48{height:42.052500pt;}
.h3{height:42.840000pt;}
.h10{height:43.000000pt;}
.h30{height:43.912178pt;}
.hb{height:44.500000pt;}
.h3b{height:46.946250pt;}
.h43{height:47.109375pt;}
.h2{height:48.960000pt;}
.h15{height:50.062500pt;}
.h46{height:52.108438pt;}
.h14{height:52.134375pt;}
.hf{height:52.343750pt;}
.h41{height:53.535000pt;}
.he{height:53.750000pt;}
.h33{height:57.758750pt;}
.h17{height:57.787500pt;}
.h47{height:57.967340pt;}
.h1e{height:58.248125pt;}
.h32{height:59.340000pt;}
.h45{height:62.781250pt;}
.h36{height:62.812500pt;}
.h39{height:62.946250pt;}
.h4a{height:63.984375pt;}
.h18{height:66.750000pt;}
.h5{height:69.360000pt;}
.h42{height:69.660000pt;}
.h16{height:72.090000pt;}
.hd{height:73.244792pt;}
.h1c{height:79.982500pt;}
.h1f{height:79.990205pt;}
.h3f{height:79.995325pt;}
.h40{height:80.008125pt;}
.h2c{height:80.010685pt;}
.h34{height:80.015805pt;}
.h21{height:80.023485pt;}
.h3e{height:80.031165pt;}
.h22{height:80.033725pt;}
.h31{height:80.041380pt;}
.h1d{height:80.056765pt;}
.h35{height:83.187645pt;}
.h2a{height:87.208193pt;}
.h1a{height:90.875300pt;}
.hc{height:91.375000pt;}
.h24{height:92.170660pt;}
.h1b{height:92.759460pt;}
.h27{height:92.808125pt;}
.h25{height:92.808658pt;}
.h44{height:96.750000pt;}
.h38{height:97.506250pt;}
.h29{height:98.785717pt;}
.h4{height:105.826671pt;}
.h3d{height:109.399460pt;}
.h37{height:109.422500pt;}
.h26{height:109.441807pt;}
.h2e{height:109.442340pt;}
.h28{height:109.467432pt;}
.h2f{height:109.467965pt;}
.h2b{height:109.470500pt;}
.h23{height:109.500687pt;}
.h2d{height:109.501220pt;}
.h3c{height:121.772140pt;}
.h3a{height:145.505717pt;}
.h9{height:944.666667pt;}
.h8{height:944.881333pt;}
.h13{height:971.333333pt;}
.h12{height:971.520000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:510.400000pt;}
.w2{width:566.928019pt;}
.w3{width:665.196000pt;}
.w4{width:665.333333pt;}
.w5{width:688.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:99.840000pt;}
.x9{left:107.680000pt;}
.x5{left:113.385333pt;}
.x33{left:118.720000pt;}
.x8{left:122.582400pt;}
.xa{left:126.240000pt;}
.x14{left:128.800000pt;}
.x1e{left:130.572800pt;}
.x32{left:132.046080pt;}
.x11{left:150.082560pt;}
.x25{left:163.520000pt;}
.x13{left:167.203680pt;}
.x15{left:177.280000pt;}
.xe{left:179.840000pt;}
.x4{left:180.874667pt;}
.x16{left:185.280000pt;}
.xf{left:187.680000pt;}
.x27{left:189.118400pt;}
.x12{left:193.289760pt;}
.x1b{left:194.732160pt;}
.x26{left:196.479680pt;}
.xd{left:220.161280pt;}
.x18{left:224.483200pt;}
.xc{left:227.200000pt;}
.xb{left:229.600000pt;}
.x17{left:230.875840pt;}
.x1f{left:234.560000pt;}
.x10{left:235.835840pt;}
.x20{left:241.600000pt;}
.x36{left:255.200000pt;}
.x28{left:295.528800pt;}
.x29{left:296.654400pt;}
.x2e{left:297.920000pt;}
.x2c{left:324.480000pt;}
.x21{left:347.520000pt;}
.x19{left:353.920000pt;}
.x35{left:374.240000pt;}
.x2a{left:376.640000pt;}
.x22{left:383.360000pt;}
.x24{left:394.080000pt;}
.x3{left:404.408000pt;}
.x23{left:423.360000pt;}
.x1c{left:435.350400pt;}
.x30{left:442.093440pt;}
.x1d{left:463.053440pt;}
.x31{left:469.634560pt;}
.x2d{left:477.920000pt;}
.x6{left:516.960000pt;}
.x1a{left:525.280000pt;}
.x2f{left:561.760000pt;}
.x2b{left:570.400000pt;}
.x34{left:629.760000pt;}
}




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