
    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_4a5bfc3f8b4756e85eed6f30.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63cd03ae804e22a3318ecdb1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_c8d5baabaa78567cb543a4e4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d305c2fb8e721cc6c111cbb9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_94b4c6aa9988e2090e08f834.woff')format("woff");}.ff5{font-family:ff5;line-height:0.653000;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_6c4d40e53abb8d9d6c901e5d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_2591b07d67fccacb445fb381.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_775415e6a18ae3a591305543.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_02de5830b49403d4c78e6ca9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bfbb587dfc5f0546cbe59a1f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_530bfd39bf40d1d3f6388458.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_f733dca27846b67d198e4bbb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.907000;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_c897ec5f7e77e35f660792c7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_c9789ef626e12295914bc509.woff')format("woff");}.ffe{font-family:ffe;line-height:0.453000;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_7fd3b902560059925da63ba8.woff')format("woff");}.fff{font-family:fff;line-height:2.999000;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_463cf8906a4a6eaaab485caf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.699000;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_7b1cca71a20994003db2b5d3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.256000;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_8656691dfd397927df9899df.woff')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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_2f169b7300c16eea159bd13e.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cd032f9a4915db78d1d495dd.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_89b0d01cd3b021055f09a4cf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_97203eb7181d38cf5ee0f92a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.686000;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);}
.m4{transform:matrix(0.062353,-0.242099,0.242099,0.062353,0,0);-ms-transform:matrix(0.062353,-0.242099,0.242099,0.062353,0,0);-webkit-transform:matrix(0.062353,-0.242099,0.242099,0.062353,0,0);}
.m3{transform:matrix(0.204638,-0.143609,0.143609,0.204638,0,0);-ms-transform:matrix(0.204638,-0.143609,0.143609,0.204638,0,0);-webkit-transform:matrix(0.204638,-0.143609,0.143609,0.204638,0,0);}
.m2{transform:matrix(0.234099,0.087735,-0.087735,0.234099,0,0);-ms-transform:matrix(0.234099,0.087735,-0.087735,0.234099,0,0);-webkit-transform:matrix(0.234099,0.087735,-0.087735,0.234099,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);}
.v7{vertical-align:-10.794000px;}
.v2{vertical-align:-8.964000px;}
.v4{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:16.878000px;}
.v1{vertical-align:18.656214px;}
.v3{vertical-align:21.690000px;}
.v9{vertical-align:24.684000px;}
.v8{vertical-align:102.216000px;}
.v6{vertical-align:113.274000px;}
.v5{vertical-align:140.772000px;}
.ls3{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000065px;}
.ls50{letter-spacing:0.000261px;}
.ls5e{letter-spacing:0.001291px;}
.ls52{letter-spacing:0.001707px;}
.ls36{letter-spacing:0.002503px;}
.ls62{letter-spacing:0.002805px;}
.ls63{letter-spacing:0.011328px;}
.ls32{letter-spacing:0.011835px;}
.ls4d{letter-spacing:0.013377px;}
.ls60{letter-spacing:0.017988px;}
.ls51{letter-spacing:0.018771px;}
.ls1e{letter-spacing:0.022184px;}
.ls17{letter-spacing:0.023738px;}
.ls3a{letter-spacing:0.024024px;}
.ls2c{letter-spacing:0.026360px;}
.ls47{letter-spacing:0.030717px;}
.ls22{letter-spacing:0.239102px;}
.ls38{letter-spacing:0.474542px;}
.ls5a{letter-spacing:1.434618px;}
.ls19{letter-spacing:1.506341px;}
.ls1b{letter-spacing:1.613941px;}
.ls4e{letter-spacing:1.673717px;}
.ls5d{letter-spacing:2.056286px;}
.ls29{letter-spacing:2.151922px;}
.ls57{letter-spacing:2.371909px;}
.ls59{letter-spacing:2.391030px;}
.ls58{letter-spacing:2.410166px;}
.ls2{letter-spacing:2.438851px;}
.ls2b{letter-spacing:2.486671px;}
.ls0{letter-spacing:2.964877px;}
.ls42{letter-spacing:2.984525px;}
.ls1c{letter-spacing:2.984557px;}
.ls18{letter-spacing:2.987864px;}
.ls10{letter-spacing:2.988615px;}
.ls7{letter-spacing:2.988780px;}
.ls48{letter-spacing:2.989140px;}
.ls1f{letter-spacing:2.990032px;}
.lsf{letter-spacing:2.990525px;}
.ls5b{letter-spacing:2.994532px;}
.lsc{letter-spacing:3.012698px;}
.ls40{letter-spacing:4.542946px;}
.ls4{letter-spacing:4.841824px;}
.ls5f{letter-spacing:4.939064px;}
.ls28{letter-spacing:5.080926px;}
.ls27{letter-spacing:5.320028px;}
.ls6{letter-spacing:8.308808px;}
.ls46{letter-spacing:9.420479px;}
.ls43{letter-spacing:9.982525px;}
.ls61{letter-spacing:10.419764px;}
.ls5c{letter-spacing:11.460532px;}
.ls1a{letter-spacing:12.950826px;}
.ls1d{letter-spacing:13.270183px;}
.ls4a{letter-spacing:13.280847px;}
.ls24{letter-spacing:13.509286px;}
.ls3e{letter-spacing:14.346144px;}
.ls3d{letter-spacing:14.585246px;}
.ls54{letter-spacing:15.481880px;}
.ls23{letter-spacing:16.557841px;}
.ls5{letter-spacing:16.617617px;}
.ls35{letter-spacing:17.036046px;}
.ls25{letter-spacing:17.872904px;}
.ls3f{letter-spacing:19.546621px;}
.ls34{letter-spacing:20.024826px;}
.ls9{letter-spacing:20.263928px;}
.lsa{letter-spacing:20.323704px;}
.ls33{letter-spacing:20.503031px;}
.ls31{letter-spacing:20.861684px;}
.lsb{letter-spacing:20.921460px;}
.ls37{letter-spacing:21.160562px;}
.ls56{letter-spacing:22.116972px;}
.ls55{letter-spacing:22.176748px;}
.ls21{letter-spacing:22.296299px;}
.ls30{letter-spacing:22.774504px;}
.ls3c{letter-spacing:22.834279px;}
.ls2a{letter-spacing:23.073382px;}
.ls26{letter-spacing:24.029791px;}
.ls12{letter-spacing:26.420815px;}
.ls2e{letter-spacing:27.676103px;}
.ls4c{letter-spacing:28.512961px;}
.ls11{letter-spacing:28.752064px;}
.ls41{letter-spacing:28.811839px;}
.ls44{letter-spacing:28.871615px;}
.ls2f{letter-spacing:29.529146px;}
.ls13{letter-spacing:29.887800px;}
.ls3b{letter-spacing:30.545332px;}
.lsd{letter-spacing:31.083312px;}
.ls15{letter-spacing:32.996131px;}
.ls14{letter-spacing:34.610072px;}
.ls4f{letter-spacing:34.908950px;}
.ls1{letter-spacing:35.865360px;}
.ls16{letter-spacing:36.463116px;}
.lse{letter-spacing:44.353495px;}
.ls8{letter-spacing:50.390831px;}
.ls20{letter-spacing:95.247657px;}
.ls39{letter-spacing:400.097251px;}
.ls49{letter-spacing:427.036886px;}
.ls4b{letter-spacing:447.958346px;}
.ls53{letter-spacing:476.172430px;}
.ls2d{letter-spacing:508.618868px;}
.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;}
}
.wsb7{word-spacing:-38.937826px;}
.wsbc{word-spacing:-31.633157px;}
.wsb6{word-spacing:-29.015076px;}
.wsbd{word-spacing:-28.955301px;}
.ws5a{word-spacing:-22.320209px;}
.wsde{word-spacing:-22.200658px;}
.wsdc{word-spacing:-15.369085px;}
.ws4e{word-spacing:-14.943900px;}
.ws1f{word-spacing:-14.920027px;}
.wsb1{word-spacing:-11.955150px;}
.wsdd{word-spacing:-11.647656px;}
.wsdb{word-spacing:-10.914230px;}
.ws88{word-spacing:-10.267559px;}
.wsfe{word-spacing:-9.564150px;}
.wse5{word-spacing:-2.988780px;}
.wsfd{word-spacing:-2.391030px;}
.wse{word-spacing:-1.022170px;}
.ws62{word-spacing:-1.016185px;}
.ws70{word-spacing:-0.956410px;}
.ws5d{word-spacing:-0.836858px;}
.ws118{word-spacing:-0.777083px;}
.ws22{word-spacing:-0.657532px;}
.wsed{word-spacing:-0.597756px;}
.ws3c{word-spacing:-0.478205px;}
.wsec{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.ws2c{word-spacing:-0.298878px;}
.wsf4{word-spacing:-0.239102px;}
.wsf9{word-spacing:-0.119551px;}
.ws97{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws102{word-spacing:-0.047821px;}
.wsbe{word-spacing:-0.041843px;}
.wsd0{word-spacing:-0.012000px;}
.wsfb{word-spacing:-0.009609px;}
.ws54{word-spacing:0.000000px;}
.ws7f{word-spacing:0.047776px;}
.wsbb{word-spacing:0.059776px;}
.ws13d{word-spacing:0.095641px;}
.ws9e{word-spacing:0.119551px;}
.wsc9{word-spacing:0.358654px;}
.ws6{word-spacing:0.376589px;}
.wsca{word-spacing:0.418429px;}
.ws10a{word-spacing:0.478205px;}
.wsf8{word-spacing:0.537980px;}
.wsb0{word-spacing:0.657532px;}
.wsc6{word-spacing:0.717307px;}
.wsc{word-spacing:0.753178px;}
.wsc7{word-spacing:0.777083px;}
.ws110{word-spacing:0.836858px;}
.ws49{word-spacing:1.075961px;}
.ws8f{word-spacing:1.135736px;}
.ws6a{word-spacing:1.195512px;}
.ws38{word-spacing:1.315063px;}
.ws75{word-spacing:1.374839px;}
.ws109{word-spacing:1.494390px;}
.ws48{word-spacing:1.554166px;}
.ws9f{word-spacing:1.673717px;}
.ws33{word-spacing:1.733492px;}
.ws60{word-spacing:1.853044px;}
.ws79{word-spacing:1.912819px;}
.ws81{word-spacing:1.972595px;}
.ws4f{word-spacing:2.032370px;}
.ws5f{word-spacing:2.092146px;}
.ws35{word-spacing:2.151922px;}
.ws8a{word-spacing:2.281525px;}
.ws8c{word-spacing:2.281553px;}
.ws8b{word-spacing:2.281607px;}
.ws89{word-spacing:2.281665px;}
.ws57{word-spacing:2.391024px;}
.ws99{word-spacing:2.450800px;}
.ws10b{word-spacing:2.510575px;}
.wse7{word-spacing:2.570351px;}
.ws8d{word-spacing:2.630133px;}
.ws120{word-spacing:2.689902px;}
.ws11e{word-spacing:2.749678px;}
.ws6f{word-spacing:2.809453px;}
.ws21{word-spacing:2.869229px;}
.ws11a{word-spacing:2.929004px;}
.ws11c{word-spacing:2.988780px;}
.ws11b{word-spacing:3.048556px;}
.wseb{word-spacing:3.108331px;}
.ws7c{word-spacing:3.227882px;}
.ws13f{word-spacing:3.299621px;}
.wsd4{word-spacing:3.347434px;}
.ws2d{word-spacing:3.407209px;}
.ws87{word-spacing:3.408830px;}
.ws63{word-spacing:3.466985px;}
.ws10e{word-spacing:3.526760px;}
.ws30{word-spacing:3.586536px;}
.ws36{word-spacing:3.646312px;}
.ws129{word-spacing:3.765863px;}
.ws136{word-spacing:3.885414px;}
.ws6c{word-spacing:3.945190px;}
.wscc{word-spacing:4.004965px;}
.ws13b{word-spacing:4.112572px;}
.wsf7{word-spacing:4.124516px;}
.ws12c{word-spacing:4.244068px;}
.ws17{word-spacing:4.250074px;}
.wse2{word-spacing:4.303843px;}
.ws134{word-spacing:4.363619px;}
.ws69{word-spacing:4.423394px;}
.ws10d{word-spacing:4.542946px;}
.wsa6{word-spacing:4.602721px;}
.wsfc{word-spacing:4.743818px;}
.wse3{word-spacing:4.782048px;}
.ws8e{word-spacing:4.782060px;}
.ws11{word-spacing:4.788058px;}
.ws2e{word-spacing:4.841824px;}
.wsf2{word-spacing:4.961375px;}
.ws13{word-spacing:5.057050px;}
.ws66{word-spacing:5.080926px;}
.ws4{word-spacing:5.164646px;}
.wsc0{word-spacing:5.200477px;}
.ws7{word-spacing:5.218445px;}
.ws3a{word-spacing:5.260253px;}
.ws9a{word-spacing:5.320028px;}
.ws71{word-spacing:5.379804px;}
.wse9{word-spacing:5.379840px;}
.ws8{word-spacing:5.487437px;}
.wsb3{word-spacing:5.559131px;}
.wsd6{word-spacing:5.618906px;}
.ws28{word-spacing:5.678682px;}
.wsa{word-spacing:5.702630px;}
.ws13e{word-spacing:5.786293px;}
.ws46{word-spacing:5.798233px;}
.ws52{word-spacing:5.858009px;}
.ws15{word-spacing:5.864026px;}
.ws55{word-spacing:5.917754px;}
.wsb{word-spacing:5.971622px;}
.ws2{word-spacing:5.977560px;}
.wsff{word-spacing:5.977575px;}
.ws24{word-spacing:6.037336px;}
.wsee{word-spacing:6.097111px;}
.ws116{word-spacing:6.156887px;}
.ws3d{word-spacing:6.336214px;}
.wsa7{word-spacing:6.455765px;}
.ws139{word-spacing:6.455781px;}
.ws20{word-spacing:6.515540px;}
.wsb4{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws1a{word-spacing:6.724800px;}
.wse6{word-spacing:6.754643px;}
.wsd5{word-spacing:6.814418px;}
.ws6d{word-spacing:6.874194px;}
.ws131{word-spacing:6.933970px;}
.wsfa{word-spacing:6.993745px;}
.ws23{word-spacing:7.053521px;}
.ws126{word-spacing:7.113296px;}
.ws13a{word-spacing:7.125269px;}
.ws32{word-spacing:7.173072px;}
.wsc2{word-spacing:7.352399px;}
.ws31{word-spacing:7.412174px;}
.ws27{word-spacing:7.471950px;}
.ws53{word-spacing:7.531726px;}
.wsd2{word-spacing:7.651277px;}
.ws58{word-spacing:7.711052px;}
.ws14{word-spacing:7.746970px;}
.ws77{word-spacing:7.770828px;}
.ws78{word-spacing:7.830604px;}
.ws47{word-spacing:7.890379px;}
.ws45{word-spacing:7.950155px;}
.ws133{word-spacing:8.009930px;}
.wsf1{word-spacing:8.069706px;}
.wsef{word-spacing:8.129482px;}
.ws138{word-spacing:8.129502px;}
.wsea{word-spacing:8.177323px;}
.ws5e{word-spacing:8.189257px;}
.wsd8{word-spacing:8.249033px;}
.wsc1{word-spacing:8.308808px;}
.ws5b{word-spacing:8.428360px;}
.ws4a{word-spacing:8.488135px;}
.wsd3{word-spacing:8.547911px;}
.ws113{word-spacing:8.607686px;}
.ws7b{word-spacing:8.667462px;}
.ws7a{word-spacing:8.966340px;}
.ws6b{word-spacing:9.026116px;}
.ws39{word-spacing:9.085891px;}
.ws105{word-spacing:9.133735px;}
.wsdf{word-spacing:9.145667px;}
.ws43{word-spacing:9.205442px;}
.ws80{word-spacing:9.265218px;}
.ws5c{word-spacing:9.384769px;}
.ws25{word-spacing:9.444545px;}
.wsc4{word-spacing:9.623872px;}
.ws50{word-spacing:9.803198px;}
.ws115{word-spacing:9.862974px;}
.ws51{word-spacing:9.982525px;}
.wsc8{word-spacing:10.102076px;}
.ws137{word-spacing:10.161852px;}
.ws3b{word-spacing:10.221628px;}
.ws59{word-spacing:10.281403px;}
.ws2f{word-spacing:10.400954px;}
.ws83{word-spacing:10.520506px;}
.wsa8{word-spacing:10.580281px;}
.ws12e{word-spacing:10.759608px;}
.ws12f{word-spacing:10.819384px;}
.wse1{word-spacing:10.879159px;}
.ws61{word-spacing:10.998710px;}
.wscb{word-spacing:11.058486px;}
.ws41{word-spacing:11.178037px;}
.wsce{word-spacing:11.237813px;}
.ws124{word-spacing:11.417140px;}
.ws18{word-spacing:11.459059px;}
.wsb8{word-spacing:11.476915px;}
.wsb9{word-spacing:11.536691px;}
.wsa9{word-spacing:11.596466px;}
.wsf3{word-spacing:11.656242px;}
.ws128{word-spacing:11.716018px;}
.ws72{word-spacing:11.775793px;}
.ws7e{word-spacing:11.955120px;}
.wsa2{word-spacing:12.014896px;}
.wse0{word-spacing:12.074671px;}
.wsa1{word-spacing:12.194222px;}
.wsd{word-spacing:12.212237px;}
.wsc3{word-spacing:12.253998px;}
.ws7d{word-spacing:12.313774px;}
.wsaa{word-spacing:12.373549px;}
.ws114{word-spacing:12.493100px;}
.wsd7{word-spacing:12.732203px;}
.ws11d{word-spacing:12.791978px;}
.wsa0{word-spacing:12.851754px;}
.ws42{word-spacing:12.971305px;}
.ws26{word-spacing:13.031081px;}
.ws11f{word-spacing:13.270183px;}
.ws3f{word-spacing:13.329959px;}
.wsb2{word-spacing:13.509286px;}
.ws6e{word-spacing:13.569061px;}
.ws44{word-spacing:13.748388px;}
.ws73{word-spacing:13.808164px;}
.ws12{word-spacing:13.933786px;}
.ws74{word-spacing:13.987490px;}
.ws40{word-spacing:14.166817px;}
.ws125{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws2b{word-spacing:14.525471px;}
.wsda{word-spacing:14.585246px;}
.ws65{word-spacing:14.645022px;}
.wsba{word-spacing:14.824349px;}
.ws4b{word-spacing:14.884124px;}
.ws84{word-spacing:14.943900px;}
.ws16{word-spacing:14.955955px;}
.ws5{word-spacing:15.224947px;}
.wse4{word-spacing:15.362329px;}
.ws10f{word-spacing:15.422105px;}
.ws10{word-spacing:15.601536px;}
.ws130{word-spacing:15.780758px;}
.wsf6{word-spacing:15.900310px;}
.ws10c{word-spacing:15.960085px;}
.ws29{word-spacing:16.139412px;}
.ws82{word-spacing:16.199188px;}
.ws68{word-spacing:16.378514px;}
.ws67{word-spacing:16.438290px;}
.wsd1{word-spacing:16.498066px;}
.wsd9{word-spacing:16.557841px;}
.wsad{word-spacing:16.677392px;}
.ws9{word-spacing:16.731302px;}
.ws13c{word-spacing:16.928492px;}
.ws117{word-spacing:17.275148px;}
.ws12d{word-spacing:17.394700px;}
.wscf{word-spacing:17.454475px;}
.ws3e{word-spacing:17.514251px;}
.ws86{word-spacing:17.574026px;}
.wsf{word-spacing:17.807270px;}
.wsf5{word-spacing:17.813129px;}
.ws1e{word-spacing:17.932680px;}
.ws64{word-spacing:18.052231px;}
.ws135{word-spacing:18.171782px;}
.ws119{word-spacing:18.231558px;}
.ws2a{word-spacing:18.530436px;}
.ws111{word-spacing:18.649987px;}
.ws12b{word-spacing:18.769538px;}
.wsbf{word-spacing:18.889090px;}
.ws108{word-spacing:19.128192px;}
.ws19{word-spacing:19.259827px;}
.ws127{word-spacing:19.486846px;}
.wsa3{word-spacing:19.546621px;}
.wsa5{word-spacing:19.606397px;}
.wsac{word-spacing:20.084602px;}
.ws85{word-spacing:20.144377px;}
.ws112{word-spacing:20.204153px;}
.wsf0{word-spacing:20.503031px;}
.ws56{word-spacing:20.562806px;}
.ws9b{word-spacing:20.861684px;}
.ws76{word-spacing:20.921460px;}
.ws121{word-spacing:20.981236px;}
.ws4d{word-spacing:21.280114px;}
.ws4c{word-spacing:21.339889px;}
.wsc5{word-spacing:21.399665px;}
.ws122{word-spacing:21.638767px;}
.ws9c{word-spacing:21.877870px;}
.ws9d{word-spacing:21.937645px;}
.ws94{word-spacing:22.236523px;}
.ws12a{word-spacing:22.356074px;}
.ws34{word-spacing:22.535401px;}
.ws132{word-spacing:22.595177px;}
.ws123{word-spacing:22.774504px;}
.wsa4{word-spacing:23.372260px;}
.wsaf{word-spacing:26.659918px;}
.wscd{word-spacing:29.409595px;}
.wsb5{word-spacing:31.023536px;}
.ws93{word-spacing:31.681068px;}
.ws1d{word-spacing:33.570202px;}
.wsab{word-spacing:35.028502px;}
.ws98{word-spacing:35.446931px;}
.ws96{word-spacing:35.506706px;}
.wsae{word-spacing:35.805584px;}
.ws95{word-spacing:37.180423px;}
.ws91{word-spacing:43.038432px;}
.ws90{word-spacing:44.652373px;}
.ws1c{word-spacing:57.940877px;}
.ws92{word-spacing:57.982332px;}
.wse8{word-spacing:68.384206px;}
.ws1b{word-spacing:71.390477px;}
.ws106{word-spacing:169.476206px;}
.ws101{word-spacing:171.675954px;}
.ws100{word-spacing:177.462247px;}
.ws103{word-spacing:182.770333px;}
.ws107{word-spacing:187.600214px;}
.ws104{word-spacing:200.894341px;}
._1{margin-left:-15.924260px;}
._0{margin-left:-11.476944px;}
._1f{margin-left:-8.368584px;}
._2{margin-left:-7.298627px;}
._c{margin-left:-5.977560px;}
._7{margin-left:-4.949453px;}
._5{margin-left:-3.885414px;}
._3{margin-left:-2.391024px;}
._4{margin-left:-1.195512px;}
._f{width:1.147694px;}
._8{width:2.988780px;}
._1b{width:4.056821px;}
._19{width:6.515540px;}
._11{width:8.189257px;}
._9{width:15.601432px;}
._6{width:17.884945px;}
._b{width:19.187968px;}
._1c{width:20.263928px;}
._d{width:22.475626px;}
._12{width:24.197196px;}
._1a{width:25.410634px;}
._13{width:27.676103px;}
._10{width:29.887800px;}
._a{width:31.441966px;}
._e{width:32.816804px;}
._18{width:35.088277px;}
._28{width:36.821770px;}
._14{width:38.973691px;}
._17{width:41.006062px;}
._20{width:42.679778px;}
._16{width:68.024633px;}
._23{width:71.730900px;}
._22{width:77.469372px;}
._1e{width:82.273002px;}
._26{width:89.854907px;}
._1d{width:96.085002px;}
._27{width:100.231960px;}
._24{width:172.441078px;}
._25{width:233.842734px;}
._21{width:301.126318px;}
._15{width:412.344171px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:22.815247px;}
.fsb{font-size:22.815528px;}
.fsa{font-size:22.816072px;}
.fs8{font-size:22.816645px;}
.fsc{font-size:29.887800px;}
.fse{font-size:35.865600px;}
.fsd{font-size:38.256600px;}
.fs7{font-size:41.070237px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs6{font-size:120.000000px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y35{bottom:113.332500px;}
.y34{bottom:131.265000px;}
.ybf{bottom:131.266500px;}
.y17d{bottom:146.290500px;}
.ye9{bottom:149.197500px;}
.y33{bottom:149.199000px;}
.y5d{bottom:153.721500px;}
.ybe{bottom:154.677000px;}
.y17c{bottom:164.223000px;}
.y32{bottom:167.131500px;}
.y118{bottom:174.786000px;}
.y5c{bottom:180.637500px;}
.y17b{bottom:182.155500px;}
.y31{bottom:185.064000px;}
.y8e{bottom:188.938500px;}
.ye8{bottom:190.191000px;}
.y145{bottom:190.353000px;}
.y5b{bottom:198.571500px;}
.ybd{bottom:200.116500px;}
.y17a{bottom:201.754500px;}
.y30{bottom:202.996500px;}
.y8d{bottom:206.871000px;}
.y117{bottom:206.982000px;}
.ybc{bottom:213.567000px;}
.y5a{bottom:216.504000px;}
.y144{bottom:219.198000px;}
.ye7{bottom:219.232500px;}
.y179{bottom:219.687000px;}
.y2f{bottom:220.929000px;}
.y8c{bottom:224.803500px;}
.y116{bottom:224.916000px;}
.y59{bottom:234.436500px;}
.y143{bottom:237.130500px;}
.ye6{bottom:237.165000px;}
.y178{bottom:237.621000px;}
.y2e{bottom:238.861500px;}
.y8b{bottom:242.736000px;}
.y115{bottom:246.874500px;}
.y177{bottom:249.306000px;}
.y58{bottom:252.369000px;}
.y142{bottom:255.063000px;}
.ye5{bottom:255.099000px;}
.y1c8{bottom:256.794000px;}
.y2d{bottom:256.795500px;}
.y8a{bottom:260.668500px;}
.y114{bottom:264.807000px;}
.y174{bottom:266.938500px;}
.yb3{bottom:268.813822px;}
.y57{bottom:270.301500px;}
.y141{bottom:272.997000px;}
.ye4{bottom:273.031500px;}
.y2c{bottom:274.728000px;}
.y89{bottom:278.602500px;}
.yb2{bottom:280.221457px;}
.y176{bottom:281.134500px;}
.y113{bottom:282.739500px;}
.y175{bottom:285.618000px;}
.y56{bottom:288.235500px;}
.y140{bottom:290.929500px;}
.y1a2{bottom:292.660500px;}
.y2b{bottom:292.960500px;}
.ye3{bottom:296.392500px;}
.y88{bottom:296.535000px;}
.y1f1{bottom:299.104500px;}
.y112{bottom:300.672000px;}
.y55{bottom:308.563500px;}
.y13f{bottom:308.959500px;}
.yb5{bottom:309.749393px;}
.y2a{bottom:310.894500px;}
.y173{bottom:312.114000px;}
.y1a1{bottom:313.743000px;}
.y87{bottom:314.467500px;}
.y1c7{bottom:315.342000px;}
.y111{bottom:318.604500px;}
.y5e{bottom:321.090000px;}
.yb4{bottom:321.158174px;}
.yb9{bottom:322.367415px;}
.ye2{bottom:325.434000px;}
.y54{bottom:326.496000px;}
.y13e{bottom:326.892000px;}
.y29{bottom:328.827000px;}
.y1f0{bottom:329.586000px;}
.y172{bottom:330.046500px;}
.y1a0{bottom:331.675500px;}
.y110{bottom:336.538500px;}
.y86{bottom:338.575500px;}
.ye1{bottom:343.366500px;}
.y1c6{bottom:343.462500px;}
.y53{bottom:344.430000px;}
.y13d{bottom:344.824500px;}
.y28{bottom:346.759500px;}
.y1ef{bottom:347.518500px;}
.y171{bottom:347.979000px;}
.y10f{bottom:354.471000px;}
.y19f{bottom:354.583500px;}
.yba{bottom:356.296027px;}
.ye0{bottom:361.299000px;}
.y1c5{bottom:361.395000px;}
.y52{bottom:362.362500px;}
.y13c{bottom:362.757000px;}
.y27{bottom:364.692000px;}
.y1ee{bottom:365.451000px;}
.y170{bottom:367.578000px;}
.yb7{bottom:367.905203px;}
.y85{bottom:370.159500px;}
.y10e{bottom:372.403500px;}
.ydf{bottom:379.231500px;}
.y1c4{bottom:379.327500px;}
.y51{bottom:380.295000px;}
.y13b{bottom:380.689500px;}
.y26{bottom:382.624500px;}
.y19e{bottom:383.253000px;}
.y1ed{bottom:383.385000px;}
.y16f{bottom:385.510500px;}
.y84{bottom:388.092000px;}
.y10d{bottom:390.336000px;}
.yde{bottom:397.164000px;}
.y1c3{bottom:397.261500px;}
.y50{bottom:398.227500px;}
.y25{bottom:400.557000px;}
.y19d{bottom:401.185500px;}
.y1ec{bottom:401.317500px;}
.ybb{bottom:402.160173px;}
.y16e{bottom:403.444500px;}
.y13a{bottom:403.669500px;}
.y83{bottom:406.024500px;}
.yaf{bottom:406.548254px;}
.y10c{bottom:408.268500px;}
.ydd{bottom:415.098000px;}
.y1c2{bottom:415.194000px;}
.y4f{bottom:416.160000px;}
.yae{bottom:417.955890px;}
.y24{bottom:418.491000px;}
.y19c{bottom:419.118000px;}
.y1eb{bottom:419.250000px;}
.yb1{bottom:420.319407px;}
.y16d{bottom:421.377000px;}
.y82{bottom:423.957000px;}
.y10b{bottom:426.202500px;}
.yad{bottom:429.364670px;}
.yb0{bottom:431.727043px;}
.y139{bottom:432.514500px;}
.ydc{bottom:433.030500px;}
.y1c1{bottom:433.126500px;}
.y4e{bottom:434.094000px;}
.y23{bottom:436.423500px;}
.y19b{bottom:437.050500px;}
.y1ea{bottom:437.182500px;}
.y81{bottom:441.891000px;}
.y10a{bottom:448.161000px;}
.y16c{bottom:449.103000px;}
.y138{bottom:450.447000px;}
.ydb{bottom:450.963000px;}
.y1c0{bottom:451.059000px;}
.y4d{bottom:452.026500px;}
.y22{bottom:454.356000px;}
.y19a{bottom:454.984500px;}
.y1e9{bottom:455.115000px;}
.y80{bottom:463.696500px;}
.y109{bottom:466.093500px;}
.y169{bottom:466.735500px;}
.y137{bottom:468.379500px;}
.yda{bottom:468.895500px;}
.y21{bottom:472.288500px;}
.y4c{bottom:472.354500px;}
.yb8{bottom:472.434736px;}
.y199{bottom:472.917000px;}
.y1e8{bottom:473.047500px;}
.y1bf{bottom:473.740500px;}
.yb6{bottom:478.732868px;}
.y16b{bottom:480.933000px;}
.y7f{bottom:481.630500px;}
.y16a{bottom:485.415000px;}
.y136{bottom:486.313500px;}
.yd9{bottom:486.828000px;}
.y108{bottom:488.052000px;}
.y4b{bottom:490.288500px;}
.y198{bottom:490.849500px;}
.y1e7{bottom:490.981500px;}
.y20{bottom:496.732500px;}
.y168{bottom:497.391000px;}
.y7e{bottom:499.563000px;}
.y1be{bottom:501.862500px;}
.y135{bottom:504.246000px;}
.yd8{bottom:504.760500px;}
.y107{bottom:505.984500px;}
.y4a{bottom:508.221000px;}
.y197{bottom:508.782000px;}
.y1e6{bottom:508.914000px;}
.y165{bottom:515.023500px;}
.y7d{bottom:517.495500px;}
.y1bd{bottom:519.795000px;}
.yac{bottom:520.421925px;}
.y134{bottom:522.178500px;}
.y106{bottom:523.917000px;}
.yd7{bottom:525.936000px;}
.y49{bottom:526.153500px;}
.y196{bottom:526.714500px;}
.y1e5{bottom:526.846500px;}
.yab{bottom:527.166652px;}
.y167{bottom:529.219500px;}
.y1f{bottom:531.463500px;}
.y166{bottom:533.703000px;}
.y7c{bottom:535.428000px;}
.y1bc{bottom:537.727500px;}
.y133{bottom:540.111000px;}
.y105{bottom:541.851000px;}
.y48{bottom:544.086000px;}
.y1e4{bottom:544.779000px;}
.y1e{bottom:546.406500px;}
.y195{bottom:547.797000px;}
.yd6{bottom:548.997000px;}
.y7b{bottom:553.360500px;}
.y164{bottom:554.935500px;}
.y1bb{bottom:555.660000px;}
.y104{bottom:559.783500px;}
.y132{bottom:561.237000px;}
.y1d{bottom:561.351000px;}
.y47{bottom:562.018500px;}
.y1e3{bottom:562.711500px;}
.y194{bottom:565.731000px;}
.y7a{bottom:571.294500px;}
.y163{bottom:572.868000px;}
.yaa{bottom:573.111000px;}
.y1ba{bottom:573.592500px;}
.y1c{bottom:576.595500px;}
.y103{bottom:577.716000px;}
.yd5{bottom:578.038500px;}
.y46{bottom:579.952500px;}
.y1e2{bottom:580.645500px;}
.y193{bottom:588.637500px;}
.y79{bottom:589.227000px;}
.y131{bottom:589.689000px;}
.y162{bottom:590.800500px;}
.ya9{bottom:591.043500px;}
.y1b9{bottom:591.525000px;}
.y1b{bottom:591.540000px;}
.y102{bottom:595.648500px;}
.yd4{bottom:595.971000px;}
.y45{bottom:597.700500px;}
.y1e1{bottom:598.578000px;}
.y1a{bottom:606.483000px;}
.y78{bottom:607.159500px;}
.y161{bottom:608.733000px;}
.ya8{bottom:608.976000px;}
.y1b8{bottom:609.469500px;}
.y101{bottom:613.581000px;}
.yd3{bottom:613.903500px;}
.y44{bottom:615.633000px;}
.y192{bottom:617.307000px;}
.y130{bottom:618.139500px;}
.y1e0{bottom:620.110500px;}
.y19{bottom:621.427500px;}
.y77{bottom:625.092000px;}
.y160{bottom:626.667000px;}
.ya7{bottom:626.910000px;}
.y1b7{bottom:627.403500px;}
.y100{bottom:631.515000px;}
.yd2{bottom:631.836000px;}
.y43{bottom:633.567000px;}
.y191{bottom:635.239500px;}
.y12f{bottom:636.072000px;}
.y18{bottom:636.372000px;}
.y76{bottom:643.024500px;}
.y1df{bottom:644.487000px;}
.ya6{bottom:644.842500px;}
.y1b6{bottom:645.336000px;}
.y15f{bottom:646.266000px;}
.yff{bottom:649.447500px;}
.yd1{bottom:649.770000px;}
.y17{bottom:651.315000px;}
.y42{bottom:651.499500px;}
.y12e{bottom:654.006000px;}
.y190{bottom:658.338000px;}
.y75{bottom:660.957000px;}
.ya5{bottom:662.775000px;}
.y1b5{bottom:663.268500px;}
.y15e{bottom:664.198500px;}
.y16{bottom:666.259500px;}
.yfe{bottom:667.380000px;}
.yd0{bottom:667.702500px;}
.y41{bottom:669.432000px;}
.y12d{bottom:671.938500px;}
.y1de{bottom:674.968500px;}
.y74{bottom:678.891000px;}
.ya4{bottom:680.707500px;}
.y1b4{bottom:681.201000px;}
.y15{bottom:681.204000px;}
.y15d{bottom:682.131000px;}
.yfd{bottom:685.312500px;}
.ycf{bottom:685.635000px;}
.y18f{bottom:687.007500px;}
.y40{bottom:687.364500px;}
.y1dd{bottom:692.901000px;}
.y12c{bottom:693.064500px;}
.y14{bottom:696.147000px;}
.y73{bottom:696.823500px;}
.ya3{bottom:698.640000px;}
.y1b3{bottom:699.133500px;}
.y15c{bottom:700.063500px;}
.yfc{bottom:703.245000px;}
.yce{bottom:703.567500px;}
.y18e{bottom:704.940000px;}
.y3f{bottom:705.297000px;}
.y1dc{bottom:710.835000px;}
.y12b{bottom:710.997000px;}
.y13{bottom:711.091500px;}
.ya2{bottom:716.572500px;}
.y72{bottom:718.630500px;}
.y15b{bottom:719.107500px;}
.yfb{bottom:721.177500px;}
.ycd{bottom:721.500000px;}
.y1b2{bottom:721.815000px;}
.y203{bottom:722.149500px;}
.y18d{bottom:722.872500px;}
.y3e{bottom:723.229500px;}
.y12{bottom:726.036000px;}
.y1db{bottom:728.767500px;}
.y12a{bottom:728.929500px;}
.ya1{bottom:734.506500px;}
.y202{bottom:735.600000px;}
.y71{bottom:736.563000px;}
.y15a{bottom:737.040000px;}
.yfa{bottom:739.111500px;}
.ycc{bottom:739.432500px;}
.y18c{bottom:740.806500px;}
.y11{bottom:740.979000px;}
.y1da{bottom:746.700000px;}
.y201{bottom:749.049000px;}
.y1b1{bottom:749.937000px;}
.y129{bottom:751.909500px;}
.ya0{bottom:752.439000px;}
.y159{bottom:754.972500px;}
.y10{bottom:755.923500px;}
.yf9{bottom:757.044000px;}
.ycb{bottom:757.366500px;}
.y18b{bottom:758.739000px;}
.y3d{bottom:758.911500px;}
.y70{bottom:760.671000px;}
.y200{bottom:762.498000px;}
.y1d9{bottom:764.632500px;}
.y1b0{bottom:767.869500px;}
.y9f{bottom:770.371500px;}
.yf{bottom:770.868000px;}
.y158{bottom:772.905000px;}
.yf8{bottom:774.976500px;}
.yca{bottom:775.299000px;}
.y1ff{bottom:775.948500px;}
.y18a{bottom:776.671500px;}
.y3c{bottom:776.844000px;}
.y128{bottom:780.754500px;}
.y1d8{bottom:782.565000px;}
.y1af{bottom:785.802000px;}
.ye{bottom:785.811000px;}
.y9e{bottom:788.304000px;}
.y1fe{bottom:789.397500px;}
.y6f{bottom:792.255000px;}
.yf7{bottom:792.909000px;}
.y3b{bottom:794.778000px;}
.yc9{bottom:796.474500px;}
.y127{bottom:798.687000px;}
.y157{bottom:799.434000px;}
.yd{bottom:800.755500px;}
.y1fd{bottom:802.846500px;}
.y1ae{bottom:803.734500px;}
.y1d7{bottom:806.218500px;}
.y9d{bottom:809.691000px;}
.y6e{bottom:810.187500px;}
.yf6{bottom:810.841500px;}
.y3a{bottom:812.710500px;}
.y189{bottom:814.735500px;}
.yc{bottom:815.698500px;}
.y1fc{bottom:816.297000px;}
.y126{bottom:816.619500px;}
.yc8{bottom:819.534000px;}
.y1ad{bottom:826.416000px;}
.y6d{bottom:828.120000px;}
.y188{bottom:828.186000px;}
.yf5{bottom:828.774000px;}
.y1fb{bottom:829.746000px;}
.yb{bottom:830.643000px;}
.y9c{bottom:833.103000px;}
.y125{bottom:834.553500px;}
.y1d6{bottom:836.700000px;}
.y187{bottom:841.635000px;}
.y1fa{bottom:843.196500px;}
.ya{bottom:845.587500px;}
.y6c{bottom:846.052500px;}
.y39{bottom:848.575500px;}
.y156{bottom:850.713000px;}
.yf4{bottom:850.734000px;}
.y1ac{bottom:854.538000px;}
.y1d5{bottom:854.632500px;}
.y186{bottom:855.667500px;}
.y1f9{bottom:856.645500px;}
.y9{bottom:860.530500px;}
.y9b{bottom:862.996500px;}
.y124{bottom:863.004000px;}
.y6b{bottom:863.986500px;}
.y155{bottom:864.162000px;}
.y38{bottom:866.508000px;}
.yf3{bottom:868.666500px;}
.y1f8{bottom:870.094500px;}
.y1ab{bottom:872.470500px;}
.y1d4{bottom:872.565000px;}
.y8{bottom:875.475000px;}
.y185{bottom:877.507500px;}
.y9a{bottom:880.929000px;}
.y123{bottom:881.368500px;}
.y6a{bottom:881.919000px;}
.y1f7{bottom:883.545000px;}
.y37{bottom:884.440500px;}
.yc7{bottom:884.442000px;}
.yf2{bottom:887.335500px;}
.y7{bottom:890.419500px;}
.y1d3{bottom:890.499000px;}
.y1aa{bottom:895.182000px;}
.y1f6{bottom:896.994000px;}
.y99{bottom:898.861500px;}
.y150{bottom:898.954500px;}
.y122{bottom:899.301000px;}
.y69{bottom:899.851500px;}
.y36{bottom:902.374500px;}
.yf1{bottom:905.269500px;}
.y6{bottom:905.362500px;}
.y184{bottom:908.329500px;}
.y1d2{bottom:908.431500px;}
.y1f5{bottom:910.443000px;}
.y98{bottom:916.794000px;}
.y121{bottom:917.233500px;}
.y68{bottom:917.784000px;}
.y146{bottom:918.387000px;}
.y5{bottom:920.307000px;}
.y183{bottom:921.780000px;}
.y151{bottom:923.166000px;}
.y1a9{bottom:923.302500px;}
.y1f4{bottom:923.893500px;}
.y1d1{bottom:926.364000px;}
.yf0{bottom:929.628000px;}
.y147{bottom:931.189500px;}
.y120{bottom:935.166000px;}
.y67{bottom:936.346500px;}
.yc6{bottom:938.239500px;}
.y97{bottom:940.756500px;}
.y1a8{bottom:941.235000px;}
.y1d0{bottom:944.296500px;}
.y1f3{bottom:946.084500px;}
.y154{bottom:948.402000px;}
.y148{bottom:949.359000px;}
.y11f{bottom:953.100000px;}
.y66{bottom:954.279000px;}
.yc5{bottom:956.172000px;}
.y182{bottom:958.393500px;}
.y1a7{bottom:959.167500px;}
.yef{bottom:961.825500px;}
.y1cf{bottom:962.229000px;}
.y153{bottom:965.793000px;}
.y149{bottom:967.527000px;}
.y96{bottom:970.650000px;}
.y11e{bottom:971.032500px;}
.y65{bottom:972.211500px;}
.y4{bottom:973.521000px;}
.yc4{bottom:974.104500px;}
.y181{bottom:976.326000px;}
.y1a6{bottom:977.100000px;}
.yee{bottom:979.758000px;}
.y1ce{bottom:980.161500px;}
.y14a{bottom:985.696500px;}
.y95{bottom:988.584000px;}
.y64{bottom:990.144000px;}
.y1f2{bottom:992.037000px;}
.yc3{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y11d{bottom:994.012500px;}
.y180{bottom:994.260000px;}
.y1a5{bottom:995.034000px;}
.y1cd{bottom:998.095500px;}
.yed{bottom:1003.714500px;}
.y14b{bottom:1003.866000px;}
.y94{bottom:1006.516500px;}
.y63{bottom:1008.076500px;}
.yc2{bottom:1009.971000px;}
.yeb{bottom:1011.708000px;}
.y17f{bottom:1012.192500px;}
.y1a4{bottom:1012.966500px;}
.y1cc{bottom:1016.028000px;}
.yea{bottom:1021.347000px;}
.y14c{bottom:1022.035500px;}
.y11c{bottom:1022.856000px;}
.y93{bottom:1024.449000px;}
.y62{bottom:1026.009000px;}
.yc1{bottom:1027.903500px;}
.y1cb{bottom:1033.960500px;}
.y17e{bottom:1035.099000px;}
.yec{bottom:1035.543000px;}
.y1a3{bottom:1035.648000px;}
.y2{bottom:1039.309500px;}
.y14d{bottom:1040.205000px;}
.y11b{bottom:1040.790000px;}
.y92{bottom:1042.381500px;}
.y61{bottom:1043.943000px;}
.yc0{bottom:1045.836000px;}
.y1ca{bottom:1051.893000px;}
.y14e{bottom:1058.373000px;}
.y11a{bottom:1058.722500px;}
.y91{bottom:1063.768500px;}
.y60{bottom:1068.049500px;}
.y1c9{bottom:1075.257000px;}
.y14f{bottom:1076.542500px;}
.y119{bottom:1076.655000px;}
.y1{bottom:1081.152000px;}
.y90{bottom:1081.701000px;}
.y152{bottom:1098.034500px;}
.y8f{bottom:1099.633500px;}
.y5f{bottom:1099.635000px;}
.h13{height:2.391024px;}
.hd{height:15.696890px;}
.hf{height:15.697083px;}
.he{height:15.697457px;}
.hc{height:15.697852px;}
.hb{height:28.256323px;}
.h1a{height:29.415488px;}
.h14{height:31.382100px;}
.h10{height:32.900573px;}
.h1b{height:33.187496px;}
.h1d{height:35.865450px;}
.h18{height:36.421517px;}
.h19{height:37.013299px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h1c{height:40.728624px;}
.h3{height:40.826735px;}
.h6{height:41.125613px;}
.h7{height:41.484266px;}
.h9{height:44.831700px;}
.h2{height:45.238339px;}
.ha{height:46.912536px;}
.h11{height:53.072100px;}
.h17{height:54.093488px;}
.h16{height:54.099488px;}
.h1{height:98.701718px;}
.h15{height:104.607024px;}
.h8{height:117.773438px;}
.h12{height:144.656100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:48.000000px;}
.x5{left:73.446000px;}
.x4{left:88.390500px;}
.x20{left:89.557500px;}
.x38{left:98.329500px;}
.x1{left:101.638500px;}
.xc{left:103.479000px;}
.xd{left:109.804500px;}
.x37{left:115.936500px;}
.x28{left:167.811000px;}
.x3a{left:201.120000px;}
.x6{left:203.430000px;}
.x39{left:207.531000px;}
.x26{left:217.026000px;}
.x27{left:226.507500px;}
.x36{left:238.953000px;}
.x3{left:270.528000px;}
.x2{left:400.875000px;}
.x8{left:467.967000px;}
.x1a{left:471.768782px;}
.x3c{left:473.944500px;}
.x31{left:475.057500px;}
.x25{left:480.447000px;}
.x7{left:482.910000px;}
.x2b{left:484.990500px;}
.x3d{left:495.355500px;}
.x9{left:498.000000px;}
.xf{left:499.575000px;}
.x13{left:500.914249px;}
.xe{left:504.325500px;}
.x12{left:505.904660px;}
.x22{left:509.203500px;}
.x21{left:511.791000px;}
.x29{left:516.999000px;}
.x11{left:518.175712px;}
.xa{left:527.893500px;}
.x23{left:554.157000px;}
.x17{left:555.749226px;}
.x16{left:566.866002px;}
.x32{left:568.132500px;}
.x33{left:569.796000px;}
.x24{left:578.782500px;}
.x2c{left:583.566000px;}
.x2f{left:593.113500px;}
.x1b{left:600.761406px;}
.x35{left:603.681000px;}
.x3b{left:614.418000px;}
.x1f{left:631.642867px;}
.x1e{left:637.823053px;}
.x30{left:652.342500px;}
.x14{left:655.199028px;}
.x2a{left:657.940500px;}
.x10{left:663.546916px;}
.x15{left:672.024203px;}
.x2d{left:688.723500px;}
.x2e{left:699.106500px;}
.x1d{left:700.455118px;}
.x1c{left:718.044084px;}
.x19{left:786.213925px;}
.x18{left:790.337485px;}
.x34{left:827.130000px;}
@media print{
.v7{vertical-align:-9.594667pt;}
.v2{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:15.002667pt;}
.v1{vertical-align:16.583301pt;}
.v3{vertical-align:19.280000pt;}
.v9{vertical-align:21.941333pt;}
.v8{vertical-align:90.858667pt;}
.v6{vertical-align:100.688000pt;}
.v5{vertical-align:125.130667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000058pt;}
.ls50{letter-spacing:0.000232pt;}
.ls5e{letter-spacing:0.001148pt;}
.ls52{letter-spacing:0.001518pt;}
.ls36{letter-spacing:0.002225pt;}
.ls62{letter-spacing:0.002494pt;}
.ls63{letter-spacing:0.010069pt;}
.ls32{letter-spacing:0.010520pt;}
.ls4d{letter-spacing:0.011890pt;}
.ls60{letter-spacing:0.015990pt;}
.ls51{letter-spacing:0.016685pt;}
.ls1e{letter-spacing:0.019719pt;}
.ls17{letter-spacing:0.021100pt;}
.ls3a{letter-spacing:0.021354pt;}
.ls2c{letter-spacing:0.023431pt;}
.ls47{letter-spacing:0.027304pt;}
.ls22{letter-spacing:0.212535pt;}
.ls38{letter-spacing:0.421815pt;}
.ls5a{letter-spacing:1.275216pt;}
.ls19{letter-spacing:1.338970pt;}
.ls1b{letter-spacing:1.434614pt;}
.ls4e{letter-spacing:1.487748pt;}
.ls5d{letter-spacing:1.827810pt;}
.ls29{letter-spacing:1.912819pt;}
.ls57{letter-spacing:2.108364pt;}
.ls59{letter-spacing:2.125360pt;}
.ls58{letter-spacing:2.142370pt;}
.ls2{letter-spacing:2.167867pt;}
.ls2b{letter-spacing:2.210374pt;}
.ls0{letter-spacing:2.635446pt;}
.ls42{letter-spacing:2.652911pt;}
.ls1c{letter-spacing:2.652940pt;}
.ls18{letter-spacing:2.655879pt;}
.ls10{letter-spacing:2.656546pt;}
.ls7{letter-spacing:2.656693pt;}
.ls48{letter-spacing:2.657014pt;}
.ls1f{letter-spacing:2.657806pt;}
.lsf{letter-spacing:2.658245pt;}
.ls5b{letter-spacing:2.661806pt;}
.lsc{letter-spacing:2.677954pt;}
.ls40{letter-spacing:4.038174pt;}
.ls4{letter-spacing:4.303843pt;}
.ls5f{letter-spacing:4.390279pt;}
.ls28{letter-spacing:4.516379pt;}
.ls27{letter-spacing:4.728914pt;}
.ls6{letter-spacing:7.385607pt;}
.ls46{letter-spacing:8.373759pt;}
.ls43{letter-spacing:8.873356pt;}
.ls61{letter-spacing:9.262012pt;}
.ls5c{letter-spacing:10.187139pt;}
.ls1a{letter-spacing:11.511845pt;}
.ls1d{letter-spacing:11.795718pt;}
.ls4a{letter-spacing:11.805197pt;}
.ls24{letter-spacing:12.008254pt;}
.ls3e{letter-spacing:12.752128pt;}
.ls3d{letter-spacing:12.964663pt;}
.ls54{letter-spacing:13.761671pt;}
.ls23{letter-spacing:14.718081pt;}
.ls5{letter-spacing:14.771215pt;}
.ls35{letter-spacing:15.143152pt;}
.ls25{letter-spacing:15.887026pt;}
.ls3f{letter-spacing:17.374774pt;}
.ls34{letter-spacing:17.799845pt;}
.ls9{letter-spacing:18.012381pt;}
.lsa{letter-spacing:18.065515pt;}
.ls33{letter-spacing:18.224916pt;}
.ls31{letter-spacing:18.543719pt;}
.lsb{letter-spacing:18.596853pt;}
.ls37{letter-spacing:18.809389pt;}
.ls56{letter-spacing:19.659531pt;}
.ls55{letter-spacing:19.712665pt;}
.ls21{letter-spacing:19.818932pt;}
.ls30{letter-spacing:20.244003pt;}
.ls3c{letter-spacing:20.297137pt;}
.ls2a{letter-spacing:20.509673pt;}
.ls26{letter-spacing:21.359814pt;}
.ls12{letter-spacing:23.485169pt;}
.ls2e{letter-spacing:24.600980pt;}
.ls4c{letter-spacing:25.344854pt;}
.ls11{letter-spacing:25.557390pt;}
.ls41{letter-spacing:25.610524pt;}
.ls44{letter-spacing:25.663658pt;}
.ls2f{letter-spacing:26.248130pt;}
.ls13{letter-spacing:26.566933pt;}
.ls3b{letter-spacing:27.151406pt;}
.lsd{letter-spacing:27.629611pt;}
.ls15{letter-spacing:29.329894pt;}
.ls14{letter-spacing:30.764509pt;}
.ls4f{letter-spacing:31.030178pt;}
.ls1{letter-spacing:31.880320pt;}
.ls16{letter-spacing:32.411659pt;}
.lse{letter-spacing:39.425329pt;}
.ls8{letter-spacing:44.791850pt;}
.ls20{letter-spacing:84.664584pt;}
.ls39{letter-spacing:355.642001pt;}
.ls49{letter-spacing:379.588343pt;}
.ls4b{letter-spacing:398.185197pt;}
.ls53{letter-spacing:423.264382pt;}
.ls2d{letter-spacing:452.105660pt;}
.wsb7{word-spacing:-34.611401pt;}
.wsbc{word-spacing:-28.118362pt;}
.wsb6{word-spacing:-25.791179pt;}
.wsbd{word-spacing:-25.738045pt;}
.ws5a{word-spacing:-19.840186pt;}
.wsde{word-spacing:-19.733918pt;}
.wsdc{word-spacing:-13.661409pt;}
.ws4e{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-13.262246pt;}
.wsb1{word-spacing:-10.626800pt;}
.wsdd{word-spacing:-10.353472pt;}
.wsdb{word-spacing:-9.701537pt;}
.ws88{word-spacing:-9.126719pt;}
.wsfe{word-spacing:-8.501467pt;}
.wse5{word-spacing:-2.656693pt;}
.wsfd{word-spacing:-2.125360pt;}
.wse{word-spacing:-0.908595pt;}
.ws62{word-spacing:-0.903276pt;}
.ws70{word-spacing:-0.850142pt;}
.ws5d{word-spacing:-0.743874pt;}
.ws118{word-spacing:-0.690740pt;}
.ws22{word-spacing:-0.584473pt;}
.wsed{word-spacing:-0.531339pt;}
.ws3c{word-spacing:-0.425071pt;}
.wsec{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsf4{word-spacing:-0.212535pt;}
.wsf9{word-spacing:-0.106268pt;}
.ws97{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws102{word-spacing:-0.042507pt;}
.wsbe{word-spacing:-0.037194pt;}
.wsd0{word-spacing:-0.010667pt;}
.wsfb{word-spacing:-0.008541pt;}
.ws54{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.042467pt;}
.wsbb{word-spacing:0.053134pt;}
.ws13d{word-spacing:0.085014pt;}
.ws9e{word-spacing:0.106268pt;}
.wsc9{word-spacing:0.318803pt;}
.ws6{word-spacing:0.334746pt;}
.wsca{word-spacing:0.371937pt;}
.ws10a{word-spacing:0.425071pt;}
.wsf8{word-spacing:0.478205pt;}
.wsb0{word-spacing:0.584473pt;}
.wsc6{word-spacing:0.637606pt;}
.wsc{word-spacing:0.669491pt;}
.wsc7{word-spacing:0.690740pt;}
.ws110{word-spacing:0.743874pt;}
.ws49{word-spacing:0.956410pt;}
.ws8f{word-spacing:1.009543pt;}
.ws6a{word-spacing:1.062677pt;}
.ws38{word-spacing:1.168945pt;}
.ws75{word-spacing:1.222079pt;}
.ws109{word-spacing:1.328347pt;}
.ws48{word-spacing:1.381481pt;}
.ws9f{word-spacing:1.487748pt;}
.ws33{word-spacing:1.540882pt;}
.ws60{word-spacing:1.647150pt;}
.ws79{word-spacing:1.700284pt;}
.ws81{word-spacing:1.753418pt;}
.ws4f{word-spacing:1.806551pt;}
.ws5f{word-spacing:1.859685pt;}
.ws35{word-spacing:1.912819pt;}
.ws8a{word-spacing:2.028022pt;}
.ws8c{word-spacing:2.028047pt;}
.ws8b{word-spacing:2.028095pt;}
.ws89{word-spacing:2.028146pt;}
.ws57{word-spacing:2.125355pt;}
.ws99{word-spacing:2.178489pt;}
.ws10b{word-spacing:2.231622pt;}
.wse7{word-spacing:2.284756pt;}
.ws8d{word-spacing:2.337896pt;}
.ws120{word-spacing:2.391024pt;}
.ws11e{word-spacing:2.444158pt;}
.ws6f{word-spacing:2.497292pt;}
.ws21{word-spacing:2.550426pt;}
.ws11a{word-spacing:2.603559pt;}
.ws11c{word-spacing:2.656693pt;}
.ws11b{word-spacing:2.709827pt;}
.wseb{word-spacing:2.762961pt;}
.ws7c{word-spacing:2.869229pt;}
.ws13f{word-spacing:2.932997pt;}
.wsd4{word-spacing:2.975497pt;}
.ws2d{word-spacing:3.028630pt;}
.ws87{word-spacing:3.030071pt;}
.ws63{word-spacing:3.081764pt;}
.ws10e{word-spacing:3.134898pt;}
.ws30{word-spacing:3.188032pt;}
.ws36{word-spacing:3.241166pt;}
.ws129{word-spacing:3.347434pt;}
.ws136{word-spacing:3.453701pt;}
.ws6c{word-spacing:3.506835pt;}
.wscc{word-spacing:3.559969pt;}
.ws13b{word-spacing:3.655619pt;}
.wsf7{word-spacing:3.666237pt;}
.ws12c{word-spacing:3.772505pt;}
.ws17{word-spacing:3.777843pt;}
.wse2{word-spacing:3.825638pt;}
.ws134{word-spacing:3.878772pt;}
.ws69{word-spacing:3.931906pt;}
.ws10d{word-spacing:4.038174pt;}
.wsa6{word-spacing:4.091308pt;}
.wsfc{word-spacing:4.216727pt;}
.wse3{word-spacing:4.250709pt;}
.ws8e{word-spacing:4.250720pt;}
.ws11{word-spacing:4.256051pt;}
.ws2e{word-spacing:4.303843pt;}
.wsf2{word-spacing:4.410111pt;}
.ws13{word-spacing:4.495155pt;}
.ws66{word-spacing:4.516379pt;}
.ws4{word-spacing:4.590797pt;}
.wsc0{word-spacing:4.622646pt;}
.ws7{word-spacing:4.638618pt;}
.ws3a{word-spacing:4.675780pt;}
.ws9a{word-spacing:4.728914pt;}
.ws71{word-spacing:4.782048pt;}
.wse9{word-spacing:4.782080pt;}
.ws8{word-spacing:4.877722pt;}
.wsb3{word-spacing:4.941450pt;}
.wsd6{word-spacing:4.994583pt;}
.ws28{word-spacing:5.047717pt;}
.wsa{word-spacing:5.069005pt;}
.ws13e{word-spacing:5.143371pt;}
.ws46{word-spacing:5.153985pt;}
.ws52{word-spacing:5.207119pt;}
.ws15{word-spacing:5.212467pt;}
.ws55{word-spacing:5.260226pt;}
.wsb{word-spacing:5.308109pt;}
.ws2{word-spacing:5.313387pt;}
.wsff{word-spacing:5.313400pt;}
.ws24{word-spacing:5.366521pt;}
.wsee{word-spacing:5.419654pt;}
.ws116{word-spacing:5.472788pt;}
.ws3d{word-spacing:5.632190pt;}
.wsa7{word-spacing:5.738458pt;}
.ws139{word-spacing:5.738472pt;}
.ws20{word-spacing:5.791591pt;}
.wsb4{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws1a{word-spacing:5.977600pt;}
.wse6{word-spacing:6.004127pt;}
.wsd5{word-spacing:6.057261pt;}
.ws6d{word-spacing:6.110395pt;}
.ws131{word-spacing:6.163529pt;}
.wsfa{word-spacing:6.216662pt;}
.ws23{word-spacing:6.269796pt;}
.ws126{word-spacing:6.322930pt;}
.ws13a{word-spacing:6.333573pt;}
.ws32{word-spacing:6.376064pt;}
.wsc2{word-spacing:6.535466pt;}
.ws31{word-spacing:6.588599pt;}
.ws27{word-spacing:6.641733pt;}
.ws53{word-spacing:6.694867pt;}
.wsd2{word-spacing:6.801135pt;}
.ws58{word-spacing:6.854269pt;}
.ws14{word-spacing:6.886195pt;}
.ws77{word-spacing:6.907403pt;}
.ws78{word-spacing:6.960537pt;}
.ws47{word-spacing:7.013670pt;}
.ws45{word-spacing:7.066804pt;}
.ws133{word-spacing:7.119938pt;}
.wsf1{word-spacing:7.173072pt;}
.wsef{word-spacing:7.226206pt;}
.ws138{word-spacing:7.226224pt;}
.wsea{word-spacing:7.268731pt;}
.ws5e{word-spacing:7.279340pt;}
.wsd8{word-spacing:7.332474pt;}
.wsc1{word-spacing:7.385607pt;}
.ws5b{word-spacing:7.491875pt;}
.ws4a{word-spacing:7.545009pt;}
.wsd3{word-spacing:7.598143pt;}
.ws113{word-spacing:7.651277pt;}
.ws7b{word-spacing:7.704411pt;}
.ws7a{word-spacing:7.970080pt;}
.ws6b{word-spacing:8.023214pt;}
.ws39{word-spacing:8.076348pt;}
.ws105{word-spacing:8.118875pt;}
.wsdf{word-spacing:8.129482pt;}
.ws43{word-spacing:8.182615pt;}
.ws80{word-spacing:8.235749pt;}
.ws5c{word-spacing:8.342017pt;}
.ws25{word-spacing:8.395151pt;}
.wsc4{word-spacing:8.554553pt;}
.ws50{word-spacing:8.713954pt;}
.ws115{word-spacing:8.767088pt;}
.ws51{word-spacing:8.873356pt;}
.wsc8{word-spacing:8.979623pt;}
.ws137{word-spacing:9.032757pt;}
.ws3b{word-spacing:9.085891pt;}
.ws59{word-spacing:9.139025pt;}
.ws2f{word-spacing:9.245293pt;}
.ws83{word-spacing:9.351561pt;}
.wsa8{word-spacing:9.404694pt;}
.ws12e{word-spacing:9.564096pt;}
.ws12f{word-spacing:9.617230pt;}
.wse1{word-spacing:9.670364pt;}
.ws61{word-spacing:9.776631pt;}
.wscb{word-spacing:9.829765pt;}
.ws41{word-spacing:9.936033pt;}
.wsce{word-spacing:9.989167pt;}
.ws124{word-spacing:10.148569pt;}
.ws18{word-spacing:10.185830pt;}
.wsb8{word-spacing:10.201702pt;}
.wsb9{word-spacing:10.254836pt;}
.wsa9{word-spacing:10.307970pt;}
.wsf3{word-spacing:10.361104pt;}
.ws128{word-spacing:10.414238pt;}
.ws72{word-spacing:10.467372pt;}
.ws7e{word-spacing:10.626773pt;}
.wsa2{word-spacing:10.679907pt;}
.wse0{word-spacing:10.733041pt;}
.wsa1{word-spacing:10.839309pt;}
.wsd{word-spacing:10.855322pt;}
.wsc3{word-spacing:10.892443pt;}
.ws7d{word-spacing:10.945577pt;}
.wsaa{word-spacing:10.998710pt;}
.ws114{word-spacing:11.104978pt;}
.wsd7{word-spacing:11.317514pt;}
.ws11d{word-spacing:11.370647pt;}
.wsa0{word-spacing:11.423781pt;}
.ws42{word-spacing:11.530049pt;}
.ws26{word-spacing:11.583183pt;}
.ws11f{word-spacing:11.795718pt;}
.ws3f{word-spacing:11.848852pt;}
.wsb2{word-spacing:12.008254pt;}
.ws6e{word-spacing:12.061388pt;}
.ws44{word-spacing:12.220789pt;}
.ws73{word-spacing:12.273923pt;}
.ws12{word-spacing:12.385587pt;}
.ws74{word-spacing:12.433325pt;}
.ws40{word-spacing:12.592726pt;}
.ws125{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws2b{word-spacing:12.911530pt;}
.wsda{word-spacing:12.964663pt;}
.ws65{word-spacing:13.017797pt;}
.wsba{word-spacing:13.177199pt;}
.ws4b{word-spacing:13.230333pt;}
.ws84{word-spacing:13.283467pt;}
.ws16{word-spacing:13.294182pt;}
.ws5{word-spacing:13.533286pt;}
.wse4{word-spacing:13.655404pt;}
.ws10f{word-spacing:13.708538pt;}
.ws10{word-spacing:13.868032pt;}
.ws130{word-spacing:14.027341pt;}
.wsf6{word-spacing:14.133609pt;}
.ws10c{word-spacing:14.186742pt;}
.ws29{word-spacing:14.346144pt;}
.ws82{word-spacing:14.399278pt;}
.ws68{word-spacing:14.558679pt;}
.ws67{word-spacing:14.611813pt;}
.wsd1{word-spacing:14.664947pt;}
.wsd9{word-spacing:14.718081pt;}
.wsad{word-spacing:14.824349pt;}
.ws9{word-spacing:14.872269pt;}
.ws13c{word-spacing:15.047549pt;}
.ws117{word-spacing:15.355687pt;}
.ws12d{word-spacing:15.461955pt;}
.wscf{word-spacing:15.515089pt;}
.ws3e{word-spacing:15.568223pt;}
.ws86{word-spacing:15.621357pt;}
.wsf{word-spacing:15.828685pt;}
.wsf5{word-spacing:15.833892pt;}
.ws1e{word-spacing:15.940160pt;}
.ws64{word-spacing:16.046428pt;}
.ws135{word-spacing:16.152695pt;}
.ws119{word-spacing:16.205829pt;}
.ws2a{word-spacing:16.471499pt;}
.ws111{word-spacing:16.577766pt;}
.ws12b{word-spacing:16.684034pt;}
.wsbf{word-spacing:16.790302pt;}
.ws108{word-spacing:17.002837pt;}
.ws19{word-spacing:17.119846pt;}
.ws127{word-spacing:17.321641pt;}
.wsa3{word-spacing:17.374774pt;}
.wsa5{word-spacing:17.427908pt;}
.wsac{word-spacing:17.852979pt;}
.ws85{word-spacing:17.906113pt;}
.ws112{word-spacing:17.959247pt;}
.wsf0{word-spacing:18.224916pt;}
.ws56{word-spacing:18.278050pt;}
.ws9b{word-spacing:18.543719pt;}
.ws76{word-spacing:18.596853pt;}
.ws121{word-spacing:18.649987pt;}
.ws4d{word-spacing:18.915657pt;}
.ws4c{word-spacing:18.968790pt;}
.wsc5{word-spacing:19.021924pt;}
.ws122{word-spacing:19.234460pt;}
.ws9c{word-spacing:19.446995pt;}
.ws9d{word-spacing:19.500129pt;}
.ws94{word-spacing:19.765798pt;}
.ws12a{word-spacing:19.872066pt;}
.ws34{word-spacing:20.031468pt;}
.ws132{word-spacing:20.084602pt;}
.ws123{word-spacing:20.244003pt;}
.wsa4{word-spacing:20.775342pt;}
.wsaf{word-spacing:23.697705pt;}
.wscd{word-spacing:26.141862pt;}
.wsb5{word-spacing:27.576477pt;}
.ws93{word-spacing:28.160949pt;}
.ws1d{word-spacing:29.840179pt;}
.wsab{word-spacing:31.136446pt;}
.ws98{word-spacing:31.508383pt;}
.ws96{word-spacing:31.561517pt;}
.wsae{word-spacing:31.827186pt;}
.ws95{word-spacing:33.049265pt;}
.ws91{word-spacing:38.256384pt;}
.ws90{word-spacing:39.690998pt;}
.ws1c{word-spacing:51.503002pt;}
.ws92{word-spacing:51.539851pt;}
.wse8{word-spacing:60.785961pt;}
.ws1b{word-spacing:63.458202pt;}
.ws106{word-spacing:150.645517pt;}
.ws101{word-spacing:152.600848pt;}
.ws100{word-spacing:157.744219pt;}
.ws103{word-spacing:162.462518pt;}
.ws107{word-spacing:166.755746pt;}
.ws104{word-spacing:178.572747pt;}
._1{margin-left:-14.154898pt;}
._0{margin-left:-10.201728pt;}
._1f{margin-left:-7.438741pt;}
._2{margin-left:-6.487669pt;}
._c{margin-left:-5.313387pt;}
._7{margin-left:-4.399514pt;}
._5{margin-left:-3.453701pt;}
._3{margin-left:-2.125355pt;}
._4{margin-left:-1.062677pt;}
._f{width:1.020173pt;}
._8{width:2.656693pt;}
._1b{width:3.606063pt;}
._19{width:5.791591pt;}
._11{width:7.279340pt;}
._9{width:13.867939pt;}
._6{width:15.897729pt;}
._b{width:17.055971pt;}
._1c{width:18.012381pt;}
._d{width:19.978334pt;}
._12{width:21.508619pt;}
._1a{width:22.587230pt;}
._13{width:24.600980pt;}
._10{width:26.566933pt;}
._a{width:27.948414pt;}
._e{width:29.170493pt;}
._18{width:31.189580pt;}
._28{width:32.730462pt;}
._14{width:34.643281pt;}
._17{width:36.449833pt;}
._20{width:37.937581pt;}
._16{width:60.466340pt;}
._23{width:63.760800pt;}
._22{width:68.861664pt;}
._1e{width:73.131558pt;}
._26{width:79.871029pt;}
._1d{width:85.408891pt;}
._27{width:89.095075pt;}
._24{width:153.280958pt;}
._25{width:207.860208pt;}
._21{width:267.667838pt;}
._15{width:366.528152pt;}
.fs9{font-size:20.280220pt;}
.fsb{font-size:20.280470pt;}
.fsa{font-size:20.280952pt;}
.fs8{font-size:20.281463pt;}
.fsc{font-size:26.566933pt;}
.fse{font-size:31.880533pt;}
.fsd{font-size:34.005867pt;}
.fs7{font-size:36.506877pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs6{font-size:106.666667pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:100.740000pt;}
.y34{bottom:116.680000pt;}
.ybf{bottom:116.681333pt;}
.y17d{bottom:130.036000pt;}
.ye9{bottom:132.620000pt;}
.y33{bottom:132.621333pt;}
.y5d{bottom:136.641333pt;}
.ybe{bottom:137.490667pt;}
.y17c{bottom:145.976000pt;}
.y32{bottom:148.561333pt;}
.y118{bottom:155.365333pt;}
.y5c{bottom:160.566667pt;}
.y17b{bottom:161.916000pt;}
.y31{bottom:164.501333pt;}
.y8e{bottom:167.945333pt;}
.ye8{bottom:169.058667pt;}
.y145{bottom:169.202667pt;}
.y5b{bottom:176.508000pt;}
.ybd{bottom:177.881333pt;}
.y17a{bottom:179.337333pt;}
.y30{bottom:180.441333pt;}
.y8d{bottom:183.885333pt;}
.y117{bottom:183.984000pt;}
.ybc{bottom:189.837333pt;}
.y5a{bottom:192.448000pt;}
.y144{bottom:194.842667pt;}
.ye7{bottom:194.873333pt;}
.y179{bottom:195.277333pt;}
.y2f{bottom:196.381333pt;}
.y8c{bottom:199.825333pt;}
.y116{bottom:199.925333pt;}
.y59{bottom:208.388000pt;}
.y143{bottom:210.782667pt;}
.ye6{bottom:210.813333pt;}
.y178{bottom:211.218667pt;}
.y2e{bottom:212.321333pt;}
.y8b{bottom:215.765333pt;}
.y115{bottom:219.444000pt;}
.y177{bottom:221.605333pt;}
.y58{bottom:224.328000pt;}
.y142{bottom:226.722667pt;}
.ye5{bottom:226.754667pt;}
.y1c8{bottom:228.261333pt;}
.y2d{bottom:228.262667pt;}
.y8a{bottom:231.705333pt;}
.y114{bottom:235.384000pt;}
.y174{bottom:237.278667pt;}
.yb3{bottom:238.945619pt;}
.y57{bottom:240.268000pt;}
.y141{bottom:242.664000pt;}
.ye4{bottom:242.694667pt;}
.y2c{bottom:244.202667pt;}
.y89{bottom:247.646667pt;}
.yb2{bottom:249.085740pt;}
.y176{bottom:249.897333pt;}
.y113{bottom:251.324000pt;}
.y175{bottom:253.882667pt;}
.y56{bottom:256.209333pt;}
.y140{bottom:258.604000pt;}
.y1a2{bottom:260.142667pt;}
.y2b{bottom:260.409333pt;}
.ye3{bottom:263.460000pt;}
.y88{bottom:263.586667pt;}
.y1f1{bottom:265.870667pt;}
.y112{bottom:267.264000pt;}
.y55{bottom:274.278667pt;}
.y13f{bottom:274.630667pt;}
.yb5{bottom:275.332794pt;}
.y2a{bottom:276.350667pt;}
.y173{bottom:277.434667pt;}
.y1a1{bottom:278.882667pt;}
.y87{bottom:279.526667pt;}
.y1c7{bottom:280.304000pt;}
.y111{bottom:283.204000pt;}
.y5e{bottom:285.413333pt;}
.yb4{bottom:285.473932pt;}
.yb9{bottom:286.548813pt;}
.ye2{bottom:289.274667pt;}
.y54{bottom:290.218667pt;}
.y13e{bottom:290.570667pt;}
.y29{bottom:292.290667pt;}
.y1f0{bottom:292.965333pt;}
.y172{bottom:293.374667pt;}
.y1a0{bottom:294.822667pt;}
.y110{bottom:299.145333pt;}
.y86{bottom:300.956000pt;}
.ye1{bottom:305.214667pt;}
.y1c6{bottom:305.300000pt;}
.y53{bottom:306.160000pt;}
.y13d{bottom:306.510667pt;}
.y28{bottom:308.230667pt;}
.y1ef{bottom:308.905333pt;}
.y171{bottom:309.314667pt;}
.y10f{bottom:315.085333pt;}
.y19f{bottom:315.185333pt;}
.yba{bottom:316.707580pt;}
.ye0{bottom:321.154667pt;}
.y1c5{bottom:321.240000pt;}
.y52{bottom:322.100000pt;}
.y13c{bottom:322.450667pt;}
.y27{bottom:324.170667pt;}
.y1ee{bottom:324.845333pt;}
.y170{bottom:326.736000pt;}
.yb7{bottom:327.026847pt;}
.y85{bottom:329.030667pt;}
.y10e{bottom:331.025333pt;}
.ydf{bottom:337.094667pt;}
.y1c4{bottom:337.180000pt;}
.y51{bottom:338.040000pt;}
.y13b{bottom:338.390667pt;}
.y26{bottom:340.110667pt;}
.y19e{bottom:340.669333pt;}
.y1ed{bottom:340.786667pt;}
.y16f{bottom:342.676000pt;}
.y84{bottom:344.970667pt;}
.y10d{bottom:346.965333pt;}
.yde{bottom:353.034667pt;}
.y1c3{bottom:353.121333pt;}
.y50{bottom:353.980000pt;}
.y25{bottom:356.050667pt;}
.y19d{bottom:356.609333pt;}
.y1ec{bottom:356.726667pt;}
.ybb{bottom:357.475710pt;}
.y16e{bottom:358.617333pt;}
.y13a{bottom:358.817333pt;}
.y83{bottom:360.910667pt;}
.yaf{bottom:361.376226pt;}
.y10c{bottom:362.905333pt;}
.ydd{bottom:368.976000pt;}
.y1c2{bottom:369.061333pt;}
.y4f{bottom:369.920000pt;}
.yae{bottom:371.516346pt;}
.y24{bottom:371.992000pt;}
.y19c{bottom:372.549333pt;}
.y1eb{bottom:372.666667pt;}
.yb1{bottom:373.617251pt;}
.y16d{bottom:374.557333pt;}
.y82{bottom:376.850667pt;}
.y10b{bottom:378.846667pt;}
.yad{bottom:381.657485pt;}
.yb0{bottom:383.757371pt;}
.y139{bottom:384.457333pt;}
.ydc{bottom:384.916000pt;}
.y1c1{bottom:385.001333pt;}
.y4e{bottom:385.861333pt;}
.y23{bottom:387.932000pt;}
.y19b{bottom:388.489333pt;}
.y1ea{bottom:388.606667pt;}
.y81{bottom:392.792000pt;}
.y10a{bottom:398.365333pt;}
.y16c{bottom:399.202667pt;}
.y138{bottom:400.397333pt;}
.ydb{bottom:400.856000pt;}
.y1c0{bottom:400.941333pt;}
.y4d{bottom:401.801333pt;}
.y22{bottom:403.872000pt;}
.y19a{bottom:404.430667pt;}
.y1e9{bottom:404.546667pt;}
.y80{bottom:412.174667pt;}
.y109{bottom:414.305333pt;}
.y169{bottom:414.876000pt;}
.y137{bottom:416.337333pt;}
.yda{bottom:416.796000pt;}
.y21{bottom:419.812000pt;}
.y4c{bottom:419.870667pt;}
.yb8{bottom:419.941987pt;}
.y199{bottom:420.370667pt;}
.y1e8{bottom:420.486667pt;}
.y1bf{bottom:421.102667pt;}
.yb6{bottom:425.540327pt;}
.y16b{bottom:427.496000pt;}
.y7f{bottom:428.116000pt;}
.y16a{bottom:431.480000pt;}
.y136{bottom:432.278667pt;}
.yd9{bottom:432.736000pt;}
.y108{bottom:433.824000pt;}
.y4b{bottom:435.812000pt;}
.y198{bottom:436.310667pt;}
.y1e7{bottom:436.428000pt;}
.y20{bottom:441.540000pt;}
.y168{bottom:442.125333pt;}
.y7e{bottom:444.056000pt;}
.y1be{bottom:446.100000pt;}
.y135{bottom:448.218667pt;}
.yd8{bottom:448.676000pt;}
.y107{bottom:449.764000pt;}
.y4a{bottom:451.752000pt;}
.y197{bottom:452.250667pt;}
.y1e6{bottom:452.368000pt;}
.y165{bottom:457.798667pt;}
.y7d{bottom:459.996000pt;}
.y1bd{bottom:462.040000pt;}
.yac{bottom:462.597267pt;}
.y134{bottom:464.158667pt;}
.y106{bottom:465.704000pt;}
.yd7{bottom:467.498667pt;}
.y49{bottom:467.692000pt;}
.y196{bottom:468.190667pt;}
.y1e5{bottom:468.308000pt;}
.yab{bottom:468.592580pt;}
.y167{bottom:470.417333pt;}
.y1f{bottom:472.412000pt;}
.y166{bottom:474.402667pt;}
.y7c{bottom:475.936000pt;}
.y1bc{bottom:477.980000pt;}
.y133{bottom:480.098667pt;}
.y105{bottom:481.645333pt;}
.y48{bottom:483.632000pt;}
.y1e4{bottom:484.248000pt;}
.y1e{bottom:485.694667pt;}
.y195{bottom:486.930667pt;}
.yd6{bottom:487.997333pt;}
.y7b{bottom:491.876000pt;}
.y164{bottom:493.276000pt;}
.y1bb{bottom:493.920000pt;}
.y104{bottom:497.585333pt;}
.y132{bottom:498.877333pt;}
.y1d{bottom:498.978667pt;}
.y47{bottom:499.572000pt;}
.y1e3{bottom:500.188000pt;}
.y194{bottom:502.872000pt;}
.y7a{bottom:507.817333pt;}
.y163{bottom:509.216000pt;}
.yaa{bottom:509.432000pt;}
.y1ba{bottom:509.860000pt;}
.y1c{bottom:512.529333pt;}
.y103{bottom:513.525333pt;}
.yd5{bottom:513.812000pt;}
.y46{bottom:515.513333pt;}
.y1e2{bottom:516.129333pt;}
.y193{bottom:523.233333pt;}
.y79{bottom:523.757333pt;}
.y131{bottom:524.168000pt;}
.y162{bottom:525.156000pt;}
.ya9{bottom:525.372000pt;}
.y1b9{bottom:525.800000pt;}
.y1b{bottom:525.813333pt;}
.y102{bottom:529.465333pt;}
.yd4{bottom:529.752000pt;}
.y45{bottom:531.289333pt;}
.y1e1{bottom:532.069333pt;}
.y1a{bottom:539.096000pt;}
.y78{bottom:539.697333pt;}
.y161{bottom:541.096000pt;}
.ya8{bottom:541.312000pt;}
.y1b8{bottom:541.750667pt;}
.y101{bottom:545.405333pt;}
.yd3{bottom:545.692000pt;}
.y44{bottom:547.229333pt;}
.y192{bottom:548.717333pt;}
.y130{bottom:549.457333pt;}
.y1e0{bottom:551.209333pt;}
.y19{bottom:552.380000pt;}
.y77{bottom:555.637333pt;}
.y160{bottom:557.037333pt;}
.ya7{bottom:557.253333pt;}
.y1b7{bottom:557.692000pt;}
.y100{bottom:561.346667pt;}
.yd2{bottom:561.632000pt;}
.y43{bottom:563.170667pt;}
.y191{bottom:564.657333pt;}
.y12f{bottom:565.397333pt;}
.y18{bottom:565.664000pt;}
.y76{bottom:571.577333pt;}
.y1df{bottom:572.877333pt;}
.ya6{bottom:573.193333pt;}
.y1b6{bottom:573.632000pt;}
.y15f{bottom:574.458667pt;}
.yff{bottom:577.286667pt;}
.yd1{bottom:577.573333pt;}
.y17{bottom:578.946667pt;}
.y42{bottom:579.110667pt;}
.y12e{bottom:581.338667pt;}
.y190{bottom:585.189333pt;}
.y75{bottom:587.517333pt;}
.ya5{bottom:589.133333pt;}
.y1b5{bottom:589.572000pt;}
.y15e{bottom:590.398667pt;}
.y16{bottom:592.230667pt;}
.yfe{bottom:593.226667pt;}
.yd0{bottom:593.513333pt;}
.y41{bottom:595.050667pt;}
.y12d{bottom:597.278667pt;}
.y1de{bottom:599.972000pt;}
.y74{bottom:603.458667pt;}
.ya4{bottom:605.073333pt;}
.y1b4{bottom:605.512000pt;}
.y15{bottom:605.514667pt;}
.y15d{bottom:606.338667pt;}
.yfd{bottom:609.166667pt;}
.ycf{bottom:609.453333pt;}
.y18f{bottom:610.673333pt;}
.y40{bottom:610.990667pt;}
.y1dd{bottom:615.912000pt;}
.y12c{bottom:616.057333pt;}
.y14{bottom:618.797333pt;}
.y73{bottom:619.398667pt;}
.ya3{bottom:621.013333pt;}
.y1b3{bottom:621.452000pt;}
.y15c{bottom:622.278667pt;}
.yfc{bottom:625.106667pt;}
.yce{bottom:625.393333pt;}
.y18e{bottom:626.613333pt;}
.y3f{bottom:626.930667pt;}
.y1dc{bottom:631.853333pt;}
.y12b{bottom:631.997333pt;}
.y13{bottom:632.081333pt;}
.ya2{bottom:636.953333pt;}
.y72{bottom:638.782667pt;}
.y15b{bottom:639.206667pt;}
.yfb{bottom:641.046667pt;}
.ycd{bottom:641.333333pt;}
.y1b2{bottom:641.613333pt;}
.y203{bottom:641.910667pt;}
.y18d{bottom:642.553333pt;}
.y3e{bottom:642.870667pt;}
.y12{bottom:645.365333pt;}
.y1db{bottom:647.793333pt;}
.y12a{bottom:647.937333pt;}
.ya1{bottom:652.894667pt;}
.y202{bottom:653.866667pt;}
.y71{bottom:654.722667pt;}
.y15a{bottom:655.146667pt;}
.yfa{bottom:656.988000pt;}
.ycc{bottom:657.273333pt;}
.y18c{bottom:658.494667pt;}
.y11{bottom:658.648000pt;}
.y1da{bottom:663.733333pt;}
.y201{bottom:665.821333pt;}
.y1b1{bottom:666.610667pt;}
.y129{bottom:668.364000pt;}
.ya0{bottom:668.834667pt;}
.y159{bottom:671.086667pt;}
.y10{bottom:671.932000pt;}
.yf9{bottom:672.928000pt;}
.ycb{bottom:673.214667pt;}
.y18b{bottom:674.434667pt;}
.y3d{bottom:674.588000pt;}
.y70{bottom:676.152000pt;}
.y200{bottom:677.776000pt;}
.y1d9{bottom:679.673333pt;}
.y1b0{bottom:682.550667pt;}
.y9f{bottom:684.774667pt;}
.yf{bottom:685.216000pt;}
.y158{bottom:687.026667pt;}
.yf8{bottom:688.868000pt;}
.yca{bottom:689.154667pt;}
.y1ff{bottom:689.732000pt;}
.y18a{bottom:690.374667pt;}
.y3c{bottom:690.528000pt;}
.y128{bottom:694.004000pt;}
.y1d8{bottom:695.613333pt;}
.y1af{bottom:698.490667pt;}
.ye{bottom:698.498667pt;}
.y9e{bottom:700.714667pt;}
.y1fe{bottom:701.686667pt;}
.y6f{bottom:704.226667pt;}
.yf7{bottom:704.808000pt;}
.y3b{bottom:706.469333pt;}
.yc9{bottom:707.977333pt;}
.y127{bottom:709.944000pt;}
.y157{bottom:710.608000pt;}
.yd{bottom:711.782667pt;}
.y1fd{bottom:713.641333pt;}
.y1ae{bottom:714.430667pt;}
.y1d7{bottom:716.638667pt;}
.y9d{bottom:719.725333pt;}
.y6e{bottom:720.166667pt;}
.yf6{bottom:720.748000pt;}
.y3a{bottom:722.409333pt;}
.y189{bottom:724.209333pt;}
.yc{bottom:725.065333pt;}
.y1fc{bottom:725.597333pt;}
.y126{bottom:725.884000pt;}
.yc8{bottom:728.474667pt;}
.y1ad{bottom:734.592000pt;}
.y6d{bottom:736.106667pt;}
.y188{bottom:736.165333pt;}
.yf5{bottom:736.688000pt;}
.y1fb{bottom:737.552000pt;}
.yb{bottom:738.349333pt;}
.y9c{bottom:740.536000pt;}
.y125{bottom:741.825333pt;}
.y1d6{bottom:743.733333pt;}
.y187{bottom:748.120000pt;}
.y1fa{bottom:749.508000pt;}
.ya{bottom:751.633333pt;}
.y6c{bottom:752.046667pt;}
.y39{bottom:754.289333pt;}
.y156{bottom:756.189333pt;}
.yf4{bottom:756.208000pt;}
.y1ac{bottom:759.589333pt;}
.y1d5{bottom:759.673333pt;}
.y186{bottom:760.593333pt;}
.y1f9{bottom:761.462667pt;}
.y9{bottom:764.916000pt;}
.y9b{bottom:767.108000pt;}
.y124{bottom:767.114667pt;}
.y6b{bottom:767.988000pt;}
.y155{bottom:768.144000pt;}
.y38{bottom:770.229333pt;}
.yf3{bottom:772.148000pt;}
.y1f8{bottom:773.417333pt;}
.y1ab{bottom:775.529333pt;}
.y1d4{bottom:775.613333pt;}
.y8{bottom:778.200000pt;}
.y185{bottom:780.006667pt;}
.y9a{bottom:783.048000pt;}
.y123{bottom:783.438667pt;}
.y6a{bottom:783.928000pt;}
.y1f7{bottom:785.373333pt;}
.y37{bottom:786.169333pt;}
.yc7{bottom:786.170667pt;}
.yf2{bottom:788.742667pt;}
.y7{bottom:791.484000pt;}
.y1d3{bottom:791.554667pt;}
.y1aa{bottom:795.717333pt;}
.y1f6{bottom:797.328000pt;}
.y99{bottom:798.988000pt;}
.y150{bottom:799.070667pt;}
.y122{bottom:799.378667pt;}
.y69{bottom:799.868000pt;}
.y36{bottom:802.110667pt;}
.yf1{bottom:804.684000pt;}
.y6{bottom:804.766667pt;}
.y184{bottom:807.404000pt;}
.y1d2{bottom:807.494667pt;}
.y1f5{bottom:809.282667pt;}
.y98{bottom:814.928000pt;}
.y121{bottom:815.318667pt;}
.y68{bottom:815.808000pt;}
.y146{bottom:816.344000pt;}
.y5{bottom:818.050667pt;}
.y183{bottom:819.360000pt;}
.y151{bottom:820.592000pt;}
.y1a9{bottom:820.713333pt;}
.y1f4{bottom:821.238667pt;}
.y1d1{bottom:823.434667pt;}
.yf0{bottom:826.336000pt;}
.y147{bottom:827.724000pt;}
.y120{bottom:831.258667pt;}
.y67{bottom:832.308000pt;}
.yc6{bottom:833.990667pt;}
.y97{bottom:836.228000pt;}
.y1a8{bottom:836.653333pt;}
.y1d0{bottom:839.374667pt;}
.y1f3{bottom:840.964000pt;}
.y154{bottom:843.024000pt;}
.y148{bottom:843.874667pt;}
.y11f{bottom:847.200000pt;}
.y66{bottom:848.248000pt;}
.yc5{bottom:849.930667pt;}
.y182{bottom:851.905333pt;}
.y1a7{bottom:852.593333pt;}
.yef{bottom:854.956000pt;}
.y1cf{bottom:855.314667pt;}
.y153{bottom:858.482667pt;}
.y149{bottom:860.024000pt;}
.y96{bottom:862.800000pt;}
.y11e{bottom:863.140000pt;}
.y65{bottom:864.188000pt;}
.y4{bottom:865.352000pt;}
.yc4{bottom:865.870667pt;}
.y181{bottom:867.845333pt;}
.y1a6{bottom:868.533333pt;}
.yee{bottom:870.896000pt;}
.y1ce{bottom:871.254667pt;}
.y14a{bottom:876.174667pt;}
.y95{bottom:878.741333pt;}
.y64{bottom:880.128000pt;}
.y1f2{bottom:881.810667pt;}
.yc3{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y11d{bottom:883.566667pt;}
.y180{bottom:883.786667pt;}
.y1a5{bottom:884.474667pt;}
.y1cd{bottom:887.196000pt;}
.yed{bottom:892.190667pt;}
.y14b{bottom:892.325333pt;}
.y94{bottom:894.681333pt;}
.y63{bottom:896.068000pt;}
.yc2{bottom:897.752000pt;}
.yeb{bottom:899.296000pt;}
.y17f{bottom:899.726667pt;}
.y1a4{bottom:900.414667pt;}
.y1cc{bottom:903.136000pt;}
.yea{bottom:907.864000pt;}
.y14c{bottom:908.476000pt;}
.y11c{bottom:909.205333pt;}
.y93{bottom:910.621333pt;}
.y62{bottom:912.008000pt;}
.yc1{bottom:913.692000pt;}
.y1cb{bottom:919.076000pt;}
.y17e{bottom:920.088000pt;}
.yec{bottom:920.482667pt;}
.y1a3{bottom:920.576000pt;}
.y2{bottom:923.830667pt;}
.y14d{bottom:924.626667pt;}
.y11b{bottom:925.146667pt;}
.y92{bottom:926.561333pt;}
.y61{bottom:927.949333pt;}
.yc0{bottom:929.632000pt;}
.y1ca{bottom:935.016000pt;}
.y14e{bottom:940.776000pt;}
.y11a{bottom:941.086667pt;}
.y91{bottom:945.572000pt;}
.y60{bottom:949.377333pt;}
.y1c9{bottom:955.784000pt;}
.y14f{bottom:956.926667pt;}
.y119{bottom:957.026667pt;}
.y1{bottom:961.024000pt;}
.y90{bottom:961.512000pt;}
.y152{bottom:976.030667pt;}
.y8f{bottom:977.452000pt;}
.y5f{bottom:977.453333pt;}
.h13{height:2.125355pt;}
.hd{height:13.952791pt;}
.hf{height:13.952963pt;}
.he{height:13.953295pt;}
.hc{height:13.953646pt;}
.hb{height:25.116731pt;}
.h1a{height:26.147101pt;}
.h14{height:27.895200pt;}
.h10{height:29.244954pt;}
.h1b{height:29.499997pt;}
.h1d{height:31.880400pt;}
.h18{height:32.374682pt;}
.h19{height:32.900710pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h1c{height:36.203221pt;}
.h3{height:36.290431pt;}
.h6{height:36.556100pt;}
.h7{height:36.874903pt;}
.h9{height:39.850400pt;}
.h2{height:40.211857pt;}
.ha{height:41.700032pt;}
.h11{height:47.175200pt;}
.h17{height:48.083101pt;}
.h16{height:48.088434pt;}
.h1{height:87.734861pt;}
.h15{height:92.984021pt;}
.h8{height:104.687500pt;}
.h12{height:128.583200pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:42.666667pt;}
.x5{left:65.285333pt;}
.x4{left:78.569333pt;}
.x20{left:79.606667pt;}
.x38{left:87.404000pt;}
.x1{left:90.345333pt;}
.xc{left:91.981333pt;}
.xd{left:97.604000pt;}
.x37{left:103.054667pt;}
.x28{left:149.165333pt;}
.x3a{left:178.773333pt;}
.x6{left:180.826667pt;}
.x39{left:184.472000pt;}
.x26{left:192.912000pt;}
.x27{left:201.340000pt;}
.x36{left:212.402667pt;}
.x3{left:240.469333pt;}
.x2{left:356.333333pt;}
.x8{left:415.970667pt;}
.x1a{left:419.350028pt;}
.x3c{left:421.284000pt;}
.x31{left:422.273333pt;}
.x25{left:427.064000pt;}
.x7{left:429.253333pt;}
.x2b{left:431.102667pt;}
.x3d{left:440.316000pt;}
.x9{left:442.666667pt;}
.xf{left:444.066667pt;}
.x13{left:445.257110pt;}
.xe{left:448.289333pt;}
.x12{left:449.693031pt;}
.x22{left:452.625333pt;}
.x21{left:454.925333pt;}
.x29{left:459.554667pt;}
.x11{left:460.600633pt;}
.xa{left:469.238667pt;}
.x23{left:492.584000pt;}
.x17{left:493.999312pt;}
.x16{left:503.880891pt;}
.x32{left:505.006667pt;}
.x33{left:506.485333pt;}
.x24{left:514.473333pt;}
.x2c{left:518.725333pt;}
.x2f{left:527.212000pt;}
.x1b{left:534.010139pt;}
.x35{left:536.605333pt;}
.x3b{left:546.149333pt;}
.x1f{left:561.460327pt;}
.x1e{left:566.953825pt;}
.x30{left:579.860000pt;}
.x14{left:582.399136pt;}
.x2a{left:584.836000pt;}
.x10{left:589.819481pt;}
.x15{left:597.354847pt;}
.x2d{left:612.198667pt;}
.x2e{left:621.428000pt;}
.x1d{left:622.626772pt;}
.x1c{left:638.261408pt;}
.x19{left:698.856823pt;}
.x18{left:702.522209pt;}
.x34{left:735.226667pt;}
}




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