
    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_abc83092867407f6cecf16c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.058000;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_86ec1557152b8ff66799421d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_abc83092867407f6cecf16c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_bdc001be86054b6d5a0a4bd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_82234c6de339d6c13ac657ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_a9792ccc0230d383241112f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_b55db8f646628b39532ff9bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058000;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_abc83092867407f6cecf16c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.058000;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_abc83092867407f6cecf16c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.fff{font-family:fff;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.058000;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_fb4cc134009d77a620c9381f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245179,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245606,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245753,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246038,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246079,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246084,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246245,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246913,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247054,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247207,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247446,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247837,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249946,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250954,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251889,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252530,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253516,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253524,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253552,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253957,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254008,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254894,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254929,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:17.008200px;}
.v3{vertical-align:37.500000px;}
.ls2d{letter-spacing:-2.730000px;}
.ls22{letter-spacing:-0.496800px;}
.ls27{letter-spacing:-0.441600px;}
.ls21{letter-spacing:-0.386400px;}
.ls2e{letter-spacing:-0.261000px;}
.ls16{letter-spacing:-0.165600px;}
.ls18{letter-spacing:-0.156000px;}
.ls25{letter-spacing:-0.110400px;}
.ls26{letter-spacing:-0.055200px;}
.ls14{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.055200px;}
.ls4{letter-spacing:0.110400px;}
.ls2b{letter-spacing:0.138000px;}
.lsd{letter-spacing:0.156600px;}
.ls1{letter-spacing:0.165600px;}
.ls29{letter-spacing:0.193200px;}
.ls0{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.220800px;}
.ls12{letter-spacing:0.234000px;}
.ls24{letter-spacing:0.248400px;}
.ls2a{letter-spacing:0.261000px;}
.ls13{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.276000px;}
.ls17{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.331200px;}
.ls28{letter-spacing:0.386400px;}
.lsf{letter-spacing:0.390000px;}
.ls6{letter-spacing:0.441600px;}
.ls1e{letter-spacing:0.496800px;}
.ls1c{letter-spacing:0.524400px;}
.lsb{letter-spacing:0.552000px;}
.ls1d{letter-spacing:0.607200px;}
.ls11{letter-spacing:0.624000px;}
.ls2c{letter-spacing:0.662400px;}
.ls1b{letter-spacing:0.717600px;}
.ls3{letter-spacing:0.772800px;}
.ls19{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.883200px;}
.ls23{letter-spacing:0.938400px;}
.ls10{letter-spacing:0.960000px;}
.ls15{letter-spacing:0.993600px;}
.ls1a{letter-spacing:1.048800px;}
.ls1f{letter-spacing:1.159200px;}
.ls20{letter-spacing:1.214400px;}
.lsc{letter-spacing:24.335400px;}
.lse{letter-spacing:24.336000px;}
.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;}
}
.ws28{word-spacing:-43.584000px;}
.ws87{word-spacing:-14.772600px;}
.ws55{word-spacing:-14.511600px;}
.ws89{word-spacing:-14.250600px;}
.ws2c{word-spacing:-12.420000px;}
.ws53{word-spacing:-11.868000px;}
.ws5{word-spacing:-7.065600px;}
.ws3e{word-spacing:-4.360800px;}
.ws8{word-spacing:-4.305600px;}
.ws73{word-spacing:-4.250400px;}
.ws23{word-spacing:-4.140000px;}
.ws9b{word-spacing:-4.084800px;}
.ws66{word-spacing:-4.029600px;}
.ws8e{word-spacing:-3.919200px;}
.ws2a{word-spacing:-3.900000px;}
.ws81{word-spacing:-3.864000px;}
.ws50{word-spacing:-3.753600px;}
.ws39{word-spacing:-3.477600px;}
.ws95{word-spacing:-3.367200px;}
.ws26{word-spacing:-3.360000px;}
.ws71{word-spacing:-3.256800px;}
.ws9d{word-spacing:-3.091200px;}
.ws2d{word-spacing:-3.036000px;}
.ws5e{word-spacing:-2.925600px;}
.ws27{word-spacing:-2.923200px;}
.ws91{word-spacing:-2.870400px;}
.ws77{word-spacing:-2.815200px;}
.ws4b{word-spacing:-2.704800px;}
.ws20{word-spacing:-2.649600px;}
.ws3c{word-spacing:-2.594400px;}
.wsd{word-spacing:-2.428800px;}
.ws10{word-spacing:-2.318400px;}
.wse{word-spacing:-2.042400px;}
.ws2b{word-spacing:-2.028000px;}
.ws5d{word-spacing:-1.932000px;}
.ws8f{word-spacing:-1.876800px;}
.ws7b{word-spacing:-1.766400px;}
.ws6a{word-spacing:-1.711200px;}
.ws14{word-spacing:-1.656000px;}
.ws97{word-spacing:-1.600800px;}
.ws18{word-spacing:-1.490400px;}
.ws69{word-spacing:-1.380000px;}
.ws61{word-spacing:-1.324800px;}
.ws24{word-spacing:-1.269600px;}
.ws65{word-spacing:-1.214400px;}
.ws5c{word-spacing:-1.159200px;}
.ws12{word-spacing:-1.104000px;}
.ws62{word-spacing:-0.993600px;}
.ws9{word-spacing:-0.883200px;}
.ws93{word-spacing:-0.772800px;}
.ws94{word-spacing:-0.662400px;}
.ws2e{word-spacing:-0.607200px;}
.ws45{word-spacing:-0.552000px;}
.ws36{word-spacing:-0.386400px;}
.ws9a{word-spacing:-0.315000px;}
.ws8b{word-spacing:-0.300000px;}
.ws5f{word-spacing:-0.276000px;}
.ws8a{word-spacing:-0.261000px;}
.ws25{word-spacing:-0.165600px;}
.ws32{word-spacing:-0.110400px;}
.wsf{word-spacing:-0.055200px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.055200px;}
.ws7{word-spacing:0.110400px;}
.ws7d{word-spacing:0.165600px;}
.ws6c{word-spacing:0.220800px;}
.ws6d{word-spacing:0.276000px;}
.ws35{word-spacing:0.386400px;}
.ws1d{word-spacing:0.441600px;}
.ws43{word-spacing:0.552000px;}
.ws7f{word-spacing:0.607200px;}
.ws1e{word-spacing:0.662400px;}
.ws48{word-spacing:0.717600px;}
.ws29{word-spacing:0.780000px;}
.ws8d{word-spacing:0.828000px;}
.ws4c{word-spacing:1.104000px;}
.ws2f{word-spacing:1.159200px;}
.ws51{word-spacing:1.269600px;}
.ws22{word-spacing:1.435200px;}
.ws3b{word-spacing:1.545600px;}
.ws38{word-spacing:1.766400px;}
.ws4f{word-spacing:1.876800px;}
.ws31{word-spacing:1.932000px;}
.ws60{word-spacing:1.987200px;}
.ws1b{word-spacing:2.208000px;}
.ws9c{word-spacing:2.373600px;}
.ws47{word-spacing:2.484000px;}
.ws52{word-spacing:2.594400px;}
.ws84{word-spacing:2.652000px;}
.ws90{word-spacing:2.704800px;}
.ws4e{word-spacing:2.760000px;}
.ws67{word-spacing:2.815200px;}
.ws96{word-spacing:2.925600px;}
.ws44{word-spacing:2.980800px;}
.ws30{word-spacing:3.091200px;}
.ws1f{word-spacing:3.146400px;}
.ws63{word-spacing:3.256800px;}
.ws46{word-spacing:3.367200px;}
.ws34{word-spacing:3.422400px;}
.wsb{word-spacing:3.532800px;}
.ws98{word-spacing:3.588000px;}
.ws64{word-spacing:3.698400px;}
.ws75{word-spacing:3.753600px;}
.ws1{word-spacing:3.919200px;}
.ws80{word-spacing:3.974400px;}
.ws3{word-spacing:4.084800px;}
.ws6f{word-spacing:4.140000px;}
.ws7a{word-spacing:4.195200px;}
.ws42{word-spacing:4.250400px;}
.ws21{word-spacing:4.305600px;}
.ws1c{word-spacing:4.360800px;}
.wsc{word-spacing:4.416000px;}
.ws41{word-spacing:4.581600px;}
.ws7c{word-spacing:4.692000px;}
.ws37{word-spacing:4.747200px;}
.ws40{word-spacing:4.857600px;}
.ws76{word-spacing:4.912800px;}
.ws92{word-spacing:5.078400px;}
.ws16{word-spacing:5.133600px;}
.wsa{word-spacing:5.354400px;}
.ws49{word-spacing:5.520000px;}
.ws79{word-spacing:5.685600px;}
.ws2{word-spacing:5.961600px;}
.ws8c{word-spacing:6.016800px;}
.ws6{word-spacing:6.072000px;}
.ws11{word-spacing:6.127200px;}
.ws4a{word-spacing:6.348000px;}
.ws3d{word-spacing:6.403200px;}
.ws17{word-spacing:6.513600px;}
.ws82{word-spacing:6.679200px;}
.ws83{word-spacing:7.341600px;}
.ws74{word-spacing:7.452000px;}
.ws72{word-spacing:7.728000px;}
.ws99{word-spacing:7.893600px;}
.ws19{word-spacing:8.224800px;}
.ws78{word-spacing:8.280000px;}
.ws7e{word-spacing:8.942400px;}
.ws1a{word-spacing:9.052800px;}
.ws13{word-spacing:9.384000px;}
.ws59{word-spacing:9.970200px;}
.ws58{word-spacing:9.994200px;}
.ws3a{word-spacing:10.101600px;}
.ws4d{word-spacing:10.212000px;}
.ws15{word-spacing:10.598400px;}
.ws33{word-spacing:10.929600px;}
.ws3f{word-spacing:11.260800px;}
.ws70{word-spacing:13.965600px;}
.ws4{word-spacing:15.124800px;}
.ws9e{word-spacing:16.560000px;}
.ws68{word-spacing:20.313600px;}
.ws85{word-spacing:57.524400px;}
.ws57{word-spacing:95.219400px;}
.ws54{word-spacing:131.994000px;}
.ws88{word-spacing:136.659600px;}
.ws86{word-spacing:142.453800px;}
.ws56{word-spacing:143.632800px;}
.ws6e{word-spacing:297.795600px;}
.ws5a{word-spacing:1061.748000px;}
.ws5b{word-spacing:1860.355800px;}
._14{margin-left:-1335.902400px;}
._16{margin-left:-935.730600px;}
._8{margin-left:-53.664000px;}
._3{margin-left:-28.696386px;}
._7{margin-left:-19.392211px;}
._e{margin-left:-17.222400px;}
._f{margin-left:-15.538800px;}
._6{margin-left:-11.150400px;}
._b{margin-left:-9.576000px;}
._a{margin-left:-8.518080px;}
._9{margin-left:-6.739020px;}
._4{margin-left:-4.979040px;}
._0{margin-left:-3.864000px;}
._d{margin-left:-2.787600px;}
._1{margin-left:-1.656000px;}
._2{width:1.264080px;}
._5{width:2.290800px;}
._18{width:7.530600px;}
._12{width:24.481800px;}
._11{width:158.590200px;}
._10{width:171.141600px;}
._15{width:443.125800px;}
._17{width:897.148200px;}
._c{width:1145.376600px;}
._13{width:1570.477920px;}
.fc5{color:transparent;}
.fc3{color:rgb(193,25,14);}
.fc2{color:rgb(0,59,124);}
.fc4{color:rgb(126,141,186);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs7{font-size:52.200000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:55.200000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:96.000000px;}
.fs9{font-size:192.000000px;}
.fs8{font-size:221.760000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:11.487450px;}
.yb3{bottom:11.487750px;}
.yb9{bottom:11.488050px;}
.yb5{bottom:11.488500px;}
.yb7{bottom:11.488800px;}
.y3{bottom:23.752050px;}
.ybc{bottom:63.533700px;}
.y7b{bottom:90.489450px;}
.y77{bottom:90.493650px;}
.y5f{bottom:90.497850px;}
.y3b{bottom:90.501900px;}
.y1e{bottom:90.502050px;}
.y7a{bottom:109.243650px;}
.y74{bottom:109.247850px;}
.yd5{bottom:109.249200px;}
.y3a{bottom:109.251900px;}
.y1d{bottom:109.252050px;}
.y9f{bottom:109.253250px;}
.y66{bottom:127.993650px;}
.y48{bottom:127.996350px;}
.y79{bottom:127.997850px;}
.y39{bottom:128.001900px;}
.y1c{bottom:128.002050px;}
.y9e{bottom:146.739450px;}
.y65{bottom:146.747850px;}
.y47{bottom:146.749200px;}
.y38{bottom:146.751900px;}
.y1b{bottom:146.752050px;}
.y73{bottom:165.493650px;}
.y37{bottom:165.501900px;}
.y1a{bottom:165.502050px;}
.y6b{bottom:184.243650px;}
.y9d{bottom:184.247850px;}
.y72{bottom:184.249050px;}
.y36{bottom:184.251900px;}
.y19{bottom:184.252050px;}
.y46{bottom:201.502050px;}
.y5e{bottom:202.993650px;}
.y6a{bottom:202.997850px;}
.y76{bottom:202.999050px;}
.y35{bottom:203.001900px;}
.y18{bottom:203.002050px;}
.y71{bottom:203.003250px;}
.y64{bottom:221.743650px;}
.y5d{bottom:221.747850px;}
.y45{bottom:221.749200px;}
.yd4{bottom:221.749650px;}
.y34{bottom:221.751900px;}
.y17{bottom:221.752050px;}
.y70{bottom:221.753250px;}
.yd3{bottom:240.476400px;}
.y75{bottom:240.493650px;}
.y63{bottom:240.497850px;}
.y33{bottom:240.501900px;}
.y16{bottom:240.502050px;}
.yd2{bottom:259.229250px;}
.y44{bottom:259.240650px;}
.y32{bottom:259.247700px;}
.y6f{bottom:259.247850px;}
.y15{bottom:259.252050px;}
.yd1{bottom:277.982100px;}
.y43{bottom:277.993500px;}
.y14{bottom:277.997850px;}
.y31{bottom:278.001900px;}
.y5c{bottom:278.002050px;}
.yd0{bottom:296.734950px;}
.y9c{bottom:296.743650px;}
.y42{bottom:296.746350px;}
.y30{bottom:296.751900px;}
.y13{bottom:296.752050px;}
.ycf{bottom:315.487800px;}
.y6e{bottom:315.493650px;}
.y9b{bottom:315.497850px;}
.y41{bottom:315.499200px;}
.y2f{bottom:315.501900px;}
.y5b{bottom:315.502050px;}
.y78{bottom:315.503250px;}
.y40{bottom:332.752050px;}
.yce{bottom:334.240650px;}
.y62{bottom:334.243650px;}
.y6d{bottom:334.247850px;}
.y2e{bottom:334.251900px;}
.y12{bottom:334.252050px;}
.ycd{bottom:352.993500px;}
.ya0{bottom:352.993650px;}
.y3f{bottom:352.996350px;}
.y61{bottom:352.997850px;}
.y5a{bottom:352.999050px;}
.y2d{bottom:353.001900px;}
.y6c{bottom:353.002050px;}
.ycc{bottom:371.740650px;}
.y9a{bottom:371.747850px;}
.y3e{bottom:371.749200px;}
.y2c{bottom:371.751900px;}
.y60{bottom:371.752050px;}
.y59{bottom:371.753250px;}
.y2b{bottom:390.501900px;}
.y11{bottom:390.502050px;}
.y58{bottom:409.243650px;}
.y2a{bottom:409.244700px;}
.ycb{bottom:409.246350px;}
.y96{bottom:409.247850px;}
.y10{bottom:409.252050px;}
.y99{bottom:427.994850px;}
.y57{bottom:427.997850px;}
.y29{bottom:427.998900px;}
.y3d{bottom:427.999200px;}
.yf{bottom:428.002050px;}
.y7d{bottom:438.877050px;}
.y3c{bottom:445.252050px;}
.y98{bottom:446.749050px;}
.ye{bottom:446.752050px;}
.y28{bottom:446.753100px;}
.y49{bottom:449.388900px;}
.yd{bottom:465.497850px;}
.y56{bottom:465.502050px;}
.y97{bottom:465.503250px;}
.y7f{bottom:479.355300px;}
.y27{bottom:484.247700px;}
.y55{bottom:484.247850px;}
.yc{bottom:484.252050px;}
.y7e{bottom:488.733150px;}
.y80{bottom:498.108150px;}
.y26{bottom:503.001900px;}
.yb{bottom:503.002050px;}
.yaa{bottom:514.064550px;}
.y25{bottom:521.751900px;}
.ya{bottom:521.752050px;}
.y54{bottom:540.489450px;}
.y24{bottom:540.497700px;}
.y69{bottom:540.497850px;}
.yca{bottom:540.499200px;}
.y9{bottom:540.502050px;}
.y53{bottom:559.243650px;}
.y23{bottom:559.251900px;}
.y8{bottom:559.252050px;}
.y95{bottom:573.087600px;}
.y91{bottom:576.010800px;}
.y52{bottom:577.997850px;}
.yeb{bottom:577.999050px;}
.y22{bottom:578.001900px;}
.y7{bottom:578.002050px;}
.y85{bottom:578.730300px;}
.yb1{bottom:579.199200px;}
.yb0{bottom:594.859200px;}
.y21{bottom:596.751900px;}
.y6{bottom:596.752050px;}
.yea{bottom:596.753250px;}
.y84{bottom:597.483150px;}
.yaf{bottom:610.519200px;}
.y68{bottom:615.495450px;}
.y20{bottom:615.501900px;}
.y5{bottom:615.502050px;}
.ye9{bottom:615.507450px;}
.yae{bottom:626.179200px;}
.y67{bottom:634.249650px;}
.y1f{bottom:634.251900px;}
.y4{bottom:634.252050px;}
.ye8{bottom:653.002050px;}
.y90{bottom:654.989400px;}
.yc9{bottom:657.767100px;}
.y87{bottom:659.355300px;}
.yc8{bottom:667.150050px;}
.y4a{bottom:670.252050px;}
.ye7{bottom:671.752050px;}
.y86{bottom:678.108150px;}
.yac{bottom:678.129900px;}
.yab{bottom:685.608150px;}
.ye6{bottom:690.502050px;}
.yad{bottom:693.086550px;}
.yc7{bottom:699.905550px;}
.ye5{bottom:709.252050px;}
.yc6{bottom:724.889700px;}
.ye4{bottom:727.999050px;}
.y8f{bottom:735.325200px;}
.y94{bottom:736.016850px;}
.ya8{bottom:740.372550px;}
.ya4{bottom:741.118350px;}
.ye3{bottom:746.753250px;}
.yc5{bottom:748.275300px;}
.y82{bottom:749.358150px;}
.ya7{bottom:752.972550px;}
.yb4{bottom:755.601000px;}
.yc4{bottom:757.645200px;}
.ye2{bottom:765.493650px;}
.ye1{bottom:784.247850px;}
.y51{bottom:786.645450px;}
.yc3{bottom:790.674750px;}
.yb6{bottom:795.610500px;}
.ya3{bottom:797.664000px;}
.ye0{bottom:803.002050px;}
.yc2{bottom:816.187500px;}
.y8e{bottom:816.848550px;}
.y93{bottom:817.200900px;}
.y50{bottom:818.137950px;}
.ydf{bottom:821.752050px;}
.y81{bottom:829.983150px;}
.yb8{bottom:832.851000px;}
.yc1{bottom:839.826150px;}
.yde{bottom:840.507450px;}
.yc0{bottom:849.209100px;}
.y4f{bottom:849.630450px;}
.ya2{bottom:864.205950px;}
.yba{bottom:876.502500px;}
.ydd{bottom:878.002050px;}
.ybf{bottom:880.372500px;}
.y4e{bottom:881.122950px;}
.ybe{bottom:889.755450px;}
.ydc{bottom:896.752050px;}
.y92{bottom:901.817100px;}
.y8d{bottom:901.830150px;}
.y83{bottom:910.608150px;}
.ydb{bottom:915.502050px;}
.ya1{bottom:930.747900px;}
.y4d{bottom:931.384950px;}
.ybd{bottom:934.252050px;}
.yb2{bottom:935.650500px;}
.yda{bottom:953.002050px;}
.y8a{bottom:971.752050px;}
.ya6{bottom:981.127050px;}
.y4c{bottom:986.872950px;}
.y89{bottom:990.501900px;}
.yd9{bottom:990.502050px;}
.y8c{bottom:990.504900px;}
.ya5{bottom:993.727050px;}
.ya9{bottom:994.983150px;}
.y88{bottom:1009.251900px;}
.yd8{bottom:1009.252050px;}
.y8b{bottom:1009.257750px;}
.yed{bottom:1027.997850px;}
.yd7{bottom:1028.002050px;}
.y7c{bottom:1046.752050px;}
.y4b{bottom:1061.122950px;}
.yd6{bottom:1065.502050px;}
.yec{bottom:1065.505050px;}
.y1{bottom:1148.031450px;}
.y2{bottom:1152.283500px;}
.h4{height:35.364000px;}
.h18{height:43.263000px;}
.h19{height:43.264500px;}
.hc{height:43.952400px;}
.hb{height:43.963800px;}
.he{height:43.975200px;}
.h1c{height:43.984200px;}
.hd{height:43.998000px;}
.h1f{height:44.056800px;}
.h2{height:45.468000px;}
.h17{height:46.092600px;}
.h1e{height:46.119000px;}
.h5{height:49.183200px;}
.h6{height:49.200000px;}
.h8{height:49.212000px;}
.h14{height:49.216800px;}
.h13{height:49.238400px;}
.h9{height:52.980000px;}
.h3{height:54.990000px;}
.h7{height:55.629000px;}
.h20{height:61.200000px;}
.h10{height:65.676000px;}
.h12{height:71.998200px;}
.h1b{height:81.432000px;}
.h15{height:81.452400px;}
.h1d{height:81.484200px;}
.ha{height:84.768000px;}
.h16{height:118.963800px;}
.h1a{height:147.354000px;}
.h11{height:171.072000px;}
.hf{height:195.814080px;}
.h0{height:1211.811000px;}
.h1{height:1212.000000px;}
.w7{width:56.763000px;}
.w6{width:56.764500px;}
.w3{width:161.436000px;}
.w5{width:231.094500px;}
.w4{width:279.991500px;}
.w2{width:597.727500px;}
.w0{width:901.417500px;}
.w1{width:901.500000px;}
.x0{left:0.000000px;}
.x40{left:24.122400px;}
.x3{left:51.023700px;}
.x42{left:56.253900px;}
.xa{left:57.935550px;}
.x20{left:59.518950px;}
.x2{left:60.587700px;}
.x10{left:61.653600px;}
.x28{left:63.237450px;}
.x21{left:76.535400px;}
.x12{left:80.651250px;}
.xd{left:93.543300px;}
.x2c{left:104.173200px;}
.x30{left:107.475300px;}
.x3e{left:111.871500px;}
.x2e{left:117.278100px;}
.x27{left:120.239850px;}
.x19{left:125.981250px;}
.x2d{left:128.866500px;}
.x3d{left:135.871500px;}
.x13{left:171.670050px;}
.x18{left:188.257050px;}
.x39{left:199.098000px;}
.x37{left:206.271750px;}
.x35{left:212.648550px;}
.x24{left:213.873600px;}
.x11{left:227.181750px;}
.x2f{left:242.401500px;}
.x3f{left:249.640500px;}
.x33{left:268.390800px;}
.x3a{left:294.872550px;}
.x23{left:297.641550px;}
.x1a{left:307.071300px;}
.x4{left:310.393650px;}
.x9{left:312.519750px;}
.x7{left:344.409450px;}
.x29{left:349.541400px;}
.x8{left:351.153450px;}
.xe{left:352.913400px;}
.x1{left:356.360250px;}
.x43{left:363.165300px;}
.x38{left:375.869550px;}
.x32{left:385.243800px;}
.x3c{left:392.563500px;}
.xb{left:398.880000px;}
.x44{left:435.449250px;}
.x1b{left:441.802050px;}
.x22{left:483.303900px;}
.x45{left:485.157150px;}
.x3b{left:494.626500px;}
.x36{left:521.533650px;}
.x2a{left:526.695150px;}
.x14{left:542.973750px;}
.x5{left:569.763750px;}
.x2b{left:581.544300px;}
.x1c{left:586.841700px;}
.x1d{left:588.655650px;}
.xf{left:612.284400px;}
.x15{left:628.537050px;}
.x16{left:635.805900px;}
.x1e{left:641.588100px;}
.x1f{left:663.551250px;}
.x26{left:677.344350px;}
.xc{left:679.307700px;}
.x41{left:690.619500px;}
.x17{left:713.403000px;}
.x34{left:733.897350px;}
.x25{left:761.790900px;}
.x31{left:786.048300px;}
.x6{left:803.439750px;}
@media print{
.v4{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:15.118400pt;}
.v3{vertical-align:33.333333pt;}
.ls2d{letter-spacing:-2.426667pt;}
.ls22{letter-spacing:-0.441600pt;}
.ls27{letter-spacing:-0.392533pt;}
.ls21{letter-spacing:-0.343467pt;}
.ls2e{letter-spacing:-0.232000pt;}
.ls16{letter-spacing:-0.147200pt;}
.ls18{letter-spacing:-0.138667pt;}
.ls25{letter-spacing:-0.098133pt;}
.ls26{letter-spacing:-0.049067pt;}
.ls14{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.049067pt;}
.ls4{letter-spacing:0.098133pt;}
.ls2b{letter-spacing:0.122667pt;}
.lsd{letter-spacing:0.139200pt;}
.ls1{letter-spacing:0.147200pt;}
.ls29{letter-spacing:0.171733pt;}
.ls0{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.196267pt;}
.ls12{letter-spacing:0.208000pt;}
.ls24{letter-spacing:0.220800pt;}
.ls2a{letter-spacing:0.232000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.245333pt;}
.ls17{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.294400pt;}
.ls28{letter-spacing:0.343467pt;}
.lsf{letter-spacing:0.346667pt;}
.ls6{letter-spacing:0.392533pt;}
.ls1e{letter-spacing:0.441600pt;}
.ls1c{letter-spacing:0.466133pt;}
.lsb{letter-spacing:0.490667pt;}
.ls1d{letter-spacing:0.539733pt;}
.ls11{letter-spacing:0.554667pt;}
.ls2c{letter-spacing:0.588800pt;}
.ls1b{letter-spacing:0.637867pt;}
.ls3{letter-spacing:0.686933pt;}
.ls19{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.785067pt;}
.ls23{letter-spacing:0.834133pt;}
.ls10{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.883200pt;}
.ls1a{letter-spacing:0.932267pt;}
.ls1f{letter-spacing:1.030400pt;}
.ls20{letter-spacing:1.079467pt;}
.lsc{letter-spacing:21.631467pt;}
.lse{letter-spacing:21.632000pt;}
.ws28{word-spacing:-38.741333pt;}
.ws87{word-spacing:-13.131200pt;}
.ws55{word-spacing:-12.899200pt;}
.ws89{word-spacing:-12.667200pt;}
.ws2c{word-spacing:-11.040000pt;}
.ws53{word-spacing:-10.549333pt;}
.ws5{word-spacing:-6.280533pt;}
.ws3e{word-spacing:-3.876267pt;}
.ws8{word-spacing:-3.827200pt;}
.ws73{word-spacing:-3.778133pt;}
.ws23{word-spacing:-3.680000pt;}
.ws9b{word-spacing:-3.630933pt;}
.ws66{word-spacing:-3.581867pt;}
.ws8e{word-spacing:-3.483733pt;}
.ws2a{word-spacing:-3.466667pt;}
.ws81{word-spacing:-3.434667pt;}
.ws50{word-spacing:-3.336533pt;}
.ws39{word-spacing:-3.091200pt;}
.ws95{word-spacing:-2.993067pt;}
.ws26{word-spacing:-2.986667pt;}
.ws71{word-spacing:-2.894933pt;}
.ws9d{word-spacing:-2.747733pt;}
.ws2d{word-spacing:-2.698667pt;}
.ws5e{word-spacing:-2.600533pt;}
.ws27{word-spacing:-2.598400pt;}
.ws91{word-spacing:-2.551467pt;}
.ws77{word-spacing:-2.502400pt;}
.ws4b{word-spacing:-2.404267pt;}
.ws20{word-spacing:-2.355200pt;}
.ws3c{word-spacing:-2.306133pt;}
.wsd{word-spacing:-2.158933pt;}
.ws10{word-spacing:-2.060800pt;}
.wse{word-spacing:-1.815467pt;}
.ws2b{word-spacing:-1.802667pt;}
.ws5d{word-spacing:-1.717333pt;}
.ws8f{word-spacing:-1.668267pt;}
.ws7b{word-spacing:-1.570133pt;}
.ws6a{word-spacing:-1.521067pt;}
.ws14{word-spacing:-1.472000pt;}
.ws97{word-spacing:-1.422933pt;}
.ws18{word-spacing:-1.324800pt;}
.ws69{word-spacing:-1.226667pt;}
.ws61{word-spacing:-1.177600pt;}
.ws24{word-spacing:-1.128533pt;}
.ws65{word-spacing:-1.079467pt;}
.ws5c{word-spacing:-1.030400pt;}
.ws12{word-spacing:-0.981333pt;}
.ws62{word-spacing:-0.883200pt;}
.ws9{word-spacing:-0.785067pt;}
.ws93{word-spacing:-0.686933pt;}
.ws94{word-spacing:-0.588800pt;}
.ws2e{word-spacing:-0.539733pt;}
.ws45{word-spacing:-0.490667pt;}
.ws36{word-spacing:-0.343467pt;}
.ws9a{word-spacing:-0.280000pt;}
.ws8b{word-spacing:-0.266667pt;}
.ws5f{word-spacing:-0.245333pt;}
.ws8a{word-spacing:-0.232000pt;}
.ws25{word-spacing:-0.147200pt;}
.ws32{word-spacing:-0.098133pt;}
.wsf{word-spacing:-0.049067pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.049067pt;}
.ws7{word-spacing:0.098133pt;}
.ws7d{word-spacing:0.147200pt;}
.ws6c{word-spacing:0.196267pt;}
.ws6d{word-spacing:0.245333pt;}
.ws35{word-spacing:0.343467pt;}
.ws1d{word-spacing:0.392533pt;}
.ws43{word-spacing:0.490667pt;}
.ws7f{word-spacing:0.539733pt;}
.ws1e{word-spacing:0.588800pt;}
.ws48{word-spacing:0.637867pt;}
.ws29{word-spacing:0.693333pt;}
.ws8d{word-spacing:0.736000pt;}
.ws4c{word-spacing:0.981333pt;}
.ws2f{word-spacing:1.030400pt;}
.ws51{word-spacing:1.128533pt;}
.ws22{word-spacing:1.275733pt;}
.ws3b{word-spacing:1.373867pt;}
.ws38{word-spacing:1.570133pt;}
.ws4f{word-spacing:1.668267pt;}
.ws31{word-spacing:1.717333pt;}
.ws60{word-spacing:1.766400pt;}
.ws1b{word-spacing:1.962667pt;}
.ws9c{word-spacing:2.109867pt;}
.ws47{word-spacing:2.208000pt;}
.ws52{word-spacing:2.306133pt;}
.ws84{word-spacing:2.357333pt;}
.ws90{word-spacing:2.404267pt;}
.ws4e{word-spacing:2.453333pt;}
.ws67{word-spacing:2.502400pt;}
.ws96{word-spacing:2.600533pt;}
.ws44{word-spacing:2.649600pt;}
.ws30{word-spacing:2.747733pt;}
.ws1f{word-spacing:2.796800pt;}
.ws63{word-spacing:2.894933pt;}
.ws46{word-spacing:2.993067pt;}
.ws34{word-spacing:3.042133pt;}
.wsb{word-spacing:3.140267pt;}
.ws98{word-spacing:3.189333pt;}
.ws64{word-spacing:3.287467pt;}
.ws75{word-spacing:3.336533pt;}
.ws1{word-spacing:3.483733pt;}
.ws80{word-spacing:3.532800pt;}
.ws3{word-spacing:3.630933pt;}
.ws6f{word-spacing:3.680000pt;}
.ws7a{word-spacing:3.729067pt;}
.ws42{word-spacing:3.778133pt;}
.ws21{word-spacing:3.827200pt;}
.ws1c{word-spacing:3.876267pt;}
.wsc{word-spacing:3.925333pt;}
.ws41{word-spacing:4.072533pt;}
.ws7c{word-spacing:4.170667pt;}
.ws37{word-spacing:4.219733pt;}
.ws40{word-spacing:4.317867pt;}
.ws76{word-spacing:4.366933pt;}
.ws92{word-spacing:4.514133pt;}
.ws16{word-spacing:4.563200pt;}
.wsa{word-spacing:4.759467pt;}
.ws49{word-spacing:4.906667pt;}
.ws79{word-spacing:5.053867pt;}
.ws2{word-spacing:5.299200pt;}
.ws8c{word-spacing:5.348267pt;}
.ws6{word-spacing:5.397333pt;}
.ws11{word-spacing:5.446400pt;}
.ws4a{word-spacing:5.642667pt;}
.ws3d{word-spacing:5.691733pt;}
.ws17{word-spacing:5.789867pt;}
.ws82{word-spacing:5.937067pt;}
.ws83{word-spacing:6.525867pt;}
.ws74{word-spacing:6.624000pt;}
.ws72{word-spacing:6.869333pt;}
.ws99{word-spacing:7.016533pt;}
.ws19{word-spacing:7.310933pt;}
.ws78{word-spacing:7.360000pt;}
.ws7e{word-spacing:7.948800pt;}
.ws1a{word-spacing:8.046933pt;}
.ws13{word-spacing:8.341333pt;}
.ws59{word-spacing:8.862400pt;}
.ws58{word-spacing:8.883733pt;}
.ws3a{word-spacing:8.979200pt;}
.ws4d{word-spacing:9.077333pt;}
.ws15{word-spacing:9.420800pt;}
.ws33{word-spacing:9.715200pt;}
.ws3f{word-spacing:10.009600pt;}
.ws70{word-spacing:12.413867pt;}
.ws4{word-spacing:13.444267pt;}
.ws9e{word-spacing:14.720000pt;}
.ws68{word-spacing:18.056533pt;}
.ws85{word-spacing:51.132800pt;}
.ws57{word-spacing:84.639467pt;}
.ws54{word-spacing:117.328000pt;}
.ws88{word-spacing:121.475200pt;}
.ws86{word-spacing:126.625600pt;}
.ws56{word-spacing:127.673600pt;}
.ws6e{word-spacing:264.707200pt;}
.ws5a{word-spacing:943.776000pt;}
.ws5b{word-spacing:1653.649600pt;}
._14{margin-left:-1187.468800pt;}
._16{margin-left:-831.760533pt;}
._8{margin-left:-47.701333pt;}
._3{margin-left:-25.507899pt;}
._7{margin-left:-17.237521pt;}
._e{margin-left:-15.308800pt;}
._f{margin-left:-13.812267pt;}
._6{margin-left:-9.911467pt;}
._b{margin-left:-8.512000pt;}
._a{margin-left:-7.571627pt;}
._9{margin-left:-5.990240pt;}
._4{margin-left:-4.425813pt;}
._0{margin-left:-3.434667pt;}
._d{margin-left:-2.477867pt;}
._1{margin-left:-1.472000pt;}
._2{width:1.123627pt;}
._5{width:2.036267pt;}
._18{width:6.693867pt;}
._12{width:21.761600pt;}
._11{width:140.969067pt;}
._10{width:152.125867pt;}
._15{width:393.889600pt;}
._17{width:797.465067pt;}
._c{width:1018.112533pt;}
._13{width:1395.980373pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:46.400000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:49.066667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:85.333333pt;}
.fs9{font-size:170.666667pt;}
.fs8{font-size:197.120000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:10.211067pt;}
.yb3{bottom:10.211333pt;}
.yb9{bottom:10.211600pt;}
.yb5{bottom:10.212000pt;}
.yb7{bottom:10.212267pt;}
.y3{bottom:21.112933pt;}
.ybc{bottom:56.474400pt;}
.y7b{bottom:80.435067pt;}
.y77{bottom:80.438800pt;}
.y5f{bottom:80.442533pt;}
.y3b{bottom:80.446133pt;}
.y1e{bottom:80.446267pt;}
.y7a{bottom:97.105467pt;}
.y74{bottom:97.109200pt;}
.yd5{bottom:97.110400pt;}
.y3a{bottom:97.112800pt;}
.y1d{bottom:97.112933pt;}
.y9f{bottom:97.114000pt;}
.y66{bottom:113.772133pt;}
.y48{bottom:113.774533pt;}
.y79{bottom:113.775867pt;}
.y39{bottom:113.779467pt;}
.y1c{bottom:113.779600pt;}
.y9e{bottom:130.435067pt;}
.y65{bottom:130.442533pt;}
.y47{bottom:130.443733pt;}
.y38{bottom:130.446133pt;}
.y1b{bottom:130.446267pt;}
.y73{bottom:147.105467pt;}
.y37{bottom:147.112800pt;}
.y1a{bottom:147.112933pt;}
.y6b{bottom:163.772133pt;}
.y9d{bottom:163.775867pt;}
.y72{bottom:163.776933pt;}
.y36{bottom:163.779467pt;}
.y19{bottom:163.779600pt;}
.y46{bottom:179.112933pt;}
.y5e{bottom:180.438800pt;}
.y6a{bottom:180.442533pt;}
.y76{bottom:180.443600pt;}
.y35{bottom:180.446133pt;}
.y18{bottom:180.446267pt;}
.y71{bottom:180.447333pt;}
.y64{bottom:197.105467pt;}
.y5d{bottom:197.109200pt;}
.y45{bottom:197.110400pt;}
.yd4{bottom:197.110800pt;}
.y34{bottom:197.112800pt;}
.y17{bottom:197.112933pt;}
.y70{bottom:197.114000pt;}
.yd3{bottom:213.756800pt;}
.y75{bottom:213.772133pt;}
.y63{bottom:213.775867pt;}
.y33{bottom:213.779467pt;}
.y16{bottom:213.779600pt;}
.yd2{bottom:230.426000pt;}
.y44{bottom:230.436133pt;}
.y32{bottom:230.442400pt;}
.y6f{bottom:230.442533pt;}
.y15{bottom:230.446267pt;}
.yd1{bottom:247.095200pt;}
.y43{bottom:247.105333pt;}
.y14{bottom:247.109200pt;}
.y31{bottom:247.112800pt;}
.y5c{bottom:247.112933pt;}
.yd0{bottom:263.764400pt;}
.y9c{bottom:263.772133pt;}
.y42{bottom:263.774533pt;}
.y30{bottom:263.779467pt;}
.y13{bottom:263.779600pt;}
.ycf{bottom:280.433600pt;}
.y6e{bottom:280.438800pt;}
.y9b{bottom:280.442533pt;}
.y41{bottom:280.443733pt;}
.y2f{bottom:280.446133pt;}
.y5b{bottom:280.446267pt;}
.y78{bottom:280.447333pt;}
.y40{bottom:295.779600pt;}
.yce{bottom:297.102800pt;}
.y62{bottom:297.105467pt;}
.y6d{bottom:297.109200pt;}
.y2e{bottom:297.112800pt;}
.y12{bottom:297.112933pt;}
.ycd{bottom:313.772000pt;}
.ya0{bottom:313.772133pt;}
.y3f{bottom:313.774533pt;}
.y61{bottom:313.775867pt;}
.y5a{bottom:313.776933pt;}
.y2d{bottom:313.779467pt;}
.y6c{bottom:313.779600pt;}
.ycc{bottom:330.436133pt;}
.y9a{bottom:330.442533pt;}
.y3e{bottom:330.443733pt;}
.y2c{bottom:330.446133pt;}
.y60{bottom:330.446267pt;}
.y59{bottom:330.447333pt;}
.y2b{bottom:347.112800pt;}
.y11{bottom:347.112933pt;}
.y58{bottom:363.772133pt;}
.y2a{bottom:363.773067pt;}
.ycb{bottom:363.774533pt;}
.y96{bottom:363.775867pt;}
.y10{bottom:363.779600pt;}
.y99{bottom:380.439867pt;}
.y57{bottom:380.442533pt;}
.y29{bottom:380.443467pt;}
.y3d{bottom:380.443733pt;}
.yf{bottom:380.446267pt;}
.y7d{bottom:390.112933pt;}
.y3c{bottom:395.779600pt;}
.y98{bottom:397.110267pt;}
.ye{bottom:397.112933pt;}
.y28{bottom:397.113867pt;}
.y49{bottom:399.456800pt;}
.yd{bottom:413.775867pt;}
.y56{bottom:413.779600pt;}
.y97{bottom:413.780667pt;}
.y7f{bottom:426.093600pt;}
.y27{bottom:430.442400pt;}
.y55{bottom:430.442533pt;}
.yc{bottom:430.446267pt;}
.y7e{bottom:434.429467pt;}
.y80{bottom:442.762800pt;}
.y26{bottom:447.112800pt;}
.yb{bottom:447.112933pt;}
.yaa{bottom:456.946267pt;}
.y25{bottom:463.779467pt;}
.ya{bottom:463.779600pt;}
.y54{bottom:480.435067pt;}
.y24{bottom:480.442400pt;}
.y69{bottom:480.442533pt;}
.yca{bottom:480.443733pt;}
.y9{bottom:480.446267pt;}
.y53{bottom:497.105467pt;}
.y23{bottom:497.112800pt;}
.y8{bottom:497.112933pt;}
.y95{bottom:509.411200pt;}
.y91{bottom:512.009600pt;}
.y52{bottom:513.775867pt;}
.yeb{bottom:513.776933pt;}
.y22{bottom:513.779467pt;}
.y7{bottom:513.779600pt;}
.y85{bottom:514.426933pt;}
.yb1{bottom:514.843733pt;}
.yb0{bottom:528.763733pt;}
.y21{bottom:530.446133pt;}
.y6{bottom:530.446267pt;}
.yea{bottom:530.447333pt;}
.y84{bottom:531.096133pt;}
.yaf{bottom:542.683733pt;}
.y68{bottom:547.107067pt;}
.y20{bottom:547.112800pt;}
.y5{bottom:547.112933pt;}
.ye9{bottom:547.117733pt;}
.yae{bottom:556.603733pt;}
.y67{bottom:563.777467pt;}
.y1f{bottom:563.779467pt;}
.y4{bottom:563.779600pt;}
.ye8{bottom:580.446267pt;}
.y90{bottom:582.212800pt;}
.yc9{bottom:584.681867pt;}
.y87{bottom:586.093600pt;}
.yc8{bottom:593.022267pt;}
.y4a{bottom:595.779600pt;}
.ye7{bottom:597.112933pt;}
.y86{bottom:602.762800pt;}
.yac{bottom:602.782133pt;}
.yab{bottom:609.429467pt;}
.ye6{bottom:613.779600pt;}
.yad{bottom:616.076933pt;}
.yc7{bottom:622.138267pt;}
.ye5{bottom:630.446267pt;}
.yc6{bottom:644.346400pt;}
.ye4{bottom:647.110267pt;}
.y8f{bottom:653.622400pt;}
.y94{bottom:654.237200pt;}
.ya8{bottom:658.108933pt;}
.ya4{bottom:658.771867pt;}
.ye3{bottom:663.780667pt;}
.yc5{bottom:665.133600pt;}
.y82{bottom:666.096133pt;}
.ya7{bottom:669.308933pt;}
.yb4{bottom:671.645333pt;}
.yc4{bottom:673.462400pt;}
.ye2{bottom:680.438800pt;}
.ye1{bottom:697.109200pt;}
.y51{bottom:699.240400pt;}
.yc3{bottom:702.822000pt;}
.yb6{bottom:707.209333pt;}
.ya3{bottom:709.034667pt;}
.ye0{bottom:713.779600pt;}
.yc2{bottom:725.500000pt;}
.y8e{bottom:726.087600pt;}
.y93{bottom:726.400800pt;}
.y50{bottom:727.233733pt;}
.ydf{bottom:730.446267pt;}
.y81{bottom:737.762800pt;}
.yb8{bottom:740.312000pt;}
.yc1{bottom:746.512133pt;}
.yde{bottom:747.117733pt;}
.yc0{bottom:754.852533pt;}
.y4f{bottom:755.227067pt;}
.ya2{bottom:768.183067pt;}
.yba{bottom:779.113333pt;}
.ydd{bottom:780.446267pt;}
.ybf{bottom:782.553333pt;}
.y4e{bottom:783.220400pt;}
.ybe{bottom:790.893733pt;}
.ydc{bottom:797.112933pt;}
.y92{bottom:801.615200pt;}
.y8d{bottom:801.626800pt;}
.y83{bottom:809.429467pt;}
.ydb{bottom:813.779600pt;}
.ya1{bottom:827.331467pt;}
.y4d{bottom:827.897733pt;}
.ybd{bottom:830.446267pt;}
.yb2{bottom:831.689333pt;}
.yda{bottom:847.112933pt;}
.y8a{bottom:863.779600pt;}
.ya6{bottom:872.112933pt;}
.y4c{bottom:877.220400pt;}
.y89{bottom:880.446133pt;}
.yd9{bottom:880.446267pt;}
.y8c{bottom:880.448800pt;}
.ya5{bottom:883.312933pt;}
.ya9{bottom:884.429467pt;}
.y88{bottom:897.112800pt;}
.yd8{bottom:897.112933pt;}
.y8b{bottom:897.118000pt;}
.yed{bottom:913.775867pt;}
.yd7{bottom:913.779600pt;}
.y7c{bottom:930.446267pt;}
.y4b{bottom:943.220400pt;}
.yd6{bottom:947.112933pt;}
.yec{bottom:947.115600pt;}
.y1{bottom:1020.472400pt;}
.y2{bottom:1024.252000pt;}
.h4{height:31.434667pt;}
.h18{height:38.456000pt;}
.h19{height:38.457333pt;}
.hc{height:39.068800pt;}
.hb{height:39.078933pt;}
.he{height:39.089067pt;}
.h1c{height:39.097067pt;}
.hd{height:39.109333pt;}
.h1f{height:39.161600pt;}
.h2{height:40.416000pt;}
.h17{height:40.971200pt;}
.h1e{height:40.994667pt;}
.h5{height:43.718400pt;}
.h6{height:43.733333pt;}
.h8{height:43.744000pt;}
.h14{height:43.748267pt;}
.h13{height:43.767467pt;}
.h9{height:47.093333pt;}
.h3{height:48.880000pt;}
.h7{height:49.448000pt;}
.h20{height:54.400000pt;}
.h10{height:58.378667pt;}
.h12{height:63.998400pt;}
.h1b{height:72.384000pt;}
.h15{height:72.402133pt;}
.h1d{height:72.430400pt;}
.ha{height:75.349333pt;}
.h16{height:105.745600pt;}
.h1a{height:130.981333pt;}
.h11{height:152.064000pt;}
.hf{height:174.056960pt;}
.h0{height:1077.165333pt;}
.h1{height:1077.333333pt;}
.w7{width:50.456000pt;}
.w6{width:50.457333pt;}
.w3{width:143.498667pt;}
.w5{width:205.417333pt;}
.w4{width:248.881333pt;}
.w2{width:531.313333pt;}
.w0{width:801.260000pt;}
.w1{width:801.333333pt;}
.x0{left:0.000000pt;}
.x40{left:21.442133pt;}
.x3{left:45.354400pt;}
.x42{left:50.003467pt;}
.xa{left:51.498267pt;}
.x20{left:52.905733pt;}
.x2{left:53.855733pt;}
.x10{left:54.803200pt;}
.x28{left:56.211067pt;}
.x21{left:68.031467pt;}
.x12{left:71.690000pt;}
.xd{left:83.149600pt;}
.x2c{left:92.598400pt;}
.x30{left:95.533600pt;}
.x3e{left:99.441333pt;}
.x2e{left:104.247200pt;}
.x27{left:106.879867pt;}
.x19{left:111.983333pt;}
.x2d{left:114.548000pt;}
.x3d{left:120.774667pt;}
.x13{left:152.595600pt;}
.x18{left:167.339600pt;}
.x39{left:176.976000pt;}
.x37{left:183.352667pt;}
.x35{left:189.020933pt;}
.x24{left:190.109867pt;}
.x11{left:201.939333pt;}
.x2f{left:215.468000pt;}
.x3f{left:221.902667pt;}
.x33{left:238.569600pt;}
.x3a{left:262.108933pt;}
.x23{left:264.570267pt;}
.x1a{left:272.952267pt;}
.x4{left:275.905467pt;}
.x9{left:277.795333pt;}
.x7{left:306.141733pt;}
.x29{left:310.703467pt;}
.x8{left:312.136400pt;}
.xe{left:313.700800pt;}
.x1{left:316.764667pt;}
.x43{left:322.813600pt;}
.x38{left:334.106267pt;}
.x32{left:342.438933pt;}
.x3c{left:348.945333pt;}
.xb{left:354.560000pt;}
.x44{left:387.066000pt;}
.x1b{left:392.712933pt;}
.x22{left:429.603467pt;}
.x45{left:431.250800pt;}
.x3b{left:439.668000pt;}
.x36{left:463.585467pt;}
.x2a{left:468.173467pt;}
.x14{left:482.643333pt;}
.x5{left:506.456667pt;}
.x2b{left:516.928267pt;}
.x1c{left:521.637067pt;}
.x1d{left:523.249467pt;}
.xf{left:544.252800pt;}
.x15{left:558.699600pt;}
.x16{left:565.160800pt;}
.x1e{left:570.300533pt;}
.x1f{left:589.823333pt;}
.x26{left:602.083867pt;}
.xc{left:603.829067pt;}
.x41{left:613.884000pt;}
.x17{left:634.136000pt;}
.x34{left:652.353200pt;}
.x25{left:677.147467pt;}
.x31{left:698.709600pt;}
.x6{left:714.168667pt;}
}




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