
    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_000b43d1cf5f63fe2d741c55.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f07093ff31fb4dbdbca51447.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2bf4dad76d2d99233d4f20d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_5d1e3d7820a2515b7822755f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_95ba6599612fd6e6c09997c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6a98a3c28dfbffefa90203b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_106b29ac9afd5a73b3d8a9e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c2404db3aef0d03db09ea136.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d45856906aacff47d4ccc832.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_cc82a95e06d31b88891b8ea9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f937ceb4f9b094d8288e5eb6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9c0b768e9529d66a6b5d5ee7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a04b7740c1f0d67e4d99e190.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c2f44e426c0f9678d9f1bc54.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_63a74b61b1fc79eccef90923.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d80cb13233a887fc4b053929.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e4728f4414bedc22a9e356bb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2a344273821ccdf8e141beb3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d80cb13233a887fc4b053929.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e4728f4414bedc22a9e356bb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d96dad89c21d0e84510a51a1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2477537c25ac0ca8e2f5c506.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_0e08dab65f5d683b74568a73.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3d1c1b21068229b42f633754.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_038fff727e738aa355130792.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.262314,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.262314,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.262314,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262314,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v6{vertical-align:-2.352000px;}
.v3{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v9{vertical-align:4.895550px;}
.v8{vertical-align:10.645775px;}
.v7{vertical-align:22.579200px;}
.v5{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls13{letter-spacing:-5.520000px;}
.ls8d{letter-spacing:-4.560000px;}
.ls2c{letter-spacing:-4.440000px;}
.ls2a{letter-spacing:-4.140000px;}
.ls54{letter-spacing:-3.840000px;}
.ls45{letter-spacing:-3.660000px;}
.ls46{letter-spacing:-3.240000px;}
.ls2b{letter-spacing:-3.120000px;}
.lsae{letter-spacing:-2.832000px;}
.lsb0{letter-spacing:-2.640000px;}
.ls8b{letter-spacing:-2.040000px;}
.ls75{letter-spacing:-1.902367px;}
.ls61{letter-spacing:-1.776000px;}
.ls71{letter-spacing:-1.391976px;}
.ls11{letter-spacing:-0.780000px;}
.ls77{letter-spacing:-0.420000px;}
.ls47{letter-spacing:-0.381402px;}
.ls62{letter-spacing:-0.336000px;}
.ls78{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.240000px;}
.lsad{letter-spacing:-0.192000px;}
.ls40{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.135000px;}
.ls8c{letter-spacing:-0.120000px;}
.lsaf{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.060000px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls55{letter-spacing:0.034980px;}
.ls74{letter-spacing:0.046265px;}
.ls9d{letter-spacing:0.048000px;}
.ls51{letter-spacing:0.053999px;}
.ls44{letter-spacing:0.054486px;}
.ls52{letter-spacing:0.054776px;}
.ls72{letter-spacing:0.056925px;}
.ls79{letter-spacing:0.057596px;}
.ls28{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.067873px;}
.ls73{letter-spacing:0.092530px;}
.ls53{letter-spacing:0.095999px;}
.ls97{letter-spacing:0.096000px;}
.ls48{letter-spacing:0.096864px;}
.ls3{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.180000px;}
.ls94{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.240000px;}
.ls84{letter-spacing:0.288000px;}
.ls4f{letter-spacing:0.293996px;}
.ls1d{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.336000px;}
.ls35{letter-spacing:0.360000px;}
.ls96{letter-spacing:0.384000px;}
.ls22{letter-spacing:0.420000px;}
.ls98{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.490200px;}
.ls3e{letter-spacing:0.504600px;}
.ls1c{letter-spacing:0.510600px;}
.lsaa{letter-spacing:0.528000px;}
.ls3b{letter-spacing:0.540000px;}
.ls42{letter-spacing:0.558600px;}
.ls90{letter-spacing:0.576000px;}
.ls4c{letter-spacing:0.600000px;}
.lsa0{letter-spacing:0.624000px;}
.ls33{letter-spacing:0.660000px;}
.ls91{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls9a{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.780000px;}
.ls9c{letter-spacing:0.816000px;}
.lsa{letter-spacing:0.840000px;}
.ls86{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.960000px;}
.ls9b{letter-spacing:1.008000px;}
.ls4d{letter-spacing:1.020000px;}
.ls95{letter-spacing:1.056000px;}
.ls8{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.104000px;}
.ls1e{letter-spacing:1.140000px;}
.lsa6{letter-spacing:1.152000px;}
.ls70{letter-spacing:1.159980px;}
.ls26{letter-spacing:1.200000px;}
.ls8f{letter-spacing:1.248000px;}
.ls2d{letter-spacing:1.260000px;}
.ls93{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.lsc{letter-spacing:1.340400px;}
.ls92{letter-spacing:1.344000px;}
.ls21{letter-spacing:1.380000px;}
.ls83{letter-spacing:1.392000px;}
.ls18{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.560000px;}
.ls99{letter-spacing:1.584000px;}
.ls4b{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.680000px;}
.ls23{letter-spacing:1.740000px;}
.lse{letter-spacing:1.800000px;}
.lsac{letter-spacing:1.824000px;}
.lsa3{letter-spacing:1.872000px;}
.ls20{letter-spacing:1.920000px;}
.ls9{letter-spacing:1.980000px;}
.lsa8{letter-spacing:2.016000px;}
.ls7b{letter-spacing:2.040000px;}
.ls36{letter-spacing:2.100000px;}
.lsa7{letter-spacing:2.112000px;}
.ls17{letter-spacing:2.160000px;}
.lsa2{letter-spacing:2.208000px;}
.ls37{letter-spacing:2.220000px;}
.lsb{letter-spacing:2.280000px;}
.ls3c{letter-spacing:2.340000px;}
.ls2f{letter-spacing:2.400000px;}
.ls4a{letter-spacing:2.460000px;}
.ls19{letter-spacing:2.520000px;}
.ls6{letter-spacing:2.580000px;}
.ls16{letter-spacing:2.640000px;}
.ls9e{letter-spacing:2.688000px;}
.ls63{letter-spacing:2.700000px;}
.ls43{letter-spacing:2.760000px;}
.lsa9{letter-spacing:2.832000px;}
.lsa4{letter-spacing:2.928000px;}
.ls76{letter-spacing:2.940000px;}
.ls34{letter-spacing:3.000000px;}
.ls41{letter-spacing:3.060000px;}
.ls8a{letter-spacing:3.168000px;}
.ls4e{letter-spacing:3.180000px;}
.ls38{letter-spacing:3.240000px;}
.lsa5{letter-spacing:3.264000px;}
.ls39{letter-spacing:3.300000px;}
.lsab{letter-spacing:3.312000px;}
.ls25{letter-spacing:3.360000px;}
.ls7{letter-spacing:3.420000px;}
.ls3f{letter-spacing:3.480000px;}
.ls7a{letter-spacing:3.540000px;}
.ls7d{letter-spacing:3.720000px;}
.ls24{letter-spacing:3.840000px;}
.ls7f{letter-spacing:3.900000px;}
.ls7c{letter-spacing:4.140000px;}
.ls32{letter-spacing:4.200000px;}
.ls85{letter-spacing:4.224000px;}
.ls89{letter-spacing:4.320000px;}
.lsf{letter-spacing:4.440000px;}
.ls88{letter-spacing:4.704000px;}
.ls3d{letter-spacing:5.160000px;}
.lsa1{letter-spacing:5.280000px;}
.ls64{letter-spacing:6.300000px;}
.ls9f{letter-spacing:6.672000px;}
.ls8e{letter-spacing:6.960000px;}
.ls82{letter-spacing:7.620000px;}
.ls7e{letter-spacing:8.520000px;}
.ls80{letter-spacing:8.820000px;}
.ls81{letter-spacing:11.940000px;}
.ls66{letter-spacing:55.029451px;}
.ls67{letter-spacing:57.256613px;}
.ls65{letter-spacing:57.442210px;}
.ls1{letter-spacing:59.532876px;}
.ls6e{letter-spacing:64.030483px;}
.ls6c{letter-spacing:64.261807px;}
.ls6b{letter-spacing:66.158664px;}
.ls6d{letter-spacing:66.389988px;}
.ls69{letter-spacing:124.402472px;}
.ls6f{letter-spacing:127.820026px;}
.ls56{letter-spacing:180.048000px;}
.ls60{letter-spacing:181.989600px;}
.ls5e{letter-spacing:182.771304px;}
.ls58{letter-spacing:182.880600px;}
.ls5f{letter-spacing:185.924904px;}
.ls68{letter-spacing:188.348334px;}
.ls5c{letter-spacing:194.770704px;}
.ls59{letter-spacing:194.771304px;}
.ls5b{letter-spacing:195.661704px;}
.ls5a{letter-spacing:201.312000px;}
.ls57{letter-spacing:221.924304px;}
.ls5d{letter-spacing:221.924904px;}
.ls49{letter-spacing:254.838181px;}
.ls6a{letter-spacing:647.863425px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws47{word-spacing:-48.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws9f{word-spacing:-20.220000px;}
.wsb8{word-spacing:-18.672000px;}
.ws8d{word-spacing:-17.940000px;}
.ws45{word-spacing:-17.520000px;}
.ws2e{word-spacing:-17.280000px;}
.ws10{word-spacing:-16.968300px;}
.ws3{word-spacing:-16.680000px;}
.ws9e{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.440000px;}
.ws7e{word-spacing:-16.320000px;}
.ws9d{word-spacing:-16.260000px;}
.ws44{word-spacing:-15.960000px;}
.ws14{word-spacing:-15.420000px;}
.ws8e{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.240000px;}
.ws69{word-spacing:-15.180000px;}
.wsa1{word-spacing:-15.168000px;}
.ws46{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.000000px;}
.ws64{word-spacing:-13.693950px;}
.ws4e{word-spacing:-13.675986px;}
.ws4d{word-spacing:-13.621500px;}
.ws63{word-spacing:-13.499850px;}
.wsb4{word-spacing:-13.440000px;}
.ws8{word-spacing:-13.344000px;}
.wsb7{word-spacing:-13.296000px;}
.wsb9{word-spacing:-12.720000px;}
.ws7{word-spacing:-12.510000px;}
.wsb5{word-spacing:-12.432000px;}
.wsa0{word-spacing:-12.288000px;}
.ws48{word-spacing:-12.108000px;}
.wsb6{word-spacing:-12.000000px;}
.ws5e{word-spacing:-11.999850px;}
.wsb3{word-spacing:-11.904000px;}
.ws90{word-spacing:-11.884050px;}
.ws81{word-spacing:-11.599800px;}
.ws83{word-spacing:-11.566200px;}
.ws1{word-spacing:-10.210662px;}
.wsba{word-spacing:-9.360000px;}
.wsb2{word-spacing:-9.168000px;}
.ws6{word-spacing:-8.745000px;}
.ws2{word-spacing:-7.293330px;}
.wsab{word-spacing:-6.960000px;}
.wsa5{word-spacing:-3.840000px;}
.wsa9{word-spacing:-3.720000px;}
.ws3b{word-spacing:-3.300000px;}
.ws71{word-spacing:-3.180000px;}
.ws95{word-spacing:-2.940000px;}
.wsa{word-spacing:-2.886000px;}
.wscd{word-spacing:-2.832000px;}
.ws57{word-spacing:-2.760000px;}
.wsac{word-spacing:-2.700000px;}
.ws9c{word-spacing:-2.640000px;}
.ws2b{word-spacing:-2.220000px;}
.ws16{word-spacing:-2.160000px;}
.ws25{word-spacing:-1.920000px;}
.wsc8{word-spacing:-1.872000px;}
.ws6f{word-spacing:-1.620000px;}
.wsa8{word-spacing:-1.560000px;}
.ws22{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.320000px;}
.wsc6{word-spacing:-1.296000px;}
.ws94{word-spacing:-1.260000px;}
.ws58{word-spacing:-1.200000px;}
.ws88{word-spacing:-1.159980px;}
.wscb{word-spacing:-1.152000px;}
.wsb0{word-spacing:-1.104000px;}
.wsbf{word-spacing:-1.056000px;}
.ws98{word-spacing:-0.960000px;}
.ws59{word-spacing:-0.900000px;}
.ws97{word-spacing:-0.840000px;}
.wsbe{word-spacing:-0.816000px;}
.ws54{word-spacing:-0.780000px;}
.wscc{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.660000px;}
.wsc7{word-spacing:-0.624000px;}
.wsc1{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.420000px;}
.wsc2{word-spacing:-0.384000px;}
.ws86{word-spacing:-0.360000px;}
.ws6b{word-spacing:-0.336000px;}
.ws20{word-spacing:-0.300000px;}
.ws6a{word-spacing:-0.293996px;}
.wsae{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.180000px;}
.ws3a{word-spacing:-0.120000px;}
.ws5d{word-spacing:-0.096864px;}
.wsc3{word-spacing:-0.096000px;}
.ws6d{word-spacing:-0.095999px;}
.ws8b{word-spacing:-0.092530px;}
.ws15{word-spacing:-0.067873px;}
.ws7b{word-spacing:-0.060000px;}
.ws8a{word-spacing:-0.056925px;}
.ws6c{word-spacing:-0.054776px;}
.ws5c{word-spacing:-0.054486px;}
.ws8f{word-spacing:-0.048799px;}
.ws4c{word-spacing:-0.048432px;}
.ws60{word-spacing:-0.048000px;}
.ws8c{word-spacing:-0.046265px;}
.ws49{word-spacing:-0.042378px;}
.ws5f{word-spacing:-0.041999px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.060000px;}
.wsbc{word-spacing:0.096000px;}
.ws85{word-spacing:0.120000px;}
.wscf{word-spacing:0.144000px;}
.ws3d{word-spacing:0.180000px;}
.wsa6{word-spacing:0.240000px;}
.ws43{word-spacing:0.300000px;}
.ws87{word-spacing:0.336000px;}
.ws1a{word-spacing:0.480000px;}
.ws1c{word-spacing:0.540000px;}
.ws9b{word-spacing:0.576000px;}
.ws41{word-spacing:0.600000px;}
.ws36{word-spacing:0.720000px;}
.wsc4{word-spacing:0.816000px;}
.ws2a{word-spacing:0.900000px;}
.ws39{word-spacing:0.960000px;}
.ws17{word-spacing:1.140000px;}
.wsaa{word-spacing:1.200000px;}
.wsb1{word-spacing:1.296000px;}
.ws99{word-spacing:1.320000px;}
.ws37{word-spacing:1.380000px;}
.ws89{word-spacing:1.391976px;}
.wsce{word-spacing:1.440000px;}
.wsa4{word-spacing:1.560000px;}
.ws1d{word-spacing:1.620000px;}
.wsc5{word-spacing:1.632000px;}
.ws72{word-spacing:1.740000px;}
.ws40{word-spacing:1.800000px;}
.wsbd{word-spacing:1.824000px;}
.ws38{word-spacing:1.860000px;}
.ws93{word-spacing:1.920000px;}
.wsa2{word-spacing:2.040000px;}
.wsc0{word-spacing:2.064000px;}
.wsc9{word-spacing:2.304000px;}
.ws2d{word-spacing:2.340000px;}
.ws3f{word-spacing:2.400000px;}
.ws2f{word-spacing:2.460000px;}
.ws92{word-spacing:2.580000px;}
.ws5a{word-spacing:2.760000px;}
.ws6e{word-spacing:2.820000px;}
.ws7c{word-spacing:2.868360px;}
.wsbb{word-spacing:2.928000px;}
.ws96{word-spacing:3.000000px;}
.ws1e{word-spacing:3.060000px;}
.ws26{word-spacing:3.120000px;}
.ws3c{word-spacing:3.180000px;}
.ws5b{word-spacing:3.216000px;}
.ws31{word-spacing:3.240000px;}
.ws7d{word-spacing:3.360000px;}
.ws30{word-spacing:3.420000px;}
.wsd0{word-spacing:3.456000px;}
.wsca{word-spacing:3.504000px;}
.ws19{word-spacing:3.540000px;}
.ws9a{word-spacing:3.552000px;}
.wsa7{word-spacing:3.600000px;}
.ws55{word-spacing:3.660000px;}
.ws53{word-spacing:3.720000px;}
.ws35{word-spacing:3.780000px;}
.ws56{word-spacing:3.840000px;}
.ws74{word-spacing:3.888000px;}
.ws4f{word-spacing:3.922992px;}
.wsaf{word-spacing:3.936000px;}
.ws3e{word-spacing:3.960000px;}
.wsad{word-spacing:3.984000px;}
.ws1b{word-spacing:4.020000px;}
.wsf{word-spacing:4.080000px;}
.ws21{word-spacing:4.140000px;}
.wsa3{word-spacing:4.200000px;}
.ws73{word-spacing:4.320000px;}
.ws42{word-spacing:4.380000px;}
.ws2c{word-spacing:4.440000px;}
.ws1f{word-spacing:4.500000px;}
.ws33{word-spacing:4.560000px;}
.ws34{word-spacing:4.620000px;}
.ws18{word-spacing:4.740000px;}
.ws7a{word-spacing:4.800000px;}
.ws28{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.ws24{word-spacing:5.160000px;}
.wsb{word-spacing:5.520000px;}
.ws82{word-spacing:58.045399px;}
.ws84{word-spacing:62.920128px;}
.ws66{word-spacing:92.590843px;}
.ws65{word-spacing:93.358833px;}
.ws68{word-spacing:124.866000px;}
.ws52{word-spacing:128.786742px;}
.ws67{word-spacing:133.938000px;}
.ws51{word-spacing:134.465394px;}
.ws75{word-spacing:145.392000px;}
.ws76{word-spacing:166.656000px;}
.ws77{word-spacing:187.200000px;}
.ws4b{word-spacing:237.766920px;}
.ws4a{word-spacing:237.844992px;}
.ws62{word-spacing:254.782981px;}
.ws61{word-spacing:254.787181px;}
.ws50{word-spacing:258.675312px;}
.ws79{word-spacing:296.160000px;}
.ws78{word-spacing:300.624000px;}
.ws91{word-spacing:431.961449px;}
.ws11{word-spacing:558.189197px;}
.ws80{word-spacing:608.304000px;}
.ws7f{word-spacing:612.768000px;}
._b{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._e{margin-left:-1206.382770px;}
._2a{margin-left:-1196.577351px;}
._10{margin-left:-1177.333488px;}
._29{margin-left:-1105.907712px;}
._f{margin-left:-1084.162428px;}
._5b{margin-left:-591.683025px;}
._5a{margin-left:-574.213126px;}
._22{margin-left:-522.902142px;}
._1b{margin-left:-520.062816px;}
._32{margin-left:-517.541178px;}
._38{margin-left:-510.513990px;}
._28{margin-left:-200.575074px;}
._20{margin-left:-196.888188px;}
._36{margin-left:-195.804000px;}
._59{margin-left:-55.191217px;}
._2{margin-left:-9.241800px;}
._5{margin-left:-7.500000px;}
._5e{margin-left:-6.432000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.990000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.134000px;}
._7{width:1.056000px;}
._9{width:2.112000px;}
._a{width:3.930000px;}
._c{width:4.950000px;}
._6{width:6.042000px;}
._8{width:7.620000px;}
._58{width:8.910000px;}
._17{width:10.364448px;}
._5d{width:12.810000px;}
._53{width:79.493011px;}
._54{width:81.952169px;}
._56{width:87.394207px;}
._57{width:89.522388px;}
._52{width:94.004779px;}
._55{width:99.839438px;}
._30{width:105.739601px;}
._16{width:107.131584px;}
._15{width:110.037504px;}
._2d{width:111.838602px;}
._34{width:132.255438px;}
._1d{width:133.321188px;}
._24{width:134.846796px;}
._19{width:136.838562px;}
._3a{width:138.185124px;}
._1e{width:139.211730px;}
._35{width:140.382270px;}
._1f{width:141.584898px;}
._25{width:142.898616px;}
._1a{width:143.915688px;}
._26{width:146.415990px;}
._21{width:150.272388px;}
._49{width:167.616000px;}
._3e{width:180.000000px;}
._41{width:182.724000px;}
._42{width:195.304800px;}
._43{width:201.312000px;}
._40{width:203.616000px;}
._2b{width:255.020812px;}
._2e{width:257.756778px;}
._45{width:265.392000px;}
._2c{width:269.877747px;}
._13{width:271.509792px;}
._2f{width:273.119663px;}
._11{width:274.415712px;}
._12{width:275.868672px;}
._14{width:280.227552px;}
._37{width:287.070000px;}
._31{width:293.622000px;}
._18{width:294.908502px;}
._27{width:296.179842px;}
._4c{width:344.451498px;}
._3c{width:356.742000px;}
._3f{width:420.048000px;}
._48{width:432.048000px;}
._44{width:439.734000px;}
._5c{width:445.604339px;}
._47{width:466.704000px;}
._46{width:501.408000px;}
._3b{width:510.966000px;}
._4a{width:513.360000px;}
._3d{width:550.704000px;}
._39{width:618.534000px;}
._4f{width:620.304000px;}
._33{width:629.160000px;}
._50{width:630.528000px;}
._1c{width:632.152626px;}
._23{width:635.203842px;}
._4e{width:653.424000px;}
._4b{width:732.864000px;}
._51{width:852.144000px;}
._4d{width:869.472000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs17{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs1a{font-size:35.604600px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs13{font-size:41.999400px;}
.fs0{font-size:42.000000px;}
.fsf{font-size:42.378000px;}
.fs1b{font-size:42.640200px;}
.fs6{font-size:45.000000px;}
.fs1d{font-size:46.264800px;}
.fs18{font-size:46.399200px;}
.fsd{font-size:47.490600px;}
.fs22{font-size:47.536200px;}
.fs12{font-size:47.999400px;}
.fsa{font-size:48.000000px;}
.fse{font-size:48.432000px;}
.fs1e{font-size:48.798600px;}
.fs19{font-size:49.676400px;}
.fs21{font-size:50.261400px;}
.fs14{font-size:53.999400px;}
.fs16{font-size:54.000000px;}
.fs10{font-size:54.486000px;}
.fs15{font-size:54.775800px;}
.fs11{font-size:54.789000px;}
.fs1c{font-size:56.925000px;}
.fs1f{font-size:57.595800px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:61.146600px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:67.873200px;}
.fs1{font-size:78.000000px;}
.fs20{font-size:86.286000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y195{bottom:83.635350px;}
.ya2{bottom:83.673000px;}
.y9c{bottom:83.912100px;}
.y81{bottom:83.920350px;}
.y5d{bottom:84.109800px;}
.y165{bottom:84.936750px;}
.y1aa{bottom:86.121900px;}
.y2c{bottom:88.026750px;}
.y13a{bottom:92.336100px;}
.ya1{bottom:99.417000px;}
.y164{bottom:100.680750px;}
.y1a9{bottom:101.121900px;}
.y124{bottom:101.591850px;}
.y194{bottom:101.635350px;}
.y9b{bottom:101.912100px;}
.y80{bottom:101.920350px;}
.y2b{bottom:103.023000px;}
.y139{bottom:108.584100px;}
.y1a8{bottom:116.121900px;}
.y163{bottom:116.424750px;}
.y123{bottom:117.843900px;}
.y193{bottom:119.635350px;}
.y9a{bottom:119.912100px;}
.y7f{bottom:119.920350px;}
.yeb{bottom:124.410207px;}
.y138{bottom:124.832100px;}
.y1a7{bottom:131.121900px;}
.yb8{bottom:131.912400px;}
.y122{bottom:134.095800px;}
.y3a{bottom:136.497271px;}
.y192{bottom:137.635350px;}
.y99{bottom:137.912100px;}
.y7e{bottom:137.920350px;}
.yf0{bottom:140.301150px;}
.y137{bottom:141.080100px;}
.y1a6{bottom:146.121900px;}
.y174{bottom:146.613900px;}
.y121{bottom:150.347850px;}
.ydb{bottom:150.844050px;}
.ye1{bottom:150.854550px;}
.yc9{bottom:151.453350px;}
.y191{bottom:155.635350px;}
.y98{bottom:155.912100px;}
.y7d{bottom:155.920350px;}
.y136{bottom:157.328100px;}
.y16c{bottom:158.132781px;}
.y1a5{bottom:161.121900px;}
.y5e{bottom:163.932900px;}
.ybf{bottom:164.307505px;}
.yb9{bottom:164.318100px;}
.y120{bottom:166.599750px;}
.y28{bottom:169.128750px;}
.y135{bottom:173.576100px;}
.y190{bottom:173.635350px;}
.y97{bottom:173.912100px;}
.y7c{bottom:173.920350px;}
.y1a4{bottom:176.121900px;}
.y166{bottom:176.651850px;}
.ye2{bottom:177.902163px;}
.y11f{bottom:182.851800px;}
.ydc{bottom:183.435584px;}
.y1e5{bottom:185.263500px;}
.y27{bottom:187.128750px;}
.yc0{bottom:189.448254px;}
.y134{bottom:189.824100px;}
.y1a3{bottom:191.121900px;}
.y18f{bottom:191.635350px;}
.y96{bottom:191.912100px;}
.y7b{bottom:191.920350px;}
.yba{bottom:194.120428px;}
.y11e{bottom:199.107450px;}
.y1e4{bottom:200.263500px;}
.y26{bottom:205.128750px;}
.ye3{bottom:205.432770px;}
.y175{bottom:206.044050px;}
.y133{bottom:206.072100px;}
.y1a2{bottom:206.121900px;}
.y167{bottom:208.846726px;}
.y18e{bottom:209.635350px;}
.y95{bottom:209.912100px;}
.y7a{bottom:209.920350px;}
.yc1{bottom:214.112250px;}
.y1e3{bottom:215.263500px;}
.ydd{bottom:215.964120px;}
.y34{bottom:216.813000px;}
.y1a1{bottom:221.121900px;}
.y132{bottom:222.320100px;}
.y25{bottom:223.128750px;}
.ybb{bottom:224.335943px;}
.y18d{bottom:227.635350px;}
.y94{bottom:227.912100px;}
.y79{bottom:227.920350px;}
.y11d{bottom:228.111450px;}
.y1e2{bottom:230.263500px;}
.y39{bottom:232.249388px;}
.ye4{bottom:232.543383px;}
.y30{bottom:233.882700px;}
.y1a0{bottom:236.121900px;}
.y131{bottom:238.568100px;}
.yc2{bottom:239.252998px;}
.y16e{bottom:240.928409px;}
.y168{bottom:241.090401px;}
.y24{bottom:241.128750px;}
.y1e1{bottom:245.263500px;}
.y18c{bottom:245.635350px;}
.y93{bottom:245.912100px;}
.y78{bottom:245.920350px;}
.yde{bottom:249.038647px;}
.y19f{bottom:251.121900px;}
.ybc{bottom:254.138271px;}
.y130{bottom:254.816100px;}
.y11c{bottom:257.123250px;}
.y16d{bottom:258.192750px;}
.y23{bottom:259.128750px;}
.ye5{bottom:259.590996px;}
.y1e0{bottom:260.263500px;}
.y18b{bottom:263.635350px;}
.y92{bottom:263.912100px;}
.y77{bottom:263.920350px;}
.yc3{bottom:264.330180px;}
.y19e{bottom:266.121900px;}
.y35{bottom:267.770414px;}
.y12f{bottom:271.064100px;}
.y169{bottom:274.200251px;}
.y1df{bottom:275.263500px;}
.y22{bottom:277.128750px;}
.ydf{bottom:281.567183px;}
.y18a{bottom:281.635350px;}
.y91{bottom:281.912100px;}
.y76{bottom:281.920350px;}
.ybd{bottom:284.417352px;}
.y11b{bottom:286.127250px;}
.ye6{bottom:287.121603px;}
.yc4{bottom:289.068337px;}
.y1de{bottom:290.263500px;}
.y170{bottom:293.513374px;}
.y2a{bottom:295.128750px;}
.y37{bottom:298.342488px;}
.y19d{bottom:299.230350px;}
.y189{bottom:299.635350px;}
.y75{bottom:299.920350px;}
.y12e{bottom:302.576100px;}
.y1dd{bottom:305.263500px;}
.y16a{bottom:306.443926px;}
.y173{bottom:307.267350px;}
.y16f{bottom:310.763316px;}
.y21{bottom:312.725850px;}
.y29{bottom:313.128750px;}
.ye0{bottom:314.158717px;}
.ye7{bottom:314.169217px;}
.yc5{bottom:314.209086px;}
.ybe{bottom:314.219680px;}
.y11a{bottom:315.131250px;}
.y188{bottom:317.635350px;}
.y74{bottom:317.920350px;}
.y1dc{bottom:320.263500px;}
.yee{bottom:323.217540px;}
.yc8{bottom:324.995016px;}
.y38{bottom:330.546750px;}
.y1db{bottom:335.263500px;}
.y73{bottom:335.920350px;}
.y172{bottom:336.652629px;}
.y12d{bottom:337.465350px;}
.y16b{bottom:338.687601px;}
.y177{bottom:339.895803px;}
.ycf{bottom:345.365250px;}
.y119{bottom:347.522400px;}
.y36{bottom:350.166605px;}
.y1da{bottom:350.263500px;}
.y187{bottom:353.230350px;}
.y19c{bottom:353.770350px;}
.yad{bottom:353.885155px;}
.ya7{bottom:353.895750px;}
.y171{bottom:353.916970px;}
.y72{bottom:353.920350px;}
.y180{bottom:354.940350px;}
.y31{bottom:356.787600px;}
.y1d9{bottom:365.263500px;}
.y118{bottom:367.015500px;}
.y17f{bottom:368.178219px;}
.y19b{bottom:371.365350px;}
.y32{bottom:371.463900px;}
.y71{bottom:371.920350px;}
.yd5{bottom:372.822358px;}
.yd0{bottom:378.093282px;}
.yae{bottom:378.888175px;}
.ye9{bottom:379.189050px;}
.y13d{bottom:379.748100px;}
.y1d8{bottom:380.263500px;}
.yb6{bottom:381.054583px;}
.ya8{bottom:383.899374px;}
.y178{bottom:386.111250px;}
.y70{bottom:389.920350px;}
.ye8{bottom:390.018450px;}
.y20{bottom:390.514200px;}
.y33{bottom:391.284900px;}
.y1d7{bottom:395.263500px;}
.y13c{bottom:395.492100px;}
.yd6{bottom:400.205967px;}
.yaf{bottom:403.891195px;}
.y19a{bottom:407.365350px;}
.y186{bottom:407.770350px;}
.y6f{bottom:407.920350px;}
.y1d6{bottom:410.263500px;}
.yd1{bottom:411.230809px;}
.y13b{bottom:411.236100px;}
.y179{bottom:412.434421px;}
.ya9{bottom:413.902998px;}
.y181{bottom:414.942300px;}
.y126{bottom:417.775950px;}
.y1f{bottom:417.859200px;}
.y1d5{bottom:425.263500px;}
.y185{bottom:425.770350px;}
.y6e{bottom:425.920350px;}
.yd7{bottom:427.589575px;}
.yb0{bottom:428.830648px;}
.y125{bottom:433.519950px;}
.y1e{bottom:435.859200px;}
.y15e{bottom:437.123853px;}
.y17a{bottom:439.613243px;}
.y1d4{bottom:440.263500px;}
.y184{bottom:443.770350px;}
.yaa{bottom:443.843055px;}
.y6d{bottom:443.920350px;}
.yd2{bottom:443.958841px;}
.yb1{bottom:453.833668px;}
.y1d{bottom:453.859200px;}
.yd8{bottom:455.046683px;}
.y1d3{bottom:455.263500px;}
.y15d{bottom:459.088067px;}
.y90{bottom:461.515350px;}
.y183{bottom:461.770350px;}
.y6c{bottom:461.920350px;}
.y17b{bottom:465.936414px;}
.y1d2{bottom:470.263500px;}
.y3b{bottom:471.739974px;}
.y1c{bottom:471.859200px;}
.yab{bottom:473.846679px;}
.y154{bottom:476.853750px;}
.yd3{bottom:477.169867px;}
.yb2{bottom:478.836688px;}
.y199{bottom:479.365350px;}
.y182{bottom:479.770350px;}
.y6b{bottom:479.920350px;}
.yd9{bottom:482.440792px;}
.y1d1{bottom:485.263500px;}
.y147{bottom:488.633850px;}
.y1b{bottom:489.859200px;}
.y17c{bottom:492.259585px;}
.y8f{bottom:497.770350px;}
.y6a{bottom:497.920350px;}
.y155{bottom:499.396274px;}
.y1d0{bottom:500.263500px;}
.yb3{bottom:503.776141px;}
.yac{bottom:503.786736px;}
.y1a{bottom:507.859200px;}
.yd4{bottom:509.824401px;}
.y148{bottom:514.375976px;}
.y1cf{bottom:515.263500px;}
.y59{bottom:515.770350px;}
.y69{bottom:515.920350px;}
.yc7{bottom:517.500108px;}
.y17d{bottom:519.438407px;}
.yed{bottom:519.655085px;}
.y156{bottom:522.632770px;}
.y19{bottom:525.859200px;}
.y15f{bottom:527.759400px;}
.y1ce{bottom:530.263500px;}
.y198{bottom:533.365350px;}
.y58{bottom:533.770350px;}
.y68{bottom:533.920350px;}
.yb4{bottom:534.510900px;}
.y149{bottom:534.893127px;}
.yda{bottom:537.414300px;}
.y176{bottom:543.583350px;}
.y18{bottom:543.859200px;}
.y1cd{bottom:545.263500px;}
.y157{bottom:545.279389px;}
.y17e{bottom:545.761578px;}
.y14a{bottom:550.772778px;}
.y57{bottom:551.770350px;}
.y67{bottom:551.920350px;}
.y1cc{bottom:560.263500px;}
.yea{bottom:561.562350px;}
.y17{bottom:561.859200px;}
.yb7{bottom:564.357300px;}
.y158{bottom:568.469620px;}
.y56{bottom:569.770350px;}
.y66{bottom:569.920350px;}
.y14d{bottom:570.237900px;}
.y14b{bottom:571.198500px;}
.y1cb{bottom:575.263500px;}
.yf1{bottom:578.875650px;}
.y16{bottom:579.859200px;}
.yca{bottom:582.713067px;}
.y55{bottom:587.770350px;}
.ycb{bottom:587.866350px;}
.y65{bottom:587.920350px;}
.yef{bottom:589.968600px;}
.y1ca{bottom:590.263500px;}
.y159{bottom:591.012144px;}
.y150{bottom:593.637517px;}
.ya3{bottom:594.410100px;}
.y15{bottom:597.859200px;}
.yb5{bottom:598.058700px;}
.y1c9{bottom:605.263500px;}
.y5c{bottom:605.365350px;}
.y54{bottom:605.770350px;}
.y64{bottom:605.920350px;}
.y15a{bottom:614.202375px;}
.y14{bottom:615.859200px;}
.ycc{bottom:619.161959px;}
.y1c8{bottom:620.263500px;}
.y14c{bottom:622.953043px;}
.y5b{bottom:623.365350px;}
.y53{bottom:623.770350px;}
.y63{bottom:623.920350px;}
.ya4{bottom:627.573912px;}
.y13{bottom:633.859200px;}
.y1c7{bottom:635.263500px;}
.y15b{bottom:636.848995px;}
.y197{bottom:641.365350px;}
.y52{bottom:641.770350px;}
.y62{bottom:641.920350px;}
.y14e{bottom:643.366650px;}
.y160{bottom:649.655100px;}
.y1c6{bottom:650.263500px;}
.ycd{bottom:651.069560px;}
.y12{bottom:651.859200px;}
.y128{bottom:655.351950px;}
.y152{bottom:657.010406px;}
.y5a{bottom:659.230350px;}
.y51{bottom:659.770350px;}
.y15c{bottom:660.085490px;}
.ya5{bottom:660.120216px;}
.y1c5{bottom:665.263500px;}
.y14f{bottom:667.564963px;}
.y11{bottom:669.859200px;}
.y127{bottom:671.095950px;}
.y61{bottom:677.515350px;}
.y50{bottom:677.770350px;}
.y153{bottom:678.115350px;}
.y1c4{bottom:680.263500px;}
.y144{bottom:680.991055px;}
.yce{bottom:682.425168px;}
.y146{bottom:689.844900px;}
.yec{bottom:690.424950px;}
.ya6{bottom:693.284028px;}
.y1c3{bottom:695.263500px;}
.y60{bottom:695.515350px;}
.y4f{bottom:695.770350px;}
.y13e{bottom:698.692350px;}
.yc6{bottom:703.345800px;}
.y1c2{bottom:710.263500px;}
.y4e{bottom:713.770350px;}
.y10{bottom:715.017300px;}
.y162{bottom:718.025700px;}
.y13f{bottom:721.288760px;}
.y1c1{bottom:725.263500px;}
.yf{bottom:727.468050px;}
.y4d{bottom:731.770350px;}
.y102{bottom:731.772600px;}
.y112{bottom:731.922600px;}
.y1c0{bottom:740.263500px;}
.y140{bottom:744.476761px;}
.y4c{bottom:749.770350px;}
.y101{bottom:749.772600px;}
.y111{bottom:749.922600px;}
.y1bf{bottom:755.263500px;}
.ye{bottom:764.608950px;}
.y141{bottom:767.073171px;}
.y4b{bottom:767.770350px;}
.y100{bottom:767.772600px;}
.y110{bottom:767.922600px;}
.y1be{bottom:770.263500px;}
.yd{bottom:772.683600px;}
.y1bd{bottom:785.263500px;}
.y4a{bottom:785.770350px;}
.yff{bottom:785.772600px;}
.y10f{bottom:785.922600px;}
.y142{bottom:790.261171px;}
.yc{bottom:791.608950px;}
.yb{bottom:799.683600px;}
.y1bc{bottom:800.263500px;}
.y49{bottom:803.770350px;}
.yfe{bottom:803.772600px;}
.y10e{bottom:803.922600px;}
.y143{bottom:812.857582px;}
.y1bb{bottom:815.263500px;}
.y161{bottom:817.126500px;}
.y145{bottom:817.126950px;}
.ya{bottom:818.608950px;}
.y48{bottom:821.770350px;}
.yfd{bottom:821.772600px;}
.y8e{bottom:821.785350px;}
.y10d{bottom:821.922600px;}
.y151{bottom:826.348050px;}
.y9{bottom:826.683600px;}
.y1ba{bottom:830.263500px;}
.ya0{bottom:839.365350px;}
.y47{bottom:839.770350px;}
.yfc{bottom:839.772600px;}
.y8d{bottom:839.785350px;}
.y10c{bottom:839.922600px;}
.y1b9{bottom:845.263500px;}
.y8{bottom:845.608950px;}
.y9f{bottom:857.365350px;}
.y46{bottom:857.770350px;}
.yfb{bottom:857.772600px;}
.y8c{bottom:857.785350px;}
.y10b{bottom:857.922600px;}
.y7{bottom:859.108950px;}
.y1b8{bottom:860.263500px;}
.y1b7{bottom:875.263500px;}
.y12c{bottom:875.635350px;}
.y45{bottom:875.770350px;}
.yfa{bottom:875.772600px;}
.y8b{bottom:875.785350px;}
.y10a{bottom:875.922600px;}
.y6{bottom:887.830950px;}
.y1b6{bottom:890.263500px;}
.y9e{bottom:893.230350px;}
.y12b{bottom:893.635350px;}
.y44{bottom:893.770350px;}
.yf9{bottom:893.772600px;}
.y8a{bottom:893.785350px;}
.y109{bottom:893.922600px;}
.y1b5{bottom:905.263500px;}
.y43{bottom:911.770350px;}
.yf8{bottom:911.772600px;}
.y89{bottom:911.785350px;}
.y108{bottom:911.922600px;}
.y1b4{bottom:920.263500px;}
.y12a{bottom:929.230350px;}
.y42{bottom:929.770350px;}
.yf7{bottom:929.772600px;}
.y88{bottom:929.785350px;}
.y107{bottom:929.922600px;}
.y5{bottom:934.004400px;}
.y1b3{bottom:935.263500px;}
.y41{bottom:947.770350px;}
.yf6{bottom:947.772600px;}
.y87{bottom:947.785350px;}
.y1b2{bottom:950.263500px;}
.y1b1{bottom:965.263500px;}
.y106{bottom:965.517600px;}
.y40{bottom:965.770350px;}
.yf5{bottom:965.772600px;}
.y86{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1b0{bottom:980.263500px;}
.y196{bottom:983.365350px;}
.y3f{bottom:983.770350px;}
.y117{bottom:983.770500px;}
.yf4{bottom:983.772600px;}
.y85{bottom:983.785350px;}
.y1af{bottom:995.263500px;}
.y3e{bottom:1001.770350px;}
.y116{bottom:1001.770500px;}
.y105{bottom:1001.772600px;}
.y84{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1ae{bottom:1010.263500px;}
.yf3{bottom:1019.367600px;}
.y3d{bottom:1019.770350px;}
.y115{bottom:1019.770500px;}
.y104{bottom:1019.772600px;}
.y83{bottom:1019.785350px;}
.y1ad{bottom:1025.263500px;}
.yf2{bottom:1037.367600px;}
.y3c{bottom:1037.770350px;}
.y114{bottom:1037.770500px;}
.y103{bottom:1037.772600px;}
.y82{bottom:1037.785350px;}
.y1ac{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1ab{bottom:1132.413900px;}
.y5f{bottom:1132.416900px;}
.y9d{bottom:1132.418700px;}
.y1e6{bottom:1132.423500px;}
.y129{bottom:1132.423950px;}
.y113{bottom:1132.425000px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h2c{height:24.130461px;}
.h8{height:28.412109px;}
.h2e{height:28.898729px;}
.h20{height:30.597219px;}
.h2{height:30.597656px;}
.h1a{height:30.873035px;}
.h31{height:31.355245px;}
.h32{height:31.359445px;}
.h2a{height:31.446333px;}
.h39{height:32.216917px;}
.h7{height:32.805176px;}
.h33{height:33.072489px;}
.h3c{height:33.351562px;}
.h37{height:34.063879px;}
.h3a{height:34.607653px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h1b{height:35.283469px;}
.h34{height:35.526715px;}
.h24{height:36.852539px;}
.h1e{height:37.184212px;}
.h38{height:39.034654px;}
.h11{height:41.441153px;}
.h13{height:41.670219px;}
.h15{height:41.689453px;}
.h1f{height:42.116661px;}
.h16{height:42.117188px;}
.h19{height:42.496242px;}
.h18{height:42.949219px;}
.h2b{height:43.588130px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.hb{height:45.720000px;}
.h12{height:46.000001px;}
.h2d{height:46.917405px;}
.h26{height:47.133520px;}
.h27{height:47.134120px;}
.h28{height:47.148520px;}
.h29{height:47.149120px;}
.h21{height:47.381309px;}
.h23{height:47.381836px;}
.h1c{height:47.808272px;}
.h22{height:48.062555px;}
.h1d{height:48.074137px;}
.h2f{height:49.948352px;}
.h35{height:50.536940px;}
.hd{height:52.646484px;}
.h3b{height:54.266484px;}
.h30{height:54.843902px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h17{height:58.895900px;}
.he{height:58.955900px;}
.h25{height:58.983500px;}
.h14{height:59.554756px;}
.h36{height:75.710909px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x34{left:78.658350px;}
.x25{left:86.005200px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x37{left:99.921300px;}
.x21{left:102.594000px;}
.x4{left:106.299150px;}
.x22{left:108.821550px;}
.x16{left:110.561850px;}
.x2a{left:119.652444px;}
.x29{left:120.948000px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x2c{left:141.518487px;}
.x2b{left:142.938150px;}
.x31{left:162.919950px;}
.x32{left:166.797450px;}
.x14{left:183.005550px;}
.x20{left:211.100400px;}
.x5{left:212.876400px;}
.x56{left:215.812050px;}
.x36{left:220.135350px;}
.x4a{left:223.860000px;}
.x54{left:230.251950px;}
.x48{left:239.045510px;}
.x39{left:241.769100px;}
.x35{left:242.992200px;}
.x47{left:245.499450px;}
.x53{left:254.730432px;}
.x3a{left:259.685033px;}
.x49{left:261.483938px;}
.x1a{left:264.695100px;}
.x45{left:276.094800px;}
.x3c{left:296.082750px;}
.x46{left:297.740531px;}
.x4d{left:302.841450px;}
.x24{left:311.966100px;}
.xf{left:314.878500px;}
.x2e{left:334.575300px;}
.x38{left:350.505300px;}
.x33{left:352.366350px;}
.xc{left:364.764000px;}
.x15{left:385.657957px;}
.x28{left:398.840100px;}
.x27{left:400.553850px;}
.x10{left:412.306500px;}
.x30{left:419.271600px;}
.x55{left:425.204700px;}
.x4f{left:435.614168px;}
.x3d{left:440.094423px;}
.x4e{left:442.784845px;}
.x52{left:447.745950px;}
.xa{left:455.041500px;}
.x17{left:457.076850px;}
.x4b{left:458.915850px;}
.x3e{left:474.310444px;}
.x1d{left:478.360350px;}
.x7{left:480.471000px;}
.x58{left:482.591250px;}
.x18{left:491.096850px;}
.xe{left:492.663300px;}
.x57{left:503.858400px;}
.x1e{left:512.380350px;}
.x8{left:514.494900px;}
.x19{left:525.281850px;}
.x12{left:538.833331px;}
.x3b{left:558.854700px;}
.x3f{left:559.920450px;}
.x13{left:575.365475px;}
.x44{left:579.109517px;}
.x51{left:581.605122px;}
.x50{left:588.775799px;}
.xd{left:596.511450px;}
.x4c{left:604.944831px;}
.x40{left:606.664769px;}
.x11{left:618.273232px;}
.x41{left:625.959150px;}
.x42{left:639.552000px;}
.x1c{left:663.492300px;}
.x43{left:679.527187px;}
.x2{left:693.365400px;}
.x59{left:721.732500px;}
.x1b{left:728.387100px;}
.x1f{left:749.651400px;}
.x23{left:756.473929px;}
.x2d{left:772.911285px;}
.x26{left:792.525162px;}
.x2f{left:811.466550px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v6{vertical-align:-2.090667pt;}
.v3{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v9{vertical-align:4.351600pt;}
.v8{vertical-align:9.462911pt;}
.v7{vertical-align:20.070400pt;}
.v5{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls13{letter-spacing:-4.906667pt;}
.ls8d{letter-spacing:-4.053333pt;}
.ls2c{letter-spacing:-3.946667pt;}
.ls2a{letter-spacing:-3.680000pt;}
.ls54{letter-spacing:-3.413333pt;}
.ls45{letter-spacing:-3.253333pt;}
.ls46{letter-spacing:-2.880000pt;}
.ls2b{letter-spacing:-2.773333pt;}
.lsae{letter-spacing:-2.517333pt;}
.lsb0{letter-spacing:-2.346667pt;}
.ls8b{letter-spacing:-1.813333pt;}
.ls75{letter-spacing:-1.690993pt;}
.ls61{letter-spacing:-1.578667pt;}
.ls71{letter-spacing:-1.237312pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls77{letter-spacing:-0.373333pt;}
.ls47{letter-spacing:-0.339024pt;}
.ls62{letter-spacing:-0.298667pt;}
.ls78{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.213333pt;}
.lsad{letter-spacing:-0.170667pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.120000pt;}
.ls8c{letter-spacing:-0.106667pt;}
.lsaf{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls55{letter-spacing:0.031093pt;}
.ls74{letter-spacing:0.041124pt;}
.ls9d{letter-spacing:0.042667pt;}
.ls51{letter-spacing:0.047999pt;}
.ls44{letter-spacing:0.048432pt;}
.ls52{letter-spacing:0.048690pt;}
.ls72{letter-spacing:0.050600pt;}
.ls79{letter-spacing:0.051196pt;}
.ls28{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.060332pt;}
.ls73{letter-spacing:0.082249pt;}
.ls53{letter-spacing:0.085332pt;}
.ls97{letter-spacing:0.085333pt;}
.ls48{letter-spacing:0.086101pt;}
.ls3{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.160000pt;}
.ls94{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls84{letter-spacing:0.256000pt;}
.ls4f{letter-spacing:0.261330pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.298667pt;}
.ls35{letter-spacing:0.320000pt;}
.ls96{letter-spacing:0.341333pt;}
.ls22{letter-spacing:0.373333pt;}
.ls98{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.435733pt;}
.ls3e{letter-spacing:0.448533pt;}
.ls1c{letter-spacing:0.453867pt;}
.lsaa{letter-spacing:0.469333pt;}
.ls3b{letter-spacing:0.480000pt;}
.ls42{letter-spacing:0.496533pt;}
.ls90{letter-spacing:0.512000pt;}
.ls4c{letter-spacing:0.533333pt;}
.lsa0{letter-spacing:0.554667pt;}
.ls33{letter-spacing:0.586667pt;}
.ls91{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls9a{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls9c{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls86{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.853333pt;}
.ls9b{letter-spacing:0.896000pt;}
.ls4d{letter-spacing:0.906667pt;}
.ls95{letter-spacing:0.938667pt;}
.ls8{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.981333pt;}
.ls1e{letter-spacing:1.013333pt;}
.lsa6{letter-spacing:1.024000pt;}
.ls70{letter-spacing:1.031093pt;}
.ls26{letter-spacing:1.066667pt;}
.ls8f{letter-spacing:1.109333pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls93{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.191467pt;}
.ls92{letter-spacing:1.194667pt;}
.ls21{letter-spacing:1.226667pt;}
.ls83{letter-spacing:1.237333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.386667pt;}
.ls99{letter-spacing:1.408000pt;}
.ls4b{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.493333pt;}
.ls23{letter-spacing:1.546667pt;}
.lse{letter-spacing:1.600000pt;}
.lsac{letter-spacing:1.621333pt;}
.lsa3{letter-spacing:1.664000pt;}
.ls20{letter-spacing:1.706667pt;}
.ls9{letter-spacing:1.760000pt;}
.lsa8{letter-spacing:1.792000pt;}
.ls7b{letter-spacing:1.813333pt;}
.ls36{letter-spacing:1.866667pt;}
.lsa7{letter-spacing:1.877333pt;}
.ls17{letter-spacing:1.920000pt;}
.lsa2{letter-spacing:1.962667pt;}
.ls37{letter-spacing:1.973333pt;}
.lsb{letter-spacing:2.026667pt;}
.ls3c{letter-spacing:2.080000pt;}
.ls2f{letter-spacing:2.133333pt;}
.ls4a{letter-spacing:2.186667pt;}
.ls19{letter-spacing:2.240000pt;}
.ls6{letter-spacing:2.293333pt;}
.ls16{letter-spacing:2.346667pt;}
.ls9e{letter-spacing:2.389333pt;}
.ls63{letter-spacing:2.400000pt;}
.ls43{letter-spacing:2.453333pt;}
.lsa9{letter-spacing:2.517333pt;}
.lsa4{letter-spacing:2.602667pt;}
.ls76{letter-spacing:2.613333pt;}
.ls34{letter-spacing:2.666667pt;}
.ls41{letter-spacing:2.720000pt;}
.ls8a{letter-spacing:2.816000pt;}
.ls4e{letter-spacing:2.826667pt;}
.ls38{letter-spacing:2.880000pt;}
.lsa5{letter-spacing:2.901333pt;}
.ls39{letter-spacing:2.933333pt;}
.lsab{letter-spacing:2.944000pt;}
.ls25{letter-spacing:2.986667pt;}
.ls7{letter-spacing:3.040000pt;}
.ls3f{letter-spacing:3.093333pt;}
.ls7a{letter-spacing:3.146667pt;}
.ls7d{letter-spacing:3.306667pt;}
.ls24{letter-spacing:3.413333pt;}
.ls7f{letter-spacing:3.466667pt;}
.ls7c{letter-spacing:3.680000pt;}
.ls32{letter-spacing:3.733333pt;}
.ls85{letter-spacing:3.754667pt;}
.ls89{letter-spacing:3.840000pt;}
.lsf{letter-spacing:3.946667pt;}
.ls88{letter-spacing:4.181333pt;}
.ls3d{letter-spacing:4.586667pt;}
.lsa1{letter-spacing:4.693333pt;}
.ls64{letter-spacing:5.600000pt;}
.ls9f{letter-spacing:5.930667pt;}
.ls8e{letter-spacing:6.186667pt;}
.ls82{letter-spacing:6.773333pt;}
.ls7e{letter-spacing:7.573333pt;}
.ls80{letter-spacing:7.840000pt;}
.ls81{letter-spacing:10.613333pt;}
.ls66{letter-spacing:48.915068pt;}
.ls67{letter-spacing:50.894767pt;}
.ls65{letter-spacing:51.059742pt;}
.ls1{letter-spacing:52.918112pt;}
.ls6e{letter-spacing:56.915985pt;}
.ls6c{letter-spacing:57.121606pt;}
.ls6b{letter-spacing:58.807701pt;}
.ls6d{letter-spacing:59.013323pt;}
.ls69{letter-spacing:110.579975pt;}
.ls6f{letter-spacing:113.617801pt;}
.ls56{letter-spacing:160.042667pt;}
.ls60{letter-spacing:161.768533pt;}
.ls5e{letter-spacing:162.463381pt;}
.ls58{letter-spacing:162.560533pt;}
.ls5f{letter-spacing:165.266581pt;}
.ls68{letter-spacing:167.420741pt;}
.ls5c{letter-spacing:173.129515pt;}
.ls59{letter-spacing:173.130048pt;}
.ls5b{letter-spacing:173.921515pt;}
.ls5a{letter-spacing:178.944000pt;}
.ls57{letter-spacing:197.266048pt;}
.ls5d{letter-spacing:197.266581pt;}
.ls49{letter-spacing:226.522828pt;}
.ls6a{letter-spacing:575.878600pt;}
.ws4{word-spacing:-53.333333pt;}
.ws47{word-spacing:-42.666667pt;}
.ws0{word-spacing:-31.284267pt;}
.ws9f{word-spacing:-17.973333pt;}
.wsb8{word-spacing:-16.597333pt;}
.ws8d{word-spacing:-15.946667pt;}
.ws45{word-spacing:-15.573333pt;}
.ws2e{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.082933pt;}
.ws3{word-spacing:-14.826667pt;}
.ws9e{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.613333pt;}
.ws7e{word-spacing:-14.506667pt;}
.ws9d{word-spacing:-14.453333pt;}
.ws44{word-spacing:-14.186667pt;}
.ws14{word-spacing:-13.706667pt;}
.ws8e{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.546667pt;}
.ws69{word-spacing:-13.493333pt;}
.wsa1{word-spacing:-13.482667pt;}
.ws46{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws64{word-spacing:-12.172400pt;}
.ws4e{word-spacing:-12.156432pt;}
.ws4d{word-spacing:-12.108000pt;}
.ws63{word-spacing:-11.999867pt;}
.wsb4{word-spacing:-11.946667pt;}
.ws8{word-spacing:-11.861333pt;}
.wsb7{word-spacing:-11.818667pt;}
.wsb9{word-spacing:-11.306667pt;}
.ws7{word-spacing:-11.120000pt;}
.wsb5{word-spacing:-11.050667pt;}
.wsa0{word-spacing:-10.922667pt;}
.ws48{word-spacing:-10.762667pt;}
.wsb6{word-spacing:-10.666667pt;}
.ws5e{word-spacing:-10.666533pt;}
.wsb3{word-spacing:-10.581333pt;}
.ws90{word-spacing:-10.563600pt;}
.ws81{word-spacing:-10.310933pt;}
.ws83{word-spacing:-10.281067pt;}
.ws1{word-spacing:-9.076144pt;}
.wsba{word-spacing:-8.320000pt;}
.wsb2{word-spacing:-8.149333pt;}
.ws6{word-spacing:-7.773333pt;}
.ws2{word-spacing:-6.482960pt;}
.wsab{word-spacing:-6.186667pt;}
.wsa5{word-spacing:-3.413333pt;}
.wsa9{word-spacing:-3.306667pt;}
.ws3b{word-spacing:-2.933333pt;}
.ws71{word-spacing:-2.826667pt;}
.ws95{word-spacing:-2.613333pt;}
.wsa{word-spacing:-2.565333pt;}
.wscd{word-spacing:-2.517333pt;}
.ws57{word-spacing:-2.453333pt;}
.wsac{word-spacing:-2.400000pt;}
.ws9c{word-spacing:-2.346667pt;}
.ws2b{word-spacing:-1.973333pt;}
.ws16{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.706667pt;}
.wsc8{word-spacing:-1.664000pt;}
.ws6f{word-spacing:-1.440000pt;}
.wsa8{word-spacing:-1.386667pt;}
.ws22{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.173333pt;}
.wsc6{word-spacing:-1.152000pt;}
.ws94{word-spacing:-1.120000pt;}
.ws58{word-spacing:-1.066667pt;}
.ws88{word-spacing:-1.031093pt;}
.wscb{word-spacing:-1.024000pt;}
.wsb0{word-spacing:-0.981333pt;}
.wsbf{word-spacing:-0.938667pt;}
.ws98{word-spacing:-0.853333pt;}
.ws59{word-spacing:-0.800000pt;}
.ws97{word-spacing:-0.746667pt;}
.wsbe{word-spacing:-0.725333pt;}
.ws54{word-spacing:-0.693333pt;}
.wscc{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.586667pt;}
.wsc7{word-spacing:-0.554667pt;}
.wsc1{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.373333pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws86{word-spacing:-0.320000pt;}
.ws6b{word-spacing:-0.298667pt;}
.ws20{word-spacing:-0.266667pt;}
.ws6a{word-spacing:-0.261330pt;}
.wsae{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.160000pt;}
.ws3a{word-spacing:-0.106667pt;}
.ws5d{word-spacing:-0.086101pt;}
.wsc3{word-spacing:-0.085333pt;}
.ws6d{word-spacing:-0.085332pt;}
.ws8b{word-spacing:-0.082249pt;}
.ws15{word-spacing:-0.060332pt;}
.ws7b{word-spacing:-0.053333pt;}
.ws8a{word-spacing:-0.050600pt;}
.ws6c{word-spacing:-0.048690pt;}
.ws5c{word-spacing:-0.048432pt;}
.ws8f{word-spacing:-0.043377pt;}
.ws4c{word-spacing:-0.043051pt;}
.ws60{word-spacing:-0.042667pt;}
.ws8c{word-spacing:-0.041124pt;}
.ws49{word-spacing:-0.037669pt;}
.ws5f{word-spacing:-0.037333pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053333pt;}
.wsbc{word-spacing:0.085333pt;}
.ws85{word-spacing:0.106667pt;}
.wscf{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.160000pt;}
.wsa6{word-spacing:0.213333pt;}
.ws43{word-spacing:0.266667pt;}
.ws87{word-spacing:0.298667pt;}
.ws1a{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.480000pt;}
.ws9b{word-spacing:0.512000pt;}
.ws41{word-spacing:0.533333pt;}
.ws36{word-spacing:0.640000pt;}
.wsc4{word-spacing:0.725333pt;}
.ws2a{word-spacing:0.800000pt;}
.ws39{word-spacing:0.853333pt;}
.ws17{word-spacing:1.013333pt;}
.wsaa{word-spacing:1.066667pt;}
.wsb1{word-spacing:1.152000pt;}
.ws99{word-spacing:1.173333pt;}
.ws37{word-spacing:1.226667pt;}
.ws89{word-spacing:1.237312pt;}
.wsce{word-spacing:1.280000pt;}
.wsa4{word-spacing:1.386667pt;}
.ws1d{word-spacing:1.440000pt;}
.wsc5{word-spacing:1.450667pt;}
.ws72{word-spacing:1.546667pt;}
.ws40{word-spacing:1.600000pt;}
.wsbd{word-spacing:1.621333pt;}
.ws38{word-spacing:1.653333pt;}
.ws93{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.813333pt;}
.wsc0{word-spacing:1.834667pt;}
.wsc9{word-spacing:2.048000pt;}
.ws2d{word-spacing:2.080000pt;}
.ws3f{word-spacing:2.133333pt;}
.ws2f{word-spacing:2.186667pt;}
.ws92{word-spacing:2.293333pt;}
.ws5a{word-spacing:2.453333pt;}
.ws6e{word-spacing:2.506667pt;}
.ws7c{word-spacing:2.549653pt;}
.wsbb{word-spacing:2.602667pt;}
.ws96{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.720000pt;}
.ws26{word-spacing:2.773333pt;}
.ws3c{word-spacing:2.826667pt;}
.ws5b{word-spacing:2.858667pt;}
.ws31{word-spacing:2.880000pt;}
.ws7d{word-spacing:2.986667pt;}
.ws30{word-spacing:3.040000pt;}
.wsd0{word-spacing:3.072000pt;}
.wsca{word-spacing:3.114667pt;}
.ws19{word-spacing:3.146667pt;}
.ws9a{word-spacing:3.157333pt;}
.wsa7{word-spacing:3.200000pt;}
.ws55{word-spacing:3.253333pt;}
.ws53{word-spacing:3.306667pt;}
.ws35{word-spacing:3.360000pt;}
.ws56{word-spacing:3.413333pt;}
.ws74{word-spacing:3.456000pt;}
.ws4f{word-spacing:3.487104pt;}
.wsaf{word-spacing:3.498667pt;}
.ws3e{word-spacing:3.520000pt;}
.wsad{word-spacing:3.541333pt;}
.ws1b{word-spacing:3.573333pt;}
.wsf{word-spacing:3.626667pt;}
.ws21{word-spacing:3.680000pt;}
.wsa3{word-spacing:3.733333pt;}
.ws73{word-spacing:3.840000pt;}
.ws42{word-spacing:3.893333pt;}
.ws2c{word-spacing:3.946667pt;}
.ws1f{word-spacing:4.000000pt;}
.ws33{word-spacing:4.053333pt;}
.ws34{word-spacing:4.106667pt;}
.ws18{word-spacing:4.213333pt;}
.ws7a{word-spacing:4.266667pt;}
.ws28{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.ws24{word-spacing:4.586667pt;}
.wsb{word-spacing:4.906667pt;}
.ws82{word-spacing:51.595910pt;}
.ws84{word-spacing:55.929003pt;}
.ws66{word-spacing:82.302971pt;}
.ws65{word-spacing:82.985629pt;}
.ws68{word-spacing:110.992000pt;}
.ws52{word-spacing:114.477104pt;}
.ws67{word-spacing:119.056000pt;}
.ws51{word-spacing:119.524795pt;}
.ws75{word-spacing:129.237333pt;}
.ws76{word-spacing:148.138667pt;}
.ws77{word-spacing:166.400000pt;}
.ws4b{word-spacing:211.348373pt;}
.ws4a{word-spacing:211.417771pt;}
.ws62{word-spacing:226.473761pt;}
.ws61{word-spacing:226.477494pt;}
.ws50{word-spacing:229.933611pt;}
.ws79{word-spacing:263.253333pt;}
.ws78{word-spacing:267.221333pt;}
.ws91{word-spacing:383.965733pt;}
.ws11{word-spacing:496.168175pt;}
.ws80{word-spacing:540.714667pt;}
.ws7f{word-spacing:544.682667pt;}
._b{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._e{margin-left:-1072.340240pt;}
._2a{margin-left:-1063.624312pt;}
._10{margin-left:-1046.518656pt;}
._29{margin-left:-983.029077pt;}
._f{margin-left:-963.699936pt;}
._5b{margin-left:-525.940467pt;}
._5a{margin-left:-510.411668pt;}
._22{margin-left:-464.801904pt;}
._1b{margin-left:-462.278059pt;}
._32{margin-left:-460.036603pt;}
._38{margin-left:-453.790213pt;}
._28{margin-left:-178.288955pt;}
._20{margin-left:-175.011723pt;}
._36{margin-left:-174.048000pt;}
._59{margin-left:-49.058859pt;}
._2{margin-left:-8.214933pt;}
._5{margin-left:-6.666667pt;}
._5e{margin-left:-5.717333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.546667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.008000pt;}
._7{width:0.938667pt;}
._9{width:1.877333pt;}
._a{width:3.493333pt;}
._c{width:4.400000pt;}
._6{width:5.370667pt;}
._8{width:6.773333pt;}
._58{width:7.920000pt;}
._17{width:9.212843pt;}
._5d{width:11.386667pt;}
._53{width:70.660454pt;}
._54{width:72.846372pt;}
._56{width:77.683740pt;}
._57{width:79.575456pt;}
._52{width:83.559804pt;}
._55{width:88.746167pt;}
._30{width:93.990757pt;}
._16{width:95.228075pt;}
._15{width:97.811115pt;}
._2d{width:99.412091pt;}
._34{width:117.560389pt;}
._1d{width:118.507723pt;}
._24{width:119.863819pt;}
._19{width:121.634277pt;}
._3a{width:122.831221pt;}
._1e{width:123.743760pt;}
._35{width:124.784240pt;}
._1f{width:125.853243pt;}
._25{width:127.020992pt;}
._1a{width:127.925056pt;}
._26{width:130.147547pt;}
._21{width:133.575456pt;}
._49{width:148.992000pt;}
._3e{width:160.000000pt;}
._41{width:162.421333pt;}
._42{width:173.604267pt;}
._43{width:178.944000pt;}
._40{width:180.992000pt;}
._2b{width:226.685166pt;}
._2e{width:229.117136pt;}
._45{width:235.904000pt;}
._2c{width:239.891331pt;}
._13{width:241.342037pt;}
._2f{width:242.773034pt;}
._11{width:243.925077pt;}
._12{width:245.216597pt;}
._14{width:249.091157pt;}
._37{width:255.173333pt;}
._31{width:260.997333pt;}
._18{width:262.140891pt;}
._27{width:263.270971pt;}
._4c{width:306.179109pt;}
._3c{width:317.104000pt;}
._3f{width:373.376000pt;}
._48{width:384.042667pt;}
._44{width:390.874667pt;}
._5c{width:396.092746pt;}
._47{width:414.848000pt;}
._46{width:445.696000pt;}
._3b{width:454.192000pt;}
._4a{width:456.320000pt;}
._3d{width:489.514667pt;}
._39{width:549.808000pt;}
._4f{width:551.381333pt;}
._33{width:559.253333pt;}
._50{width:560.469333pt;}
._1c{width:561.913445pt;}
._23{width:564.625637pt;}
._4e{width:580.821333pt;}
._4b{width:651.434667pt;}
._51{width:757.461333pt;}
._4d{width:772.864000pt;}
.fs5{font-size:23.320000pt;}
.fs17{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs1a{font-size:31.648533pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs13{font-size:37.332800pt;}
.fs0{font-size:37.333333pt;}
.fsf{font-size:37.669333pt;}
.fs1b{font-size:37.902400pt;}
.fs6{font-size:40.000000pt;}
.fs1d{font-size:41.124267pt;}
.fs18{font-size:41.243733pt;}
.fsd{font-size:42.213867pt;}
.fs22{font-size:42.254400pt;}
.fs12{font-size:42.666133pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:43.050667pt;}
.fs1e{font-size:43.376533pt;}
.fs19{font-size:44.156800pt;}
.fs21{font-size:44.676800pt;}
.fs14{font-size:47.999467pt;}
.fs16{font-size:48.000000pt;}
.fs10{font-size:48.432000pt;}
.fs15{font-size:48.689600pt;}
.fs11{font-size:48.701333pt;}
.fs1c{font-size:50.600000pt;}
.fs1f{font-size:51.196267pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:54.352533pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:60.331733pt;}
.fs1{font-size:69.333333pt;}
.fs20{font-size:76.698667pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y195{bottom:74.342533pt;}
.ya2{bottom:74.376000pt;}
.y9c{bottom:74.588533pt;}
.y81{bottom:74.595867pt;}
.y5d{bottom:74.764267pt;}
.y165{bottom:75.499333pt;}
.y1aa{bottom:76.552800pt;}
.y2c{bottom:78.246000pt;}
.y13a{bottom:82.076533pt;}
.ya1{bottom:88.370667pt;}
.y164{bottom:89.494000pt;}
.y1a9{bottom:89.886133pt;}
.y124{bottom:90.303867pt;}
.y194{bottom:90.342533pt;}
.y9b{bottom:90.588533pt;}
.y80{bottom:90.595867pt;}
.y2b{bottom:91.576000pt;}
.y139{bottom:96.519200pt;}
.y1a8{bottom:103.219467pt;}
.y163{bottom:103.488667pt;}
.y123{bottom:104.750133pt;}
.y193{bottom:106.342533pt;}
.y9a{bottom:106.588533pt;}
.y7f{bottom:106.595867pt;}
.yeb{bottom:110.586851pt;}
.y138{bottom:110.961867pt;}
.y1a7{bottom:116.552800pt;}
.yb8{bottom:117.255467pt;}
.y122{bottom:119.196267pt;}
.y3a{bottom:121.330908pt;}
.y192{bottom:122.342533pt;}
.y99{bottom:122.588533pt;}
.y7e{bottom:122.595867pt;}
.yf0{bottom:124.712133pt;}
.y137{bottom:125.404533pt;}
.y1a6{bottom:129.886133pt;}
.y174{bottom:130.323467pt;}
.y121{bottom:133.642533pt;}
.ydb{bottom:134.083600pt;}
.ye1{bottom:134.092933pt;}
.yc9{bottom:134.625200pt;}
.y191{bottom:138.342533pt;}
.y98{bottom:138.588533pt;}
.y7d{bottom:138.595867pt;}
.y136{bottom:139.847200pt;}
.y16c{bottom:140.562472pt;}
.y1a5{bottom:143.219467pt;}
.y5e{bottom:145.718133pt;}
.ybf{bottom:146.051116pt;}
.yb9{bottom:146.060533pt;}
.y120{bottom:148.088667pt;}
.y28{bottom:150.336667pt;}
.y135{bottom:154.289867pt;}
.y190{bottom:154.342533pt;}
.y97{bottom:154.588533pt;}
.y7c{bottom:154.595867pt;}
.y1a4{bottom:156.552800pt;}
.y166{bottom:157.023867pt;}
.ye2{bottom:158.135256pt;}
.y11f{bottom:162.534933pt;}
.ydc{bottom:163.053853pt;}
.y1e5{bottom:164.678667pt;}
.y27{bottom:166.336667pt;}
.yc0{bottom:168.398448pt;}
.y134{bottom:168.732533pt;}
.y1a3{bottom:169.886133pt;}
.y18f{bottom:170.342533pt;}
.y96{bottom:170.588533pt;}
.y7b{bottom:170.595867pt;}
.yba{bottom:172.551492pt;}
.y11e{bottom:176.984400pt;}
.y1e4{bottom:178.012000pt;}
.y26{bottom:182.336667pt;}
.ye3{bottom:182.606907pt;}
.y175{bottom:183.150267pt;}
.y133{bottom:183.175200pt;}
.y1a2{bottom:183.219467pt;}
.y167{bottom:185.641535pt;}
.y18e{bottom:186.342533pt;}
.y95{bottom:186.588533pt;}
.y7a{bottom:186.595867pt;}
.yc1{bottom:190.322000pt;}
.y1e3{bottom:191.345333pt;}
.ydd{bottom:191.968106pt;}
.y34{bottom:192.722667pt;}
.y1a1{bottom:196.552800pt;}
.y132{bottom:197.617867pt;}
.y25{bottom:198.336667pt;}
.ybb{bottom:199.409727pt;}
.y18d{bottom:202.342533pt;}
.y94{bottom:202.588533pt;}
.y79{bottom:202.595867pt;}
.y11d{bottom:202.765733pt;}
.y1e2{bottom:204.678667pt;}
.y39{bottom:206.443901pt;}
.ye4{bottom:206.705229pt;}
.y30{bottom:207.895733pt;}
.y1a0{bottom:209.886133pt;}
.y131{bottom:212.060533pt;}
.yc2{bottom:212.669332pt;}
.y16e{bottom:214.158586pt;}
.y168{bottom:214.302579pt;}
.y24{bottom:214.336667pt;}
.y1e1{bottom:218.012000pt;}
.y18c{bottom:218.342533pt;}
.y93{bottom:218.588533pt;}
.y78{bottom:218.595867pt;}
.yde{bottom:221.367686pt;}
.y19f{bottom:223.219467pt;}
.ybc{bottom:225.900685pt;}
.y130{bottom:226.503200pt;}
.y11c{bottom:228.554000pt;}
.y16d{bottom:229.504667pt;}
.y23{bottom:230.336667pt;}
.ye5{bottom:230.747552pt;}
.y1e0{bottom:231.345333pt;}
.y18b{bottom:234.342533pt;}
.y92{bottom:234.588533pt;}
.y77{bottom:234.595867pt;}
.yc3{bottom:234.960160pt;}
.y19e{bottom:236.552800pt;}
.y35{bottom:238.018146pt;}
.y12f{bottom:240.945867pt;}
.y169{bottom:243.733557pt;}
.y1df{bottom:244.678667pt;}
.y22{bottom:246.336667pt;}
.ydf{bottom:250.281940pt;}
.y18a{bottom:250.342533pt;}
.y91{bottom:250.588533pt;}
.y76{bottom:250.595867pt;}
.ybd{bottom:252.815424pt;}
.y11b{bottom:254.335333pt;}
.ye6{bottom:255.219203pt;}
.yc4{bottom:256.949633pt;}
.y1de{bottom:258.012000pt;}
.y170{bottom:260.900777pt;}
.y2a{bottom:262.336667pt;}
.y37{bottom:265.193322pt;}
.y19d{bottom:265.982533pt;}
.y189{bottom:266.342533pt;}
.y75{bottom:266.595867pt;}
.y12e{bottom:268.956533pt;}
.y1dd{bottom:271.345333pt;}
.y16a{bottom:272.394601pt;}
.y173{bottom:273.126533pt;}
.y16f{bottom:276.234059pt;}
.y21{bottom:277.978533pt;}
.y29{bottom:278.336667pt;}
.ye0{bottom:279.252193pt;}
.ye7{bottom:279.261526pt;}
.yc5{bottom:279.296965pt;}
.ybe{bottom:279.306383pt;}
.y11a{bottom:280.116667pt;}
.y188{bottom:282.342533pt;}
.y74{bottom:282.595867pt;}
.y1dc{bottom:284.678667pt;}
.yee{bottom:287.304480pt;}
.yc8{bottom:288.884459pt;}
.y38{bottom:293.819333pt;}
.y1db{bottom:298.012000pt;}
.y73{bottom:298.595867pt;}
.y172{bottom:299.246781pt;}
.y12d{bottom:299.969200pt;}
.y16b{bottom:301.055646pt;}
.y177{bottom:302.129603pt;}
.ycf{bottom:306.991333pt;}
.y119{bottom:308.908800pt;}
.y36{bottom:311.259204pt;}
.y1da{bottom:311.345333pt;}
.y187{bottom:313.982533pt;}
.y19c{bottom:314.462533pt;}
.yad{bottom:314.564583pt;}
.ya7{bottom:314.574000pt;}
.y171{bottom:314.592862pt;}
.y72{bottom:314.595867pt;}
.y180{bottom:315.502533pt;}
.y31{bottom:317.144533pt;}
.y1d9{bottom:324.678667pt;}
.y118{bottom:326.236000pt;}
.y17f{bottom:327.269528pt;}
.y19b{bottom:330.102533pt;}
.y32{bottom:330.190133pt;}
.y71{bottom:330.595867pt;}
.yd5{bottom:331.397651pt;}
.yd0{bottom:336.082918pt;}
.yae{bottom:336.789489pt;}
.ye9{bottom:337.056933pt;}
.y13d{bottom:337.553867pt;}
.y1d8{bottom:338.012000pt;}
.yb6{bottom:338.715185pt;}
.ya8{bottom:341.243888pt;}
.y178{bottom:343.210000pt;}
.y70{bottom:346.595867pt;}
.ye8{bottom:346.683067pt;}
.y20{bottom:347.123733pt;}
.y33{bottom:347.808800pt;}
.y1d7{bottom:351.345333pt;}
.y13c{bottom:351.548533pt;}
.yd6{bottom:355.738637pt;}
.yaf{bottom:359.014396pt;}
.y19a{bottom:362.102533pt;}
.y186{bottom:362.462533pt;}
.y6f{bottom:362.595867pt;}
.y1d6{bottom:364.678667pt;}
.yd1{bottom:365.538497pt;}
.y13b{bottom:365.543200pt;}
.y179{bottom:366.608374pt;}
.ya9{bottom:367.913776pt;}
.y181{bottom:368.837600pt;}
.y126{bottom:371.356400pt;}
.y1f{bottom:371.430400pt;}
.y1d5{bottom:378.012000pt;}
.y185{bottom:378.462533pt;}
.y6e{bottom:378.595867pt;}
.yd7{bottom:380.079623pt;}
.yb0{bottom:381.182799pt;}
.y125{bottom:385.351067pt;}
.y1e{bottom:387.430400pt;}
.y15e{bottom:388.554536pt;}
.y17a{bottom:390.767327pt;}
.y1d4{bottom:391.345333pt;}
.y184{bottom:394.462533pt;}
.yaa{bottom:394.527160pt;}
.y6d{bottom:394.595867pt;}
.yd2{bottom:394.630081pt;}
.yb1{bottom:403.407705pt;}
.y1d{bottom:403.430400pt;}
.yd8{bottom:404.485941pt;}
.y1d3{bottom:404.678667pt;}
.y15d{bottom:408.078282pt;}
.y90{bottom:410.235867pt;}
.y183{bottom:410.462533pt;}
.y6c{bottom:410.595867pt;}
.y17b{bottom:414.165701pt;}
.y1d2{bottom:418.012000pt;}
.y3b{bottom:419.324422pt;}
.y1c{bottom:419.430400pt;}
.yab{bottom:421.197048pt;}
.y154{bottom:423.870000pt;}
.yd3{bottom:424.150993pt;}
.yb2{bottom:425.632612pt;}
.y199{bottom:426.102533pt;}
.y182{bottom:426.462533pt;}
.y6b{bottom:426.595867pt;}
.yd9{bottom:428.836259pt;}
.y1d1{bottom:431.345333pt;}
.y147{bottom:434.341200pt;}
.y1b{bottom:435.430400pt;}
.y17c{bottom:437.564075pt;}
.y8f{bottom:442.462533pt;}
.y6a{bottom:442.595867pt;}
.y155{bottom:443.907799pt;}
.y1d0{bottom:444.678667pt;}
.yb3{bottom:447.801015pt;}
.yac{bottom:447.810432pt;}
.y1a{bottom:451.430400pt;}
.yd4{bottom:453.177245pt;}
.y148{bottom:457.223090pt;}
.y1cf{bottom:458.012000pt;}
.y59{bottom:458.462533pt;}
.y69{bottom:458.595867pt;}
.yc7{bottom:460.000096pt;}
.y17d{bottom:461.723028pt;}
.yed{bottom:461.915631pt;}
.y156{bottom:464.562462pt;}
.y19{bottom:467.430400pt;}
.y15f{bottom:469.119467pt;}
.y1ce{bottom:471.345333pt;}
.y198{bottom:474.102533pt;}
.y58{bottom:474.462533pt;}
.y68{bottom:474.595867pt;}
.yb4{bottom:475.120800pt;}
.y149{bottom:475.460557pt;}
.yda{bottom:477.701600pt;}
.y176{bottom:483.185200pt;}
.y18{bottom:483.430400pt;}
.y1cd{bottom:484.678667pt;}
.y157{bottom:484.692790pt;}
.y17e{bottom:485.121402pt;}
.y14a{bottom:489.575803pt;}
.y57{bottom:490.462533pt;}
.y67{bottom:490.595867pt;}
.y1cc{bottom:498.012000pt;}
.yea{bottom:499.166533pt;}
.y17{bottom:499.430400pt;}
.yb7{bottom:501.650933pt;}
.y158{bottom:505.306329pt;}
.y56{bottom:506.462533pt;}
.y66{bottom:506.595867pt;}
.y14d{bottom:506.878133pt;}
.y14b{bottom:507.732000pt;}
.y1cb{bottom:511.345333pt;}
.yf1{bottom:514.556133pt;}
.y16{bottom:515.430400pt;}
.yca{bottom:517.967171pt;}
.y55{bottom:522.462533pt;}
.ycb{bottom:522.547867pt;}
.y65{bottom:522.595867pt;}
.yef{bottom:524.416533pt;}
.y1ca{bottom:524.678667pt;}
.y159{bottom:525.344128pt;}
.y150{bottom:527.677793pt;}
.ya3{bottom:528.364533pt;}
.y15{bottom:531.430400pt;}
.yb5{bottom:531.607733pt;}
.y1c9{bottom:538.012000pt;}
.y5c{bottom:538.102533pt;}
.y54{bottom:538.462533pt;}
.y64{bottom:538.595867pt;}
.y15a{bottom:545.957667pt;}
.y14{bottom:547.430400pt;}
.ycc{bottom:550.366186pt;}
.y1c8{bottom:551.345333pt;}
.y14c{bottom:553.736038pt;}
.y5b{bottom:554.102533pt;}
.y53{bottom:554.462533pt;}
.y63{bottom:554.595867pt;}
.ya4{bottom:557.843477pt;}
.y13{bottom:563.430400pt;}
.y1c7{bottom:564.678667pt;}
.y15b{bottom:566.087995pt;}
.y197{bottom:570.102533pt;}
.y52{bottom:570.462533pt;}
.y62{bottom:570.595867pt;}
.y14e{bottom:571.881467pt;}
.y160{bottom:577.471200pt;}
.y1c6{bottom:578.012000pt;}
.ycd{bottom:578.728498pt;}
.y12{bottom:579.430400pt;}
.y128{bottom:582.535067pt;}
.y152{bottom:584.009250pt;}
.y5a{bottom:585.982533pt;}
.y51{bottom:586.462533pt;}
.y15c{bottom:586.742658pt;}
.ya5{bottom:586.773525pt;}
.y1c5{bottom:591.345333pt;}
.y14f{bottom:593.391079pt;}
.y11{bottom:595.430400pt;}
.y127{bottom:596.529733pt;}
.y61{bottom:602.235867pt;}
.y50{bottom:602.462533pt;}
.y153{bottom:602.769200pt;}
.y1c4{bottom:604.678667pt;}
.y144{bottom:605.325382pt;}
.yce{bottom:606.600149pt;}
.y146{bottom:613.195467pt;}
.yec{bottom:613.711067pt;}
.ya6{bottom:616.252469pt;}
.y1c3{bottom:618.012000pt;}
.y60{bottom:618.235867pt;}
.y4f{bottom:618.462533pt;}
.y13e{bottom:621.059867pt;}
.yc6{bottom:625.196267pt;}
.y1c2{bottom:631.345333pt;}
.y4e{bottom:634.462533pt;}
.y10{bottom:635.570933pt;}
.y162{bottom:638.245067pt;}
.y13f{bottom:641.145565pt;}
.y1c1{bottom:644.678667pt;}
.yf{bottom:646.638267pt;}
.y4d{bottom:650.462533pt;}
.y102{bottom:650.464533pt;}
.y112{bottom:650.597867pt;}
.y1c0{bottom:658.012000pt;}
.y140{bottom:661.757121pt;}
.y4c{bottom:666.462533pt;}
.y101{bottom:666.464533pt;}
.y111{bottom:666.597867pt;}
.y1bf{bottom:671.345333pt;}
.ye{bottom:679.652400pt;}
.y141{bottom:681.842819pt;}
.y4b{bottom:682.462533pt;}
.y100{bottom:682.464533pt;}
.y110{bottom:682.597867pt;}
.y1be{bottom:684.678667pt;}
.yd{bottom:686.829867pt;}
.y1bd{bottom:698.012000pt;}
.y4a{bottom:698.462533pt;}
.yff{bottom:698.464533pt;}
.y10f{bottom:698.597867pt;}
.y142{bottom:702.454374pt;}
.yc{bottom:703.652400pt;}
.yb{bottom:710.829867pt;}
.y1bc{bottom:711.345333pt;}
.y49{bottom:714.462533pt;}
.yfe{bottom:714.464533pt;}
.y10e{bottom:714.597867pt;}
.y143{bottom:722.540073pt;}
.y1bb{bottom:724.678667pt;}
.y161{bottom:726.334667pt;}
.y145{bottom:726.335067pt;}
.ya{bottom:727.652400pt;}
.y48{bottom:730.462533pt;}
.yfd{bottom:730.464533pt;}
.y8e{bottom:730.475867pt;}
.y10d{bottom:730.597867pt;}
.y151{bottom:734.531600pt;}
.y9{bottom:734.829867pt;}
.y1ba{bottom:738.012000pt;}
.ya0{bottom:746.102533pt;}
.y47{bottom:746.462533pt;}
.yfc{bottom:746.464533pt;}
.y8d{bottom:746.475867pt;}
.y10c{bottom:746.597867pt;}
.y1b9{bottom:751.345333pt;}
.y8{bottom:751.652400pt;}
.y9f{bottom:762.102533pt;}
.y46{bottom:762.462533pt;}
.yfb{bottom:762.464533pt;}
.y8c{bottom:762.475867pt;}
.y10b{bottom:762.597867pt;}
.y7{bottom:763.652400pt;}
.y1b8{bottom:764.678667pt;}
.y1b7{bottom:778.012000pt;}
.y12c{bottom:778.342533pt;}
.y45{bottom:778.462533pt;}
.yfa{bottom:778.464533pt;}
.y8b{bottom:778.475867pt;}
.y10a{bottom:778.597867pt;}
.y6{bottom:789.183067pt;}
.y1b6{bottom:791.345333pt;}
.y9e{bottom:793.982533pt;}
.y12b{bottom:794.342533pt;}
.y44{bottom:794.462533pt;}
.yf9{bottom:794.464533pt;}
.y8a{bottom:794.475867pt;}
.y109{bottom:794.597867pt;}
.y1b5{bottom:804.678667pt;}
.y43{bottom:810.462533pt;}
.yf8{bottom:810.464533pt;}
.y89{bottom:810.475867pt;}
.y108{bottom:810.597867pt;}
.y1b4{bottom:818.012000pt;}
.y12a{bottom:825.982533pt;}
.y42{bottom:826.462533pt;}
.yf7{bottom:826.464533pt;}
.y88{bottom:826.475867pt;}
.y107{bottom:826.597867pt;}
.y5{bottom:830.226133pt;}
.y1b3{bottom:831.345333pt;}
.y41{bottom:842.462533pt;}
.yf6{bottom:842.464533pt;}
.y87{bottom:842.475867pt;}
.y1b2{bottom:844.678667pt;}
.y1b1{bottom:858.012000pt;}
.y106{bottom:858.237867pt;}
.y40{bottom:858.462533pt;}
.yf5{bottom:858.464533pt;}
.y86{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1b0{bottom:871.345333pt;}
.y196{bottom:874.102533pt;}
.y3f{bottom:874.462533pt;}
.y117{bottom:874.462667pt;}
.yf4{bottom:874.464533pt;}
.y85{bottom:874.475867pt;}
.y1af{bottom:884.678667pt;}
.y3e{bottom:890.462533pt;}
.y116{bottom:890.462667pt;}
.y105{bottom:890.464533pt;}
.y84{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1ae{bottom:898.012000pt;}
.yf3{bottom:906.104533pt;}
.y3d{bottom:906.462533pt;}
.y115{bottom:906.462667pt;}
.y104{bottom:906.464533pt;}
.y83{bottom:906.475867pt;}
.y1ad{bottom:911.345333pt;}
.yf2{bottom:922.104533pt;}
.y3c{bottom:922.462533pt;}
.y114{bottom:922.462667pt;}
.y103{bottom:922.464533pt;}
.y82{bottom:922.475867pt;}
.y1ac{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1ab{bottom:1006.590133pt;}
.y5f{bottom:1006.592800pt;}
.y9d{bottom:1006.594400pt;}
.y1e6{bottom:1006.598667pt;}
.y129{bottom:1006.599067pt;}
.y113{bottom:1006.600000pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h2c{height:21.449299pt;}
.h8{height:25.255208pt;}
.h2e{height:25.687759pt;}
.h20{height:27.197528pt;}
.h2{height:27.197917pt;}
.h1a{height:27.442698pt;}
.h31{height:27.871329pt;}
.h32{height:27.875062pt;}
.h2a{height:27.952296pt;}
.h39{height:28.637259pt;}
.h7{height:29.160156pt;}
.h33{height:29.397768pt;}
.h3c{height:29.645833pt;}
.h37{height:30.279003pt;}
.h3a{height:30.762359pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h1b{height:31.363083pt;}
.h34{height:31.579302pt;}
.h24{height:32.757812pt;}
.h1e{height:33.052633pt;}
.h38{height:34.697470pt;}
.h11{height:36.836580pt;}
.h13{height:37.040195pt;}
.h15{height:37.057292pt;}
.h1f{height:37.437032pt;}
.h16{height:37.437500pt;}
.h19{height:37.774437pt;}
.h18{height:38.177083pt;}
.h2b{height:38.745005pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.hb{height:40.640000pt;}
.h12{height:40.888890pt;}
.h2d{height:41.704360pt;}
.h26{height:41.896462pt;}
.h27{height:41.896996pt;}
.h28{height:41.909796pt;}
.h29{height:41.910329pt;}
.h21{height:42.116720pt;}
.h23{height:42.117188pt;}
.h1c{height:42.496242pt;}
.h22{height:42.722271pt;}
.h1d{height:42.732566pt;}
.h2f{height:44.398535pt;}
.h35{height:44.921724pt;}
.hd{height:46.796875pt;}
.h3b{height:48.236875pt;}
.h30{height:48.750135pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h17{height:52.351911pt;}
.he{height:52.405245pt;}
.h25{height:52.429778pt;}
.h14{height:52.937561pt;}
.h36{height:67.298586pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x34{left:69.918533pt;}
.x25{left:76.449067pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x37{left:88.818933pt;}
.x21{left:91.194667pt;}
.x4{left:94.488133pt;}
.x22{left:96.730267pt;}
.x16{left:98.277200pt;}
.x2a{left:106.357728pt;}
.x29{left:107.509333pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x2c{left:125.794211pt;}
.x2b{left:127.056133pt;}
.x31{left:144.817733pt;}
.x32{left:148.264400pt;}
.x14{left:162.671600pt;}
.x20{left:187.644800pt;}
.x5{left:189.223467pt;}
.x56{left:191.832933pt;}
.x36{left:195.675867pt;}
.x4a{left:198.986667pt;}
.x54{left:204.668400pt;}
.x48{left:212.484898pt;}
.x39{left:214.905867pt;}
.x35{left:215.993067pt;}
.x47{left:218.221733pt;}
.x53{left:226.427051pt;}
.x3a{left:230.831140pt;}
.x49{left:232.430167pt;}
.x1a{left:235.284533pt;}
.x45{left:245.417600pt;}
.x3c{left:263.184667pt;}
.x46{left:264.658250pt;}
.x4d{left:269.192400pt;}
.x24{left:277.303200pt;}
.xf{left:279.892000pt;}
.x2e{left:297.400267pt;}
.x38{left:311.560267pt;}
.x33{left:313.214533pt;}
.xc{left:324.234667pt;}
.x15{left:342.807073pt;}
.x28{left:354.524533pt;}
.x27{left:356.047867pt;}
.x10{left:366.494667pt;}
.x30{left:372.685867pt;}
.x55{left:377.959733pt;}
.x4f{left:387.212594pt;}
.x3d{left:391.195043pt;}
.x4e{left:393.586529pt;}
.x52{left:397.996400pt;}
.xa{left:404.481333pt;}
.x17{left:406.290533pt;}
.x4b{left:407.925200pt;}
.x3e{left:421.609283pt;}
.x1d{left:425.209200pt;}
.x7{left:427.085333pt;}
.x58{left:428.970000pt;}
.x18{left:436.530533pt;}
.xe{left:437.922933pt;}
.x57{left:447.874133pt;}
.x1e{left:455.449200pt;}
.x8{left:457.328800pt;}
.x19{left:466.917200pt;}
.x12{left:478.962961pt;}
.x3b{left:496.759733pt;}
.x3f{left:497.707067pt;}
.x13{left:511.435978pt;}
.x44{left:514.764015pt;}
.x51{left:516.982331pt;}
.x50{left:523.356266pt;}
.xd{left:530.232400pt;}
.x4c{left:537.728739pt;}
.x40{left:539.257573pt;}
.x11{left:549.576206pt;}
.x41{left:556.408133pt;}
.x42{left:568.490667pt;}
.x1c{left:589.770933pt;}
.x43{left:604.024167pt;}
.x2{left:616.324800pt;}
.x59{left:641.540000pt;}
.x1b{left:647.455200pt;}
.x1f{left:666.356800pt;}
.x23{left:672.421271pt;}
.x2d{left:687.032253pt;}
.x26{left:704.466811pt;}
.x2f{left:721.303600pt;}
}




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