
    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_cc2be537b0ae557065b8594c.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_971bc450e42bd48affe876e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_aedfd0073b43689fe98579de.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d209267a4492aa049272bc1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_a6260cf8f74fecbb9cc6d5ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_e3dfc0b7304e7efbb5bc5474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e9c049e50e66dde1abce6ee5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_7ef2ae1471a43c297638fc5b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983887;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_81116b94b0eb203ae445b426.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_86f23c335c9bc05a2987a9bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3194a6041a25ebab6900a76b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e6dff8853f766e5457521d7d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1642d9a70917eb92da330d36.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927000;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_804307dad68d9c8e3664a36c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_54ce94a4c2334b2bf87763f1.woff2')format("woff");}.fff{font-family:fff;line-height:0.831000;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_91ece3c8aa9747663ade5116.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2d81a10fb858138155c1f6a4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704200;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_5303f09ef99ffb0421c6d5c5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.451000;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_8168418f388cfb6428956568.woff2')format("woff");}.ff13{font-family:ff13;line-height:2.399000;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_eb9b3c71892e56cd7c098640.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.857910;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v12{vertical-align:-84.282000px;}
.v10{vertical-align:-54.887999px;}
.v19{vertical-align:-52.194027px;}
.vf{vertical-align:-45.917999px;}
.v1a{vertical-align:-34.926027px;}
.v2{vertical-align:-16.878000px;}
.v9{vertical-align:-14.946000px;}
.v3{vertical-align:-8.964000px;}
.v17{vertical-align:-1.702362px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:1.702362px;}
.vd{vertical-align:8.970000px;}
.v5{vertical-align:14.838000px;}
.v7{vertical-align:16.464000px;}
.va{vertical-align:18.042000px;}
.v1d{vertical-align:19.246095px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v1b{vertical-align:26.350891px;}
.v16{vertical-align:30.053999px;}
.v6{vertical-align:36.528000px;}
.v8{vertical-align:38.154000px;}
.ve{vertical-align:40.439999px;}
.v13{vertical-align:44.124000px;}
.v1c{vertical-align:50.461722px;}
.vc{vertical-align:54.816000px;}
.v14{vertical-align:71.093999px;}
.vb{vertical-align:84.288000px;}
.v15{vertical-align:117.852000px;}
.v11{vertical-align:137.376000px;}
.ls6{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.000066px;}
.ls0{letter-spacing:0.000141px;}
.ls51{letter-spacing:0.000307px;}
.ls5e{letter-spacing:0.000542px;}
.ls3c{letter-spacing:0.000648px;}
.ls34{letter-spacing:0.000961px;}
.ls6c{letter-spacing:0.000973px;}
.ls49{letter-spacing:0.001140px;}
.ls5d{letter-spacing:0.001925px;}
.ls1a{letter-spacing:0.002244px;}
.ls52{letter-spacing:0.002338px;}
.lse{letter-spacing:0.002481px;}
.ls4b{letter-spacing:0.002525px;}
.ls24{letter-spacing:0.003031px;}
.ls50{letter-spacing:0.003182px;}
.ls31{letter-spacing:0.003270px;}
.ls2c{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.004896px;}
.ls47{letter-spacing:0.005306px;}
.lsf{letter-spacing:0.006767px;}
.ls53{letter-spacing:0.006956px;}
.ls6b{letter-spacing:0.007924px;}
.ls1d{letter-spacing:0.458387px;}
.ls6f{letter-spacing:0.464388px;}
.ls3a{letter-spacing:1.659334px;}
.ls2a{letter-spacing:2.144024px;}
.ls30{letter-spacing:2.146172px;}
.ls60{letter-spacing:2.420908px;}
.ls5{letter-spacing:2.449833px;}
.ls4d{letter-spacing:2.568136px;}
.ls32{letter-spacing:2.624369px;}
.ls3{letter-spacing:2.964877px;}
.ls10{letter-spacing:2.983140px;}
.ls20{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984914px;}
.ls8{letter-spacing:2.986767px;}
.ls73{letter-spacing:2.987676px;}
.ls4{letter-spacing:2.988532px;}
.ls6e{letter-spacing:2.988564px;}
.ls26{letter-spacing:2.988647px;}
.ls7{letter-spacing:2.988780px;}
.ls23{letter-spacing:2.989140px;}
.ls9{letter-spacing:2.989490px;}
.ls4a{letter-spacing:2.990524px;}
.ls1{letter-spacing:2.990914px;}
.ls4c{letter-spacing:2.992364px;}
.ls17{letter-spacing:3.422408px;}
.lsd{letter-spacing:3.447653px;}
.ls28{letter-spacing:4.129140px;}
.ls25{letter-spacing:4.135140px;}
.ls11{letter-spacing:5.408908px;}
.ls42{letter-spacing:5.971994px;}
.ls45{letter-spacing:5.974364px;}
.ls56{letter-spacing:5.975870px;}
.ls46{letter-spacing:5.977995px;}
.ls41{letter-spacing:5.980364px;}
.ls67{letter-spacing:6.516304px;}
.ls63{letter-spacing:7.472450px;}
.ls21{letter-spacing:7.478450px;}
.ls59{letter-spacing:8.298313px;}
.ls55{letter-spacing:8.304312px;}
.ls5c{letter-spacing:8.305925px;}
.ls2d{letter-spacing:9.956339px;}
.ls5a{letter-spacing:9.962339px;}
.ls54{letter-spacing:9.963182px;}
.ls61{letter-spacing:13.278539px;}
.ls36{letter-spacing:13.280339px;}
.ls57{letter-spacing:13.281269px;}
.ls58{letter-spacing:13.284539px;}
.ls18{letter-spacing:13.288893px;}
.ls64{letter-spacing:16.076100px;}
.ls6d{letter-spacing:16.271864px;}
.ls19{letter-spacing:16.382339px;}
.ls35{letter-spacing:16.440921px;}
.ls62{letter-spacing:16.599268px;}
.ls4f{letter-spacing:16.602538px;}
.ls70{letter-spacing:19.589862px;}
.ls4e{letter-spacing:19.928173px;}
.ls2b{letter-spacing:20.520646px;}
.ls16{letter-spacing:22.080539px;}
.ls12{letter-spacing:22.083269px;}
.ls15{letter-spacing:22.085306px;}
.ls13{letter-spacing:22.085608px;}
.ls38{letter-spacing:22.887270px;}
.ls3b{letter-spacing:22.920648px;}
.ls39{letter-spacing:23.706921px;}
.ls14{letter-spacing:23.882100px;}
.lsb{letter-spacing:26.013270px;}
.lsa{letter-spacing:26.036447px;}
.ls68{letter-spacing:26.230199px;}
.ls69{letter-spacing:26.836201px;}
.ls33{letter-spacing:28.035270px;}
.ls65{letter-spacing:28.394450px;}
.ls6a{letter-spacing:28.406100px;}
.ls27{letter-spacing:29.952647px;}
.ls29{letter-spacing:30.042648px;}
.ls66{letter-spacing:31.346449px;}
.ls22{letter-spacing:32.465306px;}
.ls1c{letter-spacing:34.139607px;}
.ls1f{letter-spacing:34.140539px;}
.ls2f{letter-spacing:34.494646px;}
.ls72{letter-spacing:36.636537px;}
.ls1b{letter-spacing:37.122645px;}
.ls5b{letter-spacing:38.718537px;}
.lsc{letter-spacing:39.304893px;}
.ls71{letter-spacing:39.624564px;}
.ls2e{letter-spacing:40.652450px;}
.ls1e{letter-spacing:41.612450px;}
.ls3e{letter-spacing:45.080801px;}
.ls3d{letter-spacing:52.562450px;}
.ls43{letter-spacing:55.756201px;}
.ls40{letter-spacing:81.108539px;}
.ls3f{letter-spacing:88.574450px;}
.ls44{letter-spacing:88.580447px;}
.ls37{letter-spacing:196.448332px;}
.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;}
}
.ws8d{word-spacing:-59.775599px;}
.wscb{word-spacing:-47.654765px;}
.wscd{word-spacing:-47.324341px;}
.wsa0{word-spacing:-42.261348px;}
.ws91{word-spacing:-38.937825px;}
.wsb7{word-spacing:-31.633157px;}
.ws89{word-spacing:-29.015076px;}
.ws8c{word-spacing:-28.955300px;}
.wsb8{word-spacing:-25.181242px;}
.wsb5{word-spacing:-25.175241px;}
.wsee{word-spacing:-24.161856px;}
.wsea{word-spacing:-24.155856px;}
.ws90{word-spacing:-22.344135px;}
.ws13e{word-spacing:-22.327017px;}
.wsdd{word-spacing:-22.320208px;}
.wsb4{word-spacing:-21.339828px;}
.wsf0{word-spacing:-20.176841px;}
.wsf9{word-spacing:-19.085981px;}
.wsdb{word-spacing:-14.943900px;}
.ws19{word-spacing:-14.920027px;}
.ws140{word-spacing:-14.446535px;}
.wsef{word-spacing:-12.926987px;}
.wsdc{word-spacing:-12.055722px;}
.wsc9{word-spacing:-12.054743px;}
.ws48{word-spacing:-11.955150px;}
.ws147{word-spacing:-11.214170px;}
.wsd2{word-spacing:-10.460700px;}
.wsff{word-spacing:-9.563859px;}
.ws107{word-spacing:-9.058471px;}
.ws14d{word-spacing:-8.951538px;}
.ws110{word-spacing:-8.929723px;}
.wsa6{word-spacing:-8.099856px;}
.wsed{word-spacing:-7.728319px;}
.ws105{word-spacing:-7.576235px;}
.ws10b{word-spacing:-4.853860px;}
.wsf7{word-spacing:-4.453721px;}
.ws8a{word-spacing:-4.144372px;}
.wsfe{word-spacing:-4.141721px;}
.ws1c8{word-spacing:-3.969110px;}
.wse8{word-spacing:-2.525857px;}
.wse4{word-spacing:-2.432987px;}
.ws4e{word-spacing:-1.195512px;}
.ws74{word-spacing:-1.135736px;}
.wsa8{word-spacing:-0.956410px;}
.ws13d{word-spacing:-0.947983px;}
.ws5c{word-spacing:-0.896634px;}
.ws8f{word-spacing:-0.836858px;}
.wsaf{word-spacing:-0.717307px;}
.ws143{word-spacing:-0.677411px;}
.ws1bb{word-spacing:-0.573847px;}
.ws2f{word-spacing:-0.526027px;}
.ws10{word-spacing:-0.484186px;}
.ws100{word-spacing:-0.358654px;}
.wscf{word-spacing:-0.294140px;}
.ws113{word-spacing:-0.239102px;}
.ws12{word-spacing:-0.161395px;}
.ws69{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.047821px;}
.ws115{word-spacing:-0.013063px;}
.ws55{word-spacing:0.000000px;}
.ws1d1{word-spacing:0.047821px;}
.ws17e{word-spacing:0.191282px;}
.ws17c{word-spacing:0.207681px;}
.wsdf{word-spacing:0.312141px;}
.wse1{word-spacing:0.318144px;}
.ws1ae{word-spacing:0.334744px;}
.wsf4{word-spacing:0.418429px;}
.ws190{word-spacing:0.526027px;}
.wsf{word-spacing:0.645581px;}
.ws31{word-spacing:0.669488px;}
.ws92{word-spacing:0.777083px;}
.ws60{word-spacing:0.836858px;}
.wsd5{word-spacing:0.940280px;}
.wsbd{word-spacing:1.075961px;}
.wsfc{word-spacing:1.084281px;}
.ws30{word-spacing:1.099874px;}
.wsa7{word-spacing:1.135736px;}
.ws1ca{word-spacing:1.147694px;}
.ws13f{word-spacing:1.207226px;}
.ws141{word-spacing:1.255288px;}
.ws1b4{word-spacing:1.291156px;}
.wsc{word-spacing:1.344960px;}
.ws94{word-spacing:1.374839px;}
.ws34{word-spacing:1.434614px;}
.ws15b{word-spacing:1.494390px;}
.ws109{word-spacing:1.554166px;}
.ws6d{word-spacing:1.613941px;}
.wsc8{word-spacing:1.733492px;}
.ws137{word-spacing:1.809152px;}
.ws135{word-spacing:1.810281px;}
.ws138{word-spacing:1.818157px;}
.ws77{word-spacing:1.853044px;}
.ws5e{word-spacing:1.972595px;}
.wsf3{word-spacing:1.985681px;}
.ws1c9{word-spacing:2.008465px;}
.ws133{word-spacing:2.032370px;}
.ws9b{word-spacing:2.092146px;}
.ws181{word-spacing:2.104106px;}
.ws19f{word-spacing:2.151927px;}
.ws63{word-spacing:2.271473px;}
.ws1c1{word-spacing:2.343209px;}
.ws15c{word-spacing:2.391024px;}
.ws45{word-spacing:2.510575px;}
.wsb3{word-spacing:2.570351px;}
.ws12e{word-spacing:2.571259px;}
.ws5d{word-spacing:2.630126px;}
.ws1a5{word-spacing:2.677954px;}
.ws35{word-spacing:2.689902px;}
.ws3c{word-spacing:2.749678px;}
.ws172{word-spacing:2.869229px;}
.ws123{word-spacing:2.988780px;}
.ws61{word-spacing:3.168107px;}
.ws1af{word-spacing:3.172484px;}
.ws58{word-spacing:3.227882px;}
.ws70{word-spacing:3.287658px;}
.ws128{word-spacing:3.347434px;}
.ws127{word-spacing:3.374720px;}
.ws3d{word-spacing:3.407209px;}
.ws28{word-spacing:3.466985px;}
.ws14c{word-spacing:3.580615px;}
.ws122{word-spacing:3.586536px;}
.ws1b6{word-spacing:3.634366px;}
.wsd8{word-spacing:3.646312px;}
.ws159{word-spacing:3.706087px;}
.ws1aa{word-spacing:3.730007px;}
.ws3e{word-spacing:3.765863px;}
.ws7a{word-spacing:3.825638px;}
.ws1c4{word-spacing:3.825648px;}
.ws18e{word-spacing:4.016930px;}
.ws78{word-spacing:4.064741px;}
.ws38{word-spacing:4.124516px;}
.ws40{word-spacing:4.303843px;}
.ws192{word-spacing:4.303854px;}
.ws199{word-spacing:4.351675px;}
.ws10a{word-spacing:4.363619px;}
.ws10c{word-spacing:4.364136px;}
.ws2a{word-spacing:4.423394px;}
.ws1de{word-spacing:4.429697px;}
.ws1e0{word-spacing:4.447316px;}
.ws14a{word-spacing:4.485668px;}
.ws22{word-spacing:4.542945px;}
.ws1b1{word-spacing:4.542957px;}
.ws118{word-spacing:4.602721px;}
.ws4d{word-spacing:4.662497px;}
.wsb0{word-spacing:4.722272px;}
.ws1b7{word-spacing:4.779732px;}
.ws10f{word-spacing:4.780178px;}
.ws1d8{word-spacing:4.780422px;}
.ws112{word-spacing:4.782048px;}
.ws2c{word-spacing:4.782060px;}
.ws111{word-spacing:4.787768px;}
.ws44{word-spacing:4.841823px;}
.wsfa{word-spacing:4.899393px;}
.ws9c{word-spacing:4.901599px;}
.wsf8{word-spacing:4.902902px;}
.wsbe{word-spacing:4.961375px;}
.ws93{word-spacing:5.021150px;}
.ws8{word-spacing:5.164646px;}
.ws101{word-spacing:5.379840px;}
.ws193{word-spacing:5.499369px;}
.ws195{word-spacing:5.547190px;}
.ws161{word-spacing:5.559131px;}
.wsba{word-spacing:5.601431px;}
.ws6e{word-spacing:5.618906px;}
.ws39{word-spacing:5.678682px;}
.ws1cb{word-spacing:5.690651px;}
.ws13{word-spacing:5.702630px;}
.ws54{word-spacing:5.738457px;}
.ws17{word-spacing:5.756429px;}
.ws59{word-spacing:5.798233px;}
.wsce{word-spacing:5.807861px;}
.wsb{word-spacing:5.810227px;}
.ws1da{word-spacing:5.881934px;}
.ws15a{word-spacing:5.910695px;}
.ws76{word-spacing:5.917784px;}
.ws86{word-spacing:5.925398px;}
.ws85{word-spacing:5.929754px;}
.ws47{word-spacing:5.961515px;}
.wsec{word-spacing:5.974816px;}
.ws84{word-spacing:5.976480px;}
.ws25{word-spacing:5.977560px;}
.ws32{word-spacing:6.025396px;}
.ws65{word-spacing:6.037335px;}
.wsad{word-spacing:6.141028px;}
.ws7f{word-spacing:6.156887px;}
.ws191{word-spacing:6.168857px;}
.ws173{word-spacing:6.216662px;}
.ws71{word-spacing:6.276438px;}
.ws4c{word-spacing:6.395989px;}
.wsa1{word-spacing:6.455765px;}
.ws1dc{word-spacing:6.455781px;}
.ws11f{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws177{word-spacing:6.635091px;}
.wse6{word-spacing:6.669570px;}
.wse9{word-spacing:6.686131px;}
.wse7{word-spacing:6.694867px;}
.ws14{word-spacing:6.724800px;}
.wsd{word-spacing:6.778598px;}
.wseb{word-spacing:6.814418px;}
.ws18a{word-spacing:6.930030px;}
.ws18c{word-spacing:6.933987px;}
.ws119{word-spacing:6.993745px;}
.ws1cd{word-spacing:7.077449px;}
.ws51{word-spacing:7.173072px;}
.ws1a3{word-spacing:7.173090px;}
.ws16e{word-spacing:7.352399px;}
.ws1a6{word-spacing:7.460014px;}
.ws9e{word-spacing:7.471950px;}
.ws1bf{word-spacing:7.507834px;}
.ws116{word-spacing:7.531725px;}
.ws129{word-spacing:7.591501px;}
.ws7{word-spacing:7.639373px;}
.ws18d{word-spacing:7.746937px;}
.ws5f{word-spacing:7.830603px;}
.ws73{word-spacing:7.890379px;}
.wsb9{word-spacing:7.942312px;}
.wsa9{word-spacing:7.950155px;}
.ws37{word-spacing:8.069706px;}
.wsbf{word-spacing:8.129481px;}
.ws1b2{word-spacing:8.129502px;}
.ws4a{word-spacing:8.189257px;}
.ws182{word-spacing:8.225143px;}
.ws81{word-spacing:8.249033px;}
.ws1c5{word-spacing:8.272964px;}
.ws9{word-spacing:8.392550px;}
.ws4{word-spacing:8.446349px;}
.ws1d9{word-spacing:8.464246px;}
.ws1b{word-spacing:8.488135px;}
.ws1d5{word-spacing:8.512067px;}
.ws12f{word-spacing:8.607686px;}
.ws9a{word-spacing:8.667462px;}
.ws62{word-spacing:8.727237px;}
.ws185{word-spacing:8.751170px;}
.ws15f{word-spacing:8.787013px;}
.wse5{word-spacing:8.840136px;}
.wse3{word-spacing:8.846789px;}
.ws82{word-spacing:8.906564px;}
.ws108{word-spacing:8.924136px;}
.ws130{word-spacing:8.927287px;}
.ws1ad{word-spacing:8.942452px;}
.ws8e{word-spacing:8.966340px;}
.ws12b{word-spacing:9.026115px;}
.wsd3{word-spacing:9.131861px;}
.wsd0{word-spacing:9.132752px;}
.ws1a{word-spacing:9.145667px;}
.ws5{word-spacing:9.145728px;}
.ws11a{word-spacing:9.205442px;}
.wsf6{word-spacing:9.265218px;}
.ws139{word-spacing:9.363261px;}
.ws1a9{word-spacing:9.372838px;}
.wse2{word-spacing:9.504320px;}
.wse0{word-spacing:9.530136px;}
.wsfd{word-spacing:9.564096px;}
.ws1dd{word-spacing:9.564120px;}
.ws80{word-spacing:9.623871px;}
.ws1b5{word-spacing:9.659761px;}
.ws1b8{word-spacing:9.755402px;}
.wsc0{word-spacing:9.803198px;}
.ws1d3{word-spacing:9.803223px;}
.ws5a{word-spacing:9.862974px;}
.wsd1{word-spacing:9.888781px;}
.wsae{word-spacing:9.922749px;}
.ws36{word-spacing:10.042301px;}
.ws1c6{word-spacing:10.042326px;}
.ws50{word-spacing:10.102076px;}
.ws160{word-spacing:10.161852px;}
.ws1a2{word-spacing:10.185788px;}
.ws21{word-spacing:10.281403px;}
.ws178{word-spacing:10.341179px;}
.ws29{word-spacing:10.520505px;}
.ws16b{word-spacing:10.580281px;}
.ws66{word-spacing:10.640057px;}
.ws163{word-spacing:10.699832px;}
.ws169{word-spacing:10.759608px;}
.wsda{word-spacing:10.819383px;}
.ws10d{word-spacing:10.858913px;}
.ws10e{word-spacing:10.879159px;}
.ws1d7{word-spacing:10.903097px;}
.ws5b{word-spacing:11.058486px;}
.ws41{word-spacing:11.118261px;}
.ws27{word-spacing:11.237813px;}
.ws124{word-spacing:11.297588px;}
.ws186{word-spacing:11.404427px;}
.ws98{word-spacing:11.417139px;}
.ws16c{word-spacing:11.476915px;}
.ws114{word-spacing:11.536691px;}
.ws19b{word-spacing:11.572585px;}
.ws167{word-spacing:11.596466px;}
.ws43{word-spacing:11.656242px;}
.ws19e{word-spacing:11.668226px;}
.ws12a{word-spacing:11.775793px;}
.ws83{word-spacing:11.835569px;}
.ws125{word-spacing:11.895344px;}
.ws1d2{word-spacing:11.907329px;}
.ws4f{word-spacing:11.955120px;}
.ws0{word-spacing:11.955150px;}
.ws9d{word-spacing:12.014895px;}
.ws17d{word-spacing:12.098612px;}
.wsa{word-spacing:12.104640px;}
.ws9f{word-spacing:12.134447px;}
.ws17a{word-spacing:12.146432px;}
.ws162{word-spacing:12.253998px;}
.wsd9{word-spacing:12.313773px;}
.ws168{word-spacing:12.433324px;}
.ws184{word-spacing:12.481177px;}
.ws1f{word-spacing:12.493100px;}
.ws1c{word-spacing:12.612651px;}
.ws1be{word-spacing:12.624638px;}
.ws179{word-spacing:12.672427px;}
.ws197{word-spacing:12.815921px;}
.ws126{word-spacing:12.911529px;}
.ws3f{word-spacing:12.971305px;}
.wse{word-spacing:13.019213px;}
.ws53{word-spacing:13.031080px;}
.ws189{word-spacing:13.055024px;}
.wsb1{word-spacing:13.090856px;}
.ws52{word-spacing:13.150632px;}
.ws19d{word-spacing:13.150665px;}
.ws1b3{word-spacing:13.198486px;}
.ws33{word-spacing:13.210407px;}
.ws1cf{word-spacing:13.294127px;}
.ws134{word-spacing:13.329958px;}
.ws2b{word-spacing:13.437589px;}
.ws11d{word-spacing:13.449510px;}
.ws17f{word-spacing:13.581050px;}
.wsde{word-spacing:13.628836px;}
.ws7d{word-spacing:13.688612px;}
.wsaa{word-spacing:13.808163px;}
.ws16{word-spacing:13.826189px;}
.ws26{word-spacing:13.867939px;}
.ws46{word-spacing:13.927714px;}
.ws6{word-spacing:13.987584px;}
.ws180{word-spacing:14.011436px;}
.wsa4{word-spacing:14.047266px;}
.ws1a0{word-spacing:14.059256px;}
.ws132{word-spacing:14.107041px;}
.ws131{word-spacing:14.122500px;}
.ws16a{word-spacing:14.166817px;}
.ws1b9{word-spacing:14.202718px;}
.ws165{word-spacing:14.346144px;}
.ws164{word-spacing:14.405919px;}
.ws1c2{word-spacing:14.633104px;}
.wsd4{word-spacing:14.645022px;}
.wsd6{word-spacing:14.654136px;}
.ws11c{word-spacing:14.704797px;}
.wsab{word-spacing:14.764573px;}
.wsfb{word-spacing:14.798136px;}
.ws4b{word-spacing:14.824348px;}
.ws24{word-spacing:14.884124px;}
.ws117{word-spacing:15.063451px;}
.ws1b0{word-spacing:15.063489px;}
.ws1d4{word-spacing:15.111310px;}
.ws15d{word-spacing:15.242778px;}
.ws64{word-spacing:15.302553px;}
.ws6a{word-spacing:15.422104px;}
.ws144{word-spacing:15.541656px;}
.ws1ce{word-spacing:15.541695px;}
.ws1ab{word-spacing:15.637336px;}
.ws19a{word-spacing:15.828619px;}
.ws95{word-spacing:15.840534px;}
.ws11{word-spacing:15.870528px;}
.ws42{word-spacing:15.900309px;}
.ws18f{word-spacing:15.924260px;}
.ws17b{word-spacing:15.972080px;}
.ws175{word-spacing:16.139412px;}
.ws120{word-spacing:16.199187px;}
.ws1bc{word-spacing:16.211183px;}
.ws198{word-spacing:16.259004px;}
.ws7b{word-spacing:16.318738px;}
.ws1df{word-spacing:16.354645px;}
.ws2d{word-spacing:16.402466px;}
.ws1d{word-spacing:16.438290px;}
.ws7c{word-spacing:16.498065px;}
.wsb6{word-spacing:16.530417px;}
.wsca{word-spacing:16.557841px;}
.ws174{word-spacing:16.677392px;}
.ws188{word-spacing:16.689389px;}
.ws142{word-spacing:16.790433px;}
.ws20{word-spacing:16.796943px;}
.wsd7{word-spacing:16.856719px;}
.ws7e{word-spacing:16.916494px;}
.ws79{word-spacing:16.976270px;}
.ws171{word-spacing:17.036046px;}
.ws23{word-spacing:17.095821px;}
.ws12c{word-spacing:17.275148px;}
.ws16d{word-spacing:17.334924px;}
.ws15e{word-spacing:17.394699px;}
.wsa2{word-spacing:17.454475px;}
.ws194{word-spacing:17.454519px;}
.ws97{word-spacing:17.514250px;}
.ws13c{word-spacing:17.528136px;}
.ws1cc{word-spacing:17.597981px;}
.ws57{word-spacing:17.693577px;}
.ws56{word-spacing:17.699837px;}
.ws1db{word-spacing:17.789263px;}
.ws196{word-spacing:17.837084px;}
.ws6c{word-spacing:17.872904px;}
.ws18{word-spacing:17.932680px;}
.wsa3{word-spacing:18.231558px;}
.ws1d0{word-spacing:18.410931px;}
.ws87{word-spacing:18.709762px;}
.wsac{word-spacing:18.829314px;}
.ws18b{word-spacing:18.841316px;}
.ws1a4{word-spacing:19.080419px;}
.ws1e{word-spacing:19.128192px;}
.wsb2{word-spacing:19.187967px;}
.ws1a7{word-spacing:19.367343px;}
.ws1c0{word-spacing:19.415164px;}
.ws6f{word-spacing:19.785723px;}
.ws121{word-spacing:19.845499px;}
.ws183{word-spacing:20.132473px;}
.wsc6{word-spacing:20.443174px;}
.wsc7{word-spacing:20.443255px;}
.ws68{word-spacing:20.622581px;}
.ws67{word-spacing:20.641120px;}
.ws16f{word-spacing:20.682357px;}
.ws1ac{word-spacing:20.849782px;}
.ws49{word-spacing:20.861684px;}
.wsf1{word-spacing:20.865187px;}
.ws1a1{word-spacing:20.897602px;}
.wsbb{word-spacing:20.921459px;}
.ws170{word-spacing:21.220337px;}
.ws1a8{word-spacing:21.280167px;}
.ws176{word-spacing:21.399664px;}
.wsbc{word-spacing:21.877869px;}
.ws1c7{word-spacing:21.949655px;}
.ws8b{word-spacing:21.997420px;}
.ws99{word-spacing:22.057196px;}
.ws75{word-spacing:22.356074px;}
.ws12d{word-spacing:22.894054px;}
.ws3b{word-spacing:22.953830px;}
.ws187{word-spacing:23.336453px;}
.ws19c{word-spacing:23.479915px;}
.ws6b{word-spacing:23.850464px;}
.ws3a{word-spacing:24.567771px;}
.ws166{word-spacing:24.986200px;}
.ws96{word-spacing:25.344854px;}
.ws88{word-spacing:26.002385px;}
.ws1ba{word-spacing:26.062227px;}
.ws72{word-spacing:26.121937px;}
.ws2e{word-spacing:26.253509px;}
.ws1c3{word-spacing:26.588254px;}
.ws15{word-spacing:27.275789px;}
.ws1bd{word-spacing:28.118513px;}
.ws11e{word-spacing:28.349896px;}
.ws1d6{word-spacing:28.357616px;}
.wsc1{word-spacing:28.632512px;}
.ws11b{word-spacing:29.828024px;}
.wsc4{word-spacing:30.126902px;}
.wsc3{word-spacing:30.139523px;}
.wsc2{word-spacing:30.140134px;}
.ws136{word-spacing:30.425780px;}
.wsa5{word-spacing:31.441965px;}
.ws13b{word-spacing:32.405027px;}
.wsf5{word-spacing:33.055906px;}
.ws13a{word-spacing:37.897729px;}
.wsc5{word-spacing:40.808133px;}
.ws14b{word-spacing:44.754941px;}
.ws157{word-spacing:44.756137px;}
.ws156{word-spacing:44.757797px;}
.ws152{word-spacing:44.760730px;}
.wsf2{word-spacing:44.831699px;}
.wscc{word-spacing:44.832412px;}
.ws14e{word-spacing:53.706997px;}
.ws154{word-spacing:53.707006px;}
.ws151{word-spacing:53.709946px;}
.ws150{word-spacing:57.681449px;}
.ws14f{word-spacing:57.685905px;}
.ws158{word-spacing:57.686042px;}
.ws153{word-spacing:61.657784px;}
.ws155{word-spacing:71.612869px;}
.ws148{word-spacing:72.620004px;}
.ws146{word-spacing:94.353871px;}
.ws145{word-spacing:97.204940px;}
.ws149{word-spacing:108.412926px;}
.ws103{word-spacing:180.635236px;}
.ws106{word-spacing:182.583119px;}
.ws102{word-spacing:193.746594px;}
.ws104{word-spacing:248.418137px;}
._f{margin-left:-33.985799px;}
._12{margin-left:-32.703536px;}
._11{margin-left:-8.547896px;}
._6{margin-left:-7.262784px;}
._0{margin-left:-6.216678px;}
._5{margin-left:-4.949453px;}
._3{margin-left:-3.496896px;}
._1{margin-left:-1.912824px;}
._d{width:1.055399px;}
._7{width:2.988780px;}
._10{width:4.305819px;}
._13{width:5.313678px;}
._17{width:6.366919px;}
._2{width:9.144845px;}
._2d{width:13.126810px;}
._16{width:16.587984px;}
._4{width:18.237658px;}
._14{width:19.666172px;}
._e{width:23.298941px;}
._b{width:24.567771px;}
._30{width:26.361039px;}
._9{width:29.887799px;}
._2f{width:33.354800px;}
._8{width:35.865359px;}
._c{width:40.228983px;}
._15{width:41.326550px;}
._31{width:46.866073px;}
._2a{width:57.163774px;}
._23{width:58.688615px;}
._2b{width:62.661331px;}
._22{width:63.661717px;}
._25{width:66.147595px;}
._2c{width:70.123930px;}
._24{width:72.095785px;}
._27{width:75.586865px;}
._21{width:78.609626px;}
._26{width:89.998862px;}
._29{width:93.489872px;}
._1f{width:95.242642px;}
._18{width:97.789035px;}
._28{width:98.952876px;}
._1e{width:103.420531px;}
._20{width:107.254373px;}
._19{width:112.991657px;}
._1d{width:127.543828px;}
._1a{width:159.735921px;}
._1c{width:174.271229px;}
._1b{width:191.243023px;}
._2e{width:465.193220px;}
._a{width:556.860000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887799px;}
.fsa{font-size:33.523163px;}
.fsd{font-size:35.806152px;}
.fs5{font-size:35.865600px;}
.fsb{font-size:40.081729px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:42.000000px;}
.fsc{font-size:44.856679px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775599px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:95.641199px;}
.y0{bottom:0.000000px;}
.y130{bottom:17.161311px;}
.y65{bottom:32.862000px;}
.y132{bottom:37.022450px;}
.y133{bottom:55.908620px;}
.y134{bottom:74.794789px;}
.y12e{bottom:78.863247px;}
.y12f{bottom:79.166077px;}
.y64{bottom:90.000000px;}
.y131{bottom:119.735973px;}
.y63{bottom:129.600000px;}
.y12c{bottom:153.074989px;}
.y1cc{bottom:156.046420px;}
.y60{bottom:156.046489px;}
.y9a{bottom:156.046500px;}
.y109{bottom:156.046501px;}
.y181{bottom:156.046503px;}
.y129{bottom:156.046521px;}
.yd5{bottom:156.046523px;}
.y34{bottom:156.046530px;}
.y205{bottom:156.048008px;}
.y204{bottom:169.497007px;}
.y33{bottom:169.497030px;}
.y1cb{bottom:173.978920px;}
.y5f{bottom:173.978989px;}
.y99{bottom:173.979000px;}
.yd4{bottom:173.979023px;}
.y108{bottom:173.980501px;}
.y180{bottom:173.980503px;}
.y128{bottom:173.980521px;}
.y203{bottom:182.946007px;}
.y32{bottom:182.946029px;}
.yd3{bottom:191.911523px;}
.y1ca{bottom:191.912920px;}
.y5e{bottom:191.912989px;}
.y98{bottom:191.913000px;}
.y107{bottom:191.913001px;}
.y17f{bottom:191.913003px;}
.y127{bottom:191.913021px;}
.y24c{bottom:195.433557px;}
.y31{bottom:196.396529px;}
.y14b{bottom:196.458020px;}
.y202{bottom:196.705507px;}
.y12d{bottom:201.661477px;}
.y19c{bottom:208.286948px;}
.y24b{bottom:208.882556px;}
.y1c9{bottom:209.845420px;}
.y5d{bottom:209.845489px;}
.y17e{bottom:209.845503px;}
.y126{bottom:209.845521px;}
.y30{bottom:209.845529px;}
.yd2{bottom:209.872523px;}
.y201{bottom:210.156007px;}
.y97{bottom:210.514500px;}
.y105{bottom:214.919998px;}
.y24a{bottom:222.331556px;}
.y2f{bottom:223.294528px;}
.y14a{bottom:223.506020px;}
.y200{bottom:223.605006px;}
.y103{bottom:225.171007px;}
.y19b{bottom:226.219448px;}
.y1c8{bottom:227.777920px;}
.y5c{bottom:227.777989px;}
.y17d{bottom:227.778003px;}
.y125{bottom:227.778021px;}
.yd1{bottom:227.805023px;}
.y96{bottom:228.448500px;}
.y104{bottom:231.220507px;}
.y249{bottom:235.782056px;}
.y2e{bottom:236.745028px;}
.y1ff{bottom:237.364506px;}
.y149{bottom:241.438520px;}
.y5b{bottom:245.710489px;}
.y17c{bottom:245.710503px;}
.y124{bottom:245.710521px;}
.y1c7{bottom:245.770420px;}
.y95{bottom:246.381000px;}
.y248{bottom:249.231055px;}
.y2d{bottom:250.194027px;}
.yd0{bottom:250.543523px;}
.y1fe{bottom:250.813506px;}
.y19a{bottom:252.221947px;}
.y102{bottom:257.308506px;}
.y148{bottom:259.371020px;}
.y247{bottom:262.681555px;}
.y5a{bottom:263.642989px;}
.y2c{bottom:263.643027px;}
.y17b{bottom:263.644503px;}
.y123{bottom:263.644521px;}
.y1c6{bottom:263.702920px;}
.y1fd{bottom:264.264006px;}
.y94{bottom:264.313500px;}
.y246{bottom:276.130555px;}
.y147{bottom:277.303520px;}
.y1fc{bottom:278.023506px;}
.ycf{bottom:278.803523px;}
.y2b{bottom:281.313027px;}
.y59{bottom:281.575489px;}
.y122{bottom:281.577021px;}
.y1c5{bottom:281.635420px;}
.y106{bottom:281.800500px;}
.y93{bottom:282.246000px;}
.y100{bottom:288.539998px;}
.y101{bottom:288.990005px;}
.y245{bottom:289.579554px;}
.y2a{bottom:291.126027px;}
.y1fb{bottom:291.472505px;}
.y17a{bottom:294.625510px;}
.y146{bottom:295.236020px;}
.yce{bottom:296.736023px;}
.y179{bottom:299.508010px;}
.y58{bottom:299.509489px;}
.y121{bottom:299.509521px;}
.y1c4{bottom:299.567920px;}
.y92{bottom:300.178500px;}
.y244{bottom:303.030054px;}
.y1fa{bottom:304.921504px;}
.y29{bottom:308.794526px;}
.y145{bottom:313.170020px;}
.ycd{bottom:314.668523px;}
.yfe{bottom:316.186498px;}
.y243{bottom:316.479053px;}
.y178{bottom:317.442010px;}
.y120{bottom:317.442021px;}
.y1c3{bottom:317.500420px;}
.y57{bottom:317.852989px;}
.y91{bottom:318.112500px;}
.y1f9{bottom:318.681004px;}
.y242{bottom:329.928053px;}
.y144{bottom:331.102520px;}
.y1f8{bottom:332.131504px;}
.ycc{bottom:332.601023px;}
.yfb{bottom:333.818997px;}
.yff{bottom:333.818998px;}
.y1c2{bottom:335.432920px;}
.y56{bottom:335.785489px;}
.y90{bottom:336.714000px;}
.y28{bottom:338.428526px;}
.y177{bottom:340.179010px;}
.y241{bottom:343.378553px;}
.y11f{bottom:344.230519px;}
.y1f7{bottom:345.580504px;}
.yfd{bottom:348.016497px;}
.ycb{bottom:350.533523px;}
.yfc{bottom:352.498497px;}
.y1c1{bottom:353.366920px;}
.y143{bottom:353.580019px;}
.y55{bottom:353.719489px;}
.y8f{bottom:354.648000px;}
.y27{bottom:356.361026px;}
.y240{bottom:356.827552px;}
.y1f6{bottom:359.340004px;}
.y11e{bottom:362.163019px;}
.y176{bottom:368.433010px;}
.yca{bottom:368.467523px;}
.y23f{bottom:370.278052px;}
.y1c0{bottom:371.299420px;}
.y54{bottom:371.651989px;}
.y8e{bottom:372.580500px;}
.y1f5{bottom:372.789003px;}
.y26{bottom:374.293526px;}
.y142{bottom:376.059019px;}
.y11c{bottom:378.402020px;}
.y23e{bottom:383.727052px;}
.y1f4{bottom:386.239503px;}
.y175{bottom:386.365510px;}
.yc9{bottom:386.400023px;}
.yfa{bottom:386.713497px;}
.y1bf{bottom:389.231920px;}
.y53{bottom:389.584489px;}
.y8d{bottom:390.513000px;}
.y25{bottom:392.226026px;}
.y116{bottom:396.032990px;}
.y11d{bottom:396.033020px;}
.y23d{bottom:397.176051px;}
.y119{bottom:399.194990px;}
.y1f3{bottom:399.999003px;}
.y141{bottom:403.105519px;}
.y174{bottom:404.299510px;}
.yc8{bottom:404.332523px;}
.yf9{bottom:404.645997px;}
.y1be{bottom:407.164420px;}
.y118{bottom:408.160490px;}
.y8c{bottom:408.445500px;}
.y24{bottom:410.160026px;}
.y11b{bottom:410.230520px;}
.y23c{bottom:410.626551px;}
.y1f2{bottom:413.448003px;}
.y52{bottom:413.665489px;}
.y11a{bottom:414.714020px;}
.y117{bottom:417.127490px;}
.y140{bottom:421.039519px;}
.y173{bottom:422.232010px;}
.yc7{bottom:422.265023px;}
.yf8{bottom:422.578497px;}
.y23b{bottom:424.075550px;}
.y1bd{bottom:425.096920px;}
.y8b{bottom:426.378000px;}
.y1f1{bottom:426.897002px;}
.y23{bottom:428.932526px;}
.y23a{bottom:437.524550px;}
.y51{bottom:438.776988px;}
.y13f{bottom:438.972019px;}
.y172{bottom:440.191510px;}
.yc6{bottom:440.197523px;}
.y1f0{bottom:440.347502px;}
.yf7{bottom:440.512497px;}
.y1bc{bottom:443.089420px;}
.y8a{bottom:444.310500px;}
.y22{bottom:446.865026px;}
.y239{bottom:450.975050px;}
.y115{bottom:453.479990px;}
.y1ef{bottom:454.107002px;}
.y13e{bottom:456.904519px;}
.y171{bottom:458.125510px;}
.yc5{bottom:458.130023px;}
.yf6{bottom:458.444997px;}
.y1bb{bottom:461.021920px;}
.y89{bottom:462.244500px;}
.y199{bottom:464.336944px;}
.y238{bottom:464.424049px;}
.y21{bottom:464.797526px;}
.y1ee{bottom:467.556002px;}
.y50{bottom:470.296488px;}
.y114{bottom:471.412490px;}
.y13d{bottom:474.837019px;}
.y170{bottom:476.058010px;}
.yc4{bottom:476.064023px;}
.yf5{bottom:476.377497px;}
.y237{bottom:477.873049px;}
.y1ba{bottom:478.954420px;}
.y88{bottom:480.177000px;}
.y1ed{bottom:481.005001px;}
.y198{bottom:482.269444px;}
.y20{bottom:482.730026px;}
.y4f{bottom:488.228988px;}
.y113{bottom:489.344990px;}
.y236{bottom:491.323549px;}
.y13c{bottom:492.769519px;}
.yc3{bottom:493.996523px;}
.y16f{bottom:494.017509px;}
.yf4{bottom:494.309997px;}
.y1ec{bottom:494.455501px;}
.y1b9{bottom:496.886920px;}
.y87{bottom:498.109500px;}
.y1f{bottom:500.664026px;}
.y235{bottom:504.772548px;}
.y4e{bottom:506.161488px;}
.y112{bottom:507.278990px;}
.y1eb{bottom:508.215001px;}
.y197{bottom:508.271942px;}
.y13b{bottom:510.702019px;}
.yc2{bottom:511.929023px;}
.y16e{bottom:511.951509px;}
.yf3{bottom:512.242497px;}
.y1b8{bottom:514.820920px;}
.y86{bottom:516.042000px;}
.y234{bottom:518.223048px;}
.y1e{bottom:518.596526px;}
.y1ea{bottom:521.664000px;}
.y4d{bottom:524.095488px;}
.y111{bottom:525.211490px;}
.y13a{bottom:528.636019px;}
.yc1{bottom:529.861523px;}
.y16d{bottom:529.911008px;}
.yf2{bottom:530.212496px;}
.y233{bottom:531.672047px;}
.y1b7{bottom:532.753420px;}
.y1e9{bottom:535.113000px;}
.y1d{bottom:536.529026px;}
.y85{bottom:541.027499px;}
.y110{bottom:543.143990px;}
.y232{bottom:545.121047px;}
.y4c{bottom:545.885988px;}
.y139{bottom:546.568519px;}
.yc0{bottom:547.794023px;}
.y16c{bottom:547.843508px;}
.yf1{bottom:548.144996px;}
.y1b6{bottom:550.685920px;}
.y1c{bottom:554.461526px;}
.y231{bottom:558.571547px;}
.y1e8{bottom:560.651998px;}
.y10f{bottom:561.076490px;}
.ybf{bottom:561.837023px;}
.y4b{bottom:563.818488px;}
.y138{bottom:564.501019px;}
.ybe{bottom:565.728023px;}
.y16b{bottom:565.776008px;}
.yf0{bottom:566.077496px;}
.y1b5{bottom:568.618420px;}
.y230{bottom:572.020546px;}
.y1b{bottom:572.394026px;}
.y84{bottom:574.742998px;}
.y10e{bottom:578.782490px;}
.y4a{bottom:581.750988px;}
.ybd{bottom:583.660523px;}
.y16a{bottom:583.737008px;}
.yef{bottom:584.009996px;}
.y22f{bottom:585.469546px;}
.y137{bottom:586.978519px;}
.y1a{bottom:590.326526px;}
.y1b4{bottom:591.464920px;}
.y83{bottom:592.675498px;}
.y1e7{bottom:593.411998px;}
.y10d{bottom:596.716490px;}
.y22e{bottom:598.920046px;}
.y49{bottom:599.683488px;}
.ybc{bottom:601.593023px;}
.y169{bottom:601.669508px;}
.yee{bottom:606.776996px;}
.y19{bottom:608.260526px;}
.y82{bottom:610.609498px;}
.y1e6{bottom:611.345998px;}
.y22d{bottom:612.369045px;}
.y48{bottom:617.617488px;}
.ybb{bottom:619.554023px;}
.y168{bottom:619.602008px;}
.y1b3{bottom:619.987419px;}
.y22c{bottom:625.819545px;}
.y18{bottom:626.193026px;}
.y81{bottom:628.541998px;}
.y1e5{bottom:629.278498px;}
.yba{bottom:633.597023px;}
.yed{bottom:635.102996px;}
.y47{bottom:635.549988px;}
.yb9{bottom:637.486523px;}
.y167{bottom:637.563008px;}
.y1b2{bottom:637.919919px;}
.y136{bottom:639.049519px;}
.y22b{bottom:639.268544px;}
.y80{bottom:646.474498px;}
.y1e4{bottom:647.210998px;}
.y10c{bottom:648.101990px;}
.y22a{bottom:652.717544px;}
.yec{bottom:653.035496px;}
.y46{bottom:653.482488px;}
.y17{bottom:653.874026px;}
.yb8{bottom:655.419023px;}
.y166{bottom:655.495508px;}
.y1b1{bottom:655.852419px;}
.y7f{bottom:664.406998px;}
.y135{bottom:665.052017px;}
.y1e3{bottom:665.143498px;}
.y229{bottom:666.168044px;}
.yeb{bottom:670.967996px;}
.y45{bottom:671.414988px;}
.yb7{bottom:673.351523px;}
.y165{bottom:673.428008px;}
.y1b0{bottom:673.784919px;}
.y228{bottom:679.617043px;}
.y7e{bottom:682.339498px;}
.y1e2{bottom:683.075998px;}
.y12b{bottom:684.478498px;}
.yea{bottom:688.901996px;}
.y44{bottom:689.347488px;}
.yb6{bottom:691.284023px;}
.y164{bottom:691.362008px;}
.y1af{bottom:691.718919px;}
.y227{bottom:693.066043px;}
.y16{bottom:693.189025px;}
.y7d{bottom:700.271998px;}
.y1e1{bottom:701.008498px;}
.y226{bottom:706.516543px;}
.ye9{bottom:706.834496px;}
.y43{bottom:707.279988px;}
.y15{bottom:708.133525px;}
.yb5{bottom:709.218023px;}
.y1ae{bottom:709.651419px;}
.y163{bottom:714.099008px;}
.y7c{bottom:718.205998px;}
.y1e0{bottom:718.942498px;}
.y225{bottom:719.965542px;}
.y196{bottom:720.385471px;}
.y14{bottom:723.918024px;}
.ye8{bottom:724.766996px;}
.yb4{bottom:727.150523px;}
.y1ad{bottom:727.583919px;}
.y42{bottom:729.071988px;}
.y224{bottom:733.416042px;}
.y7b{bottom:736.808998px;}
.y1df{bottom:736.874998px;}
.y13{bottom:738.861024px;}
.y162{bottom:742.353008px;}
.ye7{bottom:742.699496px;}
.yb3{bottom:745.083023px;}
.y1ac{bottom:745.516419px;}
.y195{bottom:746.387970px;}
.y223{bottom:746.865041px;}
.y41{bottom:747.004488px;}
.y12{bottom:753.805524px;}
.y7a{bottom:754.741498px;}
.y1de{bottom:754.807498px;}
.y161{bottom:760.285508px;}
.y222{bottom:760.314041px;}
.ye6{bottom:760.667996px;}
.yb2{bottom:763.015523px;}
.y1ab{bottom:763.448919px;}
.y40{bottom:764.936988px;}
.y11{bottom:768.750024px;}
.y79{bottom:772.673998px;}
.y1dd{bottom:772.739998px;}
.y221{bottom:773.764541px;}
.y160{bottom:778.219508px;}
.ye5{bottom:778.600496px;}
.yb1{bottom:780.948023px;}
.y1aa{bottom:781.382919px;}
.y3f{bottom:782.869488px;}
.y10{bottom:783.693024px;}
.y220{bottom:787.213540px;}
.y78{bottom:790.606498px;}
.y1dc{bottom:790.672498px;}
.y15f{bottom:796.152008px;}
.ye4{bottom:796.534496px;}
.yf{bottom:798.637524px;}
.yb0{bottom:798.909023px;}
.y1a9{bottom:799.315419px;}
.y21f{bottom:800.662540px;}
.y3e{bottom:800.801988px;}
.y77{bottom:808.538998px;}
.y1db{bottom:808.604998px;}
.ye{bottom:813.582024px;}
.y15e{bottom:814.084508px;}
.y21e{bottom:814.113040px;}
.ye3{bottom:814.466996px;}
.yaf{bottom:816.841523px;}
.y3d{bottom:819.146987px;}
.y1a8{bottom:822.161919px;}
.y76{bottom:826.471498px;}
.y1da{bottom:826.538998px;}
.y21d{bottom:827.562039px;}
.yd{bottom:828.525024px;}
.yad{bottom:830.659523px;}
.yae{bottom:830.884523px;}
.yac{bottom:831.066023px;}
.y15d{bottom:832.017008px;}
.ye2{bottom:832.399496px;}
.yab{bottom:834.775522px;}
.y3c{bottom:837.079487px;}
.y21c{bottom:841.012539px;}
.yc{bottom:843.469524px;}
.y75{bottom:844.405498px;}
.y1d9{bottom:844.471498px;}
.y15c{bottom:849.949508px;}
.ye1{bottom:850.331996px;}
.y1a7{bottom:850.684418px;}
.yaa{bottom:852.708022px;}
.y21b{bottom:854.461539px;}
.y3b{bottom:855.011987px;}
.yb{bottom:858.414024px;}
.y74{bottom:862.337998px;}
.y1d8{bottom:862.403998px;}
.y15b{bottom:867.882008px;}
.y21a{bottom:867.910538px;}
.ye0{bottom:868.264496px;}
.y1a6{bottom:868.616918px;}
.ya9{bottom:870.640522px;}
.y3a{bottom:872.945987px;}
.ya{bottom:873.357024px;}
.y1d7{bottom:880.336498px;}
.y219{bottom:881.361038px;}
.y15a{bottom:885.843008px;}
.y1a5{bottom:886.549418px;}
.y73{bottom:887.323497px;}
.y9{bottom:888.301524px;}
.ya8{bottom:888.573022px;}
.y39{bottom:890.878487px;}
.y218{bottom:894.810037px;}
.ydf{bottom:896.444996px;}
.y1d6{bottom:898.268998px;}
.y8{bottom:903.246024px;}
.y159{bottom:903.775508px;}
.y12a{bottom:904.040955px;}
.y1a4{bottom:904.481918px;}
.ya7{bottom:906.505522px;}
.y217{bottom:908.259037px;}
.y38{bottom:908.810987px;}
.y1d5{bottom:916.201498px;}
.y7{bottom:918.189023px;}
.y72{bottom:921.038996px;}
.yde{bottom:921.635996px;}
.y158{bottom:921.708008px;}
.y216{bottom:921.709537px;}
.y1a3{bottom:922.414418px;}
.y194{bottom:924.131927px;}
.ya6{bottom:924.439522px;}
.y37{bottom:926.743487px;}
.y6{bottom:933.133523px;}
.y1d4{bottom:934.135498px;}
.y193{bottom:934.202000px;}
.y215{bottom:935.158536px;}
.y71{bottom:938.971496px;}
.y190{bottom:939.013574px;}
.ydd{bottom:939.569996px;}
.y157{bottom:939.642008px;}
.y1a2{bottom:940.346918px;}
.ya5{bottom:942.372022px;}
.y10b{bottom:942.586512px;}
.y192{bottom:944.273247px;}
.y36{bottom:945.088487px;}
.y5{bottom:948.076523px;}
.y214{bottom:948.607536px;}
.y18f{bottom:949.084771px;}
.y1d3{bottom:952.067998px;}
.y191{bottom:954.343320px;}
.y70{bottom:956.903996px;}
.ydc{bottom:957.502496px;}
.y156{bottom:957.574508px;}
.y1a1{bottom:958.280918px;}
.ya4{bottom:960.304522px;}
.y10a{bottom:960.519012px;}
.y213{bottom:962.058036px;}
.y35{bottom:963.020987px;}
.y4{bottom:963.021023px;}
.y18e{bottom:964.861519px;}
.y1d2{bottom:970.000498px;}
.y6f{bottom:974.836496px;}
.y18d{bottom:974.931592px;}
.ydb{bottom:975.434996px;}
.y155{bottom:975.507008px;}
.y212{bottom:975.507035px;}
.y1a0{bottom:976.213418px;}
.y18a{bottom:979.743097px;}
.ya3{bottom:983.113522px;}
.y18c{bottom:985.002770px;}
.y1d1{bottom:987.932998px;}
.y211{bottom:988.957535px;}
.y189{bottom:989.814294px;}
.y6e{bottom:992.770496px;}
.yda{bottom:993.403496px;}
.y154{bottom:993.439508px;}
.y19f{bottom:994.145918px;}
.y18b{bottom:995.072843px;}
.y210{bottom:1002.406534px;}
.y188{bottom:1005.591038px;}
.y6d{bottom:1010.702996px;}
.yd9{bottom:1011.335996px;}
.y153{bottom:1011.372008px;}
.ya2{bottom:1011.372022px;}
.y1d0{bottom:1013.918997px;}
.y20f{bottom:1015.855534px;}
.y19e{bottom:1016.992418px;}
.y3{bottom:1025.433025px;}
.y187{bottom:1027.434016px;}
.yd8{bottom:1029.269996px;}
.ya1{bottom:1029.304522px;}
.y6c{bottom:1029.305996px;}
.y152{bottom:1029.306008px;}
.y20e{bottom:1029.306034px;}
.y19d{bottom:1039.987418px;}
.y20d{bottom:1042.755033px;}
.y186{bottom:1045.366516px;}
.y1cf{bottom:1046.680497px;}
.yd7{bottom:1047.202496px;}
.ya0{bottom:1047.237022px;}
.y6b{bottom:1047.238496px;}
.y151{bottom:1047.238508px;}
.y20c{bottom:1056.204033px;}
.y1ce{bottom:1064.612997px;}
.yd6{bottom:1065.134996px;}
.y6a{bottom:1065.170996px;}
.y150{bottom:1065.171008px;}
.y9f{bottom:1065.171022px;}
.y20b{bottom:1069.654533px;}
.y2{bottom:1072.506025px;}
.y1cd{bottom:1082.545497px;}
.y69{bottom:1083.103496px;}
.y14f{bottom:1083.103508px;}
.y9e{bottom:1083.103522px;}
.y20a{bottom:1083.103532px;}
.y185{bottom:1092.751080px;}
.y209{bottom:1096.554032px;}
.y68{bottom:1101.035996px;}
.y14e{bottom:1101.036008px;}
.y9d{bottom:1101.036022px;}
.y1{bottom:1102.393524px;}
.y184{bottom:1105.927907px;}
.y208{bottom:1110.003031px;}
.y183{bottom:1118.543337px;}
.y67{bottom:1118.968496px;}
.y14d{bottom:1118.968508px;}
.y9c{bottom:1118.968522px;}
.y207{bottom:1123.452031px;}
.y9b{bottom:1136.901022px;}
.y66{bottom:1136.902496px;}
.y14c{bottom:1136.902508px;}
.y206{bottom:1136.902531px;}
.y182{bottom:1142.281494px;}
.y62{bottom:1198.035000px;}
.y61{bottom:1212.435000px;}
.h17{height:2.391024px;}
.h16{height:18.452675px;}
.h21{height:22.785275px;}
.h22{height:23.276317px;}
.h7{height:23.850624px;}
.h26{height:24.634633px;}
.h23{height:27.243050px;}
.h1c{height:28.787846px;}
.h12{height:29.833916px;}
.h24{height:30.861395px;}
.h8{height:32.900573px;}
.hc{height:35.695312px;}
.h1f{height:37.013299px;}
.hb{height:37.125000px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h9{height:40.826734px;}
.h6{height:41.125612px;}
.ha{height:41.484265px;}
.hd{height:43.804688px;}
.h27{height:43.880727px;}
.he{height:44.831699px;}
.hf{height:51.523916px;}
.h15{height:51.529916px;}
.h3{height:55.554699px;}
.h13{height:56.683612px;}
.h1e{height:59.887915px;}
.h18{height:62.625274px;}
.h10{height:66.361916px;}
.h2{height:66.374992px;}
.h14{height:67.087916px;}
.h11{height:67.987916px;}
.h25{height:81.323117px;}
.h1a{height:84.879025px;}
.h19{height:86.679024px;}
.h1b{height:91.963915px;}
.h1d{height:120.243024px;}
.h20{height:215.082076px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:330.481602px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:14.418693px;}
.xc{left:25.500000px;}
.x5{left:81.212984px;}
.x48{left:87.926007px;}
.x46{left:89.622817px;}
.x7{left:93.914981px;}
.x4{left:96.155982px;}
.x2e{left:99.574505px;}
.xd{left:102.151500px;}
.x1c{left:105.950974px;}
.x4e{left:108.601485px;}
.x1{left:109.957500px;}
.x4b{left:116.241005px;}
.x34{left:127.037997px;}
.x4a{left:129.604609px;}
.x17{left:132.029977px;}
.x1e{left:133.826991px;}
.x49{left:135.557251px;}
.x4c{left:139.549496px;}
.x1f{left:145.601989px;}
.x16{left:147.749987px;}
.x30{left:152.153394px;}
.x37{left:169.108757px;}
.x47{left:172.769130px;}
.x3{left:175.420497px;}
.x35{left:178.115990px;}
.x38{left:180.946100px;}
.x21{left:191.423996px;}
.x19{left:199.594477px;}
.x1a{left:200.707477px;}
.x18{left:204.430477px;}
.x6{left:206.501981px;}
.x20{left:209.273988px;}
.x33{left:213.859497px;}
.x1b{left:221.179477px;}
.x2d{left:223.947006px;}
.x31{left:225.395279px;}
.x39{left:226.412864px;}
.x3a{left:229.530843px;}
.x32{left:270.209159px;}
.x36{left:275.523010px;}
.x3b{left:292.447604px;}
.x1d{left:304.569008px;}
.x2{left:307.274997px;}
.x3c{left:342.905098px;}
.x3d{left:353.189080px;}
.x22{left:430.988996px;}
.x15{left:449.199000px;}
.x3e{left:459.410010px;}
.x8{left:470.013000px;}
.x14{left:471.037442px;}
.xe{left:475.542012px;}
.x2c{left:477.673515px;}
.x9{left:484.955999px;}
.x4f{left:497.401476px;}
.xa{left:506.371499px;}
.x23{left:524.078979px;}
.x4d{left:561.783028px;}
.xb{left:589.189494px;}
.x3f{left:593.407090px;}
.x12{left:620.951952px;}
.x24{left:628.440005px;}
.x26{left:644.214023px;}
.x27{left:645.328523px;}
.x25{left:651.313522px;}
.x41{left:661.656507px;}
.x40{left:664.611270px;}
.x29{left:668.290521px;}
.x28{left:673.782021px;}
.x2a{left:692.367021px;}
.xf{left:700.711492px;}
.x43{left:709.619342px;}
.x42{left:715.876405px;}
.x10{left:749.164492px;}
.x45{left:780.784119px;}
.x44{left:788.880170px;}
.x13{left:812.185436px;}
.x2b{left:819.787521px;}
.x11{left:831.950991px;}
@media print{
.v12{vertical-align:-74.917333pt;}
.v10{vertical-align:-48.789333pt;}
.v19{vertical-align:-46.394691pt;}
.vf{vertical-align:-40.815999pt;}
.v1a{vertical-align:-31.045357pt;}
.v2{vertical-align:-15.002667pt;}
.v9{vertical-align:-13.285333pt;}
.v3{vertical-align:-7.968000pt;}
.v17{vertical-align:-1.513211pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.513211pt;}
.vd{vertical-align:7.973333pt;}
.v5{vertical-align:13.189333pt;}
.v7{vertical-align:14.634667pt;}
.va{vertical-align:16.037333pt;}
.v1d{vertical-align:17.107640pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v1b{vertical-align:23.423014pt;}
.v16{vertical-align:26.714666pt;}
.v6{vertical-align:32.469333pt;}
.v8{vertical-align:33.914667pt;}
.ve{vertical-align:35.946665pt;}
.v13{vertical-align:39.221333pt;}
.v1c{vertical-align:44.854864pt;}
.vc{vertical-align:48.725333pt;}
.v14{vertical-align:63.194665pt;}
.vb{vertical-align:74.922667pt;}
.v15{vertical-align:104.757333pt;}
.v11{vertical-align:122.112000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.000058pt;}
.ls0{letter-spacing:0.000125pt;}
.ls51{letter-spacing:0.000273pt;}
.ls5e{letter-spacing:0.000482pt;}
.ls3c{letter-spacing:0.000576pt;}
.ls34{letter-spacing:0.000855pt;}
.ls6c{letter-spacing:0.000865pt;}
.ls49{letter-spacing:0.001014pt;}
.ls5d{letter-spacing:0.001711pt;}
.ls1a{letter-spacing:0.001995pt;}
.ls52{letter-spacing:0.002078pt;}
.lse{letter-spacing:0.002206pt;}
.ls4b{letter-spacing:0.002244pt;}
.ls24{letter-spacing:0.002695pt;}
.ls50{letter-spacing:0.002828pt;}
.ls31{letter-spacing:0.002906pt;}
.ls2c{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004352pt;}
.ls47{letter-spacing:0.004717pt;}
.lsf{letter-spacing:0.006015pt;}
.ls53{letter-spacing:0.006183pt;}
.ls6b{letter-spacing:0.007043pt;}
.ls1d{letter-spacing:0.407455pt;}
.ls6f{letter-spacing:0.412789pt;}
.ls3a{letter-spacing:1.474964pt;}
.ls2a{letter-spacing:1.905799pt;}
.ls30{letter-spacing:1.907708pt;}
.ls60{letter-spacing:2.151919pt;}
.ls5{letter-spacing:2.177630pt;}
.ls4d{letter-spacing:2.282787pt;}
.ls32{letter-spacing:2.332773pt;}
.ls3{letter-spacing:2.635446pt;}
.ls10{letter-spacing:2.651680pt;}
.ls20{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653257pt;}
.ls8{letter-spacing:2.654904pt;}
.ls73{letter-spacing:2.655712pt;}
.ls4{letter-spacing:2.656473pt;}
.ls6e{letter-spacing:2.656501pt;}
.ls26{letter-spacing:2.656575pt;}
.ls7{letter-spacing:2.656693pt;}
.ls23{letter-spacing:2.657014pt;}
.ls9{letter-spacing:2.657325pt;}
.ls4a{letter-spacing:2.658244pt;}
.ls1{letter-spacing:2.658590pt;}
.ls4c{letter-spacing:2.659879pt;}
.ls17{letter-spacing:3.042140pt;}
.lsd{letter-spacing:3.064581pt;}
.ls28{letter-spacing:3.670347pt;}
.ls25{letter-spacing:3.675680pt;}
.ls11{letter-spacing:4.807919pt;}
.ls42{letter-spacing:5.308439pt;}
.ls45{letter-spacing:5.310546pt;}
.ls56{letter-spacing:5.311885pt;}
.ls46{letter-spacing:5.313773pt;}
.ls41{letter-spacing:5.315879pt;}
.ls67{letter-spacing:5.792270pt;}
.ls63{letter-spacing:6.642178pt;}
.ls21{letter-spacing:6.647511pt;}
.ls59{letter-spacing:7.376278pt;}
.ls55{letter-spacing:7.381611pt;}
.ls5c{letter-spacing:7.383044pt;}
.ls2d{letter-spacing:8.850079pt;}
.ls5a{letter-spacing:8.855412pt;}
.ls54{letter-spacing:8.856162pt;}
.ls61{letter-spacing:11.803146pt;}
.ls36{letter-spacing:11.804746pt;}
.ls57{letter-spacing:11.805572pt;}
.ls58{letter-spacing:11.808480pt;}
.ls18{letter-spacing:11.812350pt;}
.ls64{letter-spacing:14.289867pt;}
.ls6d{letter-spacing:14.463879pt;}
.ls19{letter-spacing:14.562079pt;}
.ls35{letter-spacing:14.614152pt;}
.ls62{letter-spacing:14.754905pt;}
.ls4f{letter-spacing:14.757812pt;}
.ls70{letter-spacing:17.413210pt;}
.ls4e{letter-spacing:17.713931pt;}
.ls2b{letter-spacing:18.240575pt;}
.ls16{letter-spacing:19.627146pt;}
.ls12{letter-spacing:19.629572pt;}
.ls15{letter-spacing:19.631383pt;}
.ls13{letter-spacing:19.631652pt;}
.ls38{letter-spacing:20.344240pt;}
.ls3b{letter-spacing:20.373909pt;}
.ls39{letter-spacing:21.072819pt;}
.ls14{letter-spacing:21.228534pt;}
.lsb{letter-spacing:23.122906pt;}
.lsa{letter-spacing:23.143508pt;}
.ls68{letter-spacing:23.315732pt;}
.ls69{letter-spacing:23.854401pt;}
.ls33{letter-spacing:24.920240pt;}
.ls65{letter-spacing:25.239511pt;}
.ls6a{letter-spacing:25.249867pt;}
.ls27{letter-spacing:26.624575pt;}
.ls29{letter-spacing:26.704576pt;}
.ls66{letter-spacing:27.863511pt;}
.ls22{letter-spacing:28.858050pt;}
.ls1c{letter-spacing:30.346317pt;}
.ls1f{letter-spacing:30.347146pt;}
.ls2f{letter-spacing:30.661908pt;}
.ls72{letter-spacing:32.565810pt;}
.ls1b{letter-spacing:32.997907pt;}
.ls5b{letter-spacing:34.416478pt;}
.lsc{letter-spacing:34.937683pt;}
.ls71{letter-spacing:35.221835pt;}
.ls2e{letter-spacing:36.135511pt;}
.ls1e{letter-spacing:36.988845pt;}
.ls3e{letter-spacing:40.071823pt;}
.ls3d{letter-spacing:46.722178pt;}
.ls43{letter-spacing:49.561067pt;}
.ls40{letter-spacing:72.096480pt;}
.ls3f{letter-spacing:78.732845pt;}
.ls44{letter-spacing:78.738175pt;}
.ls37{letter-spacing:174.620740pt;}
.ws8d{word-spacing:-53.133865pt;}
.wscb{word-spacing:-42.359791pt;}
.wscd{word-spacing:-42.066081pt;}
.wsa0{word-spacing:-37.565643pt;}
.ws91{word-spacing:-34.611400pt;}
.wsb7{word-spacing:-28.118362pt;}
.ws89{word-spacing:-25.791178pt;}
.ws8c{word-spacing:-25.738044pt;}
.wsb8{word-spacing:-22.383327pt;}
.wsb5{word-spacing:-22.377992pt;}
.wsee{word-spacing:-21.477205pt;}
.wsea{word-spacing:-21.471872pt;}
.ws90{word-spacing:-19.861454pt;}
.ws13e{word-spacing:-19.846237pt;}
.wsdd{word-spacing:-19.840185pt;}
.wsb4{word-spacing:-18.968736pt;}
.wsf0{word-spacing:-17.934970pt;}
.wsf9{word-spacing:-16.965317pt;}
.wsdb{word-spacing:-13.283466pt;}
.ws19{word-spacing:-13.262246pt;}
.ws140{word-spacing:-12.841365pt;}
.wsef{word-spacing:-11.490655pt;}
.wsdc{word-spacing:-10.716197pt;}
.wsc9{word-spacing:-10.715327pt;}
.ws48{word-spacing:-10.626800pt;}
.ws147{word-spacing:-9.968151pt;}
.wsd2{word-spacing:-9.298400pt;}
.wsff{word-spacing:-8.501208pt;}
.ws107{word-spacing:-8.051974pt;}
.ws14d{word-spacing:-7.956923pt;}
.ws110{word-spacing:-7.937531pt;}
.wsa6{word-spacing:-7.199872pt;}
.wsed{word-spacing:-6.869617pt;}
.ws105{word-spacing:-6.734431pt;}
.ws10b{word-spacing:-4.314542pt;}
.wsf7{word-spacing:-3.958863pt;}
.ws8a{word-spacing:-3.683886pt;}
.wsfe{word-spacing:-3.681529pt;}
.ws1c8{word-spacing:-3.528098pt;}
.wse8{word-spacing:-2.245206pt;}
.wse4{word-spacing:-2.162655pt;}
.ws4e{word-spacing:-1.062677pt;}
.ws74{word-spacing:-1.009543pt;}
.wsa8{word-spacing:-0.850142pt;}
.ws13d{word-spacing:-0.842651pt;}
.ws5c{word-spacing:-0.797008pt;}
.ws8f{word-spacing:-0.743874pt;}
.wsaf{word-spacing:-0.637606pt;}
.ws143{word-spacing:-0.602143pt;}
.ws1bb{word-spacing:-0.510086pt;}
.ws2f{word-spacing:-0.467579pt;}
.ws10{word-spacing:-0.430387pt;}
.ws100{word-spacing:-0.318803pt;}
.wscf{word-spacing:-0.261458pt;}
.ws113{word-spacing:-0.212535pt;}
.ws12{word-spacing:-0.143462pt;}
.ws69{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.042507pt;}
.ws115{word-spacing:-0.011611pt;}
.ws55{word-spacing:0.000000pt;}
.ws1d1{word-spacing:0.042507pt;}
.ws17e{word-spacing:0.170029pt;}
.ws17c{word-spacing:0.184605pt;}
.wsdf{word-spacing:0.277458pt;}
.wse1{word-spacing:0.282795pt;}
.ws1ae{word-spacing:0.297550pt;}
.wsf4{word-spacing:0.371937pt;}
.ws190{word-spacing:0.467579pt;}
.wsf{word-spacing:0.573850pt;}
.ws31{word-spacing:0.595101pt;}
.ws92{word-spacing:0.690740pt;}
.ws60{word-spacing:0.743874pt;}
.wsd5{word-spacing:0.835805pt;}
.wsbd{word-spacing:0.956410pt;}
.wsfc{word-spacing:0.963806pt;}
.ws30{word-spacing:0.977666pt;}
.wsa7{word-spacing:1.009543pt;}
.ws1ca{word-spacing:1.020173pt;}
.ws13f{word-spacing:1.073090pt;}
.ws141{word-spacing:1.115811pt;}
.ws1b4{word-spacing:1.147694pt;}
.wsc{word-spacing:1.195520pt;}
.ws94{word-spacing:1.222079pt;}
.ws34{word-spacing:1.275213pt;}
.ws15b{word-spacing:1.328347pt;}
.ws109{word-spacing:1.381480pt;}
.ws6d{word-spacing:1.434614pt;}
.wsc8{word-spacing:1.540882pt;}
.ws137{word-spacing:1.608135pt;}
.ws135{word-spacing:1.609139pt;}
.ws138{word-spacing:1.616140pt;}
.ws77{word-spacing:1.647150pt;}
.ws5e{word-spacing:1.753418pt;}
.wsf3{word-spacing:1.765049pt;}
.ws1c9{word-spacing:1.785302pt;}
.ws133{word-spacing:1.806551pt;}
.ws9b{word-spacing:1.859685pt;}
.ws181{word-spacing:1.870317pt;}
.ws19f{word-spacing:1.912824pt;}
.ws63{word-spacing:2.019087pt;}
.ws1c1{word-spacing:2.082853pt;}
.ws15c{word-spacing:2.125355pt;}
.ws45{word-spacing:2.231622pt;}
.wsb3{word-spacing:2.284756pt;}
.ws12e{word-spacing:2.285564pt;}
.ws5d{word-spacing:2.337890pt;}
.ws1a5{word-spacing:2.380403pt;}
.ws35{word-spacing:2.391024pt;}
.ws3c{word-spacing:2.444158pt;}
.ws172{word-spacing:2.550426pt;}
.ws123{word-spacing:2.656693pt;}
.ws61{word-spacing:2.816095pt;}
.ws1af{word-spacing:2.819985pt;}
.ws58{word-spacing:2.869229pt;}
.ws70{word-spacing:2.922363pt;}
.ws128{word-spacing:2.975496pt;}
.ws127{word-spacing:2.999751pt;}
.ws3d{word-spacing:3.028630pt;}
.ws28{word-spacing:3.081764pt;}
.ws14c{word-spacing:3.182769pt;}
.ws122{word-spacing:3.188032pt;}
.ws1b6{word-spacing:3.230547pt;}
.wsd8{word-spacing:3.241166pt;}
.ws159{word-spacing:3.294300pt;}
.ws1aa{word-spacing:3.315562pt;}
.ws3e{word-spacing:3.347434pt;}
.ws7a{word-spacing:3.400567pt;}
.ws1c4{word-spacing:3.400576pt;}
.ws18e{word-spacing:3.570605pt;}
.ws78{word-spacing:3.613103pt;}
.ws38{word-spacing:3.666237pt;}
.ws40{word-spacing:3.825638pt;}
.ws192{word-spacing:3.825648pt;}
.ws199{word-spacing:3.868155pt;}
.ws10a{word-spacing:3.878772pt;}
.ws10c{word-spacing:3.879232pt;}
.ws2a{word-spacing:3.931906pt;}
.ws1de{word-spacing:3.937508pt;}
.ws1e0{word-spacing:3.953170pt;}
.ws14a{word-spacing:3.987260pt;}
.ws22{word-spacing:4.038174pt;}
.ws1b1{word-spacing:4.038184pt;}
.ws118{word-spacing:4.091308pt;}
.ws4d{word-spacing:4.144441pt;}
.wsb0{word-spacing:4.197575pt;}
.ws1b7{word-spacing:4.248651pt;}
.ws10f{word-spacing:4.249047pt;}
.ws1d8{word-spacing:4.249264pt;}
.ws112{word-spacing:4.250709pt;}
.ws2c{word-spacing:4.250720pt;}
.ws111{word-spacing:4.255794pt;}
.ws44{word-spacing:4.303843pt;}
.wsfa{word-spacing:4.355016pt;}
.ws9c{word-spacing:4.356977pt;}
.wsf8{word-spacing:4.358135pt;}
.wsbe{word-spacing:4.410111pt;}
.ws93{word-spacing:4.463245pt;}
.ws8{word-spacing:4.590797pt;}
.ws101{word-spacing:4.782080pt;}
.ws193{word-spacing:4.888328pt;}
.ws195{word-spacing:4.930835pt;}
.ws161{word-spacing:4.941449pt;}
.wsba{word-spacing:4.979049pt;}
.ws6e{word-spacing:4.994583pt;}
.ws39{word-spacing:5.047717pt;}
.ws1cb{word-spacing:5.058357pt;}
.ws13{word-spacing:5.069005pt;}
.ws54{word-spacing:5.100851pt;}
.ws17{word-spacing:5.116826pt;}
.ws59{word-spacing:5.153985pt;}
.wsce{word-spacing:5.162543pt;}
.wsb{word-spacing:5.164646pt;}
.ws1da{word-spacing:5.228386pt;}
.ws15a{word-spacing:5.253951pt;}
.ws76{word-spacing:5.260253pt;}
.ws86{word-spacing:5.267021pt;}
.ws85{word-spacing:5.270893pt;}
.ws47{word-spacing:5.299125pt;}
.wsec{word-spacing:5.310948pt;}
.ws84{word-spacing:5.312427pt;}
.ws25{word-spacing:5.313387pt;}
.ws32{word-spacing:5.355907pt;}
.ws65{word-spacing:5.366520pt;}
.wsad{word-spacing:5.458692pt;}
.ws7f{word-spacing:5.472788pt;}
.ws191{word-spacing:5.483429pt;}
.ws173{word-spacing:5.525922pt;}
.ws71{word-spacing:5.579056pt;}
.ws4c{word-spacing:5.685324pt;}
.wsa1{word-spacing:5.738457pt;}
.ws1dc{word-spacing:5.738472pt;}
.ws11f{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws177{word-spacing:5.897859pt;}
.wse6{word-spacing:5.928507pt;}
.wse9{word-spacing:5.943228pt;}
.wse7{word-spacing:5.950993pt;}
.ws14{word-spacing:5.977600pt;}
.wsd{word-spacing:6.025421pt;}
.wseb{word-spacing:6.057261pt;}
.ws18a{word-spacing:6.160027pt;}
.ws18c{word-spacing:6.163544pt;}
.ws119{word-spacing:6.216662pt;}
.ws1cd{word-spacing:6.291066pt;}
.ws51{word-spacing:6.376064pt;}
.ws1a3{word-spacing:6.376080pt;}
.ws16e{word-spacing:6.535465pt;}
.ws1a6{word-spacing:6.631123pt;}
.ws9e{word-spacing:6.641733pt;}
.ws1bf{word-spacing:6.673630pt;}
.ws116{word-spacing:6.694867pt;}
.ws129{word-spacing:6.748001pt;}
.ws7{word-spacing:6.790554pt;}
.ws18d{word-spacing:6.886166pt;}
.ws5f{word-spacing:6.960536pt;}
.ws73{word-spacing:7.013670pt;}
.wsb9{word-spacing:7.059833pt;}
.wsa9{word-spacing:7.066804pt;}
.ws37{word-spacing:7.173072pt;}
.wsbf{word-spacing:7.226206pt;}
.ws1b2{word-spacing:7.226224pt;}
.ws4a{word-spacing:7.279340pt;}
.ws182{word-spacing:7.311238pt;}
.ws81{word-spacing:7.332473pt;}
.ws1c5{word-spacing:7.353746pt;}
.ws9{word-spacing:7.460045pt;}
.ws4{word-spacing:7.507866pt;}
.ws1d9{word-spacing:7.523774pt;}
.ws1b{word-spacing:7.545009pt;}
.ws1d5{word-spacing:7.566282pt;}
.ws12f{word-spacing:7.651277pt;}
.ws9a{word-spacing:7.704410pt;}
.ws62{word-spacing:7.757544pt;}
.ws185{word-spacing:7.778818pt;}
.ws15f{word-spacing:7.810678pt;}
.wse5{word-spacing:7.857899pt;}
.wse3{word-spacing:7.863812pt;}
.ws82{word-spacing:7.916946pt;}
.ws108{word-spacing:7.932565pt;}
.ws130{word-spacing:7.935367pt;}
.ws1ad{word-spacing:7.948846pt;}
.ws8e{word-spacing:7.970080pt;}
.ws12b{word-spacing:8.023214pt;}
.wsd3{word-spacing:8.117209pt;}
.wsd0{word-spacing:8.118002pt;}
.ws1a{word-spacing:8.129481pt;}
.ws5{word-spacing:8.129536pt;}
.ws11a{word-spacing:8.182615pt;}
.wsf6{word-spacing:8.235749pt;}
.ws139{word-spacing:8.322899pt;}
.ws1a9{word-spacing:8.331411pt;}
.wse2{word-spacing:8.448285pt;}
.wse0{word-spacing:8.471232pt;}
.wsfd{word-spacing:8.501418pt;}
.ws1dd{word-spacing:8.501440pt;}
.ws80{word-spacing:8.554552pt;}
.ws1b5{word-spacing:8.586454pt;}
.ws1b8{word-spacing:8.671469pt;}
.wsc0{word-spacing:8.713954pt;}
.ws1d3{word-spacing:8.713976pt;}
.ws5a{word-spacing:8.767088pt;}
.wsd1{word-spacing:8.790028pt;}
.wsae{word-spacing:8.820222pt;}
.ws36{word-spacing:8.926489pt;}
.ws1c6{word-spacing:8.926512pt;}
.ws50{word-spacing:8.979623pt;}
.ws160{word-spacing:9.032757pt;}
.ws1a2{word-spacing:9.054034pt;}
.ws21{word-spacing:9.139025pt;}
.ws178{word-spacing:9.192159pt;}
.ws29{word-spacing:9.351560pt;}
.ws16b{word-spacing:9.404694pt;}
.ws66{word-spacing:9.457828pt;}
.ws163{word-spacing:9.510962pt;}
.ws169{word-spacing:9.564096pt;}
.wsda{word-spacing:9.617230pt;}
.ws10d{word-spacing:9.652367pt;}
.ws10e{word-spacing:9.670363pt;}
.ws1d7{word-spacing:9.691642pt;}
.ws5b{word-spacing:9.829765pt;}
.ws41{word-spacing:9.882899pt;}
.ws27{word-spacing:9.989167pt;}
.ws124{word-spacing:10.042301pt;}
.ws186{word-spacing:10.137268pt;}
.ws98{word-spacing:10.148568pt;}
.ws16c{word-spacing:10.201702pt;}
.ws114{word-spacing:10.254836pt;}
.ws19b{word-spacing:10.286742pt;}
.ws167{word-spacing:10.307970pt;}
.ws43{word-spacing:10.361104pt;}
.ws19e{word-spacing:10.371757pt;}
.ws12a{word-spacing:10.467371pt;}
.ws83{word-spacing:10.520505pt;}
.ws125{word-spacing:10.573639pt;}
.ws1d2{word-spacing:10.584293pt;}
.ws4f{word-spacing:10.626773pt;}
.ws0{word-spacing:10.626800pt;}
.ws9d{word-spacing:10.679907pt;}
.ws17d{word-spacing:10.754322pt;}
.wsa{word-spacing:10.759680pt;}
.ws9f{word-spacing:10.786175pt;}
.ws17a{word-spacing:10.796829pt;}
.ws162{word-spacing:10.892442pt;}
.wsd9{word-spacing:10.945576pt;}
.ws168{word-spacing:11.051844pt;}
.ws184{word-spacing:11.094379pt;}
.ws1f{word-spacing:11.104978pt;}
.ws1c{word-spacing:11.211246pt;}
.ws1be{word-spacing:11.221901pt;}
.ws179{word-spacing:11.264379pt;}
.ws197{word-spacing:11.391930pt;}
.ws126{word-spacing:11.476915pt;}
.ws3f{word-spacing:11.530049pt;}
.wse{word-spacing:11.572634pt;}
.ws53{word-spacing:11.583183pt;}
.ws189{word-spacing:11.604466pt;}
.wsb1{word-spacing:11.636317pt;}
.ws52{word-spacing:11.689450pt;}
.ws19d{word-spacing:11.689480pt;}
.ws1b3{word-spacing:11.731987pt;}
.ws33{word-spacing:11.742584pt;}
.ws1cf{word-spacing:11.817002pt;}
.ws134{word-spacing:11.848852pt;}
.ws2b{word-spacing:11.944523pt;}
.ws11d{word-spacing:11.955120pt;}
.ws17f{word-spacing:12.072045pt;}
.wsde{word-spacing:12.114521pt;}
.ws7d{word-spacing:12.167655pt;}
.wsaa{word-spacing:12.273923pt;}
.ws16{word-spacing:12.289946pt;}
.ws26{word-spacing:12.327057pt;}
.ws46{word-spacing:12.380191pt;}
.ws6{word-spacing:12.433408pt;}
.ws180{word-spacing:12.454610pt;}
.wsa4{word-spacing:12.486458pt;}
.ws1a0{word-spacing:12.497117pt;}
.ws132{word-spacing:12.539592pt;}
.ws131{word-spacing:12.553334pt;}
.ws16a{word-spacing:12.592726pt;}
.ws1b9{word-spacing:12.624638pt;}
.ws165{word-spacing:12.752128pt;}
.ws164{word-spacing:12.805262pt;}
.ws1c2{word-spacing:13.007203pt;}
.wsd4{word-spacing:13.017797pt;}
.wsd6{word-spacing:13.025899pt;}
.ws11c{word-spacing:13.070931pt;}
.wsab{word-spacing:13.124065pt;}
.wsfb{word-spacing:13.153899pt;}
.ws4b{word-spacing:13.177199pt;}
.ws24{word-spacing:13.230332pt;}
.ws117{word-spacing:13.389734pt;}
.ws1b0{word-spacing:13.389768pt;}
.ws1d4{word-spacing:13.432275pt;}
.ws15d{word-spacing:13.549136pt;}
.ws64{word-spacing:13.602270pt;}
.ws6a{word-spacing:13.708537pt;}
.ws144{word-spacing:13.814805pt;}
.ws1ce{word-spacing:13.814840pt;}
.ws1ab{word-spacing:13.899854pt;}
.ws19a{word-spacing:14.069883pt;}
.ws95{word-spacing:14.080474pt;}
.ws11{word-spacing:14.107136pt;}
.ws42{word-spacing:14.133608pt;}
.ws18f{word-spacing:14.154898pt;}
.ws17b{word-spacing:14.197405pt;}
.ws175{word-spacing:14.346144pt;}
.ws120{word-spacing:14.399278pt;}
.ws1bc{word-spacing:14.409941pt;}
.ws198{word-spacing:14.452448pt;}
.ws7b{word-spacing:14.505545pt;}
.ws1df{word-spacing:14.537462pt;}
.ws2d{word-spacing:14.579970pt;}
.ws1d{word-spacing:14.611813pt;}
.ws7c{word-spacing:14.664947pt;}
.wsb6{word-spacing:14.693704pt;}
.wsca{word-spacing:14.718081pt;}
.ws174{word-spacing:14.824348pt;}
.ws188{word-spacing:14.835013pt;}
.ws142{word-spacing:14.924830pt;}
.ws20{word-spacing:14.930616pt;}
.wsd7{word-spacing:14.983750pt;}
.ws7e{word-spacing:15.036884pt;}
.ws79{word-spacing:15.090018pt;}
.ws171{word-spacing:15.143152pt;}
.ws23{word-spacing:15.196285pt;}
.ws12c{word-spacing:15.355687pt;}
.ws16d{word-spacing:15.408821pt;}
.ws15e{word-spacing:15.461955pt;}
.wsa2{word-spacing:15.515089pt;}
.ws194{word-spacing:15.515128pt;}
.ws97{word-spacing:15.568223pt;}
.ws13c{word-spacing:15.580565pt;}
.ws1cc{word-spacing:15.642650pt;}
.ws57{word-spacing:15.727624pt;}
.ws56{word-spacing:15.733188pt;}
.ws1db{word-spacing:15.812678pt;}
.ws196{word-spacing:15.855186pt;}
.ws6c{word-spacing:15.887026pt;}
.ws18{word-spacing:15.940160pt;}
.wsa3{word-spacing:16.205829pt;}
.ws1d0{word-spacing:16.365272pt;}
.ws87{word-spacing:16.630900pt;}
.wsac{word-spacing:16.737168pt;}
.ws18b{word-spacing:16.747837pt;}
.ws1a4{word-spacing:16.960373pt;}
.ws1e{word-spacing:17.002837pt;}
.wsb2{word-spacing:17.055971pt;}
.ws1a7{word-spacing:17.215416pt;}
.ws1c0{word-spacing:17.257923pt;}
.ws6f{word-spacing:17.587309pt;}
.ws121{word-spacing:17.640443pt;}
.ws183{word-spacing:17.895531pt;}
.wsc6{word-spacing:18.171710pt;}
.wsc7{word-spacing:18.171782pt;}
.ws68{word-spacing:18.331184pt;}
.ws67{word-spacing:18.347663pt;}
.ws16f{word-spacing:18.384317pt;}
.ws1ac{word-spacing:18.533139pt;}
.ws49{word-spacing:18.543719pt;}
.wsf1{word-spacing:18.546833pt;}
.ws1a1{word-spacing:18.575646pt;}
.wsbb{word-spacing:18.596853pt;}
.ws170{word-spacing:18.862522pt;}
.ws1a8{word-spacing:18.915704pt;}
.ws176{word-spacing:19.021924pt;}
.wsbc{word-spacing:19.446995pt;}
.ws1c7{word-spacing:19.510805pt;}
.ws8b{word-spacing:19.553262pt;}
.ws99{word-spacing:19.606396pt;}
.ws75{word-spacing:19.872066pt;}
.ws12d{word-spacing:20.350270pt;}
.ws3b{word-spacing:20.403404pt;}
.ws187{word-spacing:20.743514pt;}
.ws19c{word-spacing:20.871035pt;}
.ws6b{word-spacing:21.200412pt;}
.ws3a{word-spacing:21.838019pt;}
.ws166{word-spacing:22.209956pt;}
.ws96{word-spacing:22.528759pt;}
.ws88{word-spacing:23.113231pt;}
.ws1ba{word-spacing:23.166424pt;}
.ws72{word-spacing:23.219499pt;}
.ws2e{word-spacing:23.336453pt;}
.ws1c3{word-spacing:23.634003pt;}
.ws15{word-spacing:24.245146pt;}
.ws1bd{word-spacing:24.994234pt;}
.ws11e{word-spacing:25.199907pt;}
.ws1d6{word-spacing:25.206770pt;}
.wsc1{word-spacing:25.451122pt;}
.ws11b{word-spacing:26.513799pt;}
.wsc4{word-spacing:26.779468pt;}
.wsc3{word-spacing:26.790687pt;}
.wsc2{word-spacing:26.791230pt;}
.ws136{word-spacing:27.045137pt;}
.wsa5{word-spacing:27.948413pt;}
.ws13b{word-spacing:28.804469pt;}
.wsf5{word-spacing:29.383028pt;}
.ws13a{word-spacing:33.686871pt;}
.wsc5{word-spacing:36.273896pt;}
.ws14b{word-spacing:39.782170pt;}
.ws157{word-spacing:39.783233pt;}
.ws156{word-spacing:39.784709pt;}
.ws152{word-spacing:39.787316pt;}
.wsf2{word-spacing:39.850399pt;}
.wscc{word-spacing:39.851033pt;}
.ws14e{word-spacing:47.739553pt;}
.ws154{word-spacing:47.739561pt;}
.ws151{word-spacing:47.742174pt;}
.ws150{word-spacing:51.272400pt;}
.ws14f{word-spacing:51.276360pt;}
.ws158{word-spacing:51.276482pt;}
.ws153{word-spacing:54.806919pt;}
.ws155{word-spacing:63.655883pt;}
.ws148{word-spacing:64.551115pt;}
.ws146{word-spacing:83.870107pt;}
.ws145{word-spacing:86.404391pt;}
.ws149{word-spacing:96.367045pt;}
.ws103{word-spacing:160.564654pt;}
.ws106{word-spacing:162.296106pt;}
.ws102{word-spacing:172.219195pt;}
.ws104{word-spacing:220.816122pt;}
._f{margin-left:-30.209599pt;}
._12{margin-left:-29.069810pt;}
._11{margin-left:-7.598130pt;}
._6{margin-left:-6.455808pt;}
._0{margin-left:-5.525936pt;}
._5{margin-left:-4.399514pt;}
._3{margin-left:-3.108352pt;}
._1{margin-left:-1.700288pt;}
._d{width:0.938132pt;}
._7{width:2.656693pt;}
._10{width:3.827395pt;}
._13{width:4.723270pt;}
._17{width:5.659483pt;}
._2{width:8.128751pt;}
._2d{width:11.668275pt;}
._16{width:14.744875pt;}
._4{width:16.211251pt;}
._14{width:17.481042pt;}
._e{width:20.710170pt;}
._b{width:21.838019pt;}
._30{width:23.432035pt;}
._9{width:26.566933pt;}
._2f{width:29.648711pt;}
._8{width:31.880319pt;}
._c{width:35.759096pt;}
._15{width:36.734711pt;}
._31{width:41.658732pt;}
._2a{width:50.812243pt;}
._23{width:52.167657pt;}
._2b{width:55.698960pt;}
._22{width:56.588193pt;}
._25{width:58.797862pt;}
._2c{width:62.332382pt;}
._24{width:64.085143pt;}
._27{width:67.188324pt;}
._21{width:69.875223pt;}
._26{width:79.998988pt;}
._29{width:83.102109pt;}
._1f{width:84.660126pt;}
._18{width:86.923587pt;}
._28{width:87.958112pt;}
._1e{width:91.929361pt;}
._20{width:95.337221pt;}
._19{width:100.437028pt;}
._1d{width:113.372292pt;}
._1a{width:141.987486pt;}
._1c{width:154.907759pt;}
._1b{width:169.993799pt;}
._2e{width:413.505084pt;}
._a{width:494.986667pt;}
.fs9{font-size:26.566933pt;}
.fsa{font-size:29.798367pt;}
.fsd{font-size:31.827691pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:35.628204pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:37.333333pt;}
.fsc{font-size:39.872604pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133865pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:85.014399pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:15.254498pt;}
.y65{bottom:29.210667pt;}
.y132{bottom:32.908845pt;}
.y133{bottom:49.696551pt;}
.y134{bottom:66.484257pt;}
.y12e{bottom:70.100664pt;}
.y12f{bottom:70.369846pt;}
.y64{bottom:80.000000pt;}
.y131{bottom:106.431976pt;}
.y63{bottom:115.200000pt;}
.y12c{bottom:136.066657pt;}
.y1cc{bottom:138.707929pt;}
.y60{bottom:138.707991pt;}
.y9a{bottom:138.708000pt;}
.y109{bottom:138.708001pt;}
.y181{bottom:138.708003pt;}
.y129{bottom:138.708018pt;}
.yd5{bottom:138.708020pt;}
.y34{bottom:138.708027pt;}
.y205{bottom:138.709341pt;}
.y204{bottom:150.664007pt;}
.y33{bottom:150.664027pt;}
.y1cb{bottom:154.647929pt;}
.y5f{bottom:154.647991pt;}
.y99{bottom:154.648000pt;}
.yd4{bottom:154.648020pt;}
.y108{bottom:154.649334pt;}
.y180{bottom:154.649336pt;}
.y128{bottom:154.649352pt;}
.y203{bottom:162.618673pt;}
.y32{bottom:162.618693pt;}
.yd3{bottom:170.588020pt;}
.y1ca{bottom:170.589262pt;}
.y5e{bottom:170.589324pt;}
.y98{bottom:170.589333pt;}
.y107{bottom:170.589334pt;}
.y17f{bottom:170.589336pt;}
.y127{bottom:170.589352pt;}
.y24c{bottom:173.718717pt;}
.y31{bottom:174.574693pt;}
.y14b{bottom:174.629351pt;}
.y202{bottom:174.849339pt;}
.y12d{bottom:179.254646pt;}
.y19c{bottom:185.143954pt;}
.y24b{bottom:185.673383pt;}
.y1c9{bottom:186.529262pt;}
.y5d{bottom:186.529324pt;}
.y17e{bottom:186.529336pt;}
.y126{bottom:186.529352pt;}
.y30{bottom:186.529359pt;}
.yd2{bottom:186.553354pt;}
.y201{bottom:186.805339pt;}
.y97{bottom:187.124000pt;}
.y105{bottom:191.039998pt;}
.y24a{bottom:197.628050pt;}
.y2f{bottom:198.484025pt;}
.y14a{bottom:198.672017pt;}
.y200{bottom:198.760006pt;}
.y103{bottom:200.152007pt;}
.y19b{bottom:201.083954pt;}
.y1c8{bottom:202.469262pt;}
.y5c{bottom:202.469324pt;}
.y17d{bottom:202.469336pt;}
.y125{bottom:202.469352pt;}
.yd1{bottom:202.493354pt;}
.y96{bottom:203.065333pt;}
.y104{bottom:205.529340pt;}
.y249{bottom:209.584050pt;}
.y2e{bottom:210.440025pt;}
.y1ff{bottom:210.990672pt;}
.y149{bottom:214.612017pt;}
.y5b{bottom:218.409324pt;}
.y17c{bottom:218.409336pt;}
.y124{bottom:218.409352pt;}
.y1c7{bottom:218.462596pt;}
.y95{bottom:219.005333pt;}
.y248{bottom:221.538716pt;}
.y2d{bottom:222.394691pt;}
.yd0{bottom:222.705354pt;}
.y1fe{bottom:222.945338pt;}
.y19a{bottom:224.197286pt;}
.y102{bottom:228.718672pt;}
.y148{bottom:230.552017pt;}
.y247{bottom:233.494716pt;}
.y5a{bottom:234.349324pt;}
.y2c{bottom:234.349357pt;}
.y17b{bottom:234.350670pt;}
.y123{bottom:234.350685pt;}
.y1c6{bottom:234.402596pt;}
.y1fd{bottom:234.901338pt;}
.y94{bottom:234.945333pt;}
.y246{bottom:245.449382pt;}
.y147{bottom:246.492017pt;}
.y1fc{bottom:247.132005pt;}
.ycf{bottom:247.825354pt;}
.y2b{bottom:250.056024pt;}
.y59{bottom:250.289324pt;}
.y122{bottom:250.290685pt;}
.y1c5{bottom:250.342596pt;}
.y106{bottom:250.489333pt;}
.y93{bottom:250.885333pt;}
.y100{bottom:256.479999pt;}
.y101{bottom:256.880005pt;}
.y245{bottom:257.404048pt;}
.y2a{bottom:258.778690pt;}
.y1fb{bottom:259.086671pt;}
.y17a{bottom:261.889342pt;}
.y146{bottom:262.432017pt;}
.yce{bottom:263.765354pt;}
.y179{bottom:266.229342pt;}
.y58{bottom:266.230657pt;}
.y121{bottom:266.230685pt;}
.y1c4{bottom:266.282596pt;}
.y92{bottom:266.825333pt;}
.y244{bottom:269.360048pt;}
.y1fa{bottom:271.041337pt;}
.y29{bottom:274.484023pt;}
.y145{bottom:278.373351pt;}
.ycd{bottom:279.705354pt;}
.yfe{bottom:281.054665pt;}
.y243{bottom:281.314714pt;}
.y178{bottom:282.170676pt;}
.y120{bottom:282.170685pt;}
.y1c3{bottom:282.222596pt;}
.y57{bottom:282.535991pt;}
.y91{bottom:282.766666pt;}
.y1f9{bottom:283.272004pt;}
.y242{bottom:293.269380pt;}
.y144{bottom:294.313351pt;}
.y1f8{bottom:295.228004pt;}
.ycc{bottom:295.645354pt;}
.yfb{bottom:296.727997pt;}
.yff{bottom:296.727998pt;}
.y1c2{bottom:298.162596pt;}
.y56{bottom:298.475991pt;}
.y90{bottom:299.301333pt;}
.y28{bottom:300.825356pt;}
.y177{bottom:302.381342pt;}
.y241{bottom:305.225380pt;}
.y11f{bottom:305.982684pt;}
.y1f7{bottom:307.182670pt;}
.yfd{bottom:309.347997pt;}
.ycb{bottom:311.585354pt;}
.yfc{bottom:313.331997pt;}
.y1c1{bottom:314.103929pt;}
.y143{bottom:314.293350pt;}
.y55{bottom:314.417324pt;}
.y8f{bottom:315.242666pt;}
.y27{bottom:316.765356pt;}
.y240{bottom:317.180046pt;}
.y1f6{bottom:319.413337pt;}
.y11e{bottom:321.922684pt;}
.y176{bottom:327.496009pt;}
.yca{bottom:327.526687pt;}
.y23f{bottom:329.136046pt;}
.y1c0{bottom:330.043929pt;}
.y54{bottom:330.357324pt;}
.y8e{bottom:331.182666pt;}
.y1f5{bottom:331.368003pt;}
.y26{bottom:332.705356pt;}
.y142{bottom:334.274684pt;}
.y11c{bottom:336.357351pt;}
.y23e{bottom:341.090713pt;}
.y1f4{bottom:343.324003pt;}
.y175{bottom:343.436009pt;}
.yc9{bottom:343.466687pt;}
.yfa{bottom:343.745331pt;}
.y1bf{bottom:345.983929pt;}
.y53{bottom:346.297324pt;}
.y8d{bottom:347.122666pt;}
.y25{bottom:348.645356pt;}
.y116{bottom:352.029324pt;}
.y11d{bottom:352.029351pt;}
.y23d{bottom:353.045379pt;}
.y119{bottom:354.839991pt;}
.y1f3{bottom:355.554670pt;}
.y141{bottom:358.316017pt;}
.y174{bottom:359.377342pt;}
.yc8{bottom:359.406687pt;}
.yf9{bottom:359.685331pt;}
.y1be{bottom:361.923929pt;}
.y118{bottom:362.809324pt;}
.y8c{bottom:363.062666pt;}
.y24{bottom:364.586690pt;}
.y11b{bottom:364.649351pt;}
.y23c{bottom:365.001379pt;}
.y1f2{bottom:367.509336pt;}
.y52{bottom:367.702657pt;}
.y11a{bottom:368.634684pt;}
.y117{bottom:370.779991pt;}
.y140{bottom:374.257350pt;}
.y173{bottom:375.317342pt;}
.yc7{bottom:375.346687pt;}
.yf8{bottom:375.625331pt;}
.y23b{bottom:376.956045pt;}
.y1bd{bottom:377.863929pt;}
.y8b{bottom:379.002666pt;}
.y1f1{bottom:379.464002pt;}
.y23{bottom:381.273356pt;}
.y23a{bottom:388.910711pt;}
.y51{bottom:390.023990pt;}
.y13f{bottom:390.197350pt;}
.y172{bottom:391.281342pt;}
.yc6{bottom:391.286687pt;}
.y1f0{bottom:391.420002pt;}
.yf7{bottom:391.566664pt;}
.y1bc{bottom:393.857262pt;}
.y8a{bottom:394.942666pt;}
.y22{bottom:397.213356pt;}
.y239{bottom:400.866711pt;}
.y115{bottom:403.093324pt;}
.y1ef{bottom:403.650669pt;}
.y13e{bottom:406.137350pt;}
.y171{bottom:407.222675pt;}
.yc5{bottom:407.226687pt;}
.yf6{bottom:407.506664pt;}
.y1bb{bottom:409.797262pt;}
.y89{bottom:410.884000pt;}
.y199{bottom:412.743950pt;}
.y238{bottom:412.821377pt;}
.y21{bottom:413.153356pt;}
.y1ee{bottom:415.605335pt;}
.y50{bottom:418.041323pt;}
.y114{bottom:419.033324pt;}
.y13d{bottom:422.077350pt;}
.y170{bottom:423.162675pt;}
.yc4{bottom:423.168020pt;}
.yf5{bottom:423.446664pt;}
.y237{bottom:424.776043pt;}
.y1ba{bottom:425.737262pt;}
.y88{bottom:426.824000pt;}
.y1ed{bottom:427.560001pt;}
.y198{bottom:428.683950pt;}
.y20{bottom:429.093356pt;}
.y4f{bottom:433.981323pt;}
.y113{bottom:434.973324pt;}
.y236{bottom:436.732043pt;}
.y13c{bottom:438.017350pt;}
.yc3{bottom:439.108020pt;}
.y16f{bottom:439.126675pt;}
.yf4{bottom:439.386664pt;}
.y1ec{bottom:439.516001pt;}
.y1b9{bottom:441.677262pt;}
.y87{bottom:442.764000pt;}
.y1f{bottom:445.034690pt;}
.y235{bottom:448.686709pt;}
.y4e{bottom:449.921323pt;}
.y112{bottom:450.914658pt;}
.y1eb{bottom:451.746667pt;}
.y197{bottom:451.797282pt;}
.y13b{bottom:453.957350pt;}
.yc2{bottom:455.048020pt;}
.y16e{bottom:455.068008pt;}
.yf3{bottom:455.326664pt;}
.y1b8{bottom:457.618596pt;}
.y86{bottom:458.704000pt;}
.y234{bottom:460.642709pt;}
.y1e{bottom:460.974690pt;}
.y1ea{bottom:463.701334pt;}
.y4d{bottom:465.862656pt;}
.y111{bottom:466.854658pt;}
.y13a{bottom:469.898684pt;}
.yc1{bottom:470.988020pt;}
.y16d{bottom:471.032007pt;}
.yf2{bottom:471.299997pt;}
.y233{bottom:472.597376pt;}
.y1b7{bottom:473.558596pt;}
.y1e9{bottom:475.656000pt;}
.y1d{bottom:476.914690pt;}
.y85{bottom:480.913333pt;}
.y110{bottom:482.794658pt;}
.y232{bottom:484.552042pt;}
.y4c{bottom:485.231990pt;}
.y139{bottom:485.838684pt;}
.yc0{bottom:486.928020pt;}
.y16c{bottom:486.972007pt;}
.yf1{bottom:487.239997pt;}
.y1b6{bottom:489.498596pt;}
.y1c{bottom:492.854690pt;}
.y231{bottom:496.508042pt;}
.y1e8{bottom:498.357332pt;}
.y10f{bottom:498.734658pt;}
.ybf{bottom:499.410687pt;}
.y4b{bottom:501.171990pt;}
.y138{bottom:501.778684pt;}
.ybe{bottom:502.869354pt;}
.y16b{bottom:502.912007pt;}
.yf0{bottom:503.179997pt;}
.y1b5{bottom:505.438596pt;}
.y230{bottom:508.462708pt;}
.y1b{bottom:508.794690pt;}
.y84{bottom:510.882665pt;}
.y10e{bottom:514.473324pt;}
.y4a{bottom:517.111990pt;}
.ybd{bottom:518.809354pt;}
.y16a{bottom:518.877341pt;}
.yef{bottom:519.119997pt;}
.y22f{bottom:520.417374pt;}
.y137{bottom:521.758683pt;}
.y1a{bottom:524.734690pt;}
.y1b4{bottom:525.746596pt;}
.y83{bottom:526.822665pt;}
.y1e7{bottom:527.477332pt;}
.y10d{bottom:530.414658pt;}
.y22e{bottom:532.373374pt;}
.y49{bottom:533.051990pt;}
.ybc{bottom:534.749354pt;}
.y169{bottom:534.817341pt;}
.yee{bottom:539.357330pt;}
.y19{bottom:540.676023pt;}
.y82{bottom:542.763998pt;}
.y1e6{bottom:543.418665pt;}
.y22d{bottom:544.328040pt;}
.y48{bottom:548.993323pt;}
.ybb{bottom:550.714687pt;}
.y168{bottom:550.757341pt;}
.y1b3{bottom:551.099928pt;}
.y22c{bottom:556.284040pt;}
.y18{bottom:556.616023pt;}
.y81{bottom:558.703998pt;}
.y1e5{bottom:559.358665pt;}
.yba{bottom:563.197354pt;}
.yed{bottom:564.535997pt;}
.y47{bottom:564.933323pt;}
.yb9{bottom:566.654687pt;}
.y167{bottom:566.722674pt;}
.y1b2{bottom:567.039928pt;}
.y136{bottom:568.044017pt;}
.y22b{bottom:568.238706pt;}
.y80{bottom:574.643998pt;}
.y1e4{bottom:575.298665pt;}
.y10c{bottom:576.090658pt;}
.y22a{bottom:580.193372pt;}
.yec{bottom:580.475997pt;}
.y46{bottom:580.873323pt;}
.y17{bottom:581.221356pt;}
.yb8{bottom:582.594687pt;}
.y166{bottom:582.662674pt;}
.y1b1{bottom:582.979928pt;}
.y7f{bottom:590.583998pt;}
.y135{bottom:591.157349pt;}
.y1e3{bottom:591.238665pt;}
.y229{bottom:592.149372pt;}
.yeb{bottom:596.415997pt;}
.y45{bottom:596.813323pt;}
.yb7{bottom:598.534687pt;}
.y165{bottom:598.602674pt;}
.y1b0{bottom:598.919928pt;}
.y228{bottom:604.104038pt;}
.y7e{bottom:606.523998pt;}
.y1e2{bottom:607.178665pt;}
.y12b{bottom:608.425332pt;}
.yea{bottom:612.357330pt;}
.y44{bottom:612.753323pt;}
.yb6{bottom:614.474687pt;}
.y164{bottom:614.544007pt;}
.y1af{bottom:614.861261pt;}
.y227{bottom:616.058705pt;}
.y16{bottom:616.168022pt;}
.y7d{bottom:622.463998pt;}
.y1e1{bottom:623.118665pt;}
.y226{bottom:628.014705pt;}
.ye9{bottom:628.297330pt;}
.y43{bottom:628.693323pt;}
.y15{bottom:629.452022pt;}
.yb5{bottom:630.416020pt;}
.y1ae{bottom:630.801261pt;}
.y163{bottom:634.754674pt;}
.y7c{bottom:638.405332pt;}
.y1e0{bottom:639.059999pt;}
.y225{bottom:639.969371pt;}
.y196{bottom:640.342641pt;}
.y14{bottom:643.482688pt;}
.ye8{bottom:644.237330pt;}
.yb4{bottom:646.356020pt;}
.y1ad{bottom:646.741261pt;}
.y42{bottom:648.063989pt;}
.y224{bottom:651.925371pt;}
.y7b{bottom:654.941332pt;}
.y1df{bottom:654.999999pt;}
.y13{bottom:656.765355pt;}
.y162{bottom:659.869341pt;}
.ye7{bottom:660.177330pt;}
.yb3{bottom:662.296020pt;}
.y1ac{bottom:662.681261pt;}
.y195{bottom:663.455973pt;}
.y223{bottom:663.880037pt;}
.y41{bottom:664.003989pt;}
.y12{bottom:670.049355pt;}
.y7a{bottom:670.881332pt;}
.y1de{bottom:670.939999pt;}
.y161{bottom:675.809341pt;}
.y222{bottom:675.834703pt;}
.ye6{bottom:676.149330pt;}
.yb2{bottom:678.236020pt;}
.y1ab{bottom:678.621261pt;}
.y40{bottom:679.943989pt;}
.y11{bottom:683.333355pt;}
.y79{bottom:686.821332pt;}
.y1dd{bottom:686.879999pt;}
.y221{bottom:687.790703pt;}
.y160{bottom:691.750674pt;}
.ye5{bottom:692.089330pt;}
.yb1{bottom:694.176020pt;}
.y1aa{bottom:694.562595pt;}
.y3f{bottom:695.883989pt;}
.y10{bottom:696.616021pt;}
.y220{bottom:699.745369pt;}
.y78{bottom:702.761332pt;}
.y1dc{bottom:702.819999pt;}
.y15f{bottom:707.690674pt;}
.ye4{bottom:708.030663pt;}
.yf{bottom:709.900021pt;}
.yb0{bottom:710.141354pt;}
.y1a9{bottom:710.502595pt;}
.y21f{bottom:711.700035pt;}
.y3e{bottom:711.823989pt;}
.y77{bottom:718.701332pt;}
.y1db{bottom:718.759999pt;}
.ye{bottom:723.184021pt;}
.y15e{bottom:723.630674pt;}
.y21e{bottom:723.656035pt;}
.ye3{bottom:723.970663pt;}
.yaf{bottom:726.081354pt;}
.y3d{bottom:728.130655pt;}
.y1a8{bottom:730.810595pt;}
.y76{bottom:734.641332pt;}
.y1da{bottom:734.701332pt;}
.y21d{bottom:735.610701pt;}
.yd{bottom:736.466688pt;}
.yad{bottom:738.364020pt;}
.yae{bottom:738.564020pt;}
.yac{bottom:738.725354pt;}
.y15d{bottom:739.570674pt;}
.ye2{bottom:739.910663pt;}
.yab{bottom:742.022687pt;}
.y3c{bottom:744.070655pt;}
.y21c{bottom:747.566701pt;}
.yc{bottom:749.750688pt;}
.y75{bottom:750.582665pt;}
.y1d9{bottom:750.641332pt;}
.y15c{bottom:755.510674pt;}
.ye1{bottom:755.850663pt;}
.y1a7{bottom:756.163927pt;}
.yaa{bottom:757.962687pt;}
.y21b{bottom:759.521368pt;}
.y3b{bottom:760.010655pt;}
.yb{bottom:763.034688pt;}
.y74{bottom:766.522665pt;}
.y1d8{bottom:766.581332pt;}
.y15b{bottom:771.450674pt;}
.y21a{bottom:771.476034pt;}
.ye0{bottom:771.790663pt;}
.y1a6{bottom:772.103927pt;}
.ya9{bottom:773.902687pt;}
.y3a{bottom:775.951989pt;}
.ya{bottom:776.317354pt;}
.y1d7{bottom:782.521332pt;}
.y219{bottom:783.432034pt;}
.y15a{bottom:787.416007pt;}
.y1a5{bottom:788.043927pt;}
.y73{bottom:788.731998pt;}
.y9{bottom:789.601354pt;}
.ya8{bottom:789.842687pt;}
.y39{bottom:791.891989pt;}
.y218{bottom:795.386700pt;}
.ydf{bottom:796.839997pt;}
.y1d6{bottom:798.461332pt;}
.y8{bottom:802.885354pt;}
.y159{bottom:803.356007pt;}
.y12a{bottom:803.591960pt;}
.y1a4{bottom:803.983927pt;}
.ya7{bottom:805.782687pt;}
.y217{bottom:807.341366pt;}
.y38{bottom:807.831989pt;}
.y1d5{bottom:814.401332pt;}
.y7{bottom:816.168021pt;}
.y72{bottom:818.701330pt;}
.yde{bottom:819.231997pt;}
.y158{bottom:819.296007pt;}
.y216{bottom:819.297366pt;}
.y1a3{bottom:819.923927pt;}
.y194{bottom:821.450602pt;}
.ya6{bottom:821.724020pt;}
.y37{bottom:823.771989pt;}
.y6{bottom:829.452021pt;}
.y1d4{bottom:830.342665pt;}
.y193{bottom:830.401778pt;}
.y215{bottom:831.252032pt;}
.y71{bottom:834.641330pt;}
.y190{bottom:834.678733pt;}
.ydd{bottom:835.173330pt;}
.y157{bottom:835.237341pt;}
.y1a2{bottom:835.863927pt;}
.ya5{bottom:837.664020pt;}
.y10b{bottom:837.854678pt;}
.y192{bottom:839.353997pt;}
.y36{bottom:840.078655pt;}
.y5{bottom:842.734687pt;}
.y214{bottom:843.206698pt;}
.y18f{bottom:843.630907pt;}
.y1d3{bottom:846.282665pt;}
.y191{bottom:848.305173pt;}
.y70{bottom:850.581330pt;}
.ydc{bottom:851.113330pt;}
.y156{bottom:851.177341pt;}
.y1a1{bottom:851.805261pt;}
.ya4{bottom:853.604020pt;}
.y10a{bottom:853.794678pt;}
.y213{bottom:855.162698pt;}
.y35{bottom:856.018655pt;}
.y4{bottom:856.018687pt;}
.y18e{bottom:857.654684pt;}
.y1d2{bottom:862.222665pt;}
.y6f{bottom:866.521330pt;}
.y18d{bottom:866.605860pt;}
.ydb{bottom:867.053330pt;}
.y155{bottom:867.117341pt;}
.y212{bottom:867.117364pt;}
.y1a0{bottom:867.745261pt;}
.y18a{bottom:870.882753pt;}
.ya3{bottom:873.878687pt;}
.y18c{bottom:875.558018pt;}
.y1d1{bottom:878.162665pt;}
.y211{bottom:879.073364pt;}
.y189{bottom:879.834928pt;}
.y6e{bottom:882.462663pt;}
.yda{bottom:883.025330pt;}
.y154{bottom:883.057341pt;}
.y19f{bottom:883.685261pt;}
.y18b{bottom:884.509194pt;}
.y210{bottom:891.028031pt;}
.y188{bottom:893.858700pt;}
.y6d{bottom:898.402663pt;}
.yd9{bottom:898.965330pt;}
.y153{bottom:898.997341pt;}
.ya2{bottom:898.997353pt;}
.y1d0{bottom:901.261331pt;}
.y20f{bottom:902.982697pt;}
.y19e{bottom:903.993261pt;}
.y3{bottom:911.496023pt;}
.y187{bottom:913.274681pt;}
.yd8{bottom:914.906663pt;}
.ya1{bottom:914.937353pt;}
.y6c{bottom:914.938663pt;}
.y152{bottom:914.938674pt;}
.y20e{bottom:914.938697pt;}
.y19d{bottom:924.433261pt;}
.y20d{bottom:926.893363pt;}
.y186{bottom:929.214681pt;}
.y1cf{bottom:930.382664pt;}
.yd7{bottom:930.846663pt;}
.ya0{bottom:930.877353pt;}
.y6b{bottom:930.878663pt;}
.y151{bottom:930.878674pt;}
.y20c{bottom:938.848029pt;}
.y1ce{bottom:946.322664pt;}
.yd6{bottom:946.786663pt;}
.y6a{bottom:946.818663pt;}
.y150{bottom:946.818674pt;}
.y9f{bottom:946.818687pt;}
.y20b{bottom:950.804029pt;}
.y2{bottom:953.338689pt;}
.y1cd{bottom:962.262664pt;}
.y69{bottom:962.758663pt;}
.y14f{bottom:962.758674pt;}
.y9e{bottom:962.758687pt;}
.y20a{bottom:962.758695pt;}
.y185{bottom:971.334294pt;}
.y209{bottom:974.714695pt;}
.y68{bottom:978.698663pt;}
.y14e{bottom:978.698674pt;}
.y9d{bottom:978.698687pt;}
.y1{bottom:979.905355pt;}
.y184{bottom:983.047028pt;}
.y208{bottom:986.669361pt;}
.y183{bottom:994.260744pt;}
.y67{bottom:994.638663pt;}
.y14d{bottom:994.638674pt;}
.y9c{bottom:994.638687pt;}
.y207{bottom:998.624027pt;}
.y9b{bottom:1010.578687pt;}
.y66{bottom:1010.579997pt;}
.y14c{bottom:1010.580007pt;}
.y206{bottom:1010.580027pt;}
.y182{bottom:1015.361328pt;}
.y62{bottom:1064.920000pt;}
.y61{bottom:1077.720000pt;}
.h17{height:2.125355pt;}
.h16{height:16.402378pt;}
.h21{height:20.253578pt;}
.h22{height:20.690059pt;}
.h7{height:21.200555pt;}
.h26{height:21.897451pt;}
.h23{height:24.216045pt;}
.h1c{height:25.589197pt;}
.h12{height:26.519037pt;}
.h24{height:27.432351pt;}
.h8{height:29.244954pt;}
.hc{height:31.729167pt;}
.h1f{height:32.900710pt;}
.hb{height:33.000000pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h9{height:36.290430pt;}
.h6{height:36.556099pt;}
.ha{height:36.874903pt;}
.hd{height:38.937500pt;}
.h27{height:39.005091pt;}
.he{height:39.850399pt;}
.hf{height:45.799037pt;}
.h15{height:45.804370pt;}
.h3{height:49.381955pt;}
.h13{height:50.385433pt;}
.h1e{height:53.233703pt;}
.h18{height:55.666910pt;}
.h10{height:58.988370pt;}
.h2{height:58.999993pt;}
.h14{height:59.633703pt;}
.h11{height:60.433703pt;}
.h25{height:72.287215pt;}
.h1a{height:75.448022pt;}
.h19{height:77.048021pt;}
.h1b{height:81.745702pt;}
.h1d{height:106.882688pt;}
.h20{height:191.184068pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:293.761424pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:12.816616pt;}
.xc{left:22.666667pt;}
.x5{left:72.189319pt;}
.x48{left:78.156450pt;}
.x46{left:79.664727pt;}
.x7{left:83.479983pt;}
.x4{left:85.471984pt;}
.x2e{left:88.510671pt;}
.xd{left:90.801333pt;}
.x1c{left:94.178643pt;}
.x4e{left:96.534653pt;}
.x1{left:97.740000pt;}
.x4b{left:103.325337pt;}
.x34{left:112.922664pt;}
.x4a{left:115.204097pt;}
.x17{left:117.359980pt;}
.x1e{left:118.957326pt;}
.x49{left:120.495334pt;}
.x4c{left:124.043996pt;}
.x1f{left:129.423990pt;}
.x16{left:131.333322pt;}
.x30{left:135.247462pt;}
.x37{left:150.318895pt;}
.x47{left:153.572560pt;}
.x3{left:155.929331pt;}
.x35{left:158.325324pt;}
.x38{left:160.840978pt;}
.x21{left:170.154663pt;}
.x19{left:177.417312pt;}
.x1a{left:178.406646pt;}
.x18{left:181.715979pt;}
.x6{left:183.557317pt;}
.x20{left:186.021323pt;}
.x33{left:190.097331pt;}
.x1b{left:196.603979pt;}
.x2d{left:199.064006pt;}
.x31{left:200.351359pt;}
.x39{left:201.255879pt;}
.x3a{left:204.027416pt;}
.x32{left:240.185919pt;}
.x36{left:244.909342pt;}
.x3b{left:259.953426pt;}
.x1d{left:270.728007pt;}
.x2{left:273.133331pt;}
.x3c{left:304.804531pt;}
.x3d{left:313.945849pt;}
.x22{left:383.101330pt;}
.x15{left:399.288000pt;}
.x3e{left:408.364453pt;}
.x8{left:417.789333pt;}
.x14{left:418.699948pt;}
.xe{left:422.704010pt;}
.x2c{left:424.598680pt;}
.x9{left:431.071999pt;}
.x4f{left:442.134646pt;}
.xa{left:450.107999pt;}
.x23{left:465.847982pt;}
.x4d{left:499.362691pt;}
.xb{left:523.723995pt;}
.x3f{left:527.472969pt;}
.x12{left:551.957291pt;}
.x24{left:558.613337pt;}
.x26{left:572.634687pt;}
.x27{left:573.625353pt;}
.x25{left:578.945353pt;}
.x41{left:588.139118pt;}
.x40{left:590.765574pt;}
.x29{left:594.036019pt;}
.x28{left:598.917352pt;}
.x2a{left:615.437352pt;}
.xf{left:622.854659pt;}
.x43{left:630.772749pt;}
.x42{left:636.334582pt;}
.x10{left:665.923993pt;}
.x45{left:694.030328pt;}
.x44{left:701.226818pt;}
.x13{left:721.942610pt;}
.x2b{left:728.700018pt;}
.x11{left:739.511992pt;}
}




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