
    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_7f7398aa497706db06ac09f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.860840;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_3b85291c4d75db9124bc6d70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_12ce79f391365cf21cbb32dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_11936eaf69b8cc4c6222c719.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_27b73eb797aca6da66114fac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_0e2bd42c6522b88e71811e66.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_8b78bd2f1a09790cb737f936.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.917480;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_65e083076628ab83ca0d89f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9236be2f604174fe87408e6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.833496;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_e24d6e5beafe4f7d362d4acc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eba3ceda57da3a247248a66e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.695312;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_24ab4ca85681e457b905ee8b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238970,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249356,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.722520px;}
.ls31{letter-spacing:-0.901800px;}
.ls76{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.841680px;}
.ls9b{letter-spacing:-0.810000px;}
.ls30{letter-spacing:-0.781560px;}
.ls75{letter-spacing:-0.702000px;}
.ls34{letter-spacing:-0.661320px;}
.ls1d{letter-spacing:-0.601200px;}
.ls37{letter-spacing:-0.541080px;}
.ls9a{letter-spacing:-0.540000px;}
.ls5e{letter-spacing:-0.480960px;}
.ls8f{letter-spacing:-0.434020px;}
.ls15{letter-spacing:-0.420840px;}
.ls77{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.360720px;}
.lsf{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.300600px;}
.ls88{letter-spacing:-0.241521px;}
.ls14{letter-spacing:-0.240480px;}
.ls5f{letter-spacing:-0.216000px;}
.ls7a{letter-spacing:-0.193022px;}
.ls86{letter-spacing:-0.192989px;}
.ls84{letter-spacing:-0.192874px;}
.ls1f{letter-spacing:-0.180360px;}
.lsc{letter-spacing:-0.162000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132120px;}
.ls11{letter-spacing:-0.131760px;}
.ls12{letter-spacing:-0.120240px;}
.ls99{letter-spacing:-0.108000px;}
.ls60{letter-spacing:-0.095760px;}
.ls16{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.065880px;}
.ls13{letter-spacing:-0.060120px;}
.lsd{letter-spacing:-0.054000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.060120px;}
.ls36{letter-spacing:0.065880px;}
.ls2f{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.120240px;}
.ls98{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.180360px;}
.ls3c{letter-spacing:0.191520px;}
.ls8d{letter-spacing:0.192958px;}
.ls39{letter-spacing:0.197640px;}
.lse{letter-spacing:0.216000px;}
.ls9c{letter-spacing:0.221400px;}
.ls3b{letter-spacing:0.248976px;}
.ls7b{letter-spacing:0.294588px;}
.ls33{letter-spacing:0.300600px;}
.ls83{letter-spacing:0.385747px;}
.ls8e{letter-spacing:0.385795px;}
.ls78{letter-spacing:0.385877px;}
.ls8c{letter-spacing:0.385915px;}
.ls85{letter-spacing:0.385978px;}
.ls79{letter-spacing:0.386045px;}
.ls82{letter-spacing:0.386347px;}
.ls87{letter-spacing:0.386434px;}
.ls2c{letter-spacing:0.420840px;}
.ls29{letter-spacing:0.461160px;}
.ls19{letter-spacing:0.480960px;}
.ls9d{letter-spacing:0.540000px;}
.ls32{letter-spacing:0.541080px;}
.ls2d{letter-spacing:0.607212px;}
.ls2b{letter-spacing:0.649296px;}
.ls1a{letter-spacing:0.721440px;}
.ls1b{letter-spacing:0.781560px;}
.ls3e{letter-spacing:0.835668px;}
.ls38{letter-spacing:0.841680px;}
.ls4{letter-spacing:1.134000px;}
.ls22{letter-spacing:1.142280px;}
.ls28{letter-spacing:1.316628px;}
.ls21{letter-spacing:1.503000px;}
.ls23{letter-spacing:1.863720px;}
.ls95{letter-spacing:1.922400px;}
.ls96{letter-spacing:1.998000px;}
.ls26{letter-spacing:2.224440px;}
.ls8{letter-spacing:2.585160px;}
.ls6{letter-spacing:2.945880px;}
.ls2a{letter-spacing:3.306600px;}
.ls94{letter-spacing:3.402000px;}
.ls20{letter-spacing:3.535056px;}
.ls7c{letter-spacing:3.667320px;}
.ls24{letter-spacing:4.028040px;}
.ls25{letter-spacing:4.088160px;}
.ls3f{letter-spacing:4.158000px;}
.ls9{letter-spacing:4.388760px;}
.ls27{letter-spacing:4.448880px;}
.ls81{letter-spacing:4.860000px;}
.ls7f{letter-spacing:5.110200px;}
.ls80{letter-spacing:5.170320px;}
.ls3a{letter-spacing:6.318000px;}
.ls92{letter-spacing:7.020000px;}
.ls93{letter-spacing:7.398000px;}
.ls7d{letter-spacing:8.356680px;}
.ls8b{letter-spacing:9.078120px;}
.ls7e{letter-spacing:9.438840px;}
.ls89{letter-spacing:10.875600px;}
.ls8a{letter-spacing:10.962000px;}
.ls90{letter-spacing:11.242440px;}
.ls2{letter-spacing:14.796000px;}
.ls3{letter-spacing:14.850000px;}
.ls97{letter-spacing:21.006000px;}
.ls91{letter-spacing:48.006000px;}
.ls5d{letter-spacing:103.229280px;}
.ls49{letter-spacing:112.230720px;}
.ls4a{letter-spacing:114.050160px;}
.ls5c{letter-spacing:114.385320px;}
.ls58{letter-spacing:115.103520px;}
.ls6e{letter-spacing:124.069320px;}
.ls4c{letter-spacing:125.876520px;}
.ls46{letter-spacing:125.924400px;}
.ls4b{letter-spacing:126.259560px;}
.ls51{letter-spacing:126.977760px;}
.ls45{letter-spacing:135.979200px;}
.ls48{letter-spacing:137.750760px;}
.ls6f{letter-spacing:138.120840px;}
.ls41{letter-spacing:138.133800px;}
.ls42{letter-spacing:138.516840px;}
.ls55{letter-spacing:139.187160px;}
.ls6d{letter-spacing:144.557640px;}
.ls56{letter-spacing:144.645480px;}
.ls40{letter-spacing:147.853440px;}
.ls43{letter-spacing:149.625000px;}
.ls72{letter-spacing:149.672880px;}
.ls57{letter-spacing:149.998464px;}
.ls47{letter-spacing:150.343200px;}
.ls62{letter-spacing:159.720840px;}
.ls4e{letter-spacing:159.727680px;}
.ls50{letter-spacing:161.882280px;}
.ls64{letter-spacing:161.930160px;}
.ls4f{letter-spacing:162.217440px;}
.ls63{letter-spacing:162.240840px;}
.ls6a{letter-spacing:172.699920px;}
.ls52{letter-spacing:172.703160px;}
.ls65{letter-spacing:174.513960px;}
.ls44{letter-spacing:174.522600px;}
.ls6b{letter-spacing:180.510732px;}
.ls53{letter-spacing:180.646452px;}
.ls70{letter-spacing:195.015240px;}
.ls6c{letter-spacing:204.637464px;}
.ls54{letter-spacing:204.725304px;}
.ls59{letter-spacing:206.889480px;}
.ls74{letter-spacing:209.091960px;}
.ls73{letter-spacing:209.379240px;}
.ls71{letter-spacing:209.427120px;}
.ls66{letter-spacing:218.763720px;}
.ls68{letter-spacing:220.918320px;}
.ls67{letter-spacing:221.253480px;}
.ls5a{letter-spacing:233.175600px;}
.ls5b{letter-spacing:233.558640px;}
.ls69{letter-spacing:249.361560px;}
.ls4d{letter-spacing:249.406920px;}
.ls61{letter-spacing:261.270000px;}
.ls3d{letter-spacing:276.017400px;}
.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;}
}
.ws4e{word-spacing:-60.120000px;}
.ws5{word-spacing:-29.066400px;}
.wsde{word-spacing:-15.984000px;}
.ws43{word-spacing:-15.912000px;}
.ws9{word-spacing:-15.768000px;}
.ws51{word-spacing:-15.571080px;}
.ws4a{word-spacing:-15.510960px;}
.ws4b{word-spacing:-15.210360px;}
.ws45{word-spacing:-15.150240px;}
.ws46{word-spacing:-15.030000px;}
.ws49{word-spacing:-14.969880px;}
.ws48{word-spacing:-14.909760px;}
.ws50{word-spacing:-14.849640px;}
.ws44{word-spacing:-14.789520px;}
.wsab{word-spacing:-14.729400px;}
.wsdd{word-spacing:-14.609160px;}
.ws4d{word-spacing:-14.559480px;}
.ws8a{word-spacing:-14.549040px;}
.ws4f{word-spacing:-14.488920px;}
.ws47{word-spacing:-14.428800px;}
.ws4c{word-spacing:-14.427720px;}
.ws89{word-spacing:-14.368680px;}
.ws7d{word-spacing:-14.361840px;}
.ws7{word-spacing:-13.707360px;}
.wsdf{word-spacing:-13.662000px;}
.ws9a{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.587120px;}
.ws99{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.466880px;}
.wse0{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.346640px;}
.wsf6{word-spacing:-13.338000px;}
.ws8b{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.226400px;}
.wsc8{word-spacing:-13.122000px;}
.wse{word-spacing:-13.106160px;}
.wsb{word-spacing:-12.985920px;}
.wsc{word-spacing:-12.925800px;}
.ws98{word-spacing:-12.636000px;}
.wsb4{word-spacing:-12.462484px;}
.wsac{word-spacing:-12.459697px;}
.ws9d{word-spacing:-12.449945px;}
.wsb1{word-spacing:-12.447778px;}
.wsc9{word-spacing:-12.445765px;}
.ws9b{word-spacing:-12.444527px;}
.wscc{word-spacing:-12.441895px;}
.wsae{word-spacing:-12.440347px;}
.ws4{word-spacing:-12.312000px;}
.ws0{word-spacing:-12.258000px;}
.wscb{word-spacing:-12.252808px;}
.ws2{word-spacing:-12.204000px;}
.ws7e{word-spacing:-12.161520px;}
.ws3{word-spacing:-12.150000px;}
.wsb5{word-spacing:-12.076050px;}
.wsad{word-spacing:-12.073350px;}
.ws9e{word-spacing:-12.063900px;}
.wsb2{word-spacing:-12.061800px;}
.wsca{word-spacing:-12.059850px;}
.ws9c{word-spacing:-12.058650px;}
.wscd{word-spacing:-12.056100px;}
.wsaf{word-spacing:-12.054600px;}
.ws1{word-spacing:-12.042000px;}
.ws42{word-spacing:-11.988000px;}
.ws8c{word-spacing:-11.874240px;}
.wsb3{word-spacing:-11.868811px;}
.wsb0{word-spacing:-11.861726px;}
.wsb6{word-spacing:-11.834529px;}
.wsc7{word-spacing:-3.090778px;}
.wsdc{word-spacing:-3.086362px;}
.wsdb{word-spacing:-0.819815px;}
.ws38{word-spacing:-0.781560px;}
.ws6e{word-spacing:-0.541080px;}
.wsf7{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.486000px;}
.ws36{word-spacing:-0.480960px;}
.ws8e{word-spacing:-0.420840px;}
.wsa9{word-spacing:-0.385877px;}
.ws1d{word-spacing:-0.360720px;}
.ws77{word-spacing:-0.329400px;}
.wsa4{word-spacing:-0.324000px;}
.ws29{word-spacing:-0.300600px;}
.ws97{word-spacing:-0.287280px;}
.ws7a{word-spacing:-0.240480px;}
.ws17{word-spacing:-0.216000px;}
.ws80{word-spacing:-0.197640px;}
.ws28{word-spacing:-0.180360px;}
.ws86{word-spacing:-0.162000px;}
.ws1f{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.108000px;}
.ws88{word-spacing:-0.095760px;}
.wse8{word-spacing:-0.072000px;}
.ws7b{word-spacing:-0.065880px;}
.ws27{word-spacing:-0.060120px;}
.ws13{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.wsef{word-spacing:0.054000px;}
.ws1e{word-spacing:0.060120px;}
.ws78{word-spacing:0.065880px;}
.ws19{word-spacing:0.108000px;}
.ws1c{word-spacing:0.120240px;}
.ws1a{word-spacing:0.132120px;}
.ws52{word-spacing:0.144000px;}
.ws15{word-spacing:0.162000px;}
.ws59{word-spacing:0.180360px;}
.wsaa{word-spacing:0.193022px;}
.ws12{word-spacing:0.216000px;}
.ws20{word-spacing:0.240480px;}
.ws1b{word-spacing:0.264240px;}
.wsf9{word-spacing:0.270000px;}
.ws87{word-spacing:0.287280px;}
.ws23{word-spacing:0.300600px;}
.ws18{word-spacing:0.324000px;}
.wsba{word-spacing:0.329400px;}
.ws22{word-spacing:0.360720px;}
.wsa8{word-spacing:0.378000px;}
.ws67{word-spacing:0.395280px;}
.ws21{word-spacing:0.420840px;}
.wsa7{word-spacing:0.432000px;}
.ws82{word-spacing:0.480960px;}
.ws93{word-spacing:0.540000px;}
.ws74{word-spacing:0.541080px;}
.ws69{word-spacing:0.601200px;}
.ws7c{word-spacing:0.661320px;}
.wsa1{word-spacing:0.702000px;}
.ws91{word-spacing:0.781560px;}
.wsf2{word-spacing:0.810000px;}
.ws3f{word-spacing:0.841680px;}
.ws90{word-spacing:0.901800px;}
.wsc4{word-spacing:0.918000px;}
.ws81{word-spacing:0.961920px;}
.ws14{word-spacing:0.972000px;}
.ws40{word-spacing:1.022040px;}
.ws16{word-spacing:1.080000px;}
.ws8f{word-spacing:1.082160px;}
.wsc5{word-spacing:1.242000px;}
.ws79{word-spacing:1.262520px;}
.ws57{word-spacing:1.322640px;}
.ws41{word-spacing:1.382760px;}
.wsfa{word-spacing:1.458000px;}
.wsb8{word-spacing:1.503000px;}
.ws5c{word-spacing:1.563120px;}
.ws94{word-spacing:1.620000px;}
.ws58{word-spacing:1.623240px;}
.ws5b{word-spacing:1.683360px;}
.wsf8{word-spacing:1.728000px;}
.ws2b{word-spacing:1.743480px;}
.ws3e{word-spacing:1.803600px;}
.ws65{word-spacing:1.863720px;}
.ws61{word-spacing:1.923840px;}
.ws3b{word-spacing:1.983960px;}
.wsc6{word-spacing:1.998000px;}
.ws6a{word-spacing:2.044080px;}
.ws3d{word-spacing:2.104200px;}
.ws3c{word-spacing:2.224440px;}
.ws83{word-spacing:2.284560px;}
.ws24{word-spacing:2.344680px;}
.wsf3{word-spacing:2.376000px;}
.ws66{word-spacing:2.404800px;}
.ws2e{word-spacing:2.464920px;}
.ws6b{word-spacing:2.525040px;}
.wsfc{word-spacing:2.538000px;}
.ws71{word-spacing:2.645280px;}
.wsce{word-spacing:2.700000px;}
.ws70{word-spacing:2.705400px;}
.ws68{word-spacing:2.765520px;}
.ws2d{word-spacing:2.825640px;}
.ws30{word-spacing:2.885760px;}
.wsfb{word-spacing:2.916000px;}
.ws3a{word-spacing:2.945880px;}
.ws7f{word-spacing:3.006000px;}
.wsa0{word-spacing:3.024000px;}
.ws64{word-spacing:3.066120px;}
.wsf1{word-spacing:3.078000px;}
.ws56{word-spacing:3.126240px;}
.ws2a{word-spacing:3.186360px;}
.wsed{word-spacing:3.240000px;}
.ws2f{word-spacing:3.246480px;}
.ws33{word-spacing:3.306600px;}
.ws54{word-spacing:3.366720px;}
.ws9f{word-spacing:3.402000px;}
.ws55{word-spacing:3.426840px;}
.ws6f{word-spacing:3.486960px;}
.ws32{word-spacing:3.547080px;}
.wsee{word-spacing:3.618000px;}
.ws37{word-spacing:3.667320px;}
.ws75{word-spacing:3.727440px;}
.wsa2{word-spacing:3.780000px;}
.wse9{word-spacing:3.787560px;}
.ws62{word-spacing:3.847680px;}
.wsec{word-spacing:3.888000px;}
.ws35{word-spacing:3.907800px;}
.wsa3{word-spacing:3.942000px;}
.ws76{word-spacing:3.967920px;}
.ws96{word-spacing:3.996000px;}
.ws5d{word-spacing:4.088160px;}
.ws92{word-spacing:4.148280px;}
.ws95{word-spacing:4.158000px;}
.ws5a{word-spacing:4.208400px;}
.ws34{word-spacing:4.268520px;}
.wsa5{word-spacing:4.374000px;}
.ws5e{word-spacing:4.448880px;}
.wsfd{word-spacing:4.482000px;}
.wsb7{word-spacing:4.509000px;}
.wsa6{word-spacing:4.536000px;}
.ws63{word-spacing:4.569120px;}
.ws2c{word-spacing:4.629240px;}
.ws6d{word-spacing:4.809600px;}
.wsc3{word-spacing:4.860000px;}
.ws5f{word-spacing:4.929840px;}
.ws6c{word-spacing:5.170320px;}
.ws8d{word-spacing:5.230440px;}
.ws60{word-spacing:5.290560px;}
.wsf4{word-spacing:5.400000px;}
.wsc2{word-spacing:5.454000px;}
.ws31{word-spacing:5.470920px;}
.wsd7{word-spacing:5.562000px;}
.ws72{word-spacing:5.651280px;}
.wsd6{word-spacing:5.940000px;}
.ws73{word-spacing:5.951880px;}
.wsbd{word-spacing:6.012000px;}
.wsf5{word-spacing:6.102000px;}
.ws85{word-spacing:6.318000px;}
.ws53{word-spacing:6.372720px;}
.ws26{word-spacing:6.432840px;}
.wseb{word-spacing:6.480000px;}
.ws84{word-spacing:6.642000px;}
.wsd8{word-spacing:6.733440px;}
.wsea{word-spacing:6.858000px;}
.ws25{word-spacing:6.913800px;}
.wscf{word-spacing:7.020000px;}
.wse7{word-spacing:7.094160px;}
.wsf0{word-spacing:7.290000px;}
.wsd3{word-spacing:7.398000px;}
.wsd4{word-spacing:7.776000px;}
.wsb9{word-spacing:8.176320px;}
.wse1{word-spacing:8.416800px;}
.ws39{word-spacing:8.597160px;}
.wsd9{word-spacing:8.897760px;}
.wsda{word-spacing:9.138240px;}
.wsbc{word-spacing:9.258480px;}
.wsbb{word-spacing:9.498960px;}
.wse5{word-spacing:9.619200px;}
.wse6{word-spacing:9.859680px;}
.wse4{word-spacing:9.979920px;}
.wsd1{word-spacing:10.476000px;}
.wsbe{word-spacing:10.581120px;}
.wsd0{word-spacing:10.854000px;}
.wsd2{word-spacing:10.962000px;}
.wse2{word-spacing:11.062080px;}
.wse3{word-spacing:11.362680px;}
.wsd5{word-spacing:12.042000px;}
.wsbf{word-spacing:12.865680px;}
.wsc1{word-spacing:16.653240px;}
.wsc0{word-spacing:17.735400px;}
._7{margin-left:-3.725280px;}
._0{margin-left:-1.171800px;}
._1{width:1.080000px;}
._2{width:2.181600px;}
._6{width:3.902400px;}
._8{width:5.597640px;}
._2f{width:6.809400px;}
._9{width:9.801720px;}
._c{width:10.993320px;}
._3{width:14.130000px;}
._5{width:16.148880px;}
._a{width:19.265040px;}
._b{width:20.376000px;}
._4{width:36.183600px;}
._2b{width:115.161840px;}
._18{width:128.383920px;}
._17{width:139.310280px;}
._24{width:144.166680px;}
._2c{width:152.735976px;}
._19{width:158.961600px;}
._25{width:170.069760px;}
._26{width:171.314640px;}
._29{width:183.005280px;}
._14{width:192.661920px;}
._e{width:203.268600px;}
._27{width:208.230120px;}
._28{width:216.407520px;}
._22{width:231.451920px;}
._1e{width:237.532680px;}
._d{width:241.234560px;}
._1f{width:244.235880px;}
._1d{width:245.289240px;}
._1c{width:246.534120px;}
._23{width:266.883120px;}
._f{width:269.313840px;}
._1b{width:270.868320px;}
._21{width:290.966760px;}
._20{width:292.403160px;}
._16{width:296.370000px;}
._2a{width:304.325280px;}
._15{width:308.610000px;}
._1a{width:329.127120px;}
._12{width:370.878480px;}
._11{width:382.417560px;}
._13{width:466.446960px;}
._10{width:478.895760px;}
._2d{width:1243.401840px;}
._2e{width:1250.616240px;}
.fc4{color:transparent;}
.fc3{color:rgb(227,108,10);}
.fc2{color:rgb(49,132,155);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:47.880000px;}
.fsd{font-size:48.218400px;}
.fs11{font-size:48.224400px;}
.fsa{font-size:48.234600px;}
.fs10{font-size:48.239400px;}
.fse{font-size:48.247200px;}
.fsb{font-size:48.255600px;}
.fsc{font-size:48.293400px;}
.fsf{font-size:48.304200px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs6{font-size:63.000000px;}
.fs7{font-size:63.060000px;}
.fs5{font-size:65.319600px;}
.fs4{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:96.120000px;}
.fs3{font-size:132.120000px;}
.y14{bottom:-0.000600px;}
.y0{bottom:0.000000px;}
.y17{bottom:0.000150px;}
.ycb{bottom:0.809850px;}
.yce{bottom:0.810000px;}
.y10a{bottom:1.576650px;}
.yff{bottom:1.695450px;}
.y142{bottom:1.988250px;}
.y14f{bottom:2.262900px;}
.y15b{bottom:2.432100px;}
.y134{bottom:2.546550px;}
.y194{bottom:3.015150px;}
.y188{bottom:3.792900px;}
.y187{bottom:3.793050px;}
.y3a{bottom:9.630000px;}
.yb2{bottom:12.059850px;}
.y103{bottom:21.370350px;}
.yf9{bottom:21.480600px;}
.y137{bottom:21.766800px;}
.y146{bottom:22.053300px;}
.y152{bottom:22.245750px;}
.y12c{bottom:22.356000px;}
.y18c{bottom:22.796100px;}
.y17f{bottom:23.579850px;}
.y196{bottom:29.555400px;}
.y198{bottom:29.580750px;}
.y138{bottom:35.280900px;}
.y147{bottom:38.873250px;}
.y153{bottom:39.085500px;}
.y12d{bottom:41.557950px;}
.y104{bottom:44.065650px;}
.y39{bottom:47.250000px;}
.y18d{bottom:47.872500px;}
.y180{bottom:48.154200px;}
.y139{bottom:48.795150px;}
.yfa{bottom:48.894150px;}
.y148{bottom:55.693200px;}
.y154{bottom:55.925250px;}
.y12e{bottom:60.759900px;}
.y13a{bottom:62.309250px;}
.y105{bottom:66.760800px;}
.y38{bottom:67.140000px;}
.y5{bottom:67.495500px;}
.y149{bottom:72.513150px;}
.y181{bottom:72.728250px;}
.y155{bottom:72.765000px;}
.y18e{bottom:72.948900px;}
.y13b{bottom:75.823500px;}
.yfb{bottom:76.307850px;}
.y12f{bottom:79.961850px;}
.y4{bottom:83.965500px;}
.y101{bottom:88.744650px;}
.y14a{bottom:89.333100px;}
.y13c{bottom:89.337750px;}
.y106{bottom:89.455950px;}
.y156{bottom:89.604750px;}
.y182{bottom:97.302450px;}
.y18f{bottom:98.025300px;}
.y130{bottom:99.163650px;}
.y13d{bottom:102.851700px;}
.yfc{bottom:103.721400px;}
.y14b{bottom:106.153200px;}
.y157{bottom:106.444500px;}
.y136{bottom:108.954900px;}
.y107{bottom:112.151100px;}
.y144{bottom:113.125050px;}
.y10c{bottom:114.316650px;}
.y13e{bottom:116.365950px;}
.y131{bottom:118.365600px;}
.y183{bottom:121.876500px;}
.y14c{bottom:122.973000px;}
.y190{bottom:123.101700px;}
.y158{bottom:123.284250px;}
.y13f{bottom:129.880050px;}
.y151{bottom:129.994950px;}
.y15d{bottom:130.128150px;}
.yfd{bottom:131.135100px;}
.y6a{bottom:132.564060px;}
.y35{bottom:133.290000px;}
.y17d{bottom:133.914810px;}
.y108{bottom:134.846250px;}
.y1c1{bottom:134.995500px;}
.ycd{bottom:135.180000px;}
.y132{bottom:137.567700px;}
.yf7{bottom:137.699850px;}
.y12a{bottom:139.770000px;}
.y14d{bottom:139.793100px;}
.y159{bottom:140.124000px;}
.y97{bottom:140.944890px;}
.y18a{bottom:142.079850px;}
.ycf{bottom:142.920000px;}
.y140{bottom:143.394300px;}
.y184{bottom:146.450700px;}
.y191{bottom:148.178100px;}
.y69{bottom:150.570000px;}
.y17c{bottom:151.920750px;}
.yf6{bottom:153.270000px;}
.y129{bottom:155.250000px;}
.y1c0{bottom:155.884350px;}
.y14e{bottom:156.613050px;}
.y133{bottom:156.769650px;}
.y141{bottom:156.908400px;}
.y15a{bottom:156.963600px;}
.y109{bottom:157.541400px;}
.yfe{bottom:158.548650px;}
.yca{bottom:158.580000px;}
.y96{bottom:163.448490px;}
.y34{bottom:164.250000px;}
.ycc{bottom:166.320000px;}
.yf5{bottom:168.750000px;}
.y17b{bottom:169.926690px;}
.y128{bottom:170.820000px;}
.y185{bottom:171.024900px;}
.y1bf{bottom:171.449850px;}
.y192{bottom:173.254650px;}
.y68{bottom:177.210000px;}
.y95{bottom:185.856330px;}
.y127{bottom:186.300000px;}
.y1be{bottom:186.934350px;}
.y17a{bottom:187.932630px;}
.yf4{bottom:189.994620px;}
.y102{bottom:190.008000px;}
.y33{bottom:191.429850px;}
.yc8{bottom:192.146160px;}
.y186{bottom:195.599100px;}
.y193{bottom:198.330900px;}
.y179{bottom:205.938570px;}
.yc9{bottom:206.007420px;}
.y126{bottom:207.478620px;}
.y145{bottom:207.541500px;}
.y1bd{bottom:207.899850px;}
.y94{bottom:208.264170px;}
.y32{bottom:211.747350px;}
.y67{bottom:212.016240px;}
.y1bc{bottom:223.384350px;}
.y178{bottom:223.944510px;}
.y31{bottom:229.392570px;}
.y66{bottom:230.022180px;}
.y93{bottom:230.672010px;}
.yc7{bottom:232.197780px;}
.y10b{bottom:241.879500px;}
.y177{bottom:241.950450px;}
.y15c{bottom:244.065000px;}
.y150{bottom:244.305000px;}
.y1bb{bottom:244.349850px;}
.y30{bottom:246.947610px;}
.y65{bottom:248.028120px;}
.y92{bottom:253.079850px;}
.yc6{bottom:258.304350px;}
.y1ba{bottom:259.834350px;}
.y176{bottom:259.956390px;}
.y2f{bottom:264.592830px;}
.y64{bottom:266.034060px;}
.yc5{bottom:272.069850px;}
.y91{bottom:275.489850px;}
.y175{bottom:277.962330px;}
.y1b9{bottom:280.799850px;}
.y2e{bottom:282.147870px;}
.y63{bottom:284.040000px;}
.y174{bottom:295.968270px;}
.y1b8{bottom:296.284350px;}
.yc4{bottom:298.164450px;}
.y90{bottom:298.349850px;}
.y2d{bottom:299.702910px;}
.y8e{bottom:309.689850px;}
.y62{bottom:310.680000px;}
.y173{bottom:313.974210px;}
.ybe{bottom:316.616610px;}
.y1b7{bottom:317.249850px;}
.y2c{bottom:317.348130px;}
.y8f{bottom:321.119850px;}
.yc3{bottom:321.565800px;}
.ybd{bottom:330.382110px;}
.y172{bottom:331.980150px;}
.y1b6{bottom:332.734350px;}
.y2b{bottom:334.903170px;}
.y8d{bottom:344.350650px;}
.yc2{bottom:344.967150px;}
.y61{bottom:345.432780px;}
.y171{bottom:349.986090px;}
.y2a{bottom:352.548390px;}
.y1b5{bottom:353.695350px;}
.y60{bottom:363.438720px;}
.y8c{bottom:366.758490px;}
.y170{bottom:367.992030px;}
.yc1{bottom:368.368500px;}
.y1b4{bottom:369.179850px;}
.y29{bottom:370.103430px;}
.yf8{bottom:375.408000px;}
.yf3{bottom:375.479850px;}
.y5f{bottom:381.444660px;}
.y16f{bottom:385.997970px;}
.y28{bottom:387.658470px;}
.y8b{bottom:389.166330px;}
.y1b3{bottom:390.145350px;}
.yc0{bottom:391.769850px;}
.y5e{bottom:399.450600px;}
.y125{bottom:403.590060px;}
.y12b{bottom:403.665000px;}
.y16e{bottom:404.003910px;}
.y27{bottom:405.303690px;}
.y1b2{bottom:411.029850px;}
.y8a{bottom:411.574170px;}
.ybf{bottom:414.986070px;}
.y5d{bottom:417.456540px;}
.y16d{bottom:422.009850px;}
.y26{bottom:422.858730px;}
.y1b1{bottom:426.595350px;}
.y89{bottom:433.982010px;}
.y5c{bottom:435.462480px;}
.ybc{bottom:438.566970px;}
.y16c{bottom:439.739850px;}
.y25{bottom:440.503950px;}
.y1b0{bottom:447.484500px;}
.y5b{bottom:453.468420px;}
.y100{bottom:453.520500px;}
.y16b{bottom:455.219850px;}
.y88{bottom:456.389850px;}
.y143{bottom:457.531500px;}
.y24{bottom:458.058990px;}
.y135{bottom:461.578500px;}
.y1af{bottom:463.050000px;}
.ybb{bottom:464.577780px;}
.y16a{bottom:470.789850px;}
.y5a{bottom:471.474360px;}
.y23{bottom:475.614030px;}
.yb7{bottom:476.098740px;}
.yba{bottom:478.439040px;}
.y87{bottom:478.889850px;}
.y169{bottom:486.269850px;}
.y1ae{bottom:488.250000px;}
.y59{bottom:489.480300px;}
.yb6{bottom:489.960000px;}
.y22{bottom:493.259250px;}
.y86{bottom:501.659850px;}
.y168{bottom:501.839850px;}
.yb9{bottom:504.449850px;}
.y58{bottom:507.486240px;}
.y21{bottom:510.814290px;}
.y84{bottom:513.089850px;}
.y167{bottom:517.319850px;}
.y85{bottom:524.429850px;}
.y57{bottom:525.492180px;}
.y1ad{bottom:526.950000px;}
.yb8{bottom:527.665500px;}
.y20{bottom:528.369330px;}
.y18b{bottom:538.591500px;}
.y166{bottom:538.645350px;}
.y56{bottom:543.498120px;}
.yb1{bottom:543.600000px;}
.y1f{bottom:546.014550px;}
.yb5{bottom:551.069850px;}
.y83{bottom:552.689850px;}
.y1ac{bottom:554.310000px;}
.yf2{bottom:555.839850px;}
.y55{bottom:561.504060px;}
.yb3{bottom:562.589850px;}
.y1e{bottom:563.569590px;}
.y82{bottom:568.169850px;}
.yf0{bottom:571.050000px;}
.yb4{bottom:574.289850px;}
.yf1{bottom:578.699850px;}
.y54{bottom:579.510000px;}
.y1d{bottom:581.214810px;}
.y81{bottom:583.992180px;}
.y124{bottom:587.196540px;}
.y1ab{bottom:592.986240px;}
.yee{bottom:594.450000px;}
.y1c{bottom:598.769850px;}
.y80{bottom:601.998120px;}
.yef{bottom:602.099850px;}
.yb0{bottom:602.639850px;}
.y123{bottom:605.202480px;}
.y53{bottom:606.240000px;}
.y197{bottom:610.983000px;}
.y1aa{bottom:610.992180px;}
.yaf{bottom:618.209850px;}
.y7f{bottom:620.004060px;}
.y122{bottom:623.208420px;}
.yec{bottom:625.859850px;}
.y1b{bottom:626.039850px;}
.y1a9{bottom:628.998120px;}
.y195{bottom:631.315500px;}
.y52{bottom:631.710000px;}
.yae{bottom:633.689850px;}
.y7e{bottom:638.010000px;}
.yed{bottom:639.625350px;}
.y121{bottom:641.214360px;}
.y1a{bottom:646.475520px;}
.y1a8{bottom:647.004060px;}
.yad{bottom:649.169850px;}
.yeb{bottom:656.100000px;}
.y120{bottom:659.220300px;}
.y19{bottom:660.784080px;}
.yea{bottom:663.749220px;}
.yac{bottom:664.897140px;}
.y7d{bottom:665.010000px;}
.y51{bottom:666.415260px;}
.y11f{bottom:677.226240px;}
.y18{bottom:682.021470px;}
.yab{bottom:682.903080px;}
.y50{bottom:684.421200px;}
.ye9{bottom:687.694350px;}
.y7c{bottom:692.010000px;}
.y11e{bottom:695.232180px;}
.y16{bottom:696.232500px;}
.y15{bottom:696.239850px;}
.y13{bottom:696.268500px;}
.yaa{bottom:700.909020px;}
.ye8{bottom:701.459850px;}
.y4f{bottom:702.427140px;}
.y11d{bottom:713.238120px;}
.ya9{bottom:718.914960px;}
.y4e{bottom:720.433080px;}
.y12{bottom:724.012740px;}
.ye7{bottom:725.398500px;}
.y1a7{bottom:727.897140px;}
.y7b{bottom:727.980300px;}
.y11c{bottom:731.244060px;}
.ya8{bottom:736.920900px;}
.y4d{bottom:738.439020px;}
.y11{bottom:742.289220px;}
.y1a6{bottom:745.903080px;}
.y7a{bottom:745.986240px;}
.ye1{bottom:746.014350px;}
.ye6{bottom:748.798650px;}
.y11b{bottom:749.250000px;}
.y165{bottom:751.319850px;}
.ya7{bottom:754.926840px;}
.y4c{bottom:756.444960px;}
.ye0{bottom:759.779850px;}
.y10{bottom:760.655880px;}
.y1a5{bottom:763.909020px;}
.y79{bottom:763.992180px;}
.y164{bottom:769.050000px;}
.ye5{bottom:772.198650px;}
.ya6{bottom:772.932780px;}
.y4b{bottom:774.450900px;}
.y1d1{bottom:775.255500px;}
.y11a{bottom:776.700000px;}
.yf{bottom:778.301100px;}
.y1a4{bottom:781.914960px;}
.y78{bottom:781.998120px;}
.y163{bottom:784.530000px;}
.y1d0{bottom:790.740000px;}
.ya5{bottom:790.938720px;}
.y4a{bottom:792.456840px;}
.ye4{bottom:795.598500px;}
.ye{bottom:796.216860px;}
.y1a3{bottom:799.920900px;}
.y77{bottom:800.004060px;}
.y162{bottom:800.100000px;}
.ya4{bottom:808.944660px;}
.y49{bottom:810.462780px;}
.y1cf{bottom:811.705500px;}
.yd{bottom:814.493340px;}
.y119{bottom:815.382180px;}
.y161{bottom:815.580000px;}
.y1a2{bottom:817.926840px;}
.y76{bottom:818.010000px;}
.ye3{bottom:818.999850px;}
.ya3{bottom:826.950600px;}
.y1ce{bottom:827.190000px;}
.y48{bottom:828.468720px;}
.y160{bottom:831.150000px;}
.yc{bottom:832.853520px;}
.y118{bottom:833.388120px;}
.y1a1{bottom:835.932780px;}
.ye2{bottom:842.229210px;}
.ya2{bottom:844.956540px;}
.y75{bottom:845.010000px;}
.y47{bottom:846.474660px;}
.y15f{bottom:846.630000px;}
.y1cd{bottom:848.155500px;}
.yb{bottom:851.130000px;}
.y117{bottom:851.394060px;}
.y1a0{bottom:853.938720px;}
.ydf{bottom:858.150000px;}
.ya1{bottom:862.962480px;}
.y46{bottom:864.480600px;}
.yde{bottom:865.799370px;}
.y15e{bottom:867.870000px;}
.y17e{bottom:867.892500px;}
.y1cc{bottom:869.040000px;}
.y116{bottom:869.400000px;}
.y19f{bottom:871.944660px;}
.ya{bottom:878.130000px;}
.ya0{bottom:880.968420px;}
.y74{bottom:880.992180px;}
.y45{bottom:882.486540px;}
.y1cb{bottom:884.605500px;}
.ydd{bottom:889.744500px;}
.y19e{bottom:889.950600px;}
.y115{bottom:896.580000px;}
.y9f{bottom:898.974360px;}
.y73{bottom:898.998120px;}
.y44{bottom:900.492480px;}
.yd9{bottom:901.264500px;}
.ydc{bottom:903.510000px;}
.y1ca{bottom:905.490000px;}
.y19d{bottom:907.956540px;}
.yd8{bottom:915.030000px;}
.y9e{bottom:916.980300px;}
.y72{bottom:917.004060px;}
.y43{bottom:918.498420px;}
.y1c9{bottom:921.055500px;}
.y19c{bottom:925.962480px;}
.ydb{bottom:927.450000px;}
.y9{bottom:928.158840px;}
.y189{bottom:931.555500px;}
.y114{bottom:933.714210px;}
.y9d{bottom:934.986240px;}
.y71{bottom:935.010000px;}
.y42{bottom:936.504360px;}
.y1c8{bottom:941.935500px;}
.y19b{bottom:943.968420px;}
.yda{bottom:950.676660px;}
.y113{bottom:951.720150px;}
.y9c{bottom:952.992180px;}
.y41{bottom:954.510300px;}
.y1c7{bottom:957.501000px;}
.y19a{bottom:961.974360px;}
.y70{bottom:962.010000px;}
.y8{bottom:966.870000px;}
.y112{bottom:969.726090px;}
.y9b{bottom:970.998120px;}
.y40{bottom:972.516240px;}
.yd7{bottom:974.069850px;}
.y1c6{bottom:978.385500px;}
.yd4{bottom:978.659850px;}
.y199{bottom:979.980300px;}
.yd6{bottom:985.589850px;}
.y111{bottom:987.732030px;}
.y9a{bottom:989.004060px;}
.y3f{bottom:990.522180px;}
.y1c5{bottom:993.951000px;}
.yd5{bottom:997.290000px;}
.y6f{bottom:997.986240px;}
.y7{bottom:1001.789850px;}
.y110{bottom:1005.737970px;}
.y99{bottom:1007.010000px;}
.y3e{bottom:1008.528120px;}
.y1c4{bottom:1014.835500px;}
.y6e{bottom:1015.992180px;}
.y6{bottom:1023.569850px;}
.y10f{bottom:1023.743910px;}
.yd3{bottom:1025.639850px;}
.y3d{bottom:1026.534060px;}
.y6d{bottom:1033.998120px;}
.y98{bottom:1034.010000px;}
.y1c3{bottom:1035.801000px;}
.yd2{bottom:1041.210000px;}
.y10e{bottom:1041.749850px;}
.y3c{bottom:1044.540000px;}
.y1c2{bottom:1051.285500px;}
.y6c{bottom:1052.004060px;}
.yd1{bottom:1056.690000px;}
.y10d{bottom:1068.839850px;}
.y6b{bottom:1070.010000px;}
.y3b{bottom:1071.179850px;}
.yd0{bottom:1072.170000px;}
.y3{bottom:1081.169850px;}
.y37{bottom:1097.370000px;}
.y2{bottom:1097.640000px;}
.y1{bottom:1114.110000px;}
.y36{bottom:1114.200000px;}
.h27{height:12.778500px;}
.h2c{height:12.798000px;}
.h36{height:13.204500px;}
.h3b{height:13.360500px;}
.h40{height:13.633500px;}
.h31{height:13.764000px;}
.h4a{height:14.088000px;}
.h45{height:14.884500px;}
.h1d{height:23.400000px;}
.h1e{height:23.401500px;}
.hd{height:23.566500px;}
.h10{height:23.602500px;}
.h17{height:28.980000px;}
.h38{height:32.679267px;}
.h29{height:32.690246px;}
.h47{height:32.693500px;}
.h3d{height:32.698786px;}
.h2e{height:32.704479px;}
.h33{height:32.730097px;}
.h42{height:32.737417px;}
.h19{height:33.268184px;}
.h23{height:33.272984px;}
.h22{height:33.273584px;}
.h21{height:33.274184px;}
.h35{height:33.503312px;}
.h49{height:33.507481px;}
.h26{height:33.514568px;}
.h44{height:33.517903px;}
.h3a{height:33.523323px;}
.h2b{height:33.529160px;}
.h30{height:33.555424px;}
.h3f{height:33.562928px;}
.h2{height:36.914062px;}
.h16{height:37.520508px;}
.h4d{height:37.538508px;}
.h24{height:37.546875px;}
.h15{height:37.731445px;}
.h3{height:38.759766px;}
.h5{height:38.777766px;}
.h4c{height:40.666500px;}
.h4b{height:40.668000px;}
.hb{height:41.772832px;}
.h4{height:41.773432px;}
.h18{height:41.802187px;}
.h12{height:42.154453px;}
.h9{height:43.152539px;}
.ha{height:43.178459px;}
.hc{height:43.300979px;}
.hf{height:43.773926px;}
.h11{height:43.815615px;}
.he{height:45.385640px;}
.h1a{height:45.988500px;}
.h8{height:46.193203px;}
.h13{height:50.484375px;}
.h6{height:54.000000px;}
.h1c{height:60.607664px;}
.h20{height:60.970184px;}
.h1f{height:60.988184px;}
.h1b{height:60.990704px;}
.h14{height:65.143828px;}
.h7{height:92.638828px;}
.h28{height:98.719500px;}
.h32{height:122.071500px;}
.h37{height:122.820000px;}
.h2d{height:124.530000px;}
.h41{height:140.064000px;}
.h3c{height:141.358500px;}
.h46{height:152.854500px;}
.h2a{height:176.400000px;}
.h3e{height:176.587500px;}
.h34{height:176.686500px;}
.h25{height:176.832000px;}
.h39{height:178.123500px;}
.h2f{height:179.985000px;}
.h48{height:209.128500px;}
.h43{height:216.519000px;}
.h1{height:1212.000000px;}
.h0{height:1212.030000px;}
.w2e{width:19.743000px;}
.w28{width:19.749000px;}
.w21{width:19.750500px;}
.w1c{width:19.752000px;}
.w10{width:19.753500px;}
.wf{width:19.755000px;}
.w24{width:19.759500px;}
.w9{width:19.761000px;}
.w16{width:19.809000px;}
.w27{width:23.698500px;}
.w20{width:23.700000px;}
.w1b{width:23.701500px;}
.w8{width:23.713500px;}
.w15{width:23.770500px;}
.w2d{width:23.871000px;}
.we{width:23.884500px;}
.w2f{width:25.665000px;}
.w31{width:25.666500px;}
.w29{width:25.672500px;}
.w1d{width:25.677000px;}
.w11{width:25.680000px;}
.wa{width:25.689000px;}
.wb{width:25.690500px;}
.w17{width:25.750500px;}
.w18{width:25.752000px;}
.w30{width:25.845000px;}
.w2a{width:25.854000px;}
.w12{width:25.860000px;}
.w4{width:28.980000px;}
.w13{width:39.687000px;}
.w22{width:43.812000px;}
.w25{width:47.605500px;}
.w6{width:53.730000px;}
.w1e{width:59.613000px;}
.wc{width:59.643000px;}
.w2{width:65.973000px;}
.w2b{width:68.941500px;}
.w5{width:79.198500px;}
.w3{width:81.375000px;}
.w19{width:111.468000px;}
.w32{width:113.071500px;}
.w33{width:116.704500px;}
.w1a{width:311.203500px;}
.w23{width:312.739500px;}
.w1f{width:314.274000px;}
.w14{width:316.689000px;}
.w26{width:330.750000px;}
.w7{width:334.800000px;}
.w2c{width:339.150000px;}
.wd{width:343.351500px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:1.019700px;}
.xc{left:7.020000px;}
.x3c{left:10.082850px;}
.x36{left:12.084600px;}
.x29{left:26.910000px;}
.x27{left:39.600000px;}
.x3{left:66.343050px;}
.x6{left:81.633000px;}
.x1{left:85.050000px;}
.x9{left:107.505000px;}
.xa{left:112.050000px;}
.x2{left:130.050000px;}
.x15{left:131.850000px;}
.xf{left:133.830000px;}
.x1b{left:139.413510px;}
.x10{left:142.650000px;}
.xd{left:145.080000px;}
.x21{left:149.096880px;}
.x1a{left:150.390000px;}
.x5d{left:161.559000px;}
.x26{left:171.467460px;}
.x3d{left:184.623000px;}
.x4{left:197.730000px;}
.x13{left:202.201290px;}
.x5{left:205.620000px;}
.x25{left:227.056140px;}
.x1e{left:228.769200px;}
.x3e{left:231.802500px;}
.x1d{left:236.430000px;}
.x1f{left:238.405050px;}
.x16{left:239.760000px;}
.x23{left:243.897930px;}
.x1c{left:246.700620px;}
.x24{left:253.701360px;}
.x22{left:255.031380px;}
.x20{left:261.327600px;}
.x3f{left:277.003500px;}
.x4b{left:285.459000px;}
.x7{left:286.920000px;}
.x35{left:296.886000px;}
.x57{left:299.437500px;}
.x50{left:301.320000px;}
.x2c{left:302.512500px;}
.x51{left:304.762500px;}
.x40{left:322.203000px;}
.x12{left:323.460000px;}
.x58{left:330.916500px;}
.x52{left:352.992000px;}
.x2e{left:355.839000px;}
.x41{left:364.521000px;}
.x59{left:369.145500px;}
.x5a{left:402.349500px;}
.x53{left:403.980000px;}
.x2f{left:406.680000px;}
.x42{left:409.720500px;}
.xb{left:432.000000px;}
.x5b{left:438.424500px;}
.x3b{left:447.919470px;}
.x19{left:449.460000px;}
.x34{left:451.411500px;}
.x54{left:452.995500px;}
.x30{left:455.542500px;}
.x3a{left:464.491500px;}
.x5c{left:474.679500px;}
.x4c{left:495.225000px;}
.x43{left:496.771500px;}
.x55{left:502.008000px;}
.x31{left:504.406500px;}
.x37{left:505.617000px;}
.x14{left:516.240000px;}
.x11{left:522.270000px;}
.x4d{left:546.504000px;}
.x44{left:547.579500px;}
.x32{left:550.218000px;}
.x38{left:551.949000px;}
.x17{left:571.680000px;}
.x45{left:594.622500px;}
.x56{left:597.163500px;}
.x33{left:599.082000px;}
.x39{left:601.155000px;}
.x4f{left:635.490000px;}
.x2a{left:637.733340px;}
.x46{left:639.691500px;}
.x2b{left:641.070000px;}
.x4e{left:642.973500px;}
.x4a{left:644.179500px;}
.xe{left:667.890000px;}
.x47{left:684.759000px;}
.x48{left:726.775500px;}
.x28{left:753.840000px;}
.x49{left:771.843000px;}
.x18{left:774.360000px;}
.x8{left:807.934950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.642240pt;}
.ls31{letter-spacing:-0.801600pt;}
.ls76{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.748160pt;}
.ls9b{letter-spacing:-0.720000pt;}
.ls30{letter-spacing:-0.694720pt;}
.ls75{letter-spacing:-0.624000pt;}
.ls34{letter-spacing:-0.587840pt;}
.ls1d{letter-spacing:-0.534400pt;}
.ls37{letter-spacing:-0.480960pt;}
.ls9a{letter-spacing:-0.480000pt;}
.ls5e{letter-spacing:-0.427520pt;}
.ls8f{letter-spacing:-0.385795pt;}
.ls15{letter-spacing:-0.374080pt;}
.ls77{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.320640pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.267200pt;}
.ls88{letter-spacing:-0.214685pt;}
.ls14{letter-spacing:-0.213760pt;}
.ls5f{letter-spacing:-0.192000pt;}
.ls7a{letter-spacing:-0.171575pt;}
.ls86{letter-spacing:-0.171546pt;}
.ls84{letter-spacing:-0.171443pt;}
.ls1f{letter-spacing:-0.160320pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117440pt;}
.ls11{letter-spacing:-0.117120pt;}
.ls12{letter-spacing:-0.106880pt;}
.ls99{letter-spacing:-0.096000pt;}
.ls60{letter-spacing:-0.085120pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.058560pt;}
.ls13{letter-spacing:-0.053440pt;}
.lsd{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.053440pt;}
.ls36{letter-spacing:0.058560pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.106880pt;}
.ls98{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.160320pt;}
.ls3c{letter-spacing:0.170240pt;}
.ls8d{letter-spacing:0.171518pt;}
.ls39{letter-spacing:0.175680pt;}
.lse{letter-spacing:0.192000pt;}
.ls9c{letter-spacing:0.196800pt;}
.ls3b{letter-spacing:0.221312pt;}
.ls7b{letter-spacing:0.261856pt;}
.ls33{letter-spacing:0.267200pt;}
.ls83{letter-spacing:0.342886pt;}
.ls8e{letter-spacing:0.342929pt;}
.ls78{letter-spacing:0.343002pt;}
.ls8c{letter-spacing:0.343036pt;}
.ls85{letter-spacing:0.343091pt;}
.ls79{letter-spacing:0.343151pt;}
.ls82{letter-spacing:0.343420pt;}
.ls87{letter-spacing:0.343497pt;}
.ls2c{letter-spacing:0.374080pt;}
.ls29{letter-spacing:0.409920pt;}
.ls19{letter-spacing:0.427520pt;}
.ls9d{letter-spacing:0.480000pt;}
.ls32{letter-spacing:0.480960pt;}
.ls2d{letter-spacing:0.539744pt;}
.ls2b{letter-spacing:0.577152pt;}
.ls1a{letter-spacing:0.641280pt;}
.ls1b{letter-spacing:0.694720pt;}
.ls3e{letter-spacing:0.742816pt;}
.ls38{letter-spacing:0.748160pt;}
.ls4{letter-spacing:1.008000pt;}
.ls22{letter-spacing:1.015360pt;}
.ls28{letter-spacing:1.170336pt;}
.ls21{letter-spacing:1.336000pt;}
.ls23{letter-spacing:1.656640pt;}
.ls95{letter-spacing:1.708800pt;}
.ls96{letter-spacing:1.776000pt;}
.ls26{letter-spacing:1.977280pt;}
.ls8{letter-spacing:2.297920pt;}
.ls6{letter-spacing:2.618560pt;}
.ls2a{letter-spacing:2.939200pt;}
.ls94{letter-spacing:3.024000pt;}
.ls20{letter-spacing:3.142272pt;}
.ls7c{letter-spacing:3.259840pt;}
.ls24{letter-spacing:3.580480pt;}
.ls25{letter-spacing:3.633920pt;}
.ls3f{letter-spacing:3.696000pt;}
.ls9{letter-spacing:3.901120pt;}
.ls27{letter-spacing:3.954560pt;}
.ls81{letter-spacing:4.320000pt;}
.ls7f{letter-spacing:4.542400pt;}
.ls80{letter-spacing:4.595840pt;}
.ls3a{letter-spacing:5.616000pt;}
.ls92{letter-spacing:6.240000pt;}
.ls93{letter-spacing:6.576000pt;}
.ls7d{letter-spacing:7.428160pt;}
.ls8b{letter-spacing:8.069440pt;}
.ls7e{letter-spacing:8.390080pt;}
.ls89{letter-spacing:9.667200pt;}
.ls8a{letter-spacing:9.744000pt;}
.ls90{letter-spacing:9.993280pt;}
.ls2{letter-spacing:13.152000pt;}
.ls3{letter-spacing:13.200000pt;}
.ls97{letter-spacing:18.672000pt;}
.ls91{letter-spacing:42.672000pt;}
.ls5d{letter-spacing:91.759360pt;}
.ls49{letter-spacing:99.760640pt;}
.ls4a{letter-spacing:101.377920pt;}
.ls5c{letter-spacing:101.675840pt;}
.ls58{letter-spacing:102.314240pt;}
.ls6e{letter-spacing:110.283840pt;}
.ls4c{letter-spacing:111.890240pt;}
.ls46{letter-spacing:111.932800pt;}
.ls4b{letter-spacing:112.230720pt;}
.ls51{letter-spacing:112.869120pt;}
.ls45{letter-spacing:120.870400pt;}
.ls48{letter-spacing:122.445120pt;}
.ls6f{letter-spacing:122.774080pt;}
.ls41{letter-spacing:122.785600pt;}
.ls42{letter-spacing:123.126080pt;}
.ls55{letter-spacing:123.721920pt;}
.ls6d{letter-spacing:128.495680pt;}
.ls56{letter-spacing:128.573760pt;}
.ls40{letter-spacing:131.425280pt;}
.ls43{letter-spacing:133.000000pt;}
.ls72{letter-spacing:133.042560pt;}
.ls57{letter-spacing:133.331968pt;}
.ls47{letter-spacing:133.638400pt;}
.ls62{letter-spacing:141.974080pt;}
.ls4e{letter-spacing:141.980160pt;}
.ls50{letter-spacing:143.895360pt;}
.ls64{letter-spacing:143.937920pt;}
.ls4f{letter-spacing:144.193280pt;}
.ls63{letter-spacing:144.214080pt;}
.ls6a{letter-spacing:153.511040pt;}
.ls52{letter-spacing:153.513920pt;}
.ls65{letter-spacing:155.123520pt;}
.ls44{letter-spacing:155.131200pt;}
.ls6b{letter-spacing:160.453984pt;}
.ls53{letter-spacing:160.574624pt;}
.ls70{letter-spacing:173.346880pt;}
.ls6c{letter-spacing:181.899968pt;}
.ls54{letter-spacing:181.978048pt;}
.ls59{letter-spacing:183.901760pt;}
.ls74{letter-spacing:185.859520pt;}
.ls73{letter-spacing:186.114880pt;}
.ls71{letter-spacing:186.157440pt;}
.ls66{letter-spacing:194.456640pt;}
.ls68{letter-spacing:196.371840pt;}
.ls67{letter-spacing:196.669760pt;}
.ls5a{letter-spacing:207.267200pt;}
.ls5b{letter-spacing:207.607680pt;}
.ls69{letter-spacing:221.654720pt;}
.ls4d{letter-spacing:221.695040pt;}
.ls61{letter-spacing:232.240000pt;}
.ls3d{letter-spacing:245.348800pt;}
.ws4e{word-spacing:-53.440000pt;}
.ws5{word-spacing:-25.836800pt;}
.wsde{word-spacing:-14.208000pt;}
.ws43{word-spacing:-14.144000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws51{word-spacing:-13.840960pt;}
.ws4a{word-spacing:-13.787520pt;}
.ws4b{word-spacing:-13.520320pt;}
.ws45{word-spacing:-13.466880pt;}
.ws46{word-spacing:-13.360000pt;}
.ws49{word-spacing:-13.306560pt;}
.ws48{word-spacing:-13.253120pt;}
.ws50{word-spacing:-13.199680pt;}
.ws44{word-spacing:-13.146240pt;}
.wsab{word-spacing:-13.092800pt;}
.wsdd{word-spacing:-12.985920pt;}
.ws4d{word-spacing:-12.941760pt;}
.ws8a{word-spacing:-12.932480pt;}
.ws4f{word-spacing:-12.879040pt;}
.ws47{word-spacing:-12.825600pt;}
.ws4c{word-spacing:-12.824640pt;}
.ws89{word-spacing:-12.772160pt;}
.ws7d{word-spacing:-12.766080pt;}
.ws7{word-spacing:-12.184320pt;}
.wsdf{word-spacing:-12.144000pt;}
.ws9a{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.077440pt;}
.ws99{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.970560pt;}
.wse0{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.863680pt;}
.wsf6{word-spacing:-11.856000pt;}
.ws8b{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.756800pt;}
.wsc8{word-spacing:-11.664000pt;}
.wse{word-spacing:-11.649920pt;}
.wsb{word-spacing:-11.543040pt;}
.wsc{word-spacing:-11.489600pt;}
.ws98{word-spacing:-11.232000pt;}
.wsb4{word-spacing:-11.077763pt;}
.wsac{word-spacing:-11.075286pt;}
.ws9d{word-spacing:-11.066618pt;}
.wsb1{word-spacing:-11.064691pt;}
.wsc9{word-spacing:-11.062902pt;}
.ws9b{word-spacing:-11.061802pt;}
.wscc{word-spacing:-11.059462pt;}
.wsae{word-spacing:-11.058086pt;}
.ws4{word-spacing:-10.944000pt;}
.ws0{word-spacing:-10.896000pt;}
.wscb{word-spacing:-10.891385pt;}
.ws2{word-spacing:-10.848000pt;}
.ws7e{word-spacing:-10.810240pt;}
.ws3{word-spacing:-10.800000pt;}
.wsb5{word-spacing:-10.734267pt;}
.wsad{word-spacing:-10.731867pt;}
.ws9e{word-spacing:-10.723467pt;}
.wsb2{word-spacing:-10.721600pt;}
.wsca{word-spacing:-10.719867pt;}
.ws9c{word-spacing:-10.718800pt;}
.wscd{word-spacing:-10.716533pt;}
.wsaf{word-spacing:-10.715200pt;}
.ws1{word-spacing:-10.704000pt;}
.ws42{word-spacing:-10.656000pt;}
.ws8c{word-spacing:-10.554880pt;}
.wsb3{word-spacing:-10.550054pt;}
.wsb0{word-spacing:-10.543757pt;}
.wsb6{word-spacing:-10.519581pt;}
.wsc7{word-spacing:-2.747358pt;}
.wsdc{word-spacing:-2.743433pt;}
.wsdb{word-spacing:-0.728724pt;}
.ws38{word-spacing:-0.694720pt;}
.ws6e{word-spacing:-0.480960pt;}
.wsf7{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws36{word-spacing:-0.427520pt;}
.ws8e{word-spacing:-0.374080pt;}
.wsa9{word-spacing:-0.343002pt;}
.ws1d{word-spacing:-0.320640pt;}
.ws77{word-spacing:-0.292800pt;}
.wsa4{word-spacing:-0.288000pt;}
.ws29{word-spacing:-0.267200pt;}
.ws97{word-spacing:-0.255360pt;}
.ws7a{word-spacing:-0.213760pt;}
.ws17{word-spacing:-0.192000pt;}
.ws80{word-spacing:-0.175680pt;}
.ws28{word-spacing:-0.160320pt;}
.ws86{word-spacing:-0.144000pt;}
.ws1f{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.096000pt;}
.ws88{word-spacing:-0.085120pt;}
.wse8{word-spacing:-0.064000pt;}
.ws7b{word-spacing:-0.058560pt;}
.ws27{word-spacing:-0.053440pt;}
.ws13{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.wsef{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.053440pt;}
.ws78{word-spacing:0.058560pt;}
.ws19{word-spacing:0.096000pt;}
.ws1c{word-spacing:0.106880pt;}
.ws1a{word-spacing:0.117440pt;}
.ws52{word-spacing:0.128000pt;}
.ws15{word-spacing:0.144000pt;}
.ws59{word-spacing:0.160320pt;}
.wsaa{word-spacing:0.171575pt;}
.ws12{word-spacing:0.192000pt;}
.ws20{word-spacing:0.213760pt;}
.ws1b{word-spacing:0.234880pt;}
.wsf9{word-spacing:0.240000pt;}
.ws87{word-spacing:0.255360pt;}
.ws23{word-spacing:0.267200pt;}
.ws18{word-spacing:0.288000pt;}
.wsba{word-spacing:0.292800pt;}
.ws22{word-spacing:0.320640pt;}
.wsa8{word-spacing:0.336000pt;}
.ws67{word-spacing:0.351360pt;}
.ws21{word-spacing:0.374080pt;}
.wsa7{word-spacing:0.384000pt;}
.ws82{word-spacing:0.427520pt;}
.ws93{word-spacing:0.480000pt;}
.ws74{word-spacing:0.480960pt;}
.ws69{word-spacing:0.534400pt;}
.ws7c{word-spacing:0.587840pt;}
.wsa1{word-spacing:0.624000pt;}
.ws91{word-spacing:0.694720pt;}
.wsf2{word-spacing:0.720000pt;}
.ws3f{word-spacing:0.748160pt;}
.ws90{word-spacing:0.801600pt;}
.wsc4{word-spacing:0.816000pt;}
.ws81{word-spacing:0.855040pt;}
.ws14{word-spacing:0.864000pt;}
.ws40{word-spacing:0.908480pt;}
.ws16{word-spacing:0.960000pt;}
.ws8f{word-spacing:0.961920pt;}
.wsc5{word-spacing:1.104000pt;}
.ws79{word-spacing:1.122240pt;}
.ws57{word-spacing:1.175680pt;}
.ws41{word-spacing:1.229120pt;}
.wsfa{word-spacing:1.296000pt;}
.wsb8{word-spacing:1.336000pt;}
.ws5c{word-spacing:1.389440pt;}
.ws94{word-spacing:1.440000pt;}
.ws58{word-spacing:1.442880pt;}
.ws5b{word-spacing:1.496320pt;}
.wsf8{word-spacing:1.536000pt;}
.ws2b{word-spacing:1.549760pt;}
.ws3e{word-spacing:1.603200pt;}
.ws65{word-spacing:1.656640pt;}
.ws61{word-spacing:1.710080pt;}
.ws3b{word-spacing:1.763520pt;}
.wsc6{word-spacing:1.776000pt;}
.ws6a{word-spacing:1.816960pt;}
.ws3d{word-spacing:1.870400pt;}
.ws3c{word-spacing:1.977280pt;}
.ws83{word-spacing:2.030720pt;}
.ws24{word-spacing:2.084160pt;}
.wsf3{word-spacing:2.112000pt;}
.ws66{word-spacing:2.137600pt;}
.ws2e{word-spacing:2.191040pt;}
.ws6b{word-spacing:2.244480pt;}
.wsfc{word-spacing:2.256000pt;}
.ws71{word-spacing:2.351360pt;}
.wsce{word-spacing:2.400000pt;}
.ws70{word-spacing:2.404800pt;}
.ws68{word-spacing:2.458240pt;}
.ws2d{word-spacing:2.511680pt;}
.ws30{word-spacing:2.565120pt;}
.wsfb{word-spacing:2.592000pt;}
.ws3a{word-spacing:2.618560pt;}
.ws7f{word-spacing:2.672000pt;}
.wsa0{word-spacing:2.688000pt;}
.ws64{word-spacing:2.725440pt;}
.wsf1{word-spacing:2.736000pt;}
.ws56{word-spacing:2.778880pt;}
.ws2a{word-spacing:2.832320pt;}
.wsed{word-spacing:2.880000pt;}
.ws2f{word-spacing:2.885760pt;}
.ws33{word-spacing:2.939200pt;}
.ws54{word-spacing:2.992640pt;}
.ws9f{word-spacing:3.024000pt;}
.ws55{word-spacing:3.046080pt;}
.ws6f{word-spacing:3.099520pt;}
.ws32{word-spacing:3.152960pt;}
.wsee{word-spacing:3.216000pt;}
.ws37{word-spacing:3.259840pt;}
.ws75{word-spacing:3.313280pt;}
.wsa2{word-spacing:3.360000pt;}
.wse9{word-spacing:3.366720pt;}
.ws62{word-spacing:3.420160pt;}
.wsec{word-spacing:3.456000pt;}
.ws35{word-spacing:3.473600pt;}
.wsa3{word-spacing:3.504000pt;}
.ws76{word-spacing:3.527040pt;}
.ws96{word-spacing:3.552000pt;}
.ws5d{word-spacing:3.633920pt;}
.ws92{word-spacing:3.687360pt;}
.ws95{word-spacing:3.696000pt;}
.ws5a{word-spacing:3.740800pt;}
.ws34{word-spacing:3.794240pt;}
.wsa5{word-spacing:3.888000pt;}
.ws5e{word-spacing:3.954560pt;}
.wsfd{word-spacing:3.984000pt;}
.wsb7{word-spacing:4.008000pt;}
.wsa6{word-spacing:4.032000pt;}
.ws63{word-spacing:4.061440pt;}
.ws2c{word-spacing:4.114880pt;}
.ws6d{word-spacing:4.275200pt;}
.wsc3{word-spacing:4.320000pt;}
.ws5f{word-spacing:4.382080pt;}
.ws6c{word-spacing:4.595840pt;}
.ws8d{word-spacing:4.649280pt;}
.ws60{word-spacing:4.702720pt;}
.wsf4{word-spacing:4.800000pt;}
.wsc2{word-spacing:4.848000pt;}
.ws31{word-spacing:4.863040pt;}
.wsd7{word-spacing:4.944000pt;}
.ws72{word-spacing:5.023360pt;}
.wsd6{word-spacing:5.280000pt;}
.ws73{word-spacing:5.290560pt;}
.wsbd{word-spacing:5.344000pt;}
.wsf5{word-spacing:5.424000pt;}
.ws85{word-spacing:5.616000pt;}
.ws53{word-spacing:5.664640pt;}
.ws26{word-spacing:5.718080pt;}
.wseb{word-spacing:5.760000pt;}
.ws84{word-spacing:5.904000pt;}
.wsd8{word-spacing:5.985280pt;}
.wsea{word-spacing:6.096000pt;}
.ws25{word-spacing:6.145600pt;}
.wscf{word-spacing:6.240000pt;}
.wse7{word-spacing:6.305920pt;}
.wsf0{word-spacing:6.480000pt;}
.wsd3{word-spacing:6.576000pt;}
.wsd4{word-spacing:6.912000pt;}
.wsb9{word-spacing:7.267840pt;}
.wse1{word-spacing:7.481600pt;}
.ws39{word-spacing:7.641920pt;}
.wsd9{word-spacing:7.909120pt;}
.wsda{word-spacing:8.122880pt;}
.wsbc{word-spacing:8.229760pt;}
.wsbb{word-spacing:8.443520pt;}
.wse5{word-spacing:8.550400pt;}
.wse6{word-spacing:8.764160pt;}
.wse4{word-spacing:8.871040pt;}
.wsd1{word-spacing:9.312000pt;}
.wsbe{word-spacing:9.405440pt;}
.wsd0{word-spacing:9.648000pt;}
.wsd2{word-spacing:9.744000pt;}
.wse2{word-spacing:9.832960pt;}
.wse3{word-spacing:10.100160pt;}
.wsd5{word-spacing:10.704000pt;}
.wsbf{word-spacing:11.436160pt;}
.wsc1{word-spacing:14.802880pt;}
.wsc0{word-spacing:15.764800pt;}
._7{margin-left:-3.311360pt;}
._0{margin-left:-1.041600pt;}
._1{width:0.960000pt;}
._2{width:1.939200pt;}
._6{width:3.468800pt;}
._8{width:4.975680pt;}
._2f{width:6.052800pt;}
._9{width:8.712640pt;}
._c{width:9.771840pt;}
._3{width:12.560000pt;}
._5{width:14.354560pt;}
._a{width:17.124480pt;}
._b{width:18.112000pt;}
._4{width:32.163200pt;}
._2b{width:102.366080pt;}
._18{width:114.119040pt;}
._17{width:123.831360pt;}
._24{width:128.148160pt;}
._2c{width:135.765312pt;}
._19{width:141.299200pt;}
._25{width:151.173120pt;}
._26{width:152.279680pt;}
._29{width:162.671360pt;}
._14{width:171.255040pt;}
._e{width:180.683200pt;}
._27{width:185.093440pt;}
._28{width:192.362240pt;}
._22{width:205.735040pt;}
._1e{width:211.140160pt;}
._d{width:214.430720pt;}
._1f{width:217.098560pt;}
._1d{width:218.034880pt;}
._1c{width:219.141440pt;}
._23{width:237.229440pt;}
._f{width:239.390080pt;}
._1b{width:240.771840pt;}
._21{width:258.637120pt;}
._20{width:259.913920pt;}
._16{width:263.440000pt;}
._2a{width:270.511360pt;}
._15{width:274.320000pt;}
._1a{width:292.557440pt;}
._12{width:329.669760pt;}
._11{width:339.926720pt;}
._13{width:414.619520pt;}
._10{width:425.685120pt;}
._2d{width:1105.246080pt;}
._2e{width:1111.658880pt;}
.fs9{font-size:42.560000pt;}
.fsd{font-size:42.860800pt;}
.fs11{font-size:42.866133pt;}
.fsa{font-size:42.875200pt;}
.fs10{font-size:42.879467pt;}
.fse{font-size:42.886400pt;}
.fsb{font-size:42.893867pt;}
.fsc{font-size:42.927467pt;}
.fsf{font-size:42.937067pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs6{font-size:56.000000pt;}
.fs7{font-size:56.053333pt;}
.fs5{font-size:58.061867pt;}
.fs4{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:85.440000pt;}
.fs3{font-size:117.440000pt;}
.y14{bottom:-0.000533pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:0.000133pt;}
.ycb{bottom:0.719867pt;}
.yce{bottom:0.720000pt;}
.y10a{bottom:1.401467pt;}
.yff{bottom:1.507067pt;}
.y142{bottom:1.767333pt;}
.y14f{bottom:2.011467pt;}
.y15b{bottom:2.161867pt;}
.y134{bottom:2.263600pt;}
.y194{bottom:2.680133pt;}
.y188{bottom:3.371467pt;}
.y187{bottom:3.371600pt;}
.y3a{bottom:8.560000pt;}
.yb2{bottom:10.719867pt;}
.y103{bottom:18.995867pt;}
.yf9{bottom:19.093867pt;}
.y137{bottom:19.348267pt;}
.y146{bottom:19.602933pt;}
.y152{bottom:19.774000pt;}
.y12c{bottom:19.872000pt;}
.y18c{bottom:20.263200pt;}
.y17f{bottom:20.959867pt;}
.y196{bottom:26.271467pt;}
.y198{bottom:26.294000pt;}
.y138{bottom:31.360800pt;}
.y147{bottom:34.554000pt;}
.y153{bottom:34.742667pt;}
.y12d{bottom:36.940400pt;}
.y104{bottom:39.169467pt;}
.y39{bottom:42.000000pt;}
.y18d{bottom:42.553333pt;}
.y180{bottom:42.803733pt;}
.y139{bottom:43.373467pt;}
.yfa{bottom:43.461467pt;}
.y148{bottom:49.505067pt;}
.y154{bottom:49.711333pt;}
.y12e{bottom:54.008800pt;}
.y13a{bottom:55.386000pt;}
.y105{bottom:59.342933pt;}
.y38{bottom:59.680000pt;}
.y5{bottom:59.996000pt;}
.y149{bottom:64.456133pt;}
.y181{bottom:64.647333pt;}
.y155{bottom:64.680000pt;}
.y18e{bottom:64.843467pt;}
.y13b{bottom:67.398667pt;}
.yfb{bottom:67.829200pt;}
.y12f{bottom:71.077200pt;}
.y4{bottom:74.636000pt;}
.y101{bottom:78.884133pt;}
.y14a{bottom:79.407200pt;}
.y13c{bottom:79.411333pt;}
.y106{bottom:79.516400pt;}
.y156{bottom:79.648667pt;}
.y182{bottom:86.491067pt;}
.y18f{bottom:87.133600pt;}
.y130{bottom:88.145467pt;}
.y13d{bottom:91.423733pt;}
.yfc{bottom:92.196800pt;}
.y14b{bottom:94.358400pt;}
.y157{bottom:94.617333pt;}
.y136{bottom:96.848800pt;}
.y107{bottom:99.689867pt;}
.y144{bottom:100.555600pt;}
.y10c{bottom:101.614800pt;}
.y13e{bottom:103.436400pt;}
.y131{bottom:105.213867pt;}
.y183{bottom:108.334667pt;}
.y14c{bottom:109.309333pt;}
.y190{bottom:109.423733pt;}
.y158{bottom:109.586000pt;}
.y13f{bottom:115.448933pt;}
.y151{bottom:115.551067pt;}
.y15d{bottom:115.669467pt;}
.yfd{bottom:116.564533pt;}
.y6a{bottom:117.834720pt;}
.y35{bottom:118.480000pt;}
.y17d{bottom:119.035387pt;}
.y108{bottom:119.863333pt;}
.y1c1{bottom:119.996000pt;}
.ycd{bottom:120.160000pt;}
.y132{bottom:122.282400pt;}
.yf7{bottom:122.399867pt;}
.y12a{bottom:124.240000pt;}
.y14d{bottom:124.260533pt;}
.y159{bottom:124.554667pt;}
.y97{bottom:125.284347pt;}
.y18a{bottom:126.293200pt;}
.ycf{bottom:127.040000pt;}
.y140{bottom:127.461600pt;}
.y184{bottom:130.178400pt;}
.y191{bottom:131.713867pt;}
.y69{bottom:133.840000pt;}
.y17c{bottom:135.040667pt;}
.yf6{bottom:136.240000pt;}
.y129{bottom:138.000000pt;}
.y1c0{bottom:138.563867pt;}
.y14e{bottom:139.211600pt;}
.y133{bottom:139.350800pt;}
.y141{bottom:139.474133pt;}
.y15a{bottom:139.523200pt;}
.y109{bottom:140.036800pt;}
.yfe{bottom:140.932133pt;}
.yca{bottom:140.960000pt;}
.y96{bottom:145.287547pt;}
.y34{bottom:146.000000pt;}
.ycc{bottom:147.840000pt;}
.yf5{bottom:150.000000pt;}
.y17b{bottom:151.045947pt;}
.y128{bottom:151.840000pt;}
.y185{bottom:152.022133pt;}
.y1bf{bottom:152.399867pt;}
.y192{bottom:154.004133pt;}
.y68{bottom:157.520000pt;}
.y95{bottom:165.205627pt;}
.y127{bottom:165.600000pt;}
.y1be{bottom:166.163867pt;}
.y17a{bottom:167.051227pt;}
.yf4{bottom:168.884107pt;}
.y102{bottom:168.896000pt;}
.y33{bottom:170.159867pt;}
.yc8{bottom:170.796587pt;}
.y186{bottom:173.865867pt;}
.y193{bottom:176.294133pt;}
.y179{bottom:183.056507pt;}
.yc9{bottom:183.117707pt;}
.y126{bottom:184.425440pt;}
.y145{bottom:184.481333pt;}
.y1bd{bottom:184.799867pt;}
.y94{bottom:185.123707pt;}
.y32{bottom:188.219867pt;}
.y67{bottom:188.458880pt;}
.y1bc{bottom:198.563867pt;}
.y178{bottom:199.061787pt;}
.y31{bottom:203.904507pt;}
.y66{bottom:204.464160pt;}
.y93{bottom:205.041787pt;}
.yc7{bottom:206.398027pt;}
.y10b{bottom:215.004000pt;}
.y177{bottom:215.067067pt;}
.y15c{bottom:216.946667pt;}
.y150{bottom:217.160000pt;}
.y1bb{bottom:217.199867pt;}
.y30{bottom:219.508987pt;}
.y65{bottom:220.469440pt;}
.y92{bottom:224.959867pt;}
.yc6{bottom:229.603867pt;}
.y1ba{bottom:230.963867pt;}
.y176{bottom:231.072347pt;}
.y2f{bottom:235.193627pt;}
.y64{bottom:236.474720pt;}
.yc5{bottom:241.839867pt;}
.y91{bottom:244.879867pt;}
.y175{bottom:247.077627pt;}
.y1b9{bottom:249.599867pt;}
.y2e{bottom:250.798107pt;}
.y63{bottom:252.480000pt;}
.y174{bottom:263.082907pt;}
.y1b8{bottom:263.363867pt;}
.yc4{bottom:265.035067pt;}
.y90{bottom:265.199867pt;}
.y2d{bottom:266.402587pt;}
.y8e{bottom:275.279867pt;}
.y62{bottom:276.160000pt;}
.y173{bottom:279.088187pt;}
.ybe{bottom:281.436987pt;}
.y1b7{bottom:281.999867pt;}
.y2c{bottom:282.087227pt;}
.y8f{bottom:285.439867pt;}
.yc3{bottom:285.836267pt;}
.ybd{bottom:293.672987pt;}
.y172{bottom:295.093467pt;}
.y1b6{bottom:295.763867pt;}
.y2b{bottom:297.691707pt;}
.y8d{bottom:306.089467pt;}
.yc2{bottom:306.637467pt;}
.y61{bottom:307.051360pt;}
.y171{bottom:311.098747pt;}
.y2a{bottom:313.376347pt;}
.y1b5{bottom:314.395867pt;}
.y60{bottom:323.056640pt;}
.y8c{bottom:326.007547pt;}
.y170{bottom:327.104027pt;}
.yc1{bottom:327.438667pt;}
.y1b4{bottom:328.159867pt;}
.y29{bottom:328.980827pt;}
.yf8{bottom:333.696000pt;}
.yf3{bottom:333.759867pt;}
.y5f{bottom:339.061920pt;}
.y16f{bottom:343.109307pt;}
.y28{bottom:344.585307pt;}
.y8b{bottom:345.925627pt;}
.y1b3{bottom:346.795867pt;}
.yc0{bottom:348.239867pt;}
.y5e{bottom:355.067200pt;}
.y125{bottom:358.746720pt;}
.y12b{bottom:358.813333pt;}
.y16e{bottom:359.114587pt;}
.y27{bottom:360.269947pt;}
.y1b2{bottom:365.359867pt;}
.y8a{bottom:365.843707pt;}
.ybf{bottom:368.876507pt;}
.y5d{bottom:371.072480pt;}
.y16d{bottom:375.119867pt;}
.y26{bottom:375.874427pt;}
.y1b1{bottom:379.195867pt;}
.y89{bottom:385.761787pt;}
.y5c{bottom:387.077760pt;}
.ybc{bottom:389.837307pt;}
.y16c{bottom:390.879867pt;}
.y25{bottom:391.559067pt;}
.y1b0{bottom:397.764000pt;}
.y5b{bottom:403.083040pt;}
.y100{bottom:403.129333pt;}
.y16b{bottom:404.639867pt;}
.y88{bottom:405.679867pt;}
.y143{bottom:406.694667pt;}
.y24{bottom:407.163547pt;}
.y135{bottom:410.292000pt;}
.y1af{bottom:411.600000pt;}
.ybb{bottom:412.958027pt;}
.y16a{bottom:418.479867pt;}
.y5a{bottom:419.088320pt;}
.y23{bottom:422.768027pt;}
.yb7{bottom:423.198880pt;}
.yba{bottom:425.279147pt;}
.y87{bottom:425.679867pt;}
.y169{bottom:432.239867pt;}
.y1ae{bottom:434.000000pt;}
.y59{bottom:435.093600pt;}
.yb6{bottom:435.520000pt;}
.y22{bottom:438.452667pt;}
.y86{bottom:445.919867pt;}
.y168{bottom:446.079867pt;}
.yb9{bottom:448.399867pt;}
.y58{bottom:451.098880pt;}
.y21{bottom:454.057147pt;}
.y84{bottom:456.079867pt;}
.y167{bottom:459.839867pt;}
.y85{bottom:466.159867pt;}
.y57{bottom:467.104160pt;}
.y1ad{bottom:468.400000pt;}
.yb8{bottom:469.036000pt;}
.y20{bottom:469.661627pt;}
.y18b{bottom:478.748000pt;}
.y166{bottom:478.795867pt;}
.y56{bottom:483.109440pt;}
.yb1{bottom:483.200000pt;}
.y1f{bottom:485.346267pt;}
.yb5{bottom:489.839867pt;}
.y83{bottom:491.279867pt;}
.y1ac{bottom:492.720000pt;}
.yf2{bottom:494.079867pt;}
.y55{bottom:499.114720pt;}
.yb3{bottom:500.079867pt;}
.y1e{bottom:500.950747pt;}
.y82{bottom:505.039867pt;}
.yf0{bottom:507.600000pt;}
.yb4{bottom:510.479867pt;}
.yf1{bottom:514.399867pt;}
.y54{bottom:515.120000pt;}
.y1d{bottom:516.635387pt;}
.y81{bottom:519.104160pt;}
.y124{bottom:521.952480pt;}
.y1ab{bottom:527.098880pt;}
.yee{bottom:528.400000pt;}
.y1c{bottom:532.239867pt;}
.y80{bottom:535.109440pt;}
.yef{bottom:535.199867pt;}
.yb0{bottom:535.679867pt;}
.y123{bottom:537.957760pt;}
.y53{bottom:538.880000pt;}
.y197{bottom:543.096000pt;}
.y1aa{bottom:543.104160pt;}
.yaf{bottom:549.519867pt;}
.y7f{bottom:551.114720pt;}
.y122{bottom:553.963040pt;}
.yec{bottom:556.319867pt;}
.y1b{bottom:556.479867pt;}
.y1a9{bottom:559.109440pt;}
.y195{bottom:561.169333pt;}
.y52{bottom:561.520000pt;}
.yae{bottom:563.279867pt;}
.y7e{bottom:567.120000pt;}
.yed{bottom:568.555867pt;}
.y121{bottom:569.968320pt;}
.y1a{bottom:574.644907pt;}
.y1a8{bottom:575.114720pt;}
.yad{bottom:577.039867pt;}
.yeb{bottom:583.200000pt;}
.y120{bottom:585.973600pt;}
.y19{bottom:587.363627pt;}
.yea{bottom:589.999307pt;}
.yac{bottom:591.019680pt;}
.y7d{bottom:591.120000pt;}
.y51{bottom:592.369120pt;}
.y11f{bottom:601.978880pt;}
.y18{bottom:606.241307pt;}
.yab{bottom:607.024960pt;}
.y50{bottom:608.374400pt;}
.ye9{bottom:611.283867pt;}
.y7c{bottom:615.120000pt;}
.y11e{bottom:617.984160pt;}
.y16{bottom:618.873333pt;}
.y15{bottom:618.879867pt;}
.y13{bottom:618.905333pt;}
.yaa{bottom:623.030240pt;}
.ye8{bottom:623.519867pt;}
.y4f{bottom:624.379680pt;}
.y11d{bottom:633.989440pt;}
.ya9{bottom:639.035520pt;}
.y4e{bottom:640.384960pt;}
.y12{bottom:643.566880pt;}
.ye7{bottom:644.798667pt;}
.y1a7{bottom:647.019680pt;}
.y7b{bottom:647.093600pt;}
.y11c{bottom:649.994720pt;}
.ya8{bottom:655.040800pt;}
.y4d{bottom:656.390240pt;}
.y11{bottom:659.812640pt;}
.y1a6{bottom:663.024960pt;}
.y7a{bottom:663.098880pt;}
.ye1{bottom:663.123867pt;}
.ye6{bottom:665.598800pt;}
.y11b{bottom:666.000000pt;}
.y165{bottom:667.839867pt;}
.ya7{bottom:671.046080pt;}
.y4c{bottom:672.395520pt;}
.ye0{bottom:675.359867pt;}
.y10{bottom:676.138560pt;}
.y1a5{bottom:679.030240pt;}
.y79{bottom:679.104160pt;}
.y164{bottom:683.600000pt;}
.ye5{bottom:686.398800pt;}
.ya6{bottom:687.051360pt;}
.y4b{bottom:688.400800pt;}
.y1d1{bottom:689.116000pt;}
.y11a{bottom:690.400000pt;}
.yf{bottom:691.823200pt;}
.y1a4{bottom:695.035520pt;}
.y78{bottom:695.109440pt;}
.y163{bottom:697.360000pt;}
.y1d0{bottom:702.880000pt;}
.ya5{bottom:703.056640pt;}
.y4a{bottom:704.406080pt;}
.ye4{bottom:707.198667pt;}
.ye{bottom:707.748320pt;}
.y1a3{bottom:711.040800pt;}
.y77{bottom:711.114720pt;}
.y162{bottom:711.200000pt;}
.ya4{bottom:719.061920pt;}
.y49{bottom:720.411360pt;}
.y1cf{bottom:721.516000pt;}
.yd{bottom:723.994080pt;}
.y119{bottom:724.784160pt;}
.y161{bottom:724.960000pt;}
.y1a2{bottom:727.046080pt;}
.y76{bottom:727.120000pt;}
.ye3{bottom:727.999867pt;}
.ya3{bottom:735.067200pt;}
.y1ce{bottom:735.280000pt;}
.y48{bottom:736.416640pt;}
.y160{bottom:738.800000pt;}
.yc{bottom:740.314240pt;}
.y118{bottom:740.789440pt;}
.y1a1{bottom:743.051360pt;}
.ye2{bottom:748.648187pt;}
.ya2{bottom:751.072480pt;}
.y75{bottom:751.120000pt;}
.y47{bottom:752.421920pt;}
.y15f{bottom:752.560000pt;}
.y1cd{bottom:753.916000pt;}
.yb{bottom:756.560000pt;}
.y117{bottom:756.794720pt;}
.y1a0{bottom:759.056640pt;}
.ydf{bottom:762.800000pt;}
.ya1{bottom:767.077760pt;}
.y46{bottom:768.427200pt;}
.yde{bottom:769.599440pt;}
.y15e{bottom:771.440000pt;}
.y17e{bottom:771.460000pt;}
.y1cc{bottom:772.480000pt;}
.y116{bottom:772.800000pt;}
.y19f{bottom:775.061920pt;}
.ya{bottom:780.560000pt;}
.ya0{bottom:783.083040pt;}
.y74{bottom:783.104160pt;}
.y45{bottom:784.432480pt;}
.y1cb{bottom:786.316000pt;}
.ydd{bottom:790.884000pt;}
.y19e{bottom:791.067200pt;}
.y115{bottom:796.960000pt;}
.y9f{bottom:799.088320pt;}
.y73{bottom:799.109440pt;}
.y44{bottom:800.437760pt;}
.yd9{bottom:801.124000pt;}
.ydc{bottom:803.120000pt;}
.y1ca{bottom:804.880000pt;}
.y19d{bottom:807.072480pt;}
.yd8{bottom:813.360000pt;}
.y9e{bottom:815.093600pt;}
.y72{bottom:815.114720pt;}
.y43{bottom:816.443040pt;}
.y1c9{bottom:818.716000pt;}
.y19c{bottom:823.077760pt;}
.ydb{bottom:824.400000pt;}
.y9{bottom:825.030080pt;}
.y189{bottom:828.049333pt;}
.y114{bottom:829.968187pt;}
.y9d{bottom:831.098880pt;}
.y71{bottom:831.120000pt;}
.y42{bottom:832.448320pt;}
.y1c8{bottom:837.276000pt;}
.y19b{bottom:839.083040pt;}
.yda{bottom:845.045920pt;}
.y113{bottom:845.973467pt;}
.y9c{bottom:847.104160pt;}
.y41{bottom:848.453600pt;}
.y1c7{bottom:851.112000pt;}
.y19a{bottom:855.088320pt;}
.y70{bottom:855.120000pt;}
.y8{bottom:859.440000pt;}
.y112{bottom:861.978747pt;}
.y9b{bottom:863.109440pt;}
.y40{bottom:864.458880pt;}
.yd7{bottom:865.839867pt;}
.y1c6{bottom:869.676000pt;}
.yd4{bottom:869.919867pt;}
.y199{bottom:871.093600pt;}
.yd6{bottom:876.079867pt;}
.y111{bottom:877.984027pt;}
.y9a{bottom:879.114720pt;}
.y3f{bottom:880.464160pt;}
.y1c5{bottom:883.512000pt;}
.yd5{bottom:886.480000pt;}
.y6f{bottom:887.098880pt;}
.y7{bottom:890.479867pt;}
.y110{bottom:893.989307pt;}
.y99{bottom:895.120000pt;}
.y3e{bottom:896.469440pt;}
.y1c4{bottom:902.076000pt;}
.y6e{bottom:903.104160pt;}
.y6{bottom:909.839867pt;}
.y10f{bottom:909.994587pt;}
.yd3{bottom:911.679867pt;}
.y3d{bottom:912.474720pt;}
.y6d{bottom:919.109440pt;}
.y98{bottom:919.120000pt;}
.y1c3{bottom:920.712000pt;}
.yd2{bottom:925.520000pt;}
.y10e{bottom:925.999867pt;}
.y3c{bottom:928.480000pt;}
.y1c2{bottom:934.476000pt;}
.y6c{bottom:935.114720pt;}
.yd1{bottom:939.280000pt;}
.y10d{bottom:950.079867pt;}
.y6b{bottom:951.120000pt;}
.y3b{bottom:952.159867pt;}
.yd0{bottom:953.040000pt;}
.y3{bottom:961.039867pt;}
.y37{bottom:975.440000pt;}
.y2{bottom:975.680000pt;}
.y1{bottom:990.320000pt;}
.y36{bottom:990.400000pt;}
.h27{height:11.358667pt;}
.h2c{height:11.376000pt;}
.h36{height:11.737333pt;}
.h3b{height:11.876000pt;}
.h40{height:12.118667pt;}
.h31{height:12.234667pt;}
.h4a{height:12.522667pt;}
.h45{height:13.230667pt;}
.h1d{height:20.800000pt;}
.h1e{height:20.801333pt;}
.hd{height:20.948000pt;}
.h10{height:20.980000pt;}
.h17{height:25.760000pt;}
.h38{height:29.048237pt;}
.h29{height:29.057997pt;}
.h47{height:29.060889pt;}
.h3d{height:29.065587pt;}
.h2e{height:29.070648pt;}
.h33{height:29.093420pt;}
.h42{height:29.099926pt;}
.h19{height:29.571719pt;}
.h23{height:29.575985pt;}
.h22{height:29.576519pt;}
.h21{height:29.577052pt;}
.h35{height:29.780722pt;}
.h49{height:29.784428pt;}
.h26{height:29.790727pt;}
.h44{height:29.793692pt;}
.h3a{height:29.798509pt;}
.h2b{height:29.803697pt;}
.h30{height:29.827043pt;}
.h3f{height:29.833714pt;}
.h2{height:32.812500pt;}
.h16{height:33.351562pt;}
.h4d{height:33.367562pt;}
.h24{height:33.375000pt;}
.h15{height:33.539062pt;}
.h3{height:34.453125pt;}
.h5{height:34.469125pt;}
.h4c{height:36.148000pt;}
.h4b{height:36.149333pt;}
.hb{height:37.131406pt;}
.h4{height:37.131940pt;}
.h18{height:37.157500pt;}
.h12{height:37.470625pt;}
.h9{height:38.357812pt;}
.ha{height:38.380853pt;}
.hc{height:38.489759pt;}
.hf{height:38.910156pt;}
.h11{height:38.947214pt;}
.he{height:40.342791pt;}
.h1a{height:40.878667pt;}
.h8{height:41.060625pt;}
.h13{height:44.875000pt;}
.h6{height:48.000000pt;}
.h1c{height:53.873479pt;}
.h20{height:54.195719pt;}
.h1f{height:54.211719pt;}
.h1b{height:54.213959pt;}
.h14{height:57.905625pt;}
.h7{height:82.345625pt;}
.h28{height:87.750667pt;}
.h32{height:108.508000pt;}
.h37{height:109.173333pt;}
.h2d{height:110.693333pt;}
.h41{height:124.501333pt;}
.h3c{height:125.652000pt;}
.h46{height:135.870667pt;}
.h2a{height:156.800000pt;}
.h3e{height:156.966667pt;}
.h34{height:157.054667pt;}
.h25{height:157.184000pt;}
.h39{height:158.332000pt;}
.h2f{height:159.986667pt;}
.h48{height:185.892000pt;}
.h43{height:192.461333pt;}
.h1{height:1077.333333pt;}
.h0{height:1077.360000pt;}
.w2e{width:17.549333pt;}
.w28{width:17.554667pt;}
.w21{width:17.556000pt;}
.w1c{width:17.557333pt;}
.w10{width:17.558667pt;}
.wf{width:17.560000pt;}
.w24{width:17.564000pt;}
.w9{width:17.565333pt;}
.w16{width:17.608000pt;}
.w27{width:21.065333pt;}
.w20{width:21.066667pt;}
.w1b{width:21.068000pt;}
.w8{width:21.078667pt;}
.w15{width:21.129333pt;}
.w2d{width:21.218667pt;}
.we{width:21.230667pt;}
.w2f{width:22.813333pt;}
.w31{width:22.814667pt;}
.w29{width:22.820000pt;}
.w1d{width:22.824000pt;}
.w11{width:22.826667pt;}
.wa{width:22.834667pt;}
.wb{width:22.836000pt;}
.w17{width:22.889333pt;}
.w18{width:22.890667pt;}
.w30{width:22.973333pt;}
.w2a{width:22.981333pt;}
.w12{width:22.986667pt;}
.w4{width:25.760000pt;}
.w13{width:35.277333pt;}
.w22{width:38.944000pt;}
.w25{width:42.316000pt;}
.w6{width:47.760000pt;}
.w1e{width:52.989333pt;}
.wc{width:53.016000pt;}
.w2{width:58.642667pt;}
.w2b{width:61.281333pt;}
.w5{width:70.398667pt;}
.w3{width:72.333333pt;}
.w19{width:99.082667pt;}
.w32{width:100.508000pt;}
.w33{width:103.737333pt;}
.w1a{width:276.625333pt;}
.w23{width:277.990667pt;}
.w1f{width:279.354667pt;}
.w14{width:281.501333pt;}
.w26{width:294.000000pt;}
.w7{width:297.600000pt;}
.w2c{width:301.466667pt;}
.wd{width:305.201333pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:0.906400pt;}
.xc{left:6.240000pt;}
.x3c{left:8.962533pt;}
.x36{left:10.741867pt;}
.x29{left:23.920000pt;}
.x27{left:35.200000pt;}
.x3{left:58.971600pt;}
.x6{left:72.562667pt;}
.x1{left:75.600000pt;}
.x9{left:95.560000pt;}
.xa{left:99.600000pt;}
.x2{left:115.600000pt;}
.x15{left:117.200000pt;}
.xf{left:118.960000pt;}
.x1b{left:123.923120pt;}
.x10{left:126.800000pt;}
.xd{left:128.960000pt;}
.x21{left:132.530560pt;}
.x1a{left:133.680000pt;}
.x5d{left:143.608000pt;}
.x26{left:152.415520pt;}
.x3d{left:164.109333pt;}
.x4{left:175.760000pt;}
.x13{left:179.734480pt;}
.x5{left:182.773333pt;}
.x25{left:201.827680pt;}
.x1e{left:203.350400pt;}
.x3e{left:206.046667pt;}
.x1d{left:210.160000pt;}
.x1f{left:211.915600pt;}
.x16{left:213.120000pt;}
.x23{left:216.798160pt;}
.x1c{left:219.289440pt;}
.x24{left:225.512320pt;}
.x22{left:226.694560pt;}
.x20{left:232.291200pt;}
.x3f{left:246.225333pt;}
.x4b{left:253.741333pt;}
.x7{left:255.040000pt;}
.x35{left:263.898667pt;}
.x57{left:266.166667pt;}
.x50{left:267.840000pt;}
.x2c{left:268.900000pt;}
.x51{left:270.900000pt;}
.x40{left:286.402667pt;}
.x12{left:287.520000pt;}
.x58{left:294.148000pt;}
.x52{left:313.770667pt;}
.x2e{left:316.301333pt;}
.x41{left:324.018667pt;}
.x59{left:328.129333pt;}
.x5a{left:357.644000pt;}
.x53{left:359.093333pt;}
.x2f{left:361.493333pt;}
.x42{left:364.196000pt;}
.xb{left:384.000000pt;}
.x5b{left:389.710667pt;}
.x3b{left:398.150640pt;}
.x19{left:399.520000pt;}
.x34{left:401.254667pt;}
.x54{left:402.662667pt;}
.x30{left:404.926667pt;}
.x3a{left:412.881333pt;}
.x5c{left:421.937333pt;}
.x4c{left:440.200000pt;}
.x43{left:441.574667pt;}
.x55{left:446.229333pt;}
.x31{left:448.361333pt;}
.x37{left:449.437333pt;}
.x14{left:458.880000pt;}
.x11{left:464.240000pt;}
.x4d{left:485.781333pt;}
.x44{left:486.737333pt;}
.x32{left:489.082667pt;}
.x38{left:490.621333pt;}
.x17{left:508.160000pt;}
.x45{left:528.553333pt;}
.x56{left:530.812000pt;}
.x33{left:532.517333pt;}
.x39{left:534.360000pt;}
.x4f{left:564.880000pt;}
.x2a{left:566.874080pt;}
.x46{left:568.614667pt;}
.x2b{left:569.840000pt;}
.x4e{left:571.532000pt;}
.x4a{left:572.604000pt;}
.xe{left:593.680000pt;}
.x47{left:608.674667pt;}
.x48{left:646.022667pt;}
.x28{left:670.080000pt;}
.x49{left:686.082667pt;}
.x18{left:688.320000pt;}
.x8{left:718.164400pt;}
}




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