
    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_7a53aab9b7b567aec932ad03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_71caab5760892668468decc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_3b8930c4c775a0a395bf72bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_5cc4eb7351bfaca2a37f66d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_3471232c36000a0df1ad4a91.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3d06125ec39d60de9c1cc9ad.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_aad8dc397ebb96f4645f1d37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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_604e62fb1152b3e4330542af.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_536a7692619031ce672611f3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_29bb92bd22e1748145119257.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_8015c6caf9ffe25c09007371.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_af29c82b13f4a3db53422754.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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_7c98c5cff1f47d28eb4df4b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.014160;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_5c741c3270deb31189c6f843.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_88202f32f1f68f46aae7af9b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021484;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708008;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_6a525d379d16289879774db4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.014160;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_ed971c91fb057c638f241a52.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_0271b0b0ce1898d200c9ad50.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.021484;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.708008;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_f5e13a002d3d56fc6c8615a5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.900000;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_9ee34844ec6e9609e3b1bffc.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.014160;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_2c2bf4bc678c7a03d6f38404.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_07171820a44a882db3f8e934.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.021484;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.708008;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;}
.m4{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);}
.me{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);}
.mc{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);}
.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);}
.m1d{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);}
.m23{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);}
.ma{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);}
.m14{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);}
.m7{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);}
.m21{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);}
.m18{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);}
.m12{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);}
.m8{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);}
.m16{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);}
.md{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);}
.m1f{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);}
.m20{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);}
.m13{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);}
.m15{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);}
.m10{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);}
.m2{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);}
.m6{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);}
.m25{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);}
.m1b{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);}
.m5{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);}
.m3{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);}
.m9{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);}
.m11{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);}
.m27{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);}
.m17{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);}
.m1c{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);}
.m22{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);}
.m26{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);}
.m24{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);}
.mf{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);}
.m19{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);}
.m1{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);}
.mb{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:-19.530000px;}
.v8{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240144px;}
.v7{vertical-align:13.671000px;}
.v3{vertical-align:15.422437px;}
.v9{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:23.011800px;}
.v4{vertical-align:28.800108px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000466px;}
.ls19{letter-spacing:0.000608px;}
.ls2e{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.017958px;}
.ls16{letter-spacing:0.059776px;}
.ls1a{letter-spacing:0.179442px;}
.lsc{letter-spacing:0.188414px;}
.lsa{letter-spacing:0.188485px;}
.lse{letter-spacing:0.239456px;}
.ls28{letter-spacing:0.309789px;}
.ls12{letter-spacing:0.322434px;}
.ls11{letter-spacing:0.371999px;}
.lsd{letter-spacing:0.376441px;}
.ls1c{letter-spacing:0.979191px;}
.ls1b{letter-spacing:1.079572px;}
.ls8{letter-spacing:1.275394px;}
.ls20{letter-spacing:1.448080px;}
.ls1f{letter-spacing:1.454203px;}
.ls1e{letter-spacing:1.510385px;}
.ls23{letter-spacing:1.523995px;}
.ls24{letter-spacing:1.530086px;}
.ls5{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls15{letter-spacing:3.855045px;}
.ls9{letter-spacing:6.992353px;}
.ls14{letter-spacing:8.261403px;}
.lsb{letter-spacing:10.016419px;}
.ls27{letter-spacing:10.054408px;}
.ls26{letter-spacing:11.465643px;}
.ls6{letter-spacing:11.954850px;}
.ls2a{letter-spacing:13.263700px;}
.ls29{letter-spacing:13.283602px;}
.ls2b{letter-spacing:13.287346px;}
.ls2d{letter-spacing:13.448400px;}
.ls31{letter-spacing:13.454400px;}
.ls18{letter-spacing:14.626267px;}
.ls17{letter-spacing:14.632155px;}
.ls1d{letter-spacing:14.947200px;}
.ls10{letter-spacing:16.012575px;}
.ls25{letter-spacing:16.026688px;}
.ls2f{letter-spacing:16.379477px;}
.ls32{letter-spacing:16.676400px;}
.ls2c{letter-spacing:16.682400px;}
.ls30{letter-spacing:17.809224px;}
.ls1{letter-spacing:17.935200px;}
.ls21{letter-spacing:23.191394px;}
.ls22{letter-spacing:23.197276px;}
.ls3{letter-spacing:70.236600px;}
.ls2{letter-spacing:70.242600px;}
.ls4{letter-spacing:72.359510px;}
.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;}
}
.ws4b{word-spacing:-15.687591px;}
.ws67{word-spacing:-15.239374px;}
.ws13{word-spacing:-14.943900px;}
.ws85{word-spacing:-14.940563px;}
.wse6{word-spacing:-14.641751px;}
.ws4c{word-spacing:-14.175591px;}
.ws86{word-spacing:-13.500563px;}
.ws8b{word-spacing:-13.449600px;}
.ws4a{word-spacing:-12.663473px;}
.ws65{word-spacing:-12.301659px;}
.ws84{word-spacing:-12.060450px;}
.ws29{word-spacing:-11.955150px;}
.wse5{word-spacing:-11.819241px;}
.ws6{word-spacing:-11.357400px;}
.ws13a{word-spacing:-10.460700px;}
.ws87{word-spacing:-10.440405px;}
.ws66{word-spacing:-9.180356px;}
.wsb{word-spacing:-3.287658px;}
.wsb6{word-spacing:-3.227882px;}
.wse7{word-spacing:-3.048556px;}
.wsdb{word-spacing:-2.705897px;}
.wsd9{word-spacing:-2.689902px;}
.ws11e{word-spacing:-2.636122px;}
.wsd0{word-spacing:-2.570351px;}
.ws107{word-spacing:-2.391024px;}
.wsf2{word-spacing:-2.032370px;}
.ws44{word-spacing:-1.933840px;}
.ws41{word-spacing:-1.912819px;}
.ws43{word-spacing:-1.911853px;}
.ws8{word-spacing:-1.908367px;}
.ws14{word-spacing:-1.793268px;}
.ws15{word-spacing:-1.777130px;}
.wsda{word-spacing:-1.729688px;}
.wsfb{word-spacing:-1.673717px;}
.wsc4{word-spacing:-1.669868px;}
.wsc5{word-spacing:-1.643974px;}
.wsc3{word-spacing:-1.613941px;}
.ws126{word-spacing:-1.560154px;}
.wsc9{word-spacing:-1.554166px;}
.ws40{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.ws88{word-spacing:-1.291162px;}
.ws100{word-spacing:-1.075961px;}
.wsb5{word-spacing:-1.016185px;}
.wsb8{word-spacing:-0.836858px;}
.ws16{word-spacing:-0.717307px;}
.ws76{word-spacing:-0.538736px;}
.ws75{word-spacing:-0.537980px;}
.ws4d{word-spacing:-0.484186px;}
.wsdc{word-spacing:-0.478205px;}
.ws101{word-spacing:-0.418429px;}
.ws63{word-spacing:-0.358654px;}
.ws6e{word-spacing:-0.331539px;}
.ws35{word-spacing:-0.298878px;}
.ws127{word-spacing:-0.278954px;}
.ws11b{word-spacing:-0.268992px;}
.ws128{word-spacing:-0.252304px;}
.ws50{word-spacing:-0.248360px;}
.ws4f{word-spacing:-0.246313px;}
.wsb7{word-spacing:-0.239102px;}
.ws4e{word-spacing:-0.215194px;}
.ws104{word-spacing:-0.209635px;}
.ws103{word-spacing:-0.196490px;}
.ws106{word-spacing:-0.194206px;}
.wsc{word-spacing:-0.186036px;}
.wse{word-spacing:-0.183949px;}
.wsf{word-spacing:-0.179327px;}
.ws11c{word-spacing:-0.164231px;}
.ws117{word-spacing:-0.161668px;}
.ws116{word-spacing:-0.161395px;}
.wsc2{word-spacing:-0.150096px;}
.wsc0{word-spacing:-0.143877px;}
.wsc1{word-spacing:-0.143733px;}
.ws12{word-spacing:-0.119551px;}
.ws11{word-spacing:-0.115236px;}
.ws108{word-spacing:-0.107597px;}
.ws51{word-spacing:-0.098595px;}
.ws52{word-spacing:-0.097504px;}
.ws6c{word-spacing:-0.075845px;}
.ws4{word-spacing:-0.059776px;}
.ws53{word-spacing:-0.053798px;}
.ws142{word-spacing:-0.026755px;}
.wsd4{word-spacing:-0.025329px;}
.ws14d{word-spacing:-0.024854px;}
.ws30{word-spacing:-0.022889px;}
.ws140{word-spacing:-0.009926px;}
.ws120{word-spacing:-0.009178px;}
.ws10{word-spacing:-0.009137px;}
.ws150{word-spacing:-0.006749px;}
.ws111{word-spacing:-0.006086px;}
.ws129{word-spacing:-0.005165px;}
.ws8c{word-spacing:-0.005059px;}
.wsbb{word-spacing:-0.004955px;}
.ws91{word-spacing:-0.004791px;}
.ws95{word-spacing:-0.004106px;}
.ws12d{word-spacing:-0.003370px;}
.ws55{word-spacing:-0.003302px;}
.ws139{word-spacing:-0.003274px;}
.ws9b{word-spacing:-0.003017px;}
.ws13b{word-spacing:-0.002266px;}
.ws98{word-spacing:-0.001882px;}
.ws8a{word-spacing:-0.001805px;}
.ws13e{word-spacing:-0.000125px;}
.ws0{word-spacing:0.000000px;}
.ws90{word-spacing:0.000188px;}
.ws145{word-spacing:0.000230px;}
.ws89{word-spacing:0.000720px;}
.ws28{word-spacing:0.001425px;}
.ws5{word-spacing:0.003266px;}
.ws11f{word-spacing:0.003408px;}
.ws8d{word-spacing:0.004195px;}
.ws7d{word-spacing:0.006980px;}
.ws7f{word-spacing:0.011730px;}
.ws7e{word-spacing:0.011777px;}
.wsfa{word-spacing:0.027801px;}
.ws109{word-spacing:0.053798px;}
.ws3b{word-spacing:0.059776px;}
.ws68{word-spacing:0.107597px;}
.ws5f{word-spacing:0.119551px;}
.wsba{word-spacing:0.128756px;}
.ws54{word-spacing:0.161395px;}
.ws62{word-spacing:0.166798px;}
.ws7a{word-spacing:0.172643px;}
.ws7c{word-spacing:0.172713px;}
.ws7b{word-spacing:0.172947px;}
.ws1c{word-spacing:0.179327px;}
.ws61{word-spacing:0.181127px;}
.wsd6{word-spacing:0.214802px;}
.ws11a{word-spacing:0.215194px;}
.ws2a{word-spacing:0.218534px;}
.wsd7{word-spacing:0.231042px;}
.wsf1{word-spacing:0.231274px;}
.wsdf{word-spacing:0.236410px;}
.ws26{word-spacing:0.239102px;}
.ws134{word-spacing:0.239984px;}
.ws135{word-spacing:0.242691px;}
.ws131{word-spacing:0.268992px;}
.ws6f{word-spacing:0.287770px;}
.ws71{word-spacing:0.289366px;}
.ws45{word-spacing:0.298878px;}
.ws14f{word-spacing:0.322790px;}
.ws31{word-spacing:0.358654px;}
.ws10b{word-spacing:0.484186px;}
.ws10c{word-spacing:0.535100px;}
.wsbe{word-spacing:0.537980px;}
.ws12b{word-spacing:0.537984px;}
.wsc6{word-spacing:0.717307px;}
.wsfe{word-spacing:0.777083px;}
.wsaa{word-spacing:0.791824px;}
.ws102{word-spacing:0.836858px;}
.wsd5{word-spacing:0.880554px;}
.ws39{word-spacing:0.896634px;}
.wsfd{word-spacing:0.926583px;}
.wsac{word-spacing:0.943024px;}
.ws60{word-spacing:0.956410px;}
.wsfc{word-spacing:1.016185px;}
.ws57{word-spacing:1.069846px;}
.ws56{word-spacing:1.075961px;}
.wsec{word-spacing:1.093338px;}
.wsed{word-spacing:1.135736px;}
.wse2{word-spacing:1.255288px;}
.ws81{word-spacing:1.290600px;}
.ws141{word-spacing:1.291162px;}
.ws82{word-spacing:1.292896px;}
.ws83{word-spacing:1.315063px;}
.wse8{word-spacing:1.374839px;}
.wse9{word-spacing:1.410342px;}
.wsea{word-spacing:1.434614px;}
.wse1{word-spacing:1.554166px;}
.wsdd{word-spacing:1.555547px;}
.wsef{word-spacing:1.673717px;}
.wsde{word-spacing:1.691562px;}
.ws124{word-spacing:1.721549px;}
.wsbf{word-spacing:1.733492px;}
.ws6a{word-spacing:1.853044px;}
.ws6b{word-spacing:1.863686px;}
.wse0{word-spacing:1.912819px;}
.ws77{word-spacing:2.016050px;}
.ws79{word-spacing:2.020012px;}
.ws78{word-spacing:2.021730px;}
.ws137{word-spacing:2.032018px;}
.ws59{word-spacing:2.032370px;}
.ws136{word-spacing:2.044339px;}
.wse3{word-spacing:2.092146px;}
.wscf{word-spacing:2.151922px;}
.wsd3{word-spacing:2.271473px;}
.ws23{word-spacing:2.331248px;}
.ws110{word-spacing:2.473971px;}
.ws10f{word-spacing:2.474726px;}
.wsff{word-spacing:2.510575px;}
.ws47{word-spacing:2.570351px;}
.ws133{word-spacing:2.582323px;}
.wseb{word-spacing:2.689902px;}
.ws123{word-spacing:2.689920px;}
.ws143{word-spacing:2.743718px;}
.ws49{word-spacing:2.809453px;}
.ws80{word-spacing:2.816253px;}
.ws138{word-spacing:2.851315px;}
.ws48{word-spacing:2.869229px;}
.ws118{word-spacing:3.024634px;}
.ws10a{word-spacing:3.174106px;}
.ws12f{word-spacing:3.220531px;}
.ws12a{word-spacing:3.221510px;}
.ws12e{word-spacing:3.223133px;}
.ws121{word-spacing:3.223949px;}
.ws114{word-spacing:3.224822px;}
.ws42{word-spacing:3.225333px;}
.ws132{word-spacing:3.225418px;}
.ws122{word-spacing:3.225571px;}
.wsee{word-spacing:3.227882px;}
.ws119{word-spacing:3.227904px;}
.ws146{word-spacing:3.229440px;}
.ws125{word-spacing:3.230227px;}
.ws69{word-spacing:3.347434px;}
.wsd{word-spacing:3.423574px;}
.ws8f{word-spacing:3.443098px;}
.ws2d{word-spacing:3.514104px;}
.ws105{word-spacing:3.514409px;}
.ws2c{word-spacing:3.526760px;}
.ws2f{word-spacing:3.541088px;}
.ws17{word-spacing:3.586536px;}
.ws72{word-spacing:3.646312px;}
.ws73{word-spacing:3.657227px;}
.wsce{word-spacing:3.706087px;}
.ws8e{word-spacing:3.765888px;}
.wsb9{word-spacing:3.838386px;}
.ws58{word-spacing:3.945190px;}
.ws70{word-spacing:4.043103px;}
.ws149{word-spacing:4.079825px;}
.ws14a{word-spacing:4.088678px;}
.ws38{word-spacing:4.124516px;}
.ws36{word-spacing:4.149894px;}
.ws37{word-spacing:4.152161px;}
.ws32{word-spacing:4.184292px;}
.ws74{word-spacing:4.186436px;}
.wsd8{word-spacing:4.244068px;}
.wsbc{word-spacing:4.363619px;}
.ws5e{word-spacing:4.483170px;}
.ws27{word-spacing:4.542946px;}
.ws6d{word-spacing:4.602721px;}
.wsf0{word-spacing:4.736337px;}
.ws5c{word-spacing:4.782048px;}
.ws5b{word-spacing:4.792744px;}
.ws5d{word-spacing:4.798627px;}
.ws5a{word-spacing:4.820508px;}
.ws10d{word-spacing:4.841856px;}
.ws10e{word-spacing:4.842035px;}
.ws9{word-spacing:4.901599px;}
.ws46{word-spacing:5.080926px;}
.ws113{word-spacing:5.110848px;}
.ws148{word-spacing:5.164646px;}
.ws3f{word-spacing:5.320028px;}
.ws3c{word-spacing:5.334072px;}
.ws3e{word-spacing:5.335206px;}
.ws3a{word-spacing:5.379804px;}
.ws112{word-spacing:5.487437px;}
.wscc{word-spacing:5.798233px;}
.ws19{word-spacing:5.852825px;}
.ws1b{word-spacing:5.858009px;}
.ws1a{word-spacing:5.890097px;}
.ws64{word-spacing:6.097111px;}
.ws13f{word-spacing:6.133018px;}
.ws2{word-spacing:6.452707px;}
.wscb{word-spacing:6.455765px;}
.ws33{word-spacing:6.694867px;}
.ws34{word-spacing:6.699220px;}
.ws13c{word-spacing:6.939994px;}
.ws11d{word-spacing:7.208986px;}
.ws144{word-spacing:7.316582px;}
.ws13d{word-spacing:7.531776px;}
.ws1d{word-spacing:7.770828px;}
.ws21{word-spacing:7.830604px;}
.wsbd{word-spacing:7.890379px;}
.ws147{word-spacing:7.908365px;}
.ws14e{word-spacing:8.069760px;}
.wsd2{word-spacing:8.245259px;}
.wsd1{word-spacing:8.249033px;}
.ws1e{word-spacing:8.368584px;}
.wse4{word-spacing:8.488135px;}
.ws14c{word-spacing:8.822938px;}
.ws14b{word-spacing:8.876736px;}
.wsc8{word-spacing:9.486436px;}
.ws24{word-spacing:9.504320px;}
.wsc7{word-spacing:9.564096px;}
.ws1f{word-spacing:9.982525px;}
.ws115{word-spacing:10.275494px;}
.wsa{word-spacing:10.460730px;}
.ws25{word-spacing:10.640057px;}
.ws18{word-spacing:12.014896px;}
.ws2b{word-spacing:12.194222px;}
.wscd{word-spacing:13.449510px;}
.ws20{word-spacing:13.927715px;}
.ws130{word-spacing:13.987584px;}
.ws12c{word-spacing:14.633165px;}
.ws2e{word-spacing:14.720291px;}
.ws22{word-spacing:16.318739px;}
.wsca{word-spacing:17.394700px;}
.wsf8{word-spacing:17.451370px;}
.wsf7{word-spacing:17.454475px;}
.wsf9{word-spacing:17.467299px;}
.wsf6{word-spacing:18.158735px;}
.wsf4{word-spacing:18.170034px;}
.wsf3{word-spacing:18.171782px;}
.ws3d{word-spacing:20.114409px;}
.ws3{word-spacing:26.784538px;}
.ws1{word-spacing:26.791603px;}
.wsf5{word-spacing:58.596762px;}
.wsa8{word-spacing:105.685259px;}
.ws93{word-spacing:106.043777px;}
.ws92{word-spacing:106.081577px;}
.wsb2{word-spacing:106.365659px;}
.ws9d{word-spacing:108.811833px;}
.wsb0{word-spacing:109.189833px;}
.wsa1{word-spacing:109.227633px;}
.wsa9{word-spacing:109.303233px;}
.ws94{word-spacing:109.866530px;}
.wsb3{word-spacing:110.093330px;}
.wsb1{word-spacing:110.471330px;}
.wsae{word-spacing:110.900368px;}
.ws9a{word-spacing:110.904568px;}
.wsa5{word-spacing:111.202768px;}
.ws97{word-spacing:111.955066px;}
.wsaf{word-spacing:112.408666px;}
.wsa0{word-spacing:112.993104px;}
.wsa2{word-spacing:117.585834px;}
.wsa4{word-spacing:117.661434px;}
.wsb4{word-spacing:120.467968px;}
.ws9f{word-spacing:123.911229px;}
.ws9e{word-spacing:123.935374px;}
.ws9c{word-spacing:127.023402px;}
.wsa7{word-spacing:128.831028px;}
.wsa3{word-spacing:128.868687px;}
.ws99{word-spacing:129.132300px;}
.ws96{word-spacing:140.655917px;}
.wsad{word-spacing:144.346487px;}
.wsab{word-spacing:144.421805px;}
.wsa6{word-spacing:308.220360px;}
._6{margin-left:-6.575316px;}
._3{margin-left:-4.949453px;}
._10{margin-left:-3.538724px;}
._7b{margin-left:-2.462815px;}
._0{margin-left:-1.357270px;}
._5{width:1.091170px;}
._1{width:2.997229px;}
._1f{width:4.152215px;}
._1e{width:5.311328px;}
._1d{width:6.414852px;}
._20{width:7.655054px;}
._22{width:8.839712px;}
._17{width:9.867776px;}
._1b{width:11.542404px;}
._1a{width:12.661258px;}
._19{width:13.683256px;}
._2{width:15.709133px;}
._4{width:17.645875px;}
._14{width:18.790544px;}
._21{width:19.831321px;}
._23{width:20.992942px;}
._16{width:22.039628px;}
._15{width:23.773120px;}
._a{width:24.806874px;}
._c{width:26.050240px;}
._d{width:27.401863px;}
._7a{width:29.051136px;}
._13{width:30.186678px;}
._26{width:31.983895px;}
._79{width:33.474336px;}
._f{width:35.387155px;}
._8{width:36.642443px;}
._77{width:38.435711px;}
._1c{width:39.592047px;}
._9{width:42.380900px;}
._b{width:44.276151px;}
._7{width:50.331055px;}
._e{width:60.552683px;}
._25{width:62.490116px;}
._58{width:71.024648px;}
._62{width:87.874506px;}
._28{width:89.855989px;}
._73{width:94.041496px;}
._2b{width:97.446571px;}
._41{width:101.076686px;}
._37{width:102.653557px;}
._3b{width:104.450863px;}
._47{width:106.027770px;}
._53{width:107.902942px;}
._4a{width:110.258836px;}
._56{width:116.955426px;}
._48{width:124.032011px;}
._49{width:127.129106px;}
._68{width:133.401267px;}
._65{width:136.526067px;}
._5b{width:138.208090px;}
._76{width:139.225490px;}
._54{width:148.478852px;}
._3a{width:149.511234px;}
._72{width:151.802945px;}
._3f{width:152.880426px;}
._38{width:155.157169px;}
._51{width:160.782237px;}
._4b{width:163.705550px;}
._4c{width:167.537210px;}
._5a{width:173.569778px;}
._71{width:186.486774px;}
._33{width:189.577248px;}
._2e{width:190.594829px;}
._3e{width:192.619994px;}
._2d{width:197.567830px;}
._42{width:201.291008px;}
._43{width:204.220062px;}
._3c{width:209.225716px;}
._31{width:212.149030px;}
._64{width:214.196095px;}
._32{width:216.049515px;}
._29{width:221.664709px;}
._70{width:224.679747px;}
._4d{width:226.244637px;}
._6b{width:227.572612px;}
._4e{width:230.729524px;}
._52{width:235.102796px;}
._74{width:236.868625px;}
._55{width:243.221825px;}
._4f{width:248.857494px;}
._50{width:252.563200px;}
._45{width:256.833963px;}
._46{width:259.651109px;}
._67{width:260.674767px;}
._6c{width:262.143464px;}
._44{width:267.601667px;}
._39{width:269.034429px;}
._40{width:271.186115px;}
._3d{width:273.325780px;}
._2c{width:281.157170px;}
._6d{width:283.006483px;}
._2a{width:293.069620px;}
._66{width:295.320937px;}
._5c{width:300.781475px;}
._6f{width:302.928031px;}
._63{width:304.170774px;}
._5e{width:305.300540px;}
._5f{width:306.317330px;}
._6a{width:310.648101px;}
._57{width:311.821577px;}
._61{width:313.246564px;}
._75{width:314.677601px;}
._2f{width:317.818979px;}
._6e{width:338.252060px;}
._59{width:339.847225px;}
._5d{width:343.486644px;}
._69{width:345.294271px;}
._30{width:358.315026px;}
._36{width:359.567874px;}
._34{width:363.468034px;}
._35{width:378.778220px;}
._60{width:402.159180px;}
._11{width:767.447033px;}
._78{width:1526.569452px;}
._27{width:1557.824757px;}
._24{width:1589.252675px;}
._18{width:1635.107569px;}
._7c{width:1982.664253px;}
._12{width:2006.574253px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(9,136,136);}
.fs17{font-size:23.760900px;}
.fs19{font-size:29.289960px;}
.fsd{font-size:34.777370px;}
.fs1a{font-size:35.865600px;}
.fs12{font-size:36.721423px;}
.fs18{font-size:37.658880px;}
.fs16{font-size:41.761620px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs1b{font-size:47.276964px;}
.fs1f{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs13{font-size:48.241800px;}
.fsf{font-size:49.206636px;}
.fs9{font-size:50.653890px;}
.fs1c{font-size:52.922205px;}
.fs5{font-size:53.798400px;}
.fs14{font-size:54.002250px;}
.fs10{font-size:55.082295px;}
.fse{font-size:56.058000px;}
.fsa{font-size:56.702363px;}
.fs1e{font-size:58.567005px;}
.fs15{font-size:59.762250px;}
.fs1{font-size:59.775600px;}
.fs11{font-size:60.957495px;}
.fs20{font-size:62.286600px;}
.fsb{font-size:62.750363px;}
.fsc{font-size:69.554835px;}
.fs1d{font-size:70.562650px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:136.067040px;}
.ya7{bottom:-766.624379px;}
.ye4{bottom:-746.464467px;}
.ye3{bottom:-739.264440px;}
.ye2{bottom:-718.024434px;}
.ye1{bottom:-711.004445px;}
.ye0{bottom:-689.764440px;}
.ydf{bottom:-682.744451px;}
.yde{bottom:-661.504445px;}
.ydd{bottom:-647.284428px;}
.ydc{bottom:-633.064412px;}
.yda{bottom:-626.044423px;}
.ydb{bottom:-618.844464px;}
.yd9{bottom:-604.804417px;}
.yd8{bottom:-590.584401px;}
.yd7{bottom:-576.364453px;}
.yd6{bottom:-562.324407px;}
.yd5{bottom:-548.104459px;}
.yd4{bottom:-533.884442px;}
.yd3{bottom:-519.844464px;}
.yd2{bottom:-505.624448px;}
.yd1{bottom:-491.404432px;}
.y7d{bottom:-482.193146px;}
.yd0{bottom:-477.184415px;}
.ycf{bottom:-470.164426px;}
.ya1{bottom:-458.325230px;}
.yce{bottom:-448.924421px;}
.ycc{bottom:-441.904432px;}
.ya0{bottom:-437.761980px;}
.ycd{bottom:-434.704404px;}
.ycb{bottom:-420.664426px;}
.y9f{bottom:-417.198800px;}
.yca{bottom:-413.464467px;}
.y139{bottom:-400.649851px;}
.y9e{bottom:-396.451980px;}
.yc9{bottom:-392.224461px;}
.yc8{bottom:-385.204404px;}
.y9d{bottom:-375.888800px;}
.yc7{bottom:-363.964467px;}
.yc6{bottom:-356.764440px;}
.y148{bottom:-356.020673px;}
.y9c{bottom:-355.141980px;}
.y147{bottom:-336.263892px;}
.yc5{bottom:-335.524434px;}
.y9b{bottom:-334.578800px;}
.yc4{bottom:-328.504445px;}
.y146{bottom:-316.330673px;}
.y9a{bottom:-313.831980px;}
.yc3{bottom:-307.264440px;}
.y145{bottom:-296.573892px;}
.y99{bottom:-293.268800px;}
.yc2{bottom:-293.044423px;}
.yc1{bottom:-279.004445px;}
.y98{bottom:-272.705620px;}
.y144{bottom:-267.997111px;}
.yc0{bottom:-264.784428px;}
.y97{bottom:-251.958800px;}
.ybf{bottom:-250.564412px;}
.ybe{bottom:-236.524434px;}
.y96{bottom:-231.395620px;}
.y143{bottom:-230.423892px;}
.ybd{bottom:-222.304417px;}
.ybc{bottom:-215.284428px;}
.y142{bottom:-210.667111px;}
.y95{bottom:-210.648800px;}
.ybb{bottom:-193.144436px;}
.y141{bottom:-190.733892px;}
.y94{bottom:-190.085620px;}
.yb8{bottom:-186.124448px;}
.yb7{bottom:-179.104459px;}
.yb9{bottom:-171.904432px;}
.y140{bottom:-170.977111px;}
.y93{bottom:-169.338800px;}
.yba{bottom:-164.884442px;}
.y13f{bottom:-151.043892px;}
.y50{bottom:-150.539948px;}
.y92{bottom:-148.775620px;}
.yb6{bottom:-139.324441px;}
.y13e{bottom:-131.287111px;}
.y91{bottom:-128.212369px;}
.yb5{bottom:-119.704439px;}
.y90{bottom:-107.465620px;}
.y13d{bottom:-102.710330px;}
.y71{bottom:-85.523974px;}
.yb4{bottom:-82.264440px;}
.y8f{bottom:-69.093216px;}
.y13c{bottom:-65.137111px;}
.y70{bottom:-64.922971px;}
.yb3{bottom:-62.824441px;}
.y8e{bottom:-49.264383px;}
.y6f{bottom:-44.511008px;}
.yb2{bottom:-43.204439px;}
.y13b{bottom:-28.269508px;}
.y8d{bottom:-24.111203px;}
.y6e{bottom:-24.098974px;}
.yb1{bottom:-23.764440px;}
.y13a{bottom:-4.279098px;}
.y0{bottom:0.000000px;}
.yb0{bottom:0.715572px;}
.y6d{bottom:1.604966px;}
.y11{bottom:3.425340px;}
.y10{bottom:14.151273px;}
.y2{bottom:15.522037px;}
.y30{bottom:63.780000px;}
.y76{bottom:105.415500px;}
.y2f{bottom:108.612000px;}
.y113{bottom:111.585000px;}
.y168{bottom:115.800000px;}
.y75{bottom:122.025000px;}
.y136{bottom:123.121500px;}
.y74{bottom:124.648500px;}
.y137{bottom:127.843500px;}
.y2e{bottom:128.875500px;}
.y112{bottom:131.850000px;}
.y167{bottom:136.063500px;}
.y135{bottom:143.386500px;}
.y73{bottom:143.880000px;}
.y1c1{bottom:147.691500px;}
.y2d{bottom:149.139000px;}
.y111{bottom:152.113500px;}
.y18e{bottom:154.831500px;}
.y166{bottom:156.328500px;}
.yaf{bottom:161.455560px;}
.y72{bottom:163.113000px;}
.y134{bottom:163.650000px;}
.y1c0{bottom:167.059500px;}
.y2c{bottom:169.404000px;}
.y110{bottom:172.378500px;}
.y18d{bottom:174.199500px;}
.y164{bottom:176.592000px;}
.yae{bottom:181.615558px;}
.y165{bottom:182.016000px;}
.y133{bottom:183.913500px;}
.y4e{bottom:185.542500px;}
.y1bf{bottom:186.427500px;}
.y2b{bottom:189.667500px;}
.y18c{bottom:193.566000px;}
.y163{bottom:196.855500px;}
.y10f{bottom:201.609000px;}
.yad{bottom:201.955560px;}
.y132{bottom:204.178500px;}
.y1be{bottom:205.794000px;}
.y2a{bottom:209.932500px;}
.y18b{bottom:212.934000px;}
.yac{bottom:222.115558px;}
.y131{bottom:224.442000px;}
.y1bd{bottom:225.162000px;}
.y162{bottom:226.086000px;}
.y29{bottom:230.196000px;}
.y18a{bottom:232.302000px;}
.yab{bottom:242.455560px;}
.y1bc{bottom:244.528500px;}
.y130{bottom:244.707000px;}
.y28{bottom:250.459500px;}
.y189{bottom:251.668500px;}
.y161{bottom:260.905500px;}
.y10e{bottom:262.071000px;}
.yaa{bottom:262.615558px;}
.y1bb{bottom:263.896500px;}
.y12f{bottom:264.970500px;}
.y27{bottom:270.724500px;}
.y188{bottom:271.036500px;}
.y10d{bottom:276.874950px;}
.y160{bottom:281.170500px;}
.ya9{bottom:282.955560px;}
.y1ba{bottom:283.264500px;}
.y12e{bottom:285.234000px;}
.y10c{bottom:288.433350px;}
.y187{bottom:290.403000px;}
.y26{bottom:290.988000px;}
.y10b{bottom:299.992800px;}
.y15f{bottom:301.434000px;}
.y1b9{bottom:302.631000px;}
.ya8{bottom:303.115566px;}
.y12d{bottom:305.499000px;}
.y186{bottom:309.771000px;}
.y25{bottom:311.253000px;}
.y10a{bottom:311.552250px;}
.y8c{bottom:319.955193px;}
.y15e{bottom:321.699000px;}
.y1b8{bottom:321.999000px;}
.y109{bottom:323.111700px;}
.y12c{bottom:325.762500px;}
.y185{bottom:329.139000px;}
.y24{bottom:331.516500px;}
.y108{bottom:334.670100px;}
.ya6{bottom:340.375569px;}
.y8b{bottom:340.702012px;}
.y1b7{bottom:341.367000px;}
.y15d{bottom:341.962500px;}
.y12b{bottom:346.027500px;}
.y107{bottom:346.229550px;}
.y184{bottom:348.505500px;}
.y23{bottom:351.780000px;}
.y6c{bottom:351.822014px;}
.y106{bottom:357.789000px;}
.y1b6{bottom:360.733500px;}
.y8a{bottom:361.265193px;}
.y15c{bottom:362.226000px;}
.y12a{bottom:366.291000px;}
.y183{bottom:367.873500px;}
.y105{bottom:369.348450px;}
.y22{bottom:372.045000px;}
.y6b{bottom:372.989994px;}
.y1b5{bottom:380.101500px;}
.y104{bottom:380.906850px;}
.y89{bottom:381.828409px;}
.y15a{bottom:382.491000px;}
.y129{bottom:386.554500px;}
.y182{bottom:387.240000px;}
.y15b{bottom:387.915000px;}
.y21{bottom:392.308500px;}
.y103{bottom:392.466300px;}
.y6a{bottom:394.157974px;}
.y1b4{bottom:399.468000px;}
.y88{bottom:402.575193px;}
.y159{bottom:402.754500px;}
.y102{bottom:404.025750px;}
.y181{bottom:406.608000px;}
.y128{bottom:406.819500px;}
.y20{bottom:412.573500px;}
.y69{bottom:415.514994px;}
.y101{bottom:415.585200px;}
.y1b3{bottom:418.836000px;}
.y158{bottom:423.019500px;}
.y87{bottom:423.138409px;}
.y180{bottom:425.976000px;}
.y127{bottom:427.083000px;}
.y100{bottom:427.143600px;}
.ya4{bottom:432.837000px;}
.y68{bottom:436.682974px;}
.y1b2{bottom:438.204000px;}
.yff{bottom:438.703050px;}
.y1f{bottom:441.804000px;}
.y156{bottom:443.283000px;}
.y86{bottom:443.885193px;}
.y17f{bottom:445.342500px;}
.y126{bottom:447.348000px;}
.y157{bottom:448.707000px;}
.yfe{bottom:450.262500px;}
.y1b1{bottom:457.570500px;}
.y67{bottom:458.039994px;}
.yfd{bottom:461.821950px;}
.y155{bottom:463.546500px;}
.y85{bottom:464.448392px;}
.y17e{bottom:464.710500px;}
.ya3{bottom:467.245500px;}
.y125{bottom:467.611500px;}
.yfc{bottom:473.380350px;}
.y1b0{bottom:476.938500px;}
.y66{bottom:479.207974px;}
.y17d{bottom:484.077000px;}
.yfb{bottom:484.939800px;}
.y84{bottom:485.011589px;}
.ya2{bottom:486.478500px;}
.y124{bottom:487.875000px;}
.y154{bottom:492.777000px;}
.y1af{bottom:496.305000px;}
.yfa{bottom:496.499250px;}
.y65{bottom:500.564994px;}
.y83{bottom:505.758392px;}
.yf9{bottom:508.058700px;}
.y123{bottom:508.140000px;}
.y7b{bottom:508.908000px;}
.y17c{bottom:512.412000px;}
.y1ae{bottom:515.673000px;}
.y1e{bottom:518.211000px;}
.yf8{bottom:519.617100px;}
.y64{bottom:521.733010px;}
.y82{bottom:526.321589px;}
.y153{bottom:527.596500px;}
.y122{bottom:528.403500px;}
.y4d{bottom:530.854500px;}
.yf7{bottom:531.176550px;}
.y1ad{bottom:535.041000px;}
.y1d{bottom:538.476000px;}
.yf6{bottom:542.736000px;}
.y63{bottom:542.900990px;}
.y81{bottom:547.068392px;}
.y152{bottom:547.861500px;}
.y121{bottom:548.667000px;}
.y4c{bottom:551.119500px;}
.y17b{bottom:551.863500px;}
.yf5{bottom:554.295450px;}
.y1ac{bottom:554.407500px;}
.y62{bottom:564.258010px;}
.yf4{bottom:565.853850px;}
.y80{bottom:567.631589px;}
.y151{bottom:568.125000px;}
.y120{bottom:568.932000px;}
.y4b{bottom:571.383000px;}
.y1ab{bottom:573.775500px;}
.y17a{bottom:576.028500px;}
.y1c{bottom:576.672000px;}
.yf3{bottom:577.413300px;}
.y61{bottom:585.425990px;}
.y7f{bottom:588.378392px;}
.y150{bottom:588.390000px;}
.yf2{bottom:588.972750px;}
.y11f{bottom:589.195500px;}
.y4a{bottom:591.646500px;}
.y1aa{bottom:593.142000px;}
.y1b{bottom:596.937000px;}
.y179{bottom:600.192000px;}
.yf1{bottom:600.532200px;}
.y14f{bottom:608.653500px;}
.y7e{bottom:608.941597px;}
.y11e{bottom:609.460500px;}
.y49{bottom:611.911500px;}
.yf0{bottom:612.090600px;}
.y1a9{bottom:612.510000px;}
.y178{bottom:615.390000px;}
.y60{bottom:616.233010px;}
.y1a{bottom:617.200500px;}
.yef{bottom:623.650050px;}
.y14e{bottom:628.917000px;}
.y11d{bottom:629.724000px;}
.y177{bottom:630.588000px;}
.y1a7{bottom:631.878000px;}
.y48{bottom:632.175000px;}
.yee{bottom:635.209500px;}
.y1a8{bottom:636.759000px;}
.y19{bottom:637.465500px;}
.yed{bottom:646.768950px;}
.y7c{bottom:646.946801px;}
.y11c{bottom:649.987500px;}
.y1a6{bottom:651.244500px;}
.y47{bottom:652.438500px;}
.y176{bottom:654.753000px;}
.y5f{bottom:656.300990px;}
.y18{bottom:657.729000px;}
.y14d{bottom:658.147500px;}
.yeb{bottom:663.316950px;}
.yea{bottom:669.070950px;}
.y174{bottom:669.951000px;}
.y11b{bottom:670.252500px;}
.y1a5{bottom:670.612500px;}
.y46{bottom:672.703500px;}
.yec{bottom:674.823900px;}
.y175{bottom:674.833500px;}
.y17{bottom:677.992500px;}
.y138{bottom:684.210098px;}
.y173{bottom:687.369000px;}
.y1a4{bottom:689.979000px;}
.y11a{bottom:690.516000px;}
.y45{bottom:692.967000px;}
.y5e{bottom:696.558010px;}
.y16{bottom:698.257500px;}
.ye9{bottom:701.377500px;}
.y172{bottom:702.567000px;}
.y1a3{bottom:709.347000px;}
.y119{bottom:710.781000px;}
.y44{bottom:713.232000px;}
.y5d{bottom:717.725990px;}
.y170{bottom:717.766500px;}
.y15{bottom:718.521000px;}
.ye8{bottom:720.610500px;}
.y171{bottom:722.647500px;}
.y1a2{bottom:728.715000px;}
.y118{bottom:731.044500px;}
.y43{bottom:733.495500px;}
.y16f{bottom:735.184500px;}
.y14{bottom:738.786000px;}
.y5c{bottom:738.894006px;}
.y1a1{bottom:748.081500px;}
.ye7{bottom:750.304500px;}
.y117{bottom:751.308000px;}
.y42{bottom:753.759000px;}
.y13{bottom:759.049500px;}
.y5b{bottom:760.250990px;}
.y1a0{bottom:767.449500px;}
.y16e{bottom:768.315000px;}
.ye6{bottom:769.536000px;}
.y116{bottom:771.573000px;}
.y14c{bottom:774.024000px;}
.y12{bottom:779.313000px;}
.y5a{bottom:781.419006px;}
.y41{bottom:782.989500px;}
.y19f{bottom:786.816000px;}
.y16d{bottom:788.578500px;}
.ye5{bottom:788.769000px;}
.y115{bottom:791.836500px;}
.y14b{bottom:794.287500px;}
.y59{bottom:802.775990px;}
.y19e{bottom:806.184000px;}
.y16c{bottom:808.843500px;}
.ya5{bottom:811.198500px;}
.yf{bottom:811.368055px;}
.ye{bottom:811.761000px;}
.y114{bottom:812.101500px;}
.y40{bottom:817.809000px;}
.y14a{bottom:823.518000px;}
.y58{bottom:823.943988px;}
.y19d{bottom:825.552000px;}
.y16b{bottom:829.107000px;}
.y7a{bottom:832.365000px;}
.y19c{bottom:844.918500px;}
.y57{bottom:845.111986px;}
.yd{bottom:851.134500px;}
.y3f{bottom:852.628500px;}
.y149{bottom:858.337500px;}
.y19b{bottom:864.286500px;}
.y56{bottom:866.468988px;}
.y3e{bottom:872.893500px;}
.yc{bottom:874.173000px;}
.y79{bottom:878.317500px;}
.y19a{bottom:883.653000px;}
.yb{bottom:887.448000px;}
.y55{bottom:887.636986px;}
.y3d{bottom:893.157000px;}
.y199{bottom:903.021000px;}
.ya{bottom:905.605500px;}
.y54{bottom:908.993988px;}
.y3c{bottom:913.422000px;}
.y16a{bottom:918.846000px;}
.y198{bottom:922.389000px;}
.y9{bottom:928.644000px;}
.y53{bottom:930.161986px;}
.y3b{bottom:933.685500px;}
.y197{bottom:941.755500px;}
.y8{bottom:947.508000px;}
.y52{bottom:951.518988px;}
.y3a{bottom:953.949000px;}
.y196{bottom:961.123500px;}
.y7{bottom:967.771500px;}
.y51{bottom:972.686994px;}
.y39{bottom:974.214000px;}
.y195{bottom:980.490000px;}
.y1c4{bottom:986.275500px;}
.y38{bottom:994.477500px;}
.y194{bottom:999.858000px;}
.y169{bottom:999.903000px;}
.y1c3{bottom:1005.642000px;}
.y6{bottom:1010.451000px;}
.y4f{bottom:1011.809998px;}
.y37{bottom:1014.742500px;}
.y193{bottom:1019.226000px;}
.y1c2{bottom:1025.010000px;}
.y36{bottom:1035.006000px;}
.y192{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y35{bottom:1055.269500px;}
.y191{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y78{bottom:1072.804500px;}
.y34{bottom:1075.534500px;}
.y190{bottom:1077.327000px;}
.y33{bottom:1095.798000px;}
.y18f{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y77{bottom:1101.223500px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h3e{height:-607.864453px;}
.h3d{height:-565.384442px;}
.h3c{height:-522.904432px;}
.h3a{height:-423.724461px;}
.h35{height:-282.064412px;}
.h33{height:-239.584401px;}
.hb{height:25.508090px;}
.h44{height:26.110157px;}
.h42{height:27.227370px;}
.h43{height:27.641618px;}
.h9{height:30.461558px;}
.h34{height:30.485167px;}
.h32{height:30.607515px;}
.h2f{height:30.750255px;}
.h4e{height:31.526842px;}
.h1d{height:33.072749px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h47{height:34.811358px;}
.h41{height:34.847641px;}
.h10{height:35.100320px;}
.h26{height:35.521794px;}
.h1f{height:36.232230px;}
.h48{height:36.745789px;}
.h12{height:37.297884px;}
.h1c{height:37.334628px;}
.h27{height:37.495703px;}
.h20{height:38.245617px;}
.h1a{height:38.896243px;}
.h4a{height:38.968108px;}
.ha{height:39.165235px;}
.h13{height:39.370488px;}
.h2a{height:39.420588px;}
.h1b{height:39.488026px;}
.h2c{height:39.578797px;}
.h2b{height:39.763375px;}
.h23{height:40.209000px;}
.h24{height:40.558643px;}
.h50{height:41.482876px;}
.h19{height:41.557737px;}
.h45{height:41.723369px;}
.h18{height:41.751544px;}
.h4d{height:42.752770px;}
.h4c{height:42.924353px;}
.h4b{height:43.124533px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h28{height:43.625275px;}
.h29{height:43.800360px;}
.h4{height:43.875290px;}
.h22{height:44.497781px;}
.h21{height:44.676367px;}
.h15{height:45.806539px;}
.h14{height:45.990378px;}
.h16{height:46.204857px;}
.h51{height:49.991558px;}
.h40{height:50.239170px;}
.h2{height:50.907026px;}
.h49{height:51.509357px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h4f{height:55.047326px;}
.h31{height:58.565122px;}
.h37{height:58.565396px;}
.h36{height:58.687470px;}
.h3b{height:58.687475px;}
.h38{height:58.687745px;}
.h39{height:59.285005px;}
.h30{height:59.285275px;}
.h3f{height:59.285279px;}
.h2d{height:59.550363px;}
.h17{height:69.181249px;}
.h5{height:77.792486px;}
.h6{height:78.115277px;}
.h2e{height:87.630318px;}
.h3{height:92.253453px;}
.h25{height:139.374000px;}
.h1e{height:300.406320px;}
.h11{height:327.163725px;}
.h46{height:662.339370px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:-11.225253px;}
.w8{width:-9.245251px;}
.wc{width:-1.685249px;}
.w9{width:1.374752px;}
.we{width:1.554756px;}
.wd{width:3.534750px;}
.wa{width:5.219999px;}
.wf{width:5.220000px;}
.w10{width:26.639992px;}
.wb{width:28.440034px;}
.w3{width:75.364879px;}
.w2{width:251.671109px;}
.w5{width:271.458720px;}
.w4{width:400.064175px;}
.w11{width:510.917610px;}
.w6{width:593.447250px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x39{left:-201.924808px;}
.x3a{left:-169.427617px;}
.x20{left:-147.906673px;}
.x21{left:-114.453682px;}
.x71{left:-67.719958px;}
.x74{left:-36.497167px;}
.x3c{left:-34.625248px;}
.x3f{left:-24.365253px;}
.x4a{left:-23.285245px;}
.x4e{left:-21.125248px;}
.x48{left:-12.665252px;}
.x49{left:-9.245251px;}
.x3e{left:-2.765257px;}
.x4f{left:-1.685249px;}
.x0{left:0.000000px;}
.x40{left:27.654752px;}
.x7{left:29.274117px;}
.x2{left:58.075019px;}
.x73{left:92.980436px;}
.x47{left:95.154752px;}
.x50{left:106.314751px;}
.x4b{left:112.974749px;}
.x1{left:114.802500px;}
.x5{left:122.109000px;}
.x3{left:123.306000px;}
.x51{left:137.680950px;}
.x58{left:139.159350px;}
.x59{left:140.368950px;}
.x4{left:146.170500px;}
.x26{left:150.691500px;}
.x1c{left:157.501500px;}
.x27{left:159.663000px;}
.x1d{left:172.444500px;}
.x1e{left:176.133000px;}
.x1a{left:178.929000px;}
.x2f{left:182.154000px;}
.x95{left:187.165500px;}
.x8{left:191.001000px;}
.x1b{left:193.873500px;}
.x94{left:195.186000px;}
.x9{left:201.295500px;}
.x23{left:203.755500px;}
.x5a{left:205.227000px;}
.x30{left:206.680500px;}
.x5f{left:211.338000px;}
.x31{left:218.784000px;}
.x7a{left:220.566000px;}
.x60{left:226.282500px;}
.x32{left:231.190500px;}
.x7b{left:235.509000px;}
.x33{left:237.616500px;}
.x1f{left:246.424500px;}
.x34{left:249.351000px;}
.xa0{left:252.097500px;}
.xa2{left:254.101500px;}
.x35{left:259.531500px;}
.x41{left:261.654752px;}
.xa1{left:265.518000px;}
.x3b{left:271.763196px;}
.x61{left:273.007500px;}
.x6f{left:274.869000px;}
.x93{left:278.812500px;}
.x63{left:280.051500px;}
.x70{left:282.342000px;}
.x62{left:287.952000px;}
.x64{left:294.994500px;}
.x6b{left:297.085500px;}
.x6a{left:298.357500px;}
.x6c{left:306.987000px;}
.x38{left:310.726500px;}
.x8f{left:320.145000px;}
.x81{left:328.896000px;}
.x91{left:333.721500px;}
.x90{left:335.088000px;}
.x5d{left:336.817500px;}
.x8b{left:344.791500px;}
.x82{left:347.251500px;}
.x92{left:348.666000px;}
.x5e{left:351.762000px;}
.x43{left:358.854746px;}
.x86{left:363.960000px;}
.x68{left:367.147500px;}
.x42{left:371.634764px;}
.x87{left:376.918500px;}
.x18{left:378.204000px;}
.x69{left:382.092000px;}
.x19{left:385.677000px;}
.x28{left:388.464000px;}
.x22{left:402.272357px;}
.x65{left:416.647500px;}
.x75{left:417.909000px;}
.x12{left:428.494500px;}
.x6d{left:431.469000px;}
.x76{left:432.852000px;}
.x13{left:435.967500px;}
.x52{left:441.541500px;}
.x14{left:443.589000px;}
.x6e{left:446.413500px;}
.x15{left:451.060500px;}
.x29{left:455.542500px;}
.x44{left:456.774756px;}
.x2a{left:465.253500px;}
.x78{left:468.798000px;}
.x77{left:470.361000px;}
.x66{left:473.760000px;}
.x2d{left:478.389000px;}
.x79{left:483.742500px;}
.x67{left:488.704500px;}
.x2e{left:490.101000px;}
.x8c{left:493.932000px;}
.x8d{left:500.358000px;}
.x4d{left:502.494773px;}
.x72{left:519.339238px;}
.x54{left:520.391250px;}
.x88{left:522.712500px;}
.x53{left:532.358100px;}
.xe{left:541.557000px;}
.xf{left:549.028500px;}
.x46{left:550.374769px;}
.x10{left:552.838500px;}
.x11{left:560.311500px;}
.x45{left:563.154752px;}
.x24{left:566.764500px;}
.x36{left:572.776500px;}
.x25{left:577.228500px;}
.x37{left:579.202500px;}
.x98{left:585.003000px;}
.x3d{left:594.654752px;}
.x55{left:597.892800px;}
.x99{left:611.902500px;}
.x8e{left:616.968000px;}
.x4c{left:623.788489px;}
.x7d{left:627.375000px;}
.x83{left:637.953000px;}
.x7e{left:642.318000px;}
.x84{left:644.758500px;}
.x2b{left:648.271500px;}
.x7f{left:649.939500px;}
.x2c{left:659.377500px;}
.x80{left:664.884000px;}
.x16{left:673.087500px;}
.x9a{left:675.150000px;}
.x9d{left:681.375000px;}
.x17{left:688.032000px;}
.x9e{left:692.583000px;}
.x57{left:698.413500px;}
.x6{left:701.339982px;}
.x56{left:710.379300px;}
.x9b{left:727.774500px;}
.x96{left:729.115500px;}
.x7c{left:735.106500px;}
.x5b{left:738.228000px;}
.x85{left:742.941000px;}
.xa{left:749.775000px;}
.x5c{left:753.171000px;}
.x9c{left:754.672500px;}
.x97{left:756.015000px;}
.xb{left:757.248000px;}
.x89{left:760.666500px;}
.xc{left:764.637000px;}
.x8a{left:767.473500px;}
.xd{left:772.108500px;}
.x9f{left:776.446500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v8{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880128pt;}
.v7{vertical-align:12.152000pt;}
.v3{vertical-align:13.708833pt;}
.v9{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:20.454933pt;}
.v4{vertical-align:25.600096pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000414pt;}
.ls19{letter-spacing:0.000540pt;}
.ls2e{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.015963pt;}
.ls16{letter-spacing:0.053134pt;}
.ls1a{letter-spacing:0.159504pt;}
.lsc{letter-spacing:0.167479pt;}
.lsa{letter-spacing:0.167542pt;}
.lse{letter-spacing:0.212850pt;}
.ls28{letter-spacing:0.275368pt;}
.ls12{letter-spacing:0.286608pt;}
.ls11{letter-spacing:0.330666pt;}
.lsd{letter-spacing:0.334614pt;}
.ls1c{letter-spacing:0.870392pt;}
.ls1b{letter-spacing:0.959620pt;}
.ls8{letter-spacing:1.133683pt;}
.ls20{letter-spacing:1.287182pt;}
.ls1f{letter-spacing:1.292624pt;}
.ls1e{letter-spacing:1.342564pt;}
.ls23{letter-spacing:1.354662pt;}
.ls24{letter-spacing:1.360077pt;}
.ls5{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls15{letter-spacing:3.426706pt;}
.ls9{letter-spacing:6.215425pt;}
.ls14{letter-spacing:7.343470pt;}
.lsb{letter-spacing:8.903483pt;}
.ls27{letter-spacing:8.937251pt;}
.ls26{letter-spacing:10.191682pt;}
.ls6{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:11.789956pt;}
.ls29{letter-spacing:11.807646pt;}
.ls2b{letter-spacing:11.810974pt;}
.ls2d{letter-spacing:11.954133pt;}
.ls31{letter-spacing:11.959467pt;}
.ls18{letter-spacing:13.001126pt;}
.ls17{letter-spacing:13.006360pt;}
.ls1d{letter-spacing:13.286400pt;}
.ls10{letter-spacing:14.233400pt;}
.ls25{letter-spacing:14.245945pt;}
.ls2f{letter-spacing:14.559535pt;}
.ls32{letter-spacing:14.823467pt;}
.ls2c{letter-spacing:14.828800pt;}
.ls30{letter-spacing:15.830421pt;}
.ls1{letter-spacing:15.942400pt;}
.ls21{letter-spacing:20.614573pt;}
.ls22{letter-spacing:20.619801pt;}
.ls3{letter-spacing:62.432533pt;}
.ls2{letter-spacing:62.437867pt;}
.ls4{letter-spacing:64.319565pt;}
.ws4b{word-spacing:-13.944525pt;}
.ws67{word-spacing:-13.546110pt;}
.ws13{word-spacing:-13.283467pt;}
.ws85{word-spacing:-13.280500pt;}
.wse6{word-spacing:-13.014890pt;}
.ws4c{word-spacing:-12.600525pt;}
.ws86{word-spacing:-12.000500pt;}
.ws8b{word-spacing:-11.955200pt;}
.ws4a{word-spacing:-11.256420pt;}
.ws65{word-spacing:-10.934808pt;}
.ws84{word-spacing:-10.720400pt;}
.ws29{word-spacing:-10.626800pt;}
.wse5{word-spacing:-10.505992pt;}
.ws6{word-spacing:-10.095467pt;}
.ws13a{word-spacing:-9.298400pt;}
.ws87{word-spacing:-9.280360pt;}
.ws66{word-spacing:-8.160316pt;}
.wsb{word-spacing:-2.922363pt;}
.wsb6{word-spacing:-2.869229pt;}
.wse7{word-spacing:-2.709827pt;}
.wsdb{word-spacing:-2.405241pt;}
.wsd9{word-spacing:-2.391024pt;}
.ws11e{word-spacing:-2.343219pt;}
.wsd0{word-spacing:-2.284756pt;}
.ws107{word-spacing:-2.125355pt;}
.wsf2{word-spacing:-1.806551pt;}
.ws44{word-spacing:-1.718969pt;}
.ws41{word-spacing:-1.700284pt;}
.ws43{word-spacing:-1.699425pt;}
.ws8{word-spacing:-1.696326pt;}
.ws14{word-spacing:-1.594016pt;}
.ws15{word-spacing:-1.579671pt;}
.wsda{word-spacing:-1.537501pt;}
.wsfb{word-spacing:-1.487748pt;}
.wsc4{word-spacing:-1.484327pt;}
.wsc5{word-spacing:-1.461310pt;}
.wsc3{word-spacing:-1.434614pt;}
.ws126{word-spacing:-1.386803pt;}
.wsc9{word-spacing:-1.381481pt;}
.ws40{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.ws88{word-spacing:-1.147699pt;}
.ws100{word-spacing:-0.956410pt;}
.wsb5{word-spacing:-0.903276pt;}
.wsb8{word-spacing:-0.743874pt;}
.ws16{word-spacing:-0.637606pt;}
.ws76{word-spacing:-0.478877pt;}
.ws75{word-spacing:-0.478205pt;}
.ws4d{word-spacing:-0.430387pt;}
.wsdc{word-spacing:-0.425071pt;}
.ws101{word-spacing:-0.371937pt;}
.ws63{word-spacing:-0.318803pt;}
.ws6e{word-spacing:-0.294701pt;}
.ws35{word-spacing:-0.265669pt;}
.ws127{word-spacing:-0.247959pt;}
.ws11b{word-spacing:-0.239104pt;}
.ws128{word-spacing:-0.224270pt;}
.ws50{word-spacing:-0.220764pt;}
.ws4f{word-spacing:-0.218945pt;}
.wsb7{word-spacing:-0.212535pt;}
.ws4e{word-spacing:-0.191283pt;}
.ws104{word-spacing:-0.186342pt;}
.ws103{word-spacing:-0.174658pt;}
.ws106{word-spacing:-0.172628pt;}
.wsc{word-spacing:-0.165365pt;}
.wse{word-spacing:-0.163510pt;}
.wsf{word-spacing:-0.159402pt;}
.ws11c{word-spacing:-0.145983pt;}
.ws117{word-spacing:-0.143705pt;}
.ws116{word-spacing:-0.143462pt;}
.wsc2{word-spacing:-0.133419pt;}
.wsc0{word-spacing:-0.127890pt;}
.wsc1{word-spacing:-0.127763pt;}
.ws12{word-spacing:-0.106268pt;}
.ws11{word-spacing:-0.102432pt;}
.ws108{word-spacing:-0.095642pt;}
.ws51{word-spacing:-0.087640pt;}
.ws52{word-spacing:-0.086670pt;}
.ws6c{word-spacing:-0.067418pt;}
.ws4{word-spacing:-0.053134pt;}
.ws53{word-spacing:-0.047821pt;}
.ws142{word-spacing:-0.023782pt;}
.wsd4{word-spacing:-0.022515pt;}
.ws14d{word-spacing:-0.022093pt;}
.ws30{word-spacing:-0.020346pt;}
.ws140{word-spacing:-0.008823pt;}
.ws120{word-spacing:-0.008158pt;}
.ws10{word-spacing:-0.008122pt;}
.ws150{word-spacing:-0.005999pt;}
.ws111{word-spacing:-0.005410pt;}
.ws129{word-spacing:-0.004591pt;}
.ws8c{word-spacing:-0.004497pt;}
.wsbb{word-spacing:-0.004404pt;}
.ws91{word-spacing:-0.004259pt;}
.ws95{word-spacing:-0.003650pt;}
.ws12d{word-spacing:-0.002995pt;}
.ws55{word-spacing:-0.002935pt;}
.ws139{word-spacing:-0.002910pt;}
.ws9b{word-spacing:-0.002682pt;}
.ws13b{word-spacing:-0.002014pt;}
.ws98{word-spacing:-0.001673pt;}
.ws8a{word-spacing:-0.001604pt;}
.ws13e{word-spacing:-0.000111pt;}
.ws0{word-spacing:0.000000pt;}
.ws90{word-spacing:0.000167pt;}
.ws145{word-spacing:0.000205pt;}
.ws89{word-spacing:0.000640pt;}
.ws28{word-spacing:0.001267pt;}
.ws5{word-spacing:0.002903pt;}
.ws11f{word-spacing:0.003029pt;}
.ws8d{word-spacing:0.003729pt;}
.ws7d{word-spacing:0.006205pt;}
.ws7f{word-spacing:0.010427pt;}
.ws7e{word-spacing:0.010468pt;}
.wsfa{word-spacing:0.024712pt;}
.ws109{word-spacing:0.047821pt;}
.ws3b{word-spacing:0.053134pt;}
.ws68{word-spacing:0.095642pt;}
.ws5f{word-spacing:0.106268pt;}
.wsba{word-spacing:0.114450pt;}
.ws54{word-spacing:0.143462pt;}
.ws62{word-spacing:0.148264pt;}
.ws7a{word-spacing:0.153461pt;}
.ws7c{word-spacing:0.153523pt;}
.ws7b{word-spacing:0.153731pt;}
.ws1c{word-spacing:0.159402pt;}
.ws61{word-spacing:0.161001pt;}
.wsd6{word-spacing:0.190935pt;}
.ws11a{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.194252pt;}
.wsd7{word-spacing:0.205370pt;}
.wsf1{word-spacing:0.205577pt;}
.wsdf{word-spacing:0.210142pt;}
.ws26{word-spacing:0.212535pt;}
.ws134{word-spacing:0.213319pt;}
.ws135{word-spacing:0.215725pt;}
.ws131{word-spacing:0.239104pt;}
.ws6f{word-spacing:0.255796pt;}
.ws71{word-spacing:0.257214pt;}
.ws45{word-spacing:0.265669pt;}
.ws14f{word-spacing:0.286925pt;}
.ws31{word-spacing:0.318803pt;}
.ws10b{word-spacing:0.430387pt;}
.ws10c{word-spacing:0.475645pt;}
.wsbe{word-spacing:0.478205pt;}
.ws12b{word-spacing:0.478208pt;}
.wsc6{word-spacing:0.637606pt;}
.wsfe{word-spacing:0.690740pt;}
.wsaa{word-spacing:0.703844pt;}
.ws102{word-spacing:0.743874pt;}
.wsd5{word-spacing:0.782714pt;}
.ws39{word-spacing:0.797008pt;}
.wsfd{word-spacing:0.823630pt;}
.wsac{word-spacing:0.838244pt;}
.ws60{word-spacing:0.850142pt;}
.wsfc{word-spacing:0.903276pt;}
.ws57{word-spacing:0.950974pt;}
.ws56{word-spacing:0.956410pt;}
.wsec{word-spacing:0.971856pt;}
.wsed{word-spacing:1.009543pt;}
.wse2{word-spacing:1.115811pt;}
.ws81{word-spacing:1.147200pt;}
.ws141{word-spacing:1.147699pt;}
.ws82{word-spacing:1.149240pt;}
.ws83{word-spacing:1.168945pt;}
.wse8{word-spacing:1.222079pt;}
.wse9{word-spacing:1.253638pt;}
.wsea{word-spacing:1.275213pt;}
.wse1{word-spacing:1.381481pt;}
.wsdd{word-spacing:1.382708pt;}
.wsef{word-spacing:1.487748pt;}
.wsde{word-spacing:1.503611pt;}
.ws124{word-spacing:1.530266pt;}
.wsbf{word-spacing:1.540882pt;}
.ws6a{word-spacing:1.647150pt;}
.ws6b{word-spacing:1.656610pt;}
.wse0{word-spacing:1.700284pt;}
.ws77{word-spacing:1.792045pt;}
.ws79{word-spacing:1.795566pt;}
.ws78{word-spacing:1.797093pt;}
.ws137{word-spacing:1.806238pt;}
.ws59{word-spacing:1.806551pt;}
.ws136{word-spacing:1.817190pt;}
.wse3{word-spacing:1.859685pt;}
.wscf{word-spacing:1.912819pt;}
.wsd3{word-spacing:2.019087pt;}
.ws23{word-spacing:2.072221pt;}
.ws110{word-spacing:2.199086pt;}
.ws10f{word-spacing:2.199757pt;}
.wsff{word-spacing:2.231622pt;}
.ws47{word-spacing:2.284756pt;}
.ws133{word-spacing:2.295398pt;}
.wseb{word-spacing:2.391024pt;}
.ws123{word-spacing:2.391040pt;}
.ws143{word-spacing:2.438861pt;}
.ws49{word-spacing:2.497292pt;}
.ws80{word-spacing:2.503336pt;}
.ws138{word-spacing:2.534502pt;}
.ws48{word-spacing:2.550426pt;}
.ws118{word-spacing:2.688563pt;}
.ws10a{word-spacing:2.821427pt;}
.ws12f{word-spacing:2.862694pt;}
.ws12a{word-spacing:2.863565pt;}
.ws12e{word-spacing:2.865007pt;}
.ws121{word-spacing:2.865732pt;}
.ws114{word-spacing:2.866509pt;}
.ws42{word-spacing:2.866963pt;}
.ws132{word-spacing:2.867038pt;}
.ws122{word-spacing:2.867174pt;}
.wsee{word-spacing:2.869229pt;}
.ws119{word-spacing:2.869248pt;}
.ws146{word-spacing:2.870613pt;}
.ws125{word-spacing:2.871313pt;}
.ws69{word-spacing:2.975497pt;}
.wsd{word-spacing:3.043177pt;}
.ws8f{word-spacing:3.060531pt;}
.ws2d{word-spacing:3.123648pt;}
.ws105{word-spacing:3.123919pt;}
.ws2c{word-spacing:3.134898pt;}
.ws2f{word-spacing:3.147634pt;}
.ws17{word-spacing:3.188032pt;}
.ws72{word-spacing:3.241166pt;}
.ws73{word-spacing:3.250868pt;}
.wsce{word-spacing:3.294300pt;}
.ws8e{word-spacing:3.347456pt;}
.wsb9{word-spacing:3.411899pt;}
.ws58{word-spacing:3.506835pt;}
.ws70{word-spacing:3.593870pt;}
.ws149{word-spacing:3.626511pt;}
.ws14a{word-spacing:3.634381pt;}
.ws38{word-spacing:3.666237pt;}
.ws36{word-spacing:3.688795pt;}
.ws37{word-spacing:3.690810pt;}
.ws32{word-spacing:3.719371pt;}
.ws74{word-spacing:3.721276pt;}
.wsd8{word-spacing:3.772505pt;}
.wsbc{word-spacing:3.878772pt;}
.ws5e{word-spacing:3.985040pt;}
.ws27{word-spacing:4.038174pt;}
.ws6d{word-spacing:4.091308pt;}
.wsf0{word-spacing:4.210077pt;}
.ws5c{word-spacing:4.250709pt;}
.ws5b{word-spacing:4.260217pt;}
.ws5d{word-spacing:4.265446pt;}
.ws5a{word-spacing:4.284896pt;}
.ws10d{word-spacing:4.303872pt;}
.ws10e{word-spacing:4.304031pt;}
.ws9{word-spacing:4.356977pt;}
.ws46{word-spacing:4.516379pt;}
.ws113{word-spacing:4.542976pt;}
.ws148{word-spacing:4.590797pt;}
.ws3f{word-spacing:4.728914pt;}
.ws3c{word-spacing:4.741397pt;}
.ws3e{word-spacing:4.742405pt;}
.ws3a{word-spacing:4.782048pt;}
.ws112{word-spacing:4.877722pt;}
.wscc{word-spacing:5.153985pt;}
.ws19{word-spacing:5.202511pt;}
.ws1b{word-spacing:5.207119pt;}
.ws1a{word-spacing:5.235642pt;}
.ws64{word-spacing:5.419654pt;}
.ws13f{word-spacing:5.451571pt;}
.ws2{word-spacing:5.735740pt;}
.wscb{word-spacing:5.738458pt;}
.ws33{word-spacing:5.950993pt;}
.ws34{word-spacing:5.954862pt;}
.ws13c{word-spacing:6.168883pt;}
.ws11d{word-spacing:6.407987pt;}
.ws144{word-spacing:6.503629pt;}
.ws13d{word-spacing:6.694912pt;}
.ws1d{word-spacing:6.907403pt;}
.ws21{word-spacing:6.960537pt;}
.wsbd{word-spacing:7.013670pt;}
.ws147{word-spacing:7.029658pt;}
.ws14e{word-spacing:7.173120pt;}
.wsd2{word-spacing:7.329119pt;}
.wsd1{word-spacing:7.332474pt;}
.ws1e{word-spacing:7.438741pt;}
.wse4{word-spacing:7.545009pt;}
.ws14c{word-spacing:7.842611pt;}
.ws14b{word-spacing:7.890432pt;}
.wsc8{word-spacing:8.432387pt;}
.ws24{word-spacing:8.448285pt;}
.wsc7{word-spacing:8.501419pt;}
.ws1f{word-spacing:8.873356pt;}
.ws115{word-spacing:9.133773pt;}
.wsa{word-spacing:9.298427pt;}
.ws25{word-spacing:9.457828pt;}
.ws18{word-spacing:10.679907pt;}
.ws2b{word-spacing:10.839309pt;}
.wscd{word-spacing:11.955120pt;}
.ws20{word-spacing:12.380191pt;}
.ws130{word-spacing:12.433408pt;}
.ws12c{word-spacing:13.007258pt;}
.ws2e{word-spacing:13.084703pt;}
.ws22{word-spacing:14.505546pt;}
.wsca{word-spacing:15.461955pt;}
.wsf8{word-spacing:15.512329pt;}
.wsf7{word-spacing:15.515089pt;}
.wsf9{word-spacing:15.526488pt;}
.wsf6{word-spacing:16.141098pt;}
.wsf4{word-spacing:16.151141pt;}
.wsf3{word-spacing:16.152695pt;}
.ws3d{word-spacing:17.879475pt;}
.ws3{word-spacing:23.808478pt;}
.ws1{word-spacing:23.814758pt;}
.wsf5{word-spacing:52.086011pt;}
.wsa8{word-spacing:93.942452pt;}
.ws93{word-spacing:94.261135pt;}
.ws92{word-spacing:94.294735pt;}
.wsb2{word-spacing:94.547252pt;}
.ws9d{word-spacing:96.721629pt;}
.wsb0{word-spacing:97.057629pt;}
.wsa1{word-spacing:97.091229pt;}
.wsa9{word-spacing:97.158429pt;}
.ws94{word-spacing:97.659138pt;}
.wsb3{word-spacing:97.860738pt;}
.wsb1{word-spacing:98.196738pt;}
.wsae{word-spacing:98.578105pt;}
.ws9a{word-spacing:98.581839pt;}
.wsa5{word-spacing:98.846905pt;}
.ws97{word-spacing:99.515614pt;}
.wsaf{word-spacing:99.918814pt;}
.wsa0{word-spacing:100.438315pt;}
.wsa2{word-spacing:104.520742pt;}
.wsa4{word-spacing:104.587942pt;}
.wsb4{word-spacing:107.082639pt;}
.ws9f{word-spacing:110.143315pt;}
.ws9e{word-spacing:110.164777pt;}
.ws9c{word-spacing:112.909691pt;}
.wsa7{word-spacing:114.516470pt;}
.wsa3{word-spacing:114.549944pt;}
.ws99{word-spacing:114.784266pt;}
.ws96{word-spacing:125.027482pt;}
.wsad{word-spacing:128.307988pt;}
.wsab{word-spacing:128.374938pt;}
.wsa6{word-spacing:273.973653pt;}
._6{margin-left:-5.844725pt;}
._3{margin-left:-4.399514pt;}
._10{margin-left:-3.145533pt;}
._7b{margin-left:-2.189169pt;}
._0{margin-left:-1.206462pt;}
._5{width:0.969929pt;}
._1{width:2.664204pt;}
._1f{width:3.690858pt;}
._1e{width:4.721180pt;}
._1d{width:5.702090pt;}
._20{width:6.804492pt;}
._22{width:7.857522pt;}
._17{width:8.771356pt;}
._1b{width:10.259915pt;}
._1a{width:11.254451pt;}
._19{width:12.162894pt;}
._2{width:13.963674pt;}
._4{width:15.685222pt;}
._14{width:16.702706pt;}
._21{width:17.627841pt;}
._23{width:18.660393pt;}
._16{width:19.590780pt;}
._15{width:21.131662pt;}
._a{width:22.050555pt;}
._c{width:23.155769pt;}
._d{width:24.357212pt;}
._7a{width:25.823232pt;}
._13{width:26.832603pt;}
._26{width:28.430129pt;}
._79{width:29.754965pt;}
._f{width:31.455249pt;}
._8{width:32.571060pt;}
._77{width:34.165076pt;}
._1c{width:35.192931pt;}
._9{width:37.671911pt;}
._b{width:39.356579pt;}
._7{width:44.738716pt;}
._e{width:53.824607pt;}
._25{width:55.546770pt;}
._58{width:63.133020pt;}
._62{width:78.110672pt;}
._28{width:79.871990pt;}
._73{width:83.592441pt;}
._2b{width:86.619175pt;}
._41{width:89.845943pt;}
._37{width:91.247606pt;}
._3b{width:92.845212pt;}
._47{width:94.246907pt;}
._53{width:95.913727pt;}
._4a{width:98.007855pt;}
._56{width:103.960379pt;}
._48{width:110.250677pt;}
._49{width:113.003650pt;}
._68{width:118.578904pt;}
._65{width:121.356504pt;}
._5b{width:122.851635pt;}
._76{width:123.755991pt;}
._54{width:131.981202pt;}
._3a{width:132.898875pt;}
._72{width:134.935951pt;}
._3f{width:135.893712pt;}
._38{width:137.917484pt;}
._51{width:142.917544pt;}
._4b{width:145.516045pt;}
._4c{width:148.921964pt;}
._5a{width:154.284247pt;}
._71{width:165.766021pt;}
._33{width:168.513110pt;}
._2e{width:169.417626pt;}
._3e{width:171.217772pt;}
._2d{width:175.615849pt;}
._42{width:178.925341pt;}
._43{width:181.528944pt;}
._3c{width:185.978414pt;}
._31{width:188.576915pt;}
._64{width:190.396529pt;}
._32{width:192.044013pt;}
._29{width:197.035297pt;}
._70{width:199.715331pt;}
._4d{width:201.106344pt;}
._6b{width:202.286766pt;}
._4e{width:205.092910pt;}
._52{width:208.980263pt;}
._74{width:210.549889pt;}
._55{width:216.197178pt;}
._4f{width:221.206661pt;}
._50{width:224.500622pt;}
._45{width:228.296856pt;}
._46{width:230.800986pt;}
._67{width:231.710904pt;}
._6c{width:233.016412pt;}
._44{width:237.868148pt;}
._39{width:239.141714pt;}
._40{width:241.054325pt;}
._3d{width:242.956249pt;}
._2c{width:249.917484pt;}
._6d{width:251.561318pt;}
._2a{width:260.506329pt;}
._66{width:262.507500pt;}
._5c{width:267.361311pt;}
._6f{width:269.269361pt;}
._63{width:270.374021pt;}
._5e{width:271.378258pt;}
._5f{width:272.282071pt;}
._6a{width:276.131645pt;}
._57{width:277.174735pt;}
._61{width:278.441390pt;}
._75{width:279.713423pt;}
._2f{width:282.505759pt;}
._6e{width:300.668498pt;}
._59{width:302.086423pt;}
._5d{width:305.321462pt;}
._69{width:306.928241pt;}
._30{width:318.502245pt;}
._36{width:319.615888pt;}
._34{width:323.082697pt;}
._35{width:336.691751pt;}
._60{width:357.474826pt;}
._11{width:682.175141pt;}
._78{width:1356.950624pt;}
._27{width:1384.733118pt;}
._24{width:1412.669044pt;}
._18{width:1453.428950pt;}
._7c{width:1762.368225pt;}
._12{width:1783.621558pt;}
.fs17{font-size:21.120800pt;}
.fs19{font-size:26.035520pt;}
.fsd{font-size:30.913218pt;}
.fs1a{font-size:31.880533pt;}
.fs12{font-size:32.641265pt;}
.fs18{font-size:33.474560pt;}
.fs16{font-size:37.121440pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs1b{font-size:42.023968pt;}
.fs1f{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs13{font-size:42.881600pt;}
.fsf{font-size:43.739232pt;}
.fs9{font-size:45.025680pt;}
.fs1c{font-size:47.041960pt;}
.fs5{font-size:47.820800pt;}
.fs14{font-size:48.002000pt;}
.fs10{font-size:48.962040pt;}
.fse{font-size:49.829333pt;}
.fsa{font-size:50.402100pt;}
.fs1e{font-size:52.059560pt;}
.fs15{font-size:53.122000pt;}
.fs1{font-size:53.133867pt;}
.fs11{font-size:54.184440pt;}
.fs20{font-size:55.365867pt;}
.fsb{font-size:55.778100pt;}
.fsc{font-size:61.826520pt;}
.fs1d{font-size:62.722356pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:120.948480pt;}
.ya7{bottom:-681.443892pt;}
.ye4{bottom:-663.523970pt;}
.ye3{bottom:-657.123946pt;}
.ye2{bottom:-638.243941pt;}
.ye1{bottom:-632.003951pt;}
.ye0{bottom:-613.123946pt;}
.ydf{bottom:-606.883956pt;}
.yde{bottom:-588.003951pt;}
.ydd{bottom:-575.363936pt;}
.ydc{bottom:-562.723921pt;}
.yda{bottom:-556.483931pt;}
.ydb{bottom:-550.083968pt;}
.yd9{bottom:-537.603926pt;}
.yd8{bottom:-524.963912pt;}
.yd7{bottom:-512.323958pt;}
.yd6{bottom:-499.843917pt;}
.yd5{bottom:-487.203963pt;}
.yd4{bottom:-474.563948pt;}
.yd3{bottom:-462.083968pt;}
.yd2{bottom:-449.443953pt;}
.yd1{bottom:-436.803939pt;}
.y7d{bottom:-428.616130pt;}
.yd0{bottom:-424.163924pt;}
.ycf{bottom:-417.923934pt;}
.ya1{bottom:-407.400205pt;}
.yce{bottom:-399.043929pt;}
.ycc{bottom:-392.803939pt;}
.ya0{bottom:-389.121760pt;}
.ycd{bottom:-386.403914pt;}
.ycb{bottom:-373.923934pt;}
.y9f{bottom:-370.843378pt;}
.yca{bottom:-367.523970pt;}
.y139{bottom:-356.133201pt;}
.y9e{bottom:-352.401760pt;}
.yc9{bottom:-348.643965pt;}
.yc8{bottom:-342.403914pt;}
.y9d{bottom:-334.123378pt;}
.yc7{bottom:-323.523970pt;}
.yc6{bottom:-317.123946pt;}
.y148{bottom:-316.462821pt;}
.y9c{bottom:-315.681760pt;}
.y147{bottom:-298.901237pt;}
.yc5{bottom:-298.243941pt;}
.y9b{bottom:-297.403378pt;}
.yc4{bottom:-292.003951pt;}
.y146{bottom:-281.182821pt;}
.y9a{bottom:-278.961760pt;}
.yc3{bottom:-273.123946pt;}
.y145{bottom:-263.621237pt;}
.y99{bottom:-260.683378pt;}
.yc2{bottom:-260.483931pt;}
.yc1{bottom:-248.003951pt;}
.y98{bottom:-242.404995pt;}
.y144{bottom:-238.219654pt;}
.yc0{bottom:-235.363936pt;}
.y97{bottom:-223.963378pt;}
.ybf{bottom:-222.723921pt;}
.ybe{bottom:-210.243941pt;}
.y96{bottom:-205.684995pt;}
.y143{bottom:-204.821237pt;}
.ybd{bottom:-197.603926pt;}
.ybc{bottom:-191.363936pt;}
.y142{bottom:-187.259654pt;}
.y95{bottom:-187.243378pt;}
.ybb{bottom:-171.683943pt;}
.y141{bottom:-169.541237pt;}
.y94{bottom:-168.964995pt;}
.yb8{bottom:-165.443953pt;}
.yb7{bottom:-159.203963pt;}
.yb9{bottom:-152.803939pt;}
.y140{bottom:-151.979654pt;}
.y93{bottom:-150.523378pt;}
.yba{bottom:-146.563948pt;}
.y13f{bottom:-134.261237pt;}
.y50{bottom:-133.813287pt;}
.y92{bottom:-132.244995pt;}
.yb6{bottom:-123.843947pt;}
.y13e{bottom:-116.699654pt;}
.y91{bottom:-113.966551pt;}
.yb5{bottom:-106.403945pt;}
.y90{bottom:-95.524995pt;}
.y13d{bottom:-91.298071pt;}
.y71{bottom:-76.021310pt;}
.yb4{bottom:-73.123946pt;}
.y8f{bottom:-61.416192pt;}
.y13c{bottom:-57.899654pt;}
.y70{bottom:-57.709308pt;}
.yb3{bottom:-55.843947pt;}
.y8e{bottom:-43.790563pt;}
.y6f{bottom:-39.565341pt;}
.yb2{bottom:-38.403945pt;}
.y13b{bottom:-25.128451pt;}
.y8d{bottom:-21.432180pt;}
.y6e{bottom:-21.421310pt;}
.yb1{bottom:-21.123946pt;}
.y13a{bottom:-3.803642pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:0.636064pt;}
.y6d{bottom:1.426636pt;}
.y11{bottom:3.044747pt;}
.y10{bottom:12.578910pt;}
.y2{bottom:13.797366pt;}
.y30{bottom:56.693333pt;}
.y76{bottom:93.702667pt;}
.y2f{bottom:96.544000pt;}
.y113{bottom:99.186667pt;}
.y168{bottom:102.933333pt;}
.y75{bottom:108.466667pt;}
.y136{bottom:109.441333pt;}
.y74{bottom:110.798667pt;}
.y137{bottom:113.638667pt;}
.y2e{bottom:114.556000pt;}
.y112{bottom:117.200000pt;}
.y167{bottom:120.945333pt;}
.y135{bottom:127.454667pt;}
.y73{bottom:127.893333pt;}
.y1c1{bottom:131.281333pt;}
.y2d{bottom:132.568000pt;}
.y111{bottom:135.212000pt;}
.y18e{bottom:137.628000pt;}
.y166{bottom:138.958667pt;}
.yaf{bottom:143.516054pt;}
.y72{bottom:144.989333pt;}
.y134{bottom:145.466667pt;}
.y1c0{bottom:148.497333pt;}
.y2c{bottom:150.581333pt;}
.y110{bottom:153.225333pt;}
.y18d{bottom:154.844000pt;}
.y164{bottom:156.970667pt;}
.yae{bottom:161.436052pt;}
.y165{bottom:161.792000pt;}
.y133{bottom:163.478667pt;}
.y4e{bottom:164.926667pt;}
.y1bf{bottom:165.713333pt;}
.y2b{bottom:168.593333pt;}
.y18c{bottom:172.058667pt;}
.y163{bottom:174.982667pt;}
.y10f{bottom:179.208000pt;}
.yad{bottom:179.516054pt;}
.y132{bottom:181.492000pt;}
.y1be{bottom:182.928000pt;}
.y2a{bottom:186.606667pt;}
.y18b{bottom:189.274667pt;}
.yac{bottom:197.436052pt;}
.y131{bottom:199.504000pt;}
.y1bd{bottom:200.144000pt;}
.y162{bottom:200.965333pt;}
.y29{bottom:204.618667pt;}
.y18a{bottom:206.490667pt;}
.yab{bottom:215.516054pt;}
.y1bc{bottom:217.358667pt;}
.y130{bottom:217.517333pt;}
.y28{bottom:222.630667pt;}
.y189{bottom:223.705333pt;}
.y161{bottom:231.916000pt;}
.y10e{bottom:232.952000pt;}
.yaa{bottom:233.436052pt;}
.y1bb{bottom:234.574667pt;}
.y12f{bottom:235.529333pt;}
.y27{bottom:240.644000pt;}
.y188{bottom:240.921333pt;}
.y10d{bottom:246.111067pt;}
.y160{bottom:249.929333pt;}
.ya9{bottom:251.516054pt;}
.y1ba{bottom:251.790667pt;}
.y12e{bottom:253.541333pt;}
.y10c{bottom:256.385200pt;}
.y187{bottom:258.136000pt;}
.y26{bottom:258.656000pt;}
.y10b{bottom:266.660267pt;}
.y15f{bottom:267.941333pt;}
.y1b9{bottom:269.005333pt;}
.ya8{bottom:269.436059pt;}
.y12d{bottom:271.554667pt;}
.y186{bottom:275.352000pt;}
.y25{bottom:276.669333pt;}
.y10a{bottom:276.935333pt;}
.y8c{bottom:284.404616pt;}
.y15e{bottom:285.954667pt;}
.y1b8{bottom:286.221333pt;}
.y109{bottom:287.210400pt;}
.y12c{bottom:289.566667pt;}
.y185{bottom:292.568000pt;}
.y24{bottom:294.681333pt;}
.y108{bottom:297.484533pt;}
.ya6{bottom:302.556062pt;}
.y8b{bottom:302.846233pt;}
.y1b7{bottom:303.437333pt;}
.y15d{bottom:303.966667pt;}
.y12b{bottom:307.580000pt;}
.y107{bottom:307.759600pt;}
.y184{bottom:309.782667pt;}
.y23{bottom:312.693333pt;}
.y6c{bottom:312.730679pt;}
.y106{bottom:318.034667pt;}
.y1b6{bottom:320.652000pt;}
.y8a{bottom:321.124616pt;}
.y15c{bottom:321.978667pt;}
.y12a{bottom:325.592000pt;}
.y183{bottom:326.998667pt;}
.y105{bottom:328.309733pt;}
.y22{bottom:330.706667pt;}
.y6b{bottom:331.546662pt;}
.y1b5{bottom:337.868000pt;}
.y104{bottom:338.583867pt;}
.y89{bottom:339.403030pt;}
.y15a{bottom:339.992000pt;}
.y129{bottom:343.604000pt;}
.y182{bottom:344.213333pt;}
.y15b{bottom:344.813333pt;}
.y21{bottom:348.718667pt;}
.y103{bottom:348.858933pt;}
.y6a{bottom:350.362644pt;}
.y1b4{bottom:355.082667pt;}
.y88{bottom:357.844616pt;}
.y159{bottom:358.004000pt;}
.y102{bottom:359.134000pt;}
.y181{bottom:361.429333pt;}
.y128{bottom:361.617333pt;}
.y20{bottom:366.732000pt;}
.y69{bottom:369.346662pt;}
.y101{bottom:369.409067pt;}
.y1b3{bottom:372.298667pt;}
.y158{bottom:376.017333pt;}
.y87{bottom:376.123030pt;}
.y180{bottom:378.645333pt;}
.y127{bottom:379.629333pt;}
.y100{bottom:379.683200pt;}
.ya4{bottom:384.744000pt;}
.y68{bottom:388.162644pt;}
.y1b2{bottom:389.514667pt;}
.yff{bottom:389.958267pt;}
.y1f{bottom:392.714667pt;}
.y156{bottom:394.029333pt;}
.y86{bottom:394.564616pt;}
.y17f{bottom:395.860000pt;}
.y126{bottom:397.642667pt;}
.y157{bottom:398.850667pt;}
.yfe{bottom:400.233333pt;}
.y1b1{bottom:406.729333pt;}
.y67{bottom:407.146662pt;}
.yfd{bottom:410.508400pt;}
.y155{bottom:412.041333pt;}
.y85{bottom:412.843015pt;}
.y17e{bottom:413.076000pt;}
.ya3{bottom:415.329333pt;}
.y125{bottom:415.654667pt;}
.yfc{bottom:420.782533pt;}
.y1b0{bottom:423.945333pt;}
.y66{bottom:425.962644pt;}
.y17d{bottom:430.290667pt;}
.yfb{bottom:431.057600pt;}
.y84{bottom:431.121413pt;}
.ya2{bottom:432.425333pt;}
.y124{bottom:433.666667pt;}
.y154{bottom:438.024000pt;}
.y1af{bottom:441.160000pt;}
.yfa{bottom:441.332667pt;}
.y65{bottom:444.946662pt;}
.y83{bottom:449.563015pt;}
.yf9{bottom:451.607733pt;}
.y123{bottom:451.680000pt;}
.y7b{bottom:452.362667pt;}
.y17c{bottom:455.477333pt;}
.y1ae{bottom:458.376000pt;}
.y1e{bottom:460.632000pt;}
.yf8{bottom:461.881867pt;}
.y64{bottom:463.762675pt;}
.y82{bottom:467.841413pt;}
.y153{bottom:468.974667pt;}
.y122{bottom:469.692000pt;}
.y4d{bottom:471.870667pt;}
.yf7{bottom:472.156933pt;}
.y1ad{bottom:475.592000pt;}
.y1d{bottom:478.645333pt;}
.yf6{bottom:482.432000pt;}
.y63{bottom:482.578657pt;}
.y81{bottom:486.283015pt;}
.y152{bottom:486.988000pt;}
.y121{bottom:487.704000pt;}
.y4c{bottom:489.884000pt;}
.y17b{bottom:490.545333pt;}
.yf5{bottom:492.707067pt;}
.y1ac{bottom:492.806667pt;}
.y62{bottom:501.562675pt;}
.yf4{bottom:502.981200pt;}
.y80{bottom:504.561413pt;}
.y151{bottom:505.000000pt;}
.y120{bottom:505.717333pt;}
.y4b{bottom:507.896000pt;}
.y1ab{bottom:510.022667pt;}
.y17a{bottom:512.025333pt;}
.y1c{bottom:512.597333pt;}
.yf3{bottom:513.256267pt;}
.y61{bottom:520.378657pt;}
.y7f{bottom:523.003015pt;}
.y150{bottom:523.013333pt;}
.yf2{bottom:523.531333pt;}
.y11f{bottom:523.729333pt;}
.y4a{bottom:525.908000pt;}
.y1aa{bottom:527.237333pt;}
.y1b{bottom:530.610667pt;}
.y179{bottom:533.504000pt;}
.yf1{bottom:533.806400pt;}
.y14f{bottom:541.025333pt;}
.y7e{bottom:541.281420pt;}
.y11e{bottom:541.742667pt;}
.y49{bottom:543.921333pt;}
.yf0{bottom:544.080533pt;}
.y1a9{bottom:544.453333pt;}
.y178{bottom:547.013333pt;}
.y60{bottom:547.762675pt;}
.y1a{bottom:548.622667pt;}
.yef{bottom:554.355600pt;}
.y14e{bottom:559.037333pt;}
.y11d{bottom:559.754667pt;}
.y177{bottom:560.522667pt;}
.y1a7{bottom:561.669333pt;}
.y48{bottom:561.933333pt;}
.yee{bottom:564.630667pt;}
.y1a8{bottom:566.008000pt;}
.y19{bottom:566.636000pt;}
.yed{bottom:574.905733pt;}
.y7c{bottom:575.063823pt;}
.y11c{bottom:577.766667pt;}
.y1a6{bottom:578.884000pt;}
.y47{bottom:579.945333pt;}
.y176{bottom:582.002667pt;}
.y5f{bottom:583.378657pt;}
.y18{bottom:584.648000pt;}
.y14d{bottom:585.020000pt;}
.yeb{bottom:589.615067pt;}
.yea{bottom:594.729733pt;}
.y174{bottom:595.512000pt;}
.y11b{bottom:595.780000pt;}
.y1a5{bottom:596.100000pt;}
.y46{bottom:597.958667pt;}
.yec{bottom:599.843467pt;}
.y175{bottom:599.852000pt;}
.y17{bottom:602.660000pt;}
.y138{bottom:608.186754pt;}
.y173{bottom:610.994667pt;}
.y1a4{bottom:613.314667pt;}
.y11a{bottom:613.792000pt;}
.y45{bottom:615.970667pt;}
.y5e{bottom:619.162675pt;}
.y16{bottom:620.673333pt;}
.ye9{bottom:623.446667pt;}
.y172{bottom:624.504000pt;}
.y1a3{bottom:630.530667pt;}
.y119{bottom:631.805333pt;}
.y44{bottom:633.984000pt;}
.y5d{bottom:637.978657pt;}
.y170{bottom:638.014667pt;}
.y15{bottom:638.685333pt;}
.ye8{bottom:640.542667pt;}
.y171{bottom:642.353333pt;}
.y1a2{bottom:647.746667pt;}
.y118{bottom:649.817333pt;}
.y43{bottom:651.996000pt;}
.y16f{bottom:653.497333pt;}
.y14{bottom:656.698667pt;}
.y5c{bottom:656.794672pt;}
.y1a1{bottom:664.961333pt;}
.ye7{bottom:666.937333pt;}
.y117{bottom:667.829333pt;}
.y42{bottom:670.008000pt;}
.y13{bottom:674.710667pt;}
.y5b{bottom:675.778657pt;}
.y1a0{bottom:682.177333pt;}
.y16e{bottom:682.946667pt;}
.ye6{bottom:684.032000pt;}
.y116{bottom:685.842667pt;}
.y14c{bottom:688.021333pt;}
.y12{bottom:692.722667pt;}
.y5a{bottom:694.594672pt;}
.y41{bottom:695.990667pt;}
.y19f{bottom:699.392000pt;}
.y16d{bottom:700.958667pt;}
.ye5{bottom:701.128000pt;}
.y115{bottom:703.854667pt;}
.y14b{bottom:706.033333pt;}
.y59{bottom:713.578657pt;}
.y19e{bottom:716.608000pt;}
.y16c{bottom:718.972000pt;}
.ya5{bottom:721.065333pt;}
.yf{bottom:721.216048pt;}
.ye{bottom:721.565333pt;}
.y114{bottom:721.868000pt;}
.y40{bottom:726.941333pt;}
.y14a{bottom:732.016000pt;}
.y58{bottom:732.394656pt;}
.y19d{bottom:733.824000pt;}
.y16b{bottom:736.984000pt;}
.y7a{bottom:739.880000pt;}
.y19c{bottom:751.038667pt;}
.y57{bottom:751.210654pt;}
.yd{bottom:756.564000pt;}
.y3f{bottom:757.892000pt;}
.y149{bottom:762.966667pt;}
.y19b{bottom:768.254667pt;}
.y56{bottom:770.194656pt;}
.y3e{bottom:775.905333pt;}
.yc{bottom:777.042667pt;}
.y79{bottom:780.726667pt;}
.y19a{bottom:785.469333pt;}
.yb{bottom:788.842667pt;}
.y55{bottom:789.010654pt;}
.y3d{bottom:793.917333pt;}
.y199{bottom:802.685333pt;}
.ya{bottom:804.982667pt;}
.y54{bottom:807.994656pt;}
.y3c{bottom:811.930667pt;}
.y16a{bottom:816.752000pt;}
.y198{bottom:819.901333pt;}
.y9{bottom:825.461333pt;}
.y53{bottom:826.810654pt;}
.y3b{bottom:829.942667pt;}
.y197{bottom:837.116000pt;}
.y8{bottom:842.229333pt;}
.y52{bottom:845.794656pt;}
.y3a{bottom:847.954667pt;}
.y196{bottom:854.332000pt;}
.y7{bottom:860.241333pt;}
.y51{bottom:864.610662pt;}
.y39{bottom:865.968000pt;}
.y195{bottom:871.546667pt;}
.y1c4{bottom:876.689333pt;}
.y38{bottom:883.980000pt;}
.y194{bottom:888.762667pt;}
.y169{bottom:888.802667pt;}
.y1c3{bottom:893.904000pt;}
.y6{bottom:898.178667pt;}
.y4f{bottom:899.386665pt;}
.y37{bottom:901.993333pt;}
.y193{bottom:905.978667pt;}
.y1c2{bottom:911.120000pt;}
.y36{bottom:920.005333pt;}
.y192{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y35{bottom:938.017333pt;}
.y191{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y78{bottom:953.604000pt;}
.y34{bottom:956.030667pt;}
.y190{bottom:957.624000pt;}
.y33{bottom:974.042667pt;}
.y18f{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y77{bottom:978.865333pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h3e{height:-540.323958pt;}
.h3d{height:-502.563948pt;}
.h3c{height:-464.803939pt;}
.h3a{height:-376.643965pt;}
.h35{height:-250.723921pt;}
.h33{height:-212.963912pt;}
.hb{height:22.673858pt;}
.h44{height:23.209028pt;}
.h42{height:24.202107pt;}
.h43{height:24.570327pt;}
.h9{height:27.076941pt;}
.h34{height:27.097926pt;}
.h32{height:27.206680pt;}
.h2f{height:27.333560pt;}
.h4e{height:28.023859pt;}
.h1d{height:29.397999pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h47{height:30.943430pt;}
.h41{height:30.975681pt;}
.h10{height:31.200285pt;}
.h26{height:31.574928pt;}
.h1f{height:32.206427pt;}
.h48{height:32.662923pt;}
.h12{height:33.153675pt;}
.h1c{height:33.186336pt;}
.h27{height:33.329514pt;}
.h20{height:33.996104pt;}
.h1a{height:34.574438pt;}
.h4a{height:34.638318pt;}
.ha{height:34.813542pt;}
.h13{height:34.995989pt;}
.h2a{height:35.040522pt;}
.h1b{height:35.100467pt;}
.h2c{height:35.181153pt;}
.h2b{height:35.345223pt;}
.h23{height:35.741333pt;}
.h24{height:36.052127pt;}
.h50{height:36.873667pt;}
.h19{height:36.940211pt;}
.h45{height:37.087439pt;}
.h18{height:37.112484pt;}
.h4d{height:38.002462pt;}
.h4c{height:38.154980pt;}
.h4b{height:38.332918pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h28{height:38.778022pt;}
.h29{height:38.933653pt;}
.h4{height:39.000258pt;}
.h22{height:39.553583pt;}
.h21{height:39.712326pt;}
.h15{height:40.716924pt;}
.h14{height:40.880336pt;}
.h16{height:41.070984pt;}
.h51{height:44.436941pt;}
.h40{height:44.657040pt;}
.h2{height:45.250690pt;}
.h49{height:45.786095pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h4f{height:48.930957pt;}
.h31{height:52.057886pt;}
.h37{height:52.058130pt;}
.h36{height:52.166640pt;}
.h3b{height:52.166644pt;}
.h38{height:52.166884pt;}
.h39{height:52.697782pt;}
.h30{height:52.698022pt;}
.h3f{height:52.698026pt;}
.h2d{height:52.933656pt;}
.h17{height:61.494444pt;}
.h5{height:69.148877pt;}
.h6{height:69.435802pt;}
.h2e{height:77.893616pt;}
.h3{height:82.003069pt;}
.h25{height:123.888000pt;}
.h1e{height:267.027840pt;}
.h11{height:290.812200pt;}
.h46{height:588.746107pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:-9.978003pt;}
.w8{width:-8.218001pt;}
.wc{width:-1.497999pt;}
.w9{width:1.222002pt;}
.we{width:1.382005pt;}
.wd{width:3.142000pt;}
.wa{width:4.639999pt;}
.wf{width:4.640000pt;}
.w10{width:23.679993pt;}
.wb{width:25.280030pt;}
.w3{width:66.991004pt;}
.w2{width:223.707652pt;}
.w5{width:241.296640pt;}
.w4{width:355.612600pt;}
.w11{width:454.148987pt;}
.w6{width:527.508667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x39{left:-179.488718pt;}
.x3a{left:-150.602326pt;}
.x20{left:-131.472598pt;}
.x21{left:-101.736606pt;}
.x71{left:-60.195518pt;}
.x74{left:-32.441926pt;}
.x3c{left:-30.777998pt;}
.x3f{left:-21.658003pt;}
.x4a{left:-20.697996pt;}
.x4e{left:-18.777998pt;}
.x48{left:-11.258002pt;}
.x49{left:-8.218001pt;}
.x3e{left:-2.458006pt;}
.x4f{left:-1.497999pt;}
.x0{left:0.000000pt;}
.x40{left:24.582002pt;}
.x7{left:26.021437pt;}
.x2{left:51.622239pt;}
.x73{left:82.649276pt;}
.x47{left:84.582002pt;}
.x50{left:94.502001pt;}
.x4b{left:100.421999pt;}
.x1{left:102.046667pt;}
.x5{left:108.541333pt;}
.x3{left:109.605333pt;}
.x51{left:122.383067pt;}
.x58{left:123.697200pt;}
.x59{left:124.772400pt;}
.x4{left:129.929333pt;}
.x26{left:133.948000pt;}
.x1c{left:140.001333pt;}
.x27{left:141.922667pt;}
.x1d{left:153.284000pt;}
.x1e{left:156.562667pt;}
.x1a{left:159.048000pt;}
.x2f{left:161.914667pt;}
.x95{left:166.369333pt;}
.x8{left:169.778667pt;}
.x1b{left:172.332000pt;}
.x94{left:173.498667pt;}
.x9{left:178.929333pt;}
.x23{left:181.116000pt;}
.x5a{left:182.424000pt;}
.x30{left:183.716000pt;}
.x5f{left:187.856000pt;}
.x31{left:194.474667pt;}
.x7a{left:196.058667pt;}
.x60{left:201.140000pt;}
.x32{left:205.502667pt;}
.x7b{left:209.341333pt;}
.x33{left:211.214667pt;}
.x1f{left:219.044000pt;}
.x34{left:221.645333pt;}
.xa0{left:224.086667pt;}
.xa2{left:225.868000pt;}
.x35{left:230.694667pt;}
.x41{left:232.582002pt;}
.xa1{left:236.016000pt;}
.x3b{left:241.567285pt;}
.x61{left:242.673333pt;}
.x6f{left:244.328000pt;}
.x93{left:247.833333pt;}
.x63{left:248.934667pt;}
.x70{left:250.970667pt;}
.x62{left:255.957333pt;}
.x64{left:262.217333pt;}
.x6b{left:264.076000pt;}
.x6a{left:265.206667pt;}
.x6c{left:272.877333pt;}
.x38{left:276.201333pt;}
.x8f{left:284.573333pt;}
.x81{left:292.352000pt;}
.x91{left:296.641333pt;}
.x90{left:297.856000pt;}
.x5d{left:299.393333pt;}
.x8b{left:306.481333pt;}
.x82{left:308.668000pt;}
.x92{left:309.925333pt;}
.x5e{left:312.677333pt;}
.x43{left:318.981996pt;}
.x86{left:323.520000pt;}
.x68{left:326.353333pt;}
.x42{left:330.342012pt;}
.x87{left:335.038667pt;}
.x18{left:336.181333pt;}
.x69{left:339.637333pt;}
.x19{left:342.824000pt;}
.x28{left:345.301333pt;}
.x22{left:357.575428pt;}
.x65{left:370.353333pt;}
.x75{left:371.474667pt;}
.x12{left:380.884000pt;}
.x6d{left:383.528000pt;}
.x76{left:384.757333pt;}
.x13{left:387.526667pt;}
.x52{left:392.481333pt;}
.x14{left:394.301333pt;}
.x6e{left:396.812000pt;}
.x15{left:400.942667pt;}
.x29{left:404.926667pt;}
.x44{left:406.022005pt;}
.x2a{left:413.558667pt;}
.x78{left:416.709333pt;}
.x77{left:418.098667pt;}
.x66{left:421.120000pt;}
.x2d{left:425.234667pt;}
.x79{left:429.993333pt;}
.x67{left:434.404000pt;}
.x2e{left:435.645333pt;}
.x8c{left:439.050667pt;}
.x8d{left:444.762667pt;}
.x4d{left:446.662020pt;}
.x72{left:461.634878pt;}
.x54{left:462.570000pt;}
.x88{left:464.633333pt;}
.x53{left:473.207200pt;}
.xe{left:481.384000pt;}
.xf{left:488.025333pt;}
.x46{left:489.222017pt;}
.x10{left:491.412000pt;}
.x11{left:498.054667pt;}
.x45{left:500.582002pt;}
.x24{left:503.790667pt;}
.x36{left:509.134667pt;}
.x25{left:513.092000pt;}
.x37{left:514.846667pt;}
.x98{left:520.002667pt;}
.x3d{left:528.582002pt;}
.x55{left:531.460267pt;}
.x99{left:543.913333pt;}
.x8e{left:548.416000pt;}
.x4c{left:554.478657pt;}
.x7d{left:557.666667pt;}
.x83{left:567.069333pt;}
.x7e{left:570.949333pt;}
.x84{left:573.118667pt;}
.x2b{left:576.241333pt;}
.x7f{left:577.724000pt;}
.x2c{left:586.113333pt;}
.x80{left:591.008000pt;}
.x16{left:598.300000pt;}
.x9a{left:600.133333pt;}
.x9d{left:605.666667pt;}
.x17{left:611.584000pt;}
.x9e{left:615.629333pt;}
.x57{left:620.812000pt;}
.x6{left:623.413317pt;}
.x56{left:631.448267pt;}
.x9b{left:646.910667pt;}
.x96{left:648.102667pt;}
.x7c{left:653.428000pt;}
.x5b{left:656.202667pt;}
.x85{left:660.392000pt;}
.xa{left:666.466667pt;}
.x5c{left:669.485333pt;}
.x9c{left:670.820000pt;}
.x97{left:672.013333pt;}
.xb{left:673.109333pt;}
.x89{left:676.148000pt;}
.xc{left:679.677333pt;}
.x8a{left:682.198667pt;}
.xd{left:686.318667pt;}
.x9f{left:690.174667pt;}
}




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