
    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_1331b84f1c2a4c0c205eb074.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_ec219ed7b3034905c0db05a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b583f92d627104bf21139b7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_51ae1bffbfb62c3718883ead.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_831a8f2dc90c41bef40f61a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_41b6f3f837918ee0af417a47.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_2cf67eed494710e68cc7998d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8462a8b724871bb41fa79195.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a372f696a44d0e3d4820c67a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2d57f5b29bea5dee60b770b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_02b1f554c308ca6ede50507c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_f586e44a12cf0728bc3de8a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_c809e1e19eee3a74235d9966.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_8c32cb8ce52b540d63a7e43f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_47870ceae659d903aec6440a.woff2')format("woff");}.fff{font-family:fff;line-height:1.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:ff10;src:url('chunks/assets/font_6603d5fd0cb4ebdc1dc2b923.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ea30a85e196fef2aece6a75d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_42e5db055e78bd62e9e17770.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918000;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_7da281a6bffffff73251b4cc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_14d4486cd70026420ab70fbe.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.638000;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_013b224e7eca45248517e2ec.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_58f95685c07bf7340c7851a6.woff2')format("woff");}.ff16{font-family:ff16;line-height:2.693000;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_9e040e53e4831f023d421adf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.919000;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_a7931bf37a13f5b45c3038cc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.665000;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_9cb62a8ead3a742fcd90274d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.923000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.854000px;}
.v17{vertical-align:-12.372000px;}
.v6{vertical-align:-10.662000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:16.176000px;}
.ve{vertical-align:22.572000px;}
.v4{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.vc{vertical-align:27.030000px;}
.vd{vertical-align:32.244000px;}
.v9{vertical-align:34.236000px;}
.v10{vertical-align:36.138000px;}
.v7{vertical-align:40.782000px;}
.v5{vertical-align:44.280000px;}
.v13{vertical-align:47.586000px;}
.va{vertical-align:51.006000px;}
.v16{vertical-align:52.728000px;}
.v8{vertical-align:59.160000px;}
.vf{vertical-align:65.958000px;}
.v12{vertical-align:88.368000px;}
.v11{vertical-align:92.292000px;}
.v15{vertical-align:120.882000px;}
.v14{vertical-align:137.190000px;}
.ls2{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.001641px;}
.ls51{letter-spacing:0.002147px;}
.ls10{letter-spacing:0.002155px;}
.ls18{letter-spacing:0.002682px;}
.ls4a{letter-spacing:0.002706px;}
.ls1e{letter-spacing:0.003242px;}
.ls36{letter-spacing:0.004221px;}
.ls53{letter-spacing:0.006973px;}
.ls28{letter-spacing:0.008016px;}
.ls70{letter-spacing:0.008907px;}
.ls41{letter-spacing:0.010146px;}
.ls82{letter-spacing:0.010813px;}
.lsaf{letter-spacing:0.012469px;}
.ls89{letter-spacing:0.012973px;}
.lsa2{letter-spacing:0.013080px;}
.ls6e{letter-spacing:0.013488px;}
.lsa9{letter-spacing:0.013515px;}
.ls8d{letter-spacing:0.014968px;}
.ls61{letter-spacing:0.015486px;}
.ls83{letter-spacing:0.016565px;}
.ls50{letter-spacing:0.018205px;}
.ls8b{letter-spacing:0.020551px;}
.ls90{letter-spacing:0.021744px;}
.lsb5{letter-spacing:0.027650px;}
.lsb3{letter-spacing:0.029106px;}
.ls0{letter-spacing:0.030212px;}
.ls1b{letter-spacing:0.242967px;}
.ls23{letter-spacing:0.261818px;}
.ls59{letter-spacing:0.458182px;}
.ls4e{letter-spacing:2.290911px;}
.ls49{letter-spacing:2.327895px;}
.ls45{letter-spacing:2.331189px;}
.ls69{letter-spacing:2.348155px;}
.ls4f{letter-spacing:2.356366px;}
.ls40{letter-spacing:2.373354px;}
.lsb7{letter-spacing:2.421820px;}
.ls5f{letter-spacing:2.981971px;}
.lsa3{letter-spacing:2.984746px;}
.ls19{letter-spacing:2.984915px;}
.ls6f{letter-spacing:2.985056px;}
.ls1{letter-spacing:2.986118px;}
.lsa{letter-spacing:2.987971px;}
.ls46{letter-spacing:2.990915px;}
.ls37{letter-spacing:2.991056px;}
.ls62{letter-spacing:5.170913px;}
.ls26{letter-spacing:5.301823px;}
.ls2e{letter-spacing:5.367277px;}
.ls29{letter-spacing:5.547190px;}
.lsa4{letter-spacing:6.303567px;}
.ls5d{letter-spacing:6.719578px;}
.ls2d{letter-spacing:7.003642px;}
.ls25{letter-spacing:7.069097px;}
.lsb8{letter-spacing:7.116040px;}
.ls80{letter-spacing:7.166581px;}
.ls91{letter-spacing:7.172812px;}
.ls8c{letter-spacing:7.174869px;}
.lse{letter-spacing:7.396370px;}
.ls38{letter-spacing:9.087694px;}
.ls1f{letter-spacing:9.090400px;}
.ls22{letter-spacing:9.100823px;}
.ls4{letter-spacing:10.865464px;}
.ls44{letter-spacing:12.496869px;}
.ls30{letter-spacing:14.334557px;}
.ls21{letter-spacing:14.530921px;}
.ls2f{letter-spacing:14.596376px;}
.ls76{letter-spacing:14.792740px;}
.ls9c{letter-spacing:14.989103px;}
.ls95{letter-spacing:15.512740px;}
.ls9{letter-spacing:16.952741px;}
.ls20{letter-spacing:17.528915px;}
.ls93{letter-spacing:17.918915px;}
.ls1d{letter-spacing:18.077412px;}
.ls8{letter-spacing:18.130924px;}
.ls8a{letter-spacing:18.152979px;}
.ls81{letter-spacing:18.178869px;}
.ls43{letter-spacing:18.179412px;}
.ls4c{letter-spacing:18.182748px;}
.lsb{letter-spacing:18.196379px;}
.ls71{letter-spacing:18.458197px;}
.ls94{letter-spacing:18.530915px;}
.ls5b{letter-spacing:18.720016px;}
.ls98{letter-spacing:18.981834px;}
.ls9b{letter-spacing:19.309107px;}
.ls7e{letter-spacing:19.505471px;}
.ls9f{letter-spacing:20.290926px;}
.ls6a{letter-spacing:20.336915px;}
.ls35{letter-spacing:20.487290px;}
.ls7b{letter-spacing:20.552744px;}
.ls17{letter-spacing:20.618199px;}
.ls6d{letter-spacing:21.010927px;}
.ls48{letter-spacing:21.164746px;}
.ls42{letter-spacing:21.164915px;}
.ls84{letter-spacing:21.168960px;}
.ls39{letter-spacing:21.170915px;}
.ls66{letter-spacing:21.403654px;}
.ls57{letter-spacing:21.665473px;}
.ls72{letter-spacing:21.730927px;}
.ls86{letter-spacing:21.927291px;}
.ls9e{letter-spacing:21.950915px;}
.ls68{letter-spacing:22.189109px;}
.ls3{letter-spacing:22.254564px;}
.ls3e{letter-spacing:22.324180px;}
.ls79{letter-spacing:22.450928px;}
.ls92{letter-spacing:22.516382px;}
.ls65{letter-spacing:22.778201px;}
.ls33{letter-spacing:22.974565px;}
.ls85{letter-spacing:23.142960px;}
.ls63{letter-spacing:23.301838px;}
.lsb6{letter-spacing:23.432747px;}
.ls3f{letter-spacing:23.498201px;}
.ls16{letter-spacing:23.606367px;}
.ls4d{letter-spacing:23.638338px;}
.ls67{letter-spacing:23.694565px;}
.lsbc{letter-spacing:23.760020px;}
.lsc{letter-spacing:23.828915px;}
.lsd{letter-spacing:23.831971px;}
.ls5{letter-spacing:23.956384px;}
.lsbb{letter-spacing:24.480020px;}
.ls73{letter-spacing:24.686915px;}
.ls5c{letter-spacing:24.692915px;}
.lsb0{letter-spacing:24.914915px;}
.lsba{letter-spacing:25.003657px;}
.ls75{letter-spacing:25.265476px;}
.ls6b{letter-spacing:25.330930px;}
.ls3c{letter-spacing:25.349428px;}
.ls9d{letter-spacing:25.352915px;}
.ls3a{letter-spacing:25.355412px;}
.lsb4{letter-spacing:25.396385px;}
.ls12{letter-spacing:25.592749px;}
.ls77{letter-spacing:25.604915px;}
.ls64{letter-spacing:25.778367px;}
.ls96{letter-spacing:26.180915px;}
.ls5e{letter-spacing:26.181840px;}
.lsab{letter-spacing:26.378204px;}
.ls31{letter-spacing:26.480915px;}
.ls56{letter-spacing:27.032750px;}
.ls58{letter-spacing:27.229114px;}
.ls7f{letter-spacing:27.294568px;}
.ls6c{letter-spacing:27.360023px;}
.lsa1{letter-spacing:27.490932px;}
.ls34{letter-spacing:27.560367px;}
.ls32{letter-spacing:27.687296px;}
.ls6{letter-spacing:28.124915px;}
.ls7d{letter-spacing:28.341842px;}
.ls97{letter-spacing:28.472751px;}
.ls15{letter-spacing:28.538206px;}
.ls87{letter-spacing:28.603660px;}
.ls60{letter-spacing:28.669115px;}
.ls7c{letter-spacing:28.996388px;}
.ls1a{letter-spacing:29.061842px;}
.ls88{letter-spacing:29.087424px;}
.lsac{letter-spacing:29.576915px;}
.ls5a{letter-spacing:29.716388px;}
.lsa7{letter-spacing:29.847298px;}
.lsa8{letter-spacing:29.912752px;}
.lsb1{letter-spacing:30.174571px;}
.ls8f{letter-spacing:30.240025px;}
.ls7a{letter-spacing:30.842915px;}
.lsaa{letter-spacing:31.156390px;}
.ls99{letter-spacing:32.334572px;}
.ls7{letter-spacing:32.727300px;}
.ls2c{letter-spacing:33.120028px;}
.ls9a{letter-spacing:33.152915px;}
.ls8e{letter-spacing:33.230915px;}
.lsa6{letter-spacing:33.840028px;}
.lsb9{letter-spacing:34.429120px;}
.lsae{letter-spacing:35.320459px;}
.ls14{letter-spacing:35.934575px;}
.ls2b{letter-spacing:36.130939px;}
.ls11{letter-spacing:36.392758px;}
.lsa0{letter-spacing:36.589121px;}
.lsa5{letter-spacing:36.596228px;}
.ls78{letter-spacing:37.374577px;}
.lsf{letter-spacing:38.186059px;}
.lsb2{letter-spacing:42.283672px;}
.lsad{letter-spacing:44.378219px;}
.ls52{letter-spacing:47.171424px;}
.ls27{letter-spacing:55.309137px;}
.ls13{letter-spacing:70.002885px;}
.ls54{letter-spacing:75.191972px;}
.ls24{letter-spacing:76.107543px;}
.ls2a{letter-spacing:77.894812px;}
.ls74{letter-spacing:223.562915px;}
.ls4b{letter-spacing:820.669775px;}
.ls47{letter-spacing:827.084326px;}
.ls55{letter-spacing:924.938953px;}
.ls1c{letter-spacing:993.339010px;}
.ls3b{letter-spacing:1059.251972px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4f{word-spacing:-51.820407px;}
.ws13a{word-spacing:-42.676399px;}
.ws4b{word-spacing:-42.637126px;}
.ws4d{word-spacing:-37.387668px;}
.ws3c{word-spacing:-33.211407px;}
.ws67{word-spacing:-32.923664px;}
.ws24{word-spacing:-32.544027px;}
.wse6{word-spacing:-30.649186px;}
.ws140{word-spacing:-30.567298px;}
.wse5{word-spacing:-24.559186px;}
.ws2a{word-spacing:-24.440748px;}
.ws128{word-spacing:-22.398564px;}
.wsba{word-spacing:-21.613109px;}
.ws72{word-spacing:-21.560745px;}
.wsa3{word-spacing:-20.827654px;}
.ws85{word-spacing:-20.696745px;}
.ws125{word-spacing:-20.500381px;}
.ws8b{word-spacing:-20.304017px;}
.ws144{word-spacing:-20.107653px;}
.wsd7{word-spacing:-19.518562px;}
.ws103{word-spacing:-19.256743px;}
.ws149{word-spacing:-19.204380px;}
.ws92{word-spacing:-19.191289px;}
.ws134{word-spacing:-18.929470px;}
.ws37{word-spacing:-18.274924px;}
.ws76{word-spacing:-18.209470px;}
.ws21{word-spacing:-18.183288px;}
.ws10a{word-spacing:-18.078561px;}
.wse1{word-spacing:-17.947651px;}
.wsf0{word-spacing:-17.882197px;}
.wscd{word-spacing:-17.816742px;}
.ws17{word-spacing:-17.685833px;}
.ws8d{word-spacing:-17.620378px;}
.wseb{word-spacing:-17.554924px;}
.ws10f{word-spacing:-17.489469px;}
.wsf5{word-spacing:-17.424015px;}
.wsec{word-spacing:-17.358560px;}
.ws38{word-spacing:-17.227651px;}
.ws3a{word-spacing:-17.031287px;}
.ws39{word-spacing:-16.965832px;}
.ws79{word-spacing:-16.900378px;}
.ws71{word-spacing:-16.834923px;}
.wsb9{word-spacing:-16.769469px;}
.ws93{word-spacing:-16.704014px;}
.wsc3{word-spacing:-16.638559px;}
.ws11e{word-spacing:-16.442196px;}
.ws13f{word-spacing:-16.245832px;}
.ws89{word-spacing:-16.114923px;}
.wsa2{word-spacing:-16.049468px;}
.ws12f{word-spacing:-15.984013px;}
.ws36{word-spacing:-15.918559px;}
.ws75{word-spacing:-15.853104px;}
.ws9f{word-spacing:-15.787650px;}
.ws68{word-spacing:-15.722195px;}
.wse7{word-spacing:-15.691654px;}
.ws29{word-spacing:-15.656740px;}
.ws6a{word-spacing:-15.591286px;}
.wsa6{word-spacing:-15.525831px;}
.ws8c{word-spacing:-15.460377px;}
.ws175{word-spacing:-15.394922px;}
.wsdd{word-spacing:-15.329467px;}
.ws4{word-spacing:-15.296576px;}
.wsb2{word-spacing:-15.198558px;}
.ws52{word-spacing:-15.133104px;}
.ws101{word-spacing:-15.067649px;}
.wsd3{word-spacing:-15.002194px;}
.ws11a{word-spacing:-14.936740px;}
.wsa1{word-spacing:-14.871285px;}
.wsd{word-spacing:-14.758596px;}
.ws164{word-spacing:-14.740376px;}
.wsd8{word-spacing:-14.674921px;}
.ws7c{word-spacing:-14.609467px;}
.ws129{word-spacing:-14.557103px;}
.ws100{word-spacing:-14.544012px;}
.ws145{word-spacing:-14.413103px;}
.ws83{word-spacing:-14.347648px;}
.ws49{word-spacing:-14.216739px;}
.ws156{word-spacing:-14.151285px;}
.ws13c{word-spacing:-14.020375px;}
.ws137{word-spacing:-13.954921px;}
.ws10d{word-spacing:-13.889466px;}
.ws10e{word-spacing:-13.824012px;}
.wsaf{word-spacing:-13.758557px;}
.ws51{word-spacing:-13.693102px;}
.ws98{word-spacing:-13.627648px;}
.ws115{word-spacing:-13.562193px;}
.ws5f{word-spacing:-13.431284px;}
.ws73{word-spacing:-13.395894px;}
.ws74{word-spacing:-13.365829px;}
.ws99{word-spacing:-13.300375px;}
.ws12{word-spacing:-13.204430px;}
.ws80{word-spacing:-13.169466px;}
.ws102{word-spacing:-13.104011px;}
.ws143{word-spacing:-13.038556px;}
.ws33{word-spacing:-12.973102px;}
.wsff{word-spacing:-12.907647px;}
.ws105{word-spacing:-12.842193px;}
.ws150{word-spacing:-12.776738px;}
.ws7d{word-spacing:-12.711283px;}
.ws96{word-spacing:-12.645829px;}
.ws14b{word-spacing:-12.580374px;}
.wsb{word-spacing:-12.546898px;}
.ws84{word-spacing:-12.514920px;}
.ws91{word-spacing:-12.449465px;}
.wsb0{word-spacing:-12.384010px;}
.ws123{word-spacing:-12.253101px;}
.ws11d{word-spacing:-12.187647px;}
.ws3e{word-spacing:-12.122192px;}
.ws5{word-spacing:-12.068694px;}
.ws108{word-spacing:-12.064686px;}
.wsa4{word-spacing:-12.059748px;}
.ws147{word-spacing:-12.056737px;}
.ws6e{word-spacing:-12.036008px;}
.ws3d{word-spacing:-11.991283px;}
.ws2b{word-spacing:-11.925828px;}
.ws16{word-spacing:-11.860374px;}
.ws2d{word-spacing:-11.729464px;}
.ws60{word-spacing:-11.664010px;}
.wsb8{word-spacing:-11.598555px;}
.ws81{word-spacing:-11.533101px;}
.ws6c{word-spacing:-11.477117px;}
.ws77{word-spacing:-11.473936px;}
.wsfc{word-spacing:-11.470672px;}
.ws146{word-spacing:-11.467646px;}
.ws7{word-spacing:-11.411162px;}
.ws126{word-spacing:-11.402191px;}
.ws44{word-spacing:-11.336737px;}
.ws86{word-spacing:-11.271282px;}
.ws163{word-spacing:-11.205828px;}
.ws45{word-spacing:-11.140373px;}
.wsf4{word-spacing:-11.074918px;}
.ws11f{word-spacing:-11.009464px;}
.ws6{word-spacing:-10.992733px;}
.ws18{word-spacing:-10.878555px;}
.ws26{word-spacing:-10.813100px;}
.wsf{word-spacing:-10.753630px;}
.wsc1{word-spacing:-10.747645px;}
.ws15{word-spacing:-10.693855px;}
.ws8f{word-spacing:-10.682191px;}
.ws107{word-spacing:-10.639233px;}
.ws117{word-spacing:-10.616736px;}
.ws9{word-spacing:-10.574304px;}
.ws153{word-spacing:-10.551282px;}
.ws2e{word-spacing:-10.485827px;}
.ws7a{word-spacing:-10.420372px;}
.ws2c{word-spacing:-10.354918px;}
.wsb1{word-spacing:-10.289463px;}
.wsea{word-spacing:-10.224009px;}
.ws7f{word-spacing:-10.158554px;}
.ws5d{word-spacing:-10.093099px;}
.wsa{word-spacing:-10.036323px;}
.wsb3{word-spacing:-10.027645px;}
.ws3{word-spacing:-9.976548px;}
.wsce{word-spacing:-9.962190px;}
.ws35{word-spacing:-9.896736px;}
.ws62{word-spacing:-9.831281px;}
.wsd1{word-spacing:-9.765826px;}
.wsbb{word-spacing:-9.716017px;}
.wsee{word-spacing:-9.700372px;}
.wsef{word-spacing:-9.634917px;}
.ws121{word-spacing:-9.569463px;}
.ws4c{word-spacing:-9.438553px;}
.ws4a{word-spacing:-9.373099px;}
.ws90{word-spacing:-9.307644px;}
.wsb4{word-spacing:-9.242190px;}
.ws8{word-spacing:-9.199465px;}
.ws2f{word-spacing:-9.176735px;}
.wsf6{word-spacing:-9.111280px;}
.ws61{word-spacing:-9.045826px;}
.wsad{word-spacing:-8.914917px;}
.ws41{word-spacing:-8.849462px;}
.wsae{word-spacing:-8.807748px;}
.ws5e{word-spacing:-8.784007px;}
.ws10{word-spacing:-8.721260px;}
.ws3b{word-spacing:-8.718553px;}
.ws7e{word-spacing:-8.587644px;}
.wsc0{word-spacing:-8.522189px;}
.ws111{word-spacing:-8.456734px;}
.ws1e{word-spacing:-8.391280px;}
.ws5a{word-spacing:-8.325825px;}
.ws166{word-spacing:-8.260371px;}
.ws34{word-spacing:-8.129461px;}
.ws70{word-spacing:-8.064007px;}
.ws65{word-spacing:-7.998552px;}
.ws6b{word-spacing:-7.961117px;}
.ws46{word-spacing:-7.933098px;}
.wsf8{word-spacing:-7.867643px;}
.ws64{word-spacing:-7.802188px;}
.ws148{word-spacing:-7.736734px;}
.wsa8{word-spacing:-7.671279px;}
.wsda{word-spacing:-7.540370px;}
.wsf7{word-spacing:-7.474915px;}
.ws20{word-spacing:-7.409461px;}
.ws130{word-spacing:-7.278552px;}
.ws135{word-spacing:-7.252370px;}
.ws5b{word-spacing:-7.213097px;}
.ws13d{word-spacing:-7.147642px;}
.ws131{word-spacing:-7.082188px;}
.ws6f{word-spacing:-7.016733px;}
.ws6d{word-spacing:-6.885824px;}
.ws5c{word-spacing:-6.820369px;}
.ws110{word-spacing:-6.624006px;}
.ws14{word-spacing:-6.569338px;}
.ws27{word-spacing:-6.558551px;}
.ws15b{word-spacing:-6.493096px;}
.ws11{word-spacing:-6.390012px;}
.ws162{word-spacing:-6.362187px;}
.wse0{word-spacing:-6.296733px;}
.wse{word-spacing:-6.270460px;}
.wsde{word-spacing:-6.231278px;}
.ws12c{word-spacing:-6.165823px;}
.ws94{word-spacing:-6.100369px;}
.ws1d{word-spacing:-6.034914px;}
.ws10b{word-spacing:-5.969460px;}
.ws12b{word-spacing:-5.904005px;}
.ws124{word-spacing:-5.838550px;}
.ws97{word-spacing:-5.773096px;}
.ws28{word-spacing:-5.707641px;}
.ws50{word-spacing:-5.642187px;}
.ws13{word-spacing:-5.553153px;}
.wse3{word-spacing:-5.511277px;}
.wsaa{word-spacing:-5.445823px;}
.ws53{word-spacing:-5.427902px;}
.wsb5{word-spacing:-5.380368px;}
.wsb7{word-spacing:-5.314914px;}
.ws118{word-spacing:-5.249459px;}
.ws8a{word-spacing:-5.184004px;}
.ws15a{word-spacing:-5.053095px;}
.ws31{word-spacing:-4.987641px;}
.ws63{word-spacing:-4.922186px;}
.wsdb{word-spacing:-4.791277px;}
.ws43{word-spacing:-4.725822px;}
.ws42{word-spacing:-4.660368px;}
.ws9a{word-spacing:-4.594913px;}
.wsa9{word-spacing:-4.529458px;}
.ws22{word-spacing:-4.464004px;}
.ws152{word-spacing:-4.398549px;}
.wsfa{word-spacing:-4.333095px;}
.ws14e{word-spacing:-4.202185px;}
.wse9{word-spacing:-4.136731px;}
.wsf9{word-spacing:-4.005822px;}
.wsfb{word-spacing:-3.940367px;}
.ws3f{word-spacing:-3.874912px;}
.ws88{word-spacing:-3.809458px;}
.ws16c{word-spacing:-3.744003px;}
.ws16d{word-spacing:-3.678549px;}
.ws4e{word-spacing:-3.652367px;}
.wsd0{word-spacing:-3.613094px;}
.wsc6{word-spacing:-3.586912px;}
.ws48{word-spacing:-3.547639px;}
.wse2{word-spacing:-3.482185px;}
.ws95{word-spacing:-3.447660px;}
.ws14a{word-spacing:-3.416730px;}
.ws154{word-spacing:-3.285821px;}
.ws40{word-spacing:-3.220366px;}
.ws139{word-spacing:-3.154912px;}
.ws9d{word-spacing:-3.089457px;}
.wsed{word-spacing:-3.063275px;}
.wsbe{word-spacing:-2.696730px;}
.ws127{word-spacing:-2.631275px;}
.ws10c{word-spacing:-2.565820px;}
.wsf3{word-spacing:-2.434911px;}
.wsbf{word-spacing:-2.369457px;}
.ws106{word-spacing:-2.304002px;}
.ws66{word-spacing:-2.238547px;}
.ws158{word-spacing:-2.173093px;}
.wse4{word-spacing:-1.976729px;}
.ws161{word-spacing:-1.845820px;}
.ws168{word-spacing:-1.780365px;}
.ws151{word-spacing:-1.714911px;}
.wsa5{word-spacing:-1.688729px;}
.ws113{word-spacing:-1.649456px;}
.ws9b{word-spacing:-1.586766px;}
.ws9e{word-spacing:-1.586179px;}
.ws25{word-spacing:-1.584001px;}
.ws112{word-spacing:-1.453092px;}
.wsa0{word-spacing:-1.426910px;}
.ws82{word-spacing:-1.387638px;}
.wsbd{word-spacing:-1.361456px;}
.wsd4{word-spacing:-1.125819px;}
.wsa7{word-spacing:-1.099637px;}
.wsd6{word-spacing:-1.060365px;}
.ws30{word-spacing:-0.994910px;}
.ws141{word-spacing:-0.864001px;}
.wscf{word-spacing:-0.798546px;}
.ws138{word-spacing:-0.733092px;}
.wsfe{word-spacing:-0.667637px;}
.ws116{word-spacing:-0.209455px;}
.ws155{word-spacing:-0.086077px;}
.ws23{word-spacing:-0.065455px;}
.ws55{word-spacing:-0.047821px;}
.ws1a{word-spacing:0.000000px;}
.wsc4{word-spacing:0.013091px;}
.ws7b{word-spacing:0.183273px;}
.ws14d{word-spacing:0.405819px;}
.ws142{word-spacing:0.490285px;}
.ws15f{word-spacing:0.706910px;}
.ws69{word-spacing:1.286307px;}
.ws160{word-spacing:1.426910px;}
.ws157{word-spacing:1.492365px;}
.ws104{word-spacing:1.518547px;}
.ws136{word-spacing:1.714911px;}
.wsd2{word-spacing:1.845820px;}
.ws174{word-spacing:2.277820px;}
.ws87{word-spacing:3.089457px;}
.wscb{word-spacing:3.482185px;}
.wsbc{word-spacing:3.547639px;}
.wsc2{word-spacing:3.613094px;}
.ws14f{word-spacing:4.896004px;}
.ws1f{word-spacing:5.969460px;}
.wsac{word-spacing:6.296733px;}
.wsab{word-spacing:6.558551px;}
.ws16e{word-spacing:6.663278px;}
.wsd9{word-spacing:6.820369px;}
.wsc{word-spacing:7.637718px;}
.wsdf{word-spacing:8.129461px;}
.wsb6{word-spacing:9.045826px;}
.ws15d{word-spacing:9.412371px;}
.wsdc{word-spacing:9.569463px;}
.ws9c{word-spacing:9.765826px;}
.wsd5{word-spacing:13.300375px;}
.ws32{word-spacing:13.928739px;}
.ws19{word-spacing:15.235707px;}
.ws14c{word-spacing:15.787650px;}
.ws59{word-spacing:16.880672px;}
.ws57{word-spacing:16.928492px;}
.ws133{word-spacing:19.623289px;}
.ws169{word-spacing:21.730927px;}
.ws54{word-spacing:22.698453px;}
.ws11c{word-spacing:22.843655px;}
.wsf2{word-spacing:23.170928px;}
.ws2{word-spacing:23.312640px;}
.ws173{word-spacing:23.563656px;}
.ws16a{word-spacing:23.760020px;}
.ws13b{word-spacing:24.218202px;}
.ws109{word-spacing:24.639066px;}
.ws170{word-spacing:25.658203px;}
.ws122{word-spacing:25.985476px;}
.ws16f{word-spacing:26.574568px;}
.ws8e{word-spacing:26.755738px;}
.ws1c{word-spacing:26.827469px;}
.ws15e{word-spacing:26.836386px;}
.ws15c{word-spacing:27.229114px;}
.ws167{word-spacing:27.294568px;}
.ws159{word-spacing:27.425477px;}
.ws12d{word-spacing:27.674205px;}
.ws16b{word-spacing:27.687296px;}
.ws165{word-spacing:27.752750px;}
.ws176{word-spacing:28.734569px;}
.ws172{word-spacing:28.800024px;}
.ws171{word-spacing:28.996388px;}
.ws12e{word-spacing:29.978207px;}
.ws114{word-spacing:30.768010px;}
.wsf1{word-spacing:31.025480px;}
.ws13e{word-spacing:31.156390px;}
.ws47{word-spacing:31.418178px;}
.ws11b{word-spacing:31.418208px;}
.ws78{word-spacing:31.504255px;}
.ws1{word-spacing:32.227229px;}
.ws132{word-spacing:33.447301px;}
.ws120{word-spacing:35.083666px;}
.ws12a{word-spacing:36.850940px;}
.ws0{word-spacing:37.081972px;}
.wsc5{word-spacing:39.194214px;}
.ws119{word-spacing:80.625869px;}
.ws1b{word-spacing:94.598843px;}
.wsc7{word-spacing:98.692446px;}
.ws58{word-spacing:100.933023px;}
.ws56{word-spacing:157.350453px;}
.wscc{word-spacing:196.219800px;}
.wsc9{word-spacing:212.517995px;}
.wsca{word-spacing:288.576240px;}
.wsc8{word-spacing:337.601736px;}
.wse8{word-spacing:709.394350px;}
.wsfd{word-spacing:869.799998px;}
._1c{margin-left:-10.930918px;}
._2{margin-left:-8.469977px;}
._c{margin-left:-6.635092px;}
._7{margin-left:-4.722272px;}
._30{margin-left:-3.717443px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.613941px;}
._5{width:1.673717px;}
._0{width:3.098772px;}
._1f{width:4.130911px;}
._9{width:5.459177px;}
._32{width:7.076359px;}
._24{width:8.091759px;}
._25{width:9.523556px;}
._4{width:15.661207px;}
._e{width:16.823796px;}
._1a{width:18.602575px;}
._28{width:20.625842px;}
._1b{width:22.060164px;}
._14{width:23.116017px;}
._a{width:24.747098px;}
._6{width:26.241488px;}
._12{width:27.780853px;}
._8{width:28.871615px;}
._15{width:30.307444px;}
._17{width:31.350124px;}
._18{width:32.860173px;}
._27{width:34.887302px;}
._21{width:36.255804px;}
._b{width:37.470702px;}
._2a{width:38.609239px;}
._d{width:39.870325px;}
._20{width:41.827453px;}
._13{width:43.359048px;}
._16{width:44.837536px;}
._22{width:46.538221px;}
._29{width:47.847313px;}
._10{width:48.956544px;}
._1e{width:50.604927px;}
._2b{width:52.690953px;}
._45{width:54.093602px;}
._23{width:55.572919px;}
._26{width:56.838770px;}
._46{width:57.992776px;}
._19{width:59.307759px;}
._44{width:65.165716px;}
._47{width:68.581175px;}
._f{width:73.321253px;}
._31{width:74.814608px;}
._11{width:80.697600px;}
._1d{width:94.684920px;}
._35{width:100.910533px;}
._2d{width:131.563746px;}
._3d{width:133.217572px;}
._36{width:135.897790px;}
._37{width:169.789309px;}
._34{width:202.125769px;}
._3c{width:206.116535px;}
._3a{width:216.667595px;}
._38{width:246.700351px;}
._39{width:249.260658px;}
._3e{width:253.584589px;}
._3f{width:337.942100px;}
._42{width:362.880302px;}
._40{width:396.327603px;}
._43{width:423.949444px;}
._33{width:472.058575px;}
._3b{width:474.087668px;}
._41{width:488.618589px;}
._2e{width:548.575003px;}
._2f{width:628.693397px;}
._2c{width:740.104703px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(153,0,0);}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs8{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y49{bottom:108.000000px;}
.y1b{bottom:108.033000px;}
.yc3{bottom:110.076000px;}
.yea{bottom:111.102000px;}
.y19f{bottom:119.124000px;}
.y73{bottom:127.866000px;}
.y48{bottom:128.323500px;}
.y1a{bottom:130.185000px;}
.y230{bottom:130.276500px;}
.yc2{bottom:130.399500px;}
.ye9{bottom:131.425500px;}
.y1c9{bottom:131.863500px;}
.y1e1{bottom:135.028500px;}
.y209{bottom:135.358500px;}
.y72{bottom:139.090500px;}
.y19e{bottom:139.447500px;}
.y47{bottom:148.647000px;}
.yb4{bottom:149.347500px;}
.y22f{bottom:150.600000px;}
.yc1{bottom:150.724500px;}
.ye8{bottom:151.749000px;}
.y1c8{bottom:152.187000px;}
.y1e0{bottom:155.352000px;}
.y208{bottom:155.682000px;}
.y19d{bottom:159.771000px;}
.y146{bottom:161.034000px;}
.y9d{bottom:164.848500px;}
.y46{bottom:168.972000px;}
.yb3{bottom:169.671000px;}
.y22e{bottom:170.923500px;}
.yc0{bottom:171.048000px;}
.ye7{bottom:172.072500px;}
.y16f{bottom:172.162500px;}
.y145{bottom:172.258500px;}
.y1c7{bottom:172.512000px;}
.y1df{bottom:175.675500px;}
.y11a{bottom:179.536500px;}
.y19c{bottom:180.096000px;}
.y71{bottom:181.737000px;}
.y70{bottom:187.380000px;}
.y45{bottom:189.295500px;}
.y207{bottom:189.454500px;}
.yb2{bottom:189.996000px;}
.y22d{bottom:191.248500px;}
.ybf{bottom:191.371500px;}
.ye6{bottom:192.396000px;}
.y16e{bottom:192.486000px;}
.y1c6{bottom:192.835500px;}
.y1de{bottom:195.999000px;}
.y19b{bottom:200.419500px;}
.ycf{bottom:201.112500px;}
.y6f{bottom:207.703500px;}
.y44{bottom:209.619000px;}
.y206{bottom:209.779500px;}
.yb1{bottom:210.319500px;}
.ybe{bottom:211.695000px;}
.ye5{bottom:212.721000px;}
.y16d{bottom:212.809500px;}
.y1c5{bottom:213.159000px;}
.y1dd{bottom:216.322500px;}
.y144{bottom:219.133500px;}
.y19a{bottom:220.743000px;}
.yce{bottom:221.436000px;}
.y119{bottom:223.168500px;}
.y22c{bottom:225.021000px;}
.y6e{bottom:228.027000px;}
.y43{bottom:229.942500px;}
.y205{bottom:230.103000px;}
.yb0{bottom:230.643000px;}
.ybd{bottom:232.018500px;}
.ye4{bottom:233.044500px;}
.y16c{bottom:233.133000px;}
.y1c4{bottom:233.482500px;}
.y1dc{bottom:236.647500px;}
.y9c{bottom:237.330000px;}
.y143{bottom:239.457000px;}
.ycd{bottom:241.759500px;}
.y118{bottom:243.492000px;}
.y22b{bottom:245.344500px;}
.yf4{bottom:246.378000px;}
.y6d{bottom:248.350500px;}
.y42{bottom:250.266000px;}
.y204{bottom:250.426500px;}
.yaf{bottom:250.966500px;}
.ybc{bottom:252.342000px;}
.ye3{bottom:253.368000px;}
.y16b{bottom:253.456500px;}
.y1c3{bottom:253.806000px;}
.y1db{bottom:256.971000px;}
.y9b{bottom:257.653500px;}
.ycc{bottom:262.083000px;}
.y117{bottom:263.815500px;}
.y199{bottom:263.958000px;}
.y120{bottom:264.465000px;}
.y22a{bottom:265.669500px;}
.yf3{bottom:266.701500px;}
.y142{bottom:270.346500px;}
.y41{bottom:270.591000px;}
.yae{bottom:271.290000px;}
.ybb{bottom:272.667000px;}
.y16a{bottom:273.781500px;}
.y1c2{bottom:274.131000px;}
.y174{bottom:274.627500px;}
.y1da{bottom:277.294500px;}
.y9a{bottom:277.977000px;}
.y6c{bottom:279.240000px;}
.ycb{bottom:282.406500px;}
.y116{bottom:284.140500px;}
.y203{bottom:284.200500px;}
.ye2{bottom:284.257500px;}
.y198{bottom:284.283000px;}
.y11f{bottom:284.788500px;}
.yf2{bottom:287.025000px;}
.y40{bottom:290.914500px;}
.yad{bottom:291.615000px;}
.yba{bottom:292.990500px;}
.y169{bottom:294.105000px;}
.y173{bottom:294.951000px;}
.y94{bottom:296.835000px;}
.y1d9{bottom:297.618000px;}
.y99{bottom:298.300500px;}
.y229{bottom:299.442000px;}
.yca{bottom:302.731500px;}
.y115{bottom:304.464000px;}
.y202{bottom:304.524000px;}
.y197{bottom:304.606500px;}
.y11e{bottom:305.112000px;}
.yf1{bottom:307.348500px;}
.y1c1{bottom:307.903500px;}
.y3f{bottom:311.238000px;}
.yac{bottom:311.938500px;}
.y141{bottom:313.062000px;}
.yb9{bottom:313.314000px;}
.y168{bottom:314.428500px;}
.y172{bottom:315.274500px;}
.y93{bottom:317.160000px;}
.y1d8{bottom:317.941500px;}
.y98{bottom:318.624000px;}
.y228{bottom:319.765500px;}
.y6b{bottom:323.053500px;}
.yc9{bottom:323.055000px;}
.ye1{bottom:324.667500px;}
.y201{bottom:324.847500px;}
.y196{bottom:324.930000px;}
.y11d{bottom:325.437000px;}
.yf0{bottom:327.673500px;}
.y1c0{bottom:328.227000px;}
.y3e{bottom:331.561500px;}
.y140{bottom:333.385500px;}
.yb8{bottom:333.637500px;}
.y167{bottom:334.752000px;}
.y114{bottom:335.353500px;}
.y171{bottom:335.598000px;}
.y92{bottom:337.483500px;}
.y1d7{bottom:338.266500px;}
.y227{bottom:340.090500px;}
.yab{bottom:342.828000px;}
.y6a{bottom:343.377000px;}
.y195{bottom:345.253500px;}
.y11c{bottom:345.760500px;}
.yef{bottom:347.997000px;}
.y1bf{bottom:348.552000px;}
.y3d{bottom:351.885000px;}
.y13f{bottom:353.709000px;}
.yc8{bottom:353.944500px;}
.yb7{bottom:353.961000px;}
.y166{bottom:355.075500px;}
.y170{bottom:355.921500px;}
.y1d6{bottom:358.590000px;}
.y200{bottom:358.620000px;}
.y69{bottom:363.700500px;}
.y194{bottom:365.577000px;}
.y11b{bottom:366.084000px;}
.yee{bottom:368.320500px;}
.y1be{bottom:368.875500px;}
.y91{bottom:371.256000px;}
.y226{bottom:373.863000px;}
.y13e{bottom:374.032500px;}
.yb6{bottom:374.286000px;}
.y165{bottom:375.400500px;}
.y3c{bottom:375.628500px;}
.ye0{bottom:376.219500px;}
.y1ff{bottom:378.945000px;}
.y113{bottom:378.984000px;}
.y68{bottom:384.025500px;}
.y193{bottom:385.902000px;}
.y3b{bottom:386.853000px;}
.yed{bottom:388.644000px;}
.y1bd{bottom:389.199000px;}
.y90{bottom:391.581000px;}
.y225{bottom:394.186500px;}
.y13d{bottom:394.357500px;}
.yb5{bottom:394.609500px;}
.y1d5{bottom:395.113500px;}
.y164{bottom:395.724000px;}
.ydf{bottom:396.543000px;}
.y1fe{bottom:399.268500px;}
.y67{bottom:404.349000px;}
.y192{bottom:406.225500px;}
.yaa{bottom:406.581000px;}
.yec{bottom:408.967500px;}
.y1bc{bottom:409.522500px;}
.y112{bottom:412.371000px;}
.y3a{bottom:413.781000px;}
.y224{bottom:414.511500px;}
.y163{bottom:416.047500px;}
.yde{bottom:416.866500px;}
.yc7{bottom:417.697500px;}
.y66{bottom:424.672500px;}
.y8f{bottom:425.353500px;}
.ya9{bottom:426.904500px;}
.y13c{bottom:427.068000px;}
.yeb{bottom:429.292500px;}
.y1bb{bottom:429.846000px;}
.y1fd{bottom:433.041000px;}
.y39{bottom:434.104500px;}
.y162{bottom:436.371000px;}
.yc6{bottom:438.021000px;}
.y65{bottom:444.996000px;}
.y8e{bottom:445.677000px;}
.y111{bottom:445.758000px;}
.ya8{bottom:447.228000px;}
.y13b{bottom:447.391500px;}
.y223{bottom:448.284000px;}
.y191{bottom:449.440500px;}
.y1ba{bottom:450.171000px;}
.y1fc{bottom:453.366000px;}
.y38{bottom:454.428000px;}
.y161{bottom:456.694500px;}
.ydd{bottom:457.131000px;}
.y19{bottom:457.879500px;}
.yc5{bottom:458.344500px;}
.y1d4{bottom:467.515500px;}
.y13a{bottom:467.715000px;}
.y222{bottom:468.607500px;}
.y190{bottom:469.765500px;}
.y1fb{bottom:473.689500px;}
.y37{bottom:474.751500px;}
.y64{bottom:475.885500px;}
.y160{bottom:477.019500px;}
.y1b9{bottom:477.219000px;}
.ydc{bottom:477.454500px;}
.y18{bottom:478.204500px;}
.y110{bottom:478.566000px;}
.yc4{bottom:478.669500px;}
.y8d{bottom:483.934500px;}
.y1d3{bottom:487.839000px;}
.y139{bottom:488.040000px;}
.y221{bottom:488.932500px;}
.y18f{bottom:490.089000px;}
.y36{bottom:495.076500px;}
.y15f{bottom:497.343000px;}
.y1b8{bottom:497.542500px;}
.y10f{bottom:498.889500px;}
.y8c{bottom:504.258000px;}
.y1fa{bottom:507.462000px;}
.y1d2{bottom:508.162500px;}
.y138{bottom:508.363500px;}
.y18e{bottom:510.412500px;}
.ydb{bottom:516.841500px;}
.y15e{bottom:517.666500px;}
.y1b7{bottom:517.866000px;}
.y10e{bottom:519.213000px;}
.y63{bottom:519.699000px;}
.y220{bottom:522.705000px;}
.y35{bottom:525.966000px;}
.y1f9{bottom:527.787000px;}
.y1d1{bottom:528.486000px;}
.y17{bottom:529.909500px;}
.y18d{bottom:530.736000px;}
.y8b{bottom:535.147500px;}
.yda{bottom:537.165000px;}
.y1b6{bottom:538.189500px;}
.y137{bottom:539.481000px;}
.y10d{bottom:539.536500px;}
.y62{bottom:540.022500px;}
.y21f{bottom:543.028500px;}
.y16{bottom:547.843500px;}
.y1f8{bottom:548.110500px;}
.y15d{bottom:548.556000px;}
.y1d0{bottom:548.809500px;}
.y18c{bottom:551.059500px;}
.yd9{bottom:557.488500px;}
.y1b5{bottom:558.514500px;}
.y136{bottom:559.806000px;}
.y10c{bottom:559.861500px;}
.y21e{bottom:563.352000px;}
.y15{bottom:565.776000px;}
.y1f7{bottom:568.434000px;}
.y34{bottom:568.608000px;}
.y1cf{bottom:569.134500px;}
.y18b{bottom:571.384500px;}
.y61{bottom:573.796500px;}
.y8a{bottom:578.961000px;}
.y10b{bottom:580.185000px;}
.y14{bottom:583.708500px;}
.y1b4{bottom:585.562500px;}
.yd8{bottom:586.021500px;}
.y1f6{bottom:588.757500px;}
.y33{bottom:588.931500px;}
.y1ce{bottom:589.458000px;}
.y135{bottom:590.695500px;}
.y18a{bottom:591.708000px;}
.y15c{bottom:592.369500px;}
.y60{bottom:594.120000px;}
.y21d{bottom:597.126000px;}
.y89{bottom:599.284500px;}
.y10a{bottom:600.508500px;}
.y13{bottom:601.641000px;}
.y1b3{bottom:605.886000px;}
.y32{bottom:609.256500px;}
.y1cd{bottom:609.781500px;}
.y15b{bottom:612.693000px;}
.y21c{bottom:617.449500px;}
.y12{bottom:619.573500px;}
.y109{bottom:620.832000px;}
.y1f5{bottom:622.531500px;}
.y1b2{bottom:626.209500px;}
.y5f{bottom:627.894000px;}
.yd7{bottom:628.150500px;}
.y31{bottom:629.580000px;}
.y1cc{bottom:630.105000px;}
.y15a{bottom:633.016500px;}
.y134{bottom:633.409500px;}
.y189{bottom:634.923000px;}
.y88{bottom:637.318500px;}
.y11{bottom:637.506000px;}
.y108{bottom:641.155500px;}
.y1f4{bottom:642.855000px;}
.y1b1{bottom:646.534500px;}
.y5e{bottom:648.217500px;}
.yd6{bottom:648.475500px;}
.y30{bottom:649.903500px;}
.y1cb{bottom:650.428500px;}
.y21b{bottom:651.223500px;}
.y133{bottom:653.734500px;}
.y188{bottom:655.246500px;}
.y10{bottom:655.440000px;}
.y107{bottom:661.479000px;}
.y5d{bottom:662.898000px;}
.y1f3{bottom:663.178500px;}
.y1b0{bottom:666.858000px;}
.y5c{bottom:668.541000px;}
.yd5{bottom:668.799000px;}
.y159{bottom:669.541500px;}
.y2f{bottom:670.227000px;}
.y21a{bottom:671.547000px;}
.yf{bottom:673.372500px;}
.y132{bottom:674.058000px;}
.y187{bottom:675.571500px;}
.y106{bottom:681.804000px;}
.y1af{bottom:687.181500px;}
.y87{bottom:688.870500px;}
.ye{bottom:691.305000px;}
.y131{bottom:694.381500px;}
.y186{bottom:695.895000px;}
.y1f2{bottom:696.952500px;}
.y2e{bottom:697.792500px;}
.yd4{bottom:699.688500px;}
.y5b{bottom:702.315000px;}
.y219{bottom:705.321000px;}
.y1ae{bottom:707.505000px;}
.y86{bottom:709.195500px;}
.yd{bottom:709.237500px;}
.y105{bottom:712.693500px;}
.y130{bottom:714.705000px;}
.y185{bottom:716.218500px;}
.y1f1{bottom:717.276000px;}
.y2d{bottom:718.116000px;}
.y218{bottom:725.644500px;}
.yc{bottom:727.170000px;}
.y58{bottom:728.752500px;}
.y54{bottom:733.531500px;}
.y85{bottom:734.854500px;}
.y12f{bottom:735.028500px;}
.y184{bottom:736.542000px;}
.y1f0{bottom:737.599500px;}
.yd3{bottom:740.098500px;}
.y1ad{bottom:741.279000px;}
.y158{bottom:741.942000px;}
.y57{bottom:744.196500px;}
.y5a{bottom:744.756000px;}
.yb{bottom:745.102500px;}
.y217{bottom:745.968000px;}
.y84{bottom:746.079000px;}
.y53{bottom:748.975500px;}
.y2c{bottom:749.406000px;}
.y52{bottom:755.422500px;}
.y104{bottom:756.324000px;}
.y183{bottom:756.865500px;}
.y59{bottom:760.200000px;}
.y1ac{bottom:761.602500px;}
.y157{bottom:762.265500px;}
.ya{bottom:763.036500px;}
.y216{bottom:766.291500px;}
.y55{bottom:766.647000px;}
.y12e{bottom:767.740500px;}
.y2b{bottom:769.729500px;}
.y1ef{bottom:771.373500px;}
.y56{bottom:775.354500px;}
.y83{bottom:775.467000px;}
.y103{bottom:776.647500px;}
.y182{bottom:777.190500px;}
.y51{bottom:777.717000px;}
.y97{bottom:780.406500px;}
.y9{bottom:780.969000px;}
.y1ab{bottom:781.926000px;}
.y12d{bottom:788.064000px;}
.y2a{bottom:790.053000px;}
.y1ee{bottom:791.697000px;}
.yd2{bottom:794.913000px;}
.y82{bottom:795.792000px;}
.y102{bottom:796.972500px;}
.y8{bottom:798.901500px;}
.y215{bottom:800.065500px;}
.y96{bottom:800.731500px;}
.y156{bottom:801.652500px;}
.y50{bottom:814.860000px;}
.yd1{bottom:815.236500px;}
.y1aa{bottom:815.700000px;}
.y81{bottom:816.115500px;}
.y101{bottom:817.296000px;}
.y214{bottom:820.389000px;}
.y181{bottom:820.405500px;}
.y95{bottom:821.055000px;}
.y29{bottom:821.343000px;}
.y155{bottom:821.976000px;}
.y12c{bottom:823.039500px;}
.y1ed{bottom:825.469500px;}
.y7{bottom:826.176000px;}
.y4f{bottom:835.183500px;}
.yd0{bottom:835.560000px;}
.y1a9{bottom:836.023500px;}
.y213{bottom:840.712500px;}
.y180{bottom:840.729000px;}
.y28{bottom:841.666500px;}
.y154{bottom:842.301000px;}
.y100{bottom:844.515000px;}
.y1ec{bottom:845.794500px;}
.y12b{bottom:846.807000px;}
.y80{bottom:847.005000px;}
.y4e{bottom:855.507000px;}
.y1a8{bottom:856.347000px;}
.y17f{bottom:861.054000px;}
.y27{bottom:861.990000px;}
.y153{bottom:862.624500px;}
.y1eb{bottom:866.118000px;}
.yff{bottom:866.809500px;}
.y12a{bottom:867.130500px;}
.y212{bottom:874.486500px;}
.y1a7{bottom:876.670500px;}
.y17e{bottom:881.377500px;}
.y152{bottom:882.948000px;}
.y4d{bottom:886.396500px;}
.y1ea{bottom:886.441500px;}
.y129{bottom:887.455500px;}
.y26{bottom:889.555500px;}
.y7f{bottom:890.818500px;}
.y211{bottom:894.810000px;}
.yfe{bottom:901.285500px;}
.y17d{bottom:901.701000px;}
.y6{bottom:904.380000px;}
.y1a6{bottom:910.444500px;}
.y7e{bottom:911.142000px;}
.y151{bottom:911.481000px;}
.ya7{bottom:918.018000px;}
.y25{bottom:920.445000px;}
.yfd{bottom:921.609000px;}
.y17c{bottom:922.024500px;}
.y128{bottom:922.525500px;}
.y1e9{bottom:924.475500px;}
.y5{bottom:924.705000px;}
.y210{bottom:928.582500px;}
.y4c{bottom:930.210000px;}
.y1a5{bottom:930.768000px;}
.y7d{bottom:931.465500px;}
.ya6{bottom:938.341500px;}
.yfc{bottom:941.932500px;}
.y127{bottom:942.849000px;}
.y20f{bottom:948.907500px;}
.y4b{bottom:950.535000px;}
.y1a4{bottom:951.091500px;}
.y7c{bottom:951.789000px;}
.y150{bottom:952.701000px;}
.ya5{bottom:958.665000px;}
.y4{bottom:961.897500px;}
.yfb{bottom:962.256000px;}
.y24{bottom:963.087000px;}
.y126{bottom:963.172500px;}
.y17b{bottom:965.241000px;}
.y20e{bottom:969.231000px;}
.y1a3{bottom:971.416500px;}
.y14f{bottom:973.026000px;}
.y1e8{bottom:976.027500px;}
.ya4{bottom:978.988500px;}
.y7b{bottom:981.826500px;}
.yfa{bottom:982.581000px;}
.y23{bottom:983.410500px;}
.y125{bottom:983.496000px;}
.y17a{bottom:985.564500px;}
.y4a{bottom:987.297000px;}
.y14e{bottom:993.349500px;}
.y1e7{bottom:996.352500px;}
.ya3{bottom:999.312000px;}
.y7a{bottom:1002.150000px;}
.yf9{bottom:1002.904500px;}
.y20d{bottom:1003.003500px;}
.y22{bottom:1003.735500px;}
.y124{bottom:1003.821000px;}
.y179{bottom:1005.888000px;}
.y3{bottom:1007.224500px;}
.y1a2{bottom:1009.672500px;}
.y14d{bottom:1013.673000px;}
.y1e6{bottom:1016.676000px;}
.ya2{bottom:1019.637000px;}
.y79{bottom:1022.475000px;}
.y20c{bottom:1023.328500px;}
.y21{bottom:1024.059000px;}
.y123{bottom:1024.144500px;}
.y178{bottom:1026.211500px;}
.y1a1{bottom:1029.996000px;}
.yf8{bottom:1033.794000px;}
.y14c{bottom:1033.996500px;}
.y1e5{bottom:1036.999500px;}
.y2{bottom:1040.101500px;}
.y20b{bottom:1043.652000px;}
.y20{bottom:1044.382500px;}
.y122{bottom:1044.468000px;}
.y177{bottom:1046.535000px;}
.ya1{bottom:1053.409500px;}
.y14b{bottom:1054.320000px;}
.y78{bottom:1056.997500px;}
.y1ca{bottom:1057.101000px;}
.y1e4{bottom:1057.323000px;}
.y20a{bottom:1063.975500px;}
.y1f{bottom:1064.706000px;}
.y1a0{bottom:1066.521000px;}
.y176{bottom:1066.860000px;}
.y77{bottom:1068.222000px;}
.y1{bottom:1072.978500px;}
.ya0{bottom:1073.733000px;}
.y14a{bottom:1074.645000px;}
.y121{bottom:1075.357500px;}
.yf7{bottom:1077.424500px;}
.y1e3{bottom:1077.646500px;}
.y175{bottom:1087.183500px;}
.y149{bottom:1094.968500px;}
.y1e{bottom:1095.595500px;}
.yf6{bottom:1097.748000px;}
.y1e2{bottom:1097.971500px;}
.y9f{bottom:1107.507000px;}
.y148{bottom:1115.292000px;}
.y76{bottom:1116.945000px;}
.yf5{bottom:1118.073000px;}
.y75{bottom:1131.625500px;}
.y147{bottom:1132.753500px;}
.y1d{bottom:1136.005500px;}
.y74{bottom:1137.268500px;}
.y9e{bottom:1138.396500px;}
.h9{height:16.713370px;}
.h13{height:21.861836px;}
.h14{height:34.191729px;}
.ha{height:37.981670px;}
.h7{height:42.500452px;}
.h6{height:44.891476px;}
.hf{height:49.090950px;}
.h8{height:49.156405px;}
.h5{height:50.642227px;}
.hc{height:53.870131px;}
.h26{height:59.613450px;}
.hd{height:59.619450px;}
.h4{height:60.219729px;}
.h1b{height:61.635450px;}
.h18{height:62.895450px;}
.hb{height:64.643977px;}
.h16{height:65.266950px;}
.h1c{height:71.722405px;}
.h1a{height:71.728405px;}
.h2{height:72.407972px;}
.h3{height:72.614557px;}
.h19{height:72.972624px;}
.h22{height:74.589836px;}
.h11{height:81.021836px;}
.h10{height:89.872950px;}
.h21{height:93.070950px;}
.he{height:93.370950px;}
.h12{height:93.988950px;}
.h1d{height:94.054405px;}
.h1e{height:98.619470px;}
.h17{height:103.899450px;}
.h15{height:110.625450px;}
.h23{height:110.955836px;}
.h24{height:114.153836px;}
.h1f{height:137.458950px;}
.h20{height:159.051836px;}
.h25{height:160.683450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x30{left:116.967000px;}
.xb{left:126.651000px;}
.x2f{left:128.070000px;}
.xd{left:132.592500px;}
.x37{left:141.496500px;}
.x9{left:148.909500px;}
.x8{left:171.319500px;}
.x2{left:184.594500px;}
.x1{left:198.813000px;}
.x14{left:212.703000px;}
.x15{left:215.665500px;}
.x26{left:253.645500px;}
.x18{left:256.666500px;}
.x19{left:263.221500px;}
.x3{left:286.083000px;}
.x16{left:301.237500px;}
.x17{left:302.440500px;}
.x32{left:315.484500px;}
.x1a{left:326.110500px;}
.x31{left:328.606500px;}
.x2d{left:333.378000px;}
.x2a{left:335.569500px;}
.x1d{left:341.565000px;}
.x33{left:353.499000px;}
.xe{left:355.092000px;}
.x1e{left:358.585500px;}
.x6{left:359.928000px;}
.x27{left:369.544500px;}
.x13{left:377.122500px;}
.x5{left:378.310500px;}
.x4{left:387.576000px;}
.x1c{left:394.936500px;}
.xf{left:398.248500px;}
.x7{left:413.587500px;}
.x34{left:434.862000px;}
.x10{left:438.544500px;}
.xc{left:442.389000px;}
.x1b{left:454.708500px;}
.x2e{left:459.154500px;}
.x2b{left:465.882000px;}
.x1f{left:478.333500px;}
.x28{left:490.848000px;}
.x21{left:493.788000px;}
.x22{left:504.247500px;}
.x11{left:506.616000px;}
.x20{left:508.431000px;}
.x2c{left:516.120000px;}
.x36{left:527.602500px;}
.x23{left:602.347500px;}
.x25{left:617.802000px;}
.x24{left:628.903500px;}
.x29{left:641.512500px;}
.x35{left:755.985000px;}
.x12{left:764.121000px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v17{vertical-align:-10.997333pt;}
.v6{vertical-align:-9.477333pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:14.378667pt;}
.ve{vertical-align:20.064000pt;}
.v4{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.vc{vertical-align:24.026667pt;}
.vd{vertical-align:28.661333pt;}
.v9{vertical-align:30.432000pt;}
.v10{vertical-align:32.122667pt;}
.v7{vertical-align:36.250667pt;}
.v5{vertical-align:39.360000pt;}
.v13{vertical-align:42.298667pt;}
.va{vertical-align:45.338667pt;}
.v16{vertical-align:46.869333pt;}
.v8{vertical-align:52.586667pt;}
.vf{vertical-align:58.629333pt;}
.v12{vertical-align:78.549333pt;}
.v11{vertical-align:82.037333pt;}
.v15{vertical-align:107.450667pt;}
.v14{vertical-align:121.946667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.001458pt;}
.ls51{letter-spacing:0.001908pt;}
.ls10{letter-spacing:0.001916pt;}
.ls18{letter-spacing:0.002384pt;}
.ls4a{letter-spacing:0.002405pt;}
.ls1e{letter-spacing:0.002881pt;}
.ls36{letter-spacing:0.003752pt;}
.ls53{letter-spacing:0.006198pt;}
.ls28{letter-spacing:0.007126pt;}
.ls70{letter-spacing:0.007917pt;}
.ls41{letter-spacing:0.009018pt;}
.ls82{letter-spacing:0.009612pt;}
.lsaf{letter-spacing:0.011083pt;}
.ls89{letter-spacing:0.011532pt;}
.lsa2{letter-spacing:0.011627pt;}
.ls6e{letter-spacing:0.011989pt;}
.lsa9{letter-spacing:0.012013pt;}
.ls8d{letter-spacing:0.013305pt;}
.ls61{letter-spacing:0.013765pt;}
.ls83{letter-spacing:0.014725pt;}
.ls50{letter-spacing:0.016182pt;}
.ls8b{letter-spacing:0.018267pt;}
.ls90{letter-spacing:0.019328pt;}
.lsb5{letter-spacing:0.024577pt;}
.lsb3{letter-spacing:0.025872pt;}
.ls0{letter-spacing:0.026855pt;}
.ls1b{letter-spacing:0.215971pt;}
.ls23{letter-spacing:0.232727pt;}
.ls59{letter-spacing:0.407273pt;}
.ls4e{letter-spacing:2.036365pt;}
.ls49{letter-spacing:2.069240pt;}
.ls45{letter-spacing:2.072168pt;}
.ls69{letter-spacing:2.087249pt;}
.ls4f{letter-spacing:2.094547pt;}
.ls40{letter-spacing:2.109648pt;}
.lsb7{letter-spacing:2.152729pt;}
.ls5f{letter-spacing:2.650641pt;}
.lsa3{letter-spacing:2.653107pt;}
.ls19{letter-spacing:2.653258pt;}
.ls6f{letter-spacing:2.653383pt;}
.ls1{letter-spacing:2.654327pt;}
.lsa{letter-spacing:2.655975pt;}
.ls46{letter-spacing:2.658591pt;}
.ls37{letter-spacing:2.658717pt;}
.ls62{letter-spacing:4.596367pt;}
.ls26{letter-spacing:4.712731pt;}
.ls2e{letter-spacing:4.770913pt;}
.ls29{letter-spacing:4.930835pt;}
.lsa4{letter-spacing:5.603171pt;}
.ls5d{letter-spacing:5.972958pt;}
.ls2d{letter-spacing:6.225460pt;}
.ls25{letter-spacing:6.283642pt;}
.lsb8{letter-spacing:6.325369pt;}
.ls80{letter-spacing:6.370294pt;}
.ls91{letter-spacing:6.375832pt;}
.ls8c{letter-spacing:6.377661pt;}
.lse{letter-spacing:6.574551pt;}
.ls38{letter-spacing:8.077950pt;}
.ls1f{letter-spacing:8.080355pt;}
.ls22{letter-spacing:8.089620pt;}
.ls4{letter-spacing:9.658190pt;}
.ls44{letter-spacing:11.108328pt;}
.ls30{letter-spacing:12.741829pt;}
.ls21{letter-spacing:12.916374pt;}
.ls2f{letter-spacing:12.974556pt;}
.ls76{letter-spacing:13.149102pt;}
.ls9c{letter-spacing:13.323647pt;}
.ls95{letter-spacing:13.789102pt;}
.ls9{letter-spacing:15.069103pt;}
.ls20{letter-spacing:15.581258pt;}
.ls93{letter-spacing:15.927925pt;}
.ls1d{letter-spacing:16.068811pt;}
.ls8{letter-spacing:16.116377pt;}
.ls8a{letter-spacing:16.135981pt;}
.ls81{letter-spacing:16.158995pt;}
.ls43{letter-spacing:16.159477pt;}
.ls4c{letter-spacing:16.162443pt;}
.lsb{letter-spacing:16.174559pt;}
.ls71{letter-spacing:16.407286pt;}
.ls94{letter-spacing:16.471925pt;}
.ls5b{letter-spacing:16.640014pt;}
.ls98{letter-spacing:16.872741pt;}
.ls9b{letter-spacing:17.163651pt;}
.ls7e{letter-spacing:17.338196pt;}
.ls9f{letter-spacing:18.036379pt;}
.ls6a{letter-spacing:18.077258pt;}
.ls35{letter-spacing:18.210924pt;}
.ls7b{letter-spacing:18.269106pt;}
.ls17{letter-spacing:18.327288pt;}
.ls6d{letter-spacing:18.676379pt;}
.ls48{letter-spacing:18.813107pt;}
.ls42{letter-spacing:18.813258pt;}
.ls84{letter-spacing:18.816853pt;}
.ls39{letter-spacing:18.818591pt;}
.ls66{letter-spacing:19.025470pt;}
.ls57{letter-spacing:19.258198pt;}
.ls72{letter-spacing:19.316380pt;}
.ls86{letter-spacing:19.490925pt;}
.ls9e{letter-spacing:19.511925pt;}
.ls68{letter-spacing:19.723653pt;}
.ls3{letter-spacing:19.781835pt;}
.ls3e{letter-spacing:19.843716pt;}
.ls79{letter-spacing:19.956380pt;}
.ls92{letter-spacing:20.014562pt;}
.ls65{letter-spacing:20.247290pt;}
.ls33{letter-spacing:20.421835pt;}
.ls85{letter-spacing:20.571520pt;}
.ls63{letter-spacing:20.712745pt;}
.lsb6{letter-spacing:20.829108pt;}
.ls3f{letter-spacing:20.887290pt;}
.ls16{letter-spacing:20.983437pt;}
.ls4d{letter-spacing:21.011856pt;}
.ls67{letter-spacing:21.061836pt;}
.lsbc{letter-spacing:21.120018pt;}
.lsc{letter-spacing:21.181258pt;}
.lsd{letter-spacing:21.183975pt;}
.ls5{letter-spacing:21.294563pt;}
.lsbb{letter-spacing:21.760018pt;}
.ls73{letter-spacing:21.943925pt;}
.ls5c{letter-spacing:21.949258pt;}
.lsb0{letter-spacing:22.146591pt;}
.lsba{letter-spacing:22.225473pt;}
.ls75{letter-spacing:22.458201pt;}
.ls6b{letter-spacing:22.516382pt;}
.ls3c{letter-spacing:22.532825pt;}
.ls9d{letter-spacing:22.535925pt;}
.ls3a{letter-spacing:22.538144pt;}
.lsb4{letter-spacing:22.574564pt;}
.ls12{letter-spacing:22.749110pt;}
.ls77{letter-spacing:22.759925pt;}
.ls64{letter-spacing:22.914104pt;}
.ls96{letter-spacing:23.271925pt;}
.ls5e{letter-spacing:23.272747pt;}
.lsab{letter-spacing:23.447292pt;}
.ls31{letter-spacing:23.538591pt;}
.ls56{letter-spacing:24.029111pt;}
.ls58{letter-spacing:24.203657pt;}
.ls7f{letter-spacing:24.261838pt;}
.ls6c{letter-spacing:24.320020pt;}
.lsa1{letter-spacing:24.436384pt;}
.ls34{letter-spacing:24.498104pt;}
.ls32{letter-spacing:24.610930pt;}
.ls6{letter-spacing:24.999925pt;}
.ls7d{letter-spacing:25.192748pt;}
.ls97{letter-spacing:25.309112pt;}
.ls15{letter-spacing:25.367294pt;}
.ls87{letter-spacing:25.425476pt;}
.ls60{letter-spacing:25.483658pt;}
.ls7c{letter-spacing:25.774567pt;}
.ls1a{letter-spacing:25.832749pt;}
.ls88{letter-spacing:25.855488pt;}
.lsac{letter-spacing:26.290591pt;}
.ls5a{letter-spacing:26.414567pt;}
.lsa7{letter-spacing:26.530931pt;}
.lsa8{letter-spacing:26.589113pt;}
.lsb1{letter-spacing:26.821841pt;}
.ls8f{letter-spacing:26.880022pt;}
.ls7a{letter-spacing:27.415925pt;}
.lsaa{letter-spacing:27.694569pt;}
.ls99{letter-spacing:28.741842pt;}
.ls7{letter-spacing:29.090933pt;}
.ls2c{letter-spacing:29.440025pt;}
.ls9a{letter-spacing:29.469258pt;}
.ls8e{letter-spacing:29.538591pt;}
.lsa6{letter-spacing:30.080025pt;}
.lsb9{letter-spacing:30.603662pt;}
.lsae{letter-spacing:31.395963pt;}
.ls14{letter-spacing:31.941845pt;}
.ls2b{letter-spacing:32.116390pt;}
.ls11{letter-spacing:32.349118pt;}
.lsa0{letter-spacing:32.523663pt;}
.lsa5{letter-spacing:32.529980pt;}
.ls78{letter-spacing:33.221846pt;}
.lsf{letter-spacing:33.943164pt;}
.lsb2{letter-spacing:37.585486pt;}
.lsad{letter-spacing:39.447306pt;}
.ls52{letter-spacing:41.930155pt;}
.ls27{letter-spacing:49.163677pt;}
.ls13{letter-spacing:62.224787pt;}
.ls54{letter-spacing:66.837308pt;}
.ls24{letter-spacing:67.651149pt;}
.ls2a{letter-spacing:69.239832pt;}
.ls74{letter-spacing:198.722591pt;}
.ls4b{letter-spacing:729.484244pt;}
.ls47{letter-spacing:735.186067pt;}
.ls55{letter-spacing:822.167958pt;}
.ls1c{letter-spacing:882.968009pt;}
.ls3b{letter-spacing:941.557308pt;}
.ws4f{word-spacing:-46.062584pt;}
.ws13a{word-spacing:-37.934577pt;}
.ws4b{word-spacing:-37.899668pt;}
.ws4d{word-spacing:-33.233482pt;}
.ws3c{word-spacing:-29.521250pt;}
.ws67{word-spacing:-29.265479pt;}
.ws24{word-spacing:-28.928024pt;}
.wse6{word-spacing:-27.243721pt;}
.ws140{word-spacing:-27.170932pt;}
.wse5{word-spacing:-21.830388pt;}
.ws2a{word-spacing:-21.725109pt;}
.ws128{word-spacing:-19.909835pt;}
.wsba{word-spacing:-19.211652pt;}
.ws72{word-spacing:-19.165107pt;}
.wsa3{word-spacing:-18.513470pt;}
.ws85{word-spacing:-18.397106pt;}
.ws125{word-spacing:-18.222561pt;}
.ws8b{word-spacing:-18.048015pt;}
.ws144{word-spacing:-17.873469pt;}
.wsd7{word-spacing:-17.349833pt;}
.ws103{word-spacing:-17.117105pt;}
.ws149{word-spacing:-17.070560pt;}
.ws92{word-spacing:-17.058923pt;}
.ws134{word-spacing:-16.826196pt;}
.ws37{word-spacing:-16.244377pt;}
.ws76{word-spacing:-16.186195pt;}
.ws21{word-spacing:-16.162923pt;}
.ws10a{word-spacing:-16.069832pt;}
.wse1{word-spacing:-15.953468pt;}
.wsf0{word-spacing:-15.895286pt;}
.wscd{word-spacing:-15.837104pt;}
.ws17{word-spacing:-15.720740pt;}
.ws8d{word-spacing:-15.662559pt;}
.wseb{word-spacing:-15.604377pt;}
.ws10f{word-spacing:-15.546195pt;}
.wsf5{word-spacing:-15.488013pt;}
.wsec{word-spacing:-15.429831pt;}
.ws38{word-spacing:-15.313467pt;}
.ws3a{word-spacing:-15.138922pt;}
.ws39{word-spacing:-15.080740pt;}
.ws79{word-spacing:-15.022558pt;}
.ws71{word-spacing:-14.964376pt;}
.wsb9{word-spacing:-14.906194pt;}
.ws93{word-spacing:-14.848012pt;}
.wsc3{word-spacing:-14.789831pt;}
.ws11e{word-spacing:-14.615285pt;}
.ws13f{word-spacing:-14.440739pt;}
.ws89{word-spacing:-14.324376pt;}
.wsa2{word-spacing:-14.266194pt;}
.ws12f{word-spacing:-14.208012pt;}
.ws36{word-spacing:-14.149830pt;}
.ws75{word-spacing:-14.091648pt;}
.ws9f{word-spacing:-14.033466pt;}
.ws68{word-spacing:-13.975284pt;}
.wse7{word-spacing:-13.948137pt;}
.ws29{word-spacing:-13.917103pt;}
.ws6a{word-spacing:-13.858921pt;}
.wsa6{word-spacing:-13.800739pt;}
.ws8c{word-spacing:-13.742557pt;}
.ws175{word-spacing:-13.684375pt;}
.wsdd{word-spacing:-13.626193pt;}
.ws4{word-spacing:-13.596956pt;}
.wsb2{word-spacing:-13.509829pt;}
.ws52{word-spacing:-13.451648pt;}
.ws101{word-spacing:-13.393466pt;}
.wsd3{word-spacing:-13.335284pt;}
.ws11a{word-spacing:-13.277102pt;}
.wsa1{word-spacing:-13.218920pt;}
.wsd{word-spacing:-13.118752pt;}
.ws164{word-spacing:-13.102556pt;}
.wsd8{word-spacing:-13.044375pt;}
.ws7c{word-spacing:-12.986193pt;}
.ws129{word-spacing:-12.939647pt;}
.ws100{word-spacing:-12.928011pt;}
.ws145{word-spacing:-12.811647pt;}
.ws83{word-spacing:-12.753465pt;}
.ws49{word-spacing:-12.637101pt;}
.ws156{word-spacing:-12.578920pt;}
.ws13c{word-spacing:-12.462556pt;}
.ws137{word-spacing:-12.404374pt;}
.ws10d{word-spacing:-12.346192pt;}
.ws10e{word-spacing:-12.288010pt;}
.wsaf{word-spacing:-12.229828pt;}
.ws51{word-spacing:-12.171647pt;}
.ws98{word-spacing:-12.113465pt;}
.ws115{word-spacing:-12.055283pt;}
.ws5f{word-spacing:-11.938919pt;}
.ws73{word-spacing:-11.907461pt;}
.ws74{word-spacing:-11.880737pt;}
.ws99{word-spacing:-11.822555pt;}
.ws12{word-spacing:-11.737271pt;}
.ws80{word-spacing:-11.706192pt;}
.ws102{word-spacing:-11.648010pt;}
.ws143{word-spacing:-11.589828pt;}
.ws33{word-spacing:-11.531646pt;}
.wsff{word-spacing:-11.473464pt;}
.ws105{word-spacing:-11.415282pt;}
.ws150{word-spacing:-11.357100pt;}
.ws7d{word-spacing:-11.298919pt;}
.ws96{word-spacing:-11.240737pt;}
.ws14b{word-spacing:-11.182555pt;}
.wsb{word-spacing:-11.152799pt;}
.ws84{word-spacing:-11.124373pt;}
.ws91{word-spacing:-11.066191pt;}
.wsb0{word-spacing:-11.008009pt;}
.ws123{word-spacing:-10.891645pt;}
.ws11d{word-spacing:-10.833464pt;}
.ws3e{word-spacing:-10.775282pt;}
.ws5{word-spacing:-10.727728pt;}
.ws108{word-spacing:-10.724165pt;}
.wsa4{word-spacing:-10.719776pt;}
.ws147{word-spacing:-10.717100pt;}
.ws6e{word-spacing:-10.698674pt;}
.ws3d{word-spacing:-10.658918pt;}
.ws2b{word-spacing:-10.600736pt;}
.ws16{word-spacing:-10.542554pt;}
.ws2d{word-spacing:-10.426191pt;}
.ws60{word-spacing:-10.368009pt;}
.wsb8{word-spacing:-10.309827pt;}
.ws81{word-spacing:-10.251645pt;}
.ws6c{word-spacing:-10.201882pt;}
.ws77{word-spacing:-10.199054pt;}
.wsfc{word-spacing:-10.196153pt;}
.ws146{word-spacing:-10.193463pt;}
.ws7{word-spacing:-10.143255pt;}
.ws126{word-spacing:-10.135281pt;}
.ws44{word-spacing:-10.077099pt;}
.ws86{word-spacing:-10.018917pt;}
.ws163{word-spacing:-9.960736pt;}
.ws45{word-spacing:-9.902554pt;}
.wsf4{word-spacing:-9.844372pt;}
.ws11f{word-spacing:-9.786190pt;}
.ws6{word-spacing:-9.771318pt;}
.ws18{word-spacing:-9.669826pt;}
.ws26{word-spacing:-9.611644pt;}
.wsf{word-spacing:-9.558783pt;}
.wsc1{word-spacing:-9.553463pt;}
.ws15{word-spacing:-9.505649pt;}
.ws8f{word-spacing:-9.495281pt;}
.ws107{word-spacing:-9.457096pt;}
.ws117{word-spacing:-9.437099pt;}
.ws9{word-spacing:-9.399381pt;}
.ws153{word-spacing:-9.378917pt;}
.ws2e{word-spacing:-9.320735pt;}
.ws7a{word-spacing:-9.262553pt;}
.ws2c{word-spacing:-9.204371pt;}
.wsb1{word-spacing:-9.146189pt;}
.wsea{word-spacing:-9.088008pt;}
.ws7f{word-spacing:-9.029826pt;}
.ws5d{word-spacing:-8.971644pt;}
.wsa{word-spacing:-8.921176pt;}
.wsb3{word-spacing:-8.913462pt;}
.ws3{word-spacing:-8.868042pt;}
.wsce{word-spacing:-8.855280pt;}
.ws35{word-spacing:-8.797098pt;}
.ws62{word-spacing:-8.738916pt;}
.wsd1{word-spacing:-8.680735pt;}
.wsbb{word-spacing:-8.636459pt;}
.wsee{word-spacing:-8.622553pt;}
.wsef{word-spacing:-8.564371pt;}
.ws121{word-spacing:-8.506189pt;}
.ws4c{word-spacing:-8.389825pt;}
.ws4a{word-spacing:-8.331643pt;}
.ws90{word-spacing:-8.273461pt;}
.wsb4{word-spacing:-8.215280pt;}
.ws8{word-spacing:-8.177302pt;}
.ws2f{word-spacing:-8.157098pt;}
.wsf6{word-spacing:-8.098916pt;}
.ws61{word-spacing:-8.040734pt;}
.wsad{word-spacing:-7.924370pt;}
.ws41{word-spacing:-7.866188pt;}
.wsae{word-spacing:-7.829109pt;}
.ws5e{word-spacing:-7.808007pt;}
.ws10{word-spacing:-7.752231pt;}
.ws3b{word-spacing:-7.749825pt;}
.ws7e{word-spacing:-7.633461pt;}
.wsc0{word-spacing:-7.575279pt;}
.ws111{word-spacing:-7.517097pt;}
.ws1e{word-spacing:-7.458915pt;}
.ws5a{word-spacing:-7.400733pt;}
.ws166{word-spacing:-7.342552pt;}
.ws34{word-spacing:-7.226188pt;}
.ws70{word-spacing:-7.168006pt;}
.ws65{word-spacing:-7.109824pt;}
.ws6b{word-spacing:-7.076549pt;}
.ws46{word-spacing:-7.051642pt;}
.wsf8{word-spacing:-6.993460pt;}
.ws64{word-spacing:-6.935279pt;}
.ws148{word-spacing:-6.877097pt;}
.wsa8{word-spacing:-6.818915pt;}
.wsda{word-spacing:-6.702551pt;}
.wsf7{word-spacing:-6.644369pt;}
.ws20{word-spacing:-6.586187pt;}
.ws130{word-spacing:-6.469824pt;}
.ws135{word-spacing:-6.446551pt;}
.ws5b{word-spacing:-6.411642pt;}
.ws13d{word-spacing:-6.353460pt;}
.ws131{word-spacing:-6.295278pt;}
.ws6f{word-spacing:-6.237096pt;}
.ws6d{word-spacing:-6.120732pt;}
.ws5c{word-spacing:-6.062551pt;}
.ws110{word-spacing:-5.888005pt;}
.ws14{word-spacing:-5.839412pt;}
.ws27{word-spacing:-5.829823pt;}
.ws15b{word-spacing:-5.771641pt;}
.ws11{word-spacing:-5.680010pt;}
.ws162{word-spacing:-5.655277pt;}
.wse0{word-spacing:-5.597096pt;}
.wse{word-spacing:-5.573743pt;}
.wsde{word-spacing:-5.538914pt;}
.ws12c{word-spacing:-5.480732pt;}
.ws94{word-spacing:-5.422550pt;}
.ws1d{word-spacing:-5.364368pt;}
.ws10b{word-spacing:-5.306186pt;}
.ws12b{word-spacing:-5.248004pt;}
.ws124{word-spacing:-5.189823pt;}
.ws97{word-spacing:-5.131641pt;}
.ws28{word-spacing:-5.073459pt;}
.ws50{word-spacing:-5.015277pt;}
.ws13{word-spacing:-4.936136pt;}
.wse3{word-spacing:-4.898913pt;}
.wsaa{word-spacing:-4.840731pt;}
.ws53{word-spacing:-4.824802pt;}
.wsb5{word-spacing:-4.782549pt;}
.wsb7{word-spacing:-4.724368pt;}
.ws118{word-spacing:-4.666186pt;}
.ws8a{word-spacing:-4.608004pt;}
.ws15a{word-spacing:-4.491640pt;}
.ws31{word-spacing:-4.433458pt;}
.ws63{word-spacing:-4.375276pt;}
.wsdb{word-spacing:-4.258913pt;}
.ws43{word-spacing:-4.200731pt;}
.ws42{word-spacing:-4.142549pt;}
.ws9a{word-spacing:-4.084367pt;}
.wsa9{word-spacing:-4.026185pt;}
.ws22{word-spacing:-3.968003pt;}
.ws152{word-spacing:-3.909821pt;}
.wsfa{word-spacing:-3.851640pt;}
.ws14e{word-spacing:-3.735276pt;}
.wse9{word-spacing:-3.677094pt;}
.wsf9{word-spacing:-3.560730pt;}
.wsfb{word-spacing:-3.502548pt;}
.ws3f{word-spacing:-3.444367pt;}
.ws88{word-spacing:-3.386185pt;}
.ws16c{word-spacing:-3.328003pt;}
.ws16d{word-spacing:-3.269821pt;}
.ws4e{word-spacing:-3.246548pt;}
.wsd0{word-spacing:-3.211639pt;}
.wsc6{word-spacing:-3.188366pt;}
.ws48{word-spacing:-3.153457pt;}
.wse2{word-spacing:-3.095275pt;}
.ws95{word-spacing:-3.064586pt;}
.ws14a{word-spacing:-3.037093pt;}
.ws154{word-spacing:-2.920730pt;}
.ws40{word-spacing:-2.862548pt;}
.ws139{word-spacing:-2.804366pt;}
.ws9d{word-spacing:-2.746184pt;}
.wsed{word-spacing:-2.722911pt;}
.wsbe{word-spacing:-2.397093pt;}
.ws127{word-spacing:-2.338911pt;}
.ws10c{word-spacing:-2.280729pt;}
.wsf3{word-spacing:-2.164365pt;}
.wsbf{word-spacing:-2.106184pt;}
.ws106{word-spacing:-2.048002pt;}
.ws66{word-spacing:-1.989820pt;}
.ws158{word-spacing:-1.931638pt;}
.wse4{word-spacing:-1.757092pt;}
.ws161{word-spacing:-1.640729pt;}
.ws168{word-spacing:-1.582547pt;}
.ws151{word-spacing:-1.524365pt;}
.wsa5{word-spacing:-1.501092pt;}
.ws113{word-spacing:-1.466183pt;}
.ws9b{word-spacing:-1.410459pt;}
.ws9e{word-spacing:-1.409937pt;}
.ws25{word-spacing:-1.408001pt;}
.ws112{word-spacing:-1.291637pt;}
.wsa0{word-spacing:-1.268365pt;}
.ws82{word-spacing:-1.233456pt;}
.wsbd{word-spacing:-1.210183pt;}
.wsd4{word-spacing:-1.000728pt;}
.wsa7{word-spacing:-0.977455pt;}
.wsd6{word-spacing:-0.942546pt;}
.ws30{word-spacing:-0.884364pt;}
.ws141{word-spacing:-0.768001pt;}
.wscf{word-spacing:-0.709819pt;}
.ws138{word-spacing:-0.651637pt;}
.wsfe{word-spacing:-0.593455pt;}
.ws116{word-spacing:-0.186182pt;}
.ws155{word-spacing:-0.076513pt;}
.ws23{word-spacing:-0.058182pt;}
.ws55{word-spacing:-0.042507pt;}
.ws1a{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.011636pt;}
.ws7b{word-spacing:0.162909pt;}
.ws14d{word-spacing:0.360728pt;}
.ws142{word-spacing:0.435809pt;}
.ws15f{word-spacing:0.628364pt;}
.ws69{word-spacing:1.143384pt;}
.ws160{word-spacing:1.268365pt;}
.ws157{word-spacing:1.326547pt;}
.ws104{word-spacing:1.349819pt;}
.ws136{word-spacing:1.524365pt;}
.wsd2{word-spacing:1.640729pt;}
.ws174{word-spacing:2.024729pt;}
.ws87{word-spacing:2.746184pt;}
.wscb{word-spacing:3.095275pt;}
.wsbc{word-spacing:3.153457pt;}
.wsc2{word-spacing:3.211639pt;}
.ws14f{word-spacing:4.352004pt;}
.ws1f{word-spacing:5.306186pt;}
.wsac{word-spacing:5.597096pt;}
.wsab{word-spacing:5.829823pt;}
.ws16e{word-spacing:5.922914pt;}
.wsd9{word-spacing:6.062551pt;}
.wsc{word-spacing:6.789083pt;}
.wsdf{word-spacing:7.226188pt;}
.wsb6{word-spacing:8.040734pt;}
.ws15d{word-spacing:8.366552pt;}
.wsdc{word-spacing:8.506189pt;}
.ws9c{word-spacing:8.680735pt;}
.wsd5{word-spacing:11.822555pt;}
.ws32{word-spacing:12.381101pt;}
.ws19{word-spacing:13.542851pt;}
.ws14c{word-spacing:14.033466pt;}
.ws59{word-spacing:15.005042pt;}
.ws57{word-spacing:15.047549pt;}
.ws133{word-spacing:17.442924pt;}
.ws169{word-spacing:19.316380pt;}
.ws54{word-spacing:20.176403pt;}
.ws11c{word-spacing:20.305471pt;}
.wsf2{word-spacing:20.596381pt;}
.ws2{word-spacing:20.722347pt;}
.ws173{word-spacing:20.945472pt;}
.ws16a{word-spacing:21.120018pt;}
.ws13b{word-spacing:21.527291pt;}
.ws109{word-spacing:21.901392pt;}
.ws170{word-spacing:22.807292pt;}
.ws122{word-spacing:23.098201pt;}
.ws16f{word-spacing:23.621838pt;}
.ws8e{word-spacing:23.782878pt;}
.ws1c{word-spacing:23.846639pt;}
.ws15e{word-spacing:23.854565pt;}
.ws15c{word-spacing:24.203657pt;}
.ws167{word-spacing:24.261838pt;}
.ws159{word-spacing:24.378202pt;}
.ws12d{word-spacing:24.599293pt;}
.ws16b{word-spacing:24.610930pt;}
.ws165{word-spacing:24.669111pt;}
.ws176{word-spacing:25.541839pt;}
.ws172{word-spacing:25.600021pt;}
.ws171{word-spacing:25.774567pt;}
.ws12e{word-spacing:26.647295pt;}
.ws114{word-spacing:27.349342pt;}
.wsf1{word-spacing:27.578205pt;}
.ws13e{word-spacing:27.694569pt;}
.ws47{word-spacing:27.927269pt;}
.ws11b{word-spacing:27.927296pt;}
.ws78{word-spacing:28.003782pt;}
.ws1{word-spacing:28.646426pt;}
.ws132{word-spacing:29.730934pt;}
.ws120{word-spacing:31.185481pt;}
.ws12a{word-spacing:32.756391pt;}
.ws0{word-spacing:32.961753pt;}
.wsc5{word-spacing:34.839302pt;}
.ws119{word-spacing:71.667439pt;}
.ws1b{word-spacing:84.087860pt;}
.wsc7{word-spacing:87.726619pt;}
.ws58{word-spacing:89.718243pt;}
.ws56{word-spacing:139.867069pt;}
.wscc{word-spacing:174.417600pt;}
.wsc9{word-spacing:188.904885pt;}
.wsca{word-spacing:256.512214pt;}
.wsc8{word-spacing:300.090432pt;}
.wse8{word-spacing:630.572755pt;}
.wsfd{word-spacing:773.155553pt;}
._1c{margin-left:-9.716372pt;}
._2{margin-left:-7.528868pt;}
._c{margin-left:-5.897859pt;}
._7{margin-left:-4.197575pt;}
._30{margin-left:-3.304394pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.434614pt;}
._5{width:1.487748pt;}
._0{width:2.754464pt;}
._1f{width:3.671921pt;}
._9{width:4.852602pt;}
._32{width:6.290097pt;}
._24{width:7.192675pt;}
._25{width:8.465383pt;}
._4{width:13.921073pt;}
._e{width:14.954485pt;}
._1a{width:16.535622pt;}
._28{width:18.334082pt;}
._1b{width:19.609035pt;}
._14{width:20.547571pt;}
._a{width:21.997421pt;}
._6{width:23.325767pt;}
._12{width:24.694092pt;}
._8{width:25.663658pt;}
._15{width:26.939950pt;}
._17{width:27.866777pt;}
._18{width:29.209043pt;}
._27{width:31.010935pt;}
._21{width:32.227381pt;}
._b{width:33.307291pt;}
._2a{width:34.319324pt;}
._d{width:35.440289pt;}
._20{width:37.179958pt;}
._13{width:38.541376pt;}
._16{width:39.855587pt;}
._22{width:41.367307pt;}
._29{width:42.530945pt;}
._10{width:43.516928pt;}
._1e{width:44.982157pt;}
._2b{width:46.836403pt;}
._45{width:48.083202pt;}
._23{width:49.398150pt;}
._26{width:50.523351pt;}
._46{width:51.549134pt;}
._19{width:52.718008pt;}
._44{width:57.925081pt;}
._47{width:60.961045pt;}
._f{width:65.174447pt;}
._31{width:66.501874pt;}
._11{width:71.731200pt;}
._1d{width:84.164373pt;}
._35{width:89.698252pt;}
._2d{width:116.945552pt;}
._3d{width:118.415620pt;}
._36{width:120.798035pt;}
._37{width:150.923830pt;}
._34{width:179.667350pt;}
._3c{width:183.214698pt;}
._3a{width:192.593418pt;}
._38{width:219.289201pt;}
._39{width:221.565029pt;}
._3e{width:225.408524pt;}
._3f{width:300.392978pt;}
._42{width:322.560269pt;}
._40{width:352.291203pt;}
._43{width:376.843950pt;}
._33{width:419.607622pt;}
._3b{width:421.411260pt;}
._41{width:434.327635pt;}
._2e{width:487.622225pt;}
._2f{width:558.838575pt;}
._2c{width:657.870847pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs8{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y49{bottom:96.000000pt;}
.y1b{bottom:96.029333pt;}
.yc3{bottom:97.845333pt;}
.yea{bottom:98.757333pt;}
.y19f{bottom:105.888000pt;}
.y73{bottom:113.658667pt;}
.y48{bottom:114.065333pt;}
.y1a{bottom:115.720000pt;}
.y230{bottom:115.801333pt;}
.yc2{bottom:115.910667pt;}
.ye9{bottom:116.822667pt;}
.y1c9{bottom:117.212000pt;}
.y1e1{bottom:120.025333pt;}
.y209{bottom:120.318667pt;}
.y72{bottom:123.636000pt;}
.y19e{bottom:123.953333pt;}
.y47{bottom:132.130667pt;}
.yb4{bottom:132.753333pt;}
.y22f{bottom:133.866667pt;}
.yc1{bottom:133.977333pt;}
.ye8{bottom:134.888000pt;}
.y1c8{bottom:135.277333pt;}
.y1e0{bottom:138.090667pt;}
.y208{bottom:138.384000pt;}
.y19d{bottom:142.018667pt;}
.y146{bottom:143.141333pt;}
.y9d{bottom:146.532000pt;}
.y46{bottom:150.197333pt;}
.yb3{bottom:150.818667pt;}
.y22e{bottom:151.932000pt;}
.yc0{bottom:152.042667pt;}
.ye7{bottom:152.953333pt;}
.y16f{bottom:153.033333pt;}
.y145{bottom:153.118667pt;}
.y1c7{bottom:153.344000pt;}
.y1df{bottom:156.156000pt;}
.y11a{bottom:159.588000pt;}
.y19c{bottom:160.085333pt;}
.y71{bottom:161.544000pt;}
.y70{bottom:166.560000pt;}
.y45{bottom:168.262667pt;}
.y207{bottom:168.404000pt;}
.yb2{bottom:168.885333pt;}
.y22d{bottom:169.998667pt;}
.ybf{bottom:170.108000pt;}
.ye6{bottom:171.018667pt;}
.y16e{bottom:171.098667pt;}
.y1c6{bottom:171.409333pt;}
.y1de{bottom:174.221333pt;}
.y19b{bottom:178.150667pt;}
.ycf{bottom:178.766667pt;}
.y6f{bottom:184.625333pt;}
.y44{bottom:186.328000pt;}
.y206{bottom:186.470667pt;}
.yb1{bottom:186.950667pt;}
.ybe{bottom:188.173333pt;}
.ye5{bottom:189.085333pt;}
.y16d{bottom:189.164000pt;}
.y1c5{bottom:189.474667pt;}
.y1dd{bottom:192.286667pt;}
.y144{bottom:194.785333pt;}
.y19a{bottom:196.216000pt;}
.yce{bottom:196.832000pt;}
.y119{bottom:198.372000pt;}
.y22c{bottom:200.018667pt;}
.y6e{bottom:202.690667pt;}
.y43{bottom:204.393333pt;}
.y205{bottom:204.536000pt;}
.yb0{bottom:205.016000pt;}
.ybd{bottom:206.238667pt;}
.ye4{bottom:207.150667pt;}
.y16c{bottom:207.229333pt;}
.y1c4{bottom:207.540000pt;}
.y1dc{bottom:210.353333pt;}
.y9c{bottom:210.960000pt;}
.y143{bottom:212.850667pt;}
.ycd{bottom:214.897333pt;}
.y118{bottom:216.437333pt;}
.y22b{bottom:218.084000pt;}
.yf4{bottom:219.002667pt;}
.y6d{bottom:220.756000pt;}
.y42{bottom:222.458667pt;}
.y204{bottom:222.601333pt;}
.yaf{bottom:223.081333pt;}
.ybc{bottom:224.304000pt;}
.ye3{bottom:225.216000pt;}
.y16b{bottom:225.294667pt;}
.y1c3{bottom:225.605333pt;}
.y1db{bottom:228.418667pt;}
.y9b{bottom:229.025333pt;}
.ycc{bottom:232.962667pt;}
.y117{bottom:234.502667pt;}
.y199{bottom:234.629333pt;}
.y120{bottom:235.080000pt;}
.y22a{bottom:236.150667pt;}
.yf3{bottom:237.068000pt;}
.y142{bottom:240.308000pt;}
.y41{bottom:240.525333pt;}
.yae{bottom:241.146667pt;}
.ybb{bottom:242.370667pt;}
.y16a{bottom:243.361333pt;}
.y1c2{bottom:243.672000pt;}
.y174{bottom:244.113333pt;}
.y1da{bottom:246.484000pt;}
.y9a{bottom:247.090667pt;}
.y6c{bottom:248.213333pt;}
.ycb{bottom:251.028000pt;}
.y116{bottom:252.569333pt;}
.y203{bottom:252.622667pt;}
.ye2{bottom:252.673333pt;}
.y198{bottom:252.696000pt;}
.y11f{bottom:253.145333pt;}
.yf2{bottom:255.133333pt;}
.y40{bottom:258.590667pt;}
.yad{bottom:259.213333pt;}
.yba{bottom:260.436000pt;}
.y169{bottom:261.426667pt;}
.y173{bottom:262.178667pt;}
.y94{bottom:263.853333pt;}
.y1d9{bottom:264.549333pt;}
.y99{bottom:265.156000pt;}
.y229{bottom:266.170667pt;}
.yca{bottom:269.094667pt;}
.y115{bottom:270.634667pt;}
.y202{bottom:270.688000pt;}
.y197{bottom:270.761333pt;}
.y11e{bottom:271.210667pt;}
.yf1{bottom:273.198667pt;}
.y1c1{bottom:273.692000pt;}
.y3f{bottom:276.656000pt;}
.yac{bottom:277.278667pt;}
.y141{bottom:278.277333pt;}
.yb9{bottom:278.501333pt;}
.y168{bottom:279.492000pt;}
.y172{bottom:280.244000pt;}
.y93{bottom:281.920000pt;}
.y1d8{bottom:282.614667pt;}
.y98{bottom:283.221333pt;}
.y228{bottom:284.236000pt;}
.y6b{bottom:287.158667pt;}
.yc9{bottom:287.160000pt;}
.ye1{bottom:288.593333pt;}
.y201{bottom:288.753333pt;}
.y196{bottom:288.826667pt;}
.y11d{bottom:289.277333pt;}
.yf0{bottom:291.265333pt;}
.y1c0{bottom:291.757333pt;}
.y3e{bottom:294.721333pt;}
.y140{bottom:296.342667pt;}
.yb8{bottom:296.566667pt;}
.y167{bottom:297.557333pt;}
.y114{bottom:298.092000pt;}
.y171{bottom:298.309333pt;}
.y92{bottom:299.985333pt;}
.y1d7{bottom:300.681333pt;}
.y227{bottom:302.302667pt;}
.yab{bottom:304.736000pt;}
.y6a{bottom:305.224000pt;}
.y195{bottom:306.892000pt;}
.y11c{bottom:307.342667pt;}
.yef{bottom:309.330667pt;}
.y1bf{bottom:309.824000pt;}
.y3d{bottom:312.786667pt;}
.y13f{bottom:314.408000pt;}
.yc8{bottom:314.617333pt;}
.yb7{bottom:314.632000pt;}
.y166{bottom:315.622667pt;}
.y170{bottom:316.374667pt;}
.y1d6{bottom:318.746667pt;}
.y200{bottom:318.773333pt;}
.y69{bottom:323.289333pt;}
.y194{bottom:324.957333pt;}
.y11b{bottom:325.408000pt;}
.yee{bottom:327.396000pt;}
.y1be{bottom:327.889333pt;}
.y91{bottom:330.005333pt;}
.y226{bottom:332.322667pt;}
.y13e{bottom:332.473333pt;}
.yb6{bottom:332.698667pt;}
.y165{bottom:333.689333pt;}
.y3c{bottom:333.892000pt;}
.ye0{bottom:334.417333pt;}
.y1ff{bottom:336.840000pt;}
.y113{bottom:336.874667pt;}
.y68{bottom:341.356000pt;}
.y193{bottom:343.024000pt;}
.y3b{bottom:343.869333pt;}
.yed{bottom:345.461333pt;}
.y1bd{bottom:345.954667pt;}
.y90{bottom:348.072000pt;}
.y225{bottom:350.388000pt;}
.y13d{bottom:350.540000pt;}
.yb5{bottom:350.764000pt;}
.y1d5{bottom:351.212000pt;}
.y164{bottom:351.754667pt;}
.ydf{bottom:352.482667pt;}
.y1fe{bottom:354.905333pt;}
.y67{bottom:359.421333pt;}
.y192{bottom:361.089333pt;}
.yaa{bottom:361.405333pt;}
.yec{bottom:363.526667pt;}
.y1bc{bottom:364.020000pt;}
.y112{bottom:366.552000pt;}
.y3a{bottom:367.805333pt;}
.y224{bottom:368.454667pt;}
.y163{bottom:369.820000pt;}
.yde{bottom:370.548000pt;}
.yc7{bottom:371.286667pt;}
.y66{bottom:377.486667pt;}
.y8f{bottom:378.092000pt;}
.ya9{bottom:379.470667pt;}
.y13c{bottom:379.616000pt;}
.yeb{bottom:381.593333pt;}
.y1bb{bottom:382.085333pt;}
.y1fd{bottom:384.925333pt;}
.y39{bottom:385.870667pt;}
.y162{bottom:387.885333pt;}
.yc6{bottom:389.352000pt;}
.y65{bottom:395.552000pt;}
.y8e{bottom:396.157333pt;}
.y111{bottom:396.229333pt;}
.ya8{bottom:397.536000pt;}
.y13b{bottom:397.681333pt;}
.y223{bottom:398.474667pt;}
.y191{bottom:399.502667pt;}
.y1ba{bottom:400.152000pt;}
.y1fc{bottom:402.992000pt;}
.y38{bottom:403.936000pt;}
.y161{bottom:405.950667pt;}
.ydd{bottom:406.338667pt;}
.y19{bottom:407.004000pt;}
.yc5{bottom:407.417333pt;}
.y1d4{bottom:415.569333pt;}
.y13a{bottom:415.746667pt;}
.y222{bottom:416.540000pt;}
.y190{bottom:417.569333pt;}
.y1fb{bottom:421.057333pt;}
.y37{bottom:422.001333pt;}
.y64{bottom:423.009333pt;}
.y160{bottom:424.017333pt;}
.y1b9{bottom:424.194667pt;}
.ydc{bottom:424.404000pt;}
.y18{bottom:425.070667pt;}
.y110{bottom:425.392000pt;}
.yc4{bottom:425.484000pt;}
.y8d{bottom:430.164000pt;}
.y1d3{bottom:433.634667pt;}
.y139{bottom:433.813333pt;}
.y221{bottom:434.606667pt;}
.y18f{bottom:435.634667pt;}
.y36{bottom:440.068000pt;}
.y15f{bottom:442.082667pt;}
.y1b8{bottom:442.260000pt;}
.y10f{bottom:443.457333pt;}
.y8c{bottom:448.229333pt;}
.y1fa{bottom:451.077333pt;}
.y1d2{bottom:451.700000pt;}
.y138{bottom:451.878667pt;}
.y18e{bottom:453.700000pt;}
.ydb{bottom:459.414667pt;}
.y15e{bottom:460.148000pt;}
.y1b7{bottom:460.325333pt;}
.y10e{bottom:461.522667pt;}
.y63{bottom:461.954667pt;}
.y220{bottom:464.626667pt;}
.y35{bottom:467.525333pt;}
.y1f9{bottom:469.144000pt;}
.y1d1{bottom:469.765333pt;}
.y17{bottom:471.030667pt;}
.y18d{bottom:471.765333pt;}
.y8b{bottom:475.686667pt;}
.yda{bottom:477.480000pt;}
.y1b6{bottom:478.390667pt;}
.y137{bottom:479.538667pt;}
.y10d{bottom:479.588000pt;}
.y62{bottom:480.020000pt;}
.y21f{bottom:482.692000pt;}
.y16{bottom:486.972000pt;}
.y1f8{bottom:487.209333pt;}
.y15d{bottom:487.605333pt;}
.y1d0{bottom:487.830667pt;}
.y18c{bottom:489.830667pt;}
.yd9{bottom:495.545333pt;}
.y1b5{bottom:496.457333pt;}
.y136{bottom:497.605333pt;}
.y10c{bottom:497.654667pt;}
.y21e{bottom:500.757333pt;}
.y15{bottom:502.912000pt;}
.y1f7{bottom:505.274667pt;}
.y34{bottom:505.429333pt;}
.y1cf{bottom:505.897333pt;}
.y18b{bottom:507.897333pt;}
.y61{bottom:510.041333pt;}
.y8a{bottom:514.632000pt;}
.y10b{bottom:515.720000pt;}
.y14{bottom:518.852000pt;}
.y1b4{bottom:520.500000pt;}
.yd8{bottom:520.908000pt;}
.y1f6{bottom:523.340000pt;}
.y33{bottom:523.494667pt;}
.y1ce{bottom:523.962667pt;}
.y135{bottom:525.062667pt;}
.y18a{bottom:525.962667pt;}
.y15c{bottom:526.550667pt;}
.y60{bottom:528.106667pt;}
.y21d{bottom:530.778667pt;}
.y89{bottom:532.697333pt;}
.y10a{bottom:533.785333pt;}
.y13{bottom:534.792000pt;}
.y1b3{bottom:538.565333pt;}
.y32{bottom:541.561333pt;}
.y1cd{bottom:542.028000pt;}
.y15b{bottom:544.616000pt;}
.y21c{bottom:548.844000pt;}
.y12{bottom:550.732000pt;}
.y109{bottom:551.850667pt;}
.y1f5{bottom:553.361333pt;}
.y1b2{bottom:556.630667pt;}
.y5f{bottom:558.128000pt;}
.yd7{bottom:558.356000pt;}
.y31{bottom:559.626667pt;}
.y1cc{bottom:560.093333pt;}
.y15a{bottom:562.681333pt;}
.y134{bottom:563.030667pt;}
.y189{bottom:564.376000pt;}
.y88{bottom:566.505333pt;}
.y11{bottom:566.672000pt;}
.y108{bottom:569.916000pt;}
.y1f4{bottom:571.426667pt;}
.y1b1{bottom:574.697333pt;}
.y5e{bottom:576.193333pt;}
.yd6{bottom:576.422667pt;}
.y30{bottom:577.692000pt;}
.y1cb{bottom:578.158667pt;}
.y21b{bottom:578.865333pt;}
.y133{bottom:581.097333pt;}
.y188{bottom:582.441333pt;}
.y10{bottom:582.613333pt;}
.y107{bottom:587.981333pt;}
.y5d{bottom:589.242667pt;}
.y1f3{bottom:589.492000pt;}
.y1b0{bottom:592.762667pt;}
.y5c{bottom:594.258667pt;}
.yd5{bottom:594.488000pt;}
.y159{bottom:595.148000pt;}
.y2f{bottom:595.757333pt;}
.y21a{bottom:596.930667pt;}
.yf{bottom:598.553333pt;}
.y132{bottom:599.162667pt;}
.y187{bottom:600.508000pt;}
.y106{bottom:606.048000pt;}
.y1af{bottom:610.828000pt;}
.y87{bottom:612.329333pt;}
.ye{bottom:614.493333pt;}
.y131{bottom:617.228000pt;}
.y186{bottom:618.573333pt;}
.y1f2{bottom:619.513333pt;}
.y2e{bottom:620.260000pt;}
.yd4{bottom:621.945333pt;}
.y5b{bottom:624.280000pt;}
.y219{bottom:626.952000pt;}
.y1ae{bottom:628.893333pt;}
.y86{bottom:630.396000pt;}
.yd{bottom:630.433333pt;}
.y105{bottom:633.505333pt;}
.y130{bottom:635.293333pt;}
.y185{bottom:636.638667pt;}
.y1f1{bottom:637.578667pt;}
.y2d{bottom:638.325333pt;}
.y218{bottom:645.017333pt;}
.yc{bottom:646.373333pt;}
.y58{bottom:647.780000pt;}
.y54{bottom:652.028000pt;}
.y85{bottom:653.204000pt;}
.y12f{bottom:653.358667pt;}
.y184{bottom:654.704000pt;}
.y1f0{bottom:655.644000pt;}
.yd3{bottom:657.865333pt;}
.y1ad{bottom:658.914667pt;}
.y158{bottom:659.504000pt;}
.y57{bottom:661.508000pt;}
.y5a{bottom:662.005333pt;}
.yb{bottom:662.313333pt;}
.y217{bottom:663.082667pt;}
.y84{bottom:663.181333pt;}
.y53{bottom:665.756000pt;}
.y2c{bottom:666.138667pt;}
.y52{bottom:671.486667pt;}
.y104{bottom:672.288000pt;}
.y183{bottom:672.769333pt;}
.y59{bottom:675.733333pt;}
.y1ac{bottom:676.980000pt;}
.y157{bottom:677.569333pt;}
.ya{bottom:678.254667pt;}
.y216{bottom:681.148000pt;}
.y55{bottom:681.464000pt;}
.y12e{bottom:682.436000pt;}
.y2b{bottom:684.204000pt;}
.y1ef{bottom:685.665333pt;}
.y56{bottom:689.204000pt;}
.y83{bottom:689.304000pt;}
.y103{bottom:690.353333pt;}
.y182{bottom:690.836000pt;}
.y51{bottom:691.304000pt;}
.y97{bottom:693.694667pt;}
.y9{bottom:694.194667pt;}
.y1ab{bottom:695.045333pt;}
.y12d{bottom:700.501333pt;}
.y2a{bottom:702.269333pt;}
.y1ee{bottom:703.730667pt;}
.yd2{bottom:706.589333pt;}
.y82{bottom:707.370667pt;}
.y102{bottom:708.420000pt;}
.y8{bottom:710.134667pt;}
.y215{bottom:711.169333pt;}
.y96{bottom:711.761333pt;}
.y156{bottom:712.580000pt;}
.y50{bottom:724.320000pt;}
.yd1{bottom:724.654667pt;}
.y1aa{bottom:725.066667pt;}
.y81{bottom:725.436000pt;}
.y101{bottom:726.485333pt;}
.y214{bottom:729.234667pt;}
.y181{bottom:729.249333pt;}
.y95{bottom:729.826667pt;}
.y29{bottom:730.082667pt;}
.y155{bottom:730.645333pt;}
.y12c{bottom:731.590667pt;}
.y1ed{bottom:733.750667pt;}
.y7{bottom:734.378667pt;}
.y4f{bottom:742.385333pt;}
.yd0{bottom:742.720000pt;}
.y1a9{bottom:743.132000pt;}
.y213{bottom:747.300000pt;}
.y180{bottom:747.314667pt;}
.y28{bottom:748.148000pt;}
.y154{bottom:748.712000pt;}
.y100{bottom:750.680000pt;}
.y1ec{bottom:751.817333pt;}
.y12b{bottom:752.717333pt;}
.y80{bottom:752.893333pt;}
.y4e{bottom:760.450667pt;}
.y1a8{bottom:761.197333pt;}
.y17f{bottom:765.381333pt;}
.y27{bottom:766.213333pt;}
.y153{bottom:766.777333pt;}
.y1eb{bottom:769.882667pt;}
.yff{bottom:770.497333pt;}
.y12a{bottom:770.782667pt;}
.y212{bottom:777.321333pt;}
.y1a7{bottom:779.262667pt;}
.y17e{bottom:783.446667pt;}
.y152{bottom:784.842667pt;}
.y4d{bottom:787.908000pt;}
.y1ea{bottom:787.948000pt;}
.y129{bottom:788.849333pt;}
.y26{bottom:790.716000pt;}
.y7f{bottom:791.838667pt;}
.y211{bottom:795.386667pt;}
.yfe{bottom:801.142667pt;}
.y17d{bottom:801.512000pt;}
.y6{bottom:803.893333pt;}
.y1a6{bottom:809.284000pt;}
.y7e{bottom:809.904000pt;}
.y151{bottom:810.205333pt;}
.ya7{bottom:816.016000pt;}
.y25{bottom:818.173333pt;}
.yfd{bottom:819.208000pt;}
.y17c{bottom:819.577333pt;}
.y128{bottom:820.022667pt;}
.y1e9{bottom:821.756000pt;}
.y5{bottom:821.960000pt;}
.y210{bottom:825.406667pt;}
.y4c{bottom:826.853333pt;}
.y1a5{bottom:827.349333pt;}
.y7d{bottom:827.969333pt;}
.ya6{bottom:834.081333pt;}
.yfc{bottom:837.273333pt;}
.y127{bottom:838.088000pt;}
.y20f{bottom:843.473333pt;}
.y4b{bottom:844.920000pt;}
.y1a4{bottom:845.414667pt;}
.y7c{bottom:846.034667pt;}
.y150{bottom:846.845333pt;}
.ya5{bottom:852.146667pt;}
.y4{bottom:855.020000pt;}
.yfb{bottom:855.338667pt;}
.y24{bottom:856.077333pt;}
.y126{bottom:856.153333pt;}
.y17b{bottom:857.992000pt;}
.y20e{bottom:861.538667pt;}
.y1a3{bottom:863.481333pt;}
.y14f{bottom:864.912000pt;}
.y1e8{bottom:867.580000pt;}
.ya4{bottom:870.212000pt;}
.y7b{bottom:872.734667pt;}
.yfa{bottom:873.405333pt;}
.y23{bottom:874.142667pt;}
.y125{bottom:874.218667pt;}
.y17a{bottom:876.057333pt;}
.y4a{bottom:877.597333pt;}
.y14e{bottom:882.977333pt;}
.y1e7{bottom:885.646667pt;}
.ya3{bottom:888.277333pt;}
.y7a{bottom:890.800000pt;}
.yf9{bottom:891.470667pt;}
.y20d{bottom:891.558667pt;}
.y22{bottom:892.209333pt;}
.y124{bottom:892.285333pt;}
.y179{bottom:894.122667pt;}
.y3{bottom:895.310667pt;}
.y1a2{bottom:897.486667pt;}
.y14d{bottom:901.042667pt;}
.y1e6{bottom:903.712000pt;}
.ya2{bottom:906.344000pt;}
.y79{bottom:908.866667pt;}
.y20c{bottom:909.625333pt;}
.y21{bottom:910.274667pt;}
.y123{bottom:910.350667pt;}
.y178{bottom:912.188000pt;}
.y1a1{bottom:915.552000pt;}
.yf8{bottom:918.928000pt;}
.y14c{bottom:919.108000pt;}
.y1e5{bottom:921.777333pt;}
.y2{bottom:924.534667pt;}
.y20b{bottom:927.690667pt;}
.y20{bottom:928.340000pt;}
.y122{bottom:928.416000pt;}
.y177{bottom:930.253333pt;}
.ya1{bottom:936.364000pt;}
.y14b{bottom:937.173333pt;}
.y78{bottom:939.553333pt;}
.y1ca{bottom:939.645333pt;}
.y1e4{bottom:939.842667pt;}
.y20a{bottom:945.756000pt;}
.y1f{bottom:946.405333pt;}
.y1a0{bottom:948.018667pt;}
.y176{bottom:948.320000pt;}
.y77{bottom:949.530667pt;}
.y1{bottom:953.758667pt;}
.ya0{bottom:954.429333pt;}
.y14a{bottom:955.240000pt;}
.y121{bottom:955.873333pt;}
.yf7{bottom:957.710667pt;}
.y1e3{bottom:957.908000pt;}
.y175{bottom:966.385333pt;}
.y149{bottom:973.305333pt;}
.y1e{bottom:973.862667pt;}
.yf6{bottom:975.776000pt;}
.y1e2{bottom:975.974667pt;}
.y9f{bottom:984.450667pt;}
.y148{bottom:991.370667pt;}
.y76{bottom:992.840000pt;}
.yf5{bottom:993.842667pt;}
.y75{bottom:1005.889333pt;}
.y147{bottom:1006.892000pt;}
.y1d{bottom:1009.782667pt;}
.y74{bottom:1010.905333pt;}
.y9e{bottom:1011.908000pt;}
.h9{height:14.856329pt;}
.h13{height:19.432743pt;}
.h14{height:30.392648pt;}
.ha{height:33.761485pt;}
.h7{height:37.778179pt;}
.h6{height:39.903534pt;}
.hf{height:43.636400pt;}
.h8{height:43.694582pt;}
.h5{height:45.015313pt;}
.hc{height:47.884561pt;}
.h26{height:52.989733pt;}
.hd{height:52.995067pt;}
.h4{height:53.528648pt;}
.h1b{height:54.787067pt;}
.h18{height:55.907067pt;}
.hb{height:57.461313pt;}
.h16{height:58.015067pt;}
.h1c{height:63.753249pt;}
.h1a{height:63.758582pt;}
.h2{height:64.362642pt;}
.h3{height:64.546273pt;}
.h19{height:64.864555pt;}
.h22{height:66.302077pt;}
.h11{height:72.019410pt;}
.h10{height:79.887067pt;}
.h21{height:82.729733pt;}
.he{height:82.996400pt;}
.h12{height:83.545733pt;}
.h1d{height:83.603915pt;}
.h1e{height:87.661751pt;}
.h17{height:92.355067pt;}
.h15{height:98.333733pt;}
.h23{height:98.627410pt;}
.h24{height:101.470077pt;}
.h1f{height:122.185733pt;}
.h20{height:141.379410pt;}
.h25{height:142.829733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x30{left:103.970667pt;}
.xb{left:112.578667pt;}
.x2f{left:113.840000pt;}
.xd{left:117.860000pt;}
.x37{left:125.774667pt;}
.x9{left:132.364000pt;}
.x8{left:152.284000pt;}
.x2{left:164.084000pt;}
.x1{left:176.722667pt;}
.x14{left:189.069333pt;}
.x15{left:191.702667pt;}
.x26{left:225.462667pt;}
.x18{left:228.148000pt;}
.x19{left:233.974667pt;}
.x3{left:254.296000pt;}
.x16{left:267.766667pt;}
.x17{left:268.836000pt;}
.x32{left:280.430667pt;}
.x1a{left:289.876000pt;}
.x31{left:292.094667pt;}
.x2d{left:296.336000pt;}
.x2a{left:298.284000pt;}
.x1d{left:303.613333pt;}
.x33{left:314.221333pt;}
.xe{left:315.637333pt;}
.x1e{left:318.742667pt;}
.x6{left:319.936000pt;}
.x27{left:328.484000pt;}
.x13{left:335.220000pt;}
.x5{left:336.276000pt;}
.x4{left:344.512000pt;}
.x1c{left:351.054667pt;}
.xf{left:353.998667pt;}
.x7{left:367.633333pt;}
.x34{left:386.544000pt;}
.x10{left:389.817333pt;}
.xc{left:393.234667pt;}
.x1b{left:404.185333pt;}
.x2e{left:408.137333pt;}
.x2b{left:414.117333pt;}
.x1f{left:425.185333pt;}
.x28{left:436.309333pt;}
.x21{left:438.922667pt;}
.x22{left:448.220000pt;}
.x11{left:450.325333pt;}
.x20{left:451.938667pt;}
.x2c{left:458.773333pt;}
.x36{left:468.980000pt;}
.x23{left:535.420000pt;}
.x25{left:549.157333pt;}
.x24{left:559.025333pt;}
.x29{left:570.233333pt;}
.x35{left:671.986667pt;}
.x12{left:679.218667pt;}
}




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