
    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_e83fb7de5760dd0cfe982d00.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_3bcab3957e55dd4f2b58d8ce.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_e83fb7de5760dd0cfe982d00.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_bd047da121e4145d61d57659.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_724d4255c82f4083370b9914.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_91841c62e5d617800d36dc2a.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_c7ea7efe6941f59fa2e07b12.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_e83fb7de5760dd0cfe982d00.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_e83fb7de5760dd0cfe982d00.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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_3280a969fb05669d545f20c6.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;}
.m4d{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);}
.m4a{transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245062,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245136,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245160,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245524,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245549,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245552,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245851,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245864,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m13{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);}
.m4c{transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246239,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246478,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246745,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247261,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m3d{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m18{transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m2c{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250554,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251367,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251723,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252024,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252337,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254546,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254666,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254726,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254799,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254995,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);}
.m50{transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255728,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:17.008200px;}
.v4{vertical-align:37.479600px;}
.v3{vertical-align:42.083400px;}
.ls18{letter-spacing:-4.680000px;}
.ls2f{letter-spacing:-4.602000px;}
.ls22{letter-spacing:-3.978000px;}
.ls2d{letter-spacing:-3.276000px;}
.ls35{letter-spacing:-2.886000px;}
.ls37{letter-spacing:-0.717600px;}
.ls24{letter-spacing:-0.662400px;}
.ls23{letter-spacing:-0.552000px;}
.ls1a{letter-spacing:-0.496800px;}
.ls25{letter-spacing:-0.441600px;}
.ls1c{letter-spacing:-0.386400px;}
.ls27{letter-spacing:-0.331200px;}
.ls1b{letter-spacing:-0.276000px;}
.ls30{letter-spacing:-0.261000px;}
.ls26{letter-spacing:-0.220800px;}
.ls28{letter-spacing:-0.210000px;}
.ls1e{letter-spacing:-0.165600px;}
.ls1f{letter-spacing:-0.156000px;}
.ls1d{letter-spacing:-0.110400px;}
.ls2e{letter-spacing:-0.055200px;}
.ls19{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.055200px;}
.ls34{letter-spacing:0.082800px;}
.ls6{letter-spacing:0.110400px;}
.lsd{letter-spacing:0.138000px;}
.ls2b{letter-spacing:0.156600px;}
.ls1{letter-spacing:0.165600px;}
.lsf{letter-spacing:0.193200px;}
.ls0{letter-spacing:0.210000px;}
.lsc{letter-spacing:0.220800px;}
.ls15{letter-spacing:0.234000px;}
.ls31{letter-spacing:0.261000px;}
.ls17{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.276000px;}
.ls21{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.315000px;}
.ls4{letter-spacing:0.331200px;}
.ls36{letter-spacing:0.386400px;}
.ls13{letter-spacing:0.390000px;}
.ls2{letter-spacing:0.441600px;}
.ls32{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.552000px;}
.ls16{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.690000px;}
.ls3{letter-spacing:0.717600px;}
.ls7{letter-spacing:0.772800px;}
.ls5{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.855600px;}
.ls9{letter-spacing:0.883200px;}
.lse{letter-spacing:0.910800px;}
.ls14{letter-spacing:0.960000px;}
.ls29{letter-spacing:0.993600px;}
.ls33{letter-spacing:1.048800px;}
.lsb{letter-spacing:1.435200px;}
.ls2c{letter-spacing:24.335400px;}
.ls11{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;}
}
.ws7c{word-spacing:-14.772600px;}
.ws50{word-spacing:-14.668200px;}
.ws33{word-spacing:-14.511600px;}
.ws6a{word-spacing:-14.250600px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.144000px;}
.ws7e{word-spacing:-11.868000px;}
.ws8e{word-spacing:-4.526400px;}
.ws26{word-spacing:-4.360800px;}
.wsc{word-spacing:-4.305600px;}
.wsd{word-spacing:-4.250400px;}
.ws19{word-spacing:-4.140000px;}
.ws12{word-spacing:-3.864000px;}
.ws5a{word-spacing:-3.698400px;}
.ws4b{word-spacing:-3.588000px;}
.ws60{word-spacing:-3.477600px;}
.ws4{word-spacing:-3.367200px;}
.ws4f{word-spacing:-3.360000px;}
.ws78{word-spacing:-3.201600px;}
.ws5f{word-spacing:-3.146400px;}
.ws56{word-spacing:-3.091200px;}
.ws76{word-spacing:-3.036000px;}
.ws20{word-spacing:-2.980800px;}
.ws4d{word-spacing:-2.925600px;}
.ws68{word-spacing:-2.923200px;}
.wsa{word-spacing:-2.815200px;}
.ws8{word-spacing:-2.760000px;}
.ws36{word-spacing:-2.704800px;}
.ws79{word-spacing:-2.649600px;}
.ws43{word-spacing:-2.539200px;}
.ws87{word-spacing:-2.484000px;}
.ws6{word-spacing:-2.428800px;}
.ws3b{word-spacing:-2.373600px;}
.ws91{word-spacing:-2.318400px;}
.ws21{word-spacing:-2.042400px;}
.ws1e{word-spacing:-1.987200px;}
.ws3d{word-spacing:-1.876800px;}
.ws3f{word-spacing:-1.821600px;}
.ws37{word-spacing:-1.711200px;}
.ws1b{word-spacing:-1.656000px;}
.ws82{word-spacing:-1.600800px;}
.ws57{word-spacing:-1.545600px;}
.wsb{word-spacing:-1.380000px;}
.ws13{word-spacing:-1.324800px;}
.ws75{word-spacing:-1.104000px;}
.ws44{word-spacing:-0.938400px;}
.ws40{word-spacing:-0.607200px;}
.ws86{word-spacing:-0.552000px;}
.ws61{word-spacing:-0.496800px;}
.ws28{word-spacing:-0.386400px;}
.ws8f{word-spacing:-0.315000px;}
.ws81{word-spacing:-0.300000px;}
.ws80{word-spacing:-0.261000px;}
.ws67{word-spacing:-0.220800px;}
.ws69{word-spacing:-0.156600px;}
.ws5b{word-spacing:-0.055200px;}
.ws2{word-spacing:0.000000px;}
.ws46{word-spacing:0.055200px;}
.ws84{word-spacing:0.110400px;}
.ws72{word-spacing:0.386400px;}
.ws22{word-spacing:0.607200px;}
.ws41{word-spacing:0.662400px;}
.ws71{word-spacing:0.772800px;}
.ws52{word-spacing:0.938400px;}
.ws89{word-spacing:0.993600px;}
.ws8b{word-spacing:1.048800px;}
.ws48{word-spacing:1.269600px;}
.ws73{word-spacing:1.324800px;}
.ws7{word-spacing:1.435200px;}
.ws14{word-spacing:1.545600px;}
.ws2c{word-spacing:1.766400px;}
.ws8c{word-spacing:1.876800px;}
.ws2d{word-spacing:1.932000px;}
.ws35{word-spacing:1.987200px;}
.ws53{word-spacing:2.208000px;}
.ws77{word-spacing:2.263200px;}
.ws49{word-spacing:2.428800px;}
.ws27{word-spacing:2.539200px;}
.ws5e{word-spacing:2.594400px;}
.ws24{word-spacing:2.704800px;}
.ws4e{word-spacing:2.815200px;}
.ws55{word-spacing:2.870400px;}
.ws7f{word-spacing:2.886000px;}
.ws23{word-spacing:2.925600px;}
.ws42{word-spacing:2.980800px;}
.ws15{word-spacing:3.036000px;}
.ws3c{word-spacing:3.256800px;}
.ws51{word-spacing:3.276000px;}
.ws11{word-spacing:3.367200px;}
.ws8a{word-spacing:3.422400px;}
.ws1c{word-spacing:3.477600px;}
.ws9{word-spacing:3.643200px;}
.ws58{word-spacing:3.808800px;}
.ws32{word-spacing:3.822000px;}
.ws2f{word-spacing:3.864000px;}
.ws66{word-spacing:3.919200px;}
.ws2b{word-spacing:3.974400px;}
.ws34{word-spacing:3.978000px;}
.ws70{word-spacing:4.140000px;}
.ws5d{word-spacing:4.195200px;}
.ws5{word-spacing:4.305600px;}
.ws4c{word-spacing:4.360800px;}
.ws1f{word-spacing:4.526400px;}
.ws6d{word-spacing:4.602000px;}
.ws3{word-spacing:4.680000px;}
.ws47{word-spacing:4.692000px;}
.ws59{word-spacing:4.747200px;}
.ws65{word-spacing:4.802400px;}
.ws31{word-spacing:4.836000px;}
.ws63{word-spacing:4.857600px;}
.ws2e{word-spacing:4.912800px;}
.ws38{word-spacing:4.968000px;}
.ws83{word-spacing:5.078400px;}
.ws2a{word-spacing:5.188800px;}
.wse{word-spacing:5.299200px;}
.ws6e{word-spacing:5.464800px;}
.ws62{word-spacing:5.575200px;}
.ws6f{word-spacing:5.685600px;}
.ws39{word-spacing:5.796000px;}
.ws54{word-spacing:5.851200px;}
.ws3a{word-spacing:5.906400px;}
.ws1a{word-spacing:5.961600px;}
.ws45{word-spacing:6.016800px;}
.ws10{word-spacing:6.072000px;}
.ws1d{word-spacing:6.127200px;}
.ws29{word-spacing:6.624000px;}
.ws74{word-spacing:6.900000px;}
.ws90{word-spacing:7.065600px;}
.ws3e{word-spacing:7.176000px;}
.ws17{word-spacing:7.231200px;}
.ws88{word-spacing:7.286400px;}
.ws85{word-spacing:7.617600px;}
.ws5c{word-spacing:7.838400px;}
.ws18{word-spacing:9.052800px;}
.wsf{word-spacing:9.604800px;}
.ws16{word-spacing:9.936000px;}
.ws6c{word-spacing:9.970200px;}
.ws4a{word-spacing:10.488000px;}
.ws25{word-spacing:10.929600px;}
.ws8d{word-spacing:11.205600px;}
.ws30{word-spacing:12.558000px;}
.ws64{word-spacing:14.904000px;}
.ws7a{word-spacing:57.524400px;}
.ws7d{word-spacing:136.659600px;}
.ws7b{word-spacing:142.453800px;}
.ws6b{word-spacing:297.795600px;}
._12{margin-left:-1335.902400px;}
._14{margin-left:-935.730600px;}
._5{margin-left:-54.336000px;}
._3{margin-left:-18.403698px;}
._c{margin-left:-14.236080px;}
._17{margin-left:-11.849400px;}
._16{margin-left:-10.804200px;}
._6{margin-left:-9.014880px;}
._a{margin-left:-7.878000px;}
._9{margin-left:-6.592800px;}
._4{margin-left:-5.244000px;}
._0{margin-left:-3.864000px;}
._2{margin-left:-1.987200px;}
._1{width:1.760880px;}
._7{width:3.182400px;}
._8{width:4.815120px;}
._18{width:8.912520px;}
._e{width:24.481800px;}
._d{width:27.405000px;}
._13{width:443.125800px;}
._f{width:524.962800px;}
._10{width:588.595800px;}
._15{width:897.148200px;}
._b{width:1128.661200px;}
._11{width:1569.981120px;}
.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;}
.fs8{font-size:52.200000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:55.200000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:62.485800px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:96.000000px;}
.fs6{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:11.487450px;}
.yee{bottom:11.487750px;}
.yea{bottom:11.488200px;}
.yec{bottom:11.488500px;}
.yf0{bottom:11.488800px;}
.y3{bottom:23.752050px;}
.yf1{bottom:63.533250px;}
.y44{bottom:90.497700px;}
.y53{bottom:90.497850px;}
.y1d{bottom:90.502050px;}
.y58{bottom:109.239450px;}
.yb1{bottom:109.243350px;}
.yd5{bottom:109.245000px;}
.yca{bottom:109.247850px;}
.y43{bottom:109.251900px;}
.y1c{bottom:109.252050px;}
.y57{bottom:127.993650px;}
.yb0{bottom:127.996200px;}
.yd4{bottom:127.997850px;}
.yc9{bottom:128.000700px;}
.y42{bottom:128.001900px;}
.y1b{bottom:128.002050px;}
.yd3{bottom:146.737650px;}
.yba{bottom:146.740500px;}
.y2b{bottom:146.743650px;}
.y56{bottom:146.747850px;}
.y41{bottom:146.751900px;}
.y52{bottom:146.752050px;}
.yd2{bottom:165.490500px;}
.yb9{bottom:165.493350px;}
.y2a{bottom:165.497850px;}
.yaf{bottom:165.500700px;}
.y1a{bottom:165.502050px;}
.ybf{bottom:184.239450px;}
.yae{bottom:184.240500px;}
.yd1{bottom:184.243350px;}
.yb8{bottom:184.246200px;}
.y51{bottom:184.247850px;}
.y40{bottom:184.251900px;}
.y29{bottom:184.252050px;}
.y10c{bottom:184.255350px;}
.y10b{bottom:202.982100px;}
.yc8{bottom:202.987650px;}
.yad{bottom:202.993350px;}
.ybe{bottom:202.993650px;}
.yd0{bottom:202.996200px;}
.y28{bottom:203.002050px;}
.y10a{bottom:221.734950px;}
.yc7{bottom:221.740500px;}
.ycf{bottom:221.742900px;}
.yac{bottom:221.746200px;}
.y19{bottom:221.747850px;}
.y50{bottom:221.752050px;}
.y109{bottom:240.487800px;}
.yc6{bottom:240.493350px;}
.yce{bottom:240.495750px;}
.y96{bottom:240.497850px;}
.yab{bottom:240.499050px;}
.y3f{bottom:240.501900px;}
.y18{bottom:240.502050px;}
.yb7{bottom:259.227000px;}
.y108{bottom:259.240650px;}
.yaa{bottom:259.243350px;}
.yc5{bottom:259.246200px;}
.ycd{bottom:259.248600px;}
.y3e{bottom:259.251900px;}
.y17{bottom:259.252050px;}
.y4f{bottom:259.257450px;}
.yb6{bottom:277.979850px;}
.y107{bottom:277.993500px;}
.ya9{bottom:277.996200px;}
.yc4{bottom:277.999050px;}
.ycc{bottom:278.001450px;}
.y3d{bottom:278.001900px;}
.y16{bottom:278.002050px;}
.yb5{bottom:296.732700px;}
.ybd{bottom:296.743650px;}
.y106{bottom:296.748000px;}
.y5a{bottom:296.749050px;}
.ycb{bottom:296.750250px;}
.y3c{bottom:296.751900px;}
.y15{bottom:296.752050px;}
.yb4{bottom:315.485550px;}
.y59{bottom:315.489450px;}
.ya8{bottom:315.496200px;}
.y27{bottom:315.497850px;}
.y14{bottom:315.502050px;}
.y3b{bottom:315.507300px;}
.yb3{bottom:334.238400px;}
.y4e{bottom:334.243650px;}
.ya7{bottom:334.249050px;}
.yc3{bottom:334.251900px;}
.y13{bottom:334.252050px;}
.y105{bottom:334.253700px;}
.y55{bottom:352.987650px;}
.yb2{bottom:352.991250px;}
.y104{bottom:352.993500px;}
.y4d{bottom:352.997850px;}
.y3a{bottom:353.001900px;}
.y12{bottom:353.002050px;}
.y54{bottom:371.741850px;}
.y103{bottom:371.746350px;}
.y39{bottom:371.751900px;}
.y11{bottom:371.752050px;}
.yc1{bottom:390.493650px;}
.y10{bottom:390.497850px;}
.y102{bottom:390.499200px;}
.y38{bottom:390.501900px;}
.y95{bottom:390.502050px;}
.ybc{bottom:409.243650px;}
.yc0{bottom:409.247850px;}
.y37{bottom:409.251900px;}
.yf{bottom:409.252050px;}
.y5f{bottom:418.627050px;}
.y36{bottom:427.993500px;}
.ybb{bottom:427.993650px;}
.ye{bottom:427.997850px;}
.y26{bottom:428.002050px;}
.y35{bottom:446.747700px;}
.y25{bottom:446.747850px;}
.yd{bottom:446.752050px;}
.ya6{bottom:456.127050px;}
.yc2{bottom:465.496650px;}
.ya3{bottom:465.499200px;}
.y34{bottom:465.501900px;}
.yc{bottom:465.502050px;}
.y5e{bottom:465.502950px;}
.ya5{bottom:468.727050px;}
.ya2{bottom:482.752050px;}
.yb{bottom:484.239450px;}
.y101{bottom:484.250850px;}
.y33{bottom:484.251900px;}
.y24{bottom:484.252050px;}
.ya1{bottom:501.502050px;}
.ya{bottom:502.993650px;}
.y94{bottom:502.999050px;}
.y32{bottom:503.001900px;}
.y23{bottom:503.002050px;}
.y100{bottom:503.003700px;}
.ydf{bottom:514.293600px;}
.ya0{bottom:520.252050px;}
.yff{bottom:521.743500px;}
.y9{bottom:521.744850px;}
.y22{bottom:521.752050px;}
.y93{bottom:521.753250px;}
.y65{bottom:522.694050px;}
.y60{bottom:528.612750px;}
.y67{bottom:528.640200px;}
.y62{bottom:529.642200px;}
.y68{bottom:532.153950px;}
.y9f{bottom:539.002050px;}
.y64{bottom:540.110100px;}
.y8{bottom:540.499050px;}
.y31{bottom:540.501900px;}
.y21{bottom:540.502050px;}
.y92{bottom:540.507450px;}
.y61{bottom:548.395050px;}
.y66{bottom:549.630600px;}
.y9e{bottom:557.752050px;}
.y63{bottom:558.862950px;}
.y11a{bottom:559.247850px;}
.yfe{bottom:559.249200px;}
.y30{bottom:559.251900px;}
.y7{bottom:559.253250px;}
.y9d{bottom:576.502050px;}
.y2f{bottom:578.001900px;}
.y20{bottom:578.002050px;}
.ye6{bottom:579.428250px;}
.ye5{bottom:595.088250px;}
.y9c{bottom:595.252050px;}
.y6{bottom:596.743650px;}
.y2e{bottom:596.751900px;}
.y1f{bottom:596.752050px;}
.ye4{bottom:610.748250px;}
.y9b{bottom:614.002050px;}
.y5{bottom:615.497850px;}
.y2d{bottom:615.501900px;}
.y1e{bottom:615.502050px;}
.ye3{bottom:626.408250px;}
.y9a{bottom:632.752050px;}
.y119{bottom:634.235250px;}
.y2c{bottom:634.251900px;}
.y4{bottom:634.252050px;}
.y99{bottom:651.502050px;}
.y118{bottom:652.989450px;}
.y91{bottom:653.002050px;}
.yfd{bottom:657.767100px;}
.yfc{bottom:667.150050px;}
.y45{bottom:670.252050px;}
.y90{bottom:671.743650px;}
.ye1{bottom:678.359100px;}
.ye0{bottom:685.837350px;}
.y117{bottom:690.489450px;}
.ya4{bottom:690.494250px;}
.y8f{bottom:690.499050px;}
.y98{bottom:690.502800px;}
.ye2{bottom:693.315600px;}
.yfb{bottom:699.905550px;}
.y116{bottom:709.243650px;}
.y8e{bottom:709.253250px;}
.y69{bottom:720.210000px;}
.yfa{bottom:724.889700px;}
.y115{bottom:727.997850px;}
.y8d{bottom:728.008650px;}
.ydd{bottom:740.601750px;}
.yd9{bottom:741.347550px;}
.y114{bottom:746.752050px;}
.yf9{bottom:748.275300px;}
.ydc{bottom:753.201750px;}
.ye9{bottom:755.830500px;}
.y97{bottom:756.418350px;}
.yf8{bottom:757.645200px;}
.y113{bottom:765.502050px;}
.y8c{bottom:765.503250px;}
.y8b{bottom:784.243650px;}
.y4c{bottom:786.645450px;}
.yf7{bottom:790.674750px;}
.yeb{bottom:795.840000px;}
.yd8{bottom:797.893200px;}
.y8a{bottom:802.989450px;}
.y5d{bottom:803.002050px;}
.yf6{bottom:816.187500px;}
.y4b{bottom:818.137950px;}
.y89{bottom:821.743650px;}
.y5c{bottom:821.752050px;}
.yed{bottom:833.080500px;}
.yf5{bottom:839.826150px;}
.y88{bottom:840.497850px;}
.yf4{bottom:849.209100px;}
.y4a{bottom:849.630450px;}
.y72{bottom:857.154150px;}
.y112{bottom:859.247850px;}
.y7b{bottom:859.252050px;}
.yd7{bottom:864.435150px;}
.y6e{bottom:864.529950px;}
.y6a{bottom:866.532000px;}
.y6c{bottom:873.907800px;}
.y71{bottom:875.907000px;}
.yef{bottom:876.730500px;}
.y82{bottom:877.997850px;}
.y7a{bottom:878.002050px;}
.yf3{bottom:880.372500px;}
.y49{bottom:881.122950px;}
.y70{bottom:882.969600px;}
.y6d{bottom:883.282800px;}
.yf2{bottom:889.755450px;}
.y6b{bottom:892.347450px;}
.y79{bottom:896.743650px;}
.y81{bottom:896.752050px;}
.y6f{bottom:901.722450px;}
.y87{bottom:914.002050px;}
.y111{bottom:915.493650px;}
.y78{bottom:915.497850px;}
.y80{bottom:915.502050px;}
.yd6{bottom:930.977100px;}
.y48{bottom:931.384950px;}
.y86{bottom:932.752050px;}
.y110{bottom:934.247850px;}
.y77{bottom:934.252050px;}
.ye7{bottom:935.880000px;}
.y85{bottom:951.502050px;}
.y7f{bottom:952.993650px;}
.y10f{bottom:953.002050px;}
.y7e{bottom:971.747850px;}
.y76{bottom:971.752050px;}
.ydb{bottom:981.356250px;}
.y47{bottom:986.872950px;}
.y84{bottom:989.002050px;}
.y7d{bottom:990.502050px;}
.y10e{bottom:990.503250px;}
.yda{bottom:993.956250px;}
.yde{bottom:995.212350px;}
.y83{bottom:1007.752050px;}
.y7c{bottom:1009.252050px;}
.y10d{bottom:1009.253250px;}
.y75{bottom:1027.993650px;}
.y11b{bottom:1028.002050px;}
.y74{bottom:1046.747850px;}
.y5b{bottom:1046.752050px;}
.y46{bottom:1061.122950px;}
.y73{bottom:1065.502050px;}
.y1{bottom:1148.031450px;}
.y2{bottom:1152.283500px;}
.h4{height:35.364000px;}
.h15{height:39.776400px;}
.h1d{height:43.263000px;}
.h1e{height:43.264500px;}
.h10{height:43.952400px;}
.h18{height:43.957200px;}
.h1b{height:43.968600px;}
.h16{height:43.975200px;}
.h1c{height:43.977000px;}
.h23{height:43.978800px;}
.h21{height:43.984200px;}
.h19{height:43.986600px;}
.h1a{height:43.998000px;}
.h17{height:44.004600px;}
.h24{height:44.056800px;}
.h2{height:45.468000px;}
.hf{height:45.720000px;}
.h13{height:47.614180px;}
.h5{height:47.913600px;}
.h7{height:47.925600px;}
.h6{height:47.930400px;}
.h8{height:47.947200px;}
.ha{height:47.968800px;}
.h9{height:48.006000px;}
.h11{height:49.299600px;}
.h3{height:54.990000px;}
.h25{height:61.200000px;}
.hc{height:65.676000px;}
.h14{height:67.200000px;}
.he{height:71.998200px;}
.hb{height:73.152000px;}
.h20{height:81.432000px;}
.h22{height:81.484200px;}
.h12{height:86.035800px;}
.h1f{height:147.354000px;}
.hd{height:166.656000px;}
.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;}
.x3f{left:24.122400px;}
.x3{left:51.023700px;}
.x2{left:56.496600px;}
.x6{left:57.935550px;}
.x26{left:59.527500px;}
.x21{left:61.653600px;}
.x23{left:73.138650px;}
.x3a{left:76.622550px;}
.x24{left:85.889850px;}
.x9{left:93.543300px;}
.xd{left:102.047250px;}
.xc{left:104.173200px;}
.x2e{left:107.475300px;}
.x3d{left:111.871500px;}
.x2c{left:117.278100px;}
.xe{left:119.055150px;}
.x13{left:121.834200px;}
.x1f{left:125.619450px;}
.x2b{left:128.866500px;}
.x3c{left:135.871500px;}
.x37{left:199.098000px;}
.x35{left:206.271750px;}
.x33{left:212.648550px;}
.x11{left:213.861000px;}
.x12{left:215.205150px;}
.x1d{left:216.640200px;}
.x1e{left:217.984350px;}
.x2d{left:242.401500px;}
.x22{left:244.315500px;}
.x3e{left:249.640500px;}
.x43{left:260.943900px;}
.x31{left:268.390800px;}
.x38{left:294.872550px;}
.x14{left:307.232400px;}
.x1c{left:309.005250px;}
.x4{left:310.393650px;}
.xa{left:352.914300px;}
.x25{left:354.615450px;}
.x1{left:356.360250px;}
.x29{left:361.417350px;}
.x28{left:363.543300px;}
.x36{left:375.869550px;}
.x30{left:385.243800px;}
.x3b{left:392.563500px;}
.x10{left:395.990550px;}
.x7{left:398.880000px;}
.x41{left:435.449250px;}
.x18{left:442.738500px;}
.xf{left:456.138600px;}
.x42{left:485.157150px;}
.x39{left:494.626500px;}
.x16{left:502.953150px;}
.x34{left:521.533650px;}
.x5{left:569.763750px;}
.x1b{left:577.095600px;}
.x17{left:578.341650px;}
.x20{left:582.519750px;}
.x27{left:586.699950px;}
.x2a{left:610.659300px;}
.xb{left:612.283500px;}
.x1a{left:675.254850px;}
.x8{left:685.187850px;}
.x40{left:690.619500px;}
.x32{left:733.897350px;}
.x19{left:764.827200px;}
.x15{left:767.335650px;}
.x2f{left:786.048300px;}
@media print{
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:15.118400pt;}
.v4{vertical-align:33.315200pt;}
.v3{vertical-align:37.407467pt;}
.ls18{letter-spacing:-4.160000pt;}
.ls2f{letter-spacing:-4.090667pt;}
.ls22{letter-spacing:-3.536000pt;}
.ls2d{letter-spacing:-2.912000pt;}
.ls35{letter-spacing:-2.565333pt;}
.ls37{letter-spacing:-0.637867pt;}
.ls24{letter-spacing:-0.588800pt;}
.ls23{letter-spacing:-0.490667pt;}
.ls1a{letter-spacing:-0.441600pt;}
.ls25{letter-spacing:-0.392533pt;}
.ls1c{letter-spacing:-0.343467pt;}
.ls27{letter-spacing:-0.294400pt;}
.ls1b{letter-spacing:-0.245333pt;}
.ls30{letter-spacing:-0.232000pt;}
.ls26{letter-spacing:-0.196267pt;}
.ls28{letter-spacing:-0.186667pt;}
.ls1e{letter-spacing:-0.147200pt;}
.ls1f{letter-spacing:-0.138667pt;}
.ls1d{letter-spacing:-0.098133pt;}
.ls2e{letter-spacing:-0.049067pt;}
.ls19{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.049067pt;}
.ls34{letter-spacing:0.073600pt;}
.ls6{letter-spacing:0.098133pt;}
.lsd{letter-spacing:0.122667pt;}
.ls2b{letter-spacing:0.139200pt;}
.ls1{letter-spacing:0.147200pt;}
.lsf{letter-spacing:0.171733pt;}
.ls0{letter-spacing:0.186667pt;}
.lsc{letter-spacing:0.196267pt;}
.ls15{letter-spacing:0.208000pt;}
.ls31{letter-spacing:0.232000pt;}
.ls17{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.245333pt;}
.ls21{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.280000pt;}
.ls4{letter-spacing:0.294400pt;}
.ls36{letter-spacing:0.343467pt;}
.ls13{letter-spacing:0.346667pt;}
.ls2{letter-spacing:0.392533pt;}
.ls32{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.490667pt;}
.ls16{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.613333pt;}
.ls3{letter-spacing:0.637867pt;}
.ls7{letter-spacing:0.686933pt;}
.ls5{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.760533pt;}
.ls9{letter-spacing:0.785067pt;}
.lse{letter-spacing:0.809600pt;}
.ls14{letter-spacing:0.853333pt;}
.ls29{letter-spacing:0.883200pt;}
.ls33{letter-spacing:0.932267pt;}
.lsb{letter-spacing:1.275733pt;}
.ls2c{letter-spacing:21.631467pt;}
.ls11{letter-spacing:21.632000pt;}
.ws7c{word-spacing:-13.131200pt;}
.ws50{word-spacing:-13.038400pt;}
.ws33{word-spacing:-12.899200pt;}
.ws6a{word-spacing:-12.667200pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.794667pt;}
.ws7e{word-spacing:-10.549333pt;}
.ws8e{word-spacing:-4.023467pt;}
.ws26{word-spacing:-3.876267pt;}
.wsc{word-spacing:-3.827200pt;}
.wsd{word-spacing:-3.778133pt;}
.ws19{word-spacing:-3.680000pt;}
.ws12{word-spacing:-3.434667pt;}
.ws5a{word-spacing:-3.287467pt;}
.ws4b{word-spacing:-3.189333pt;}
.ws60{word-spacing:-3.091200pt;}
.ws4{word-spacing:-2.993067pt;}
.ws4f{word-spacing:-2.986667pt;}
.ws78{word-spacing:-2.845867pt;}
.ws5f{word-spacing:-2.796800pt;}
.ws56{word-spacing:-2.747733pt;}
.ws76{word-spacing:-2.698667pt;}
.ws20{word-spacing:-2.649600pt;}
.ws4d{word-spacing:-2.600533pt;}
.ws68{word-spacing:-2.598400pt;}
.wsa{word-spacing:-2.502400pt;}
.ws8{word-spacing:-2.453333pt;}
.ws36{word-spacing:-2.404267pt;}
.ws79{word-spacing:-2.355200pt;}
.ws43{word-spacing:-2.257067pt;}
.ws87{word-spacing:-2.208000pt;}
.ws6{word-spacing:-2.158933pt;}
.ws3b{word-spacing:-2.109867pt;}
.ws91{word-spacing:-2.060800pt;}
.ws21{word-spacing:-1.815467pt;}
.ws1e{word-spacing:-1.766400pt;}
.ws3d{word-spacing:-1.668267pt;}
.ws3f{word-spacing:-1.619200pt;}
.ws37{word-spacing:-1.521067pt;}
.ws1b{word-spacing:-1.472000pt;}
.ws82{word-spacing:-1.422933pt;}
.ws57{word-spacing:-1.373867pt;}
.wsb{word-spacing:-1.226667pt;}
.ws13{word-spacing:-1.177600pt;}
.ws75{word-spacing:-0.981333pt;}
.ws44{word-spacing:-0.834133pt;}
.ws40{word-spacing:-0.539733pt;}
.ws86{word-spacing:-0.490667pt;}
.ws61{word-spacing:-0.441600pt;}
.ws28{word-spacing:-0.343467pt;}
.ws8f{word-spacing:-0.280000pt;}
.ws81{word-spacing:-0.266667pt;}
.ws80{word-spacing:-0.232000pt;}
.ws67{word-spacing:-0.196267pt;}
.ws69{word-spacing:-0.139200pt;}
.ws5b{word-spacing:-0.049067pt;}
.ws2{word-spacing:0.000000pt;}
.ws46{word-spacing:0.049067pt;}
.ws84{word-spacing:0.098133pt;}
.ws72{word-spacing:0.343467pt;}
.ws22{word-spacing:0.539733pt;}
.ws41{word-spacing:0.588800pt;}
.ws71{word-spacing:0.686933pt;}
.ws52{word-spacing:0.834133pt;}
.ws89{word-spacing:0.883200pt;}
.ws8b{word-spacing:0.932267pt;}
.ws48{word-spacing:1.128533pt;}
.ws73{word-spacing:1.177600pt;}
.ws7{word-spacing:1.275733pt;}
.ws14{word-spacing:1.373867pt;}
.ws2c{word-spacing:1.570133pt;}
.ws8c{word-spacing:1.668267pt;}
.ws2d{word-spacing:1.717333pt;}
.ws35{word-spacing:1.766400pt;}
.ws53{word-spacing:1.962667pt;}
.ws77{word-spacing:2.011733pt;}
.ws49{word-spacing:2.158933pt;}
.ws27{word-spacing:2.257067pt;}
.ws5e{word-spacing:2.306133pt;}
.ws24{word-spacing:2.404267pt;}
.ws4e{word-spacing:2.502400pt;}
.ws55{word-spacing:2.551467pt;}
.ws7f{word-spacing:2.565333pt;}
.ws23{word-spacing:2.600533pt;}
.ws42{word-spacing:2.649600pt;}
.ws15{word-spacing:2.698667pt;}
.ws3c{word-spacing:2.894933pt;}
.ws51{word-spacing:2.912000pt;}
.ws11{word-spacing:2.993067pt;}
.ws8a{word-spacing:3.042133pt;}
.ws1c{word-spacing:3.091200pt;}
.ws9{word-spacing:3.238400pt;}
.ws58{word-spacing:3.385600pt;}
.ws32{word-spacing:3.397333pt;}
.ws2f{word-spacing:3.434667pt;}
.ws66{word-spacing:3.483733pt;}
.ws2b{word-spacing:3.532800pt;}
.ws34{word-spacing:3.536000pt;}
.ws70{word-spacing:3.680000pt;}
.ws5d{word-spacing:3.729067pt;}
.ws5{word-spacing:3.827200pt;}
.ws4c{word-spacing:3.876267pt;}
.ws1f{word-spacing:4.023467pt;}
.ws6d{word-spacing:4.090667pt;}
.ws3{word-spacing:4.160000pt;}
.ws47{word-spacing:4.170667pt;}
.ws59{word-spacing:4.219733pt;}
.ws65{word-spacing:4.268800pt;}
.ws31{word-spacing:4.298667pt;}
.ws63{word-spacing:4.317867pt;}
.ws2e{word-spacing:4.366933pt;}
.ws38{word-spacing:4.416000pt;}
.ws83{word-spacing:4.514133pt;}
.ws2a{word-spacing:4.612267pt;}
.wse{word-spacing:4.710400pt;}
.ws6e{word-spacing:4.857600pt;}
.ws62{word-spacing:4.955733pt;}
.ws6f{word-spacing:5.053867pt;}
.ws39{word-spacing:5.152000pt;}
.ws54{word-spacing:5.201067pt;}
.ws3a{word-spacing:5.250133pt;}
.ws1a{word-spacing:5.299200pt;}
.ws45{word-spacing:5.348267pt;}
.ws10{word-spacing:5.397333pt;}
.ws1d{word-spacing:5.446400pt;}
.ws29{word-spacing:5.888000pt;}
.ws74{word-spacing:6.133333pt;}
.ws90{word-spacing:6.280533pt;}
.ws3e{word-spacing:6.378667pt;}
.ws17{word-spacing:6.427733pt;}
.ws88{word-spacing:6.476800pt;}
.ws85{word-spacing:6.771200pt;}
.ws5c{word-spacing:6.967467pt;}
.ws18{word-spacing:8.046933pt;}
.wsf{word-spacing:8.537600pt;}
.ws16{word-spacing:8.832000pt;}
.ws6c{word-spacing:8.862400pt;}
.ws4a{word-spacing:9.322667pt;}
.ws25{word-spacing:9.715200pt;}
.ws8d{word-spacing:9.960533pt;}
.ws30{word-spacing:11.162667pt;}
.ws64{word-spacing:13.248000pt;}
.ws7a{word-spacing:51.132800pt;}
.ws7d{word-spacing:121.475200pt;}
.ws7b{word-spacing:126.625600pt;}
.ws6b{word-spacing:264.707200pt;}
._12{margin-left:-1187.468800pt;}
._14{margin-left:-831.760533pt;}
._5{margin-left:-48.298667pt;}
._3{margin-left:-16.358843pt;}
._c{margin-left:-12.654293pt;}
._17{margin-left:-10.532800pt;}
._16{margin-left:-9.603733pt;}
._6{margin-left:-8.013227pt;}
._a{margin-left:-7.002667pt;}
._9{margin-left:-5.860267pt;}
._4{margin-left:-4.661333pt;}
._0{margin-left:-3.434667pt;}
._2{margin-left:-1.766400pt;}
._1{width:1.565227pt;}
._7{width:2.828800pt;}
._8{width:4.280107pt;}
._18{width:7.922240pt;}
._e{width:21.761600pt;}
._d{width:24.360000pt;}
._13{width:393.889600pt;}
._f{width:466.633600pt;}
._10{width:523.196267pt;}
._15{width:797.465067pt;}
._b{width:1003.254400pt;}
._11{width:1395.538773pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:46.400000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:49.066667pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:55.542933pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:85.333333pt;}
.fs6{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:10.211067pt;}
.yee{bottom:10.211333pt;}
.yea{bottom:10.211733pt;}
.yec{bottom:10.212000pt;}
.yf0{bottom:10.212267pt;}
.y3{bottom:21.112933pt;}
.yf1{bottom:56.474000pt;}
.y44{bottom:80.442400pt;}
.y53{bottom:80.442533pt;}
.y1d{bottom:80.446267pt;}
.y58{bottom:97.101733pt;}
.yb1{bottom:97.105200pt;}
.yd5{bottom:97.106667pt;}
.yca{bottom:97.109200pt;}
.y43{bottom:97.112800pt;}
.y1c{bottom:97.112933pt;}
.y57{bottom:113.772133pt;}
.yb0{bottom:113.774400pt;}
.yd4{bottom:113.775867pt;}
.yc9{bottom:113.778400pt;}
.y42{bottom:113.779467pt;}
.y1b{bottom:113.779600pt;}
.yd3{bottom:130.433467pt;}
.yba{bottom:130.436000pt;}
.y2b{bottom:130.438800pt;}
.y56{bottom:130.442533pt;}
.y41{bottom:130.446133pt;}
.y52{bottom:130.446267pt;}
.yd2{bottom:147.102667pt;}
.yb9{bottom:147.105200pt;}
.y2a{bottom:147.109200pt;}
.yaf{bottom:147.111733pt;}
.y1a{bottom:147.112933pt;}
.ybf{bottom:163.768400pt;}
.yae{bottom:163.769333pt;}
.yd1{bottom:163.771867pt;}
.yb8{bottom:163.774400pt;}
.y51{bottom:163.775867pt;}
.y40{bottom:163.779467pt;}
.y29{bottom:163.779600pt;}
.y10c{bottom:163.782533pt;}
.y10b{bottom:180.428533pt;}
.yc8{bottom:180.433467pt;}
.yad{bottom:180.438533pt;}
.ybe{bottom:180.438800pt;}
.yd0{bottom:180.441067pt;}
.y28{bottom:180.446267pt;}
.y10a{bottom:197.097733pt;}
.yc7{bottom:197.102667pt;}
.ycf{bottom:197.104800pt;}
.yac{bottom:197.107733pt;}
.y19{bottom:197.109200pt;}
.y50{bottom:197.112933pt;}
.y109{bottom:213.766933pt;}
.yc6{bottom:213.771867pt;}
.yce{bottom:213.774000pt;}
.y96{bottom:213.775867pt;}
.yab{bottom:213.776933pt;}
.y3f{bottom:213.779467pt;}
.y18{bottom:213.779600pt;}
.yb7{bottom:230.424000pt;}
.y108{bottom:230.436133pt;}
.yaa{bottom:230.438533pt;}
.yc5{bottom:230.441067pt;}
.ycd{bottom:230.443200pt;}
.y3e{bottom:230.446133pt;}
.y17{bottom:230.446267pt;}
.y4f{bottom:230.451067pt;}
.yb6{bottom:247.093200pt;}
.y107{bottom:247.105333pt;}
.ya9{bottom:247.107733pt;}
.yc4{bottom:247.110267pt;}
.ycc{bottom:247.112400pt;}
.y3d{bottom:247.112800pt;}
.y16{bottom:247.112933pt;}
.yb5{bottom:263.762400pt;}
.ybd{bottom:263.772133pt;}
.y106{bottom:263.776000pt;}
.y5a{bottom:263.776933pt;}
.ycb{bottom:263.778000pt;}
.y3c{bottom:263.779467pt;}
.y15{bottom:263.779600pt;}
.yb4{bottom:280.431600pt;}
.y59{bottom:280.435067pt;}
.ya8{bottom:280.441067pt;}
.y27{bottom:280.442533pt;}
.y14{bottom:280.446267pt;}
.y3b{bottom:280.450933pt;}
.yb3{bottom:297.100800pt;}
.y4e{bottom:297.105467pt;}
.ya7{bottom:297.110267pt;}
.yc3{bottom:297.112800pt;}
.y13{bottom:297.112933pt;}
.y105{bottom:297.114400pt;}
.y55{bottom:313.766800pt;}
.yb2{bottom:313.770000pt;}
.y104{bottom:313.772000pt;}
.y4d{bottom:313.775867pt;}
.y3a{bottom:313.779467pt;}
.y12{bottom:313.779600pt;}
.y54{bottom:330.437200pt;}
.y103{bottom:330.441200pt;}
.y39{bottom:330.446133pt;}
.y11{bottom:330.446267pt;}
.yc1{bottom:347.105467pt;}
.y10{bottom:347.109200pt;}
.y102{bottom:347.110400pt;}
.y38{bottom:347.112800pt;}
.y95{bottom:347.112933pt;}
.ybc{bottom:363.772133pt;}
.yc0{bottom:363.775867pt;}
.y37{bottom:363.779467pt;}
.yf{bottom:363.779600pt;}
.y5f{bottom:372.112933pt;}
.y36{bottom:380.438667pt;}
.ybb{bottom:380.438800pt;}
.ye{bottom:380.442533pt;}
.y26{bottom:380.446267pt;}
.y35{bottom:397.109067pt;}
.y25{bottom:397.109200pt;}
.yd{bottom:397.112933pt;}
.ya6{bottom:405.446267pt;}
.yc2{bottom:413.774800pt;}
.ya3{bottom:413.777067pt;}
.y34{bottom:413.779467pt;}
.yc{bottom:413.779600pt;}
.y5e{bottom:413.780400pt;}
.ya5{bottom:416.646267pt;}
.ya2{bottom:429.112933pt;}
.yb{bottom:430.435067pt;}
.y101{bottom:430.445200pt;}
.y33{bottom:430.446133pt;}
.y24{bottom:430.446267pt;}
.ya1{bottom:445.779600pt;}
.ya{bottom:447.105467pt;}
.y94{bottom:447.110267pt;}
.y32{bottom:447.112800pt;}
.y23{bottom:447.112933pt;}
.y100{bottom:447.114400pt;}
.ydf{bottom:457.149867pt;}
.ya0{bottom:462.446267pt;}
.yff{bottom:463.772000pt;}
.y9{bottom:463.773200pt;}
.y22{bottom:463.779600pt;}
.y93{bottom:463.780667pt;}
.y65{bottom:464.616933pt;}
.y60{bottom:469.878000pt;}
.y67{bottom:469.902400pt;}
.y62{bottom:470.793067pt;}
.y68{bottom:473.025733pt;}
.y9f{bottom:479.112933pt;}
.y64{bottom:480.097867pt;}
.y8{bottom:480.443600pt;}
.y31{bottom:480.446133pt;}
.y21{bottom:480.446267pt;}
.y92{bottom:480.451067pt;}
.y61{bottom:487.462267pt;}
.y66{bottom:488.560533pt;}
.y9e{bottom:495.779600pt;}
.y63{bottom:496.767067pt;}
.y11a{bottom:497.109200pt;}
.yfe{bottom:497.110400pt;}
.y30{bottom:497.112800pt;}
.y7{bottom:497.114000pt;}
.y9d{bottom:512.446267pt;}
.y2f{bottom:513.779467pt;}
.y20{bottom:513.779600pt;}
.ye6{bottom:515.047333pt;}
.ye5{bottom:528.967333pt;}
.y9c{bottom:529.112933pt;}
.y6{bottom:530.438800pt;}
.y2e{bottom:530.446133pt;}
.y1f{bottom:530.446267pt;}
.ye4{bottom:542.887333pt;}
.y9b{bottom:545.779600pt;}
.y5{bottom:547.109200pt;}
.y2d{bottom:547.112800pt;}
.y1e{bottom:547.112933pt;}
.ye3{bottom:556.807333pt;}
.y9a{bottom:562.446267pt;}
.y119{bottom:563.764667pt;}
.y2c{bottom:563.779467pt;}
.y4{bottom:563.779600pt;}
.y99{bottom:579.112933pt;}
.y118{bottom:580.435067pt;}
.y91{bottom:580.446267pt;}
.yfd{bottom:584.681867pt;}
.yfc{bottom:593.022267pt;}
.y45{bottom:595.779600pt;}
.y90{bottom:597.105467pt;}
.ye1{bottom:602.985867pt;}
.ye0{bottom:609.633200pt;}
.y117{bottom:613.768400pt;}
.ya4{bottom:613.772667pt;}
.y8f{bottom:613.776933pt;}
.y98{bottom:613.780267pt;}
.ye2{bottom:616.280533pt;}
.yfb{bottom:622.138267pt;}
.y116{bottom:630.438800pt;}
.y8e{bottom:630.447333pt;}
.y69{bottom:640.186667pt;}
.yfa{bottom:644.346400pt;}
.y115{bottom:647.109200pt;}
.y8d{bottom:647.118800pt;}
.ydd{bottom:658.312667pt;}
.yd9{bottom:658.975600pt;}
.y114{bottom:663.779600pt;}
.yf9{bottom:665.133600pt;}
.ydc{bottom:669.512667pt;}
.ye9{bottom:671.849333pt;}
.y97{bottom:672.371867pt;}
.yf8{bottom:673.462400pt;}
.y113{bottom:680.446267pt;}
.y8c{bottom:680.447333pt;}
.y8b{bottom:697.105467pt;}
.y4c{bottom:699.240400pt;}
.yf7{bottom:702.822000pt;}
.yeb{bottom:707.413333pt;}
.yd8{bottom:709.238400pt;}
.y8a{bottom:713.768400pt;}
.y5d{bottom:713.779600pt;}
.yf6{bottom:725.500000pt;}
.y4b{bottom:727.233733pt;}
.y89{bottom:730.438800pt;}
.y5c{bottom:730.446267pt;}
.yed{bottom:740.516000pt;}
.yf5{bottom:746.512133pt;}
.y88{bottom:747.109200pt;}
.yf4{bottom:754.852533pt;}
.y4a{bottom:755.227067pt;}
.y72{bottom:761.914800pt;}
.y112{bottom:763.775867pt;}
.y7b{bottom:763.779600pt;}
.yd7{bottom:768.386800pt;}
.y6e{bottom:768.471067pt;}
.y6a{bottom:770.250667pt;}
.y6c{bottom:776.806933pt;}
.y71{bottom:778.584000pt;}
.yef{bottom:779.316000pt;}
.y82{bottom:780.442533pt;}
.y7a{bottom:780.446267pt;}
.yf3{bottom:782.553333pt;}
.y49{bottom:783.220400pt;}
.y70{bottom:784.861867pt;}
.y6d{bottom:785.140267pt;}
.yf2{bottom:790.893733pt;}
.y6b{bottom:793.197733pt;}
.y79{bottom:797.105467pt;}
.y81{bottom:797.112933pt;}
.y6f{bottom:801.531067pt;}
.y87{bottom:812.446267pt;}
.y111{bottom:813.772133pt;}
.y78{bottom:813.775867pt;}
.y80{bottom:813.779600pt;}
.yd6{bottom:827.535200pt;}
.y48{bottom:827.897733pt;}
.y86{bottom:829.112933pt;}
.y110{bottom:830.442533pt;}
.y77{bottom:830.446267pt;}
.ye7{bottom:831.893333pt;}
.y85{bottom:845.779600pt;}
.y7f{bottom:847.105467pt;}
.y10f{bottom:847.112933pt;}
.y7e{bottom:863.775867pt;}
.y76{bottom:863.779600pt;}
.ydb{bottom:872.316667pt;}
.y47{bottom:877.220400pt;}
.y84{bottom:879.112933pt;}
.y7d{bottom:880.446267pt;}
.y10e{bottom:880.447333pt;}
.yda{bottom:883.516667pt;}
.yde{bottom:884.633200pt;}
.y83{bottom:895.779600pt;}
.y7c{bottom:897.112933pt;}
.y10d{bottom:897.114000pt;}
.y75{bottom:913.772133pt;}
.y11b{bottom:913.779600pt;}
.y74{bottom:930.442533pt;}
.y5b{bottom:930.446267pt;}
.y46{bottom:943.220400pt;}
.y73{bottom:947.112933pt;}
.y1{bottom:1020.472400pt;}
.y2{bottom:1024.252000pt;}
.h4{height:31.434667pt;}
.h15{height:35.356800pt;}
.h1d{height:38.456000pt;}
.h1e{height:38.457333pt;}
.h10{height:39.068800pt;}
.h18{height:39.073067pt;}
.h1b{height:39.083200pt;}
.h16{height:39.089067pt;}
.h1c{height:39.090667pt;}
.h23{height:39.092267pt;}
.h21{height:39.097067pt;}
.h19{height:39.099200pt;}
.h1a{height:39.109333pt;}
.h17{height:39.115200pt;}
.h24{height:39.161600pt;}
.h2{height:40.416000pt;}
.hf{height:40.640000pt;}
.h13{height:42.323715pt;}
.h5{height:42.589867pt;}
.h7{height:42.600533pt;}
.h6{height:42.604800pt;}
.h8{height:42.619733pt;}
.ha{height:42.638933pt;}
.h9{height:42.672000pt;}
.h11{height:43.821867pt;}
.h3{height:48.880000pt;}
.h25{height:54.400000pt;}
.hc{height:58.378667pt;}
.h14{height:59.733333pt;}
.he{height:63.998400pt;}
.hb{height:65.024000pt;}
.h20{height:72.384000pt;}
.h22{height:72.430400pt;}
.h12{height:76.476267pt;}
.h1f{height:130.981333pt;}
.hd{height:148.138667pt;}
.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;}
.x3f{left:21.442133pt;}
.x3{left:45.354400pt;}
.x2{left:50.219200pt;}
.x6{left:51.498267pt;}
.x26{left:52.913333pt;}
.x21{left:54.803200pt;}
.x23{left:65.012133pt;}
.x3a{left:68.108933pt;}
.x24{left:76.346533pt;}
.x9{left:83.149600pt;}
.xd{left:90.708667pt;}
.xc{left:92.598400pt;}
.x2e{left:95.533600pt;}
.x3d{left:99.441333pt;}
.x2c{left:104.247200pt;}
.xe{left:105.826800pt;}
.x13{left:108.297067pt;}
.x1f{left:111.661733pt;}
.x2b{left:114.548000pt;}
.x3c{left:120.774667pt;}
.x37{left:176.976000pt;}
.x35{left:183.352667pt;}
.x33{left:189.020933pt;}
.x11{left:190.098667pt;}
.x12{left:191.293467pt;}
.x1d{left:192.569067pt;}
.x1e{left:193.763867pt;}
.x2d{left:215.468000pt;}
.x22{left:217.169333pt;}
.x3e{left:221.902667pt;}
.x43{left:231.950133pt;}
.x31{left:238.569600pt;}
.x38{left:262.108933pt;}
.x14{left:273.095467pt;}
.x1c{left:274.671333pt;}
.x4{left:275.905467pt;}
.xa{left:313.701600pt;}
.x25{left:315.213733pt;}
.x1{left:316.764667pt;}
.x29{left:321.259867pt;}
.x28{left:323.149600pt;}
.x36{left:334.106267pt;}
.x30{left:342.438933pt;}
.x3b{left:348.945333pt;}
.x10{left:351.991600pt;}
.x7{left:354.560000pt;}
.x41{left:387.066000pt;}
.x18{left:393.545333pt;}
.xf{left:405.456533pt;}
.x42{left:431.250800pt;}
.x39{left:439.668000pt;}
.x16{left:447.069467pt;}
.x34{left:463.585467pt;}
.x5{left:506.456667pt;}
.x1b{left:512.973867pt;}
.x17{left:514.081467pt;}
.x20{left:517.795333pt;}
.x27{left:521.511067pt;}
.x2a{left:542.808267pt;}
.xb{left:544.252000pt;}
.x1a{left:600.226533pt;}
.x8{left:609.055867pt;}
.x40{left:613.884000pt;}
.x32{left:652.353200pt;}
.x19{left:679.846400pt;}
.x15{left:682.076133pt;}
.x2f{left:698.709600pt;}
}




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