
    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_73372b6664d455518ff8b14e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_f8a33c7045ced5f665a36f00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_40aa7a77bf55e1b1444e9524.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_d77542d27840fdcbdfd09b04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_d4a1b16b6350c71f8d703d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_11bc2d5ab588e0a58564f8ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.514000;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_4a6cf7578936ee83f1b71014.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_95ab5d0075d1f13ae7c19990.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995117;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_e6e13101877f0d81b7ea69d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008301;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_9d0422135d58bd0ef48504ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_21b1c1d69b54e2423cfb4e2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734863;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_4a6cf7578936ee83f1b71014.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_95ab5d0075d1f13ae7c19990.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995117;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_e6e13101877f0d81b7ea69d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008301;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_9d0422135d58bd0ef48504ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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_21b1c1d69b54e2423cfb4e2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734863;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_ed9c587694a6041111cfafa5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_349cf79be35106e5a8c25b42.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e9f901aa9d4e255e3ec52953.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9d0422135d58bd0ef48504ca.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9d20ce5b08c74724bfdb8444.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_265e53635470bdbe8fcfdee7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;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:ff17;src:url('chunks/assets/font_8d56e788142be66e3420e1cb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.995117;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:ff18;src:url('chunks/assets/font_5e76f8feaec0ced26dd36edd.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008301;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:ff19;src:url('chunks/assets/font_9d0422135d58bd0ef48504ca.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.727539;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:ff1a;src:url('chunks/assets/font_542255b01a81684909348cfb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.734863;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:ff1b;src:url('chunks/assets/font_265e53635470bdbe8fcfdee7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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:ff1c;src:url('chunks/assets/font_8d56e788142be66e3420e1cb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.995117;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:ff1d;src:url('chunks/assets/font_5e76f8feaec0ced26dd36edd.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.008301;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:ff1e;src:url('chunks/assets/font_9d0422135d58bd0ef48504ca.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.727539;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:ff1f;src:url('chunks/assets/font_542255b01a81684909348cfb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.734863;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;}
.m8{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);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.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);}
.m24{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.me{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.md{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-21.702000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:39.060000px;}
.ls6e{letter-spacing:-3.504996px;}
.ls65{letter-spacing:-0.408816px;}
.ls35{letter-spacing:-0.324648px;}
.ls1c{letter-spacing:-0.275951px;}
.ls66{letter-spacing:-0.264528px;}
.ls67{letter-spacing:-0.258516px;}
.ls60{letter-spacing:-0.252504px;}
.ls33{letter-spacing:-0.194400px;}
.ls64{letter-spacing:-0.172800px;}
.ls1a{letter-spacing:-0.165240px;}
.ls6b{letter-spacing:-0.156312px;}
.ls5d{letter-spacing:-0.132264px;}
.ls5f{letter-spacing:-0.126252px;}
.ls71{letter-spacing:-0.114228px;}
.ls70{letter-spacing:-0.108216px;}
.ls36{letter-spacing:-0.102204px;}
.ls6d{letter-spacing:-0.096192px;}
.ls1d{letter-spacing:-0.086873px;}
.ls62{letter-spacing:-0.078156px;}
.ls38{letter-spacing:-0.066132px;}
.ls1f{letter-spacing:-0.056212px;}
.ls63{letter-spacing:-0.054108px;}
.ls37{letter-spacing:-0.042084px;}
.ls39{letter-spacing:-0.037800px;}
.ls6c{letter-spacing:-0.036072px;}
.ls1e{letter-spacing:-0.035771px;}
.ls20{letter-spacing:-0.032130px;}
.ls68{letter-spacing:-0.027000px;}
.ls61{letter-spacing:-0.024048px;}
.ls5e{letter-spacing:-0.018036px;}
.ls6a{letter-spacing:-0.012024px;}
.ls69{letter-spacing:-0.010800px;}
.ls34{letter-spacing:-0.006012px;}
.ls1b{letter-spacing:-0.005110px;}
.ls32{letter-spacing:-0.004788px;}
.ls19{letter-spacing:-0.004070px;}
.ls7{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.000800px;}
.ls76{letter-spacing:0.001036px;}
.ls78{letter-spacing:0.001155px;}
.ls3{letter-spacing:0.001952px;}
.ls17{letter-spacing:0.004590px;}
.ls30{letter-spacing:0.005400px;}
.ls3d{letter-spacing:0.006012px;}
.ls54{letter-spacing:0.006624px;}
.ls43{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.008140px;}
.lsd{letter-spacing:0.009180px;}
.ls21{letter-spacing:0.009576px;}
.ls26{letter-spacing:0.010800px;}
.ls3f{letter-spacing:0.012024px;}
.lse{letter-spacing:0.013770px;}
.ls14{letter-spacing:0.015331px;}
.ls27{letter-spacing:0.016200px;}
.ls2d{letter-spacing:0.018036px;}
.lsc{letter-spacing:0.022950px;}
.ls57{letter-spacing:0.024048px;}
.ls25{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.030060px;}
.ls13{letter-spacing:0.030661px;}
.lsb{letter-spacing:0.032130px;}
.ls51{letter-spacing:0.032400px;}
.ls2c{letter-spacing:0.036072px;}
.ls24{letter-spacing:0.037800px;}
.ls16{letter-spacing:0.041310px;}
.ls3a{letter-spacing:0.042084px;}
.ls3b{letter-spacing:0.048096px;}
.ls2f{letter-spacing:0.048600px;}
.ls10{letter-spacing:0.050490px;}
.ls11{letter-spacing:0.051102px;}
.ls52{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.054108px;}
.ls29{letter-spacing:0.059400px;}
.ls2a{letter-spacing:0.060120px;}
.ls53{letter-spacing:0.064800px;}
.ls3c{letter-spacing:0.072144px;}
.ls56{letter-spacing:0.078156px;}
.ls15{letter-spacing:0.086873px;}
.ls58{letter-spacing:0.090180px;}
.ls41{letter-spacing:0.096192px;}
.ls18{letter-spacing:0.100980px;}
.ls2e{letter-spacing:0.102204px;}
.ls55{letter-spacing:0.102600px;}
.ls31{letter-spacing:0.118800px;}
.lsf{letter-spacing:0.119340px;}
.ls40{letter-spacing:0.120240px;}
.ls44{letter-spacing:0.126252px;}
.ls28{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.146513px;}
.ls45{letter-spacing:0.150300px;}
.ls12{letter-spacing:0.153306px;}
.ls9{letter-spacing:0.162792px;}
.ls23{letter-spacing:0.172368px;}
.ls2b{letter-spacing:0.180360px;}
.ls22{letter-spacing:0.191520px;}
.ls46{letter-spacing:0.192384px;}
.ls5{letter-spacing:0.503764px;}
.ls5b{letter-spacing:0.520013px;}
.ls47{letter-spacing:0.520800px;}
.ls4a{letter-spacing:0.542815px;}
.ls4b{letter-spacing:0.548815px;}
.ls4e{letter-spacing:0.570145px;}
.ls5a{letter-spacing:0.645088px;}
.ls59{letter-spacing:0.675600px;}
.ls4d{letter-spacing:0.714783px;}
.ls4c{letter-spacing:0.717483px;}
.ls6f{letter-spacing:1.893780px;}
.ls1{letter-spacing:2.998354px;}
.ls48{letter-spacing:3.513900px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.960850px;}
.ls74{letter-spacing:13.242100px;}
.ls72{letter-spacing:13.448400px;}
.ls75{letter-spacing:13.454400px;}
.ls79{letter-spacing:13.526255px;}
.ls7a{letter-spacing:13.586911px;}
.ls73{letter-spacing:14.020988px;}
.ls50{letter-spacing:14.943900px;}
.ls5c{letter-spacing:16.440600px;}
.ls49{letter-spacing:16.977945px;}
.ls4f{letter-spacing:17.929200px;}
.ls2{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.ws87{word-spacing:-60.120000px;}
.ws89{word-spacing:-54.000000px;}
.ws67{word-spacing:-15.030000px;}
.ws88{word-spacing:-14.903748px;}
.ws8a{word-spacing:-13.537800px;}
.ws8d{word-spacing:-13.449600px;}
.ws44{word-spacing:-12.775500px;}
.ws64{word-spacing:-11.970000px;}
.ws15{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws41{word-spacing:-10.174500px;}
.wse1{word-spacing:-3.492972px;}
.wsbc{word-spacing:-2.843676px;}
.wse9{word-spacing:-2.795580px;}
.wse8{word-spacing:-2.765520px;}
.wsbb{word-spacing:-2.759508px;}
.wsf0{word-spacing:-2.630126px;}
.ws3b{word-spacing:-2.510575px;}
.ws37{word-spacing:-2.151922px;}
.wsa3{word-spacing:-2.074140px;}
.wsa4{word-spacing:-2.062116px;}
.ws94{word-spacing:-1.725444px;}
.wsda{word-spacing:-1.719432px;}
.ws7a{word-spacing:-1.665324px;}
.ws7b{word-spacing:-1.641276px;}
.ws93{word-spacing:-1.575144px;}
.wse0{word-spacing:-1.436868px;}
.ws55{word-spacing:-1.415525px;}
.ws56{word-spacing:-1.395085px;}
.wsdf{word-spacing:-1.370736px;}
.wsaf{word-spacing:-1.340676px;}
.wsf2{word-spacing:-1.315063px;}
.wsb0{word-spacing:-1.292580px;}
.ws39{word-spacing:-1.255288px;}
.wse4{word-spacing:-1.064124px;}
.ws6b{word-spacing:-1.016185px;}
.ws22{word-spacing:-0.956410px;}
.wsd4{word-spacing:-0.643284px;}
.wsd3{word-spacing:-0.625248px;}
.wsfc{word-spacing:-0.537984px;}
.ws21{word-spacing:-0.478205px;}
.ws34{word-spacing:-0.418429px;}
.ws99{word-spacing:-0.372744px;}
.ws7f{word-spacing:-0.366732px;}
.ws86{word-spacing:-0.358654px;}
.wsc2{word-spacing:-0.354708px;}
.wsdc{word-spacing:-0.342684px;}
.wsd{word-spacing:-0.322790px;}
.ws5a{word-spacing:-0.311722px;}
.wsaa{word-spacing:-0.306612px;}
.ws31{word-spacing:-0.298878px;}
.ws6e{word-spacing:-0.277704px;}
.ws9e{word-spacing:-0.270540px;}
.ws75{word-spacing:-0.264528px;}
.wscd{word-spacing:-0.252504px;}
.wsc9{word-spacing:-0.240480px;}
.ws25{word-spacing:-0.239102px;}
.ws48{word-spacing:-0.236048px;}
.ws50{word-spacing:-0.224849px;}
.wscc{word-spacing:-0.222444px;}
.ws1a{word-spacing:-0.215194px;}
.ws74{word-spacing:-0.189000px;}
.ws28{word-spacing:-0.179327px;}
.wsdb{word-spacing:-0.168336px;}
.ws16{word-spacing:-0.161395px;}
.ws4f{word-spacing:-0.160650px;}
.ws24{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws6d{word-spacing:-0.095760px;}
.ws47{word-spacing:-0.081396px;}
.ws49{word-spacing:-0.069187px;}
.ws66{word-spacing:-0.060120px;}
.ws10{word-spacing:-0.059776px;}
.ws65{word-spacing:-0.054000px;}
.ws91{word-spacing:-0.053798px;}
.ws43{word-spacing:-0.051102px;}
.ws13{word-spacing:-0.047821px;}
.ws42{word-spacing:-0.045900px;}
.ws4{word-spacing:-0.041843px;}
.wsc0{word-spacing:-0.024048px;}
.wse{word-spacing:-0.000067px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.002134px;}
.ws9d{word-spacing:0.024048px;}
.wsc1{word-spacing:0.048096px;}
.ws19{word-spacing:0.053798px;}
.ws5e{word-spacing:0.055080px;}
.ws2f{word-spacing:0.059776px;}
.ws83{word-spacing:0.064800px;}
.wsa8{word-spacing:0.066132px;}
.wsc7{word-spacing:0.081000px;}
.wsb1{word-spacing:0.084168px;}
.ws92{word-spacing:0.096192px;}
.ws4e{word-spacing:0.105570px;}
.ws18{word-spacing:0.107597px;}
.wsc5{word-spacing:0.118800px;}
.ws38{word-spacing:0.119551px;}
.ws9c{word-spacing:0.120240px;}
.ws73{word-spacing:0.124200px;}
.wsc4{word-spacing:0.129600px;}
.wsc3{word-spacing:0.151200px;}
.ws5f{word-spacing:0.151470px;}
.ws1c{word-spacing:0.161395px;}
.wsb4{word-spacing:0.174348px;}
.ws84{word-spacing:0.178200px;}
.ws32{word-spacing:0.179327px;}
.wsc8{word-spacing:0.194400px;}
.wsc6{word-spacing:0.210600px;}
.ws1e{word-spacing:0.215194px;}
.ws3d{word-spacing:0.239102px;}
.wsf7{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.ws10a{word-spacing:0.322790px;}
.wsbf{word-spacing:0.354708px;}
.ws85{word-spacing:0.358654px;}
.wsf9{word-spacing:0.376589px;}
.ws108{word-spacing:0.430387px;}
.ws109{word-spacing:0.451750px;}
.ws107{word-spacing:0.484186px;}
.wsb5{word-spacing:0.505008px;}
.wsf{word-spacing:0.562186px;}
.wsfb{word-spacing:0.591782px;}
.ws26{word-spacing:0.597756px;}
.ws20{word-spacing:0.717307px;}
.ws9b{word-spacing:0.757512px;}
.ws8c{word-spacing:0.806976px;}
.wsdd{word-spacing:0.817632px;}
.wsf1{word-spacing:0.836858px;}
.wsde{word-spacing:0.853704px;}
.wsa6{word-spacing:0.895788px;}
.ws2c{word-spacing:0.896634px;}
.wsa5{word-spacing:0.919836px;}
.wsa7{word-spacing:0.949896px;}
.ws10c{word-spacing:1.022170px;}
.ws8b{word-spacing:1.075968px;}
.ws6a{word-spacing:1.135736px;}
.wsed{word-spacing:1.195512px;}
.ws103{word-spacing:1.335793px;}
.wsee{word-spacing:1.494390px;}
.wse2{word-spacing:1.527048px;}
.wsca{word-spacing:1.551096px;}
.ws57{word-spacing:1.579052px;}
.ws58{word-spacing:1.594382px;}
.ws51{word-spacing:1.614823px;}
.wscb{word-spacing:1.695384px;}
.ws59{word-spacing:1.696586px;}
.wsf3{word-spacing:1.721549px;}
.ws3c{word-spacing:1.733492px;}
.ws105{word-spacing:1.775347px;}
.ws8e{word-spacing:1.793268px;}
.ws69{word-spacing:1.829146px;}
.wsad{word-spacing:1.839672px;}
.ws2d{word-spacing:1.853044px;}
.ws7c{word-spacing:1.857708px;}
.ws7d{word-spacing:1.875744px;}
.wsf4{word-spacing:1.882944px;}
.ws52{word-spacing:1.885664px;}
.wsd2{word-spacing:1.887768px;}
.ws76{word-spacing:1.899792px;}
.wsac{word-spacing:1.947888px;}
.wsae{word-spacing:1.959912px;}
.wsf6{word-spacing:1.990541px;}
.ws7e{word-spacing:1.995984px;}
.wsec{word-spacing:2.092146px;}
.ws68{word-spacing:2.151936px;}
.ws77{word-spacing:2.218428px;}
.wsd0{word-spacing:2.242476px;}
.ws96{word-spacing:2.254500px;}
.wsd1{word-spacing:2.272536px;}
.ws2e{word-spacing:2.391024px;}
.wsb9{word-spacing:2.464920px;}
.ws10e{word-spacing:2.474726px;}
.ws61{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.wsd5{word-spacing:2.543076px;}
.wsd6{word-spacing:2.609208px;}
.ws95{word-spacing:2.633256px;}
.wsd7{word-spacing:2.657304px;}
.ws14{word-spacing:2.869236px;}
.wsab{word-spacing:2.921832px;}
.wsbd{word-spacing:2.963916px;}
.wsbe{word-spacing:2.999988px;}
.ws35{word-spacing:3.048556px;}
.ws2a{word-spacing:3.168107px;}
.wsf5{word-spacing:3.212822px;}
.ws100{word-spacing:3.224621px;}
.ws102{word-spacing:3.227904px;}
.wsba{word-spacing:3.234456px;}
.ws3e{word-spacing:3.347434px;}
.ws17{word-spacing:3.389299px;}
.ws29{word-spacing:3.407209px;}
.ws23{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws46{word-spacing:3.712090px;}
.ws3a{word-spacing:3.885414px;}
.wsb3{word-spacing:4.087800px;}
.ws45{word-spacing:4.088678px;}
.ws5b{word-spacing:4.103460px;}
.ws5d{word-spacing:4.131000px;}
.wsb2{word-spacing:4.136400px;}
.ws5c{word-spacing:4.167720px;}
.ws111{word-spacing:4.250074px;}
.ws2b{word-spacing:4.363619px;}
.ws8f{word-spacing:4.542946px;}
.ws110{word-spacing:4.626662px;}
.ws63{word-spacing:4.722272px;}
.wsce{word-spacing:4.749480px;}
.wsa0{word-spacing:4.767516px;}
.wsa{word-spacing:4.770079px;}
.ws33{word-spacing:4.782048px;}
.ws80{word-spacing:4.827600px;}
.ws62{word-spacing:4.841824px;}
.wsb{word-spacing:4.853765px;}
.ws82{word-spacing:4.860000px;}
.ws81{word-spacing:4.903200px;}
.ws9f{word-spacing:5.110200px;}
.wscf{word-spacing:5.176332px;}
.ws1b{word-spacing:5.272243px;}
.ws27{word-spacing:5.499355px;}
.wseb{word-spacing:5.519016px;}
.ws4b{word-spacing:5.636520px;}
.ws4c{word-spacing:5.654880px;}
.wsef{word-spacing:5.738458px;}
.wsa9{word-spacing:5.825628px;}
.ws4d{word-spacing:5.833890px;}
.ws54{word-spacing:5.897171px;}
.ws53{word-spacing:5.984044px;}
.ws36{word-spacing:6.216662px;}
.wsd8{word-spacing:6.228432px;}
.ws97{word-spacing:6.535044px;}
.wsd9{word-spacing:6.583140px;}
.ws70{word-spacing:6.631200px;}
.ws71{word-spacing:6.652800px;}
.ws98{word-spacing:6.703380px;}
.ws10b{word-spacing:6.724800px;}
.ws60{word-spacing:6.754643px;}
.ws72{word-spacing:6.863400px;}
.wsea{word-spacing:6.919812px;}
.ws79{word-spacing:6.937848px;}
.ws3f{word-spacing:6.993745px;}
.ws78{word-spacing:7.040052px;}
.ws6c{word-spacing:7.173072px;}
.wsa2{word-spacing:7.256484px;}
.ws8{word-spacing:7.782761px;}
.ws9a{word-spacing:7.971912px;}
.wse5{word-spacing:8.362692px;}
.wse6{word-spacing:8.488944px;}
.wse7{word-spacing:8.494956px;}
.wsb7{word-spacing:8.975916px;}
.wsb6{word-spacing:9.005976px;}
.wsb8{word-spacing:9.715392px;}
.ws4a{word-spacing:9.881474px;}
.wsa1{word-spacing:11.218392px;}
.ws6f{word-spacing:11.625264px;}
.ws6{word-spacing:12.176255px;}
.ws2{word-spacing:12.929425px;}
.wsfe{word-spacing:13.019213px;}
.ws106{word-spacing:13.234406px;}
.wsff{word-spacing:13.390781px;}
.wsf8{word-spacing:13.395802px;}
.ws10f{word-spacing:13.503398px;}
.wsfa{word-spacing:13.826189px;}
.ws104{word-spacing:14.740762px;}
.ws30{word-spacing:14.776565px;}
.wsc{word-spacing:14.884124px;}
.ws90{word-spacing:15.063451px;}
.ws7{word-spacing:16.109478px;}
.ws101{word-spacing:16.616410px;}
.wsfd{word-spacing:16.623706px;}
.wse3{word-spacing:16.653240px;}
.ws10d{word-spacing:16.731302px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
._6{margin-left:-9.683712px;}
._e{margin-left:-7.053521px;}
._5{margin-left:-5.917824px;}
._9{margin-left:-4.776095px;}
._1{margin-left:-3.765852px;}
._0{margin-left:-2.301354px;}
._4{margin-left:-1.075961px;}
._17{width:1.225010px;}
._8{width:2.993380px;}
._1b{width:4.114800px;}
._1c{width:9.727416px;}
._2{width:12.971268px;}
._13{width:14.383274px;}
._d{width:15.601536px;}
._c{width:16.821061px;}
._b{width:17.861069px;}
._11{width:19.277624px;}
._f{width:21.220338px;}
._1e{width:22.254943px;}
._19{width:23.372260px;}
._12{width:24.687323px;}
._a{width:26.415014px;}
._7{width:27.908602px;}
._1d{width:29.110717px;}
._3{width:30.587087px;}
._1f{width:32.338558px;}
._16{width:33.414560px;}
._10{width:35.566482px;}
._14{width:576.879216px;}
._18{width:1659.782464px;}
._1a{width:1952.901430px;}
._15{width:2430.398288px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fsa{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fsc{font-size:45.900000px;}
.fs12{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsb{font-size:51.102000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs11{font-size:62.286600px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.ye8{bottom:-837.193050px;}
.y106{bottom:-774.899046px;}
.y105{bottom:-755.639604px;}
.y104{bottom:-736.470342px;}
.y103{bottom:-717.210900px;}
.y102{bottom:-698.041638px;}
.y6d{bottom:-688.738042px;}
.y101{bottom:-678.782196px;}
.y100{bottom:-659.522754px;}
.yff{bottom:-640.353492px;}
.y79{bottom:-637.023660px;}
.y78{bottom:-622.183042px;}
.yfe{bottom:-621.094050px;}
.y77{bottom:-603.135805px;}
.yfd{bottom:-601.924788px;}
.yfc{bottom:-578.165364px;}
.y10c{bottom:-571.936050px;}
.yfb{bottom:-540.905994px;}
.yfa{bottom:-521.736732px;}
.y12a{bottom:-509.642046px;}
.yf9{bottom:-502.477290px;}
.y129{bottom:-490.382604px;}
.yf8{bottom:-483.217848px;}
.y128{bottom:-471.213342px;}
.yf7{bottom:-464.048586px;}
.y127{bottom:-451.953900px;}
.yf6{bottom:-444.789144px;}
.y126{bottom:-432.784638px;}
.yf5{bottom:-425.619882px;}
.y125{bottom:-413.525196px;}
.yf4{bottom:-406.360440px;}
.y124{bottom:-394.265754px;}
.yf3{bottom:-387.100998px;}
.y123{bottom:-375.096492px;}
.yf2{bottom:-367.931736px;}
.yab{bottom:-363.040050px;}
.y122{bottom:-355.837050px;}
.yf1{bottom:-348.672294px;}
.y121{bottom:-336.667788px;}
.yf0{bottom:-325.003050px;}
.y120{bottom:-312.908364px;}
.yef{bottom:-288.193050px;}
.y11f{bottom:-275.648994px;}
.yee{bottom:-265.693050px;}
.y11e{bottom:-256.479732px;}
.y11d{bottom:-237.220290px;}
.y11c{bottom:-217.960848px;}
.y11b{bottom:-198.791586px;}
.yd5{bottom:-187.089312px;}
.y11a{bottom:-179.532144px;}
.yd4{bottom:-167.920050px;}
.yd2{bottom:-167.919492px;}
.yd3{bottom:-164.140050px;}
.y119{bottom:-160.362882px;}
.yd1{bottom:-148.660050px;}
.ycf{bottom:-148.658754px;}
.y76{bottom:-148.190029px;}
.yd0{bottom:-144.880050px;}
.y118{bottom:-141.103440px;}
.y75{bottom:-131.894879px;}
.yce{bottom:-129.399312px;}
.y117{bottom:-121.843998px;}
.y74{bottom:-115.524353px;}
.ycd{bottom:-110.230050px;}
.ycb{bottom:-110.229492px;}
.ycc{bottom:-106.450050px;}
.y116{bottom:-102.674736px;}
.y73{bottom:-99.229203px;}
.y84{bottom:-95.530800px;}
.yc8{bottom:-90.970815px;}
.yca{bottom:-90.970050px;}
.yc9{bottom:-87.190050px;}
.y115{bottom:-83.415294px;}
.y72{bottom:-82.858677px;}
.yc6{bottom:-71.800050px;}
.yc7{bottom:-68.020050px;}
.y71{bottom:-62.738542px;}
.y114{bottom:-59.746050px;}
.yeb{bottom:-36.823500px;}
.yed{bottom:-36.823050px;}
.yc5{bottom:-34.989600px;}
.y90{bottom:-34.690350px;}
.yec{bottom:-33.043050px;}
.y70{bottom:-31.373925px;}
.y113{bottom:-22.936050px;}
.yea{bottom:-19.453050px;}
.yc4{bottom:-17.530050px;}
.y8f{bottom:-17.230800px;}
.y6f{bottom:-16.609042px;}
.y112{bottom:-0.436050px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.439503px;}
.ye9{bottom:2.956896px;}
.yc3{bottom:4.889841px;}
.y8e{bottom:5.177715px;}
.y43{bottom:31.890000px;}
.y7b{bottom:99.249000px;}
.y14{bottom:104.646000px;}
.y7a{bottom:118.480500px;}
.ya0{bottom:120.303000px;}
.y13{bottom:122.535000px;}
.y42{bottom:125.560500px;}
.y9f{bottom:139.132500px;}
.y12{bottom:140.422500px;}
.y6a{bottom:140.910000px;}
.y41{bottom:144.390000px;}
.y14f{bottom:148.003500px;}
.y9e{bottom:157.962000px;}
.y11{bottom:158.310000px;}
.y40{bottom:163.219500px;}
.y108{bottom:174.519000px;}
.y14e{bottom:174.544500px;}
.y10{bottom:176.199000px;}
.y9d{bottom:176.791500px;}
.y3f{bottom:182.049000px;}
.y14d{bottom:192.118500px;}
.y107{bottom:193.752000px;}
.yf{bottom:194.086500px;}
.y9c{bottom:195.621000px;}
.y3e{bottom:200.878500px;}
.y14c{bottom:209.692500px;}
.ye{bottom:211.974000px;}
.ye5{bottom:216.181500px;}
.y9b{bottom:218.932500px;}
.y3d{bottom:219.708000px;}
.y10f{bottom:228.433500px;}
.y111{bottom:228.433950px;}
.yd{bottom:229.863000px;}
.y110{bottom:232.213950px;}
.y14b{bottom:236.233500px;}
.y3c{bottom:238.537500px;}
.yc2{bottom:243.929967px;}
.y10e{bottom:245.803950px;}
.y9a{bottom:252.556500px;}
.y14a{bottom:253.807500px;}
.y3b{bottom:257.365500px;}
.yc1{bottom:263.099229px;}
.y10d{bottom:268.213896px;}
.y149{bottom:271.381500px;}
.y99{bottom:271.386000px;}
.y6c{bottom:275.238572px;}
.y3a{bottom:276.195000px;}
.yc0{bottom:282.358671px;}
.y6b{bottom:283.423958px;}
.y148{bottom:288.955500px;}
.y98{bottom:290.215500px;}
.y39{bottom:295.024500px;}
.yc{bottom:296.896500px;}
.ye7{bottom:296.897085px;}
.ybf{bottom:301.618113px;}
.ye6{bottom:306.526950px;}
.y147{bottom:306.529500px;}
.y97{bottom:309.045000px;}
.y38{bottom:313.854000px;}
.ybe{bottom:320.787375px;}
.yb{bottom:325.245000px;}
.y96{bottom:327.874500px;}
.y37{bottom:332.683500px;}
.y146{bottom:333.070500px;}
.ybd{bottom:340.046817px;}
.ya{bottom:343.134000px;}
.y95{bottom:346.704000px;}
.y145{bottom:350.644500px;}
.y36{bottom:351.513000px;}
.ybc{bottom:363.717564px;}
.y94{bottom:365.533500px;}
.y144{bottom:368.218500px;}
.y9{bottom:369.988500px;}
.y35{bottom:370.342500px;}
.y8{bottom:387.876000px;}
.y93{bottom:388.846500px;}
.y34{bottom:389.172000px;}
.ybb{bottom:400.976934px;}
.y143{bottom:403.725000px;}
.y7{bottom:405.763500px;}
.y176{bottom:406.147500px;}
.y69{bottom:407.119500px;}
.y33{bottom:408.001500px;}
.y92{bottom:419.274000px;}
.yba{bottom:420.236376px;}
.y142{bottom:422.554500px;}
.y175{bottom:423.408000px;}
.y6{bottom:423.651000px;}
.y68{bottom:425.949000px;}
.y32{bottom:426.831000px;}
.y91{bottom:438.507000px;}
.yb9{bottom:439.407141px;}
.y174{bottom:440.668500px;}
.y141{bottom:441.384000px;}
.y5{bottom:441.540000px;}
.y67{bottom:444.778500px;}
.y31{bottom:450.144000px;}
.yb8{bottom:458.666583px;}
.y4{bottom:459.427500px;}
.y140{bottom:460.213500px;}
.y81{bottom:460.935750px;}
.y66{bottom:463.608000px;}
.y3{bottom:477.315000px;}
.yb7{bottom:477.835845px;}
.y13f{bottom:479.043000px;}
.y173{bottom:479.746500px;}
.y65{bottom:486.919500px;}
.y2{bottom:495.204000px;}
.y172{bottom:497.007000px;}
.yb6{bottom:497.095287px;}
.y13e{bottom:497.872500px;}
.ye4{bottom:499.434000px;}
.y64{bottom:507.094500px;}
.y1{bottom:513.091500px;}
.y171{bottom:514.267500px;}
.yb5{bottom:516.354729px;}
.y13d{bottom:516.702000px;}
.ye2{bottom:518.263500px;}
.ye3{bottom:523.689000px;}
.y30{bottom:525.294000px;}
.y170{bottom:531.528000px;}
.y13c{bottom:535.531500px;}
.ye0{bottom:537.093000px;}
.yb4{bottom:540.023973px;}
.y8d{bottom:540.408039px;}
.y63{bottom:540.718500px;}
.ye1{bottom:542.517000px;}
.y2f{bottom:544.750500px;}
.y16f{bottom:548.788500px;}
.y13b{bottom:554.361000px;}
.ydf{bottom:555.922500px;}
.y62{bottom:559.548000px;}
.y8c{bottom:559.578804px;}
.y10b{bottom:562.154085px;}
.y16e{bottom:566.049000px;}
.y10a{bottom:571.783950px;}
.y13a{bottom:573.190500px;}
.ydd{bottom:574.752000px;}
.yb3{bottom:577.283343px;}
.y61{bottom:578.377500px;}
.y8b{bottom:578.838246px;}
.yde{bottom:580.176000px;}
.y2e{bottom:582.141000px;}
.y16d{bottom:583.309500px;}
.y139{bottom:592.020000px;}
.ydb{bottom:593.581500px;}
.yb2{bottom:596.542785px;}
.y60{bottom:597.207000px;}
.y8a{bottom:598.009011px;}
.ydc{bottom:599.005500px;}
.y16c{bottom:600.568500px;}
.y2d{bottom:601.597500px;}
.yd9{bottom:612.411000px;}
.y138{bottom:615.333000px;}
.yb1{bottom:615.712047px;}
.y5f{bottom:616.036500px;}
.y89{bottom:617.268453px;}
.y16b{bottom:617.829000px;}
.yda{bottom:617.835000px;}
.y2b{bottom:621.055500px;}
.y2c{bottom:625.936500px;}
.y5e{bottom:634.866000px;}
.yb0{bottom:634.971489px;}
.y16a{bottom:635.089500px;}
.y29{bottom:640.512000px;}
.y88{bottom:640.939200px;}
.y2a{bottom:645.394500px;}
.yd8{bottom:645.976500px;}
.y137{bottom:648.957000px;}
.y169{bottom:652.350000px;}
.y5d{bottom:653.695500px;}
.yaf{bottom:654.140751px;}
.y28{bottom:659.968500px;}
.yd6{bottom:665.209500px;}
.y136{bottom:667.786500px;}
.y168{bottom:669.610500px;}
.yd7{bottom:670.092000px;}
.y5c{bottom:672.525000px;}
.yae{bottom:673.400193px;}
.y87{bottom:677.838750px;}
.y27{bottom:679.426500px;}
.y135{bottom:686.614500px;}
.y167{bottom:686.871000px;}
.ya8{bottom:687.639000px;}
.y5b{bottom:691.354500px;}
.yad{bottom:692.659635px;}
.y86{bottom:695.209200px;}
.y26{bottom:698.883000px;}
.y166{bottom:704.131500px;}
.y134{bottom:705.444000px;}
.y5a{bottom:710.184000px;}
.yac{bottom:716.330382px;}
.y85{bottom:717.619254px;}
.y25{bottom:718.339500px;}
.y165{bottom:721.392000px;}
.y133{bottom:724.273500px;}
.y59{bottom:729.013500px;}
.y24{bottom:737.797500px;}
.y164{bottom:738.651000px;}
.y132{bottom:743.103000px;}
.y58{bottom:747.843000px;}
.y163{bottom:755.911500px;}
.y23{bottom:757.254000px;}
.y131{bottom:761.932500px;}
.y57{bottom:766.671000px;}
.yaa{bottom:771.050085px;}
.y162{bottom:773.172000px;}
.y22{bottom:776.712000px;}
.ya9{bottom:780.679950px;}
.y130{bottom:780.762000px;}
.y56{bottom:785.500500px;}
.y161{bottom:790.432500px;}
.y21{bottom:796.168500px;}
.y12f{bottom:799.591500px;}
.y55{bottom:804.330000px;}
.y160{bottom:807.693000px;}
.y12e{bottom:818.421000px;}
.y54{bottom:823.159500px;}
.y15f{bottom:824.953500px;}
.y20{bottom:834.754500px;}
.y12d{bottom:837.250500px;}
.y53{bottom:841.989000px;}
.y15e{bottom:842.214000px;}
.y1f{bottom:850.893000px;}
.y1e{bottom:855.232500px;}
.y15d{bottom:859.474500px;}
.y12c{bottom:860.563500px;}
.y52{bottom:860.818500px;}
.y1d{bottom:867.033000px;}
.y15c{bottom:876.735000px;}
.y51{bottom:879.648000px;}
.y1c{bottom:887.512500px;}
.y12b{bottom:890.991000px;}
.y15b{bottom:893.994000px;}
.y50{bottom:898.477500px;}
.y1b{bottom:899.311500px;}
.y15a{bottom:911.254500px;}
.y109{bottom:913.420500px;}
.y4f{bottom:917.307000px;}
.y1a{bottom:919.791000px;}
.y159{bottom:928.515000px;}
.ya7{bottom:935.688000px;}
.y4e{bottom:936.136500px;}
.y158{bottom:945.775500px;}
.ya6{bottom:954.517500px;}
.y4d{bottom:954.966000px;}
.y157{bottom:963.036000px;}
.y19{bottom:964.468500px;}
.ya5{bottom:973.347000px;}
.y4c{bottom:973.795500px;}
.y156{bottom:980.296500px;}
.ya4{bottom:992.176500px;}
.y4b{bottom:992.625000px;}
.y155{bottom:997.557000px;}
.y18{bottom:1004.386500px;}
.y80{bottom:1006.971000px;}
.ya3{bottom:1011.006000px;}
.y4a{bottom:1011.454500px;}
.y154{bottom:1014.817500px;}
.y7f{bottom:1025.800500px;}
.ya2{bottom:1029.835500px;}
.y49{bottom:1030.284000px;}
.y153{bottom:1032.076500px;}
.y17{bottom:1036.485000px;}
.y83{bottom:1038.559335px;}
.y7e{bottom:1044.630000px;}
.y82{bottom:1048.189200px;}
.y48{bottom:1049.113500px;}
.y152{bottom:1049.337000px;}
.ya1{bottom:1053.148500px;}
.y7d{bottom:1063.459500px;}
.y16{bottom:1064.728500px;}
.y151{bottom:1066.597500px;}
.y47{bottom:1067.943000px;}
.y7c{bottom:1082.289000px;}
.y150{bottom:1083.858000px;}
.y46{bottom:1086.772500px;}
.y15{bottom:1092.972000px;}
.y45{bottom:1105.602000px;}
.y44{bottom:1168.366500px;}
.h28{height:24.079922px;}
.h22{height:24.372512px;}
.h8{height:26.110157px;}
.h21{height:26.173828px;}
.h13{height:29.589513px;}
.h12{height:29.609385px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.hd{height:31.336422px;}
.h24{height:33.072749px;}
.h16{height:33.371631px;}
.h15{height:33.394043px;}
.h1a{height:34.811191px;}
.ha{height:34.813397px;}
.h25{height:34.818209px;}
.h19{height:34.834570px;}
.h10{height:35.052500px;}
.h17{height:36.779467px;}
.h14{height:37.153749px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h1d{height:39.260742px;}
.h1c{height:39.287109px;}
.h2b{height:39.434227px;}
.he{height:43.038432px;}
.h1e{height:43.269961px;}
.hf{height:43.516637px;}
.h9{height:43.660208px;}
.h1b{height:43.710293px;}
.h20{height:43.739648px;}
.h4{height:43.815515px;}
.h23{height:43.902512px;}
.h2c{height:49.117939px;}
.h29{height:49.991558px;}
.h7{height:54.405312px;}
.h26{height:54.774749px;}
.h5{height:77.469696px;}
.h6{height:97.936416px;}
.h2a{height:207.126000px;}
.h1f{height:224.409000px;}
.h11{height:242.566200px;}
.h27{height:259.612500px;}
.h18{height:522.395250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:316.614000px;}
.w2{width:366.306225px;}
.w3{width:409.929000px;}
.w4{width:495.589500px;}
.w5{width:535.027500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x75{left:-210.127500px;}
.x6d{left:-193.761000px;}
.x3b{left:-191.956500px;}
.x32{left:-181.924650px;}
.x34{left:-15.690150px;}
.x77{left:-14.557500px;}
.x0{left:0.000000px;}
.x6f{left:1.809000px;}
.x3d{left:3.613500px;}
.x35{left:11.390760px;}
.x78{left:14.242500px;}
.x7a{left:17.302394px;}
.x79{left:22.522500px;}
.x70{left:30.609000px;}
.x73{left:33.668894px;}
.x3e{left:35.473394px;}
.x71{left:38.889000px;}
.x49{left:44.653500px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x7c{left:85.848000px;}
.x45{left:122.593500px;}
.x46{left:131.593500px;}
.x47{left:213.223500px;}
.x48{left:222.223500px;}
.x84{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xd{left:260.820000px;}
.x6a{left:262.068000px;}
.x4{left:269.914500px;}
.x1c{left:281.479500px;}
.x5f{left:294.214500px;}
.x60{left:298.719000px;}
.xe{left:301.128000px;}
.xf{left:305.182500px;}
.x74{left:306.807000px;}
.x6{left:308.131500px;}
.x36{left:310.897500px;}
.x61{left:312.175500px;}
.x37{left:315.466500px;}
.x10{left:317.118000px;}
.x1b{left:319.900500px;}
.x38{left:322.191000px;}
.x31{left:326.601000px;}
.x62{left:327.943500px;}
.x6b{left:329.937000px;}
.x11{left:331.699500px;}
.x63{left:335.622000px;}
.x72{left:337.059000px;}
.x21{left:340.852500px;}
.x29{left:344.461500px;}
.x6c{left:345.703500px;}
.x22{left:348.324000px;}
.x2a{left:351.934500px;}
.x33{left:365.506641px;}
.x55{left:369.070500px;}
.x56{left:373.575000px;}
.x57{left:387.177000px;}
.x7b{left:392.002500px;}
.x64{left:393.283500px;}
.x65{left:397.789500px;}
.x4a{left:399.613500px;}
.x58{left:402.943500px;}
.x4b{left:404.113500px;}
.x3f{left:406.361868px;}
.x59{left:412.218000px;}
.x5a{left:424.509000px;}
.x66{left:430.731000px;}
.x2f{left:443.631000px;}
.x40{left:447.363000px;}
.x3c{left:452.080313px;}
.x30{left:458.575500px;}
.x41{left:462.307500px;}
.x4e{left:468.643500px;}
.x5b{left:471.582000px;}
.x5c{left:476.088000px;}
.x4f{left:477.643500px;}
.x5d{left:489.688500px;}
.x42{left:491.587423px;}
.x5e{left:505.456500px;}
.x76{left:514.190057px;}
.x6e{left:530.556557px;}
.x4c{left:541.993350px;}
.x4d{left:550.993350px;}
.x50{left:554.773350px;}
.x51{left:563.773350px;}
.x43{left:571.603500px;}
.x44{left:576.103500px;}
.x2d{left:611.929500px;}
.x2e{left:626.874000px;}
.x80{left:655.392000px;}
.x67{left:676.221000px;}
.x81{left:682.291500px;}
.x7{left:687.091500px;}
.x82{left:690.079500px;}
.x12{left:693.502500px;}
.x8{left:697.843500px;}
.x39{left:702.733500px;}
.x13{left:709.494000px;}
.x3a{left:710.950500px;}
.x52{left:715.074000px;}
.x83{left:716.979000px;}
.x53{left:721.402500px;}
.x14{left:724.075500px;}
.x7f{left:729.403500px;}
.x15{left:730.963500px;}
.x7d{left:735.195000px;}
.x16{left:742.026000px;}
.x1d{left:744.879000px;}
.x23{left:746.788500px;}
.x2b{left:748.492500px;}
.x1e{left:752.350500px;}
.x24{left:754.260000px;}
.x1f{left:757.204500px;}
.x54{left:759.916500px;}
.x7e{left:762.094500px;}
.x2c{left:763.437000px;}
.x20{left:764.676000px;}
.x17{left:782.332500px;}
.x18{left:786.388500px;}
.x19{left:798.324000px;}
.x68{left:803.097000px;}
.x9{left:806.284500px;}
.x69{left:807.601500px;}
.xa{left:810.339000px;}
.x25{left:813.886500px;}
.x1a{left:816.280500px;}
.x26{left:821.359500px;}
.xb{left:822.583500px;}
.x27{left:825.169500px;}
.x28{left:832.642500px;}
.xc{left:837.165000px;}
@media print{
.v5{vertical-align:-19.290667pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:34.720000pt;}
.ls6e{letter-spacing:-3.115552pt;}
.ls65{letter-spacing:-0.363392pt;}
.ls35{letter-spacing:-0.288576pt;}
.ls1c{letter-spacing:-0.245290pt;}
.ls66{letter-spacing:-0.235136pt;}
.ls67{letter-spacing:-0.229792pt;}
.ls60{letter-spacing:-0.224448pt;}
.ls33{letter-spacing:-0.172800pt;}
.ls64{letter-spacing:-0.153600pt;}
.ls1a{letter-spacing:-0.146880pt;}
.ls6b{letter-spacing:-0.138944pt;}
.ls5d{letter-spacing:-0.117568pt;}
.ls5f{letter-spacing:-0.112224pt;}
.ls71{letter-spacing:-0.101536pt;}
.ls70{letter-spacing:-0.096192pt;}
.ls36{letter-spacing:-0.090848pt;}
.ls6d{letter-spacing:-0.085504pt;}
.ls1d{letter-spacing:-0.077221pt;}
.ls62{letter-spacing:-0.069472pt;}
.ls38{letter-spacing:-0.058784pt;}
.ls1f{letter-spacing:-0.049966pt;}
.ls63{letter-spacing:-0.048096pt;}
.ls37{letter-spacing:-0.037408pt;}
.ls39{letter-spacing:-0.033600pt;}
.ls6c{letter-spacing:-0.032064pt;}
.ls1e{letter-spacing:-0.031797pt;}
.ls20{letter-spacing:-0.028560pt;}
.ls68{letter-spacing:-0.024000pt;}
.ls61{letter-spacing:-0.021376pt;}
.ls5e{letter-spacing:-0.016032pt;}
.ls6a{letter-spacing:-0.010688pt;}
.ls69{letter-spacing:-0.009600pt;}
.ls34{letter-spacing:-0.005344pt;}
.ls1b{letter-spacing:-0.004542pt;}
.ls32{letter-spacing:-0.004256pt;}
.ls19{letter-spacing:-0.003618pt;}
.ls7{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.000711pt;}
.ls76{letter-spacing:0.000921pt;}
.ls78{letter-spacing:0.001026pt;}
.ls3{letter-spacing:0.001735pt;}
.ls17{letter-spacing:0.004080pt;}
.ls30{letter-spacing:0.004800pt;}
.ls3d{letter-spacing:0.005344pt;}
.ls54{letter-spacing:0.005888pt;}
.ls43{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.007235pt;}
.lsd{letter-spacing:0.008160pt;}
.ls21{letter-spacing:0.008512pt;}
.ls26{letter-spacing:0.009600pt;}
.ls3f{letter-spacing:0.010688pt;}
.lse{letter-spacing:0.012240pt;}
.ls14{letter-spacing:0.013627pt;}
.ls27{letter-spacing:0.014400pt;}
.ls2d{letter-spacing:0.016032pt;}
.lsc{letter-spacing:0.020400pt;}
.ls57{letter-spacing:0.021376pt;}
.ls25{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.026720pt;}
.ls13{letter-spacing:0.027254pt;}
.lsb{letter-spacing:0.028560pt;}
.ls51{letter-spacing:0.028800pt;}
.ls2c{letter-spacing:0.032064pt;}
.ls24{letter-spacing:0.033600pt;}
.ls16{letter-spacing:0.036720pt;}
.ls3a{letter-spacing:0.037408pt;}
.ls3b{letter-spacing:0.042752pt;}
.ls2f{letter-spacing:0.043200pt;}
.ls10{letter-spacing:0.044880pt;}
.ls11{letter-spacing:0.045424pt;}
.ls52{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.048096pt;}
.ls29{letter-spacing:0.052800pt;}
.ls2a{letter-spacing:0.053440pt;}
.ls53{letter-spacing:0.057600pt;}
.ls3c{letter-spacing:0.064128pt;}
.ls56{letter-spacing:0.069472pt;}
.ls15{letter-spacing:0.077221pt;}
.ls58{letter-spacing:0.080160pt;}
.ls41{letter-spacing:0.085504pt;}
.ls18{letter-spacing:0.089760pt;}
.ls2e{letter-spacing:0.090848pt;}
.ls55{letter-spacing:0.091200pt;}
.ls31{letter-spacing:0.105600pt;}
.lsf{letter-spacing:0.106080pt;}
.ls40{letter-spacing:0.106880pt;}
.ls44{letter-spacing:0.112224pt;}
.ls28{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.130234pt;}
.ls45{letter-spacing:0.133600pt;}
.ls12{letter-spacing:0.136272pt;}
.ls9{letter-spacing:0.144704pt;}
.ls23{letter-spacing:0.153216pt;}
.ls2b{letter-spacing:0.160320pt;}
.ls22{letter-spacing:0.170240pt;}
.ls46{letter-spacing:0.171008pt;}
.ls5{letter-spacing:0.447791pt;}
.ls5b{letter-spacing:0.462234pt;}
.ls47{letter-spacing:0.462933pt;}
.ls4a{letter-spacing:0.482502pt;}
.ls4b{letter-spacing:0.487835pt;}
.ls4e{letter-spacing:0.506796pt;}
.ls5a{letter-spacing:0.573411pt;}
.ls59{letter-spacing:0.600533pt;}
.ls4d{letter-spacing:0.635362pt;}
.ls4c{letter-spacing:0.637762pt;}
.ls6f{letter-spacing:1.683360pt;}
.ls1{letter-spacing:2.665203pt;}
.ls48{letter-spacing:3.123467pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.631867pt;}
.ls74{letter-spacing:11.770755pt;}
.ls72{letter-spacing:11.954133pt;}
.ls75{letter-spacing:11.959467pt;}
.ls79{letter-spacing:12.023338pt;}
.ls7a{letter-spacing:12.077254pt;}
.ls73{letter-spacing:12.463101pt;}
.ls50{letter-spacing:13.283467pt;}
.ls5c{letter-spacing:14.613867pt;}
.ls49{letter-spacing:15.091507pt;}
.ls4f{letter-spacing:15.937067pt;}
.ls2{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws87{word-spacing:-53.440000pt;}
.ws89{word-spacing:-48.000000pt;}
.ws67{word-spacing:-13.360000pt;}
.ws88{word-spacing:-13.247776pt;}
.ws8a{word-spacing:-12.033600pt;}
.ws8d{word-spacing:-11.955200pt;}
.ws44{word-spacing:-11.356000pt;}
.ws64{word-spacing:-10.640000pt;}
.ws15{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws41{word-spacing:-9.044000pt;}
.wse1{word-spacing:-3.104864pt;}
.wsbc{word-spacing:-2.527712pt;}
.wse9{word-spacing:-2.484960pt;}
.wse8{word-spacing:-2.458240pt;}
.wsbb{word-spacing:-2.452896pt;}
.wsf0{word-spacing:-2.337890pt;}
.ws3b{word-spacing:-2.231622pt;}
.ws37{word-spacing:-1.912819pt;}
.wsa3{word-spacing:-1.843680pt;}
.wsa4{word-spacing:-1.832992pt;}
.ws94{word-spacing:-1.533728pt;}
.wsda{word-spacing:-1.528384pt;}
.ws7a{word-spacing:-1.480288pt;}
.ws7b{word-spacing:-1.458912pt;}
.ws93{word-spacing:-1.400128pt;}
.wse0{word-spacing:-1.277216pt;}
.ws55{word-spacing:-1.258245pt;}
.ws56{word-spacing:-1.240075pt;}
.wsdf{word-spacing:-1.218432pt;}
.wsaf{word-spacing:-1.191712pt;}
.wsf2{word-spacing:-1.168945pt;}
.wsb0{word-spacing:-1.148960pt;}
.ws39{word-spacing:-1.115811pt;}
.wse4{word-spacing:-0.945888pt;}
.ws6b{word-spacing:-0.903276pt;}
.ws22{word-spacing:-0.850142pt;}
.wsd4{word-spacing:-0.571808pt;}
.wsd3{word-spacing:-0.555776pt;}
.wsfc{word-spacing:-0.478208pt;}
.ws21{word-spacing:-0.425071pt;}
.ws34{word-spacing:-0.371937pt;}
.ws99{word-spacing:-0.331328pt;}
.ws7f{word-spacing:-0.325984pt;}
.ws86{word-spacing:-0.318803pt;}
.wsc2{word-spacing:-0.315296pt;}
.wsdc{word-spacing:-0.304608pt;}
.wsd{word-spacing:-0.286925pt;}
.ws5a{word-spacing:-0.277086pt;}
.wsaa{word-spacing:-0.272544pt;}
.ws31{word-spacing:-0.265669pt;}
.ws6e{word-spacing:-0.246848pt;}
.ws9e{word-spacing:-0.240480pt;}
.ws75{word-spacing:-0.235136pt;}
.wscd{word-spacing:-0.224448pt;}
.wsc9{word-spacing:-0.213760pt;}
.ws25{word-spacing:-0.212535pt;}
.ws48{word-spacing:-0.209821pt;}
.ws50{word-spacing:-0.199866pt;}
.wscc{word-spacing:-0.197728pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws74{word-spacing:-0.168000pt;}
.ws28{word-spacing:-0.159402pt;}
.wsdb{word-spacing:-0.149632pt;}
.ws16{word-spacing:-0.143462pt;}
.ws4f{word-spacing:-0.142800pt;}
.ws24{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws6d{word-spacing:-0.085120pt;}
.ws47{word-spacing:-0.072352pt;}
.ws49{word-spacing:-0.061499pt;}
.ws66{word-spacing:-0.053440pt;}
.ws10{word-spacing:-0.053134pt;}
.ws65{word-spacing:-0.048000pt;}
.ws91{word-spacing:-0.047821pt;}
.ws43{word-spacing:-0.045424pt;}
.ws13{word-spacing:-0.042507pt;}
.ws42{word-spacing:-0.040800pt;}
.ws4{word-spacing:-0.037194pt;}
.wsc0{word-spacing:-0.021376pt;}
.wse{word-spacing:-0.000060pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.001897pt;}
.ws9d{word-spacing:0.021376pt;}
.wsc1{word-spacing:0.042752pt;}
.ws19{word-spacing:0.047821pt;}
.ws5e{word-spacing:0.048960pt;}
.ws2f{word-spacing:0.053134pt;}
.ws83{word-spacing:0.057600pt;}
.wsa8{word-spacing:0.058784pt;}
.wsc7{word-spacing:0.072000pt;}
.wsb1{word-spacing:0.074816pt;}
.ws92{word-spacing:0.085504pt;}
.ws4e{word-spacing:0.093840pt;}
.ws18{word-spacing:0.095642pt;}
.wsc5{word-spacing:0.105600pt;}
.ws38{word-spacing:0.106268pt;}
.ws9c{word-spacing:0.106880pt;}
.ws73{word-spacing:0.110400pt;}
.wsc4{word-spacing:0.115200pt;}
.wsc3{word-spacing:0.134400pt;}
.ws5f{word-spacing:0.134640pt;}
.ws1c{word-spacing:0.143462pt;}
.wsb4{word-spacing:0.154976pt;}
.ws84{word-spacing:0.158400pt;}
.ws32{word-spacing:0.159402pt;}
.wsc8{word-spacing:0.172800pt;}
.wsc6{word-spacing:0.187200pt;}
.ws1e{word-spacing:0.191283pt;}
.ws3d{word-spacing:0.212535pt;}
.wsf7{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.ws10a{word-spacing:0.286925pt;}
.wsbf{word-spacing:0.315296pt;}
.ws85{word-spacing:0.318803pt;}
.wsf9{word-spacing:0.334746pt;}
.ws108{word-spacing:0.382566pt;}
.ws109{word-spacing:0.401556pt;}
.ws107{word-spacing:0.430387pt;}
.wsb5{word-spacing:0.448896pt;}
.wsf{word-spacing:0.499721pt;}
.wsfb{word-spacing:0.526029pt;}
.ws26{word-spacing:0.531339pt;}
.ws20{word-spacing:0.637606pt;}
.ws9b{word-spacing:0.673344pt;}
.ws8c{word-spacing:0.717312pt;}
.wsdd{word-spacing:0.726784pt;}
.wsf1{word-spacing:0.743874pt;}
.wsde{word-spacing:0.758848pt;}
.wsa6{word-spacing:0.796256pt;}
.ws2c{word-spacing:0.797008pt;}
.wsa5{word-spacing:0.817632pt;}
.wsa7{word-spacing:0.844352pt;}
.ws10c{word-spacing:0.908595pt;}
.ws8b{word-spacing:0.956416pt;}
.ws6a{word-spacing:1.009543pt;}
.wsed{word-spacing:1.062677pt;}
.ws103{word-spacing:1.187372pt;}
.wsee{word-spacing:1.328347pt;}
.wse2{word-spacing:1.357376pt;}
.wsca{word-spacing:1.378752pt;}
.ws57{word-spacing:1.403602pt;}
.ws58{word-spacing:1.417229pt;}
.ws51{word-spacing:1.435398pt;}
.wscb{word-spacing:1.507008pt;}
.ws59{word-spacing:1.508077pt;}
.wsf3{word-spacing:1.530266pt;}
.ws3c{word-spacing:1.540882pt;}
.ws105{word-spacing:1.578086pt;}
.ws8e{word-spacing:1.594016pt;}
.ws69{word-spacing:1.625907pt;}
.wsad{word-spacing:1.635264pt;}
.ws2d{word-spacing:1.647150pt;}
.ws7c{word-spacing:1.651296pt;}
.ws7d{word-spacing:1.667328pt;}
.wsf4{word-spacing:1.673728pt;}
.ws52{word-spacing:1.676146pt;}
.wsd2{word-spacing:1.678016pt;}
.ws76{word-spacing:1.688704pt;}
.wsac{word-spacing:1.731456pt;}
.wsae{word-spacing:1.742144pt;}
.wsf6{word-spacing:1.769370pt;}
.ws7e{word-spacing:1.774208pt;}
.wsec{word-spacing:1.859685pt;}
.ws68{word-spacing:1.912832pt;}
.ws77{word-spacing:1.971936pt;}
.wsd0{word-spacing:1.993312pt;}
.ws96{word-spacing:2.004000pt;}
.wsd1{word-spacing:2.020032pt;}
.ws2e{word-spacing:2.125355pt;}
.wsb9{word-spacing:2.191040pt;}
.ws10e{word-spacing:2.199757pt;}
.ws61{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.wsd5{word-spacing:2.260512pt;}
.wsd6{word-spacing:2.319296pt;}
.ws95{word-spacing:2.340672pt;}
.wsd7{word-spacing:2.362048pt;}
.ws14{word-spacing:2.550432pt;}
.wsab{word-spacing:2.597184pt;}
.wsbd{word-spacing:2.634592pt;}
.wsbe{word-spacing:2.666656pt;}
.ws35{word-spacing:2.709827pt;}
.ws2a{word-spacing:2.816095pt;}
.wsf5{word-spacing:2.855842pt;}
.ws100{word-spacing:2.866330pt;}
.ws102{word-spacing:2.869248pt;}
.wsba{word-spacing:2.875072pt;}
.ws3e{word-spacing:2.975497pt;}
.ws17{word-spacing:3.012710pt;}
.ws29{word-spacing:3.028630pt;}
.ws23{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws46{word-spacing:3.299635pt;}
.ws3a{word-spacing:3.453701pt;}
.wsb3{word-spacing:3.633600pt;}
.ws45{word-spacing:3.634381pt;}
.ws5b{word-spacing:3.647520pt;}
.ws5d{word-spacing:3.672000pt;}
.wsb2{word-spacing:3.676800pt;}
.ws5c{word-spacing:3.704640pt;}
.ws111{word-spacing:3.777843pt;}
.ws2b{word-spacing:3.878772pt;}
.ws8f{word-spacing:4.038174pt;}
.ws110{word-spacing:4.112589pt;}
.ws63{word-spacing:4.197575pt;}
.wsce{word-spacing:4.221760pt;}
.wsa0{word-spacing:4.237792pt;}
.wsa{word-spacing:4.240070pt;}
.ws33{word-spacing:4.250709pt;}
.ws80{word-spacing:4.291200pt;}
.ws62{word-spacing:4.303843pt;}
.wsb{word-spacing:4.314458pt;}
.ws82{word-spacing:4.320000pt;}
.ws81{word-spacing:4.358400pt;}
.ws9f{word-spacing:4.542400pt;}
.wscf{word-spacing:4.601184pt;}
.ws1b{word-spacing:4.686438pt;}
.ws27{word-spacing:4.888316pt;}
.wseb{word-spacing:4.905792pt;}
.ws4b{word-spacing:5.010240pt;}
.ws4c{word-spacing:5.026560pt;}
.wsef{word-spacing:5.100851pt;}
.wsa9{word-spacing:5.178336pt;}
.ws4d{word-spacing:5.185680pt;}
.ws54{word-spacing:5.241930pt;}
.ws53{word-spacing:5.319150pt;}
.ws36{word-spacing:5.525922pt;}
.wsd8{word-spacing:5.536384pt;}
.ws97{word-spacing:5.808928pt;}
.wsd9{word-spacing:5.851680pt;}
.ws70{word-spacing:5.894400pt;}
.ws71{word-spacing:5.913600pt;}
.ws98{word-spacing:5.958560pt;}
.ws10b{word-spacing:5.977600pt;}
.ws60{word-spacing:6.004127pt;}
.ws72{word-spacing:6.100800pt;}
.wsea{word-spacing:6.150944pt;}
.ws79{word-spacing:6.166976pt;}
.ws3f{word-spacing:6.216662pt;}
.ws78{word-spacing:6.257824pt;}
.ws6c{word-spacing:6.376064pt;}
.wsa2{word-spacing:6.450208pt;}
.ws8{word-spacing:6.918010pt;}
.ws9a{word-spacing:7.086144pt;}
.wse5{word-spacing:7.433504pt;}
.wse6{word-spacing:7.545728pt;}
.wse7{word-spacing:7.551072pt;}
.wsb7{word-spacing:7.978592pt;}
.wsb6{word-spacing:8.005312pt;}
.wsb8{word-spacing:8.635904pt;}
.ws4a{word-spacing:8.783533pt;}
.wsa1{word-spacing:9.971904pt;}
.ws6f{word-spacing:10.333568pt;}
.ws6{word-spacing:10.823338pt;}
.ws2{word-spacing:11.492822pt;}
.wsfe{word-spacing:11.572634pt;}
.ws106{word-spacing:11.763917pt;}
.wsff{word-spacing:11.902916pt;}
.wsf8{word-spacing:11.907379pt;}
.ws10f{word-spacing:12.003021pt;}
.wsfa{word-spacing:12.289946pt;}
.ws104{word-spacing:13.102899pt;}
.ws30{word-spacing:13.134725pt;}
.wsc{word-spacing:13.230333pt;}
.ws90{word-spacing:13.389734pt;}
.ws7{word-spacing:14.319536pt;}
.ws101{word-spacing:14.770142pt;}
.wsfd{word-spacing:14.776627pt;}
.wse3{word-spacing:14.802880pt;}
.ws10d{word-spacing:14.872269pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
._6{margin-left:-8.607744pt;}
._e{margin-left:-6.269796pt;}
._5{margin-left:-5.260288pt;}
._9{margin-left:-4.245418pt;}
._1{margin-left:-3.347424pt;}
._0{margin-left:-2.045648pt;}
._4{margin-left:-0.956410pt;}
._17{width:1.088898pt;}
._8{width:2.660782pt;}
._1b{width:3.657600pt;}
._1c{width:8.646592pt;}
._2{width:11.530016pt;}
._13{width:12.785133pt;}
._d{width:13.868032pt;}
._c{width:14.952054pt;}
._b{width:15.876506pt;}
._11{width:17.135666pt;}
._f{width:18.862523pt;}
._1e{width:19.782172pt;}
._19{width:20.775342pt;}
._12{width:21.944287pt;}
._a{width:23.480013pt;}
._7{width:24.807646pt;}
._1d{width:25.876193pt;}
._3{width:27.188522pt;}
._1f{width:28.745385pt;}
._16{width:29.701831pt;}
._10{width:31.614651pt;}
._14{width:512.781525pt;}
._18{width:1475.362190pt;}
._1a{width:1735.912382pt;}
._15{width:2160.354034pt;}
.fs13{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fsa{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fsc{font-size:40.800000pt;}
.fs12{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsb{font-size:45.424000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs11{font-size:55.365867pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.ye8{bottom:-744.171600pt;}
.y106{bottom:-688.799152pt;}
.y105{bottom:-671.679648pt;}
.y104{bottom:-654.640304pt;}
.y103{bottom:-637.520800pt;}
.y102{bottom:-620.481456pt;}
.y6d{bottom:-612.211593pt;}
.y101{bottom:-603.361952pt;}
.y100{bottom:-586.242448pt;}
.yff{bottom:-569.203104pt;}
.y79{bottom:-566.243253pt;}
.y78{bottom:-553.051593pt;}
.yfe{bottom:-552.083600pt;}
.y77{bottom:-536.120715pt;}
.yfd{bottom:-535.044256pt;}
.yfc{bottom:-513.924768pt;}
.y10c{bottom:-508.387600pt;}
.yfb{bottom:-480.805328pt;}
.yfa{bottom:-463.765984pt;}
.y12a{bottom:-453.015152pt;}
.yf9{bottom:-446.646480pt;}
.y129{bottom:-435.895648pt;}
.yf8{bottom:-429.526976pt;}
.y128{bottom:-418.856304pt;}
.yf7{bottom:-412.487632pt;}
.y127{bottom:-401.736800pt;}
.yf6{bottom:-395.368128pt;}
.y126{bottom:-384.697456pt;}
.yf5{bottom:-378.328784pt;}
.y125{bottom:-367.577952pt;}
.yf4{bottom:-361.209280pt;}
.y124{bottom:-350.458448pt;}
.yf3{bottom:-344.089776pt;}
.y123{bottom:-333.419104pt;}
.yf2{bottom:-327.050432pt;}
.yab{bottom:-322.702267pt;}
.y122{bottom:-316.299600pt;}
.yf1{bottom:-309.930928pt;}
.y121{bottom:-299.260256pt;}
.yf0{bottom:-288.891600pt;}
.y120{bottom:-278.140768pt;}
.yef{bottom:-256.171600pt;}
.y11f{bottom:-245.021328pt;}
.yee{bottom:-236.171600pt;}
.y11e{bottom:-227.981984pt;}
.y11d{bottom:-210.862480pt;}
.y11c{bottom:-193.742976pt;}
.y11b{bottom:-176.703632pt;}
.yd5{bottom:-166.301611pt;}
.y11a{bottom:-159.584128pt;}
.yd4{bottom:-149.262267pt;}
.yd2{bottom:-149.261771pt;}
.yd3{bottom:-145.902267pt;}
.y119{bottom:-142.544784pt;}
.yd1{bottom:-132.142267pt;}
.ycf{bottom:-132.141115pt;}
.y76{bottom:-131.724471pt;}
.yd0{bottom:-128.782267pt;}
.y118{bottom:-125.425280pt;}
.y75{bottom:-117.239893pt;}
.yce{bottom:-115.021611pt;}
.y117{bottom:-108.305776pt;}
.y74{bottom:-102.688314pt;}
.ycd{bottom:-97.982267pt;}
.ycb{bottom:-97.981771pt;}
.ycc{bottom:-94.622267pt;}
.y116{bottom:-91.266432pt;}
.y73{bottom:-88.203736pt;}
.y84{bottom:-84.916267pt;}
.yc8{bottom:-80.862947pt;}
.yca{bottom:-80.862267pt;}
.yc9{bottom:-77.502267pt;}
.y115{bottom:-74.146928pt;}
.y72{bottom:-73.652158pt;}
.yc6{bottom:-63.822267pt;}
.yc7{bottom:-60.462267pt;}
.y71{bottom:-55.767593pt;}
.y114{bottom:-53.107600pt;}
.yeb{bottom:-32.732000pt;}
.yed{bottom:-32.731600pt;}
.yc5{bottom:-31.101867pt;}
.y90{bottom:-30.835867pt;}
.yec{bottom:-29.371600pt;}
.y70{bottom:-27.887933pt;}
.y113{bottom:-20.387600pt;}
.yea{bottom:-17.291600pt;}
.yc4{bottom:-15.582267pt;}
.y8f{bottom:-15.316267pt;}
.y6f{bottom:-14.763593pt;}
.y112{bottom:-0.387600pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.168447pt;}
.ye9{bottom:2.628352pt;}
.yc3{bottom:4.346525pt;}
.y8e{bottom:4.602413pt;}
.y43{bottom:28.346667pt;}
.y7b{bottom:88.221333pt;}
.y14{bottom:93.018667pt;}
.y7a{bottom:105.316000pt;}
.ya0{bottom:106.936000pt;}
.y13{bottom:108.920000pt;}
.y42{bottom:111.609333pt;}
.y9f{bottom:123.673333pt;}
.y12{bottom:124.820000pt;}
.y6a{bottom:125.253333pt;}
.y41{bottom:128.346667pt;}
.y14f{bottom:131.558667pt;}
.y9e{bottom:140.410667pt;}
.y11{bottom:140.720000pt;}
.y40{bottom:145.084000pt;}
.y108{bottom:155.128000pt;}
.y14e{bottom:155.150667pt;}
.y10{bottom:156.621333pt;}
.y9d{bottom:157.148000pt;}
.y3f{bottom:161.821333pt;}
.y14d{bottom:170.772000pt;}
.y107{bottom:172.224000pt;}
.yf{bottom:172.521333pt;}
.y9c{bottom:173.885333pt;}
.y3e{bottom:178.558667pt;}
.y14c{bottom:186.393333pt;}
.ye{bottom:188.421333pt;}
.ye5{bottom:192.161333pt;}
.y9b{bottom:194.606667pt;}
.y3d{bottom:195.296000pt;}
.y10f{bottom:203.052000pt;}
.y111{bottom:203.052400pt;}
.yd{bottom:204.322667pt;}
.y110{bottom:206.412400pt;}
.y14b{bottom:209.985333pt;}
.y3c{bottom:212.033333pt;}
.yc2{bottom:216.826637pt;}
.y10e{bottom:218.492400pt;}
.y9a{bottom:224.494667pt;}
.y14a{bottom:225.606667pt;}
.y3b{bottom:228.769333pt;}
.yc1{bottom:233.865981pt;}
.y10d{bottom:238.412352pt;}
.y149{bottom:241.228000pt;}
.y99{bottom:241.232000pt;}
.y6c{bottom:244.656509pt;}
.y3a{bottom:245.506667pt;}
.yc0{bottom:250.985485pt;}
.y6b{bottom:251.932407pt;}
.y148{bottom:256.849333pt;}
.y98{bottom:257.969333pt;}
.y39{bottom:262.244000pt;}
.yc{bottom:263.908000pt;}
.ye7{bottom:263.908520pt;}
.ybf{bottom:268.104989pt;}
.ye6{bottom:272.468400pt;}
.y147{bottom:272.470667pt;}
.y97{bottom:274.706667pt;}
.y38{bottom:278.981333pt;}
.ybe{bottom:285.144333pt;}
.yb{bottom:289.106667pt;}
.y96{bottom:291.444000pt;}
.y37{bottom:295.718667pt;}
.y146{bottom:296.062667pt;}
.ybd{bottom:302.263837pt;}
.ya{bottom:305.008000pt;}
.y95{bottom:308.181333pt;}
.y145{bottom:311.684000pt;}
.y36{bottom:312.456000pt;}
.ybc{bottom:323.304501pt;}
.y94{bottom:324.918667pt;}
.y144{bottom:327.305333pt;}
.y9{bottom:328.878667pt;}
.y35{bottom:329.193333pt;}
.y8{bottom:344.778667pt;}
.y93{bottom:345.641333pt;}
.y34{bottom:345.930667pt;}
.ybb{bottom:356.423941pt;}
.y143{bottom:358.866667pt;}
.y7{bottom:360.678667pt;}
.y176{bottom:361.020000pt;}
.y69{bottom:361.884000pt;}
.y33{bottom:362.668000pt;}
.y92{bottom:372.688000pt;}
.yba{bottom:373.543445pt;}
.y142{bottom:375.604000pt;}
.y175{bottom:376.362667pt;}
.y6{bottom:376.578667pt;}
.y68{bottom:378.621333pt;}
.y32{bottom:379.405333pt;}
.y91{bottom:389.784000pt;}
.yb9{bottom:390.584125pt;}
.y174{bottom:391.705333pt;}
.y141{bottom:392.341333pt;}
.y5{bottom:392.480000pt;}
.y67{bottom:395.358667pt;}
.y31{bottom:400.128000pt;}
.yb8{bottom:407.703629pt;}
.y4{bottom:408.380000pt;}
.y140{bottom:409.078667pt;}
.y81{bottom:409.720667pt;}
.y66{bottom:412.096000pt;}
.y3{bottom:424.280000pt;}
.yb7{bottom:424.742973pt;}
.y13f{bottom:425.816000pt;}
.y173{bottom:426.441333pt;}
.y65{bottom:432.817333pt;}
.y2{bottom:440.181333pt;}
.y172{bottom:441.784000pt;}
.yb6{bottom:441.862477pt;}
.y13e{bottom:442.553333pt;}
.ye4{bottom:443.941333pt;}
.y64{bottom:450.750667pt;}
.y1{bottom:456.081333pt;}
.y171{bottom:457.126667pt;}
.yb5{bottom:458.981981pt;}
.y13d{bottom:459.290667pt;}
.ye2{bottom:460.678667pt;}
.ye3{bottom:465.501333pt;}
.y30{bottom:466.928000pt;}
.y170{bottom:472.469333pt;}
.y13c{bottom:476.028000pt;}
.ye0{bottom:477.416000pt;}
.yb4{bottom:480.021309pt;}
.y8d{bottom:480.362701pt;}
.y63{bottom:480.638667pt;}
.ye1{bottom:482.237333pt;}
.y2f{bottom:484.222667pt;}
.y16f{bottom:487.812000pt;}
.y13b{bottom:492.765333pt;}
.ydf{bottom:494.153333pt;}
.y62{bottom:497.376000pt;}
.y8c{bottom:497.403381pt;}
.y10b{bottom:499.692520pt;}
.y16e{bottom:503.154667pt;}
.y10a{bottom:508.252400pt;}
.y13a{bottom:509.502667pt;}
.ydd{bottom:510.890667pt;}
.yb3{bottom:513.140749pt;}
.y61{bottom:514.113333pt;}
.y8b{bottom:514.522885pt;}
.yde{bottom:515.712000pt;}
.y2e{bottom:517.458667pt;}
.y16d{bottom:518.497333pt;}
.y139{bottom:526.240000pt;}
.ydb{bottom:527.628000pt;}
.yb2{bottom:530.260253pt;}
.y60{bottom:530.850667pt;}
.y8a{bottom:531.563565pt;}
.ydc{bottom:532.449333pt;}
.y16c{bottom:533.838667pt;}
.y2d{bottom:534.753333pt;}
.yd9{bottom:544.365333pt;}
.y138{bottom:546.962667pt;}
.yb1{bottom:547.299597pt;}
.y5f{bottom:547.588000pt;}
.y89{bottom:548.683069pt;}
.y16b{bottom:549.181333pt;}
.yda{bottom:549.186667pt;}
.y2b{bottom:552.049333pt;}
.y2c{bottom:556.388000pt;}
.y5e{bottom:564.325333pt;}
.yb0{bottom:564.419101pt;}
.y16a{bottom:564.524000pt;}
.y29{bottom:569.344000pt;}
.y88{bottom:569.723733pt;}
.y2a{bottom:573.684000pt;}
.yd8{bottom:574.201333pt;}
.y137{bottom:576.850667pt;}
.y169{bottom:579.866667pt;}
.y5d{bottom:581.062667pt;}
.yaf{bottom:581.458445pt;}
.y28{bottom:586.638667pt;}
.yd6{bottom:591.297333pt;}
.y136{bottom:593.588000pt;}
.y168{bottom:595.209333pt;}
.yd7{bottom:595.637333pt;}
.y5c{bottom:597.800000pt;}
.yae{bottom:598.577949pt;}
.y87{bottom:602.523333pt;}
.y27{bottom:603.934667pt;}
.y135{bottom:610.324000pt;}
.y167{bottom:610.552000pt;}
.ya8{bottom:611.234667pt;}
.y5b{bottom:614.537333pt;}
.yad{bottom:615.697453pt;}
.y86{bottom:617.963733pt;}
.y26{bottom:621.229333pt;}
.y166{bottom:625.894667pt;}
.y134{bottom:627.061333pt;}
.y5a{bottom:631.274667pt;}
.yac{bottom:636.738117pt;}
.y85{bottom:637.883781pt;}
.y25{bottom:638.524000pt;}
.y165{bottom:641.237333pt;}
.y133{bottom:643.798667pt;}
.y59{bottom:648.012000pt;}
.y24{bottom:655.820000pt;}
.y164{bottom:656.578667pt;}
.y132{bottom:660.536000pt;}
.y58{bottom:664.749333pt;}
.y163{bottom:671.921333pt;}
.y23{bottom:673.114667pt;}
.y131{bottom:677.273333pt;}
.y57{bottom:681.485333pt;}
.yaa{bottom:685.377853pt;}
.y162{bottom:687.264000pt;}
.y22{bottom:690.410667pt;}
.ya9{bottom:693.937733pt;}
.y130{bottom:694.010667pt;}
.y56{bottom:698.222667pt;}
.y161{bottom:702.606667pt;}
.y21{bottom:707.705333pt;}
.y12f{bottom:710.748000pt;}
.y55{bottom:714.960000pt;}
.y160{bottom:717.949333pt;}
.y12e{bottom:727.485333pt;}
.y54{bottom:731.697333pt;}
.y15f{bottom:733.292000pt;}
.y20{bottom:742.004000pt;}
.y12d{bottom:744.222667pt;}
.y53{bottom:748.434667pt;}
.y15e{bottom:748.634667pt;}
.y1f{bottom:756.349333pt;}
.y1e{bottom:760.206667pt;}
.y15d{bottom:763.977333pt;}
.y12c{bottom:764.945333pt;}
.y52{bottom:765.172000pt;}
.y1d{bottom:770.696000pt;}
.y15c{bottom:779.320000pt;}
.y51{bottom:781.909333pt;}
.y1c{bottom:788.900000pt;}
.y12b{bottom:791.992000pt;}
.y15b{bottom:794.661333pt;}
.y50{bottom:798.646667pt;}
.y1b{bottom:799.388000pt;}
.y15a{bottom:810.004000pt;}
.y109{bottom:811.929333pt;}
.y4f{bottom:815.384000pt;}
.y1a{bottom:817.592000pt;}
.y159{bottom:825.346667pt;}
.ya7{bottom:831.722667pt;}
.y4e{bottom:832.121333pt;}
.y158{bottom:840.689333pt;}
.ya6{bottom:848.460000pt;}
.y4d{bottom:848.858667pt;}
.y157{bottom:856.032000pt;}
.y19{bottom:857.305333pt;}
.ya5{bottom:865.197333pt;}
.y4c{bottom:865.596000pt;}
.y156{bottom:871.374667pt;}
.ya4{bottom:881.934667pt;}
.y4b{bottom:882.333333pt;}
.y155{bottom:886.717333pt;}
.y18{bottom:892.788000pt;}
.y80{bottom:895.085333pt;}
.ya3{bottom:898.672000pt;}
.y4a{bottom:899.070667pt;}
.y154{bottom:902.060000pt;}
.y7f{bottom:911.822667pt;}
.ya2{bottom:915.409333pt;}
.y49{bottom:915.808000pt;}
.y153{bottom:917.401333pt;}
.y17{bottom:921.320000pt;}
.y83{bottom:923.163853pt;}
.y7e{bottom:928.560000pt;}
.y82{bottom:931.723733pt;}
.y48{bottom:932.545333pt;}
.y152{bottom:932.744000pt;}
.ya1{bottom:936.132000pt;}
.y7d{bottom:945.297333pt;}
.y16{bottom:946.425333pt;}
.y151{bottom:948.086667pt;}
.y47{bottom:949.282667pt;}
.y7c{bottom:962.034667pt;}
.y150{bottom:963.429333pt;}
.y46{bottom:966.020000pt;}
.y15{bottom:971.530667pt;}
.y45{bottom:982.757333pt;}
.y44{bottom:1038.548000pt;}
.h28{height:21.404375pt;}
.h22{height:21.664455pt;}
.h8{height:23.209028pt;}
.h21{height:23.265625pt;}
.h13{height:26.301789pt;}
.h12{height:26.319453pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.hd{height:27.854597pt;}
.h24{height:29.397999pt;}
.h16{height:29.663672pt;}
.h15{height:29.683594pt;}
.h1a{height:30.943281pt;}
.ha{height:30.945242pt;}
.h25{height:30.949519pt;}
.h19{height:30.964062pt;}
.h10{height:31.157778pt;}
.h17{height:32.692859pt;}
.h14{height:33.025555pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h1d{height:34.898438pt;}
.h1c{height:34.921875pt;}
.h2b{height:35.052646pt;}
.he{height:38.256384pt;}
.h1e{height:38.462187pt;}
.hf{height:38.681455pt;}
.h9{height:38.809074pt;}
.h1b{height:38.853594pt;}
.h20{height:38.879687pt;}
.h4{height:38.947124pt;}
.h23{height:39.024455pt;}
.h2c{height:43.660390pt;}
.h29{height:44.436941pt;}
.h7{height:48.360277pt;}
.h26{height:48.688666pt;}
.h5{height:68.861952pt;}
.h6{height:87.054592pt;}
.h2a{height:184.112000pt;}
.h1f{height:199.474667pt;}
.h11{height:215.614400pt;}
.h27{height:230.766667pt;}
.h18{height:464.351333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:281.434667pt;}
.w2{width:325.605533pt;}
.w3{width:364.381333pt;}
.w4{width:440.524000pt;}
.w5{width:475.580000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x75{left:-186.780000pt;}
.x6d{left:-172.232000pt;}
.x3b{left:-170.628000pt;}
.x32{left:-161.710800pt;}
.x34{left:-13.946800pt;}
.x77{left:-12.940000pt;}
.x0{left:0.000000pt;}
.x6f{left:1.608000pt;}
.x3d{left:3.212000pt;}
.x35{left:10.125120pt;}
.x78{left:12.660000pt;}
.x7a{left:15.379906pt;}
.x79{left:20.020000pt;}
.x70{left:27.208000pt;}
.x73{left:29.927906pt;}
.x3e{left:31.531906pt;}
.x71{left:34.568000pt;}
.x49{left:39.692000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x7c{left:76.309333pt;}
.x45{left:108.972000pt;}
.x46{left:116.972000pt;}
.x47{left:189.532000pt;}
.x48{left:197.532000pt;}
.x84{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xd{left:231.840000pt;}
.x6a{left:232.949333pt;}
.x4{left:239.924000pt;}
.x1c{left:250.204000pt;}
.x5f{left:261.524000pt;}
.x60{left:265.528000pt;}
.xe{left:267.669333pt;}
.xf{left:271.273333pt;}
.x74{left:272.717333pt;}
.x6{left:273.894667pt;}
.x36{left:276.353333pt;}
.x61{left:277.489333pt;}
.x37{left:280.414667pt;}
.x10{left:281.882667pt;}
.x1b{left:284.356000pt;}
.x38{left:286.392000pt;}
.x31{left:290.312000pt;}
.x62{left:291.505333pt;}
.x6b{left:293.277333pt;}
.x11{left:294.844000pt;}
.x63{left:298.330667pt;}
.x72{left:299.608000pt;}
.x21{left:302.980000pt;}
.x29{left:306.188000pt;}
.x6c{left:307.292000pt;}
.x22{left:309.621333pt;}
.x2a{left:312.830667pt;}
.x33{left:324.894792pt;}
.x55{left:328.062667pt;}
.x56{left:332.066667pt;}
.x57{left:344.157333pt;}
.x7b{left:348.446667pt;}
.x64{left:349.585333pt;}
.x65{left:353.590667pt;}
.x4a{left:355.212000pt;}
.x58{left:358.172000pt;}
.x4b{left:359.212000pt;}
.x3f{left:361.210549pt;}
.x59{left:366.416000pt;}
.x5a{left:377.341333pt;}
.x66{left:382.872000pt;}
.x2f{left:394.338667pt;}
.x40{left:397.656000pt;}
.x3c{left:401.849167pt;}
.x30{left:407.622667pt;}
.x41{left:410.940000pt;}
.x4e{left:416.572000pt;}
.x5b{left:419.184000pt;}
.x5c{left:423.189333pt;}
.x4f{left:424.572000pt;}
.x5d{left:435.278667pt;}
.x42{left:436.966598pt;}
.x5e{left:449.294667pt;}
.x76{left:457.057828pt;}
.x6e{left:471.605828pt;}
.x4c{left:481.771867pt;}
.x4d{left:489.771867pt;}
.x50{left:493.131867pt;}
.x51{left:501.131867pt;}
.x43{left:508.092000pt;}
.x44{left:512.092000pt;}
.x2d{left:543.937333pt;}
.x2e{left:557.221333pt;}
.x80{left:582.570667pt;}
.x67{left:601.085333pt;}
.x81{left:606.481333pt;}
.x7{left:610.748000pt;}
.x82{left:613.404000pt;}
.x12{left:616.446667pt;}
.x8{left:620.305333pt;}
.x39{left:624.652000pt;}
.x13{left:630.661333pt;}
.x3a{left:631.956000pt;}
.x52{left:635.621333pt;}
.x83{left:637.314667pt;}
.x53{left:641.246667pt;}
.x14{left:643.622667pt;}
.x7f{left:648.358667pt;}
.x15{left:649.745333pt;}
.x7d{left:653.506667pt;}
.x16{left:659.578667pt;}
.x1d{left:662.114667pt;}
.x23{left:663.812000pt;}
.x2b{left:665.326667pt;}
.x1e{left:668.756000pt;}
.x24{left:670.453333pt;}
.x1f{left:673.070667pt;}
.x54{left:675.481333pt;}
.x7e{left:677.417333pt;}
.x2c{left:678.610667pt;}
.x20{left:679.712000pt;}
.x17{left:695.406667pt;}
.x18{left:699.012000pt;}
.x19{left:709.621333pt;}
.x68{left:713.864000pt;}
.x9{left:716.697333pt;}
.x69{left:717.868000pt;}
.xa{left:720.301333pt;}
.x25{left:723.454667pt;}
.x1a{left:725.582667pt;}
.x26{left:730.097333pt;}
.xb{left:731.185333pt;}
.x27{left:733.484000pt;}
.x28{left:740.126667pt;}
.xc{left:744.146667pt;}
}




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