
    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_f5a8066e1ae4e7d36aaf5c78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_f0de3faedc01ff03f4541304.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_194204c8369973734d01e632.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0c6ecabfdd8f8cdd04e8347c.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_a26e6055928d41dc444015b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_3f56636b9ac7e946161ed621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_7b46bd116d10e42352c39747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_bc1514cfd9a896c4ccc01255.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;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_d56854fc0b632cea7d66263f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_f97def64162259a8c741a635.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_9520937d1c9b95fa9eeceb6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;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_48df19a146deb686930197b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.566000;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_c0aaff6e73a4dae6d569ba96.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.856934;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_3973b3e3ed4c7c88af6e3e55.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4d4b6b21f6a6500725379306.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_ac669c78efea9edeea710740.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.106000;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_c001508ea56979348e3cb431.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.577000;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_63dd021d33c7a4931e767c20.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b51fedd4aa99643fae32494f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.497000;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_3c40a34247f8b5d71bd6dbc2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.108000;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_c113083241dd4149dc28344f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e92a887b64d78bc55e88af2d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.121000;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_688126ce68e4e74efa0752c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.708000;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_f1130d6d66fca736758409e1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.429000;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;}
.m3{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);}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.m2{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);}
.v12{vertical-align:-41.868000px;}
.v1{vertical-align:-38.400000px;}
.v11{vertical-align:-35.868000px;}
.v5{vertical-align:-23.910000px;}
.v4{vertical-align:-20.922000px;}
.v2{vertical-align:-15.960000px;}
.v7{vertical-align:-9.852000px;}
.v17{vertical-align:-7.416000px;}
.v6{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:6.222000px;}
.va{vertical-align:10.536000px;}
.v9{vertical-align:13.170000px;}
.v8{vertical-align:14.610000px;}
.v15{vertical-align:16.944000px;}
.v16{vertical-align:21.774000px;}
.v3{vertical-align:23.016000px;}
.vf{vertical-align:24.138000px;}
.ve{vertical-align:30.138000px;}
.v10{vertical-align:32.082000px;}
.vc{vertical-align:34.920000px;}
.v14{vertical-align:42.090000px;}
.vb{vertical-align:46.764000px;}
.vd{vertical-align:66.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000144px;}
.ls3c{letter-spacing:0.000167px;}
.ls29{letter-spacing:0.000222px;}
.ls1a{letter-spacing:0.000233px;}
.ls2b{letter-spacing:0.000270px;}
.ls7{letter-spacing:0.000288px;}
.ls54{letter-spacing:0.000402px;}
.ls1c{letter-spacing:0.000447px;}
.ls2a{letter-spacing:0.000467px;}
.ls9{letter-spacing:0.000600px;}
.ls63{letter-spacing:0.002628px;}
.ls4d{letter-spacing:0.003171px;}
.ls1{letter-spacing:0.019200px;}
.ls72{letter-spacing:0.840275px;}
.ls41{letter-spacing:1.080259px;}
.ls4{letter-spacing:1.799964px;}
.ls3{letter-spacing:1.949961px;}
.ls75{letter-spacing:2.880362px;}
.ls26{letter-spacing:2.985120px;}
.ls74{letter-spacing:2.985983px;}
.ls61{letter-spacing:2.987616px;}
.lsd{letter-spacing:2.988096px;}
.ls35{letter-spacing:2.989560px;}
.lsf{letter-spacing:2.989632px;}
.ls83{letter-spacing:2.990467px;}
.ls20{letter-spacing:2.991120px;}
.ls66{letter-spacing:2.991983px;}
.ls4c{letter-spacing:2.992608px;}
.ls79{letter-spacing:2.993751px;}
.ls6a{letter-spacing:2.994096px;}
.ls2{letter-spacing:3.119961px;}
.ls5{letter-spacing:3.899961px;}
.ls53{letter-spacing:5.106578px;}
.ls5e{letter-spacing:5.110608px;}
.ls49{letter-spacing:6.160440px;}
.ls47{letter-spacing:6.164880px;}
.ls4e{letter-spacing:6.165171px;}
.ls48{letter-spacing:6.168395px;}
.ls46{letter-spacing:6.168447px;}
.ls3e{letter-spacing:6.660467px;}
.ls1b{letter-spacing:6.666233px;}
.ls19{letter-spacing:6.666395px;}
.ls17{letter-spacing:6.666447px;}
.ls18{letter-spacing:6.666467px;}
.ls62{letter-spacing:8.724578px;}
.ls33{letter-spacing:8.946222px;}
.ls50{letter-spacing:9.248880px;}
.ls21{letter-spacing:9.651120px;}
.ls22{letter-spacing:9.657120px;}
.ls2f{letter-spacing:9.996270px;}
.ls25{letter-spacing:9.996467px;}
.ls2e{letter-spacing:10.002467px;}
.ls6d{letter-spacing:11.039296px;}
.ls34{letter-spacing:11.040288px;}
.ls85{letter-spacing:11.040294px;}
.ls6c{letter-spacing:11.045296px;}
.ls71{letter-spacing:11.184270px;}
.ls6b{letter-spacing:11.953306px;}
.ls6e{letter-spacing:11.953584px;}
.ls68{letter-spacing:11.953728px;}
.ls67{letter-spacing:11.953987px;}
.ls70{letter-spacing:11.957184px;}
.ls69{letter-spacing:11.958758px;}
.ls58{letter-spacing:12.238608px;}
.ls2d{letter-spacing:12.987120px;}
.ls24{letter-spacing:12.993120px;}
.lsa{letter-spacing:13.200288px;}
.ls3d{letter-spacing:13.332167px;}
.ls23{letter-spacing:13.332467px;}
.ls7a{letter-spacing:13.422096px;}
.ls80{letter-spacing:13.572270px;}
.ls76{letter-spacing:13.626144px;}
.ls77{letter-spacing:13.632144px;}
.ls31{letter-spacing:13.794144px;}
.ls28{letter-spacing:13.794467px;}
.ls14{letter-spacing:13.800144px;}
.ls36{letter-spacing:13.800288px;}
.ls1f{letter-spacing:13.800447px;}
.ls1e{letter-spacing:13.800467px;}
.ls82{letter-spacing:13.800600px;}
.ls84{letter-spacing:13.818096px;}
.ls3f{letter-spacing:13.836233px;}
.ls37{letter-spacing:13.980270px;}
.ls7d{letter-spacing:13.992096px;}
.ls73{letter-spacing:14.025983px;}
.ls32{letter-spacing:14.028096px;}
.ls6f{letter-spacing:14.029306px;}
.ls86{letter-spacing:14.029344px;}
.ls7e{letter-spacing:14.034096px;}
.ls7b{letter-spacing:14.400436px;}
.ls64{letter-spacing:14.404608px;}
.ls4f{letter-spacing:15.406608px;}
.ls2c{letter-spacing:15.531120px;}
.ls38{letter-spacing:16.317120px;}
.ls7f{letter-spacing:16.377120px;}
.ls81{letter-spacing:16.515120px;}
.ls12{letter-spacing:16.785120px;}
.ls13{letter-spacing:16.791120px;}
.ls10{letter-spacing:17.323632px;}
.ls78{letter-spacing:17.400362px;}
.ls11{letter-spacing:17.509632px;}
.lse{letter-spacing:18.169632px;}
.ls59{letter-spacing:21.668880px;}
.lsc{letter-spacing:21.831983px;}
.ls7c{letter-spacing:21.834144px;}
.ls3a{letter-spacing:22.983120px;}
.ls15{letter-spacing:22.989120px;}
.ls44{letter-spacing:23.909708px;}
.lsb{letter-spacing:26.688288px;}
.ls6{letter-spacing:29.984605px;}
.ls60{letter-spacing:31.085708px;}
.ls16{letter-spacing:34.014467px;}
.ls3b{letter-spacing:34.020467px;}
.ls45{letter-spacing:36.317708px;}
.ls5a{letter-spacing:37.421708px;}
.ls5d{letter-spacing:75.557708px;}
.ls56{letter-spacing:78.449708px;}
.ls52{letter-spacing:127.241708px;}
.ls5c{letter-spacing:139.227582px;}
.ls43{letter-spacing:239.726694px;}
.ls57{letter-spacing:254.008608px;}
.ls65{letter-spacing:262.972608px;}
.ls51{letter-spacing:265.996608px;}
.ls4a{letter-spacing:268.426608px;}
.ls5f{letter-spacing:268.480608px;}
.ls5b{letter-spacing:278.416608px;}
.ls55{letter-spacing:323.574447px;}
.ls40{letter-spacing:361.056233px;}
.ls42{letter-spacing:382.343986px;}
.ls4b{letter-spacing:399.396506px;}
.ls27{letter-spacing:798.060233px;}
.ls30{letter-spacing:932.850167px;}
.ls39{letter-spacing:939.813120px;}
.ls1d{letter-spacing:959.739120px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa2{word-spacing:-55.007542px;}
.ws15{word-spacing:-50.423542px;}
.ws56{word-spacing:-45.839542px;}
.wsa3{word-spacing:-40.679661px;}
.ws26{word-spacing:-40.607662px;}
.ws12{word-spacing:-36.671542px;}
.wsd{word-spacing:-33.899661px;}
.ws49{word-spacing:-33.839662px;}
.ws19{word-spacing:-31.679712px;}
.ws29{word-spacing:-28.799712px;}
.ws8a{word-spacing:-27.599655px;}
.ws90{word-spacing:-27.455657px;}
.ws40{word-spacing:-27.119661px;}
.ws13{word-spacing:-27.116941px;}
.ws6{word-spacing:-27.107699px;}
.ws11{word-spacing:-27.069733px;}
.wsb2{word-spacing:-26.758660px;}
.ws5c{word-spacing:-25.919712px;}
.wsb8{word-spacing:-25.636954px;}
.wsae{word-spacing:-25.636660px;}
.ws3{word-spacing:-25.630954px;}
.wsa6{word-spacing:-25.630660px;}
.ws5{word-spacing:-23.039712px;}
.ws1a{word-spacing:-22.258368px;}
.ws2a{word-spacing:-20.234880px;}
.ws0{word-spacing:-18.984000px;}
.ws18{word-spacing:-18.693728px;}
.ws6a{word-spacing:-18.211392px;}
.ws22{word-spacing:-17.357842px;}
.ws1f{word-spacing:-17.337569px;}
.ws21{word-spacing:-17.291843px;}
.ws23{word-spacing:-17.225843px;}
.ws28{word-spacing:-17.091728px;}
.ws1d{word-spacing:-16.961846px;}
.ws8{word-spacing:-16.949661px;}
.wsb{word-spacing:-16.799664px;}
.ws66{word-spacing:-16.673136px;}
.ws6c{word-spacing:-16.667026px;}
.ws24{word-spacing:-16.631849px;}
.ws17{word-spacing:-16.565849px;}
.ws1b{word-spacing:-16.499850px;}
.ws3a{word-spacing:-16.319837px;}
.ws38{word-spacing:-16.317516px;}
.ws39{word-spacing:-16.259837px;}
.ws42{word-spacing:-16.187904px;}
.ws48{word-spacing:-15.839842px;}
.ws98{word-spacing:-15.831914px;}
.ws95{word-spacing:-15.779842px;}
.ws97{word-spacing:-15.779175px;}
.ws43{word-spacing:-15.719843px;}
.ws33{word-spacing:-15.659843px;}
.ws4c{word-spacing:-15.599844px;}
.ws4d{word-spacing:-15.539845px;}
.ws50{word-spacing:-15.479845px;}
.ws51{word-spacing:-15.419846px;}
.ws7e{word-spacing:-15.359846px;}
.ws4e{word-spacing:-15.299847px;}
.ws4f{word-spacing:-15.239848px;}
.ws9b{word-spacing:-15.179848px;}
.ws3f{word-spacing:-15.063393px;}
.ws3b{word-spacing:-15.063043px;}
.ws30{word-spacing:-15.062537px;}
.ws85{word-spacing:-15.062003px;}
.ws86{word-spacing:-15.061780px;}
.ws36{word-spacing:-15.060938px;}
.ws87{word-spacing:-15.060155px;}
.wsa4{word-spacing:-15.060104px;}
.ws27{word-spacing:-15.059849px;}
.ws57{word-spacing:-15.058553px;}
.ws59{word-spacing:-15.058180px;}
.ws3d{word-spacing:-15.058090px;}
.ws83{word-spacing:-15.057967px;}
.ws9a{word-spacing:-15.057940px;}
.ws34{word-spacing:-15.057718px;}
.ws7b{word-spacing:-15.057676px;}
.ws44{word-spacing:-15.057625px;}
.ws52{word-spacing:-15.057578px;}
.ws89{word-spacing:-15.057453px;}
.ws4b{word-spacing:-15.057393px;}
.ws53{word-spacing:-15.057386px;}
.ws54{word-spacing:-15.057229px;}
.ws45{word-spacing:-15.056973px;}
.ws37{word-spacing:-15.056691px;}
.ws84{word-spacing:-15.004806px;}
.ws81{word-spacing:-15.004704px;}
.ws4a{word-spacing:-15.001730px;}
.ws2b{word-spacing:-14.999850px;}
.ws9d{word-spacing:-14.999175px;}
.ws82{word-spacing:-14.998935px;}
.ws58{word-spacing:-14.998499px;}
.ws55{word-spacing:-14.998154px;}
.ws94{word-spacing:-14.997787px;}
.ws80{word-spacing:-14.997339px;}
.ws88{word-spacing:-14.996909px;}
.ws9e{word-spacing:-14.996839px;}
.ws35{word-spacing:-14.944303px;}
.wsa1{word-spacing:-14.938303px;}
.ws7{word-spacing:-14.879814px;}
.ws71{word-spacing:-14.579838px;}
.ws3e{word-spacing:-14.399856px;}
.ws41{word-spacing:-14.091728px;}
.ws2c{word-spacing:-13.967825px;}
.ws63{word-spacing:-13.553849px;}
.ws5d{word-spacing:-13.499850px;}
.ws64{word-spacing:-13.449170px;}
.wsb0{word-spacing:-13.151836px;}
.ws65{word-spacing:-12.959856px;}
.ws8c{word-spacing:-12.671842px;}
.ws8b{word-spacing:-12.623842px;}
.wsb5{word-spacing:-12.575843px;}
.ws91{word-spacing:-12.431845px;}
.ws8e{word-spacing:-12.383845px;}
.wsa9{word-spacing:-12.239847px;}
.ws7a{word-spacing:-12.095849px;}
.ws4{word-spacing:-12.047849px;}
.wsac{word-spacing:-12.045241px;}
.ws76{word-spacing:-12.045238px;}
.ws8f{word-spacing:-12.042826px;}
.ws77{word-spacing:-12.004499px;}
.ws8d{word-spacing:-12.004154px;}
.ws10{word-spacing:-11.999850px;}
.ws14{word-spacing:-11.999568px;}
.ws78{word-spacing:-11.998772px;}
.wsaf{word-spacing:-11.997453px;}
.wsb3{word-spacing:-11.955454px;}
.wsad{word-spacing:-11.519856px;}
.ws9{word-spacing:-10.240649px;}
.wsc{word-spacing:-10.199850px;}
.wsa{word-spacing:-5.639887px;}
.ws47{word-spacing:-4.199484px;}
.ws1c{word-spacing:-4.087232px;}
.ws9c{word-spacing:-3.599484px;}
.ws7d{word-spacing:-3.449484px;}
.ws2e{word-spacing:-3.443484px;}
.ws31{word-spacing:-3.352267px;}
.ws3c{word-spacing:-3.351728px;}
.ws79{word-spacing:-3.350521px;}
.ws7c{word-spacing:-3.292806px;}
.ws5a{word-spacing:-3.292535px;}
.ws46{word-spacing:-3.291436px;}
.wsaa{word-spacing:-3.003601px;}
.wsb7{word-spacing:-3.003079px;}
.ws93{word-spacing:-2.162083px;}
.ws92{word-spacing:-2.161987px;}
.wsab{word-spacing:-2.155987px;}
.wsb4{word-spacing:-2.128982px;}
.wsb1{word-spacing:-1.635590px;}
.ws20{word-spacing:-1.517986px;}
.ws99{word-spacing:-1.379986px;}
.ws96{word-spacing:-1.319987px;}
.wsa0{word-spacing:-1.079989px;}
.ws32{word-spacing:-1.041943px;}
.ws9f{word-spacing:-0.988806px;}
.ws7f{word-spacing:-0.982806px;}
.ws16{word-spacing:-0.723547px;}
.ws1e{word-spacing:-0.657480px;}
.ws25{word-spacing:-0.656952px;}
.ws2f{word-spacing:-0.599994px;}
.wsa8{word-spacing:-0.527993px;}
.wsa5{word-spacing:-0.525575px;}
.ws2{word-spacing:-0.494504px;}
.wsb9{word-spacing:-0.482590px;}
.ws2d{word-spacing:-0.479994px;}
.wsb6{word-spacing:-0.477217px;}
.wsa7{word-spacing:-0.476354px;}
.wse{word-spacing:-0.059999px;}
.ws5f{word-spacing:-0.053999px;}
.wsf{word-spacing:-0.035999px;}
.ws1{word-spacing:0.000000px;}
.ws5b{word-spacing:67.985245px;}
.ws72{word-spacing:76.136110px;}
.ws70{word-spacing:83.014022px;}
.ws6e{word-spacing:124.550830px;}
.ws60{word-spacing:180.375647px;}
.ws6f{word-spacing:195.896654px;}
.ws73{word-spacing:216.663244px;}
.ws61{word-spacing:241.117501px;}
.ws6d{word-spacing:255.326107px;}
.ws67{word-spacing:264.020011px;}
.ws6b{word-spacing:299.821613px;}
.ws68{word-spacing:318.235408px;}
.ws62{word-spacing:318.668110px;}
.ws5e{word-spacing:346.759913px;}
.ws69{word-spacing:360.948934px;}
.ws74{word-spacing:412.735065px;}
.ws75{word-spacing:777.007065px;}
._c{margin-left:-8.623265px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-5.291941px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-2.999970px;}
._1{margin-left:-1.996800px;}
._6{width:1.109978px;}
._7{width:2.339953px;}
._0{width:5.587200px;}
._12{width:6.667475px;}
._1c{width:9.436707px;}
._10{width:10.556175px;}
._d{width:12.216119px;}
._4{width:14.303821px;}
._b{width:16.169853px;}
._11{width:19.167529px;}
._1a{width:20.259793px;}
._1b{width:21.840097px;}
._f{width:25.297322px;}
._19{width:26.435081px;}
._a{width:27.947693px;}
._16{width:196.412291px;}
._18{width:198.777649px;}
._14{width:289.069281px;}
._15{width:301.218833px;}
._17{width:314.448686px;}
._13{width:332.437957px;}
._5{width:1175.673473px;}
._e{width:1604.169473px;}
.fc7{color:rgb(167,208,57);}
.fc6{color:rgb(210,32,39);}
.fc5{color:rgb(47,122,181);}
.fc4{color:rgb(0,110,178);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1a{font-size:27.100800px;}
.fsb{font-size:29.999400px;}
.fs12{font-size:33.724800px;}
.fsf{font-size:34.799400px;}
.fs10{font-size:35.999400px;}
.fs11{font-size:37.799400px;}
.fs19{font-size:37.940400px;}
.fsc{font-size:40.799400px;}
.fs1b{font-size:41.999400px;}
.fs8{font-size:42.000000px;}
.fs17{font-size:42.156000px;}
.fs14{font-size:46.371600px;}
.fs9{font-size:47.999400px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:49.072383px;}
.fs18{font-size:53.999400px;}
.fs5{font-size:54.000000px;}
.fsd{font-size:59.999400px;}
.fs15{font-size:65.699400px;}
.fs13{font-size:65.999400px;}
.fs2{font-size:66.000000px;}
.fs16{font-size:71.999400px;}
.fs3{font-size:72.000000px;}
.fse{font-size:75.881400px;}
.fs6{font-size:76.800000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fsa{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y14d{bottom:39.301500px;}
.yb5{bottom:39.391500px;}
.y101{bottom:39.481500px;}
.y13c{bottom:39.571500px;}
.y79{bottom:40.411500px;}
.y34{bottom:58.200000px;}
.yb4{bottom:71.053500px;}
.y15{bottom:77.715000px;}
.y78{bottom:81.160500px;}
.y17f{bottom:82.710000px;}
.y1e6{bottom:86.053500px;}
.y100{bottom:88.986000px;}
.yb3{bottom:89.803500px;}
.y1a{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y77{bottom:99.910500px;}
.y1e5{bottom:101.053500px;}
.y1ae{bottom:104.839500px;}
.yff{bottom:107.736000px;}
.yb2{bottom:108.553500px;}
.y173{bottom:110.688000px;}
.y19{bottom:113.670000px;}
.y1e4{bottom:116.053500px;}
.y76{bottom:118.660500px;}
.y1ad{bottom:123.589500px;}
.yfe{bottom:126.486000px;}
.yb1{bottom:127.303500px;}
.y172{bottom:129.438000px;}
.y1e3{bottom:131.053500px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y75{bottom:137.410500px;}
.y1ac{bottom:142.339500px;}
.yfd{bottom:145.236000px;}
.yb0{bottom:146.053500px;}
.y171{bottom:148.188000px;}
.y16{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y74{bottom:156.160500px;}
.y17{bottom:157.830000px;}
.y1e2{bottom:161.053500px;}
.y1ab{bottom:161.089500px;}
.yfc{bottom:163.986000px;}
.yaf{bottom:164.803500px;}
.y170{bottom:166.938000px;}
.y13b{bottom:172.033500px;}
.y73{bottom:174.910500px;}
.y1e1{bottom:176.053500px;}
.yfb{bottom:182.736000px;}
.yae{bottom:183.553500px;}
.y16f{bottom:185.688000px;}
.y13a{bottom:188.533500px;}
.y1e0{bottom:191.053500px;}
.y1aa{bottom:198.519000px;}
.yfa{bottom:201.486000px;}
.yad{bottom:202.303500px;}
.y16e{bottom:204.438000px;}
.y1df{bottom:206.053500px;}
.y139{bottom:209.269500px;}
.y72{bottom:212.340000px;}
.yf9{bottom:220.236000px;}
.yac{bottom:221.053500px;}
.y16d{bottom:223.188000px;}
.y138{bottom:225.769500px;}
.y1de{bottom:236.053500px;}
.y137{bottom:238.033500px;}
.yf8{bottom:238.986000px;}
.yab{bottom:239.803500px;}
.y16c{bottom:241.938000px;}
.y1a9{bottom:247.606500px;}
.y1dd{bottom:251.053500px;}
.yf7{bottom:257.736000px;}
.yaa{bottom:258.553500px;}
.y192{bottom:258.702000px;}
.y136{bottom:258.769500px;}
.y16b{bottom:260.688000px;}
.y1dc{bottom:266.053500px;}
.y1a8{bottom:266.356500px;}
.y135{bottom:271.033500px;}
.y71{bottom:275.145000px;}
.yf6{bottom:276.486000px;}
.ya9{bottom:277.303500px;}
.yd4{bottom:277.452000px;}
.y16a{bottom:279.438000px;}
.y1db{bottom:281.053500px;}
.y1a7{bottom:285.106500px;}
.y134{bottom:291.769500px;}
.y14c{bottom:295.236000px;}
.y70{bottom:295.395000px;}
.ya8{bottom:296.053500px;}
.y169{bottom:298.188000px;}
.y191{bottom:300.345000px;}
.y1a6{bottom:303.856500px;}
.y133{bottom:308.269500px;}
.yf5{bottom:310.027500px;}
.y1da{bottom:311.053500px;}
.yf4{bottom:313.320000px;}
.y14b{bottom:313.986000px;}
.ya7{bottom:314.803500px;}
.yd3{bottom:314.883000px;}
.y6f{bottom:315.645000px;}
.y168{bottom:316.938000px;}
.y190{bottom:319.095000px;}
.y1a5{bottom:322.606500px;}
.y132{bottom:324.769500px;}
.y1d9{bottom:326.053500px;}
.y14a{bottom:332.736000px;}
.y17e{bottom:333.553500px;}
.y167{bottom:335.688000px;}
.y6e{bottom:335.895000px;}
.y18f{bottom:337.845000px;}
.y6d{bottom:339.549000px;}
.y1d8{bottom:341.053500px;}
.y1a4{bottom:341.356500px;}
.ya{bottom:344.680500px;}
.y131{bottom:345.546000px;}
.ya6{bottom:349.273500px;}
.y149{bottom:351.486000px;}
.yd2{bottom:351.610500px;}
.y17d{bottom:352.303500px;}
.ya5{bottom:352.564500px;}
.y166{bottom:354.438000px;}
.y1d7{bottom:356.053500px;}
.y6c{bottom:356.145000px;}
.y18e{bottom:356.595000px;}
.yf3{bottom:358.363500px;}
.y1a3{bottom:360.106500px;}
.yf2{bottom:361.654500px;}
.y130{bottom:362.046000px;}
.y148{bottom:370.236000px;}
.yd1{bottom:370.360500px;}
.y17c{bottom:371.053500px;}
.y165{bottom:373.188000px;}
.y6b{bottom:376.395000px;}
.y1a2{bottom:378.856500px;}
.ya4{bottom:383.743500px;}
.y1d6{bottom:386.053500px;}
.yd{bottom:386.490000px;}
.yd0{bottom:389.110500px;}
.y147{bottom:389.134500px;}
.y17b{bottom:389.803500px;}
.yf1{bottom:391.905000px;}
.y164{bottom:391.938000px;}
.ycf{bottom:392.401500px;}
.y212{bottom:394.123500px;}
.y12f{bottom:394.647000px;}
.y9{bottom:395.689500px;}
.y6a{bottom:396.645000px;}
.y1a1{bottom:397.606500px;}
.y1d5{bottom:401.052000px;}
.ya3{bottom:402.493500px;}
.yce{bottom:407.860500px;}
.y17a{bottom:408.553500px;}
.y211{bottom:409.123500px;}
.yf0{bottom:410.655000px;}
.y163{bottom:410.688000px;}
.y12e{bottom:411.147000px;}
.y1d4{bottom:416.052000px;}
.y69{bottom:416.895000px;}
.ya2{bottom:421.243500px;}
.y18d{bottom:424.051500px;}
.y210{bottom:424.123500px;}
.ycd{bottom:426.610500px;}
.y179{bottom:427.452000px;}
.y12d{bottom:427.647000px;}
.y146{bottom:428.926500px;}
.yef{bottom:429.405000px;}
.y162{bottom:429.438000px;}
.y1d3{bottom:431.052000px;}
.yb{bottom:434.850000px;}
.y1a0{bottom:435.036000px;}
.y68{bottom:437.145000px;}
.y18c{bottom:437.550000px;}
.y20f{bottom:439.123500px;}
.ya1{bottom:439.993500px;}
.ycc{bottom:445.360500px;}
.y1d2{bottom:446.052000px;}
.y8{bottom:446.698500px;}
.y145{bottom:447.676500px;}
.yee{bottom:448.155000px;}
.y161{bottom:448.188000px;}
.y18b{bottom:451.050000px;}
.y20e{bottom:454.123500px;}
.y67{bottom:457.395000px;}
.ya0{bottom:458.743500px;}
.y12c{bottom:460.246500px;}
.y1d1{bottom:461.052000px;}
.ycb{bottom:464.110500px;}
.y18a{bottom:464.550000px;}
.y178{bottom:464.883000px;}
.y144{bottom:466.426500px;}
.y160{bottom:466.938000px;}
.yed{bottom:467.055000px;}
.y20d{bottom:469.123500px;}
.y1d0{bottom:476.052000px;}
.y12b{bottom:476.746500px;}
.y9f{bottom:477.493500px;}
.y66{bottom:477.645000px;}
.y189{bottom:478.050000px;}
.yca{bottom:482.860500px;}
.y19f{bottom:484.123500px;}
.y143{bottom:485.176500px;}
.y15f{bottom:485.688000px;}
.y11{bottom:488.055000px;}
.y1cf{bottom:491.052000px;}
.y188{bottom:491.550000px;}
.y9e{bottom:496.243500px;}
.y7{bottom:497.707500px;}
.y65{bottom:497.895000px;}
.y20c{bottom:499.123500px;}
.yc9{bottom:501.610500px;}
.y19e{bottom:502.873500px;}
.yec{bottom:503.638500px;}
.y15e{bottom:504.438000px;}
.y1ce{bottom:506.052000px;}
.y187{bottom:506.809500px;}
.y12a{bottom:509.347500px;}
.y20b{bottom:514.123500px;}
.y9d{bottom:514.993500px;}
.y64{bottom:518.145000px;}
.yc8{bottom:520.360500px;}
.y1cd{bottom:521.052000px;}
.y19d{bottom:521.623500px;}
.yeb{bottom:522.388500px;}
.y15d{bottom:523.188000px;}
.y129{bottom:525.847500px;}
.y20a{bottom:529.123500px;}
.y9c{bottom:533.743500px;}
.y1cc{bottom:536.052000px;}
.y12{bottom:538.230000px;}
.y63{bottom:538.395000px;}
.yc7{bottom:539.110500px;}
.y177{bottom:539.428500px;}
.y19c{bottom:540.373500px;}
.yea{bottom:541.138500px;}
.y15c{bottom:541.938000px;}
.y209{bottom:544.123500px;}
.y6{bottom:548.716500px;}
.y142{bottom:550.774500px;}
.y1cb{bottom:551.052000px;}
.y9b{bottom:552.493500px;}
.y176{bottom:552.928500px;}
.yc6{bottom:557.860500px;}
.y127{bottom:558.447000px;}
.y62{bottom:558.645000px;}
.y19b{bottom:559.123500px;}
.ye9{bottom:559.888500px;}
.y15b{bottom:560.688000px;}
.y141{bottom:564.274500px;}
.y1ca{bottom:566.052000px;}
.y175{bottom:566.428500px;}
.y128{bottom:570.366000px;}
.y208{bottom:574.123500px;}
.y126{bottom:574.947000px;}
.yc5{bottom:576.610500px;}
.y140{bottom:577.774500px;}
.y19a{bottom:577.873500px;}
.ye8{bottom:578.638500px;}
.y61{bottom:578.895000px;}
.y15a{bottom:579.438000px;}
.y174{bottom:579.928500px;}
.y1c9{bottom:581.052000px;}
.y9a{bottom:586.963500px;}
.y207{bottom:589.123500px;}
.y1b{bottom:589.605000px;}
.y99{bottom:590.254500px;}
.y13f{bottom:591.274500px;}
.yc4{bottom:595.360500px;}
.y1c8{bottom:596.052000px;}
.y199{bottom:596.623500px;}
.ye7{bottom:597.388500px;}
.y159{bottom:598.188000px;}
.y60{bottom:599.145000px;}
.y5{bottom:599.725500px;}
.y206{bottom:604.123500px;}
.y13e{bottom:604.774500px;}
.y123{bottom:605.382000px;}
.y1c7{bottom:611.052000px;}
.yc3{bottom:614.110500px;}
.y198{bottom:615.373500px;}
.ye6{bottom:616.138500px;}
.y158{bottom:616.938000px;}
.y125{bottom:617.301000px;}
.y13d{bottom:618.274500px;}
.y205{bottom:619.123500px;}
.y5f{bottom:619.395000px;}
.y98{bottom:621.433500px;}
.y122{bottom:621.882000px;}
.y1c6{bottom:626.052000px;}
.y124{bottom:627.612000px;}
.ye{bottom:631.920000px;}
.yc2{bottom:632.860500px;}
.y197{bottom:634.123500px;}
.ye5{bottom:634.888500px;}
.y157{bottom:635.688000px;}
.y5e{bottom:639.645000px;}
.y97{bottom:640.183500px;}
.y1c5{bottom:641.052000px;}
.y204{bottom:649.123500px;}
.y121{bottom:651.039000px;}
.yc1{bottom:651.610500px;}
.y203{bottom:651.756000px;}
.y196{bottom:652.873500px;}
.y120{bottom:653.472000px;}
.ye4{bottom:653.638500px;}
.y156{bottom:654.438000px;}
.y1c4{bottom:656.052000px;}
.y11e{bottom:657.030000px;}
.y96{bottom:658.933500px;}
.y5d{bottom:659.895000px;}
.y95{bottom:662.224500px;}
.y11f{bottom:662.760000px;}
.y11d{bottom:663.007500px;}
.y202{bottom:664.123500px;}
.yc0{bottom:670.360500px;}
.y1c3{bottom:671.052000px;}
.y195{bottom:671.623500px;}
.ye3{bottom:672.388500px;}
.y155{bottom:673.188000px;}
.y94{bottom:677.683500px;}
.y201{bottom:679.123500px;}
.y11c{bottom:679.507500px;}
.y5c{bottom:680.145000px;}
.y1c2{bottom:686.052000px;}
.ybf{bottom:689.110500px;}
.y194{bottom:690.373500px;}
.ye2{bottom:691.288500px;}
.y154{bottom:691.938000px;}
.y200{bottom:694.123500px;}
.y93{bottom:696.433500px;}
.y5b{bottom:700.395000px;}
.y1c1{bottom:701.052000px;}
.ybe{bottom:707.860500px;}
.y11a{bottom:708.933000px;}
.y193{bottom:709.123500px;}
.y153{bottom:710.688000px;}
.y92{bottom:715.183500px;}
.y1c0{bottom:716.052000px;}
.y5a{bottom:720.645000px;}
.y4a{bottom:720.883500px;}
.y1ff{bottom:724.123500px;}
.y119{bottom:725.433000px;}
.ybd{bottom:726.610500px;}
.ye1{bottom:727.873500px;}
.y11b{bottom:728.598000px;}
.y152{bottom:729.438000px;}
.y1bf{bottom:731.052000px;}
.y49{bottom:732.883500px;}
.y91{bottom:733.933500px;}
.y1fe{bottom:739.123500px;}
.y48{bottom:744.883500px;}
.ybc{bottom:745.360500px;}
.y1be{bottom:746.052000px;}
.ye0{bottom:746.623500px;}
.y151{bottom:748.188000px;}
.y90{bottom:752.683500px;}
.y118{bottom:754.101000px;}
.y1fd{bottom:754.123500px;}
.y47{bottom:756.883500px;}
.y116{bottom:758.682000px;}
.y1bd{bottom:761.052000px;}
.ybb{bottom:764.110500px;}
.y117{bottom:764.412000px;}
.y115{bottom:764.659500px;}
.ydf{bottom:765.373500px;}
.y150{bottom:766.938000px;}
.y46{bottom:768.883500px;}
.y1fc{bottom:769.123500px;}
.y8f{bottom:771.433500px;}
.y1fb{bottom:771.756000px;}
.y59{bottom:774.945000px;}
.y4{bottom:778.225500px;}
.y45{bottom:780.883500px;}
.y114{bottom:781.159500px;}
.yba{bottom:782.860500px;}
.yde{bottom:784.123500px;}
.y186{bottom:784.764000px;}
.y14f{bottom:785.688000px;}
.y8e{bottom:790.183500px;}
.y1bc{bottom:794.733000px;}
.y58{bottom:795.910500px;}
.y185{bottom:798.262500px;}
.y44{bottom:798.861000px;}
.y1fa{bottom:799.123500px;}
.ydd{bottom:802.873500px;}
.y8d{bottom:808.933500px;}
.y43{bottom:810.861000px;}
.y184{bottom:811.762500px;}
.y1f9{bottom:814.123500px;}
.y111{bottom:814.407000px;}
.y13{bottom:815.670000px;}
.y57{bottom:821.532000px;}
.ydc{bottom:821.623500px;}
.y42{bottom:822.861000px;}
.y14e{bottom:823.117500px;}
.y183{bottom:825.262500px;}
.y113{bottom:826.326000px;}
.y8c{bottom:827.683500px;}
.y1bb{bottom:828.766500px;}
.y1f8{bottom:829.123500px;}
.y110{bottom:830.907000px;}
.y41{bottom:834.861000px;}
.y112{bottom:836.637000px;}
.y182{bottom:838.762500px;}
.ydb{bottom:840.373500px;}
.y1f7{bottom:844.123500px;}
.yb9{bottom:845.383500px;}
.y8b{bottom:846.433500px;}
.y40{bottom:846.861000px;}
.y56{bottom:848.646000px;}
.y181{bottom:854.022000px;}
.yb8{bottom:858.883500px;}
.yda{bottom:859.123500px;}
.y55{bottom:863.646000px;}
.y8a{bottom:865.183500px;}
.y24{bottom:865.755000px;}
.y10f{bottom:866.055000px;}
.y1ba{bottom:866.196000px;}
.y180{bottom:867.522000px;}
.yb7{bottom:873.961500px;}
.y1f6{bottom:874.123500px;}
.y33{bottom:874.260000px;}
.yd9{bottom:877.873500px;}
.y54{bottom:877.899000px;}
.yd8{bottom:881.164500px;}
.y3f{bottom:882.424500px;}
.y89{bottom:883.933500px;}
.y32{bottom:886.260000px;}
.yb6{bottom:887.461500px;}
.y1f5{bottom:889.123500px;}
.y53{bottom:892.899000px;}
.y3e{bottom:894.288000px;}
.y23{bottom:894.855000px;}
.y10e{bottom:895.482000px;}
.yd7{bottom:896.623500px;}
.y31{bottom:898.260000px;}
.y1b9{bottom:900.229500px;}
.y1f4{bottom:904.123500px;}
.y3{bottom:905.716500px;}
.y52{bottom:907.899000px;}
.y30{bottom:910.260000px;}
.y10d{bottom:911.982000px;}
.y3d{bottom:913.789500px;}
.yd6{bottom:915.373500px;}
.y88{bottom:918.403500px;}
.y1b8{bottom:918.979500px;}
.y1f3{bottom:919.123500px;}
.y87{bottom:921.694500px;}
.y51{bottom:922.899000px;}
.y3c{bottom:925.653000px;}
.y2f{bottom:933.510000px;}
.yd5{bottom:934.123500px;}
.y22{bottom:935.235000px;}
.y1b7{bottom:937.729500px;}
.y50{bottom:937.899000px;}
.y10c{bottom:944.581500px;}
.y3b{bottom:945.154500px;}
.y2e{bottom:945.510000px;}
.y1f2{bottom:949.123500px;}
.y86{bottom:952.873500px;}
.y4f{bottom:954.243000px;}
.y1b6{bottom:956.479500px;}
.y3a{bottom:957.018000px;}
.y2d{bottom:957.510000px;}
.y10b{bottom:961.081500px;}
.y1f1{bottom:964.123500px;}
.y2{bottom:964.228500px;}
.y2c{bottom:969.510000px;}
.y85{bottom:971.623500px;}
.y4e{bottom:972.243000px;}
.y1b5{bottom:975.229500px;}
.y39{bottom:976.519500px;}
.y1f0{bottom:979.123500px;}
.y2b{bottom:981.510000px;}
.y21{bottom:982.365000px;}
.y38{bottom:988.320000px;}
.y1{bottom:989.716500px;}
.y84{bottom:990.373500px;}
.y10a{bottom:990.508500px;}
.y1ef{bottom:994.123500px;}
.y2a{bottom:1004.760000px;}
.y109{bottom:1007.008500px;}
.y83{bottom:1009.123500px;}
.y4d{bottom:1009.278000px;}
.y20{bottom:1011.165000px;}
.y1b4{bottom:1012.659000px;}
.y29{bottom:1016.760000px;}
.y1ee{bottom:1024.123500px;}
.y37{bottom:1024.152000px;}
.y82{bottom:1027.873500px;}
.y28{bottom:1028.760000px;}
.y1ed{bottom:1039.123500px;}
.y108{bottom:1039.608000px;}
.y1f{bottom:1039.965000px;}
.y27{bottom:1040.760000px;}
.y4c{bottom:1040.778000px;}
.y81{bottom:1046.623500px;}
.y1b3{bottom:1046.692500px;}
.y26{bottom:1052.760000px;}
.y1ec{bottom:1054.123500px;}
.y107{bottom:1056.108000px;}
.y80{bottom:1065.373500px;}
.y1b2{bottom:1065.442500px;}
.y1eb{bottom:1069.123500px;}
.y25{bottom:1078.260000px;}
.y1e{bottom:1081.485000px;}
.y4b{bottom:1081.581000px;}
.y7f{bottom:1084.123500px;}
.y1b1{bottom:1084.192500px;}
.y105{bottom:1088.709000px;}
.y106{bottom:1097.437500px;}
.y1ea{bottom:1099.123500px;}
.y7e{bottom:1102.873500px;}
.y1b0{bottom:1102.942500px;}
.y104{bottom:1105.209000px;}
.y1e9{bottom:1114.123500px;}
.y7d{bottom:1121.623500px;}
.y1af{bottom:1121.692500px;}
.y1e8{bottom:1129.123500px;}
.y103{bottom:1135.584000px;}
.y7c{bottom:1140.373500px;}
.y1d{bottom:1141.500000px;}
.y1e7{bottom:1144.123500px;}
.y36{bottom:1151.206500px;}
.y7b{bottom:1159.123500px;}
.y102{bottom:1161.867000px;}
.y1c{bottom:1167.165000px;}
.y35{bottom:1199.496000px;}
.y7a{bottom:1211.496000px;}
.h18{height:19.187680px;}
.h13{height:20.999580px;}
.h36{height:24.180682px;}
.h32{height:26.999550px;}
.h17{height:27.102170px;}
.h30{height:27.203267px;}
.h14{height:29.253170px;}
.h4{height:33.000000px;}
.h3c{height:33.503581px;}
.h12{height:33.599580px;}
.h19{height:34.079574px;}
.h10{height:34.415570px;}
.hd{height:36.000000px;}
.h37{height:36.125680px;}
.he{height:36.804287px;}
.h29{height:38.717570px;}
.h2c{height:40.499550px;}
.h39{height:41.124682px;}
.h15{height:41.999580px;}
.h35{height:42.125680px;}
.h26{height:42.599574px;}
.h38{height:42.605574px;}
.h20{height:43.019570px;}
.hf{height:43.804688px;}
.h25{height:44.033581px;}
.h24{height:44.039581px;}
.h3a{height:44.759581px;}
.h34{height:44.939570px;}
.h22{height:44.999550px;}
.h3b{height:45.623550px;}
.h1a{height:46.859574px;}
.h1c{height:47.321570px;}
.h16{height:47.967170px;}
.h1d{height:49.274550px;}
.ha{height:50.062500px;}
.h28{height:50.141267px;}
.h33{height:50.495267px;}
.h1e{height:51.119574px;}
.h2b{height:53.159550px;}
.hb{height:56.320312px;}
.h21{height:58.163550px;}
.h1f{height:58.169550px;}
.h3{height:58.406250px;}
.h23{height:59.063550px;}
.h27{height:59.069550px;}
.h2f{height:59.081550px;}
.h1b{height:63.884550px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h31{height:68.849570px;}
.h2e{height:68.855570px;}
.hc{height:72.000000px;}
.h9{height:75.093750px;}
.h11{height:75.599160px;}
.h2a{height:87.263550px;}
.h2d{height:104.717570px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:58.500000px;}
.x15{left:63.780000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x14{left:178.582500px;}
.x19{left:181.812000px;}
.x2{left:191.040000px;}
.x2c{left:193.975500px;}
.x7{left:200.715000px;}
.x5e{left:202.258500px;}
.x5c{left:205.582500px;}
.x66{left:207.819000px;}
.x13{left:213.105000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x29{left:231.622500px;}
.x60{left:237.838500px;}
.x39{left:238.849500px;}
.x5a{left:248.842500px;}
.x63{left:250.570500px;}
.x64{left:260.301000px;}
.x31{left:261.358500px;}
.x2e{left:267.102000px;}
.xc{left:287.715000px;}
.x34{left:290.073000px;}
.x48{left:292.881000px;}
.x2f{left:296.052000px;}
.x1a{left:305.467500px;}
.x3f{left:308.833500px;}
.xd{left:310.365000px;}
.x41{left:311.773500px;}
.x56{left:318.471000px;}
.x5b{left:323.076000px;}
.x20{left:331.804500px;}
.x33{left:336.771000px;}
.xe{left:343.710000px;}
.x4c{left:348.681000px;}
.x30{left:351.906000px;}
.x58{left:362.841000px;}
.x1c{left:364.656000px;}
.x59{left:374.061000px;}
.x16{left:385.366500px;}
.x37{left:386.571000px;}
.x36{left:387.981000px;}
.x47{left:393.117000px;}
.x26{left:396.397500px;}
.x25{left:399.324000px;}
.x24{left:414.739500px;}
.xf{left:421.680000px;}
.x1b{left:424.039500px;}
.x28{left:430.095000px;}
.x27{left:433.021500px;}
.x1e{left:436.069500px;}
.x54{left:437.809500px;}
.x1d{left:438.996000px;}
.x38{left:440.571000px;}
.x2b{left:442.857000px;}
.x62{left:452.023500px;}
.x44{left:461.854500px;}
.x50{left:462.988500px;}
.x4d{left:470.749500px;}
.x49{left:479.847000px;}
.x1f{left:484.737000px;}
.x51{left:504.955500px;}
.x3a{left:523.942500px;}
.x17{left:528.807000px;}
.x52{left:532.287000px;}
.x4a{left:541.564500px;}
.x2d{left:564.669000px;}
.x18{left:569.076000px;}
.x4b{left:589.788000px;}
.x10{left:605.490000px;}
.x65{left:625.578000px;}
.x12{left:627.990000px;}
.x3b{left:631.660500px;}
.x11{left:634.410000px;}
.xb{left:641.265000px;}
.x3c{left:644.575500px;}
.x3e{left:646.369500px;}
.x43{left:651.537000px;}
.x42{left:653.487000px;}
.x40{left:656.625000px;}
.x35{left:658.464000px;}
.x2a{left:659.716500px;}
.x3d{left:668.824500px;}
.x53{left:679.110000px;}
.x61{left:683.914500px;}
.x21{left:689.388000px;}
.x23{left:702.961500px;}
.x57{left:708.030000px;}
.x46{left:709.561500px;}
.x22{left:723.363000px;}
.x4e{left:737.190000px;}
.x5d{left:745.948500px;}
.x4f{left:750.690000px;}
.x55{left:759.514500px;}
.x45{left:782.836500px;}
.x32{left:787.642500px;}
.x5f{left:807.384000px;}
@media print{
.v12{vertical-align:-37.216000pt;}
.v1{vertical-align:-34.133333pt;}
.v11{vertical-align:-31.882667pt;}
.v5{vertical-align:-21.253333pt;}
.v4{vertical-align:-18.597333pt;}
.v2{vertical-align:-14.186667pt;}
.v7{vertical-align:-8.757333pt;}
.v17{vertical-align:-6.592000pt;}
.v6{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.530667pt;}
.va{vertical-align:9.365333pt;}
.v9{vertical-align:11.706667pt;}
.v8{vertical-align:12.986667pt;}
.v15{vertical-align:15.061333pt;}
.v16{vertical-align:19.354667pt;}
.v3{vertical-align:20.458667pt;}
.vf{vertical-align:21.456000pt;}
.ve{vertical-align:26.789333pt;}
.v10{vertical-align:28.517333pt;}
.vc{vertical-align:31.040000pt;}
.v14{vertical-align:37.413333pt;}
.vb{vertical-align:41.568000pt;}
.vd{vertical-align:58.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000128pt;}
.ls3c{letter-spacing:0.000148pt;}
.ls29{letter-spacing:0.000197pt;}
.ls1a{letter-spacing:0.000207pt;}
.ls2b{letter-spacing:0.000240pt;}
.ls7{letter-spacing:0.000256pt;}
.ls54{letter-spacing:0.000357pt;}
.ls1c{letter-spacing:0.000397pt;}
.ls2a{letter-spacing:0.000415pt;}
.ls9{letter-spacing:0.000533pt;}
.ls63{letter-spacing:0.002336pt;}
.ls4d{letter-spacing:0.002819pt;}
.ls1{letter-spacing:0.017067pt;}
.ls72{letter-spacing:0.746911pt;}
.ls41{letter-spacing:0.960230pt;}
.ls4{letter-spacing:1.599968pt;}
.ls3{letter-spacing:1.733299pt;}
.ls75{letter-spacing:2.560322pt;}
.ls26{letter-spacing:2.653440pt;}
.ls74{letter-spacing:2.654207pt;}
.ls61{letter-spacing:2.655659pt;}
.lsd{letter-spacing:2.656085pt;}
.ls35{letter-spacing:2.657387pt;}
.lsf{letter-spacing:2.657451pt;}
.ls83{letter-spacing:2.658193pt;}
.ls20{letter-spacing:2.658773pt;}
.ls66{letter-spacing:2.659541pt;}
.ls4c{letter-spacing:2.660096pt;}
.ls79{letter-spacing:2.661112pt;}
.ls6a{letter-spacing:2.661419pt;}
.ls2{letter-spacing:2.773299pt;}
.ls5{letter-spacing:3.466632pt;}
.ls53{letter-spacing:4.539180pt;}
.ls5e{letter-spacing:4.542763pt;}
.ls49{letter-spacing:5.475947pt;}
.ls47{letter-spacing:5.479893pt;}
.ls4e{letter-spacing:5.480152pt;}
.ls48{letter-spacing:5.483018pt;}
.ls46{letter-spacing:5.483064pt;}
.ls3e{letter-spacing:5.920415pt;}
.ls1b{letter-spacing:5.925541pt;}
.ls19{letter-spacing:5.925685pt;}
.ls17{letter-spacing:5.925731pt;}
.ls18{letter-spacing:5.925748pt;}
.ls62{letter-spacing:7.755180pt;}
.ls33{letter-spacing:7.952197pt;}
.ls50{letter-spacing:8.221226pt;}
.ls21{letter-spacing:8.578773pt;}
.ls22{letter-spacing:8.584107pt;}
.ls2f{letter-spacing:8.885573pt;}
.ls25{letter-spacing:8.885748pt;}
.ls2e{letter-spacing:8.891081pt;}
.ls6d{letter-spacing:9.812707pt;}
.ls34{letter-spacing:9.813589pt;}
.ls85{letter-spacing:9.813595pt;}
.ls6c{letter-spacing:9.818041pt;}
.ls71{letter-spacing:9.941573pt;}
.ls6b{letter-spacing:10.625161pt;}
.ls6e{letter-spacing:10.625408pt;}
.ls68{letter-spacing:10.625536pt;}
.ls67{letter-spacing:10.625766pt;}
.ls70{letter-spacing:10.628608pt;}
.ls69{letter-spacing:10.630007pt;}
.ls58{letter-spacing:10.878763pt;}
.ls2d{letter-spacing:11.544107pt;}
.ls24{letter-spacing:11.549440pt;}
.lsa{letter-spacing:11.733589pt;}
.ls3d{letter-spacing:11.850815pt;}
.ls23{letter-spacing:11.851081pt;}
.ls7a{letter-spacing:11.930752pt;}
.ls80{letter-spacing:12.064240pt;}
.ls76{letter-spacing:12.112128pt;}
.ls77{letter-spacing:12.117461pt;}
.ls31{letter-spacing:12.261461pt;}
.ls28{letter-spacing:12.261748pt;}
.ls14{letter-spacing:12.266795pt;}
.ls36{letter-spacing:12.266923pt;}
.ls1f{letter-spacing:12.267064pt;}
.ls1e{letter-spacing:12.267081pt;}
.ls82{letter-spacing:12.267200pt;}
.ls84{letter-spacing:12.282752pt;}
.ls3f{letter-spacing:12.298874pt;}
.ls37{letter-spacing:12.426907pt;}
.ls7d{letter-spacing:12.437419pt;}
.ls73{letter-spacing:12.467541pt;}
.ls32{letter-spacing:12.469419pt;}
.ls6f{letter-spacing:12.470494pt;}
.ls86{letter-spacing:12.470528pt;}
.ls7e{letter-spacing:12.474752pt;}
.ls7b{letter-spacing:12.800387pt;}
.ls64{letter-spacing:12.804096pt;}
.ls4f{letter-spacing:13.694763pt;}
.ls2c{letter-spacing:13.805440pt;}
.ls38{letter-spacing:14.504107pt;}
.ls7f{letter-spacing:14.557440pt;}
.ls81{letter-spacing:14.680107pt;}
.ls12{letter-spacing:14.920107pt;}
.ls13{letter-spacing:14.925440pt;}
.ls10{letter-spacing:15.398784pt;}
.ls78{letter-spacing:15.466989pt;}
.ls11{letter-spacing:15.564117pt;}
.lse{letter-spacing:16.150784pt;}
.ls59{letter-spacing:19.261226pt;}
.lsc{letter-spacing:19.406207pt;}
.ls7c{letter-spacing:19.408128pt;}
.ls3a{letter-spacing:20.429440pt;}
.ls15{letter-spacing:20.434773pt;}
.ls44{letter-spacing:21.253074pt;}
.lsb{letter-spacing:23.722923pt;}
.ls6{letter-spacing:26.652982pt;}
.ls60{letter-spacing:27.631741pt;}
.ls16{letter-spacing:30.235081pt;}
.ls3b{letter-spacing:30.240415pt;}
.ls45{letter-spacing:32.282407pt;}
.ls5a{letter-spacing:33.263741pt;}
.ls5d{letter-spacing:67.162407pt;}
.ls56{letter-spacing:69.733074pt;}
.ls52{letter-spacing:113.103741pt;}
.ls5c{letter-spacing:123.757851pt;}
.ls43{letter-spacing:213.090395pt;}
.ls57{letter-spacing:225.785429pt;}
.ls65{letter-spacing:233.753429pt;}
.ls51{letter-spacing:236.441429pt;}
.ls4a{letter-spacing:238.601429pt;}
.ls5f{letter-spacing:238.649429pt;}
.ls5b{letter-spacing:247.481429pt;}
.ls55{letter-spacing:287.621731pt;}
.ls40{letter-spacing:320.938874pt;}
.ls42{letter-spacing:339.861321pt;}
.ls4b{letter-spacing:355.019117pt;}
.ls27{letter-spacing:709.386874pt;}
.ls30{letter-spacing:829.200148pt;}
.ls39{letter-spacing:835.389440pt;}
.ls1d{letter-spacing:853.101440pt;}
.wsa2{word-spacing:-48.895593pt;}
.ws15{word-spacing:-44.820926pt;}
.ws56{word-spacing:-40.746259pt;}
.wsa3{word-spacing:-36.159699pt;}
.ws26{word-spacing:-36.095699pt;}
.ws12{word-spacing:-32.596926pt;}
.wsd{word-spacing:-30.133032pt;}
.ws49{word-spacing:-30.079699pt;}
.ws19{word-spacing:-28.159744pt;}
.ws29{word-spacing:-25.599744pt;}
.ws8a{word-spacing:-24.533027pt;}
.ws90{word-spacing:-24.405028pt;}
.ws40{word-spacing:-24.106365pt;}
.ws13{word-spacing:-24.103947pt;}
.ws6{word-spacing:-24.095732pt;}
.ws11{word-spacing:-24.061985pt;}
.wsb2{word-spacing:-23.785475pt;}
.ws5c{word-spacing:-23.039744pt;}
.wsb8{word-spacing:-22.788403pt;}
.wsae{word-spacing:-22.788142pt;}
.ws3{word-spacing:-22.783070pt;}
.wsa6{word-spacing:-22.782809pt;}
.ws5{word-spacing:-20.479744pt;}
.ws1a{word-spacing:-19.785216pt;}
.ws2a{word-spacing:-17.986560pt;}
.ws0{word-spacing:-16.874667pt;}
.ws18{word-spacing:-16.616647pt;}
.ws6a{word-spacing:-16.187904pt;}
.ws22{word-spacing:-15.429193pt;}
.ws1f{word-spacing:-15.411172pt;}
.ws21{word-spacing:-15.370527pt;}
.ws23{word-spacing:-15.311861pt;}
.ws28{word-spacing:-15.192647pt;}
.ws1d{word-spacing:-15.077196pt;}
.ws8{word-spacing:-15.066365pt;}
.wsb{word-spacing:-14.933035pt;}
.ws66{word-spacing:-14.820565pt;}
.ws6c{word-spacing:-14.815134pt;}
.ws24{word-spacing:-14.783866pt;}
.ws17{word-spacing:-14.725199pt;}
.ws1b{word-spacing:-14.666533pt;}
.ws3a{word-spacing:-14.506522pt;}
.ws38{word-spacing:-14.504459pt;}
.ws39{word-spacing:-14.453189pt;}
.ws42{word-spacing:-14.389248pt;}
.ws48{word-spacing:-14.079859pt;}
.ws98{word-spacing:-14.072813pt;}
.ws95{word-spacing:-14.026526pt;}
.ws97{word-spacing:-14.025933pt;}
.ws43{word-spacing:-13.973194pt;}
.ws33{word-spacing:-13.919861pt;}
.ws4c{word-spacing:-13.866528pt;}
.ws4d{word-spacing:-13.813195pt;}
.ws50{word-spacing:-13.759862pt;}
.ws51{word-spacing:-13.706530pt;}
.ws7e{word-spacing:-13.653197pt;}
.ws4e{word-spacing:-13.599864pt;}
.ws4f{word-spacing:-13.546531pt;}
.ws9b{word-spacing:-13.493198pt;}
.ws3f{word-spacing:-13.389683pt;}
.ws3b{word-spacing:-13.389372pt;}
.ws30{word-spacing:-13.388922pt;}
.ws85{word-spacing:-13.388447pt;}
.ws86{word-spacing:-13.388249pt;}
.ws36{word-spacing:-13.387500pt;}
.ws87{word-spacing:-13.386804pt;}
.wsa4{word-spacing:-13.386759pt;}
.ws27{word-spacing:-13.386533pt;}
.ws57{word-spacing:-13.385381pt;}
.ws59{word-spacing:-13.385049pt;}
.ws3d{word-spacing:-13.384969pt;}
.ws83{word-spacing:-13.384860pt;}
.ws9a{word-spacing:-13.384836pt;}
.ws34{word-spacing:-13.384638pt;}
.ws7b{word-spacing:-13.384601pt;}
.ws44{word-spacing:-13.384556pt;}
.ws52{word-spacing:-13.384514pt;}
.ws89{word-spacing:-13.384403pt;}
.ws4b{word-spacing:-13.384349pt;}
.ws53{word-spacing:-13.384343pt;}
.ws54{word-spacing:-13.384203pt;}
.ws45{word-spacing:-13.383976pt;}
.ws37{word-spacing:-13.383725pt;}
.ws84{word-spacing:-13.337605pt;}
.ws81{word-spacing:-13.337515pt;}
.ws4a{word-spacing:-13.334871pt;}
.ws2b{word-spacing:-13.333200pt;}
.ws9d{word-spacing:-13.332600pt;}
.ws82{word-spacing:-13.332387pt;}
.ws58{word-spacing:-13.331999pt;}
.ws55{word-spacing:-13.331693pt;}
.ws94{word-spacing:-13.331366pt;}
.ws80{word-spacing:-13.330968pt;}
.ws88{word-spacing:-13.330586pt;}
.ws9e{word-spacing:-13.330523pt;}
.ws35{word-spacing:-13.283825pt;}
.wsa1{word-spacing:-13.278492pt;}
.ws7{word-spacing:-13.226501pt;}
.ws71{word-spacing:-12.959856pt;}
.ws3e{word-spacing:-12.799872pt;}
.ws41{word-spacing:-12.525980pt;}
.ws2c{word-spacing:-12.415845pt;}
.ws63{word-spacing:-12.047866pt;}
.ws5d{word-spacing:-11.999867pt;}
.ws64{word-spacing:-11.954818pt;}
.wsb0{word-spacing:-11.690521pt;}
.ws65{word-spacing:-11.519872pt;}
.ws8c{word-spacing:-11.263859pt;}
.ws8b{word-spacing:-11.221193pt;}
.wsb5{word-spacing:-11.178527pt;}
.ws91{word-spacing:-11.050529pt;}
.ws8e{word-spacing:-11.007862pt;}
.wsa9{word-spacing:-10.879864pt;}
.ws7a{word-spacing:-10.751866pt;}
.ws4{word-spacing:-10.709199pt;}
.wsac{word-spacing:-10.706881pt;}
.ws76{word-spacing:-10.706878pt;}
.ws8f{word-spacing:-10.704734pt;}
.ws77{word-spacing:-10.670666pt;}
.ws8d{word-spacing:-10.670359pt;}
.ws10{word-spacing:-10.666533pt;}
.ws14{word-spacing:-10.666283pt;}
.ws78{word-spacing:-10.665575pt;}
.wsaf{word-spacing:-10.664403pt;}
.wsb3{word-spacing:-10.627070pt;}
.wsad{word-spacing:-10.239872pt;}
.ws9{word-spacing:-9.102799pt;}
.wsc{word-spacing:-9.066533pt;}
.wsa{word-spacing:-5.013233pt;}
.ws47{word-spacing:-3.732875pt;}
.ws1c{word-spacing:-3.633095pt;}
.ws9c{word-spacing:-3.199541pt;}
.ws7d{word-spacing:-3.066208pt;}
.ws2e{word-spacing:-3.060875pt;}
.ws31{word-spacing:-2.979793pt;}
.ws3c{word-spacing:-2.979314pt;}
.ws79{word-spacing:-2.978241pt;}
.ws7c{word-spacing:-2.926939pt;}
.ws5a{word-spacing:-2.926698pt;}
.ws46{word-spacing:-2.925721pt;}
.wsaa{word-spacing:-2.669868pt;}
.wsb7{word-spacing:-2.669403pt;}
.ws93{word-spacing:-1.921852pt;}
.ws92{word-spacing:-1.921766pt;}
.wsab{word-spacing:-1.916433pt;}
.wsb4{word-spacing:-1.892429pt;}
.wsb1{word-spacing:-1.453858pt;}
.ws20{word-spacing:-1.349321pt;}
.ws99{word-spacing:-1.226654pt;}
.ws96{word-spacing:-1.173322pt;}
.wsa0{word-spacing:-0.959990pt;}
.ws32{word-spacing:-0.926172pt;}
.ws9f{word-spacing:-0.878939pt;}
.ws7f{word-spacing:-0.873605pt;}
.ws16{word-spacing:-0.643153pt;}
.ws1e{word-spacing:-0.584427pt;}
.ws25{word-spacing:-0.583957pt;}
.ws2f{word-spacing:-0.533328pt;}
.wsa8{word-spacing:-0.469327pt;}
.wsa5{word-spacing:-0.467178pt;}
.ws2{word-spacing:-0.439559pt;}
.wsb9{word-spacing:-0.428969pt;}
.ws2d{word-spacing:-0.426661pt;}
.wsb6{word-spacing:-0.424193pt;}
.wsa7{word-spacing:-0.423426pt;}
.wse{word-spacing:-0.053333pt;}
.ws5f{word-spacing:-0.047999pt;}
.wsf{word-spacing:-0.031999pt;}
.ws1{word-spacing:0.000000pt;}
.ws5b{word-spacing:60.431329pt;}
.ws72{word-spacing:67.676542pt;}
.ws70{word-spacing:73.790242pt;}
.ws6e{word-spacing:110.711849pt;}
.ws60{word-spacing:160.333908pt;}
.ws6f{word-spacing:174.130359pt;}
.ws73{word-spacing:192.589550pt;}
.ws61{word-spacing:214.326668pt;}
.ws6d{word-spacing:226.956540pt;}
.ws67{word-spacing:234.684454pt;}
.ws6b{word-spacing:266.508100pt;}
.ws68{word-spacing:282.875918pt;}
.ws62{word-spacing:283.260542pt;}
.ws5e{word-spacing:308.231034pt;}
.ws69{word-spacing:320.843497pt;}
.ws74{word-spacing:366.875613pt;}
.ws75{word-spacing:690.672947pt;}
._c{margin-left:-7.665125pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-4.703948pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.666640pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.986647pt;}
._7{width:2.079958pt;}
._0{width:4.966400pt;}
._12{width:5.926644pt;}
._1c{width:8.388184pt;}
._10{width:9.383267pt;}
._d{width:10.858773pt;}
._4{width:12.714508pt;}
._b{width:14.373203pt;}
._11{width:17.037803pt;}
._1a{width:18.008705pt;}
._1b{width:19.413419pt;}
._f{width:22.486509pt;}
._19{width:23.497850pt;}
._a{width:24.842394pt;}
._16{width:174.588703pt;}
._18{width:176.691244pt;}
._14{width:256.950472pt;}
._15{width:267.750074pt;}
._17{width:279.509943pt;}
._13{width:295.500406pt;}
._5{width:1045.043087pt;}
._e{width:1425.928420pt;}
.fs1a{font-size:24.089600pt;}
.fsb{font-size:26.666133pt;}
.fs12{font-size:29.977600pt;}
.fsf{font-size:30.932800pt;}
.fs10{font-size:31.999467pt;}
.fs11{font-size:33.599467pt;}
.fs19{font-size:33.724800pt;}
.fsc{font-size:36.266133pt;}
.fs1b{font-size:37.332800pt;}
.fs8{font-size:37.333333pt;}
.fs17{font-size:37.472000pt;}
.fs14{font-size:41.219200pt;}
.fs9{font-size:42.666133pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:43.619896pt;}
.fs18{font-size:47.999467pt;}
.fs5{font-size:48.000000pt;}
.fsd{font-size:53.332800pt;}
.fs15{font-size:58.399467pt;}
.fs13{font-size:58.666133pt;}
.fs2{font-size:58.666667pt;}
.fs16{font-size:63.999467pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:67.450133pt;}
.fs6{font-size:68.266667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fsa{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y14d{bottom:34.934667pt;}
.yb5{bottom:35.014667pt;}
.y101{bottom:35.094667pt;}
.y13c{bottom:35.174667pt;}
.y79{bottom:35.921333pt;}
.y34{bottom:51.733333pt;}
.yb4{bottom:63.158667pt;}
.y15{bottom:69.080000pt;}
.y78{bottom:72.142667pt;}
.y17f{bottom:73.520000pt;}
.y1e6{bottom:76.492000pt;}
.y100{bottom:79.098667pt;}
.yb3{bottom:79.825333pt;}
.y1a{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y77{bottom:88.809333pt;}
.y1e5{bottom:89.825333pt;}
.y1ae{bottom:93.190667pt;}
.yff{bottom:95.765333pt;}
.yb2{bottom:96.492000pt;}
.y173{bottom:98.389333pt;}
.y19{bottom:101.040000pt;}
.y1e4{bottom:103.158667pt;}
.y76{bottom:105.476000pt;}
.y1ad{bottom:109.857333pt;}
.yfe{bottom:112.432000pt;}
.yb1{bottom:113.158667pt;}
.y172{bottom:115.056000pt;}
.y1e3{bottom:116.492000pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y75{bottom:122.142667pt;}
.y1ac{bottom:126.524000pt;}
.yfd{bottom:129.098667pt;}
.yb0{bottom:129.825333pt;}
.y171{bottom:131.722667pt;}
.y16{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y74{bottom:138.809333pt;}
.y17{bottom:140.293333pt;}
.y1e2{bottom:143.158667pt;}
.y1ab{bottom:143.190667pt;}
.yfc{bottom:145.765333pt;}
.yaf{bottom:146.492000pt;}
.y170{bottom:148.389333pt;}
.y13b{bottom:152.918667pt;}
.y73{bottom:155.476000pt;}
.y1e1{bottom:156.492000pt;}
.yfb{bottom:162.432000pt;}
.yae{bottom:163.158667pt;}
.y16f{bottom:165.056000pt;}
.y13a{bottom:167.585333pt;}
.y1e0{bottom:169.825333pt;}
.y1aa{bottom:176.461333pt;}
.yfa{bottom:179.098667pt;}
.yad{bottom:179.825333pt;}
.y16e{bottom:181.722667pt;}
.y1df{bottom:183.158667pt;}
.y139{bottom:186.017333pt;}
.y72{bottom:188.746667pt;}
.yf9{bottom:195.765333pt;}
.yac{bottom:196.492000pt;}
.y16d{bottom:198.389333pt;}
.y138{bottom:200.684000pt;}
.y1de{bottom:209.825333pt;}
.y137{bottom:211.585333pt;}
.yf8{bottom:212.432000pt;}
.yab{bottom:213.158667pt;}
.y16c{bottom:215.056000pt;}
.y1a9{bottom:220.094667pt;}
.y1dd{bottom:223.158667pt;}
.yf7{bottom:229.098667pt;}
.yaa{bottom:229.825333pt;}
.y192{bottom:229.957333pt;}
.y136{bottom:230.017333pt;}
.y16b{bottom:231.722667pt;}
.y1dc{bottom:236.492000pt;}
.y1a8{bottom:236.761333pt;}
.y135{bottom:240.918667pt;}
.y71{bottom:244.573333pt;}
.yf6{bottom:245.765333pt;}
.ya9{bottom:246.492000pt;}
.yd4{bottom:246.624000pt;}
.y16a{bottom:248.389333pt;}
.y1db{bottom:249.825333pt;}
.y1a7{bottom:253.428000pt;}
.y134{bottom:259.350667pt;}
.y14c{bottom:262.432000pt;}
.y70{bottom:262.573333pt;}
.ya8{bottom:263.158667pt;}
.y169{bottom:265.056000pt;}
.y191{bottom:266.973333pt;}
.y1a6{bottom:270.094667pt;}
.y133{bottom:274.017333pt;}
.yf5{bottom:275.580000pt;}
.y1da{bottom:276.492000pt;}
.yf4{bottom:278.506667pt;}
.y14b{bottom:279.098667pt;}
.ya7{bottom:279.825333pt;}
.yd3{bottom:279.896000pt;}
.y6f{bottom:280.573333pt;}
.y168{bottom:281.722667pt;}
.y190{bottom:283.640000pt;}
.y1a5{bottom:286.761333pt;}
.y132{bottom:288.684000pt;}
.y1d9{bottom:289.825333pt;}
.y14a{bottom:295.765333pt;}
.y17e{bottom:296.492000pt;}
.y167{bottom:298.389333pt;}
.y6e{bottom:298.573333pt;}
.y18f{bottom:300.306667pt;}
.y6d{bottom:301.821333pt;}
.y1d8{bottom:303.158667pt;}
.y1a4{bottom:303.428000pt;}
.ya{bottom:306.382667pt;}
.y131{bottom:307.152000pt;}
.ya6{bottom:310.465333pt;}
.y149{bottom:312.432000pt;}
.yd2{bottom:312.542667pt;}
.y17d{bottom:313.158667pt;}
.ya5{bottom:313.390667pt;}
.y166{bottom:315.056000pt;}
.y1d7{bottom:316.492000pt;}
.y6c{bottom:316.573333pt;}
.y18e{bottom:316.973333pt;}
.yf3{bottom:318.545333pt;}
.y1a3{bottom:320.094667pt;}
.yf2{bottom:321.470667pt;}
.y130{bottom:321.818667pt;}
.y148{bottom:329.098667pt;}
.yd1{bottom:329.209333pt;}
.y17c{bottom:329.825333pt;}
.y165{bottom:331.722667pt;}
.y6b{bottom:334.573333pt;}
.y1a2{bottom:336.761333pt;}
.ya4{bottom:341.105333pt;}
.y1d6{bottom:343.158667pt;}
.yd{bottom:343.546667pt;}
.yd0{bottom:345.876000pt;}
.y147{bottom:345.897333pt;}
.y17b{bottom:346.492000pt;}
.yf1{bottom:348.360000pt;}
.y164{bottom:348.389333pt;}
.ycf{bottom:348.801333pt;}
.y212{bottom:350.332000pt;}
.y12f{bottom:350.797333pt;}
.y9{bottom:351.724000pt;}
.y6a{bottom:352.573333pt;}
.y1a1{bottom:353.428000pt;}
.y1d5{bottom:356.490667pt;}
.ya3{bottom:357.772000pt;}
.yce{bottom:362.542667pt;}
.y17a{bottom:363.158667pt;}
.y211{bottom:363.665333pt;}
.yf0{bottom:365.026667pt;}
.y163{bottom:365.056000pt;}
.y12e{bottom:365.464000pt;}
.y1d4{bottom:369.824000pt;}
.y69{bottom:370.573333pt;}
.ya2{bottom:374.438667pt;}
.y18d{bottom:376.934667pt;}
.y210{bottom:376.998667pt;}
.ycd{bottom:379.209333pt;}
.y179{bottom:379.957333pt;}
.y12d{bottom:380.130667pt;}
.y146{bottom:381.268000pt;}
.yef{bottom:381.693333pt;}
.y162{bottom:381.722667pt;}
.y1d3{bottom:383.157333pt;}
.yb{bottom:386.533333pt;}
.y1a0{bottom:386.698667pt;}
.y68{bottom:388.573333pt;}
.y18c{bottom:388.933333pt;}
.y20f{bottom:390.332000pt;}
.ya1{bottom:391.105333pt;}
.ycc{bottom:395.876000pt;}
.y1d2{bottom:396.490667pt;}
.y8{bottom:397.065333pt;}
.y145{bottom:397.934667pt;}
.yee{bottom:398.360000pt;}
.y161{bottom:398.389333pt;}
.y18b{bottom:400.933333pt;}
.y20e{bottom:403.665333pt;}
.y67{bottom:406.573333pt;}
.ya0{bottom:407.772000pt;}
.y12c{bottom:409.108000pt;}
.y1d1{bottom:409.824000pt;}
.ycb{bottom:412.542667pt;}
.y18a{bottom:412.933333pt;}
.y178{bottom:413.229333pt;}
.y144{bottom:414.601333pt;}
.y160{bottom:415.056000pt;}
.yed{bottom:415.160000pt;}
.y20d{bottom:416.998667pt;}
.y1d0{bottom:423.157333pt;}
.y12b{bottom:423.774667pt;}
.y9f{bottom:424.438667pt;}
.y66{bottom:424.573333pt;}
.y189{bottom:424.933333pt;}
.yca{bottom:429.209333pt;}
.y19f{bottom:430.332000pt;}
.y143{bottom:431.268000pt;}
.y15f{bottom:431.722667pt;}
.y11{bottom:433.826667pt;}
.y1cf{bottom:436.490667pt;}
.y188{bottom:436.933333pt;}
.y9e{bottom:441.105333pt;}
.y7{bottom:442.406667pt;}
.y65{bottom:442.573333pt;}
.y20c{bottom:443.665333pt;}
.yc9{bottom:445.876000pt;}
.y19e{bottom:446.998667pt;}
.yec{bottom:447.678667pt;}
.y15e{bottom:448.389333pt;}
.y1ce{bottom:449.824000pt;}
.y187{bottom:450.497333pt;}
.y12a{bottom:452.753333pt;}
.y20b{bottom:456.998667pt;}
.y9d{bottom:457.772000pt;}
.y64{bottom:460.573333pt;}
.yc8{bottom:462.542667pt;}
.y1cd{bottom:463.157333pt;}
.y19d{bottom:463.665333pt;}
.yeb{bottom:464.345333pt;}
.y15d{bottom:465.056000pt;}
.y129{bottom:467.420000pt;}
.y20a{bottom:470.332000pt;}
.y9c{bottom:474.438667pt;}
.y1cc{bottom:476.490667pt;}
.y12{bottom:478.426667pt;}
.y63{bottom:478.573333pt;}
.yc7{bottom:479.209333pt;}
.y177{bottom:479.492000pt;}
.y19c{bottom:480.332000pt;}
.yea{bottom:481.012000pt;}
.y15c{bottom:481.722667pt;}
.y209{bottom:483.665333pt;}
.y6{bottom:487.748000pt;}
.y142{bottom:489.577333pt;}
.y1cb{bottom:489.824000pt;}
.y9b{bottom:491.105333pt;}
.y176{bottom:491.492000pt;}
.yc6{bottom:495.876000pt;}
.y127{bottom:496.397333pt;}
.y62{bottom:496.573333pt;}
.y19b{bottom:496.998667pt;}
.ye9{bottom:497.678667pt;}
.y15b{bottom:498.389333pt;}
.y141{bottom:501.577333pt;}
.y1ca{bottom:503.157333pt;}
.y175{bottom:503.492000pt;}
.y128{bottom:506.992000pt;}
.y208{bottom:510.332000pt;}
.y126{bottom:511.064000pt;}
.yc5{bottom:512.542667pt;}
.y140{bottom:513.577333pt;}
.y19a{bottom:513.665333pt;}
.ye8{bottom:514.345333pt;}
.y61{bottom:514.573333pt;}
.y15a{bottom:515.056000pt;}
.y174{bottom:515.492000pt;}
.y1c9{bottom:516.490667pt;}
.y9a{bottom:521.745333pt;}
.y207{bottom:523.665333pt;}
.y1b{bottom:524.093333pt;}
.y99{bottom:524.670667pt;}
.y13f{bottom:525.577333pt;}
.yc4{bottom:529.209333pt;}
.y1c8{bottom:529.824000pt;}
.y199{bottom:530.332000pt;}
.ye7{bottom:531.012000pt;}
.y159{bottom:531.722667pt;}
.y60{bottom:532.573333pt;}
.y5{bottom:533.089333pt;}
.y206{bottom:536.998667pt;}
.y13e{bottom:537.577333pt;}
.y123{bottom:538.117333pt;}
.y1c7{bottom:543.157333pt;}
.yc3{bottom:545.876000pt;}
.y198{bottom:546.998667pt;}
.ye6{bottom:547.678667pt;}
.y158{bottom:548.389333pt;}
.y125{bottom:548.712000pt;}
.y13d{bottom:549.577333pt;}
.y205{bottom:550.332000pt;}
.y5f{bottom:550.573333pt;}
.y98{bottom:552.385333pt;}
.y122{bottom:552.784000pt;}
.y1c6{bottom:556.490667pt;}
.y124{bottom:557.877333pt;}
.ye{bottom:561.706667pt;}
.yc2{bottom:562.542667pt;}
.y197{bottom:563.665333pt;}
.ye5{bottom:564.345333pt;}
.y157{bottom:565.056000pt;}
.y5e{bottom:568.573333pt;}
.y97{bottom:569.052000pt;}
.y1c5{bottom:569.824000pt;}
.y204{bottom:576.998667pt;}
.y121{bottom:578.701333pt;}
.yc1{bottom:579.209333pt;}
.y203{bottom:579.338667pt;}
.y196{bottom:580.332000pt;}
.y120{bottom:580.864000pt;}
.ye4{bottom:581.012000pt;}
.y156{bottom:581.722667pt;}
.y1c4{bottom:583.157333pt;}
.y11e{bottom:584.026667pt;}
.y96{bottom:585.718667pt;}
.y5d{bottom:586.573333pt;}
.y95{bottom:588.644000pt;}
.y11f{bottom:589.120000pt;}
.y11d{bottom:589.340000pt;}
.y202{bottom:590.332000pt;}
.yc0{bottom:595.876000pt;}
.y1c3{bottom:596.490667pt;}
.y195{bottom:596.998667pt;}
.ye3{bottom:597.678667pt;}
.y155{bottom:598.389333pt;}
.y94{bottom:602.385333pt;}
.y201{bottom:603.665333pt;}
.y11c{bottom:604.006667pt;}
.y5c{bottom:604.573333pt;}
.y1c2{bottom:609.824000pt;}
.ybf{bottom:612.542667pt;}
.y194{bottom:613.665333pt;}
.ye2{bottom:614.478667pt;}
.y154{bottom:615.056000pt;}
.y200{bottom:616.998667pt;}
.y93{bottom:619.052000pt;}
.y5b{bottom:622.573333pt;}
.y1c1{bottom:623.157333pt;}
.ybe{bottom:629.209333pt;}
.y11a{bottom:630.162667pt;}
.y193{bottom:630.332000pt;}
.y153{bottom:631.722667pt;}
.y92{bottom:635.718667pt;}
.y1c0{bottom:636.490667pt;}
.y5a{bottom:640.573333pt;}
.y4a{bottom:640.785333pt;}
.y1ff{bottom:643.665333pt;}
.y119{bottom:644.829333pt;}
.ybd{bottom:645.876000pt;}
.ye1{bottom:646.998667pt;}
.y11b{bottom:647.642667pt;}
.y152{bottom:648.389333pt;}
.y1bf{bottom:649.824000pt;}
.y49{bottom:651.452000pt;}
.y91{bottom:652.385333pt;}
.y1fe{bottom:656.998667pt;}
.y48{bottom:662.118667pt;}
.ybc{bottom:662.542667pt;}
.y1be{bottom:663.157333pt;}
.ye0{bottom:663.665333pt;}
.y151{bottom:665.056000pt;}
.y90{bottom:669.052000pt;}
.y118{bottom:670.312000pt;}
.y1fd{bottom:670.332000pt;}
.y47{bottom:672.785333pt;}
.y116{bottom:674.384000pt;}
.y1bd{bottom:676.490667pt;}
.ybb{bottom:679.209333pt;}
.y117{bottom:679.477333pt;}
.y115{bottom:679.697333pt;}
.ydf{bottom:680.332000pt;}
.y150{bottom:681.722667pt;}
.y46{bottom:683.452000pt;}
.y1fc{bottom:683.665333pt;}
.y8f{bottom:685.718667pt;}
.y1fb{bottom:686.005333pt;}
.y59{bottom:688.840000pt;}
.y4{bottom:691.756000pt;}
.y45{bottom:694.118667pt;}
.y114{bottom:694.364000pt;}
.yba{bottom:695.876000pt;}
.yde{bottom:696.998667pt;}
.y186{bottom:697.568000pt;}
.y14f{bottom:698.389333pt;}
.y8e{bottom:702.385333pt;}
.y1bc{bottom:706.429333pt;}
.y58{bottom:707.476000pt;}
.y185{bottom:709.566667pt;}
.y44{bottom:710.098667pt;}
.y1fa{bottom:710.332000pt;}
.ydd{bottom:713.665333pt;}
.y8d{bottom:719.052000pt;}
.y43{bottom:720.765333pt;}
.y184{bottom:721.566667pt;}
.y1f9{bottom:723.665333pt;}
.y111{bottom:723.917333pt;}
.y13{bottom:725.040000pt;}
.y57{bottom:730.250667pt;}
.ydc{bottom:730.332000pt;}
.y42{bottom:731.432000pt;}
.y14e{bottom:731.660000pt;}
.y183{bottom:733.566667pt;}
.y113{bottom:734.512000pt;}
.y8c{bottom:735.718667pt;}
.y1bb{bottom:736.681333pt;}
.y1f8{bottom:736.998667pt;}
.y110{bottom:738.584000pt;}
.y41{bottom:742.098667pt;}
.y112{bottom:743.677333pt;}
.y182{bottom:745.566667pt;}
.ydb{bottom:746.998667pt;}
.y1f7{bottom:750.332000pt;}
.yb9{bottom:751.452000pt;}
.y8b{bottom:752.385333pt;}
.y40{bottom:752.765333pt;}
.y56{bottom:754.352000pt;}
.y181{bottom:759.130667pt;}
.yb8{bottom:763.452000pt;}
.yda{bottom:763.665333pt;}
.y55{bottom:767.685333pt;}
.y8a{bottom:769.052000pt;}
.y24{bottom:769.560000pt;}
.y10f{bottom:769.826667pt;}
.y1ba{bottom:769.952000pt;}
.y180{bottom:771.130667pt;}
.yb7{bottom:776.854667pt;}
.y1f6{bottom:776.998667pt;}
.y33{bottom:777.120000pt;}
.yd9{bottom:780.332000pt;}
.y54{bottom:780.354667pt;}
.yd8{bottom:783.257333pt;}
.y3f{bottom:784.377333pt;}
.y89{bottom:785.718667pt;}
.y32{bottom:787.786667pt;}
.yb6{bottom:788.854667pt;}
.y1f5{bottom:790.332000pt;}
.y53{bottom:793.688000pt;}
.y3e{bottom:794.922667pt;}
.y23{bottom:795.426667pt;}
.y10e{bottom:795.984000pt;}
.yd7{bottom:796.998667pt;}
.y31{bottom:798.453333pt;}
.y1b9{bottom:800.204000pt;}
.y1f4{bottom:803.665333pt;}
.y3{bottom:805.081333pt;}
.y52{bottom:807.021333pt;}
.y30{bottom:809.120000pt;}
.y10d{bottom:810.650667pt;}
.y3d{bottom:812.257333pt;}
.yd6{bottom:813.665333pt;}
.y88{bottom:816.358667pt;}
.y1b8{bottom:816.870667pt;}
.y1f3{bottom:816.998667pt;}
.y87{bottom:819.284000pt;}
.y51{bottom:820.354667pt;}
.y3c{bottom:822.802667pt;}
.y2f{bottom:829.786667pt;}
.yd5{bottom:830.332000pt;}
.y22{bottom:831.320000pt;}
.y1b7{bottom:833.537333pt;}
.y50{bottom:833.688000pt;}
.y10c{bottom:839.628000pt;}
.y3b{bottom:840.137333pt;}
.y2e{bottom:840.453333pt;}
.y1f2{bottom:843.665333pt;}
.y86{bottom:846.998667pt;}
.y4f{bottom:848.216000pt;}
.y1b6{bottom:850.204000pt;}
.y3a{bottom:850.682667pt;}
.y2d{bottom:851.120000pt;}
.y10b{bottom:854.294667pt;}
.y1f1{bottom:856.998667pt;}
.y2{bottom:857.092000pt;}
.y2c{bottom:861.786667pt;}
.y85{bottom:863.665333pt;}
.y4e{bottom:864.216000pt;}
.y1b5{bottom:866.870667pt;}
.y39{bottom:868.017333pt;}
.y1f0{bottom:870.332000pt;}
.y2b{bottom:872.453333pt;}
.y21{bottom:873.213333pt;}
.y38{bottom:878.506667pt;}
.y1{bottom:879.748000pt;}
.y84{bottom:880.332000pt;}
.y10a{bottom:880.452000pt;}
.y1ef{bottom:883.665333pt;}
.y2a{bottom:893.120000pt;}
.y109{bottom:895.118667pt;}
.y83{bottom:896.998667pt;}
.y4d{bottom:897.136000pt;}
.y20{bottom:898.813333pt;}
.y1b4{bottom:900.141333pt;}
.y29{bottom:903.786667pt;}
.y1ee{bottom:910.332000pt;}
.y37{bottom:910.357333pt;}
.y82{bottom:913.665333pt;}
.y28{bottom:914.453333pt;}
.y1ed{bottom:923.665333pt;}
.y108{bottom:924.096000pt;}
.y1f{bottom:924.413333pt;}
.y27{bottom:925.120000pt;}
.y4c{bottom:925.136000pt;}
.y81{bottom:930.332000pt;}
.y1b3{bottom:930.393333pt;}
.y26{bottom:935.786667pt;}
.y1ec{bottom:936.998667pt;}
.y107{bottom:938.762667pt;}
.y80{bottom:946.998667pt;}
.y1b2{bottom:947.060000pt;}
.y1eb{bottom:950.332000pt;}
.y25{bottom:958.453333pt;}
.y1e{bottom:961.320000pt;}
.y4b{bottom:961.405333pt;}
.y7f{bottom:963.665333pt;}
.y1b1{bottom:963.726667pt;}
.y105{bottom:967.741333pt;}
.y106{bottom:975.500000pt;}
.y1ea{bottom:976.998667pt;}
.y7e{bottom:980.332000pt;}
.y1b0{bottom:980.393333pt;}
.y104{bottom:982.408000pt;}
.y1e9{bottom:990.332000pt;}
.y7d{bottom:996.998667pt;}
.y1af{bottom:997.060000pt;}
.y1e8{bottom:1003.665333pt;}
.y103{bottom:1009.408000pt;}
.y7c{bottom:1013.665333pt;}
.y1d{bottom:1014.666667pt;}
.y1e7{bottom:1016.998667pt;}
.y36{bottom:1023.294667pt;}
.y7b{bottom:1030.332000pt;}
.y102{bottom:1032.770667pt;}
.y1c{bottom:1037.480000pt;}
.y35{bottom:1066.218667pt;}
.y7a{bottom:1076.885333pt;}
.h18{height:17.055716pt;}
.h13{height:18.666293pt;}
.h36{height:21.493939pt;}
.h32{height:23.999600pt;}
.h17{height:24.090818pt;}
.h30{height:24.180682pt;}
.h14{height:26.002818pt;}
.h4{height:29.333333pt;}
.h3c{height:29.780961pt;}
.h12{height:29.866293pt;}
.h19{height:30.292955pt;}
.h10{height:30.591618pt;}
.hd{height:32.000000pt;}
.h37{height:32.111716pt;}
.he{height:32.714922pt;}
.h29{height:34.415618pt;}
.h2c{height:35.999600pt;}
.h39{height:36.555273pt;}
.h15{height:37.332960pt;}
.h35{height:37.445049pt;}
.h26{height:37.866288pt;}
.h38{height:37.871621pt;}
.h20{height:38.239618pt;}
.hf{height:38.937500pt;}
.h25{height:39.140961pt;}
.h24{height:39.146294pt;}
.h3a{height:39.786294pt;}
.h34{height:39.946284pt;}
.h22{height:39.999600pt;}
.h3b{height:40.554267pt;}
.h1a{height:41.652955pt;}
.h1c{height:42.063618pt;}
.h16{height:42.637484pt;}
.h1d{height:43.799600pt;}
.ha{height:44.500000pt;}
.h28{height:44.570015pt;}
.h33{height:44.884682pt;}
.h1e{height:45.439621pt;}
.h2b{height:47.252933pt;}
.hb{height:50.062500pt;}
.h21{height:51.700933pt;}
.h1f{height:51.706267pt;}
.h3{height:51.916667pt;}
.h23{height:52.500933pt;}
.h27{height:52.506267pt;}
.h2f{height:52.516933pt;}
.h1b{height:56.786267pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h31{height:61.199618pt;}
.h2e{height:61.204951pt;}
.hc{height:64.000000pt;}
.h9{height:66.750000pt;}
.h11{height:67.199253pt;}
.h2a{height:77.567600pt;}
.h2d{height:93.082284pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:52.000000pt;}
.x15{left:56.693333pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x14{left:158.740000pt;}
.x19{left:161.610667pt;}
.x2{left:169.813333pt;}
.x2c{left:172.422667pt;}
.x7{left:178.413333pt;}
.x5e{left:179.785333pt;}
.x5c{left:182.740000pt;}
.x66{left:184.728000pt;}
.x13{left:189.426667pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x29{left:205.886667pt;}
.x60{left:211.412000pt;}
.x39{left:212.310667pt;}
.x5a{left:221.193333pt;}
.x63{left:222.729333pt;}
.x64{left:231.378667pt;}
.x31{left:232.318667pt;}
.x2e{left:237.424000pt;}
.xc{left:255.746667pt;}
.x34{left:257.842667pt;}
.x48{left:260.338667pt;}
.x2f{left:263.157333pt;}
.x1a{left:271.526667pt;}
.x3f{left:274.518667pt;}
.xd{left:275.880000pt;}
.x41{left:277.132000pt;}
.x56{left:283.085333pt;}
.x5b{left:287.178667pt;}
.x20{left:294.937333pt;}
.x33{left:299.352000pt;}
.xe{left:305.520000pt;}
.x4c{left:309.938667pt;}
.x30{left:312.805333pt;}
.x58{left:322.525333pt;}
.x1c{left:324.138667pt;}
.x59{left:332.498667pt;}
.x16{left:342.548000pt;}
.x37{left:343.618667pt;}
.x36{left:344.872000pt;}
.x47{left:349.437333pt;}
.x26{left:352.353333pt;}
.x25{left:354.954667pt;}
.x24{left:368.657333pt;}
.xf{left:374.826667pt;}
.x1b{left:376.924000pt;}
.x28{left:382.306667pt;}
.x27{left:384.908000pt;}
.x1e{left:387.617333pt;}
.x54{left:389.164000pt;}
.x1d{left:390.218667pt;}
.x38{left:391.618667pt;}
.x2b{left:393.650667pt;}
.x62{left:401.798667pt;}
.x44{left:410.537333pt;}
.x50{left:411.545333pt;}
.x4d{left:418.444000pt;}
.x49{left:426.530667pt;}
.x1f{left:430.877333pt;}
.x51{left:448.849333pt;}
.x3a{left:465.726667pt;}
.x17{left:470.050667pt;}
.x52{left:473.144000pt;}
.x4a{left:481.390667pt;}
.x2d{left:501.928000pt;}
.x18{left:505.845333pt;}
.x4b{left:524.256000pt;}
.x10{left:538.213333pt;}
.x65{left:556.069333pt;}
.x12{left:558.213333pt;}
.x3b{left:561.476000pt;}
.x11{left:563.920000pt;}
.xb{left:570.013333pt;}
.x3c{left:572.956000pt;}
.x3e{left:574.550667pt;}
.x43{left:579.144000pt;}
.x42{left:580.877333pt;}
.x40{left:583.666667pt;}
.x35{left:585.301333pt;}
.x2a{left:586.414667pt;}
.x3d{left:594.510667pt;}
.x53{left:603.653333pt;}
.x61{left:607.924000pt;}
.x21{left:612.789333pt;}
.x23{left:624.854667pt;}
.x57{left:629.360000pt;}
.x46{left:630.721333pt;}
.x22{left:642.989333pt;}
.x4e{left:655.280000pt;}
.x5d{left:663.065333pt;}
.x4f{left:667.280000pt;}
.x55{left:675.124000pt;}
.x45{left:695.854667pt;}
.x32{left:700.126667pt;}
.x5f{left:717.674667pt;}
}




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