
    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_f87c33dac294ec4a8feed32c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_12a9d281866c8fa09b2c88fa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_02e7a65b4ef75ed5c18f78c4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_5b818033458e3ca5ed69d6d8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3ddbb6676dfe6935d6735796.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_19c7411f6f72ced8b2fefb4f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_f71710debdd623b8f0cc5f4d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_3638376ab9994c9bfb685c1a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.640000;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_b32591919076aab59776decc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4481e9dee62162fa59401234.woff')format("woff");}.ffa{font-family:ffa;line-height:0.702000;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_0279300fca7e44da8d98d8de.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_519854cecb0a37505f8a87bf.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c2f9535b6cf2101887b6ba71.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694000;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_cf235510d11987a743480acd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7520b1ff97941c32bc4d7e94.woff')format("woff");}.fff{font-family:fff;line-height:0.694000;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_966d18d78cb7af217e9cc17c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.442000;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_b88cf38d1081bdc77907ab93.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_966d18d78cb7af217e9cc17c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.442000;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_669222a3e052b01d6f85608b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.040000;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_c8d20070ad2228a6a4d9e962.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e9bc6e7b9bf523036ef00498.woff')format("woff");}.ff15{font-family:ff15;line-height:0.442000;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_6d7c8f0908388fa200b26803.woff')format("woff");}.ff16{font-family:ff16;line-height:0.704000;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_f02d6f3b10780ad17e2b5438.woff')format("woff");}.ff17{font-family:ff17;line-height:0.946000;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_8981d2cf8357e1a7888d44f9.woff')format("woff");}.ff18{font-family:ff18;line-height:0.454000;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_697880cfc0cb749fa78c4c14.woff')format("woff");}.ff19{font-family:ff19;line-height:0.668000;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_257b646f4ea585d10f95e630.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.259000;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_56f66c65f4a2ba1aa304f442.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.660000;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_669222a3e052b01d6f85608b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.040000;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_1d7e8cf615dabff6417b40b1.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e9bc6e7b9bf523036ef00498.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.442000;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_0ad348d664241e075318f57f.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.683000;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:ff20;src:url('chunks/assets/font_3e5d88ded6143377ef6beefa.woff')format("woff");}.ff20{font-family:ff20;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m29{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m8{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);}
.m1a{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);}
.m15{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);}
.mb{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);}
.m27{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2{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);}
.m1c{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);}
.mf{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);}
.m9{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);}
.m6{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);}
.m12{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);}
.m18{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);}
.m21{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);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1b{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);}
.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);}
.m25{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);}
.m23{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);}
.m14{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);}
.mc{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);}
.m1d{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);}
.m2a{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);}
.m19{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);}
.m7{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);}
.m13{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);}
.m28{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);}
.md{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);}
.me{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);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m10{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);}
.m11{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m26{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);}
.m4{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);}
.m17{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);}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-8.964000px;}
.v4{vertical-align:-6.722604px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.546000px;}
.v6{vertical-align:8.964000px;}
.v3{vertical-align:14.956123px;}
.v1{vertical-align:21.696000px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000352px;}
.ls1f{letter-spacing:0.000708px;}
.lsc{letter-spacing:0.000871px;}
.ls1e{letter-spacing:0.001528px;}
.lse{letter-spacing:0.001686px;}
.lsf{letter-spacing:0.001702px;}
.ls10{letter-spacing:0.001710px;}
.ls17{letter-spacing:0.213377px;}
.ls15{letter-spacing:0.838472px;}
.ls20{letter-spacing:0.956346px;}
.ls21{letter-spacing:1.015368px;}
.ls19{letter-spacing:1.031520px;}
.ls16{letter-spacing:1.037520px;}
.ls18{letter-spacing:1.039163px;}
.ls13{letter-spacing:1.435213px;}
.ls14{letter-spacing:1.439984px;}
.ls9{letter-spacing:2.984496px;}
.ls8{letter-spacing:2.989167px;}
.lsb{letter-spacing:2.990496px;}
.ls1b{letter-spacing:8.451030px;}
.ls3{letter-spacing:11.301122px;}
.ls4{letter-spacing:11.307244px;}
.ls5{letter-spacing:11.956683px;}
.ls2{letter-spacing:14.943362px;}
.ls7{letter-spacing:14.944718px;}
.ls12{letter-spacing:14.947368px;}
.lsa{letter-spacing:16.355250px;}
.ls0{letter-spacing:17.559941px;}
.ls1{letter-spacing:17.563547px;}
.ls1a{letter-spacing:31.516452px;}
.ls1d{letter-spacing:57.657029px;}
.ls11{letter-spacing:69.459786px;}
.lsd{letter-spacing:100.010062px;}
.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;}
}
.wsd9{word-spacing:-61.210214px;}
.ws9f{word-spacing:-26.883561px;}
.wscb{word-spacing:-25.442365px;}
.ws2{word-spacing:-16.363650px;}
.ws81{word-spacing:-14.943900px;}
.ws47{word-spacing:-11.955150px;}
.ws79{word-spacing:-4.244068px;}
.wse3{word-spacing:-4.124516px;}
.ws33{word-spacing:-4.004965px;}
.wsc6{word-spacing:-3.765863px;}
.ws3f{word-spacing:-3.706087px;}
.ws91{word-spacing:-3.407209px;}
.wsfb{word-spacing:-3.251801px;}
.ws86{word-spacing:-3.227882px;}
.wsdd{word-spacing:-3.168107px;}
.ws96{word-spacing:-3.108331px;}
.ws8{word-spacing:-3.048556px;}
.ws4a{word-spacing:-2.929004px;}
.wsc2{word-spacing:-2.869229px;}
.wsed{word-spacing:-2.821415px;}
.ws26{word-spacing:-2.809453px;}
.ws7b{word-spacing:-2.749678px;}
.wsb9{word-spacing:-2.570351px;}
.ws55{word-spacing:-2.271473px;}
.ws101{word-spacing:-2.247568px;}
.ws5f{word-spacing:-2.211697px;}
.ws78{word-spacing:-2.151922px;}
.wsad{word-spacing:-2.092146px;}
.ws35{word-spacing:-2.032370px;}
.ws93{word-spacing:-1.912819px;}
.wsf0{word-spacing:-1.865003px;}
.wsd{word-spacing:-1.853044px;}
.ws7{word-spacing:-1.793268px;}
.ws53{word-spacing:-1.733492px;}
.ws4c{word-spacing:-1.673717px;}
.ws6b{word-spacing:-1.613941px;}
.ws4d{word-spacing:-1.554166px;}
.ws61{word-spacing:-1.494390px;}
.ws60{word-spacing:-1.434614px;}
.ws29{word-spacing:-1.374839px;}
.ws56{word-spacing:-1.315063px;}
.wsfa{word-spacing:-1.291156px;}
.ws80{word-spacing:-1.255288px;}
.wsf2{word-spacing:-1.195515px;}
.wsae{word-spacing:-1.195512px;}
.ws24{word-spacing:-1.075961px;}
.ws64{word-spacing:-1.016185px;}
.ws7f{word-spacing:-0.956410px;}
.wsd8{word-spacing:-0.896634px;}
.ws75{word-spacing:-0.836858px;}
.wsde{word-spacing:-0.777083px;}
.ws38{word-spacing:-0.717307px;}
.ws34{word-spacing:-0.657532px;}
.ws3{word-spacing:-0.597756px;}
.wse{word-spacing:-0.537980px;}
.ws58{word-spacing:-0.498015px;}
.ws59{word-spacing:-0.478205px;}
.wsd7{word-spacing:-0.418429px;}
.ws20{word-spacing:-0.376589px;}
.ws54{word-spacing:-0.358654px;}
.ws102{word-spacing:-0.334744px;}
.ws2b{word-spacing:-0.298878px;}
.wsee{word-spacing:-0.286924px;}
.ws36{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.191282px;}
.ws6c{word-spacing:-0.185620px;}
.wsf{word-spacing:-0.179327px;}
.wsf5{word-spacing:-0.143462px;}
.ws27{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.wse5{word-spacing:-0.095641px;}
.ws18{word-spacing:-0.071731px;}
.ws14{word-spacing:-0.059776px;}
.ws5a{word-spacing:-0.059342px;}
.wsb2{word-spacing:-0.043636px;}
.ws9e{word-spacing:-0.041270px;}
.ws88{word-spacing:-0.041218px;}
.ws98{word-spacing:-0.040679px;}
.wsc9{word-spacing:-0.039058px;}
.ws8c{word-spacing:-0.038932px;}
.wsd3{word-spacing:-0.038078px;}
.wsb6{word-spacing:-0.032877px;}
.wsa1{word-spacing:-0.030152px;}
.ws6e{word-spacing:-0.021372px;}
.ws1{word-spacing:0.000000px;}
.wsc3{word-spacing:0.007612px;}
.ws109{word-spacing:0.047821px;}
.ws31{word-spacing:0.059776px;}
.ws5{word-spacing:0.119551px;}
.wsf3{word-spacing:0.143462px;}
.ws1c{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws4{word-spacing:0.239102px;}
.ws9{word-spacing:0.298878px;}
.ws12{word-spacing:0.358654px;}
.ws69{word-spacing:0.418429px;}
.wsc{word-spacing:0.478205px;}
.ws63{word-spacing:0.537980px;}
.ws3c{word-spacing:0.597756px;}
.wsbf{word-spacing:0.657532px;}
.ws3a{word-spacing:0.717307px;}
.ws76{word-spacing:0.777083px;}
.wsa{word-spacing:0.836858px;}
.ws22{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.wsf6{word-spacing:1.004233px;}
.wsbb{word-spacing:1.011274px;}
.wsbd{word-spacing:1.016185px;}
.wse4{word-spacing:1.075961px;}
.ws83{word-spacing:1.135736px;}
.wse2{word-spacing:1.195512px;}
.ws6a{word-spacing:1.255288px;}
.wsb{word-spacing:1.315063px;}
.ws51{word-spacing:1.374839px;}
.ws57{word-spacing:1.434614px;}
.wse7{word-spacing:1.482439px;}
.ws48{word-spacing:1.494390px;}
.ws2c{word-spacing:1.554166px;}
.ws2e{word-spacing:1.613941px;}
.ws106{word-spacing:1.625900px;}
.ws28{word-spacing:1.673717px;}
.wsc1{word-spacing:1.793268px;}
.ws32{word-spacing:1.853044px;}
.ws66{word-spacing:1.912819px;}
.ws6{word-spacing:1.972595px;}
.ws42{word-spacing:2.032370px;}
.ws43{word-spacing:2.092146px;}
.wsfc{word-spacing:2.151927px;}
.ws37{word-spacing:2.211697px;}
.ws4e{word-spacing:2.271473px;}
.ws8f{word-spacing:2.391024px;}
.ws95{word-spacing:2.450800px;}
.wsdb{word-spacing:2.510575px;}
.ws30{word-spacing:2.570351px;}
.ws7d{word-spacing:2.630126px;}
.wsc0{word-spacing:2.689902px;}
.ws45{word-spacing:2.749678px;}
.ws104{word-spacing:2.773595px;}
.ws44{word-spacing:2.809453px;}
.ws7c{word-spacing:2.869229px;}
.wsea{word-spacing:2.869236px;}
.ws10a{word-spacing:2.917057px;}
.ws5d{word-spacing:2.929004px;}
.ws82{word-spacing:2.988780px;}
.ws49{word-spacing:3.108331px;}
.wsdc{word-spacing:3.168107px;}
.wsff{word-spacing:3.251801px;}
.wsfd{word-spacing:3.264543px;}
.ws10{word-spacing:3.287658px;}
.wsaf{word-spacing:3.347434px;}
.ws72{word-spacing:3.407209px;}
.wsf7{word-spacing:3.502703px;}
.wsdf{word-spacing:3.526760px;}
.wse0{word-spacing:3.586536px;}
.ws11{word-spacing:3.706087px;}
.ws74{word-spacing:3.765863px;}
.wsb1{word-spacing:4.004965px;}
.wscd{word-spacing:4.183097px;}
.ws65{word-spacing:4.244068px;}
.ws4f{word-spacing:4.303843px;}
.ws105{word-spacing:4.303854px;}
.wse6{word-spacing:4.351675px;}
.ws4b{word-spacing:4.423394px;}
.ws68{word-spacing:4.483170px;}
.ws23{word-spacing:4.542946px;}
.ws94{word-spacing:4.841824px;}
.ws40{word-spacing:4.901599px;}
.ws85{word-spacing:4.961375px;}
.ws5e{word-spacing:5.021150px;}
.ws41{word-spacing:5.080926px;}
.ws70{word-spacing:5.140702px;}
.wsb3{word-spacing:5.260253px;}
.ws7e{word-spacing:5.320028px;}
.ws62{word-spacing:5.379804px;}
.ws3b{word-spacing:5.439580px;}
.ws3e{word-spacing:5.559131px;}
.ws3d{word-spacing:5.618906px;}
.wsc8{word-spacing:5.678682px;}
.wse1{word-spacing:5.738458px;}
.ws39{word-spacing:5.798233px;}
.ws7a{word-spacing:5.858009px;}
.ws52{word-spacing:6.097111px;}
.ws2d{word-spacing:6.216662px;}
.ws2f{word-spacing:6.395989px;}
.wsb7{word-spacing:6.455765px;}
.ws84{word-spacing:6.515540px;}
.ws2a{word-spacing:6.694867px;}
.ws50{word-spacing:7.173072px;}
.wsec{word-spacing:7.938220px;}
.wsda{word-spacing:9.449189px;}
.ws100{word-spacing:9.707582px;}
.wsac{word-spacing:9.922750px;}
.wsb5{word-spacing:10.224513px;}
.wsf1{word-spacing:10.711814px;}
.ws17{word-spacing:11.237813px;}
.wsef{word-spacing:11.716047px;}
.wsf4{word-spacing:11.811688px;}
.ws1a{word-spacing:11.907329px;}
.ws73{word-spacing:11.955120px;}
.ws10b{word-spacing:11.955150px;}
.ws103{word-spacing:12.146432px;}
.ws5c{word-spacing:12.239162px;}
.wsd2{word-spacing:12.641980px;}
.wsf9{word-spacing:12.772404px;}
.ws8d{word-spacing:12.925374px;}
.ws1f{word-spacing:13.019213px;}
.wsd6{word-spacing:13.031081px;}
.ws108{word-spacing:13.059838px;}
.ws1b{word-spacing:13.395802px;}
.ws1e{word-spacing:13.449600px;}
.ws99{word-spacing:13.505337px;}
.ws107{word-spacing:13.533230px;}
.wsd0{word-spacing:13.557197px;}
.ws8a{word-spacing:13.684266px;}
.ws89{word-spacing:13.725483px;}
.wsc7{word-spacing:14.663148px;}
.wseb{word-spacing:14.776565px;}
.ws16{word-spacing:14.884124px;}
.ws77{word-spacing:15.003676px;}
.wsfe{word-spacing:15.159130px;}
.wsf8{word-spacing:15.398233px;}
.wsc5{word-spacing:16.162621px;}
.wsb0{word-spacing:16.287412px;}
.ws71{word-spacing:16.627326px;}
.wse9{word-spacing:16.737210px;}
.wsbe{word-spacing:17.182136px;}
.wse8{word-spacing:17.215416px;}
.ws15{word-spacing:17.514251px;}
.ws13{word-spacing:17.861069px;}
.ws6d{word-spacing:18.102645px;}
.wsba{word-spacing:18.131372px;}
.ws6f{word-spacing:18.243837px;}
.wsc4{word-spacing:18.285753px;}
.wsb8{word-spacing:18.450825px;}
.ws92{word-spacing:18.700428px;}
.wsbc{word-spacing:19.195098px;}
.ws67{word-spacing:20.451077px;}
.wsa7{word-spacing:20.540605px;}
.wsa6{word-spacing:20.544388px;}
.ws90{word-spacing:20.596848px;}
.ws5b{word-spacing:21.006905px;}
.wsd5{word-spacing:22.380134px;}
.wsa0{word-spacing:28.551172px;}
.wsa2{word-spacing:28.554955px;}
.ws8e{word-spacing:29.266330px;}
.ws9a{word-spacing:29.273352px;}
.ws0{word-spacing:30.869775px;}
.ws9d{word-spacing:31.546291px;}
.ws97{word-spacing:35.291764px;}
.wsa8{word-spacing:36.588600px;}
.wsa5{word-spacing:36.592383px;}
.wscf{word-spacing:36.959501px;}
.wsb4{word-spacing:38.597189px;}
.wsce{word-spacing:40.940582px;}
.ws87{word-spacing:43.144948px;}
.wsd4{word-spacing:44.383680px;}
.ws8b{word-spacing:46.804608px;}
.wsd1{word-spacing:62.518942px;}
.wsaa{word-spacing:70.347082px;}
.ws21{word-spacing:71.659469px;}
.wsca{word-spacing:72.805833px;}
.ws9c{word-spacing:79.719692px;}
.ws9b{word-spacing:83.472623px;}
.wsa9{word-spacing:85.466510px;}
.wscc{word-spacing:87.997616px;}
.wsab{word-spacing:96.715428px;}
.wsa3{word-spacing:103.536394px;}
.wsa4{word-spacing:129.903038px;}
._2{margin-left:-9.918000px;}
._b{margin-left:-5.236378px;}
._3{margin-left:-4.123640px;}
._6{margin-left:-2.904493px;}
._0{margin-left:-1.859625px;}
._1{width:1.735650px;}
._10{width:2.809453px;}
._4{width:3.823481px;}
._8{width:9.324994px;}
._5{width:10.839128px;}
._20{width:12.768100px;}
._c{width:14.226593px;}
._9{width:16.139412px;}
._11{width:17.633802px;}
._f{width:20.689302px;}
._e{width:22.654076px;}
._1d{width:24.603739px;}
._21{width:27.866846px;}
._1f{width:29.214102px;}
._1e{width:34.042889px;}
._16{width:39.484737px;}
._19{width:41.753947px;}
._1a{width:45.259804px;}
._12{width:53.489135px;}
._13{width:55.677585px;}
._15{width:59.824100px;}
._a{width:71.731200px;}
._14{width:85.719920px;}
._1b{width:88.035497px;}
._18{width:89.934806px;}
._1c{width:91.114372px;}
._17{width:103.854715px;}
._7{width:263.587147px;}
._d{width:1211.139530px;}
.fc1{color:rgb(79,76,77);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:27.252216px;}
.fs15{font-size:27.340504px;}
.fsd{font-size:28.852284px;}
.fs12{font-size:30.151845px;}
.fs13{font-size:32.877000px;}
.fs8{font-size:35.865600px;}
.fsa{font-size:37.088369px;}
.fs16{font-size:38.078253px;}
.fse{font-size:38.931848px;}
.fs14{font-size:39.057975px;}
.fs10{font-size:40.678725px;}
.fsc{font-size:41.217667px;}
.fs11{font-size:41.270434px;}
.fs7{font-size:43.636200px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs9{font-size:59.341539px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fsb{font-size:74.176738px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.434944px;}
.y17c{bottom:4.719254px;}
.y141{bottom:5.119507px;}
.y185{bottom:5.552585px;}
.y105{bottom:5.677056px;}
.y134{bottom:5.931716px;}
.y143{bottom:5.979221px;}
.y87{bottom:8.493477px;}
.y88{bottom:11.244597px;}
.y175{bottom:16.441429px;}
.yf6{bottom:16.847876px;}
.y13a{bottom:17.487472px;}
.y180{bottom:19.228130px;}
.yfe{bottom:19.659165px;}
.y12d{bottom:20.523756px;}
.yf7{bottom:22.934790px;}
.y176{bottom:23.037603px;}
.y13b{bottom:24.496648px;}
.y181{bottom:25.658847px;}
.y12e{bottom:27.432438px;}
.yff{bottom:27.885084px;}
.y86{bottom:32.105082px;}
.y82{bottom:34.846895px;}
.y13c{bottom:37.464237px;}
.y186{bottom:38.240311px;}
.y12f{bottom:40.214106px;}
.y177{bottom:42.032232px;}
.y100{bottom:45.916650px;}
.yfb{bottom:46.857346px;}
.y7f{bottom:47.982654px;}
.y85{bottom:48.066416px;}
.y142{bottom:50.338195px;}
.y13d{bottom:50.431827px;}
.y81{bottom:50.815674px;}
.y135{bottom:52.903485px;}
.y130{bottom:52.995775px;}
.y182{bottom:56.523422px;}
.yf8{bottom:59.011523px;}
.y178{bottom:61.026860px;}
.y17d{bottom:63.228199px;}
.y13e{bottom:63.399417px;}
.y101{bottom:63.948216px;}
.y131{bottom:65.777443px;}
.y80{bottom:66.784453px;}
.y106{bottom:67.944919px;}
.y13f{bottom:76.367006px;}
.y132{bottom:78.558179px;}
.y179{bottom:80.021489px;}
.y102{bottom:81.979782px;}
.y183{bottom:87.387996px;}
.y83{bottom:87.637493px;}
.y140{bottom:89.333650px;}
.y84{bottom:90.388613px;}
.y133{bottom:91.339848px;}
.yf9{bottom:95.087221px;}
.y188{bottom:96.086186px;}
.y17a{bottom:99.016118px;}
.y103{bottom:100.011348px;}
.y136{bottom:103.821341px;}
.y187{bottom:107.932847px;}
.y137{bottom:117.184715px;}
.y17b{bottom:118.011727px;}
.y104{bottom:118.042915px;}
.y184{bottom:118.252571px;}
.y2c{bottom:132.957000px;}
.y174{bottom:134.845500px;}
.y7c{bottom:137.296500px;}
.y2b{bottom:147.900000px;}
.y50{bottom:150.889500px;}
.yb1{bottom:152.239500px;}
.y173{bottom:152.778000px;}
.y12b{bottom:160.858500px;}
.y2a{bottom:162.844500px;}
.y7b{bottom:164.536500px;}
.y4f{bottom:168.822000px;}
.y172{bottom:170.710500px;}
.y1d2{bottom:177.789000px;}
.yb0{bottom:178.444500px;}
.y12a{bottom:178.791000px;}
.y29{bottom:179.283000px;}
.yf4{bottom:181.492500px;}
.y7a{bottom:182.469000px;}
.y4e{bottom:186.754500px;}
.y171{bottom:188.643000px;}
.yd4{bottom:191.238000px;}
.y1d1{bottom:192.732000px;}
.y28{bottom:195.721500px;}
.yaf{bottom:196.377000px;}
.y129{bottom:196.723500px;}
.yf3{bottom:199.426500px;}
.y79{bottom:200.401500px;}
.y4d{bottom:204.687000px;}
.y170{bottom:206.575500px;}
.y1d0{bottom:207.676500px;}
.y27{bottom:210.664500px;}
.yae{bottom:214.309500px;}
.y128{bottom:214.657500px;}
.yf2{bottom:217.359000px;}
.y78{bottom:218.334000px;}
.y4c{bottom:222.619500px;}
.y16f{bottom:224.509500px;}
.y163{bottom:231.865500px;}
.yad{bottom:232.243500px;}
.y127{bottom:232.590000px;}
.yf1{bottom:235.291500px;}
.y77{bottom:236.268000px;}
.yd3{bottom:236.568000px;}
.y1cf{bottom:237.564000px;}
.y4b{bottom:240.553500px;}
.y16e{bottom:242.442000px;}
.y162{bottom:249.798000px;}
.yac{bottom:250.176000px;}
.y126{bottom:250.522500px;}
.y1ce{bottom:252.508500px;}
.yf0{bottom:253.224000px;}
.y76{bottom:254.200500px;}
.yd2{bottom:254.500500px;}
.y4a{bottom:258.486000px;}
.y16d{bottom:260.374500px;}
.y161{bottom:263.241000px;}
.y26{bottom:266.695500px;}
.y1cd{bottom:267.451500px;}
.yab{bottom:268.108500px;}
.y15f{bottom:268.396500px;}
.y125{bottom:268.455000px;}
.yef{bottom:271.156500px;}
.y75{bottom:272.133000px;}
.yd1{bottom:272.433000px;}
.y160{bottom:275.173500px;}
.y49{bottom:276.418500px;}
.y16c{bottom:278.307000px;}
.y1a4{bottom:280.902000px;}
.y1cc{bottom:282.396000px;}
.yaa{bottom:286.041000px;}
.y15e{bottom:286.329000px;}
.y124{bottom:286.387500px;}
.yee{bottom:289.089000px;}
.y25{bottom:289.111500px;}
.y74{bottom:290.065500px;}
.yd0{bottom:290.365500px;}
.y48{bottom:294.351000px;}
.y16b{bottom:296.239500px;}
.y1cb{bottom:297.340500px;}
.y15d{bottom:304.261500px;}
.y123{bottom:304.320000px;}
.yed{bottom:307.023000px;}
.y73{bottom:307.998000px;}
.ycf{bottom:308.299500px;}
.y47{bottom:312.283500px;}
.ya9{bottom:314.049000px;}
.y16a{bottom:314.172000px;}
.y1a3{bottom:315.681000px;}
.y15c{bottom:317.704500px;}
.y122{bottom:322.254000px;}
.y15a{bottom:322.860000px;}
.y24{bottom:323.746500px;}
.yec{bottom:324.955500px;}
.y72{bottom:325.930500px;}
.yce{bottom:326.232000px;}
.y1ca{bottom:327.228000px;}
.y15b{bottom:329.637000px;}
.y46{bottom:330.216000px;}
.ya8{bottom:331.981500px;}
.y169{bottom:332.106000px;}
.y1a2{bottom:333.615000px;}
.y120{bottom:340.186500px;}
.y159{bottom:340.792500px;}
.y23{bottom:341.679000px;}
.y1c9{bottom:342.172500px;}
.yeb{bottom:342.888000px;}
.y71{bottom:343.864500px;}
.ycd{bottom:344.164500px;}
.y121{bottom:345.610500px;}
.y45{bottom:348.150000px;}
.ya7{bottom:349.914000px;}
.y168{bottom:350.038500px;}
.y1a1{bottom:351.547500px;}
.y1c8{bottom:357.115500px;}
.y11f{bottom:358.119000px;}
.y158{bottom:358.725000px;}
.y22{bottom:359.611500px;}
.yea{bottom:360.820500px;}
.y70{bottom:361.797000px;}
.ycc{bottom:362.097000px;}
.y44{bottom:366.082500px;}
.ya6{bottom:367.846500px;}
.y167{bottom:367.971000px;}
.y1a0{bottom:369.480000px;}
.y1c7{bottom:372.060000px;}
.y157{bottom:376.657500px;}
.y21{bottom:377.544000px;}
.ye9{bottom:378.753000px;}
.y6f{bottom:379.729500px;}
.ycb{bottom:380.029500px;}
.y11e{bottom:380.535000px;}
.y43{bottom:384.015000px;}
.ya5{bottom:385.779000px;}
.y166{bottom:385.903500px;}
.y1c6{bottom:387.003000px;}
.y19f{bottom:387.412500px;}
.ye8{bottom:396.685500px;}
.y6e{bottom:397.662000px;}
.yca{bottom:397.962000px;}
.y156{bottom:399.073500px;}
.y20{bottom:399.960000px;}
.y42{bottom:401.947500px;}
.ya3{bottom:403.711500px;}
.y165{bottom:403.836000px;}
.y19e{bottom:405.345000px;}
.ya4{bottom:409.137000px;}
.ye7{bottom:414.619500px;}
.y6d{bottom:415.594500px;}
.yc9{bottom:415.896000px;}
.y11d{bottom:416.143500px;}
.y1c5{bottom:416.892000px;}
.y41{bottom:419.880000px;}
.ya2{bottom:421.645500px;}
.y164{bottom:421.768500px;}
.y19d{bottom:423.277500px;}
.y1c4{bottom:431.835000px;}
.ye6{bottom:432.552000px;}
.y6c{bottom:433.527000px;}
.yc8{bottom:433.828500px;}
.y11c{bottom:434.076000px;}
.y1f{bottom:434.596500px;}
.y40{bottom:437.812500px;}
.ya1{bottom:439.578000px;}
.y155{bottom:439.702500px;}
.y19c{bottom:441.211500px;}
.y1c3{bottom:446.779500px;}
.ye5{bottom:450.484500px;}
.y6b{bottom:451.461000px;}
.yc7{bottom:451.761000px;}
.y11b{bottom:452.010000px;}
.y1e{bottom:452.529000px;}
.y3f{bottom:455.746500px;}
.ya0{bottom:457.510500px;}
.y154{bottom:457.635000px;}
.y19b{bottom:459.144000px;}
.y1c2{bottom:461.724000px;}
.ye4{bottom:468.417000px;}
.y6a{bottom:469.393500px;}
.yc6{bottom:469.693500px;}
.y11a{bottom:469.942500px;}
.y1d{bottom:470.461500px;}
.y3e{bottom:473.679000px;}
.y9f{bottom:475.443000px;}
.y153{bottom:475.567500px;}
.y1c1{bottom:476.667000px;}
.y19a{bottom:477.076500px;}
.ye2{bottom:486.349500px;}
.y69{bottom:487.326000px;}
.yc5{bottom:487.626000px;}
.y119{bottom:487.875000px;}
.y1c{bottom:488.394000px;}
.y3d{bottom:491.611500px;}
.ye3{bottom:491.775000px;}
.y9e{bottom:493.375500px;}
.y152{bottom:493.500000px;}
.y199{bottom:495.009000px;}
.ye1{bottom:504.282000px;}
.y68{bottom:505.258500px;}
.yc4{bottom:505.558500px;}
.y118{bottom:505.807500px;}
.y1b{bottom:506.326500px;}
.y1c0{bottom:506.556000px;}
.y3c{bottom:509.544000px;}
.y9d{bottom:511.309500px;}
.y151{bottom:511.432500px;}
.y198{bottom:512.941500px;}
.y1bf{bottom:521.499000px;}
.ye0{bottom:522.216000px;}
.yc3{bottom:523.492500px;}
.y117{bottom:523.740000px;}
.y1a{bottom:524.260500px;}
.y3b{bottom:527.476500px;}
.y67{bottom:527.674500px;}
.y9c{bottom:529.242000px;}
.y150{bottom:529.365000px;}
.y197{bottom:530.874000px;}
.y7d{bottom:531.960000px;}
.y1be{bottom:536.443500px;}
.ydf{bottom:540.148500px;}
.yc2{bottom:541.425000px;}
.y116{bottom:541.672500px;}
.y19{bottom:542.193000px;}
.y3a{bottom:545.409000px;}
.y9b{bottom:547.174500px;}
.y14f{bottom:547.299000px;}
.y196{bottom:548.808000px;}
.y1bd{bottom:551.388000px;}
.yde{bottom:558.081000px;}
.yc1{bottom:559.357500px;}
.y115{bottom:559.606500px;}
.y18{bottom:560.125500px;}
.y39{bottom:563.343000px;}
.y9a{bottom:565.107000px;}
.y14e{bottom:565.231500px;}
.y1bc{bottom:566.331000px;}
.y195{bottom:566.740500px;}
.ydd{bottom:576.013500px;}
.yc0{bottom:577.290000px;}
.y17{bottom:578.058000px;}
.y38{bottom:581.275500px;}
.y114{bottom:582.022500px;}
.y99{bottom:583.039500px;}
.y14d{bottom:583.164000px;}
.y194{bottom:584.673000px;}
.ydc{bottom:593.946000px;}
.ybf{bottom:595.222500px;}
.y16{bottom:595.990500px;}
.y1bb{bottom:596.218500px;}
.y37{bottom:599.208000px;}
.y14c{bottom:601.096500px;}
.y193{bottom:602.605500px;}
.y98{bottom:605.455500px;}
.y1ba{bottom:611.163000px;}
.ydb{bottom:611.880000px;}
.y15{bottom:613.923000px;}
.y36{bottom:617.140500px;}
.y113{bottom:617.631000px;}
.y14b{bottom:619.029000px;}
.y192{bottom:620.538000px;}
.y1b9{bottom:626.107500px;}
.yda{bottom:629.812500px;}
.y14{bottom:631.857000px;}
.ybe{bottom:633.081000px;}
.y35{bottom:635.073000px;}
.y112{bottom:635.563500px;}
.y14a{bottom:636.961500px;}
.y191{bottom:638.470500px;}
.y97{bottom:640.935000px;}
.y1b8{bottom:641.050500px;}
.yd9{bottom:647.745000px;}
.y13{bottom:649.789500px;}
.ybd{bottom:651.013500px;}
.y34{bottom:653.005500px;}
.y111{bottom:653.496000px;}
.y149{bottom:654.895500px;}
.y1b7{bottom:655.995000px;}
.y190{bottom:656.404500px;}
.y96{bottom:658.867500px;}
.yd8{bottom:665.677500px;}
.y12{bottom:667.722000px;}
.ybc{bottom:668.946000px;}
.y33{bottom:670.939500px;}
.y110{bottom:671.428500px;}
.y148{bottom:672.828000px;}
.y18f{bottom:674.337000px;}
.y95{bottom:676.800000px;}
.yd6{bottom:683.610000px;}
.y11{bottom:685.654500px;}
.y1b6{bottom:685.882500px;}
.ybb{bottom:686.878500px;}
.y66{bottom:688.872000px;}
.yd7{bottom:689.035500px;}
.y10f{bottom:689.362500px;}
.y147{bottom:690.760500px;}
.y18e{bottom:692.269500px;}
.y32{bottom:693.355500px;}
.y94{bottom:694.734000px;}
.y1b5{bottom:700.827000px;}
.y10{bottom:703.587000px;}
.yba{bottom:704.812500px;}
.yd5{bottom:706.026000px;}
.y65{bottom:706.804500px;}
.y10e{bottom:707.295000px;}
.y146{bottom:708.693000px;}
.y93{bottom:712.666500px;}
.y18d{bottom:714.685500px;}
.y1b4{bottom:715.771500px;}
.yf{bottom:721.519500px;}
.yb9{bottom:722.745000px;}
.y64{bottom:724.737000px;}
.y10d{bottom:725.227500px;}
.y92{bottom:730.599000px;}
.y1b3{bottom:730.714500px;}
.y31{bottom:733.476000px;}
.ye{bottom:739.453500px;}
.yb8{bottom:740.677500px;}
.y63{bottom:742.669500px;}
.y10c{bottom:743.160000px;}
.y1b2{bottom:745.659000px;}
.y91{bottom:748.531500px;}
.y18c{bottom:749.466000px;}
.y30{bottom:749.913000px;}
.y145{bottom:751.432500px;}
.yd{bottom:757.386000px;}
.yb7{bottom:758.610000px;}
.y62{bottom:760.602000px;}
.y10b{bottom:761.092500px;}
.y2f{bottom:766.351500px;}
.y90{bottom:766.464000px;}
.y18b{bottom:767.398500px;}
.yc{bottom:775.318500px;}
.y1b1{bottom:775.546500px;}
.yb6{bottom:776.542500px;}
.y61{bottom:778.536000px;}
.y10a{bottom:779.026500px;}
.y2e{bottom:782.790000px;}
.y8f{bottom:784.396500px;}
.y18a{bottom:785.331000px;}
.y144{bottom:786.850500px;}
.y1b0{bottom:790.491000px;}
.yb{bottom:793.251000px;}
.yb5{bottom:794.475000px;}
.y60{bottom:796.468500px;}
.y109{bottom:796.959000px;}
.y2d{bottom:799.228500px;}
.y8e{bottom:802.330500px;}
.y1af{bottom:805.434000px;}
.y139{bottom:807.324000px;}
.yb4{bottom:812.409000px;}
.y5f{bottom:814.401000px;}
.y108{bottom:814.891500px;}
.ya{bottom:815.667000px;}
.y1a5{bottom:818.884500px;}
.y8d{bottom:820.263000px;}
.y1ae{bottom:824.862000px;}
.y189{bottom:829.705500px;}
.yb3{bottom:830.341500px;}
.y5e{bottom:832.333500px;}
.y8c{bottom:838.195500px;}
.y9{bottom:846.936000px;}
.yb2{bottom:848.274000px;}
.y5d{bottom:850.266000px;}
.y8b{bottom:856.128000px;}
.y107{bottom:862.582500px;}
.y17f{bottom:865.123500px;}
.y8{bottom:866.362500px;}
.y5c{bottom:868.198500px;}
.y8a{bottom:878.544000px;}
.y17e{bottom:881.562000px;}
.y7{bottom:885.790500px;}
.y5b{bottom:886.132500px;}
.yfd{bottom:898.000500px;}
.y1ad{bottom:899.581500px;}
.y5a{bottom:904.065000px;}
.y6{bottom:905.217000px;}
.y138{bottom:913.287000px;}
.yfc{bottom:914.439000px;}
.y1ac{bottom:917.514000px;}
.y59{bottom:921.997500px;}
.y89{bottom:925.717500px;}
.y1d9{bottom:927.975000px;}
.y12c{bottom:933.759000px;}
.yf5{bottom:934.911000px;}
.y1ab{bottom:935.446500px;}
.y58{bottom:939.930000px;}
.y5{bottom:941.706000px;}
.y1d8{bottom:942.919500px;}
.y1aa{bottom:953.380500px;}
.y7e{bottom:956.203500px;}
.y57{bottom:957.862500px;}
.y4{bottom:961.132500px;}
.y1a9{bottom:971.313000px;}
.y1d7{bottom:972.807000px;}
.y56{bottom:975.795000px;}
.y3{bottom:980.560500px;}
.y1d6{bottom:987.751500px;}
.y1a8{bottom:989.245500px;}
.y55{bottom:993.729000px;}
.y2{bottom:999.987000px;}
.y1d5{bottom:1002.694500px;}
.y1a7{bottom:1007.178000px;}
.y54{bottom:1011.661500px;}
.y1d4{bottom:1017.639000px;}
.y1a6{bottom:1025.110500px;}
.y53{bottom:1029.594000px;}
.y1d3{bottom:1032.583500px;}
.y1{bottom:1040.976000px;}
.y52{bottom:1047.526500px;}
.y51{bottom:1087.875000px;}
.h22{height:16.833987px;}
.h1d{height:17.787557px;}
.h11{height:22.290110px;}
.he{height:25.392845px;}
.h1e{height:26.540366px;}
.h24{height:28.558690px;}
.h1f{height:28.712620px;}
.h18{height:29.198886px;}
.h21{height:29.293481px;}
.h1a{height:30.509044px;}
.h6{height:30.724658px;}
.h13{height:30.894430px;}
.h15{height:30.913250px;}
.h1c{height:30.952826px;}
.h17{height:32.498598px;}
.hb{height:33.713523px;}
.h8{height:33.856985px;}
.h16{height:34.402562px;}
.hd{height:37.598852px;}
.ha{height:38.089267px;}
.h9{height:38.734848px;}
.h10{height:41.776443px;}
.h5{height:42.321125px;}
.h7{height:43.038432px;}
.h3{height:46.341857px;}
.h4{height:51.646464px;}
.hc{height:52.590430px;}
.h12{height:55.632553px;}
.h2{height:60.942658px;}
.h1{height:86.534550px;}
.h1b{height:99.536725px;}
.hf{height:106.268046px;}
.h20{height:127.558047px;}
.h14{height:127.559384px;}
.h23{height:127.560388px;}
.h19{height:128.712548px;}
.h0{height:1188.000000px;}
.w3{width:131.602004px;}
.w2{width:138.678216px;}
.w7{width:157.339481px;}
.w6{width:161.007412px;}
.w1{width:360.370614px;}
.w4{width:756.603735px;}
.w5{width:756.620217px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4a{left:9.772161px;}
.x4e{left:16.577865px;}
.x61{left:17.670008px;}
.x48{left:18.851334px;}
.x4d{left:24.147273px;}
.x52{left:25.326553px;}
.x51{left:31.443781px;}
.x47{left:34.842801px;}
.x4c{left:37.027382px;}
.x33{left:45.527493px;}
.x7c{left:52.524529px;}
.x54{left:56.528889px;}
.x49{left:60.140989px;}
.x53{left:63.135532px;}
.x62{left:65.011971px;}
.x7f{left:79.621500px;}
.x13{left:80.697000px;}
.x7a{left:83.187261px;}
.x1e{left:84.697500px;}
.x80{left:86.256000px;}
.x1{left:87.540000px;}
.x79{left:91.465500px;}
.x19{left:95.641500px;}
.x81{left:105.732000px;}
.x4{left:106.960500px;}
.x72{left:116.685000px;}
.x1f{left:122.058000px;}
.x73{left:126.289500px;}
.x63{left:128.927784px;}
.x3{left:129.934500px;}
.x20{left:133.000500px;}
.x37{left:135.129000px;}
.xf{left:138.493500px;}
.x2{left:140.395500px;}
.x74{left:143.653500px;}
.x6f{left:144.657000px;}
.xe{left:149.434500px;}
.x6d{left:152.572500px;}
.x38{left:153.690000px;}
.x16{left:161.692500px;}
.x55{left:162.724594px;}
.x39{left:163.804500px;}
.x56{left:175.493212px;}
.x64{left:177.065148px;}
.x5{left:181.831500px;}
.x35{left:218.045776px;}
.x23{left:223.734000px;}
.x24{left:230.683500px;}
.x82{left:231.870000px;}
.x65{left:235.411262px;}
.x83{left:237.484500px;}
.x57{left:238.532725px;}
.x7d{left:240.958500px;}
.x3a{left:243.171000px;}
.x3b{left:248.991000px;}
.x1a{left:257.037000px;}
.x34{left:266.009816px;}
.x7b{left:268.134000px;}
.x58{left:269.829215px;}
.x1c{left:271.492500px;}
.x66{left:274.886228px;}
.x1d{left:278.440500px;}
.x36{left:281.682635px;}
.x70{left:286.794000px;}
.x1b{left:297.897000px;}
.x3c{left:309.295500px;}
.x3d{left:323.193000px;}
.x6e{left:328.329000px;}
.x14{left:333.540000px;}
.x71{left:339.121500px;}
.x59{left:342.078129px;}
.x42{left:345.306000px;}
.x15{left:347.803500px;}
.x8{left:353.184000px;}
.x43{left:354.873000px;}
.x10{left:357.687000px;}
.x27{left:370.087500px;}
.x11{left:376.707000px;}
.x3e{left:379.581000px;}
.x25{left:385.731000px;}
.x67{left:388.901899px;}
.x26{left:392.679000px;}
.x44{left:393.888000px;}
.x7{left:399.150000px;}
.x6{left:401.781000px;}
.x45{left:403.453500px;}
.x21{left:421.902000px;}
.x9{left:428.056500px;}
.x22{left:435.801000px;}
.x5a{left:445.622601px;}
.x68{left:463.367887px;}
.x5b{left:473.358943px;}
.x17{left:476.434500px;}
.x5c{left:483.867859px;}
.x75{left:486.490500px;}
.x46{left:487.701000px;}
.x69{left:490.374635px;}
.x18{left:491.877000px;}
.x84{left:502.540500px;}
.x76{left:504.124500px;}
.x31{left:518.605500px;}
.x28{left:522.120000px;}
.x29{left:529.069500px;}
.x32{left:532.504500px;}
.x4f{left:542.199000px;}
.x5d{left:549.167073px;}
.x6a{left:568.533894px;}
.x2f{left:574.714500px;}
.x5e{left:576.903415px;}
.x3f{left:586.203000px;}
.x30{left:588.612000px;}
.x40{left:593.151000px;}
.x6b{left:596.012586px;}
.xc{left:599.409000px;}
.x41{left:621.013500px;}
.xb{left:627.513000px;}
.x7e{left:630.906000px;}
.x12{left:637.879500px;}
.xa{left:652.728000px;}
.x4b{left:664.369500px;}
.x77{left:666.921000px;}
.xd{left:674.280000px;}
.x5f{left:680.448819px;}
.x60{left:686.084089px;}
.x6c{left:696.729644px;}
.x78{left:699.738000px;}
.x2c{left:765.691500px;}
.x2d{left:772.639500px;}
.x50{left:782.355000px;}
.x2e{left:807.414000px;}
.x2a{left:818.191500px;}
.x2b{left:832.089000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.975648pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.818667pt;}
.v6{vertical-align:7.968000pt;}
.v3{vertical-align:13.294331pt;}
.v1{vertical-align:19.285333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000313pt;}
.ls1f{letter-spacing:0.000630pt;}
.lsc{letter-spacing:0.000774pt;}
.ls1e{letter-spacing:0.001358pt;}
.lse{letter-spacing:0.001498pt;}
.lsf{letter-spacing:0.001513pt;}
.ls10{letter-spacing:0.001520pt;}
.ls17{letter-spacing:0.189668pt;}
.ls15{letter-spacing:0.745309pt;}
.ls20{letter-spacing:0.850085pt;}
.ls21{letter-spacing:0.902549pt;}
.ls19{letter-spacing:0.916907pt;}
.ls16{letter-spacing:0.922240pt;}
.ls18{letter-spacing:0.923701pt;}
.ls13{letter-spacing:1.275745pt;}
.ls14{letter-spacing:1.279986pt;}
.ls9{letter-spacing:2.652885pt;}
.ls8{letter-spacing:2.657037pt;}
.lsb{letter-spacing:2.658219pt;}
.ls1b{letter-spacing:7.512027pt;}
.ls3{letter-spacing:10.045441pt;}
.ls4{letter-spacing:10.050884pt;}
.ls5{letter-spacing:10.628163pt;}
.ls2{letter-spacing:13.282988pt;}
.ls7{letter-spacing:13.284194pt;}
.ls12{letter-spacing:13.286549pt;}
.lsa{letter-spacing:14.538000pt;}
.ls0{letter-spacing:15.608836pt;}
.ls1{letter-spacing:15.612041pt;}
.ls1a{letter-spacing:28.014624pt;}
.ls1d{letter-spacing:51.250693pt;}
.ls11{letter-spacing:61.742032pt;}
.lsd{letter-spacing:88.897833pt;}
.wsd9{word-spacing:-54.409079pt;}
.ws9f{word-spacing:-23.896499pt;}
.wscb{word-spacing:-22.615435pt;}
.ws2{word-spacing:-14.545467pt;}
.ws81{word-spacing:-13.283467pt;}
.ws47{word-spacing:-10.626800pt;}
.ws79{word-spacing:-3.772505pt;}
.wse3{word-spacing:-3.666237pt;}
.ws33{word-spacing:-3.559969pt;}
.wsc6{word-spacing:-3.347434pt;}
.ws3f{word-spacing:-3.294300pt;}
.ws91{word-spacing:-3.028630pt;}
.wsfb{word-spacing:-2.890490pt;}
.ws86{word-spacing:-2.869229pt;}
.wsdd{word-spacing:-2.816095pt;}
.ws96{word-spacing:-2.762961pt;}
.ws8{word-spacing:-2.709827pt;}
.ws4a{word-spacing:-2.603559pt;}
.wsc2{word-spacing:-2.550426pt;}
.wsed{word-spacing:-2.507925pt;}
.ws26{word-spacing:-2.497292pt;}
.ws7b{word-spacing:-2.444158pt;}
.wsb9{word-spacing:-2.284756pt;}
.ws55{word-spacing:-2.019087pt;}
.ws101{word-spacing:-1.997838pt;}
.ws5f{word-spacing:-1.965953pt;}
.ws78{word-spacing:-1.912819pt;}
.wsad{word-spacing:-1.859685pt;}
.ws35{word-spacing:-1.806551pt;}
.ws93{word-spacing:-1.700284pt;}
.wsf0{word-spacing:-1.657781pt;}
.wsd{word-spacing:-1.647150pt;}
.ws7{word-spacing:-1.594016pt;}
.ws53{word-spacing:-1.540882pt;}
.ws4c{word-spacing:-1.487748pt;}
.ws6b{word-spacing:-1.434614pt;}
.ws4d{word-spacing:-1.381481pt;}
.ws61{word-spacing:-1.328347pt;}
.ws60{word-spacing:-1.275213pt;}
.ws29{word-spacing:-1.222079pt;}
.ws56{word-spacing:-1.168945pt;}
.wsfa{word-spacing:-1.147694pt;}
.ws80{word-spacing:-1.115811pt;}
.wsf2{word-spacing:-1.062680pt;}
.wsae{word-spacing:-1.062677pt;}
.ws24{word-spacing:-0.956410pt;}
.ws64{word-spacing:-0.903276pt;}
.ws7f{word-spacing:-0.850142pt;}
.wsd8{word-spacing:-0.797008pt;}
.ws75{word-spacing:-0.743874pt;}
.wsde{word-spacing:-0.690740pt;}
.ws38{word-spacing:-0.637606pt;}
.ws34{word-spacing:-0.584473pt;}
.ws3{word-spacing:-0.531339pt;}
.wse{word-spacing:-0.478205pt;}
.ws58{word-spacing:-0.442680pt;}
.ws59{word-spacing:-0.425071pt;}
.wsd7{word-spacing:-0.371937pt;}
.ws20{word-spacing:-0.334746pt;}
.ws54{word-spacing:-0.318803pt;}
.ws102{word-spacing:-0.297550pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsee{word-spacing:-0.255043pt;}
.ws36{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.170029pt;}
.ws6c{word-spacing:-0.164996pt;}
.wsf{word-spacing:-0.159402pt;}
.wsf5{word-spacing:-0.127522pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.wse5{word-spacing:-0.085014pt;}
.ws18{word-spacing:-0.063761pt;}
.ws14{word-spacing:-0.053134pt;}
.ws5a{word-spacing:-0.052748pt;}
.wsb2{word-spacing:-0.038788pt;}
.ws9e{word-spacing:-0.036685pt;}
.ws88{word-spacing:-0.036638pt;}
.ws98{word-spacing:-0.036159pt;}
.wsc9{word-spacing:-0.034718pt;}
.ws8c{word-spacing:-0.034606pt;}
.wsd3{word-spacing:-0.033847pt;}
.wsb6{word-spacing:-0.029224pt;}
.wsa1{word-spacing:-0.026802pt;}
.ws6e{word-spacing:-0.018998pt;}
.ws1{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.006766pt;}
.ws109{word-spacing:0.042507pt;}
.ws31{word-spacing:0.053134pt;}
.ws5{word-spacing:0.106268pt;}
.wsf3{word-spacing:0.127522pt;}
.ws1c{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws4{word-spacing:0.212535pt;}
.ws9{word-spacing:0.265669pt;}
.ws12{word-spacing:0.318803pt;}
.ws69{word-spacing:0.371937pt;}
.wsc{word-spacing:0.425071pt;}
.ws63{word-spacing:0.478205pt;}
.ws3c{word-spacing:0.531339pt;}
.wsbf{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.637606pt;}
.ws76{word-spacing:0.690740pt;}
.wsa{word-spacing:0.743874pt;}
.ws22{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.wsf6{word-spacing:0.892651pt;}
.wsbb{word-spacing:0.898910pt;}
.wsbd{word-spacing:0.903276pt;}
.wse4{word-spacing:0.956410pt;}
.ws83{word-spacing:1.009543pt;}
.wse2{word-spacing:1.062677pt;}
.ws6a{word-spacing:1.115811pt;}
.wsb{word-spacing:1.168945pt;}
.ws51{word-spacing:1.222079pt;}
.ws57{word-spacing:1.275213pt;}
.wse7{word-spacing:1.317723pt;}
.ws48{word-spacing:1.328347pt;}
.ws2c{word-spacing:1.381481pt;}
.ws2e{word-spacing:1.434614pt;}
.ws106{word-spacing:1.445245pt;}
.ws28{word-spacing:1.487748pt;}
.wsc1{word-spacing:1.594016pt;}
.ws32{word-spacing:1.647150pt;}
.ws66{word-spacing:1.700284pt;}
.ws6{word-spacing:1.753418pt;}
.ws42{word-spacing:1.806551pt;}
.ws43{word-spacing:1.859685pt;}
.wsfc{word-spacing:1.912824pt;}
.ws37{word-spacing:1.965953pt;}
.ws4e{word-spacing:2.019087pt;}
.ws8f{word-spacing:2.125355pt;}
.ws95{word-spacing:2.178489pt;}
.wsdb{word-spacing:2.231622pt;}
.ws30{word-spacing:2.284756pt;}
.ws7d{word-spacing:2.337890pt;}
.wsc0{word-spacing:2.391024pt;}
.ws45{word-spacing:2.444158pt;}
.ws104{word-spacing:2.465418pt;}
.ws44{word-spacing:2.497292pt;}
.ws7c{word-spacing:2.550426pt;}
.wsea{word-spacing:2.550432pt;}
.ws10a{word-spacing:2.592939pt;}
.ws5d{word-spacing:2.603559pt;}
.ws82{word-spacing:2.656693pt;}
.ws49{word-spacing:2.762961pt;}
.wsdc{word-spacing:2.816095pt;}
.wsff{word-spacing:2.890490pt;}
.wsfd{word-spacing:2.901816pt;}
.ws10{word-spacing:2.922363pt;}
.wsaf{word-spacing:2.975497pt;}
.ws72{word-spacing:3.028630pt;}
.wsf7{word-spacing:3.113513pt;}
.wsdf{word-spacing:3.134898pt;}
.wse0{word-spacing:3.188032pt;}
.ws11{word-spacing:3.294300pt;}
.ws74{word-spacing:3.347434pt;}
.wsb1{word-spacing:3.559969pt;}
.wscd{word-spacing:3.718309pt;}
.ws65{word-spacing:3.772505pt;}
.ws4f{word-spacing:3.825638pt;}
.ws105{word-spacing:3.825648pt;}
.wse6{word-spacing:3.868155pt;}
.ws4b{word-spacing:3.931906pt;}
.ws68{word-spacing:3.985040pt;}
.ws23{word-spacing:4.038174pt;}
.ws94{word-spacing:4.303843pt;}
.ws40{word-spacing:4.356977pt;}
.ws85{word-spacing:4.410111pt;}
.ws5e{word-spacing:4.463245pt;}
.ws41{word-spacing:4.516379pt;}
.ws70{word-spacing:4.569513pt;}
.wsb3{word-spacing:4.675780pt;}
.ws7e{word-spacing:4.728914pt;}
.ws62{word-spacing:4.782048pt;}
.ws3b{word-spacing:4.835182pt;}
.ws3e{word-spacing:4.941450pt;}
.ws3d{word-spacing:4.994583pt;}
.wsc8{word-spacing:5.047717pt;}
.wse1{word-spacing:5.100851pt;}
.ws39{word-spacing:5.153985pt;}
.ws7a{word-spacing:5.207119pt;}
.ws52{word-spacing:5.419654pt;}
.ws2d{word-spacing:5.525922pt;}
.ws2f{word-spacing:5.685324pt;}
.wsb7{word-spacing:5.738458pt;}
.ws84{word-spacing:5.791591pt;}
.ws2a{word-spacing:5.950993pt;}
.ws50{word-spacing:6.376064pt;}
.wsec{word-spacing:7.056195pt;}
.wsda{word-spacing:8.399279pt;}
.ws100{word-spacing:8.628962pt;}
.wsac{word-spacing:8.820222pt;}
.wsb5{word-spacing:9.088456pt;}
.wsf1{word-spacing:9.521613pt;}
.ws17{word-spacing:9.989167pt;}
.wsef{word-spacing:10.414264pt;}
.wsf4{word-spacing:10.499278pt;}
.ws1a{word-spacing:10.584293pt;}
.ws73{word-spacing:10.626773pt;}
.ws10b{word-spacing:10.626800pt;}
.ws103{word-spacing:10.796829pt;}
.ws5c{word-spacing:10.879255pt;}
.wsd2{word-spacing:11.237315pt;}
.wsf9{word-spacing:11.353248pt;}
.ws8d{word-spacing:11.489221pt;}
.ws1f{word-spacing:11.572634pt;}
.wsd6{word-spacing:11.583183pt;}
.ws108{word-spacing:11.608745pt;}
.ws1b{word-spacing:11.907379pt;}
.ws1e{word-spacing:11.955200pt;}
.ws99{word-spacing:12.004744pt;}
.ws107{word-spacing:12.029538pt;}
.wsd0{word-spacing:12.050842pt;}
.ws8a{word-spacing:12.163792pt;}
.ws89{word-spacing:12.200429pt;}
.wsc7{word-spacing:13.033909pt;}
.wseb{word-spacing:13.134725pt;}
.ws16{word-spacing:13.230333pt;}
.ws77{word-spacing:13.336601pt;}
.wsfe{word-spacing:13.474782pt;}
.wsf8{word-spacing:13.687318pt;}
.wsc5{word-spacing:14.366774pt;}
.wsb0{word-spacing:14.477699pt;}
.ws71{word-spacing:14.779845pt;}
.wse9{word-spacing:14.877520pt;}
.wsbe{word-spacing:15.273010pt;}
.wse8{word-spacing:15.302592pt;}
.ws15{word-spacing:15.568223pt;}
.ws13{word-spacing:15.876506pt;}
.ws6d{word-spacing:16.091240pt;}
.wsba{word-spacing:16.116775pt;}
.ws6f{word-spacing:16.216744pt;}
.wsc4{word-spacing:16.254002pt;}
.wsb8{word-spacing:16.400733pt;}
.ws92{word-spacing:16.622603pt;}
.wsbc{word-spacing:17.062309pt;}
.ws67{word-spacing:18.178735pt;}
.wsa7{word-spacing:18.258315pt;}
.wsa6{word-spacing:18.261678pt;}
.ws90{word-spacing:18.308309pt;}
.ws5b{word-spacing:18.672804pt;}
.wsd5{word-spacing:19.893453pt;}
.wsa0{word-spacing:25.378820pt;}
.wsa2{word-spacing:25.382183pt;}
.ws8e{word-spacing:26.014515pt;}
.ws9a{word-spacing:26.020757pt;}
.ws0{word-spacing:27.439800pt;}
.ws9d{word-spacing:28.041147pt;}
.ws97{word-spacing:31.370457pt;}
.wsa8{word-spacing:32.523200pt;}
.wsa5{word-spacing:32.526563pt;}
.wscf{word-spacing:32.852890pt;}
.wsb4{word-spacing:34.308613pt;}
.wsce{word-spacing:36.391629pt;}
.ws87{word-spacing:38.351065pt;}
.wsd4{word-spacing:39.452160pt;}
.ws8b{word-spacing:41.604096pt;}
.wsd1{word-spacing:55.572393pt;}
.wsaa{word-spacing:62.530740pt;}
.ws21{word-spacing:63.697306pt;}
.wsca{word-spacing:64.716296pt;}
.ws9c{word-spacing:70.861948pt;}
.ws9b{word-spacing:74.197887pt;}
.wsa9{word-spacing:75.970231pt;}
.wscc{word-spacing:78.220103pt;}
.wsab{word-spacing:85.969270pt;}
.wsa3{word-spacing:92.032350pt;}
.wsa4{word-spacing:115.469367pt;}
._2{margin-left:-8.816000pt;}
._b{margin-left:-4.654558pt;}
._3{margin-left:-3.665458pt;}
._6{margin-left:-2.581771pt;}
._0{margin-left:-1.653000pt;}
._1{width:1.542800pt;}
._10{width:2.497292pt;}
._4{width:3.398650pt;}
._8{width:8.288883pt;}
._5{width:9.634780pt;}
._20{width:11.349422pt;}
._c{width:12.645860pt;}
._9{width:14.346144pt;}
._11{width:15.674491pt;}
._f{width:18.390490pt;}
._e{width:20.136956pt;}
._1d{width:21.869990pt;}
._21{width:24.770530pt;}
._1f{width:25.968091pt;}
._1e{width:30.260346pt;}
._16{width:35.097544pt;}
._19{width:37.114620pt;}
._1a{width:40.230937pt;}
._12{width:47.545898pt;}
._13{width:49.491187pt;}
._15{width:53.176978pt;}
._a{width:63.761067pt;}
._14{width:76.195484pt;}
._1b{width:78.253776pt;}
._18{width:79.942050pt;}
._1c{width:80.990553pt;}
._17{width:92.315302pt;}
._7{width:234.299686pt;}
._d{width:1076.568471pt;}
.fsf{font-size:24.224192pt;}
.fs15{font-size:24.302670pt;}
.fsd{font-size:25.646475pt;}
.fs12{font-size:26.801640pt;}
.fs13{font-size:29.224000pt;}
.fs8{font-size:31.880533pt;}
.fsa{font-size:32.967439pt;}
.fs16{font-size:33.847336pt;}
.fse{font-size:34.606087pt;}
.fs14{font-size:34.718200pt;}
.fs10{font-size:36.158866pt;}
.fsc{font-size:36.637926pt;}
.fs11{font-size:36.684831pt;}
.fs7{font-size:38.787733pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs9{font-size:52.748035pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fsb{font-size:65.934878pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:3.053283pt;}
.y17c{bottom:4.194892pt;}
.y141{bottom:4.550673pt;}
.y185{bottom:4.935631pt;}
.y105{bottom:5.046272pt;}
.y134{bottom:5.272636pt;}
.y143{bottom:5.314863pt;}
.y87{bottom:7.549757pt;}
.y88{bottom:9.995197pt;}
.y175{bottom:14.614604pt;}
.yf6{bottom:14.975889pt;}
.y13a{bottom:15.544420pt;}
.y180{bottom:17.091671pt;}
.yfe{bottom:17.474813pt;}
.y12d{bottom:18.243338pt;}
.yf7{bottom:20.386480pt;}
.y176{bottom:20.477869pt;}
.y13b{bottom:21.774798pt;}
.y181{bottom:22.807864pt;}
.y12e{bottom:24.384389pt;}
.yff{bottom:24.786741pt;}
.y86{bottom:28.537851pt;}
.y82{bottom:30.975018pt;}
.y13c{bottom:33.301544pt;}
.y186{bottom:33.991387pt;}
.y12f{bottom:35.745872pt;}
.y177{bottom:37.361984pt;}
.y100{bottom:40.814800pt;}
.yfb{bottom:41.650974pt;}
.y7f{bottom:42.651248pt;}
.y85{bottom:42.725703pt;}
.y142{bottom:44.745062pt;}
.y13d{bottom:44.828291pt;}
.y81{bottom:45.169488pt;}
.y135{bottom:47.025320pt;}
.y130{bottom:47.107355pt;}
.y182{bottom:50.243041pt;}
.yf8{bottom:52.454687pt;}
.y178{bottom:54.246098pt;}
.y17d{bottom:56.202843pt;}
.y13e{bottom:56.355037pt;}
.y101{bottom:56.842859pt;}
.y131{bottom:58.468838pt;}
.y80{bottom:59.363958pt;}
.y106{bottom:60.395483pt;}
.y13f{bottom:67.881783pt;}
.y132{bottom:69.829493pt;}
.y179{bottom:71.130213pt;}
.y102{bottom:72.870918pt;}
.y183{bottom:77.678219pt;}
.y83{bottom:77.899994pt;}
.y140{bottom:79.407689pt;}
.y84{bottom:80.345434pt;}
.y133{bottom:81.190976pt;}
.yf9{bottom:84.521974pt;}
.y188{bottom:85.409943pt;}
.y17a{bottom:88.014327pt;}
.y103{bottom:88.898976pt;}
.y136{bottom:92.285637pt;}
.y187{bottom:95.940308pt;}
.y137{bottom:104.164191pt;}
.y17b{bottom:104.899313pt;}
.y104{bottom:104.927035pt;}
.y184{bottom:105.113396pt;}
.y2c{bottom:118.184000pt;}
.y174{bottom:119.862667pt;}
.y7c{bottom:122.041333pt;}
.y2b{bottom:131.466667pt;}
.y50{bottom:134.124000pt;}
.yb1{bottom:135.324000pt;}
.y173{bottom:135.802667pt;}
.y12b{bottom:142.985333pt;}
.y2a{bottom:144.750667pt;}
.y7b{bottom:146.254667pt;}
.y4f{bottom:150.064000pt;}
.y172{bottom:151.742667pt;}
.y1d2{bottom:158.034667pt;}
.yb0{bottom:158.617333pt;}
.y12a{bottom:158.925333pt;}
.y29{bottom:159.362667pt;}
.yf4{bottom:161.326667pt;}
.y7a{bottom:162.194667pt;}
.y4e{bottom:166.004000pt;}
.y171{bottom:167.682667pt;}
.yd4{bottom:169.989333pt;}
.y1d1{bottom:171.317333pt;}
.y28{bottom:173.974667pt;}
.yaf{bottom:174.557333pt;}
.y129{bottom:174.865333pt;}
.yf3{bottom:177.268000pt;}
.y79{bottom:178.134667pt;}
.y4d{bottom:181.944000pt;}
.y170{bottom:183.622667pt;}
.y1d0{bottom:184.601333pt;}
.y27{bottom:187.257333pt;}
.yae{bottom:190.497333pt;}
.y128{bottom:190.806667pt;}
.yf2{bottom:193.208000pt;}
.y78{bottom:194.074667pt;}
.y4c{bottom:197.884000pt;}
.y16f{bottom:199.564000pt;}
.y163{bottom:206.102667pt;}
.yad{bottom:206.438667pt;}
.y127{bottom:206.746667pt;}
.yf1{bottom:209.148000pt;}
.y77{bottom:210.016000pt;}
.yd3{bottom:210.282667pt;}
.y1cf{bottom:211.168000pt;}
.y4b{bottom:213.825333pt;}
.y16e{bottom:215.504000pt;}
.y162{bottom:222.042667pt;}
.yac{bottom:222.378667pt;}
.y126{bottom:222.686667pt;}
.y1ce{bottom:224.452000pt;}
.yf0{bottom:225.088000pt;}
.y76{bottom:225.956000pt;}
.yd2{bottom:226.222667pt;}
.y4a{bottom:229.765333pt;}
.y16d{bottom:231.444000pt;}
.y161{bottom:233.992000pt;}
.y26{bottom:237.062667pt;}
.y1cd{bottom:237.734667pt;}
.yab{bottom:238.318667pt;}
.y15f{bottom:238.574667pt;}
.y125{bottom:238.626667pt;}
.yef{bottom:241.028000pt;}
.y75{bottom:241.896000pt;}
.yd1{bottom:242.162667pt;}
.y160{bottom:244.598667pt;}
.y49{bottom:245.705333pt;}
.y16c{bottom:247.384000pt;}
.y1a4{bottom:249.690667pt;}
.y1cc{bottom:251.018667pt;}
.yaa{bottom:254.258667pt;}
.y15e{bottom:254.514667pt;}
.y124{bottom:254.566667pt;}
.yee{bottom:256.968000pt;}
.y25{bottom:256.988000pt;}
.y74{bottom:257.836000pt;}
.yd0{bottom:258.102667pt;}
.y48{bottom:261.645333pt;}
.y16b{bottom:263.324000pt;}
.y1cb{bottom:264.302667pt;}
.y15d{bottom:270.454667pt;}
.y123{bottom:270.506667pt;}
.yed{bottom:272.909333pt;}
.y73{bottom:273.776000pt;}
.ycf{bottom:274.044000pt;}
.y47{bottom:277.585333pt;}
.ya9{bottom:279.154667pt;}
.y16a{bottom:279.264000pt;}
.y1a3{bottom:280.605333pt;}
.y15c{bottom:282.404000pt;}
.y122{bottom:286.448000pt;}
.y15a{bottom:286.986667pt;}
.y24{bottom:287.774667pt;}
.yec{bottom:288.849333pt;}
.y72{bottom:289.716000pt;}
.yce{bottom:289.984000pt;}
.y1ca{bottom:290.869333pt;}
.y15b{bottom:293.010667pt;}
.y46{bottom:293.525333pt;}
.ya8{bottom:295.094667pt;}
.y169{bottom:295.205333pt;}
.y1a2{bottom:296.546667pt;}
.y120{bottom:302.388000pt;}
.y159{bottom:302.926667pt;}
.y23{bottom:303.714667pt;}
.y1c9{bottom:304.153333pt;}
.yeb{bottom:304.789333pt;}
.y71{bottom:305.657333pt;}
.ycd{bottom:305.924000pt;}
.y121{bottom:307.209333pt;}
.y45{bottom:309.466667pt;}
.ya7{bottom:311.034667pt;}
.y168{bottom:311.145333pt;}
.y1a1{bottom:312.486667pt;}
.y1c8{bottom:317.436000pt;}
.y11f{bottom:318.328000pt;}
.y158{bottom:318.866667pt;}
.y22{bottom:319.654667pt;}
.yea{bottom:320.729333pt;}
.y70{bottom:321.597333pt;}
.ycc{bottom:321.864000pt;}
.y44{bottom:325.406667pt;}
.ya6{bottom:326.974667pt;}
.y167{bottom:327.085333pt;}
.y1a0{bottom:328.426667pt;}
.y1c7{bottom:330.720000pt;}
.y157{bottom:334.806667pt;}
.y21{bottom:335.594667pt;}
.ye9{bottom:336.669333pt;}
.y6f{bottom:337.537333pt;}
.ycb{bottom:337.804000pt;}
.y11e{bottom:338.253333pt;}
.y43{bottom:341.346667pt;}
.ya5{bottom:342.914667pt;}
.y166{bottom:343.025333pt;}
.y1c6{bottom:344.002667pt;}
.y19f{bottom:344.366667pt;}
.ye8{bottom:352.609333pt;}
.y6e{bottom:353.477333pt;}
.yca{bottom:353.744000pt;}
.y156{bottom:354.732000pt;}
.y20{bottom:355.520000pt;}
.y42{bottom:357.286667pt;}
.ya3{bottom:358.854667pt;}
.y165{bottom:358.965333pt;}
.y19e{bottom:360.306667pt;}
.ya4{bottom:363.677333pt;}
.ye7{bottom:368.550667pt;}
.y6d{bottom:369.417333pt;}
.yc9{bottom:369.685333pt;}
.y11d{bottom:369.905333pt;}
.y1c5{bottom:370.570667pt;}
.y41{bottom:373.226667pt;}
.ya2{bottom:374.796000pt;}
.y164{bottom:374.905333pt;}
.y19d{bottom:376.246667pt;}
.y1c4{bottom:383.853333pt;}
.ye6{bottom:384.490667pt;}
.y6c{bottom:385.357333pt;}
.yc8{bottom:385.625333pt;}
.y11c{bottom:385.845333pt;}
.y1f{bottom:386.308000pt;}
.y40{bottom:389.166667pt;}
.ya1{bottom:390.736000pt;}
.y155{bottom:390.846667pt;}
.y19c{bottom:392.188000pt;}
.y1c3{bottom:397.137333pt;}
.ye5{bottom:400.430667pt;}
.y6b{bottom:401.298667pt;}
.yc7{bottom:401.565333pt;}
.y11b{bottom:401.786667pt;}
.y1e{bottom:402.248000pt;}
.y3f{bottom:405.108000pt;}
.ya0{bottom:406.676000pt;}
.y154{bottom:406.786667pt;}
.y19b{bottom:408.128000pt;}
.y1c2{bottom:410.421333pt;}
.ye4{bottom:416.370667pt;}
.y6a{bottom:417.238667pt;}
.yc6{bottom:417.505333pt;}
.y11a{bottom:417.726667pt;}
.y1d{bottom:418.188000pt;}
.y3e{bottom:421.048000pt;}
.y9f{bottom:422.616000pt;}
.y153{bottom:422.726667pt;}
.y1c1{bottom:423.704000pt;}
.y19a{bottom:424.068000pt;}
.ye2{bottom:432.310667pt;}
.y69{bottom:433.178667pt;}
.yc5{bottom:433.445333pt;}
.y119{bottom:433.666667pt;}
.y1c{bottom:434.128000pt;}
.y3d{bottom:436.988000pt;}
.ye3{bottom:437.133333pt;}
.y9e{bottom:438.556000pt;}
.y152{bottom:438.666667pt;}
.y199{bottom:440.008000pt;}
.ye1{bottom:448.250667pt;}
.y68{bottom:449.118667pt;}
.yc4{bottom:449.385333pt;}
.y118{bottom:449.606667pt;}
.y1b{bottom:450.068000pt;}
.y1c0{bottom:450.272000pt;}
.y3c{bottom:452.928000pt;}
.y9d{bottom:454.497333pt;}
.y151{bottom:454.606667pt;}
.y198{bottom:455.948000pt;}
.y1bf{bottom:463.554667pt;}
.ye0{bottom:464.192000pt;}
.yc3{bottom:465.326667pt;}
.y117{bottom:465.546667pt;}
.y1a{bottom:466.009333pt;}
.y3b{bottom:468.868000pt;}
.y67{bottom:469.044000pt;}
.y9c{bottom:470.437333pt;}
.y150{bottom:470.546667pt;}
.y197{bottom:471.888000pt;}
.y7d{bottom:472.853333pt;}
.y1be{bottom:476.838667pt;}
.ydf{bottom:480.132000pt;}
.yc2{bottom:481.266667pt;}
.y116{bottom:481.486667pt;}
.y19{bottom:481.949333pt;}
.y3a{bottom:484.808000pt;}
.y9b{bottom:486.377333pt;}
.y14f{bottom:486.488000pt;}
.y196{bottom:487.829333pt;}
.y1bd{bottom:490.122667pt;}
.yde{bottom:496.072000pt;}
.yc1{bottom:497.206667pt;}
.y115{bottom:497.428000pt;}
.y18{bottom:497.889333pt;}
.y39{bottom:500.749333pt;}
.y9a{bottom:502.317333pt;}
.y14e{bottom:502.428000pt;}
.y1bc{bottom:503.405333pt;}
.y195{bottom:503.769333pt;}
.ydd{bottom:512.012000pt;}
.yc0{bottom:513.146667pt;}
.y17{bottom:513.829333pt;}
.y38{bottom:516.689333pt;}
.y114{bottom:517.353333pt;}
.y99{bottom:518.257333pt;}
.y14d{bottom:518.368000pt;}
.y194{bottom:519.709333pt;}
.ydc{bottom:527.952000pt;}
.ybf{bottom:529.086667pt;}
.y16{bottom:529.769333pt;}
.y1bb{bottom:529.972000pt;}
.y37{bottom:532.629333pt;}
.y14c{bottom:534.308000pt;}
.y193{bottom:535.649333pt;}
.y98{bottom:538.182667pt;}
.y1ba{bottom:543.256000pt;}
.ydb{bottom:543.893333pt;}
.y15{bottom:545.709333pt;}
.y36{bottom:548.569333pt;}
.y113{bottom:549.005333pt;}
.y14b{bottom:550.248000pt;}
.y192{bottom:551.589333pt;}
.y1b9{bottom:556.540000pt;}
.yda{bottom:559.833333pt;}
.y14{bottom:561.650667pt;}
.ybe{bottom:562.738667pt;}
.y35{bottom:564.509333pt;}
.y112{bottom:564.945333pt;}
.y14a{bottom:566.188000pt;}
.y191{bottom:567.529333pt;}
.y97{bottom:569.720000pt;}
.y1b8{bottom:569.822667pt;}
.yd9{bottom:575.773333pt;}
.y13{bottom:577.590667pt;}
.ybd{bottom:578.678667pt;}
.y34{bottom:580.449333pt;}
.y111{bottom:580.885333pt;}
.y149{bottom:582.129333pt;}
.y1b7{bottom:583.106667pt;}
.y190{bottom:583.470667pt;}
.y96{bottom:585.660000pt;}
.yd8{bottom:591.713333pt;}
.y12{bottom:593.530667pt;}
.ybc{bottom:594.618667pt;}
.y33{bottom:596.390667pt;}
.y110{bottom:596.825333pt;}
.y148{bottom:598.069333pt;}
.y18f{bottom:599.410667pt;}
.y95{bottom:601.600000pt;}
.yd6{bottom:607.653333pt;}
.y11{bottom:609.470667pt;}
.y1b6{bottom:609.673333pt;}
.ybb{bottom:610.558667pt;}
.y66{bottom:612.330667pt;}
.yd7{bottom:612.476000pt;}
.y10f{bottom:612.766667pt;}
.y147{bottom:614.009333pt;}
.y18e{bottom:615.350667pt;}
.y32{bottom:616.316000pt;}
.y94{bottom:617.541333pt;}
.y1b5{bottom:622.957333pt;}
.y10{bottom:625.410667pt;}
.yba{bottom:626.500000pt;}
.yd5{bottom:627.578667pt;}
.y65{bottom:628.270667pt;}
.y10e{bottom:628.706667pt;}
.y146{bottom:629.949333pt;}
.y93{bottom:633.481333pt;}
.y18d{bottom:635.276000pt;}
.y1b4{bottom:636.241333pt;}
.yf{bottom:641.350667pt;}
.yb9{bottom:642.440000pt;}
.y64{bottom:644.210667pt;}
.y10d{bottom:644.646667pt;}
.y92{bottom:649.421333pt;}
.y1b3{bottom:649.524000pt;}
.y31{bottom:651.978667pt;}
.ye{bottom:657.292000pt;}
.yb8{bottom:658.380000pt;}
.y63{bottom:660.150667pt;}
.y10c{bottom:660.586667pt;}
.y1b2{bottom:662.808000pt;}
.y91{bottom:665.361333pt;}
.y18c{bottom:666.192000pt;}
.y30{bottom:666.589333pt;}
.y145{bottom:667.940000pt;}
.yd{bottom:673.232000pt;}
.yb7{bottom:674.320000pt;}
.y62{bottom:676.090667pt;}
.y10b{bottom:676.526667pt;}
.y2f{bottom:681.201333pt;}
.y90{bottom:681.301333pt;}
.y18b{bottom:682.132000pt;}
.yc{bottom:689.172000pt;}
.y1b1{bottom:689.374667pt;}
.yb6{bottom:690.260000pt;}
.y61{bottom:692.032000pt;}
.y10a{bottom:692.468000pt;}
.y2e{bottom:695.813333pt;}
.y8f{bottom:697.241333pt;}
.y18a{bottom:698.072000pt;}
.y144{bottom:699.422667pt;}
.y1b0{bottom:702.658667pt;}
.yb{bottom:705.112000pt;}
.yb5{bottom:706.200000pt;}
.y60{bottom:707.972000pt;}
.y109{bottom:708.408000pt;}
.y2d{bottom:710.425333pt;}
.y8e{bottom:713.182667pt;}
.y1af{bottom:715.941333pt;}
.y139{bottom:717.621333pt;}
.yb4{bottom:722.141333pt;}
.y5f{bottom:723.912000pt;}
.y108{bottom:724.348000pt;}
.ya{bottom:725.037333pt;}
.y1a5{bottom:727.897333pt;}
.y8d{bottom:729.122667pt;}
.y1ae{bottom:733.210667pt;}
.y189{bottom:737.516000pt;}
.yb3{bottom:738.081333pt;}
.y5e{bottom:739.852000pt;}
.y8c{bottom:745.062667pt;}
.y9{bottom:752.832000pt;}
.yb2{bottom:754.021333pt;}
.y5d{bottom:755.792000pt;}
.y8b{bottom:761.002667pt;}
.y107{bottom:766.740000pt;}
.y17f{bottom:768.998667pt;}
.y8{bottom:770.100000pt;}
.y5c{bottom:771.732000pt;}
.y8a{bottom:780.928000pt;}
.y17e{bottom:783.610667pt;}
.y7{bottom:787.369333pt;}
.y5b{bottom:787.673333pt;}
.yfd{bottom:798.222667pt;}
.y1ad{bottom:799.628000pt;}
.y5a{bottom:803.613333pt;}
.y6{bottom:804.637333pt;}
.y138{bottom:811.810667pt;}
.yfc{bottom:812.834667pt;}
.y1ac{bottom:815.568000pt;}
.y59{bottom:819.553333pt;}
.y89{bottom:822.860000pt;}
.y1d9{bottom:824.866667pt;}
.y12c{bottom:830.008000pt;}
.yf5{bottom:831.032000pt;}
.y1ab{bottom:831.508000pt;}
.y58{bottom:835.493333pt;}
.y5{bottom:837.072000pt;}
.y1d8{bottom:838.150667pt;}
.y1aa{bottom:847.449333pt;}
.y7e{bottom:849.958667pt;}
.y57{bottom:851.433333pt;}
.y4{bottom:854.340000pt;}
.y1a9{bottom:863.389333pt;}
.y1d7{bottom:864.717333pt;}
.y56{bottom:867.373333pt;}
.y3{bottom:871.609333pt;}
.y1d6{bottom:878.001333pt;}
.y1a8{bottom:879.329333pt;}
.y55{bottom:883.314667pt;}
.y2{bottom:888.877333pt;}
.y1d5{bottom:891.284000pt;}
.y1a7{bottom:895.269333pt;}
.y54{bottom:899.254667pt;}
.y1d4{bottom:904.568000pt;}
.y1a6{bottom:911.209333pt;}
.y53{bottom:915.194667pt;}
.y1d3{bottom:917.852000pt;}
.y1{bottom:925.312000pt;}
.y52{bottom:931.134667pt;}
.y51{bottom:967.000000pt;}
.h22{height:14.963544pt;}
.h1d{height:15.811162pt;}
.h11{height:19.813431pt;}
.he{height:22.571418pt;}
.h1e{height:23.591437pt;}
.h24{height:25.385502pt;}
.h1f{height:25.522329pt;}
.h18{height:25.954566pt;}
.h21{height:26.038650pt;}
.h1a{height:27.119150pt;}
.h6{height:27.310807pt;}
.h13{height:27.461715pt;}
.h15{height:27.478445pt;}
.h1c{height:27.513623pt;}
.h17{height:28.887643pt;}
.hb{height:29.967576pt;}
.h8{height:30.095098pt;}
.h16{height:30.580055pt;}
.hd{height:33.421202pt;}
.ha{height:33.857126pt;}
.h9{height:34.430976pt;}
.h10{height:37.134616pt;}
.h5{height:37.618778pt;}
.h7{height:38.256384pt;}
.h3{height:41.192762pt;}
.h4{height:45.907968pt;}
.hc{height:46.747049pt;}
.h12{height:49.451158pt;}
.h2{height:54.171251pt;}
.h1{height:76.919600pt;}
.h1b{height:88.477088pt;}
.hf{height:94.460485pt;}
.h20{height:113.384930pt;}
.h14{height:113.386119pt;}
.h23{height:113.387012pt;}
.h19{height:114.411153pt;}
.h0{height:1056.000000pt;}
.w3{width:116.979559pt;}
.w2{width:123.269525pt;}
.w7{width:139.857316pt;}
.w6{width:143.117699pt;}
.w1{width:320.329434pt;}
.w4{width:672.536654pt;}
.w5{width:672.551304pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:8.686365pt;}
.x4e{left:14.735880pt;}
.x61{left:15.706674pt;}
.x48{left:16.756741pt;}
.x4d{left:21.464243pt;}
.x52{left:22.512492pt;}
.x51{left:27.950027pt;}
.x47{left:30.971379pt;}
.x4c{left:32.913228pt;}
.x33{left:40.468883pt;}
.x7c{left:46.688470pt;}
.x54{left:50.247901pt;}
.x49{left:53.458657pt;}
.x53{left:56.120473pt;}
.x62{left:57.788419pt;}
.x7f{left:70.774667pt;}
.x13{left:71.730667pt;}
.x7a{left:73.944232pt;}
.x1e{left:75.286667pt;}
.x80{left:76.672000pt;}
.x1{left:77.813333pt;}
.x79{left:81.302667pt;}
.x19{left:85.014667pt;}
.x81{left:93.984000pt;}
.x4{left:95.076000pt;}
.x72{left:103.720000pt;}
.x1f{left:108.496000pt;}
.x73{left:112.257333pt;}
.x63{left:114.602475pt;}
.x3{left:115.497333pt;}
.x20{left:118.222667pt;}
.x37{left:120.114667pt;}
.xf{left:123.105333pt;}
.x2{left:124.796000pt;}
.x74{left:127.692000pt;}
.x6f{left:128.584000pt;}
.xe{left:132.830667pt;}
.x6d{left:135.620000pt;}
.x38{left:136.613333pt;}
.x16{left:143.726667pt;}
.x55{left:144.644084pt;}
.x39{left:145.604000pt;}
.x56{left:155.993966pt;}
.x64{left:157.391243pt;}
.x5{left:161.628000pt;}
.x35{left:193.818468pt;}
.x23{left:198.874667pt;}
.x24{left:205.052000pt;}
.x82{left:206.106667pt;}
.x65{left:209.254456pt;}
.x83{left:211.097333pt;}
.x57{left:212.029089pt;}
.x7d{left:214.185333pt;}
.x3a{left:216.152000pt;}
.x3b{left:221.325333pt;}
.x1a{left:228.477333pt;}
.x34{left:236.453170pt;}
.x7b{left:238.341333pt;}
.x58{left:239.848191pt;}
.x1c{left:241.326667pt;}
.x66{left:244.343314pt;}
.x1d{left:247.502667pt;}
.x36{left:250.384565pt;}
.x70{left:254.928000pt;}
.x1b{left:264.797333pt;}
.x3c{left:274.929333pt;}
.x3d{left:287.282667pt;}
.x6e{left:291.848000pt;}
.x14{left:296.480000pt;}
.x71{left:301.441333pt;}
.x59{left:304.069448pt;}
.x42{left:306.938667pt;}
.x15{left:309.158667pt;}
.x8{left:313.941333pt;}
.x43{left:315.442667pt;}
.x10{left:317.944000pt;}
.x27{left:328.966667pt;}
.x11{left:334.850667pt;}
.x3e{left:337.405333pt;}
.x25{left:342.872000pt;}
.x67{left:345.690577pt;}
.x26{left:349.048000pt;}
.x44{left:350.122667pt;}
.x7{left:354.800000pt;}
.x6{left:357.138667pt;}
.x45{left:358.625333pt;}
.x21{left:375.024000pt;}
.x9{left:380.494667pt;}
.x22{left:387.378667pt;}
.x5a{left:396.108979pt;}
.x68{left:411.882566pt;}
.x5b{left:420.763505pt;}
.x17{left:423.497333pt;}
.x5c{left:430.104763pt;}
.x75{left:432.436000pt;}
.x46{left:433.512000pt;}
.x69{left:435.888564pt;}
.x18{left:437.224000pt;}
.x84{left:446.702667pt;}
.x76{left:448.110667pt;}
.x31{left:460.982667pt;}
.x28{left:464.106667pt;}
.x29{left:470.284000pt;}
.x32{left:473.337333pt;}
.x4f{left:481.954667pt;}
.x5d{left:488.148509pt;}
.x6a{left:505.363461pt;}
.x2f{left:510.857333pt;}
.x5e{left:512.803035pt;}
.x3f{left:521.069333pt;}
.x30{left:523.210667pt;}
.x40{left:527.245333pt;}
.x6b{left:529.788965pt;}
.xc{left:532.808000pt;}
.x41{left:552.012000pt;}
.xb{left:557.789333pt;}
.x7e{left:560.805333pt;}
.x12{left:567.004000pt;}
.xa{left:580.202667pt;}
.x4b{left:590.550667pt;}
.x77{left:592.818667pt;}
.xd{left:599.360000pt;}
.x5f{left:604.843395pt;}
.x60{left:609.852524pt;}
.x6c{left:619.315239pt;}
.x78{left:621.989333pt;}
.x2c{left:680.614667pt;}
.x2d{left:686.790667pt;}
.x50{left:695.426667pt;}
.x2e{left:717.701333pt;}
.x2a{left:727.281333pt;}
.x2b{left:739.634667pt;}
}




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