
    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_479887cccd96abce6ced47a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174000;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_5890338c8c5c3e3c3e2b2fde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_74a11ca75249a99430b4e7bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.178000;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_aa0ac28e32159e7b6efe439d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_c4d734b037aacac9eedc8e09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207000;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_2037041df41696c8aa87f344.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.174000;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_abbbf0c4c4db9ac8b8f7f749.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.015280;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;}
.m32{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247798,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248668,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248827,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m3c{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);}
.me{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,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);}
.m3e{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250736,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.220800px;}
.v1{vertical-align:21.912000px;}
.ls1f{letter-spacing:-3.300000px;}
.ls24{letter-spacing:-2.850000px;}
.ls1b{letter-spacing:-0.990000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls18{letter-spacing:-0.726000px;}
.ls19{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.396000px;}
.ls8{letter-spacing:-0.330000px;}
.ls26{letter-spacing:-0.285000px;}
.ls5{letter-spacing:-0.264000px;}
.ls27{letter-spacing:-0.228000px;}
.ls4{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.171000px;}
.ls2f{letter-spacing:-0.132924px;}
.ls6{letter-spacing:-0.132000px;}
.ls25{letter-spacing:-0.114000px;}
.ls7{letter-spacing:-0.066000px;}
.ls31{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000120px;}
.ls1c{letter-spacing:0.024202px;}
.ls2b{letter-spacing:0.033231px;}
.ls1e{letter-spacing:0.038478px;}
.ls2a{letter-spacing:0.047766px;}
.ls29{letter-spacing:0.057000px;}
.ls9{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.114000px;}
.ls12{letter-spacing:0.171000px;}
.ls10{letter-spacing:0.198000px;}
.ls22{letter-spacing:0.228000px;}
.ls2{letter-spacing:0.264000px;}
.ls30{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.285000px;}
.ls1{letter-spacing:0.297000px;}
.lsc{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.462000px;}
.ls13{letter-spacing:0.561000px;}
.ls20{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.726000px;}
.ls1d{letter-spacing:0.810000px;}
.ls17{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.140000px;}
.lsb{letter-spacing:1.350000px;}
.ls21{letter-spacing:1.425000px;}
.ls2e{letter-spacing:5.238300px;}
.lsa{letter-spacing:1935.957600px;}
.lsf{letter-spacing:1936.173600px;}
.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;}
}
.ws2d{word-spacing:-14.148000px;}
.ws6a{word-spacing:-13.926000px;}
.ws66{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.860000px;}
.wsb9{word-spacing:-13.068000px;}
.ws1c{word-spacing:-12.870000px;}
.ws2c{word-spacing:-12.798000px;}
.ws77{word-spacing:-12.255000px;}
.ws75{word-spacing:-12.198000px;}
.ws76{word-spacing:-12.084000px;}
.ws93{word-spacing:-12.027000px;}
.ws74{word-spacing:-11.970000px;}
.ws73{word-spacing:-11.856000px;}
.ws79{word-spacing:-11.742000px;}
.ws72{word-spacing:-11.115000px;}
.ws3e{word-spacing:-11.001000px;}
.ws78{word-spacing:-10.830000px;}
.wsb5{word-spacing:-9.348000px;}
.ws71{word-spacing:-8.265000px;}
.ws6b{word-spacing:-8.118858px;}
.ws0{word-spacing:-8.080380px;}
.ws94{word-spacing:-7.011741px;}
.ws92{word-spacing:-6.978510px;}
.ws68{word-spacing:-3.432000px;}
.ws2e{word-spacing:-3.234000px;}
.ws14{word-spacing:-2.838000px;}
.ws8{word-spacing:-2.772000px;}
.ws9{word-spacing:-2.706000px;}
.ws35{word-spacing:-2.640000px;}
.ws13{word-spacing:-2.574000px;}
.wsa3{word-spacing:-2.565000px;}
.wsa{word-spacing:-2.508000px;}
.ws8e{word-spacing:-2.451000px;}
.ws82{word-spacing:-2.394000px;}
.ws65{word-spacing:-2.376000px;}
.wsb7{word-spacing:-2.280000px;}
.ws56{word-spacing:-2.244000px;}
.ws83{word-spacing:-2.223000px;}
.ws26{word-spacing:-2.178000px;}
.ws5c{word-spacing:-2.112000px;}
.ws97{word-spacing:-2.109000px;}
.ws3a{word-spacing:-2.046000px;}
.ws98{word-spacing:-1.995000px;}
.ws5f{word-spacing:-1.980000px;}
.wsae{word-spacing:-1.938000px;}
.ws21{word-spacing:-1.914000px;}
.ws4a{word-spacing:-1.848000px;}
.wsa2{word-spacing:-1.824000px;}
.ws6e{word-spacing:-1.782000px;}
.wsb{word-spacing:-1.716000px;}
.wsb8{word-spacing:-1.710000px;}
.ws63{word-spacing:-1.650000px;}
.wsbd{word-spacing:-1.596000px;}
.ws62{word-spacing:-1.584000px;}
.ws3{word-spacing:-1.518000px;}
.wsbe{word-spacing:-1.482000px;}
.ws5e{word-spacing:-1.452000px;}
.ws9d{word-spacing:-1.425000px;}
.wsc2{word-spacing:-1.368000px;}
.ws1d{word-spacing:-1.350000px;}
.ws6c{word-spacing:-1.320000px;}
.ws9e{word-spacing:-1.311000px;}
.ws44{word-spacing:-1.254000px;}
.ws2a{word-spacing:-1.188000px;}
.ws86{word-spacing:-1.140000px;}
.ws9c{word-spacing:-1.083000px;}
.ws55{word-spacing:-1.056000px;}
.ws4{word-spacing:-0.990000px;}
.wsa6{word-spacing:-0.969000px;}
.ws34{word-spacing:-0.924000px;}
.ws33{word-spacing:-0.858000px;}
.wsc0{word-spacing:-0.798000px;}
.ws5{word-spacing:-0.792000px;}
.wsc1{word-spacing:-0.741000px;}
.ws4e{word-spacing:-0.726000px;}
.ws15{word-spacing:-0.720000px;}
.ws8a{word-spacing:-0.684000px;}
.ws36{word-spacing:-0.660000px;}
.ws8b{word-spacing:-0.627000px;}
.ws7a{word-spacing:-0.600000px;}
.ws61{word-spacing:-0.594000px;}
.ws89{word-spacing:-0.570000px;}
.wsf{word-spacing:-0.528000px;}
.ws9f{word-spacing:-0.513000px;}
.ws10{word-spacing:-0.462000px;}
.wsa0{word-spacing:-0.456000px;}
.wsba{word-spacing:-0.399000px;}
.ws1e{word-spacing:-0.396000px;}
.wsbb{word-spacing:-0.342000px;}
.ws17{word-spacing:-0.330000px;}
.ws96{word-spacing:-0.285000px;}
.wsc{word-spacing:-0.264000px;}
.wsaf{word-spacing:-0.228000px;}
.ws2b{word-spacing:-0.198000px;}
.ws95{word-spacing:-0.171000px;}
.ws57{word-spacing:-0.132000px;}
.ws5b{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.066000px;}
.ws81{word-spacing:0.114000px;}
.ws70{word-spacing:0.132000px;}
.wsb6{word-spacing:0.132924px;}
.wsa5{word-spacing:0.171000px;}
.ws3c{word-spacing:0.198000px;}
.ws6f{word-spacing:0.264000px;}
.ws28{word-spacing:0.330000px;}
.ws41{word-spacing:0.396000px;}
.ws23{word-spacing:0.462000px;}
.ws67{word-spacing:0.528000px;}
.wsad{word-spacing:0.570000px;}
.ws49{word-spacing:0.594000px;}
.ws16{word-spacing:0.660000px;}
.ws20{word-spacing:0.726000px;}
.ws51{word-spacing:0.792000px;}
.wsb1{word-spacing:0.798000px;}
.ws9a{word-spacing:0.969000px;}
.ws3b{word-spacing:0.990000px;}
.ws9b{word-spacing:1.026000px;}
.ws4b{word-spacing:1.056000px;}
.ws99{word-spacing:1.083000px;}
.ws5a{word-spacing:1.122000px;}
.ws31{word-spacing:1.254000px;}
.wsb3{word-spacing:1.311000px;}
.ws29{word-spacing:1.320000px;}
.ws7e{word-spacing:1.368000px;}
.ws25{word-spacing:1.386000px;}
.ws7d{word-spacing:1.425000px;}
.ws45{word-spacing:1.452000px;}
.ws8f{word-spacing:1.482000px;}
.ws11{word-spacing:1.518000px;}
.ws7f{word-spacing:1.539000px;}
.ws88{word-spacing:1.596000px;}
.wse{word-spacing:1.650000px;}
.ws80{word-spacing:1.653000px;}
.ws3d{word-spacing:1.782000px;}
.ws3f{word-spacing:1.848000px;}
.ws87{word-spacing:1.881000px;}
.ws59{word-spacing:1.914000px;}
.wsa9{word-spacing:1.938000px;}
.wsd{word-spacing:1.980000px;}
.wsab{word-spacing:2.109000px;}
.ws1a{word-spacing:2.112000px;}
.wsaa{word-spacing:2.280000px;}
.ws64{word-spacing:2.310000px;}
.ws38{word-spacing:2.376000px;}
.wsac{word-spacing:2.451000px;}
.ws2f{word-spacing:2.508000px;}
.wsbf{word-spacing:2.565000px;}
.ws37{word-spacing:2.574000px;}
.ws7b{word-spacing:2.679000px;}
.ws30{word-spacing:2.706000px;}
.wsbc{word-spacing:2.736000px;}
.ws4c{word-spacing:2.772000px;}
.ws24{word-spacing:2.838000px;}
.ws7c{word-spacing:2.850000px;}
.ws5d{word-spacing:2.904000px;}
.wsa4{word-spacing:2.964000px;}
.ws22{word-spacing:2.970000px;}
.ws90{word-spacing:3.021000px;}
.ws6d{word-spacing:3.036000px;}
.ws4f{word-spacing:3.102000px;}
.ws52{word-spacing:3.234000px;}
.wsa1{word-spacing:3.249000px;}
.ws39{word-spacing:3.300000px;}
.ws40{word-spacing:3.366000px;}
.ws8c{word-spacing:3.420000px;}
.ws7{word-spacing:3.432000px;}
.ws8d{word-spacing:3.477000px;}
.ws4d{word-spacing:3.498000px;}
.ws19{word-spacing:3.564000px;}
.ws47{word-spacing:3.591000px;}
.ws60{word-spacing:3.630000px;}
.ws85{word-spacing:3.648000px;}
.ws53{word-spacing:3.696000px;}
.wsa8{word-spacing:3.705000px;}
.ws6{word-spacing:3.762000px;}
.ws32{word-spacing:3.828000px;}
.ws46{word-spacing:3.876000px;}
.ws48{word-spacing:3.894000px;}
.ws84{word-spacing:3.933000px;}
.ws54{word-spacing:3.960000px;}
.wsa7{word-spacing:3.990000px;}
.ws50{word-spacing:4.026000px;}
.ws1b{word-spacing:4.140000px;}
.ws42{word-spacing:4.158000px;}
.ws27{word-spacing:4.224000px;}
.wsb2{word-spacing:4.275000px;}
.ws43{word-spacing:4.422000px;}
.ws18{word-spacing:4.554000px;}
.ws1f{word-spacing:4.620000px;}
.wsb4{word-spacing:7.581000px;}
.ws58{word-spacing:1898.643600px;}
.ws91{word-spacing:1901.505600px;}
.wsb0{word-spacing:1902.693600px;}
.ws69{word-spacing:1905.393600px;}
._12{margin-left:-2620.296000px;}
._d{margin-left:-2619.216000px;}
._8{margin-left:-19.264200px;}
._b{margin-left:-16.794000px;}
._10{margin-left:-15.218400px;}
._c{margin-left:-13.848000px;}
._11{margin-left:-12.048000px;}
._f{margin-left:-10.948200px;}
._13{margin-left:-8.916600px;}
._6{margin-left:-7.590000px;}
._5{margin-left:-6.498000px;}
._2{margin-left:-4.740000px;}
._1{margin-left:-3.547800px;}
._e{margin-left:-2.538000px;}
._0{margin-left:-1.530000px;}
._4{width:1.058400px;}
._9{width:2.092800px;}
._7{width:3.106200px;}
._3{width:4.690200px;}
._19{width:6.820800px;}
._15{width:33.115200px;}
._16{width:37.902000px;}
._17{width:39.612000px;}
._1c{width:41.118000px;}
._14{width:42.204600px;}
._1b{width:44.526000px;}
._1a{width:45.975600px;}
._18{width:53.181000px;}
._a{width:64.320000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs4{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y66{bottom:89.716350px;}
.ya8{bottom:89.716500px;}
.y2a{bottom:89.716800px;}
.y88{bottom:89.719200px;}
.yd3{bottom:89.745150px;}
.y40{bottom:90.296700px;}
.y29{bottom:107.716800px;}
.y65{bottom:109.700700px;}
.yd2{bottom:109.723650px;}
.y64{bottom:129.684900px;}
.ya7{bottom:129.687750px;}
.yd1{bottom:129.702150px;}
.y11d{bottom:129.707850px;}
.yfd{bottom:129.719400px;}
.y63{bottom:149.669100px;}
.y28{bottom:149.669250px;}
.yd0{bottom:149.680650px;}
.y11c{bottom:149.686350px;}
.yfc{bottom:149.697900px;}
.y62{bottom:169.653450px;}
.y27{bottom:169.653600px;}
.ycf{bottom:169.659150px;}
.y11b{bottom:169.664850px;}
.y87{bottom:169.667100px;}
.yfb{bottom:169.676400px;}
.y61{bottom:189.637650px;}
.y26{bottom:189.637800px;}
.y11a{bottom:189.643350px;}
.y86{bottom:189.648600px;}
.yfa{bottom:189.654900px;}
.yb6{bottom:209.621850px;}
.y25{bottom:209.622000px;}
.y60{bottom:209.630100px;}
.yf9{bottom:209.633400px;}
.yb5{bottom:229.606200px;}
.y24{bottom:229.606350px;}
.y5f{bottom:229.611600px;}
.yf8{bottom:229.611900px;}
.ya6{bottom:229.622700px;}
.yce{bottom:229.623450px;}
.y75{bottom:248.536350px;}
.yf7{bottom:249.590400px;}
.y23{bottom:249.590550px;}
.y5e{bottom:249.593100px;}
.y119{bottom:249.596100px;}
.ycd{bottom:249.601950px;}
.ya5{bottom:249.604200px;}
.y74{bottom:266.536350px;}
.y5d{bottom:269.574600px;}
.y22{bottom:269.574900px;}
.ycc{bottom:269.580450px;}
.ya4{bottom:269.585700px;}
.y73{bottom:284.536350px;}
.y5c{bottom:289.558950px;}
.y21{bottom:289.559100px;}
.yf6{bottom:289.564650px;}
.ya3{bottom:289.567200px;}
.y5b{bottom:309.543150px;}
.y85{bottom:309.546000px;}
.y118{bottom:309.546150px;}
.ya2{bottom:309.548700px;}
.y20{bottom:309.548850px;}
.y84{bottom:329.527500px;}
.y5a{bottom:329.530200px;}
.y1f{bottom:329.530350px;}
.ycb{bottom:329.550450px;}
.y12f{bottom:329.573400px;}
.y59{bottom:349.511700px;}
.y1e{bottom:349.511850px;}
.yb4{bottom:349.514400px;}
.yf5{bottom:349.517400px;}
.yca{bottom:349.528950px;}
.ya0{bottom:349.533750px;}
.y12e{bottom:349.551900px;}
.y58{bottom:369.495900px;}
.y1d{bottom:369.496050px;}
.y83{bottom:369.498750px;}
.yc9{bottom:369.507450px;}
.y9f{bottom:369.515250px;}
.y12d{bottom:369.530400px;}
.yf4{bottom:369.685950px;}
.ya1{bottom:389.480250px;}
.y1c{bottom:389.480400px;}
.y82{bottom:389.482950px;}
.yc8{bottom:389.485950px;}
.y9e{bottom:389.496750px;}
.y12c{bottom:389.508900px;}
.yf3{bottom:389.664450px;}
.y117{bottom:394.225500px;}
.y81{bottom:409.464450px;}
.y1b{bottom:409.464600px;}
.y57{bottom:409.475400px;}
.y9d{bottom:409.478250px;}
.y116{bottom:409.479000px;}
.y12b{bottom:409.487400px;}
.yf2{bottom:409.642950px;}
.y80{bottom:429.448650px;}
.y56{bottom:429.456900px;}
.y115{bottom:429.457500px;}
.y9c{bottom:429.459750px;}
.y12a{bottom:429.465900px;}
.yf1{bottom:429.621450px;}
.y7f{bottom:449.433000px;}
.y1a{bottom:449.433150px;}
.y114{bottom:449.436000px;}
.y55{bottom:449.438400px;}
.y9b{bottom:449.441250px;}
.y129{bottom:449.444400px;}
.yf0{bottom:449.599950px;}
.y113{bottom:469.414500px;}
.y7e{bottom:469.417200px;}
.y54{bottom:469.419900px;}
.y9a{bottom:469.422750px;}
.y128{bottom:469.422900px;}
.yef{bottom:469.578450px;}
.ya9{bottom:484.620600px;}
.y53{bottom:489.401400px;}
.y99{bottom:489.404250px;}
.yee{bottom:489.556950px;}
.y52{bottom:509.385750px;}
.y19{bottom:509.385900px;}
.yb3{bottom:509.388450px;}
.yed{bottom:509.535450px;}
.y98{bottom:529.369950px;}
.y18{bottom:529.370100px;}
.y51{bottom:529.378200px;}
.y127{bottom:529.381500px;}
.y7d{bottom:529.392000px;}
.yc7{bottom:529.393050px;}
.yec{bottom:529.513950px;}
.y97{bottom:549.354150px;}
.y17{bottom:549.354450px;}
.y50{bottom:549.359700px;}
.y126{bottom:549.360000px;}
.yc6{bottom:549.371550px;}
.y7c{bottom:549.373500px;}
.yeb{bottom:549.492450px;}
.y112{bottom:569.338500px;}
.y15{bottom:569.338650px;}
.y4f{bottom:569.341200px;}
.yb2{bottom:569.344050px;}
.yc5{bottom:569.350050px;}
.y7b{bottom:569.355000px;}
.yea{bottom:569.470950px;}
.y16{bottom:574.833150px;}
.y4e{bottom:589.322700px;}
.yb1{bottom:589.325550px;}
.y14{bottom:589.325700px;}
.yc4{bottom:589.328550px;}
.y7a{bottom:589.336500px;}
.ye9{bottom:589.449450px;}
.y4d{bottom:609.307050px;}
.y13{bottom:609.307200px;}
.y79{bottom:609.318000px;}
.y125{bottom:609.344550px;}
.ye8{bottom:609.427950px;}
.y96{bottom:629.291250px;}
.y12{bottom:629.291400px;}
.y3f{bottom:629.293950px;}
.y4c{bottom:629.299500px;}
.y124{bottom:629.323050px;}
.y111{bottom:629.352150px;}
.ye7{bottom:629.406450px;}
.y3e{bottom:649.275450px;}
.y4b{bottom:649.281000px;}
.y11{bottom:649.281150px;}
.yb0{bottom:649.283700px;}
.y123{bottom:649.301550px;}
.y95{bottom:649.303050px;}
.yc3{bottom:649.310100px;}
.y110{bottom:649.330650px;}
.ye6{bottom:649.384950px;}
.y3d{bottom:669.259800px;}
.y4a{bottom:669.262500px;}
.y10{bottom:669.262650px;}
.yaf{bottom:669.265200px;}
.y122{bottom:669.280050px;}
.y94{bottom:669.284550px;}
.yc2{bottom:669.288600px;}
.y10f{bottom:669.309150px;}
.ye5{bottom:669.363450px;}
.y107{bottom:681.193350px;}
.y3c{bottom:689.244000px;}
.yae{bottom:689.246700px;}
.yf{bottom:689.260650px;}
.y93{bottom:689.266050px;}
.yc1{bottom:689.267100px;}
.y10e{bottom:689.287650px;}
.ye4{bottom:689.341950px;}
.y106{bottom:699.191100px;}
.y3b{bottom:709.228200px;}
.ye{bottom:709.242150px;}
.yc0{bottom:709.245600px;}
.y92{bottom:709.247550px;}
.y121{bottom:709.251300px;}
.y10d{bottom:709.266150px;}
.ye3{bottom:709.320450px;}
.y105{bottom:717.188850px;}
.y49{bottom:729.212550px;}
.y3a{bottom:729.218100px;}
.yd{bottom:729.223650px;}
.ybf{bottom:729.224100px;}
.y91{bottom:729.229050px;}
.y120{bottom:729.229800px;}
.ye2{bottom:729.298950px;}
.y104{bottom:735.186600px;}
.y39{bottom:749.199600px;}
.ybe{bottom:749.202600px;}
.yc{bottom:749.205150px;}
.yad{bottom:749.207850px;}
.y11f{bottom:749.208300px;}
.y90{bottom:749.210550px;}
.y10c{bottom:749.237400px;}
.ye1{bottom:749.277450px;}
.y103{bottom:753.184350px;}
.y38{bottom:769.181100px;}
.yb{bottom:769.186650px;}
.y11e{bottom:769.186800px;}
.yac{bottom:769.189350px;}
.y8f{bottom:769.192050px;}
.ye0{bottom:769.255950px;}
.y102{bottom:771.182100px;}
.y37{bottom:789.165300px;}
.y72{bottom:789.168000px;}
.ya{bottom:789.168150px;}
.yab{bottom:789.170850px;}
.y8e{bottom:789.173550px;}
.y10b{bottom:789.208650px;}
.ydf{bottom:789.234450px;}
.y71{bottom:809.149500px;}
.y9{bottom:809.149650px;}
.yaa{bottom:809.152350px;}
.y8d{bottom:809.155050px;}
.y36{bottom:809.174400px;}
.y10a{bottom:809.187150px;}
.yde{bottom:809.212950px;}
.y70{bottom:829.133850px;}
.y8{bottom:829.134000px;}
.y8c{bottom:829.136550px;}
.y48{bottom:829.150350px;}
.y101{bottom:829.151100px;}
.y35{bottom:829.155900px;}
.y109{bottom:829.165650px;}
.ydd{bottom:829.191450px;}
.y6f{bottom:849.118050px;}
.y78{bottom:849.120900px;}
.y7{bottom:849.126450px;}
.y100{bottom:849.129600px;}
.y47{bottom:849.131850px;}
.y34{bottom:849.137400px;}
.y108{bottom:849.144150px;}
.ydc{bottom:849.169950px;}
.y77{bottom:869.102400px;}
.y6{bottom:869.107950px;}
.yff{bottom:869.108100px;}
.y46{bottom:869.113350px;}
.y33{bottom:869.118900px;}
.y6e{bottom:869.124450px;}
.ybd{bottom:869.136900px;}
.ydb{bottom:869.148450px;}
.y76{bottom:889.086600px;}
.y5{bottom:889.089450px;}
.y8b{bottom:889.092150px;}
.y45{bottom:889.094850px;}
.y32{bottom:889.100400px;}
.y6d{bottom:889.105950px;}
.ybc{bottom:889.115400px;}
.yda{bottom:889.126950px;}
.yfe{bottom:909.070800px;}
.y4{bottom:909.070950px;}
.y8a{bottom:909.073650px;}
.y44{bottom:909.076350px;}
.y31{bottom:909.081900px;}
.y6c{bottom:909.087450px;}
.ybb{bottom:909.093900px;}
.yd9{bottom:909.105450px;}
.y89{bottom:929.055150px;}
.y43{bottom:929.057850px;}
.y30{bottom:929.063400px;}
.y6b{bottom:929.068950px;}
.yba{bottom:929.072400px;}
.yd8{bottom:929.083950px;}
.y42{bottom:949.039350px;}
.y2f{bottom:949.044900px;}
.y6a{bottom:949.050450px;}
.yb9{bottom:949.050900px;}
.yd7{bottom:949.062450px;}
.y41{bottom:969.023550px;}
.y2e{bottom:969.026400px;}
.yb8{bottom:969.029400px;}
.y69{bottom:969.031950px;}
.yd6{bottom:969.040950px;}
.y3{bottom:982.582650px;}
.y2d{bottom:989.007900px;}
.y68{bottom:989.013450px;}
.yd5{bottom:989.019450px;}
.y2c{bottom:1008.992100px;}
.y67{bottom:1008.994950px;}
.yd4{bottom:1008.997950px;}
.y2{bottom:1026.094350px;}
.y2b{bottom:1028.976450px;}
.yb7{bottom:1034.284200px;}
.y1{bottom:1082.225850px;}
.he{height:30.306672px;}
.h6{height:35.091936px;}
.h2{height:50.868000px;}
.hf{height:51.186000px;}
.hd{height:51.984000px;}
.ha{height:52.611000px;}
.h9{height:54.720000px;}
.hc{height:56.700000px;}
.hb{height:59.268000px;}
.h5{height:60.192000px;}
.h8{height:60.918000px;}
.h7{height:68.040000px;}
.h4{height:73.476000px;}
.h3{height:96.390000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xa{left:67.652100px;}
.xe{left:69.596100px;}
.x8{left:72.283500px;}
.x2{left:79.274550px;}
.x3{left:81.167250px;}
.x13{left:93.107700px;}
.xb{left:94.304700px;}
.xc{left:96.873750px;}
.x9{left:98.026500px;}
.x11{left:101.367450px;}
.x10{left:102.567450px;}
.x4{left:105.704850px;}
.x7{left:106.880250px;}
.x14{left:300.701400px;}
.x15{left:308.323200px;}
.x5{left:379.577550px;}
.x6{left:382.952400px;}
.x16{left:412.041150px;}
.x12{left:419.572950px;}
.xf{left:723.602850px;}
.xd{left:726.708000px;}
.x1{left:728.192700px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.196267pt;}
.v1{vertical-align:19.477333pt;}
.ls1f{letter-spacing:-2.933333pt;}
.ls24{letter-spacing:-2.533333pt;}
.ls1b{letter-spacing:-0.880000pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls18{letter-spacing:-0.645333pt;}
.ls19{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.352000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls26{letter-spacing:-0.253333pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls27{letter-spacing:-0.202667pt;}
.ls4{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.152000pt;}
.ls2f{letter-spacing:-0.118155pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls25{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:-0.058667pt;}
.ls31{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000107pt;}
.ls1c{letter-spacing:0.021513pt;}
.ls2b{letter-spacing:0.029539pt;}
.ls1e{letter-spacing:0.034203pt;}
.ls2a{letter-spacing:0.042459pt;}
.ls29{letter-spacing:0.050667pt;}
.ls9{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.101333pt;}
.ls12{letter-spacing:0.152000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls22{letter-spacing:0.202667pt;}
.ls2{letter-spacing:0.234667pt;}
.ls30{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.253333pt;}
.ls1{letter-spacing:0.264000pt;}
.lsc{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.410667pt;}
.ls13{letter-spacing:0.498667pt;}
.ls20{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.645333pt;}
.ls1d{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.013333pt;}
.lsb{letter-spacing:1.200000pt;}
.ls21{letter-spacing:1.266667pt;}
.ls2e{letter-spacing:4.656267pt;}
.lsa{letter-spacing:1720.851200pt;}
.lsf{letter-spacing:1721.043200pt;}
.ws2d{word-spacing:-12.576000pt;}
.ws6a{word-spacing:-12.378667pt;}
.ws66{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.320000pt;}
.wsb9{word-spacing:-11.616000pt;}
.ws1c{word-spacing:-11.440000pt;}
.ws2c{word-spacing:-11.376000pt;}
.ws77{word-spacing:-10.893333pt;}
.ws75{word-spacing:-10.842667pt;}
.ws76{word-spacing:-10.741333pt;}
.ws93{word-spacing:-10.690667pt;}
.ws74{word-spacing:-10.640000pt;}
.ws73{word-spacing:-10.538667pt;}
.ws79{word-spacing:-10.437333pt;}
.ws72{word-spacing:-9.880000pt;}
.ws3e{word-spacing:-9.778667pt;}
.ws78{word-spacing:-9.626667pt;}
.wsb5{word-spacing:-8.309333pt;}
.ws71{word-spacing:-7.346667pt;}
.ws6b{word-spacing:-7.216763pt;}
.ws0{word-spacing:-7.182560pt;}
.ws94{word-spacing:-6.232659pt;}
.ws92{word-spacing:-6.203120pt;}
.ws68{word-spacing:-3.050667pt;}
.ws2e{word-spacing:-2.874667pt;}
.ws14{word-spacing:-2.522667pt;}
.ws8{word-spacing:-2.464000pt;}
.ws9{word-spacing:-2.405333pt;}
.ws35{word-spacing:-2.346667pt;}
.ws13{word-spacing:-2.288000pt;}
.wsa3{word-spacing:-2.280000pt;}
.wsa{word-spacing:-2.229333pt;}
.ws8e{word-spacing:-2.178667pt;}
.ws82{word-spacing:-2.128000pt;}
.ws65{word-spacing:-2.112000pt;}
.wsb7{word-spacing:-2.026667pt;}
.ws56{word-spacing:-1.994667pt;}
.ws83{word-spacing:-1.976000pt;}
.ws26{word-spacing:-1.936000pt;}
.ws5c{word-spacing:-1.877333pt;}
.ws97{word-spacing:-1.874667pt;}
.ws3a{word-spacing:-1.818667pt;}
.ws98{word-spacing:-1.773333pt;}
.ws5f{word-spacing:-1.760000pt;}
.wsae{word-spacing:-1.722667pt;}
.ws21{word-spacing:-1.701333pt;}
.ws4a{word-spacing:-1.642667pt;}
.wsa2{word-spacing:-1.621333pt;}
.ws6e{word-spacing:-1.584000pt;}
.wsb{word-spacing:-1.525333pt;}
.wsb8{word-spacing:-1.520000pt;}
.ws63{word-spacing:-1.466667pt;}
.wsbd{word-spacing:-1.418667pt;}
.ws62{word-spacing:-1.408000pt;}
.ws3{word-spacing:-1.349333pt;}
.wsbe{word-spacing:-1.317333pt;}
.ws5e{word-spacing:-1.290667pt;}
.ws9d{word-spacing:-1.266667pt;}
.wsc2{word-spacing:-1.216000pt;}
.ws1d{word-spacing:-1.200000pt;}
.ws6c{word-spacing:-1.173333pt;}
.ws9e{word-spacing:-1.165333pt;}
.ws44{word-spacing:-1.114667pt;}
.ws2a{word-spacing:-1.056000pt;}
.ws86{word-spacing:-1.013333pt;}
.ws9c{word-spacing:-0.962667pt;}
.ws55{word-spacing:-0.938667pt;}
.ws4{word-spacing:-0.880000pt;}
.wsa6{word-spacing:-0.861333pt;}
.ws34{word-spacing:-0.821333pt;}
.ws33{word-spacing:-0.762667pt;}
.wsc0{word-spacing:-0.709333pt;}
.ws5{word-spacing:-0.704000pt;}
.wsc1{word-spacing:-0.658667pt;}
.ws4e{word-spacing:-0.645333pt;}
.ws15{word-spacing:-0.640000pt;}
.ws8a{word-spacing:-0.608000pt;}
.ws36{word-spacing:-0.586667pt;}
.ws8b{word-spacing:-0.557333pt;}
.ws7a{word-spacing:-0.533333pt;}
.ws61{word-spacing:-0.528000pt;}
.ws89{word-spacing:-0.506667pt;}
.wsf{word-spacing:-0.469333pt;}
.ws9f{word-spacing:-0.456000pt;}
.ws10{word-spacing:-0.410667pt;}
.wsa0{word-spacing:-0.405333pt;}
.wsba{word-spacing:-0.354667pt;}
.ws1e{word-spacing:-0.352000pt;}
.wsbb{word-spacing:-0.304000pt;}
.ws17{word-spacing:-0.293333pt;}
.ws96{word-spacing:-0.253333pt;}
.wsc{word-spacing:-0.234667pt;}
.wsaf{word-spacing:-0.202667pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws95{word-spacing:-0.152000pt;}
.ws57{word-spacing:-0.117333pt;}
.ws5b{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.058667pt;}
.ws81{word-spacing:0.101333pt;}
.ws70{word-spacing:0.117333pt;}
.wsb6{word-spacing:0.118155pt;}
.wsa5{word-spacing:0.152000pt;}
.ws3c{word-spacing:0.176000pt;}
.ws6f{word-spacing:0.234667pt;}
.ws28{word-spacing:0.293333pt;}
.ws41{word-spacing:0.352000pt;}
.ws23{word-spacing:0.410667pt;}
.ws67{word-spacing:0.469333pt;}
.wsad{word-spacing:0.506667pt;}
.ws49{word-spacing:0.528000pt;}
.ws16{word-spacing:0.586667pt;}
.ws20{word-spacing:0.645333pt;}
.ws51{word-spacing:0.704000pt;}
.wsb1{word-spacing:0.709333pt;}
.ws9a{word-spacing:0.861333pt;}
.ws3b{word-spacing:0.880000pt;}
.ws9b{word-spacing:0.912000pt;}
.ws4b{word-spacing:0.938667pt;}
.ws99{word-spacing:0.962667pt;}
.ws5a{word-spacing:0.997333pt;}
.ws31{word-spacing:1.114667pt;}
.wsb3{word-spacing:1.165333pt;}
.ws29{word-spacing:1.173333pt;}
.ws7e{word-spacing:1.216000pt;}
.ws25{word-spacing:1.232000pt;}
.ws7d{word-spacing:1.266667pt;}
.ws45{word-spacing:1.290667pt;}
.ws8f{word-spacing:1.317333pt;}
.ws11{word-spacing:1.349333pt;}
.ws7f{word-spacing:1.368000pt;}
.ws88{word-spacing:1.418667pt;}
.wse{word-spacing:1.466667pt;}
.ws80{word-spacing:1.469333pt;}
.ws3d{word-spacing:1.584000pt;}
.ws3f{word-spacing:1.642667pt;}
.ws87{word-spacing:1.672000pt;}
.ws59{word-spacing:1.701333pt;}
.wsa9{word-spacing:1.722667pt;}
.wsd{word-spacing:1.760000pt;}
.wsab{word-spacing:1.874667pt;}
.ws1a{word-spacing:1.877333pt;}
.wsaa{word-spacing:2.026667pt;}
.ws64{word-spacing:2.053333pt;}
.ws38{word-spacing:2.112000pt;}
.wsac{word-spacing:2.178667pt;}
.ws2f{word-spacing:2.229333pt;}
.wsbf{word-spacing:2.280000pt;}
.ws37{word-spacing:2.288000pt;}
.ws7b{word-spacing:2.381333pt;}
.ws30{word-spacing:2.405333pt;}
.wsbc{word-spacing:2.432000pt;}
.ws4c{word-spacing:2.464000pt;}
.ws24{word-spacing:2.522667pt;}
.ws7c{word-spacing:2.533333pt;}
.ws5d{word-spacing:2.581333pt;}
.wsa4{word-spacing:2.634667pt;}
.ws22{word-spacing:2.640000pt;}
.ws90{word-spacing:2.685333pt;}
.ws6d{word-spacing:2.698667pt;}
.ws4f{word-spacing:2.757333pt;}
.ws52{word-spacing:2.874667pt;}
.wsa1{word-spacing:2.888000pt;}
.ws39{word-spacing:2.933333pt;}
.ws40{word-spacing:2.992000pt;}
.ws8c{word-spacing:3.040000pt;}
.ws7{word-spacing:3.050667pt;}
.ws8d{word-spacing:3.090667pt;}
.ws4d{word-spacing:3.109333pt;}
.ws19{word-spacing:3.168000pt;}
.ws47{word-spacing:3.192000pt;}
.ws60{word-spacing:3.226667pt;}
.ws85{word-spacing:3.242667pt;}
.ws53{word-spacing:3.285333pt;}
.wsa8{word-spacing:3.293333pt;}
.ws6{word-spacing:3.344000pt;}
.ws32{word-spacing:3.402667pt;}
.ws46{word-spacing:3.445333pt;}
.ws48{word-spacing:3.461333pt;}
.ws84{word-spacing:3.496000pt;}
.ws54{word-spacing:3.520000pt;}
.wsa7{word-spacing:3.546667pt;}
.ws50{word-spacing:3.578667pt;}
.ws1b{word-spacing:3.680000pt;}
.ws42{word-spacing:3.696000pt;}
.ws27{word-spacing:3.754667pt;}
.wsb2{word-spacing:3.800000pt;}
.ws43{word-spacing:3.930667pt;}
.ws18{word-spacing:4.048000pt;}
.ws1f{word-spacing:4.106667pt;}
.wsb4{word-spacing:6.738667pt;}
.ws58{word-spacing:1687.683200pt;}
.ws91{word-spacing:1690.227200pt;}
.wsb0{word-spacing:1691.283200pt;}
.ws69{word-spacing:1693.683200pt;}
._12{margin-left:-2329.152000pt;}
._d{margin-left:-2328.192000pt;}
._8{margin-left:-17.123733pt;}
._b{margin-left:-14.928000pt;}
._10{margin-left:-13.527467pt;}
._c{margin-left:-12.309333pt;}
._11{margin-left:-10.709333pt;}
._f{margin-left:-9.731733pt;}
._13{margin-left:-7.925867pt;}
._6{margin-left:-6.746667pt;}
._5{margin-left:-5.776000pt;}
._2{margin-left:-4.213333pt;}
._1{margin-left:-3.153600pt;}
._e{margin-left:-2.256000pt;}
._0{margin-left:-1.360000pt;}
._4{width:0.940800pt;}
._9{width:1.860267pt;}
._7{width:2.761067pt;}
._3{width:4.169067pt;}
._19{width:6.062933pt;}
._15{width:29.435733pt;}
._16{width:33.690667pt;}
._17{width:35.210667pt;}
._1c{width:36.549333pt;}
._14{width:37.515200pt;}
._1b{width:39.578667pt;}
._1a{width:40.867200pt;}
._18{width:47.272000pt;}
._a{width:57.173333pt;}
.fs8{font-size:29.538667pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:79.747867pt;}
.ya8{bottom:79.748000pt;}
.y2a{bottom:79.748267pt;}
.y88{bottom:79.750400pt;}
.yd3{bottom:79.773467pt;}
.y40{bottom:80.263733pt;}
.y29{bottom:95.748267pt;}
.y65{bottom:97.511733pt;}
.yd2{bottom:97.532133pt;}
.y64{bottom:115.275467pt;}
.ya7{bottom:115.278000pt;}
.yd1{bottom:115.290800pt;}
.y11d{bottom:115.295867pt;}
.yfd{bottom:115.306133pt;}
.y63{bottom:133.039200pt;}
.y28{bottom:133.039333pt;}
.yd0{bottom:133.049467pt;}
.y11c{bottom:133.054533pt;}
.yfc{bottom:133.064800pt;}
.y62{bottom:150.803067pt;}
.y27{bottom:150.803200pt;}
.ycf{bottom:150.808133pt;}
.y11b{bottom:150.813200pt;}
.y87{bottom:150.815200pt;}
.yfb{bottom:150.823467pt;}
.y61{bottom:168.566800pt;}
.y26{bottom:168.566933pt;}
.y11a{bottom:168.571867pt;}
.y86{bottom:168.576533pt;}
.yfa{bottom:168.582133pt;}
.yb6{bottom:186.330533pt;}
.y25{bottom:186.330667pt;}
.y60{bottom:186.337867pt;}
.yf9{bottom:186.340800pt;}
.yb5{bottom:204.094400pt;}
.y24{bottom:204.094533pt;}
.y5f{bottom:204.099200pt;}
.yf8{bottom:204.099467pt;}
.ya6{bottom:204.109067pt;}
.yce{bottom:204.109733pt;}
.y75{bottom:220.921200pt;}
.yf7{bottom:221.858133pt;}
.y23{bottom:221.858267pt;}
.y5e{bottom:221.860533pt;}
.y119{bottom:221.863200pt;}
.ycd{bottom:221.868400pt;}
.ya5{bottom:221.870400pt;}
.y74{bottom:236.921200pt;}
.y5d{bottom:239.621867pt;}
.y22{bottom:239.622133pt;}
.ycc{bottom:239.627067pt;}
.ya4{bottom:239.631733pt;}
.y73{bottom:252.921200pt;}
.y5c{bottom:257.385733pt;}
.y21{bottom:257.385867pt;}
.yf6{bottom:257.390800pt;}
.ya3{bottom:257.393067pt;}
.y5b{bottom:275.149467pt;}
.y85{bottom:275.152000pt;}
.y118{bottom:275.152133pt;}
.ya2{bottom:275.154400pt;}
.y20{bottom:275.154533pt;}
.y84{bottom:292.913333pt;}
.y5a{bottom:292.915733pt;}
.y1f{bottom:292.915867pt;}
.ycb{bottom:292.933733pt;}
.y12f{bottom:292.954133pt;}
.y59{bottom:310.677067pt;}
.y1e{bottom:310.677200pt;}
.yb4{bottom:310.679467pt;}
.yf5{bottom:310.682133pt;}
.yca{bottom:310.692400pt;}
.ya0{bottom:310.696667pt;}
.y12e{bottom:310.712800pt;}
.y58{bottom:328.440800pt;}
.y1d{bottom:328.440933pt;}
.y83{bottom:328.443333pt;}
.yc9{bottom:328.451067pt;}
.y9f{bottom:328.458000pt;}
.y12d{bottom:328.471467pt;}
.yf4{bottom:328.609733pt;}
.ya1{bottom:346.204667pt;}
.y1c{bottom:346.204800pt;}
.y82{bottom:346.207067pt;}
.yc8{bottom:346.209733pt;}
.y9e{bottom:346.219333pt;}
.y12c{bottom:346.230133pt;}
.yf3{bottom:346.368400pt;}
.y117{bottom:350.422667pt;}
.y81{bottom:363.968400pt;}
.y1b{bottom:363.968533pt;}
.y57{bottom:363.978133pt;}
.y9d{bottom:363.980667pt;}
.y116{bottom:363.981333pt;}
.y12b{bottom:363.988800pt;}
.yf2{bottom:364.127067pt;}
.y80{bottom:381.732133pt;}
.y56{bottom:381.739467pt;}
.y115{bottom:381.740000pt;}
.y9c{bottom:381.742000pt;}
.y12a{bottom:381.747467pt;}
.yf1{bottom:381.885733pt;}
.y7f{bottom:399.496000pt;}
.y1a{bottom:399.496133pt;}
.y114{bottom:399.498667pt;}
.y55{bottom:399.500800pt;}
.y9b{bottom:399.503333pt;}
.y129{bottom:399.506133pt;}
.yf0{bottom:399.644400pt;}
.y113{bottom:417.257333pt;}
.y7e{bottom:417.259733pt;}
.y54{bottom:417.262133pt;}
.y9a{bottom:417.264667pt;}
.y128{bottom:417.264800pt;}
.yef{bottom:417.403067pt;}
.ya9{bottom:430.773867pt;}
.y53{bottom:435.023467pt;}
.y99{bottom:435.026000pt;}
.yee{bottom:435.161733pt;}
.y52{bottom:452.787333pt;}
.y19{bottom:452.787467pt;}
.yb3{bottom:452.789733pt;}
.yed{bottom:452.920400pt;}
.y98{bottom:470.551067pt;}
.y18{bottom:470.551200pt;}
.y51{bottom:470.558400pt;}
.y127{bottom:470.561333pt;}
.y7d{bottom:470.570667pt;}
.yc7{bottom:470.571600pt;}
.yec{bottom:470.679067pt;}
.y97{bottom:488.314800pt;}
.y17{bottom:488.315067pt;}
.y50{bottom:488.319733pt;}
.y126{bottom:488.320000pt;}
.yc6{bottom:488.330267pt;}
.y7c{bottom:488.332000pt;}
.yeb{bottom:488.437733pt;}
.y112{bottom:506.078667pt;}
.y15{bottom:506.078800pt;}
.y4f{bottom:506.081067pt;}
.yb2{bottom:506.083600pt;}
.yc5{bottom:506.088933pt;}
.y7b{bottom:506.093333pt;}
.yea{bottom:506.196400pt;}
.y16{bottom:510.962800pt;}
.y4e{bottom:523.842400pt;}
.yb1{bottom:523.844933pt;}
.y14{bottom:523.845067pt;}
.yc4{bottom:523.847600pt;}
.y7a{bottom:523.854667pt;}
.ye9{bottom:523.955067pt;}
.y4d{bottom:541.606267pt;}
.y13{bottom:541.606400pt;}
.y79{bottom:541.616000pt;}
.y125{bottom:541.639600pt;}
.ye8{bottom:541.713733pt;}
.y96{bottom:559.370000pt;}
.y12{bottom:559.370133pt;}
.y3f{bottom:559.372400pt;}
.y4c{bottom:559.377333pt;}
.y124{bottom:559.398267pt;}
.y111{bottom:559.424133pt;}
.ye7{bottom:559.472400pt;}
.y3e{bottom:577.133733pt;}
.y4b{bottom:577.138667pt;}
.y11{bottom:577.138800pt;}
.yb0{bottom:577.141067pt;}
.y123{bottom:577.156933pt;}
.y95{bottom:577.158267pt;}
.yc3{bottom:577.164533pt;}
.y110{bottom:577.182800pt;}
.ye6{bottom:577.231067pt;}
.y3d{bottom:594.897600pt;}
.y4a{bottom:594.900000pt;}
.y10{bottom:594.900133pt;}
.yaf{bottom:594.902400pt;}
.y122{bottom:594.915600pt;}
.y94{bottom:594.919600pt;}
.yc2{bottom:594.923200pt;}
.y10f{bottom:594.941467pt;}
.ye5{bottom:594.989733pt;}
.y107{bottom:605.505200pt;}
.y3c{bottom:612.661333pt;}
.yae{bottom:612.663733pt;}
.yf{bottom:612.676133pt;}
.y93{bottom:612.680933pt;}
.yc1{bottom:612.681867pt;}
.y10e{bottom:612.700133pt;}
.ye4{bottom:612.748400pt;}
.y106{bottom:621.503200pt;}
.y3b{bottom:630.425067pt;}
.ye{bottom:630.437467pt;}
.yc0{bottom:630.440533pt;}
.y92{bottom:630.442267pt;}
.y121{bottom:630.445600pt;}
.y10d{bottom:630.458800pt;}
.ye3{bottom:630.507067pt;}
.y105{bottom:637.501200pt;}
.y49{bottom:648.188933pt;}
.y3a{bottom:648.193867pt;}
.yd{bottom:648.198800pt;}
.ybf{bottom:648.199200pt;}
.y91{bottom:648.203600pt;}
.y120{bottom:648.204267pt;}
.ye2{bottom:648.265733pt;}
.y104{bottom:653.499200pt;}
.y39{bottom:665.955200pt;}
.ybe{bottom:665.957867pt;}
.yc{bottom:665.960133pt;}
.yad{bottom:665.962533pt;}
.y11f{bottom:665.962933pt;}
.y90{bottom:665.964933pt;}
.y10c{bottom:665.988800pt;}
.ye1{bottom:666.024400pt;}
.y103{bottom:669.497200pt;}
.y38{bottom:683.716533pt;}
.yb{bottom:683.721467pt;}
.y11e{bottom:683.721600pt;}
.yac{bottom:683.723867pt;}
.y8f{bottom:683.726267pt;}
.ye0{bottom:683.783067pt;}
.y102{bottom:685.495200pt;}
.y37{bottom:701.480267pt;}
.y72{bottom:701.482667pt;}
.ya{bottom:701.482800pt;}
.yab{bottom:701.485200pt;}
.y8e{bottom:701.487600pt;}
.y10b{bottom:701.518800pt;}
.ydf{bottom:701.541733pt;}
.y71{bottom:719.244000pt;}
.y9{bottom:719.244133pt;}
.yaa{bottom:719.246533pt;}
.y8d{bottom:719.248933pt;}
.y36{bottom:719.266133pt;}
.y10a{bottom:719.277467pt;}
.yde{bottom:719.300400pt;}
.y70{bottom:737.007867pt;}
.y8{bottom:737.008000pt;}
.y8c{bottom:737.010267pt;}
.y48{bottom:737.022533pt;}
.y101{bottom:737.023200pt;}
.y35{bottom:737.027467pt;}
.y109{bottom:737.036133pt;}
.ydd{bottom:737.059067pt;}
.y6f{bottom:754.771600pt;}
.y78{bottom:754.774133pt;}
.y7{bottom:754.779067pt;}
.y100{bottom:754.781867pt;}
.y47{bottom:754.783867pt;}
.y34{bottom:754.788800pt;}
.y108{bottom:754.794800pt;}
.ydc{bottom:754.817733pt;}
.y77{bottom:772.535467pt;}
.y6{bottom:772.540400pt;}
.yff{bottom:772.540533pt;}
.y46{bottom:772.545200pt;}
.y33{bottom:772.550133pt;}
.y6e{bottom:772.555067pt;}
.ybd{bottom:772.566133pt;}
.ydb{bottom:772.576400pt;}
.y76{bottom:790.299200pt;}
.y5{bottom:790.301733pt;}
.y8b{bottom:790.304133pt;}
.y45{bottom:790.306533pt;}
.y32{bottom:790.311467pt;}
.y6d{bottom:790.316400pt;}
.ybc{bottom:790.324800pt;}
.yda{bottom:790.335067pt;}
.yfe{bottom:808.062933pt;}
.y4{bottom:808.063067pt;}
.y8a{bottom:808.065467pt;}
.y44{bottom:808.067867pt;}
.y31{bottom:808.072800pt;}
.y6c{bottom:808.077733pt;}
.ybb{bottom:808.083467pt;}
.yd9{bottom:808.093733pt;}
.y89{bottom:825.826800pt;}
.y43{bottom:825.829200pt;}
.y30{bottom:825.834133pt;}
.y6b{bottom:825.839067pt;}
.yba{bottom:825.842133pt;}
.yd8{bottom:825.852400pt;}
.y42{bottom:843.590533pt;}
.y2f{bottom:843.595467pt;}
.y6a{bottom:843.600400pt;}
.yb9{bottom:843.600800pt;}
.yd7{bottom:843.611067pt;}
.y41{bottom:861.354267pt;}
.y2e{bottom:861.356800pt;}
.yb8{bottom:861.359467pt;}
.y69{bottom:861.361733pt;}
.yd6{bottom:861.369733pt;}
.y3{bottom:873.406800pt;}
.y2d{bottom:879.118133pt;}
.y68{bottom:879.123067pt;}
.yd5{bottom:879.128400pt;}
.y2c{bottom:896.881867pt;}
.y67{bottom:896.884400pt;}
.yd4{bottom:896.887067pt;}
.y2{bottom:912.083867pt;}
.y2b{bottom:914.645733pt;}
.yb7{bottom:919.363733pt;}
.y1{bottom:961.978533pt;}
.he{height:26.939264pt;}
.h6{height:31.192832pt;}
.h2{height:45.216000pt;}
.hf{height:45.498667pt;}
.hd{height:46.208000pt;}
.ha{height:46.765333pt;}
.h9{height:48.640000pt;}
.hc{height:50.400000pt;}
.hb{height:52.682667pt;}
.h5{height:53.504000pt;}
.h8{height:54.149333pt;}
.h7{height:60.480000pt;}
.h4{height:65.312000pt;}
.h3{height:85.680000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xa{left:60.135200pt;}
.xe{left:61.863200pt;}
.x8{left:64.252000pt;}
.x2{left:70.466267pt;}
.x3{left:72.148667pt;}
.x13{left:82.762400pt;}
.xb{left:83.826400pt;}
.xc{left:86.110000pt;}
.x9{left:87.134667pt;}
.x11{left:90.104400pt;}
.x10{left:91.171067pt;}
.x4{left:93.959867pt;}
.x7{left:95.004667pt;}
.x14{left:267.290133pt;}
.x15{left:274.065067pt;}
.x5{left:337.402267pt;}
.x6{left:340.402133pt;}
.x16{left:366.258800pt;}
.x12{left:372.953733pt;}
.xf{left:643.202533pt;}
.xd{left:645.962667pt;}
.x1{left:647.282400pt;}
}




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