
    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_e7ce025bd098103d59731038.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ccce48e6b6ac049928eda417.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_78dab2d581832cd4dacfa4fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35aa9fd36d6b24dd769b828e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;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_e158f3f6ca5278bc699b97e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.190000;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_ee9ef498f6b3c37b7e1bfc90.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_81dc970a4c58a598d7a369bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_62d29bbc2772e40cc8d595dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006836;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_20374c0f902bbf0252539c79.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_20782af3fb1a15337ef608de.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a6863fe7c93f3e7b3e70cdcc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_2360992f9f32eb49bf6ac0cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740000;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_ca42a297da3d961d246267d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_75cfbf4d452ed78ca251f686.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006836;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_6a3853679426da4802a67959.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_3141d81203204265408f0ca6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_d0571a7b27d3688c692f0dc5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_c3fed86c6280829212be2d96.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_20782af3fb1a15337ef608de.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ca42a297da3d961d246267d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_84babd9dd1af9cfbc588b821.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006836;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_5d920f327efd00de8e1b08c8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;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_e3a37b2baeed1106312c3419.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.933594;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_20782af3fb1a15337ef608de.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ef7de908165111e5302fbf8f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.734000;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_66b07df8b4fb56218aca0eed.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.663000;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;}
.mc{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);}
.m16{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);}
.m7{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);}
.m18{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{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);}
.ma{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);}
.m3{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);}
.me{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);}
.mf{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);}
.m22{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);}
.mb{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);}
.m1e{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);}
.m2{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);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m20{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);}
.m25{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);}
.m12{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);}
.m11{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);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m15{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);}
.m23{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);}
.m19{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);}
.m10{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);}
.m17{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);}
.m21{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);}
.m14{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);}
.m28{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);}
.m24{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);}
.m1d{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);}
.m26{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);}
.m9{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);}
.m1a{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);}
.m5{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);}
.m1b{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);}
.m4{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);}
.m27{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);}
.m8{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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v7{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.268000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:28.398000px;}
.v3{vertical-align:31.308000px;}
.v4{vertical-align:32.874000px;}
.ls56{letter-spacing:-4.325400px;}
.ls2e{letter-spacing:-0.338580px;}
.ls29{letter-spacing:-0.145490px;}
.ls31{letter-spacing:-0.142560px;}
.ls28{letter-spacing:-0.112424px;}
.ls23{letter-spacing:-0.099198px;}
.ls30{letter-spacing:-0.089100px;}
.ls24{letter-spacing:-0.079358px;}
.ls5c{letter-spacing:-0.075600px;}
.ls2b{letter-spacing:-0.071280px;}
.ls1f{letter-spacing:-0.052906px;}
.ls5b{letter-spacing:-0.048600px;}
.ls2c{letter-spacing:-0.047520px;}
.ls1d{letter-spacing:-0.042134px;}
.ls2f{letter-spacing:-0.041580px;}
.ls22{letter-spacing:-0.039679px;}
.ls27{letter-spacing:-0.033066px;}
.ls5a{letter-spacing:-0.032400px;}
.ls55{letter-spacing:-0.030060px;}
.ls58{letter-spacing:-0.027000px;}
.ls26{letter-spacing:-0.026453px;}
.ls54{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.019840px;}
.ls1e{letter-spacing:-0.015800px;}
.ls2a{letter-spacing:-0.011880px;}
.ls59{letter-spacing:-0.010800px;}
.ls20{letter-spacing:-0.006613px;}
.ls53{letter-spacing:-0.006012px;}
.ls2d{letter-spacing:-0.005940px;}
.ls57{letter-spacing:-0.005400px;}
.ls52{letter-spacing:-0.004788px;}
.ls8{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000800px;}
.ls3b{letter-spacing:0.001939px;}
.ls35{letter-spacing:0.002096px;}
.ls3a{letter-spacing:0.002220px;}
.ls5f{letter-spacing:0.002338px;}
.ls36{letter-spacing:0.004090px;}
.ls4a{letter-spacing:0.005400px;}
.ls61{letter-spacing:0.005843px;}
.ls1b{letter-spacing:0.005940px;}
.ls15{letter-spacing:0.006613px;}
.ls51{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.013226px;}
.ls12{letter-spacing:0.019840px;}
.ls46{letter-spacing:0.021600px;}
.ls43{letter-spacing:0.024048px;}
.lse{letter-spacing:0.026453px;}
.ls4d{letter-spacing:0.027000px;}
.ls4e{letter-spacing:0.032400px;}
.lsf{letter-spacing:0.033066px;}
.ls49{letter-spacing:0.037800px;}
.ls17{letter-spacing:0.041580px;}
.ls44{letter-spacing:0.042084px;}
.ls45{letter-spacing:0.043200px;}
.ls14{letter-spacing:0.046292px;}
.ls16{letter-spacing:0.047520px;}
.lsc{letter-spacing:0.052906px;}
.ls4b{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.059400px;}
.ls25{letter-spacing:0.059519px;}
.ls41{letter-spacing:0.060120px;}
.lsd{letter-spacing:0.066132px;}
.ls4c{letter-spacing:0.070200px;}
.ls47{letter-spacing:0.075600px;}
.ls18{letter-spacing:0.077220px;}
.ls50{letter-spacing:0.081000px;}
.ls13{letter-spacing:0.092585px;}
.ls1a{letter-spacing:0.100980px;}
.ls48{letter-spacing:0.102600px;}
.ls11{letter-spacing:0.145490px;}
.ls19{letter-spacing:0.166320px;}
.ls40{letter-spacing:0.181944px;}
.lsb{letter-spacing:0.184338px;}
.ls3f{letter-spacing:0.191520px;}
.lsa{letter-spacing:0.200138px;}
.ls1{letter-spacing:2.983200px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls63{letter-spacing:13.294448px;}
.ls5d{letter-spacing:13.448400px;}
.ls5e{letter-spacing:13.454400px;}
.ls60{letter-spacing:13.538303px;}
.ls62{letter-spacing:13.556448px;}
.ls39{letter-spacing:14.943900px;}
.ls33{letter-spacing:14.944200px;}
.ls9{letter-spacing:15.063451px;}
.ls1c{letter-spacing:19.367294px;}
.ls42{letter-spacing:54.955692px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls3c{letter-spacing:94.143300px;}
.ls3e{letter-spacing:245.964845px;}
.ls3d{letter-spacing:247.471555px;}
.ls37{letter-spacing:276.635510px;}
.ls38{letter-spacing:290.087510px;}
.ls32{letter-spacing:397.485600px;}
.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;}
}
.ws76{word-spacing:-66.132000px;}
.ws78{word-spacing:-59.400000px;}
.wse9{word-spacing:-54.000000px;}
.wsc{word-spacing:-31.347956px;}
.ws77{word-spacing:-15.016320px;}
.wsb8{word-spacing:-14.943900px;}
.ws6a{word-spacing:-13.449600px;}
.ws73{word-spacing:-13.367138px;}
.ws74{word-spacing:-13.167000px;}
.wse7{word-spacing:-12.161520px;}
.wse8{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws10e{word-spacing:-3.477600px;}
.ws91{word-spacing:-3.128044px;}
.ws100{word-spacing:-3.083400px;}
.ws92{word-spacing:-2.691572px;}
.ws5f{word-spacing:-2.689902px;}
.ws106{word-spacing:-2.413800px;}
.ws105{word-spacing:-2.392200px;}
.wsd6{word-spacing:-2.391024px;}
.ws103{word-spacing:-2.359800px;}
.ws104{word-spacing:-2.327400px;}
.ws113{word-spacing:-2.044339px;}
.wsf5{word-spacing:-2.019600px;}
.wsf6{word-spacing:-1.971000px;}
.wsf7{word-spacing:-1.949400px;}
.wsdf{word-spacing:-1.936742px;}
.ws62{word-spacing:-1.853044px;}
.wsd7{word-spacing:-1.793268px;}
.ws32{word-spacing:-1.733492px;}
.wse0{word-spacing:-1.721549px;}
.ws110{word-spacing:-1.657800px;}
.wsb6{word-spacing:-1.554166px;}
.ws9a{word-spacing:-1.487970px;}
.ws36{word-spacing:-1.434614px;}
.ws2f{word-spacing:-1.315063px;}
.ws101{word-spacing:-1.296000px;}
.wseb{word-spacing:-1.291162px;}
.ws102{word-spacing:-1.285200px;}
.ws107{word-spacing:-1.279800px;}
.ws10f{word-spacing:-1.263600px;}
.ws79{word-spacing:-1.237363px;}
.ws126{word-spacing:-1.231650px;}
.wscb{word-spacing:-1.195512px;}
.ws8a{word-spacing:-1.051499px;}
.ws38{word-spacing:-1.016185px;}
.ws7a{word-spacing:-0.968371px;}
.ws45{word-spacing:-0.956410px;}
.ws109{word-spacing:-0.950400px;}
.ws46{word-spacing:-0.937191px;}
.ws108{word-spacing:-0.923400px;}
.ws127{word-spacing:-0.914573px;}
.ws4f{word-spacing:-0.896634px;}
.wsb7{word-spacing:-0.836858px;}
.ws4c{word-spacing:-0.777083px;}
.ws87{word-spacing:-0.720839px;}
.ws59{word-spacing:-0.717307px;}
.ws8f{word-spacing:-0.615028px;}
.ws8e{word-spacing:-0.588575px;}
.ws123{word-spacing:-0.537984px;}
.ws7d{word-spacing:-0.537980px;}
.wsd{word-spacing:-0.507253px;}
.ws2{word-spacing:-0.502114px;}
.ws11{word-spacing:-0.482166px;}
.ws10{word-spacing:-0.480024px;}
.wsf{word-spacing:-0.478205px;}
.ws25{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.322790px;}
.ws80{word-spacing:-0.300208px;}
.ws23{word-spacing:-0.298878px;}
.wsed{word-spacing:-0.277704px;}
.ws93{word-spacing:-0.271141px;}
.ws67{word-spacing:-0.268992px;}
.wsa9{word-spacing:-0.243540px;}
.ws2c{word-spacing:-0.239102px;}
.wsda{word-spacing:-0.215194px;}
.wsac{word-spacing:-0.201960px;}
.wsa8{word-spacing:-0.184140px;}
.ws4a{word-spacing:-0.179327px;}
.wsfb{word-spacing:-0.178200px;}
.wsfa{word-spacing:-0.162000px;}
.wsd9{word-spacing:-0.161395px;}
.wsab{word-spacing:-0.148500px;}
.wsaa{word-spacing:-0.124740px;}
.ws2a{word-spacing:-0.119551px;}
.ws1c{word-spacing:-0.107597px;}
.ws81{word-spacing:-0.084269px;}
.wsec{word-spacing:-0.081396px;}
.ws75{word-spacing:-0.066132px;}
.ws37{word-spacing:-0.059776px;}
.ws7f{word-spacing:-0.057935px;}
.wsea{word-spacing:-0.054000px;}
.wsbb{word-spacing:-0.053798px;}
.ws11e{word-spacing:-0.027600px;}
.ws12c{word-spacing:-0.006950px;}
.ws117{word-spacing:-0.001267px;}
.ws2d{word-spacing:-0.001125px;}
.ws11b{word-spacing:-0.000422px;}
.ws1{word-spacing:0.000000px;}
.wsc5{word-spacing:0.002026px;}
.wsc1{word-spacing:0.004426px;}
.ws94{word-spacing:0.006613px;}
.wsbf{word-spacing:0.006826px;}
.ws86{word-spacing:0.033066px;}
.ws83{word-spacing:0.046292px;}
.ws15{word-spacing:0.053798px;}
.wsf3{word-spacing:0.054108px;}
.ws24{word-spacing:0.059776px;}
.ws12{word-spacing:0.070186px;}
.wsf1{word-spacing:0.072144px;}
.ws95{word-spacing:0.072745px;}
.wsa3{word-spacing:0.079358px;}
.wsa0{word-spacing:0.085972px;}
.wsef{word-spacing:0.102204px;}
.ws85{word-spacing:0.105811px;}
.ws66{word-spacing:0.107597px;}
.wsfe{word-spacing:0.113400px;}
.wsa7{word-spacing:0.118800px;}
.ws31{word-spacing:0.119551px;}
.wsf0{word-spacing:0.120240px;}
.wsf2{word-spacing:0.126252px;}
.wsfd{word-spacing:0.129600px;}
.ws9e{word-spacing:0.132264px;}
.wsa4{word-spacing:0.138877px;}
.wsa5{word-spacing:0.148500px;}
.wsa6{word-spacing:0.154440px;}
.ws16{word-spacing:0.161395px;}
.wsfc{word-spacing:0.162000px;}
.wsff{word-spacing:0.167400px;}
.ws30{word-spacing:0.179327px;}
.wsb1{word-spacing:0.190080px;}
.ws13{word-spacing:0.191282px;}
.ws8d{word-spacing:0.198396px;}
.ws9d{word-spacing:0.211622px;}
.ws18{word-spacing:0.215194px;}
.ws10c{word-spacing:0.232200px;}
.ws33{word-spacing:0.239102px;}
.ws10d{word-spacing:0.259200px;}
.ws1d{word-spacing:0.268992px;}
.ws22{word-spacing:0.298878px;}
.wsd8{word-spacing:0.322790px;}
.ws39{word-spacing:0.358654px;}
.ws3a{word-spacing:0.418429px;}
.ws72{word-spacing:0.478205px;}
.ws9f{word-spacing:0.529056px;}
.ws2b{word-spacing:0.537980px;}
.ws7b{word-spacing:0.537984px;}
.ws84{word-spacing:0.548896px;}
.wsf4{word-spacing:0.550800px;}
.ws54{word-spacing:0.597756px;}
.ws49{word-spacing:0.657532px;}
.ws50{word-spacing:0.717307px;}
.wsce{word-spacing:0.777083px;}
.ws6f{word-spacing:0.836858px;}
.wsde{word-spacing:0.860774px;}
.ws4b{word-spacing:0.896634px;}
.ws34{word-spacing:0.956410px;}
.wsb3{word-spacing:0.968371px;}
.ws56{word-spacing:1.075961px;}
.ws7c{word-spacing:1.075968px;}
.ws43{word-spacing:1.135736px;}
.ws68{word-spacing:1.183565px;}
.wsf8{word-spacing:1.188000px;}
.wscc{word-spacing:1.195512px;}
.wsf9{word-spacing:1.225800px;}
.ws6e{word-spacing:1.255288px;}
.wsb2{word-spacing:1.291162px;}
.ws89{word-spacing:1.296187px;}
.ws88{word-spacing:1.309414px;}
.ws4d{word-spacing:1.315063px;}
.wsba{word-spacing:1.494390px;}
.ws12f{word-spacing:1.506355px;}
.ws47{word-spacing:1.554166px;}
.ws3c{word-spacing:1.613941px;}
.ws1b{word-spacing:1.613952px;}
.wsc9{word-spacing:1.733492px;}
.ws40{word-spacing:1.793268px;}
.ws10a{word-spacing:1.906200px;}
.ws63{word-spacing:1.912819px;}
.ws5b{word-spacing:1.972595px;}
.ws51{word-spacing:2.032370px;}
.wsa2{word-spacing:2.083158px;}
.ws48{word-spacing:2.092146px;}
.ws98{word-spacing:2.109611px;}
.ws55{word-spacing:2.151922px;}
.ws129{word-spacing:2.151936px;}
.ws99{word-spacing:2.188969px;}
.wsa1{word-spacing:2.222035px;}
.ws115{word-spacing:2.313331px;}
.ws10b{word-spacing:2.316600px;}
.ws5a{word-spacing:2.331248px;}
.wsdd{word-spacing:2.367130px;}
.ws90{word-spacing:2.460110px;}
.ws3{word-spacing:2.510568px;}
.ws61{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws60{word-spacing:2.570351px;}
.ws65{word-spacing:2.582323px;}
.wsd2{word-spacing:2.630126px;}
.ws53{word-spacing:2.689902px;}
.wsdc{word-spacing:2.689920px;}
.ws3b{word-spacing:2.749678px;}
.ws70{word-spacing:2.809453px;}
.ws19{word-spacing:2.851315px;}
.ws14{word-spacing:2.869236px;}
.ws9c{word-spacing:2.870129px;}
.ws9b{word-spacing:2.889968px;}
.ws64{word-spacing:2.905114px;}
.ws128{word-spacing:2.958912px;}
.ws3f{word-spacing:2.988780px;}
.ws131{word-spacing:3.066509px;}
.ws5d{word-spacing:3.108331px;}
.ws124{word-spacing:3.219533px;}
.ws1e{word-spacing:3.219667px;}
.ws121{word-spacing:3.220454px;}
.ws96{word-spacing:3.220628px;}
.ws12b{word-spacing:3.221702px;}
.ws116{word-spacing:3.223968px;}
.ws12e{word-spacing:3.224160px;}
.ws125{word-spacing:3.224304px;}
.ws11f{word-spacing:3.224659px;}
.ws12d{word-spacing:3.226118px;}
.ws27{word-spacing:3.227882px;}
.ws114{word-spacing:3.227904px;}
.wsd1{word-spacing:3.287658px;}
.ws97{word-spacing:3.293374px;}
.wsbc{word-spacing:3.335501px;}
.wsd0{word-spacing:3.347434px;}
.wsad{word-spacing:3.373920px;}
.ws119{word-spacing:3.389299px;}
.wsc6{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws4e{word-spacing:3.646312px;}
.wsc7{word-spacing:3.706087px;}
.ws112{word-spacing:3.712090px;}
.ws5c{word-spacing:3.825638px;}
.ws52{word-spacing:3.885414px;}
.wscd{word-spacing:4.004965px;}
.ws118{word-spacing:4.034880px;}
.ws20{word-spacing:4.124516px;}
.ws120{word-spacing:4.142477px;}
.ws26{word-spacing:4.244068px;}
.ws133{word-spacing:4.250074px;}
.ws28{word-spacing:4.363619px;}
.ws130{word-spacing:4.411469px;}
.ws7e{word-spacing:4.423394px;}
.ws35{word-spacing:4.483170px;}
.ws122{word-spacing:4.519066px;}
.wsd5{word-spacing:4.542946px;}
.ws58{word-spacing:4.602721px;}
.ws132{word-spacing:4.626662px;}
.wsb9{word-spacing:4.662497px;}
.wsa{word-spacing:4.770079px;}
.ws44{word-spacing:4.782048px;}
.wsb{word-spacing:4.853765px;}
.ws57{word-spacing:4.961375px;}
.wsae{word-spacing:4.989600px;}
.ws11a{word-spacing:5.003251px;}
.wsaf{word-spacing:5.037120px;}
.wsb0{word-spacing:5.090580px;}
.ws1a{word-spacing:5.218445px;}
.ws41{word-spacing:5.320028px;}
.wse3{word-spacing:5.326042px;}
.ws42{word-spacing:5.379804px;}
.ws3e{word-spacing:5.499355px;}
.wse2{word-spacing:5.702630px;}
.ws6d{word-spacing:5.798233px;}
.ws3d{word-spacing:5.917784px;}
.wsca{word-spacing:6.037336px;}
.ws11c{word-spacing:6.133018px;}
.ws21{word-spacing:6.276438px;}
.wsdb{word-spacing:6.294413px;}
.ws5e{word-spacing:6.336214px;}
.ws8c{word-spacing:6.401578px;}
.ws8b{word-spacing:6.454483px;}
.wsc8{word-spacing:6.455765px;}
.ws11d{word-spacing:6.617203px;}
.wscf{word-spacing:6.933970px;}
.ws111{word-spacing:7.101389px;}
.ws29{word-spacing:7.173072px;}
.wsd3{word-spacing:7.471950px;}
.wsd4{word-spacing:7.711052px;}
.ws8{word-spacing:7.782761px;}
.ws71{word-spacing:7.950155px;}
.ws12a{word-spacing:10.167898px;}
.wsee{word-spacing:11.615688px;}
.ws6{word-spacing:12.176255px;}
.ws82{word-spacing:12.782524px;}
.ws7{word-spacing:16.109478px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.wse1{word-spacing:93.340224px;}
.wse5{word-spacing:206.370662px;}
.wsbd{word-spacing:217.855910px;}
.wse6{word-spacing:219.068045px;}
.wse4{word-spacing:220.568755px;}
.wsbe{word-spacing:252.908266px;}
.wsc0{word-spacing:279.428890px;}
.wsc2{word-spacing:292.878490px;}
.wsc4{word-spacing:295.299418px;}
.wsc3{word-spacing:308.749018px;}
.wsb5{word-spacing:363.838579px;}
.wsb4{word-spacing:370.588800px;}
.ws69{word-spacing:376.546598px;}
.ws6c{word-spacing:585.658502px;}
.ws6b{word-spacing:594.025450px;}
._5{margin-left:-7.962163px;}
._19{margin-left:-6.754643px;}
._8{margin-left:-5.618929px;}
._0{margin-left:-3.849538px;}
._22{margin-left:-2.797502px;}
._4{margin-left:-1.506341px;}
._24{width:1.448370px;}
._6{width:3.027402px;}
._23{width:4.542946px;}
._1{width:12.968800px;}
._13{width:14.824386px;}
._9{width:15.894409px;}
._d{width:17.430667px;}
._10{width:18.649987px;}
._b{width:20.013005px;}
._c{width:21.142771px;}
._f{width:22.894055px;}
._12{width:24.516421px;}
._2{width:25.946136px;}
._16{width:27.688054px;}
._11{width:28.692288px;}
._3{width:30.587087px;}
._a{width:32.279026px;}
._18{width:33.414560px;}
._17{width:35.901212px;}
._e{width:37.897730px;}
._37{width:39.224767px;}
._38{width:41.544042px;}
._7{width:54.381678px;}
._5d{width:61.868160px;}
._5c{width:88.767360px;}
._55{width:90.435110px;}
._3a{width:98.629740px;}
._3d{width:106.736026px;}
._54{width:127.986394px;}
._3e{width:149.989939px;}
._2a{width:163.278144px;}
._3c{width:167.654091px;}
._56{width:171.778291px;}
._2b{width:178.910054px;}
._40{width:195.019200px;}
._41{width:197.655322px;}
._4b{width:218.798093px;}
._58{width:232.506413px;}
._51{width:238.606876px;}
._27{width:242.792179px;}
._52{width:244.507478px;}
._59{width:245.958413px;}
._5b{width:249.708420px;}
._49{width:271.628122px;}
._2d{width:276.631373px;}
._26{width:288.413222px;}
._32{width:290.080973px;}
._2c{width:292.878490px;}
._2e{width:295.299418px;}
._35{width:303.530573px;}
._2f{width:306.328090px;}
._30{width:308.749018px;}
._34{width:319.777690px;}
._36{width:322.198618px;}
._28{width:324.296755px;}
._4f{width:384.908009px;}
._1b{width:386.057318px;}
._46{width:392.082739px;}
._20{width:424.395494px;}
._1a{width:444.267187px;}
._1d{width:452.283149px;}
._1c{width:495.160474px;}
._57{width:523.350835px;}
._1e{width:526.255949px;}
._1f{width:539.974541px;}
._45{width:587.424730px;}
._21{width:594.633715px;}
._29{width:607.706726px;}
._31{width:621.343910px;}
._4a{width:622.770278px;}
._33{width:644.154432px;}
._14{width:811.902347px;}
._3f{width:845.818445px;}
._4c{width:889.411450px;}
._43{width:910.806912px;}
._50{width:979.270247px;}
._42{width:1093.522613px;}
._48{width:1102.291704px;}
._4e{width:1182.827923px;}
._47{width:1206.230227px;}
._4d{width:1207.844179px;}
._44{width:1278.626573px;}
._53{width:1294.819891px;}
._3b{width:1616.211533px;}
._5a{width:2077.793298px;}
._25{width:2311.098174px;}
._39{width:2509.029000px;}
._15{width:2532.939000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(69,127,95);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:49.829400px;}
.fs9{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fsb{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fsa{font-size:66.132000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:125.391825px;}
.y113{bottom:-141.443445px;}
.y219{bottom:-126.187950px;}
.y112{bottom:-122.335950px;}
.y218{bottom:-108.817500px;}
.y111{bottom:-103.327950px;}
.y217{bottom:-91.537500px;}
.y110{bottom:-84.319950px;}
.y216{bottom:-74.257500px;}
.y10f{bottom:-65.212455px;}
.y215{bottom:-56.887050px;}
.y10e{bottom:-46.204455px;}
.y214{bottom:-39.607050px;}
.y10d{bottom:-21.544505px;}
.y202{bottom:-19.701135px;}
.y213{bottom:-17.197050px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.961066px;}
.y1a{bottom:28.258762px;}
.y4a{bottom:31.890000px;}
.yeb{bottom:91.665000px;}
.y184{bottom:104.257500px;}
.y18{bottom:104.646000px;}
.y49{bottom:105.043500px;}
.y7f{bottom:106.744500px;}
.ya2{bottom:107.193000px;}
.yea{bottom:110.494500px;}
.y258{bottom:117.280500px;}
.y150{bottom:117.862500px;}
.y17{bottom:122.535000px;}
.y183{bottom:123.087000px;}
.y48{bottom:123.873000px;}
.y7e{bottom:125.574000px;}
.ya1{bottom:126.022500px;}
.ye9{bottom:129.324000px;}
.y14f{bottom:134.301000px;}
.y257{bottom:134.541000px;}
.y194{bottom:140.278500px;}
.y16{bottom:140.422500px;}
.yb6{bottom:141.265500px;}
.y182{bottom:141.916500px;}
.y1c0{bottom:142.149000px;}
.y47{bottom:142.702500px;}
.y7d{bottom:144.403500px;}
.ya0{bottom:144.852000px;}
.ye8{bottom:148.153500px;}
.y124{bottom:148.530000px;}
.y14e{bottom:150.739500px;}
.y256{bottom:151.800000px;}
.y21f{bottom:156.081000px;}
.y1f2{bottom:156.705000px;}
.y15{bottom:158.310000px;}
.y1bf{bottom:158.587500px;}
.yb5{bottom:160.095000px;}
.y181{bottom:160.746000px;}
.y46{bottom:161.532000px;}
.y7c{bottom:163.233000px;}
.y9f{bottom:163.681500px;}
.y193{bottom:166.819500px;}
.ye7{bottom:166.983000px;}
.y123{bottom:167.359500px;}
.y255{bottom:169.060500px;}
.y14d{bottom:174.379500px;}
.y21e{bottom:175.314000px;}
.y14{bottom:176.199000px;}
.yb4{bottom:178.924500px;}
.y180{bottom:179.574000px;}
.y1f1{bottom:180.346500px;}
.y45{bottom:180.361500px;}
.y7b{bottom:182.062500px;}
.y1be{bottom:182.227500px;}
.y9e{bottom:182.511000px;}
.y192{bottom:184.393500px;}
.ye6{bottom:185.812500px;}
.y122{bottom:186.189000px;}
.y254{bottom:186.321000px;}
.y14c{bottom:190.818000px;}
.y13{bottom:194.086500px;}
.y21d{bottom:194.547000px;}
.yb3{bottom:197.754000px;}
.y17f{bottom:198.403500px;}
.y1bd{bottom:198.666000px;}
.y44{bottom:199.191000px;}
.y7a{bottom:200.892000px;}
.y9d{bottom:201.340500px;}
.y191{bottom:201.967500px;}
.y253{bottom:203.581500px;}
.y1f0{bottom:203.986500px;}
.ye5{bottom:204.642000px;}
.y121{bottom:205.018500px;}
.y14b{bottom:207.256500px;}
.y12{bottom:211.974000px;}
.y21c{bottom:213.780000px;}
.yb2{bottom:216.583500px;}
.y17e{bottom:217.233000px;}
.y43{bottom:218.020500px;}
.y9c{bottom:220.170000px;}
.y252{bottom:220.842000px;}
.y1bc{bottom:222.307500px;}
.ye4{bottom:223.471500px;}
.y120{bottom:223.848000px;}
.y79{bottom:224.205000px;}
.y1ef{bottom:227.628000px;}
.y190{bottom:228.508500px;}
.y11{bottom:229.863000px;}
.y14a{bottom:230.896500px;}
.y21b{bottom:233.013000px;}
.y17d{bottom:236.062500px;}
.y42{bottom:236.848500px;}
.y251{bottom:238.102500px;}
.y1bb{bottom:238.746000px;}
.y9b{bottom:238.999500px;}
.yb1{bottom:239.896500px;}
.ye3{bottom:242.301000px;}
.y11f{bottom:242.677500px;}
.y18f{bottom:246.082500px;}
.y1ee{bottom:251.268000px;}
.y21a{bottom:252.246000px;}
.y148{bottom:254.538000px;}
.y17c{bottom:254.892000px;}
.y250{bottom:255.363000px;}
.y41{bottom:255.678000px;}
.y78{bottom:257.829000px;}
.yb0{bottom:260.070000px;}
.ye2{bottom:261.130500px;}
.y11e{bottom:261.507000px;}
.y1ba{bottom:262.386000px;}
.y147{bottom:262.756500px;}
.y18e{bottom:263.656500px;}
.y149{bottom:270.976500px;}
.y24f{bottom:272.623500px;}
.y17b{bottom:273.721500px;}
.y40{bottom:274.507500px;}
.y209{bottom:274.674000px;}
.y1ed{bottom:274.909500px;}
.y77{bottom:276.658500px;}
.yaf{bottom:280.245000px;}
.y11d{bottom:280.336500px;}
.ye1{bottom:284.443500px;}
.y1b9{bottom:286.026000px;}
.y24e{bottom:289.884000px;}
.y18d{bottom:290.197500px;}
.y17a{bottom:292.551000px;}
.y3f{bottom:293.337000px;}
.y146{bottom:294.616500px;}
.y76{bottom:295.488000px;}
.y10{bottom:297.166500px;}
.y1ec{bottom:298.549500px;}
.y11c{bottom:299.166000px;}
.y24d{bottom:307.143000px;}
.y1b8{bottom:309.667500px;}
.y179{bottom:311.380500px;}
.y3e{bottom:312.166500px;}
.yae{bottom:313.869000px;}
.y75{bottom:314.317500px;}
.yf{bottom:315.054000px;}
.y18c{bottom:316.738500px;}
.y11b{bottom:317.995500px;}
.ye0{bottom:318.067500px;}
.y1eb{bottom:322.191000px;}
.y24c{bottom:324.403500px;}
.y145{bottom:329.224500px;}
.y178{bottom:330.210000px;}
.y3d{bottom:330.996000px;}
.yad{bottom:332.698500px;}
.ye{bottom:332.943000px;}
.y74{bottom:333.145500px;}
.y1b7{bottom:333.307500px;}
.y18b{bottom:334.312500px;}
.y11a{bottom:336.823500px;}
.ydf{bottom:336.897000px;}
.y24b{bottom:341.664000px;}
.y1ea{bottom:345.831000px;}
.y144{bottom:348.457500px;}
.y177{bottom:349.039500px;}
.y1b6{bottom:349.746000px;}
.y3c{bottom:349.825500px;}
.yd{bottom:350.830500px;}
.yac{bottom:351.528000px;}
.y9a{bottom:351.975000px;}
.yde{bottom:355.726500px;}
.y73{bottom:356.458500px;}
.y24a{bottom:358.924500px;}
.y18a{bottom:360.852000px;}
.y143{bottom:367.690500px;}
.y176{bottom:367.869000px;}
.yab{bottom:370.357500px;}
.y119{bottom:370.390500px;}
.y99{bottom:370.804500px;}
.y3b{bottom:373.138500px;}
.y1b5{bottom:373.387500px;}
.ydd{bottom:374.556000px;}
.y249{bottom:376.185000px;}
.y189{bottom:378.426000px;}
.yc{bottom:379.179000px;}
.y1e9{bottom:380.439000px;}
.y175{bottom:386.698500px;}
.y142{bottom:386.923500px;}
.y212{bottom:388.612950px;}
.yaa{bottom:389.187000px;}
.y118{bottom:389.623500px;}
.y98{bottom:389.634000px;}
.y201{bottom:389.708550px;}
.y1b4{bottom:389.826000px;}
.y72{bottom:390.082500px;}
.ydc{bottom:393.385500px;}
.y248{bottom:393.445500px;}
.y188{bottom:396.000000px;}
.yb{bottom:397.066500px;}
.y1e8{bottom:399.672000px;}
.y174{bottom:405.528000px;}
.ya9{bottom:408.015000px;}
.y97{bottom:408.463500px;}
.y117{bottom:408.855000px;}
.y71{bottom:408.912000px;}
.y247{bottom:410.706000px;}
.ydb{bottom:412.215000px;}
.y1b3{bottom:413.466000px;}
.y187{bottom:413.575500px;}
.ya{bottom:414.955500px;}
.y1e7{bottom:418.905000px;}
.y141{bottom:424.027500px;}
.y173{bottom:424.357500px;}
.ya8{bottom:426.844500px;}
.y96{bottom:427.293000px;}
.y70{bottom:427.741500px;}
.y246{bottom:427.966500px;}
.y116{bottom:428.088000px;}
.y1b2{bottom:429.904500px;}
.y186{bottom:431.149500px;}
.yda{bottom:435.526500px;}
.y1e6{bottom:438.138000px;}
.y9{bottom:441.810000px;}
.y140{bottom:442.857000px;}
.y172{bottom:443.187000px;}
.y245{bottom:445.225500px;}
.ya7{bottom:445.674000px;}
.y95{bottom:446.122500px;}
.y6f{bottom:446.571000px;}
.y115{bottom:447.321000px;}
.y3a{bottom:448.288500px;}
.y185{bottom:448.723500px;}
.y1b1{bottom:453.546000px;}
.y1e5{bottom:457.371000px;}
.y8{bottom:459.697500px;}
.y13f{bottom:461.686500px;}
.y171{bottom:462.016500px;}
.y244{bottom:462.486000px;}
.ya6{bottom:464.503500px;}
.y94{bottom:464.952000px;}
.y6e{bottom:465.400500px;}
.y114{bottom:466.554000px;}
.y10c{bottom:468.703584px;}
.yd9{bottom:469.150500px;}
.y1b0{bottom:477.186000px;}
.y7{bottom:477.585000px;}
.y243{bottom:479.746500px;}
.y13e{bottom:480.516000px;}
.y170{bottom:480.846000px;}
.ya5{bottom:483.333000px;}
.y93{bottom:483.781500px;}
.y6d{bottom:484.230000px;}
.y39{bottom:485.679000px;}
.yd8{bottom:487.980000px;}
.yf5{bottom:488.983500px;}
.y10b{bottom:489.888970px;}
.y6{bottom:495.474000px;}
.y242{bottom:497.007000px;}
.y13d{bottom:499.345500px;}
.y16f{bottom:499.675500px;}
.y1af{bottom:500.827500px;}
.y92{bottom:502.611000px;}
.y6c{bottom:503.059500px;}
.y1e4{bottom:505.012500px;}
.y38{bottom:505.135500px;}
.ya4{bottom:506.646000px;}
.yd7{bottom:506.809500px;}
.y1e2{bottom:507.579000px;}
.y10a{bottom:510.975158px;}
.y5{bottom:513.361500px;}
.y241{bottom:514.267500px;}
.y13c{bottom:518.175000px;}
.y16e{bottom:518.505000px;}
.y91{bottom:521.440500px;}
.y1e3{bottom:521.451000px;}
.y1e1{bottom:521.775000px;}
.y6b{bottom:521.889000px;}
.y1ae{bottom:524.467500px;}
.y37{bottom:524.592000px;}
.yd6{bottom:525.639000px;}
.y4{bottom:531.249000px;}
.y276{bottom:531.453000px;}
.y240{bottom:531.528000px;}
.y109{bottom:532.160544px;}
.y13b{bottom:537.004500px;}
.y16d{bottom:537.334500px;}
.y90{bottom:540.270000px;}
.y6a{bottom:540.718500px;}
.y36{bottom:544.050000px;}
.yd5{bottom:544.468500px;}
.y1ad{bottom:548.107500px;}
.y275{bottom:548.713500px;}
.y23f{bottom:548.788500px;}
.y3{bottom:549.138000px;}
.y1e0{bottom:549.201000px;}
.y108{bottom:553.246733px;}
.y13a{bottom:555.834000px;}
.y16c{bottom:556.164000px;}
.y8f{bottom:559.099500px;}
.y69{bottom:559.548000px;}
.yd4{bottom:563.298000px;}
.y35{bottom:563.506500px;}
.y1ac{bottom:564.546000px;}
.y274{bottom:565.974000px;}
.y23e{bottom:566.049000px;}
.y2{bottom:567.025500px;}
.y1df{bottom:570.975000px;}
.y107{bottom:574.432119px;}
.y139{bottom:574.663500px;}
.y16b{bottom:574.993500px;}
.y8e{bottom:577.929000px;}
.y68{bottom:578.377500px;}
.yd3{bottom:582.127500px;}
.y34{bottom:582.964500px;}
.y23d{bottom:583.309500px;}
.y1{bottom:584.913000px;}
.y1de{bottom:585.171000px;}
.y1ab{bottom:588.187500px;}
.y138{bottom:593.493000px;}
.y16a{bottom:593.823000px;}
.y106{bottom:595.617505px;}
.y8d{bottom:596.758500px;}
.y1d2{bottom:596.833500px;}
.y67{bottom:597.207000px;}
.y1dd{bottom:599.368500px;}
.y23c{bottom:600.568500px;}
.yd2{bottom:600.957000px;}
.y33{bottom:602.421000px;}
.y273{bottom:605.052000px;}
.y1d8{bottom:608.334000px;}
.y1aa{bottom:611.827500px;}
.y137{bottom:612.322500px;}
.y1dc{bottom:613.564500px;}
.y8c{bottom:615.588000px;}
.y66{bottom:616.036500px;}
.y105{bottom:616.705346px;}
.y169{bottom:617.134500px;}
.y23b{bottom:617.829000px;}
.yd1{bottom:619.786500px;}
.y32{bottom:621.877500px;}
.y272{bottom:622.312500px;}
.y1d7{bottom:622.531500px;}
.y1db{bottom:627.762000px;}
.y8b{bottom:634.417500px;}
.y65{bottom:634.866000px;}
.y23a{bottom:635.089500px;}
.y1a9{bottom:635.469000px;}
.y136{bottom:635.635500px;}
.yd0{bottom:638.616000px;}
.y271{bottom:639.573000px;}
.y31{bottom:641.335500px;}
.y1da{bottom:641.958000px;}
.y104{bottom:642.743168px;}
.y208{bottom:648.786000px;}
.y239{bottom:652.350000px;}
.y8a{bottom:653.247000px;}
.y64{bottom:653.695500px;}
.y1d9{bottom:656.155500px;}
.y270{bottom:656.833500px;}
.ycf{bottom:657.445500px;}
.y1a8{bottom:659.109000px;}
.y30{bottom:660.792000px;}
.y168{bottom:662.448000px;}
.y207{bottom:668.019000px;}
.y103{bottom:668.878535px;}
.y135{bottom:669.258000px;}
.y238{bottom:669.610500px;}
.y89{bottom:672.076500px;}
.y63{bottom:672.525000px;}
.y26f{bottom:674.094000px;}
.yce{bottom:676.275000px;}
.y167{bottom:678.886500px;}
.y1d6{bottom:679.795500px;}
.y2f{bottom:680.248500px;}
.y1d4{bottom:681.663000px;}
.y1a7{bottom:682.750500px;}
.y237{bottom:686.871000px;}
.y206{bottom:687.252000px;}
.y134{bottom:688.087500px;}
.y88{bottom:690.906000px;}
.y62{bottom:691.354500px;}
.y1d5{bottom:693.993000px;}
.y166{bottom:695.325000px;}
.y1d3{bottom:695.860500px;}
.y2e{bottom:699.706500px;}
.y236{bottom:704.131500px;}
.y205{bottom:706.485000px;}
.y133{bottom:706.917000px;}
.y26e{bottom:708.613500px;}
.y87{bottom:709.735500px;}
.y102{bottom:709.863842px;}
.y61{bottom:710.184000px;}
.ya3{bottom:714.219000px;}
.y1a6{bottom:714.369000px;}
.y165{bottom:718.965000px;}
.y1d1{bottom:719.127000px;}
.y2d{bottom:719.163000px;}
.y235{bottom:721.392000px;}
.ycd{bottom:721.626000px;}
.y204{bottom:725.718000px;}
.y132{bottom:725.746500px;}
.y26d{bottom:725.874000px;}
.y86{bottom:728.565000px;}
.y60{bottom:729.013500px;}
.y1d0{bottom:730.498500px;}
.y101{bottom:731.049228px;}
.y1a5{bottom:733.602000px;}
.y164{bottom:735.403500px;}
.ycc{bottom:738.063000px;}
.y2c{bottom:738.621000px;}
.y234{bottom:738.651000px;}
.y26c{bottom:743.134500px;}
.y131{bottom:744.576000px;}
.y203{bottom:744.951000px;}
.y85{bottom:747.394500px;}
.y5f{bottom:747.843000px;}
.y100{bottom:752.135416px;}
.y1a4{bottom:752.835000px;}
.y233{bottom:755.911500px;}
.y163{bottom:759.043500px;}
.y26b{bottom:760.395000px;}
.y1cf{bottom:761.448000px;}
.ycb{bottom:761.704500px;}
.y130{bottom:763.405500px;}
.y1cb{bottom:763.665000px;}
.y84{bottom:766.224000px;}
.y5e{bottom:766.671000px;}
.y1f3{bottom:767.380050px;}
.y1a3{bottom:772.068000px;}
.y232{bottom:773.172000px;}
.yff{bottom:773.320802px;}
.y162{bottom:775.482000px;}
.y1ce{bottom:776.392500px;}
.yc6{bottom:777.142500px;}
.y2b{bottom:777.205500px;}
.y26a{bottom:777.655500px;}
.y12f{bottom:782.235000px;}
.y83{bottom:785.053500px;}
.yca{bottom:785.344500px;}
.y5d{bottom:785.500500px;}
.y231{bottom:790.432500px;}
.y1cd{bottom:791.335500px;}
.y161{bottom:791.920500px;}
.y2a{bottom:793.345500px;}
.yc5{bottom:793.579500px;}
.yfe{bottom:794.506188px;}
.y211{bottom:794.602050px;}
.y269{bottom:794.916000px;}
.y200{bottom:797.408400px;}
.yc9{bottom:801.783000px;}
.y82{bottom:803.883000px;}
.y5c{bottom:804.330000px;}
.y12e{bottom:805.548000px;}
.y230{bottom:807.693000px;}
.y1cc{bottom:807.774000px;}
.y29{bottom:809.485500px;}
.y210{bottom:811.972500px;}
.y268{bottom:812.176500px;}
.y28{bottom:813.825000px;}
.y1ff{bottom:814.867950px;}
.y1a2{bottom:815.091000px;}
.y15f{bottom:815.562000px;}
.yfd{bottom:815.592377px;}
.y81{bottom:822.712500px;}
.y5b{bottom:823.159500px;}
.y22f{bottom:824.953500px;}
.yc8{bottom:825.424500px;}
.y27{bottom:825.624000px;}
.y20f{bottom:829.252500px;}
.y267{bottom:829.437000px;}
.y15e{bottom:832.000500px;}
.y1fe{bottom:832.147950px;}
.y1ca{bottom:833.656500px;}
.yfc{bottom:836.777763px;}
.y160{bottom:840.219000px;}
.yc7{bottom:841.863000px;}
.y5a{bottom:841.989000px;}
.y22e{bottom:842.214000px;}
.y1c9{bottom:845.028000px;}
.y80{bottom:846.024000px;}
.y26{bottom:846.103500px;}
.y20e{bottom:846.532500px;}
.y266{bottom:846.697500px;}
.y12d{bottom:847.872000px;}
.y15d{bottom:848.439000px;}
.y1fd{bottom:849.427950px;}
.y1a1{bottom:851.853000px;}
.yfb{bottom:857.863951px;}
.y25{bottom:857.904000px;}
.y22d{bottom:859.474500px;}
.y59{bottom:860.818500px;}
.y20d{bottom:863.902950px;}
.y265{bottom:863.956500px;}
.y15c{bottom:864.876000px;}
.yc4{bottom:865.503000px;}
.y1fc{bottom:866.707950px;}
.yc2{bottom:868.914000px;}
.y1a0{bottom:870.682500px;}
.y12c{bottom:871.512000px;}
.y22c{bottom:876.735000px;}
.y1c8{bottom:877.471500px;}
.y24{bottom:878.382000px;}
.yfa{bottom:879.049337px;}
.y58{bottom:879.648000px;}
.y20c{bottom:881.182950px;}
.y264{bottom:881.217000px;}
.y1fb{bottom:884.078400px;}
.yc1{bottom:885.352500px;}
.y1c2{bottom:886.041000px;}
.y15b{bottom:888.517500px;}
.yc3{bottom:889.144500px;}
.y19f{bottom:889.512000px;}
.y23{bottom:890.182500px;}
.y1c7{bottom:891.669000px;}
.y22b{bottom:893.994000px;}
.y12b{bottom:895.153500px;}
.y57{bottom:898.477500px;}
.yf9{bottom:900.234723px;}
.y1c6{bottom:905.865000px;}
.y22{bottom:906.322500px;}
.y1c3{bottom:906.985500px;}
.y19e{bottom:908.341500px;}
.y22a{bottom:911.254500px;}
.y15a{bottom:912.157500px;}
.yc0{bottom:912.784500px;}
.y263{bottom:915.738000px;}
.y56{bottom:917.307000px;}
.y12a{bottom:918.793500px;}
.y1c5{bottom:920.062500px;}
.y1fa{bottom:922.778400px;}
.y1f8{bottom:923.139219px;}
.yf8{bottom:926.272545px;}
.y21{bottom:926.802000px;}
.y19d{bottom:927.171000px;}
.y229{bottom:928.515000px;}
.y159{bottom:928.596000px;}
.ybf{bottom:928.599000px;}
.yf4{bottom:930.309000px;}
.y262{bottom:932.998500px;}
.y1c4{bottom:934.258500px;}
.y20b{bottom:934.283085px;}
.y55{bottom:936.136500px;}
.y129{bottom:942.435000px;}
.y20a{bottom:943.912950px;}
.y228{bottom:945.775500px;}
.y19c{bottom:945.999000px;}
.y1f7{bottom:947.528400px;}
.y1f9{bottom:947.979300px;}
.yf3{bottom:949.138500px;}
.y261{bottom:950.259000px;}
.y158{bottom:952.237500px;}
.y54{bottom:954.966000px;}
.y1c1{bottom:958.647000px;}
.ybe{bottom:960.066000px;}
.y227{bottom:963.036000px;}
.y19b{bottom:964.828500px;}
.y128{bottom:966.075000px;}
.y260{bottom:967.519500px;}
.yf2{bottom:967.968000px;}
.y157{bottom:968.676000px;}
.y20{bottom:971.478000px;}
.y53{bottom:973.795500px;}
.y1f6{bottom:974.978400px;}
.y226{bottom:980.296500px;}
.y19a{bottom:983.658000px;}
.y25f{bottom:984.780000px;}
.yf7{bottom:986.464694px;}
.yf1{bottom:986.797500px;}
.y127{bottom:989.716500px;}
.ybd{bottom:991.686000px;}
.y156{bottom:992.316000px;}
.y52{bottom:992.625000px;}
.yf6{bottom:997.057545px;}
.y225{bottom:997.557000px;}
.y25e{bottom:1002.040500px;}
.y199{bottom:1002.487500px;}
.yf0{bottom:1005.627000px;}
.y1f{bottom:1008.240000px;}
.y155{bottom:1008.754500px;}
.ybc{bottom:1010.919000px;}
.y51{bottom:1011.454500px;}
.y126{bottom:1013.356500px;}
.y224{bottom:1014.817500px;}
.y25d{bottom:1019.299500px;}
.y198{bottom:1021.317000px;}
.yef{bottom:1024.456500px;}
.ybb{bottom:1030.152000px;}
.y50{bottom:1030.284000px;}
.y223{bottom:1032.076500px;}
.y153{bottom:1032.396000px;}
.y1f5{bottom:1035.188535px;}
.y1e{bottom:1036.485000px;}
.y25c{bottom:1036.560000px;}
.y125{bottom:1036.998000px;}
.y197{bottom:1040.146500px;}
.y152{bottom:1040.614500px;}
.yee{bottom:1043.284500px;}
.y1f4{bottom:1044.818400px;}
.y154{bottom:1048.833000px;}
.y4f{bottom:1049.113500px;}
.y222{bottom:1049.337000px;}
.yba{bottom:1049.383500px;}
.y25b{bottom:1053.820500px;}
.y196{bottom:1058.976000px;}
.yed{bottom:1062.114000px;}
.y1d{bottom:1064.728500px;}
.y221{bottom:1066.597500px;}
.y4e{bottom:1067.943000px;}
.yb9{bottom:1068.616500px;}
.y25a{bottom:1071.081000px;}
.y151{bottom:1072.474500px;}
.y195{bottom:1082.289000px;}
.y220{bottom:1083.858000px;}
.yec{bottom:1085.427000px;}
.y4d{bottom:1086.772500px;}
.yb8{bottom:1087.849500px;}
.y259{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.yb7{bottom:1107.082500px;}
.y19{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h20{height:34.574294px;}
.ha{height:34.813397px;}
.h25{height:34.951465px;}
.h10{height:35.052500px;}
.h24{height:35.255391px;}
.hd{height:37.605082px;}
.h17{height:38.446611px;}
.h16{height:38.780930px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h28{height:39.418945px;}
.h1d{height:39.434227px;}
.h27{height:39.761719px;}
.h14{height:41.482876px;}
.he{height:43.217759px;}
.h1c{height:43.360840px;}
.hf{height:43.516637px;}
.h1b{height:43.737891px;}
.h6{height:43.815515px;}
.h26{height:43.886426px;}
.h1a{height:47.596957px;}
.h18{height:48.275068px;}
.h19{height:48.694852px;}
.h2a{height:49.991558px;}
.h4{height:50.931027px;}
.h8{height:54.541601px;}
.h21{height:55.081397px;}
.h22{height:63.211397px;}
.h11{height:70.473235px;}
.h1f{height:71.770243px;}
.h1e{height:71.776243px;}
.h12{height:72.039235px;}
.h13{height:72.045235px;}
.h7{height:77.792486px;}
.h5{height:85.015657px;}
.h29{height:351.904500px;}
.h23{height:353.166450px;}
.h15{height:422.165700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:230.008102px;}
.w5{width:351.274500px;}
.w4{width:353.166000px;}
.w3{width:419.761650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4d{left:-237.798000px;}
.x7e{left:-214.029000px;}
.x80{left:-86.319000px;}
.x81{left:-73.269154px;}
.x7f{left:-65.799000px;}
.x4e{left:-22.671000px;}
.x83{left:-18.459000px;}
.x0{left:0.000000px;}
.x4f{left:12.375653px;}
.x1{left:53.574000px;}
.x5e{left:62.097000px;}
.x2{left:63.251425px;}
.x76{left:64.444500px;}
.x7d{left:84.603000px;}
.x86{left:85.848000px;}
.x71{left:87.978000px;}
.x78{left:97.650000px;}
.x82{left:99.350597px;}
.x72{left:115.218000px;}
.x87{left:137.038500px;}
.x7c{left:152.805000px;}
.x7b{left:215.614500px;}
.x91{left:238.488000px;}
.x37{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5a{left:253.713000px;}
.x70{left:258.556500px;}
.x5f{left:265.434000px;}
.x79{left:267.415500px;}
.x60{left:268.797000px;}
.x4{left:269.914500px;}
.x75{left:272.317500px;}
.x9{left:281.479500px;}
.x16{left:285.519000px;}
.x77{left:291.982500px;}
.x25{left:294.306000px;}
.x3b{left:297.114000px;}
.x55{left:298.435500px;}
.x7{left:299.650500px;}
.x52{left:301.657500px;}
.x38{left:303.282000px;}
.x7a{left:304.942500px;}
.x51{left:306.406500px;}
.x6{left:308.133000px;}
.x8{left:309.940500px;}
.x39{left:312.513000px;}
.x69{left:314.484000px;}
.x26{left:316.587000px;}
.x8c{left:318.297000px;}
.x3e{left:328.147500px;}
.x6a{left:329.427000px;}
.x27{left:331.531500px;}
.x35{left:335.074500px;}
.x45{left:342.750000px;}
.x29{left:343.890000px;}
.x36{left:350.017500px;}
.x46{left:357.694500px;}
.x2a{left:358.834500px;}
.xa{left:365.502000px;}
.x84{left:367.371000px;}
.x85{left:370.072682px;}
.xb{left:372.973500px;}
.x2b{left:381.273000px;}
.x6d{left:390.753000px;}
.x58{left:392.082000px;}
.x62{left:400.476000px;}
.x63{left:404.287500px;}
.x59{left:408.118500px;}
.x54{left:409.206000px;}
.x67{left:413.793000px;}
.x64{left:419.230500px;}
.x68{left:428.737500px;}
.x6f{left:430.689000px;}
.x6e{left:435.069000px;}
.x21{left:438.616500px;}
.x50{left:443.131395px;}
.x22{left:446.088000px;}
.x23{left:449.857500px;}
.x73{left:456.366000px;}
.x3f{left:462.675000px;}
.x24{left:464.802000px;}
.x42{left:468.478500px;}
.x3a{left:469.648500px;}
.x65{left:471.090000px;}
.x66{left:478.561500px;}
.x74{left:486.130500px;}
.x3c{left:488.142000px;}
.x3d{left:491.571000px;}
.x49{left:494.535000px;}
.x43{left:499.821000px;}
.x41{left:505.477500px;}
.x40{left:508.066500px;}
.x4a{left:510.580500px;}
.x12{left:512.937000px;}
.x44{left:514.765500px;}
.x53{left:518.664000px;}
.x13{left:520.408500px;}
.x2e{left:530.875500px;}
.x18{left:544.636500px;}
.x2f{left:545.820000px;}
.x30{left:549.619500px;}
.x6b{left:553.420500px;}
.x19{left:559.581000px;}
.x31{left:564.562500px;}
.x6c{left:568.363500px;}
.x4b{left:573.627000px;}
.x5b{left:579.558000px;}
.x4c{left:588.570000px;}
.xc{left:600.273000px;}
.xd{left:607.744500px;}
.x47{left:657.096000px;}
.x5c{left:666.523500px;}
.x48{left:672.040500px;}
.x5d{left:675.286500px;}
.x1f{left:692.944500px;}
.x8d{left:702.451500px;}
.x1a{left:706.111500px;}
.x20{left:707.887500px;}
.x1b{left:721.054500px;}
.x1c{left:724.866000px;}
.x8e{left:729.351000px;}
.x8f{left:736.492500px;}
.x8a{left:737.607000px;}
.x1d{left:739.809000px;}
.x14{left:746.473500px;}
.x15{left:753.945000px;}
.x90{left:763.392000px;}
.x8b{left:764.506500px;}
.x32{left:767.922000px;}
.x28{left:769.029000px;}
.x2c{left:771.925500px;}
.x33{left:782.866500px;}
.x2d{left:786.868500px;}
.x1e{left:798.897000px;}
.x56{left:800.034000px;}
.x34{left:801.471000px;}
.x89{left:810.265500px;}
.xe{left:814.384500px;}
.x57{left:816.067500px;}
.x17{left:817.968000px;}
.xf{left:821.857500px;}
.x10{left:825.519000px;}
.x61{left:831.894000px;}
.x11{left:832.990500px;}
.x88{left:837.972000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v7{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.016000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:25.242667pt;}
.v3{vertical-align:27.829333pt;}
.v4{vertical-align:29.221333pt;}
.ls56{letter-spacing:-3.844800pt;}
.ls2e{letter-spacing:-0.300960pt;}
.ls29{letter-spacing:-0.129325pt;}
.ls31{letter-spacing:-0.126720pt;}
.ls28{letter-spacing:-0.099933pt;}
.ls23{letter-spacing:-0.088176pt;}
.ls30{letter-spacing:-0.079200pt;}
.ls24{letter-spacing:-0.070541pt;}
.ls5c{letter-spacing:-0.067200pt;}
.ls2b{letter-spacing:-0.063360pt;}
.ls1f{letter-spacing:-0.047027pt;}
.ls5b{letter-spacing:-0.043200pt;}
.ls2c{letter-spacing:-0.042240pt;}
.ls1d{letter-spacing:-0.037453pt;}
.ls2f{letter-spacing:-0.036960pt;}
.ls22{letter-spacing:-0.035270pt;}
.ls27{letter-spacing:-0.029392pt;}
.ls5a{letter-spacing:-0.028800pt;}
.ls55{letter-spacing:-0.026720pt;}
.ls58{letter-spacing:-0.024000pt;}
.ls26{letter-spacing:-0.023514pt;}
.ls54{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.017635pt;}
.ls1e{letter-spacing:-0.014045pt;}
.ls2a{letter-spacing:-0.010560pt;}
.ls59{letter-spacing:-0.009600pt;}
.ls20{letter-spacing:-0.005878pt;}
.ls53{letter-spacing:-0.005344pt;}
.ls2d{letter-spacing:-0.005280pt;}
.ls57{letter-spacing:-0.004800pt;}
.ls52{letter-spacing:-0.004256pt;}
.ls8{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000711pt;}
.ls3b{letter-spacing:0.001724pt;}
.ls35{letter-spacing:0.001863pt;}
.ls3a{letter-spacing:0.001974pt;}
.ls5f{letter-spacing:0.002078pt;}
.ls36{letter-spacing:0.003635pt;}
.ls4a{letter-spacing:0.004800pt;}
.ls61{letter-spacing:0.005193pt;}
.ls1b{letter-spacing:0.005280pt;}
.ls15{letter-spacing:0.005878pt;}
.ls51{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.011757pt;}
.ls12{letter-spacing:0.017635pt;}
.ls46{letter-spacing:0.019200pt;}
.ls43{letter-spacing:0.021376pt;}
.lse{letter-spacing:0.023514pt;}
.ls4d{letter-spacing:0.024000pt;}
.ls4e{letter-spacing:0.028800pt;}
.lsf{letter-spacing:0.029392pt;}
.ls49{letter-spacing:0.033600pt;}
.ls17{letter-spacing:0.036960pt;}
.ls44{letter-spacing:0.037408pt;}
.ls45{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.041149pt;}
.ls16{letter-spacing:0.042240pt;}
.lsc{letter-spacing:0.047027pt;}
.ls4b{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.052800pt;}
.ls25{letter-spacing:0.052906pt;}
.ls41{letter-spacing:0.053440pt;}
.lsd{letter-spacing:0.058784pt;}
.ls4c{letter-spacing:0.062400pt;}
.ls47{letter-spacing:0.067200pt;}
.ls18{letter-spacing:0.068640pt;}
.ls50{letter-spacing:0.072000pt;}
.ls13{letter-spacing:0.082298pt;}
.ls1a{letter-spacing:0.089760pt;}
.ls48{letter-spacing:0.091200pt;}
.ls11{letter-spacing:0.129325pt;}
.ls19{letter-spacing:0.147840pt;}
.ls40{letter-spacing:0.161728pt;}
.lsb{letter-spacing:0.163856pt;}
.ls3f{letter-spacing:0.170240pt;}
.lsa{letter-spacing:0.177901pt;}
.ls1{letter-spacing:2.651733pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls63{letter-spacing:11.817287pt;}
.ls5d{letter-spacing:11.954133pt;}
.ls5e{letter-spacing:11.959467pt;}
.ls60{letter-spacing:12.034047pt;}
.ls62{letter-spacing:12.050176pt;}
.ls39{letter-spacing:13.283467pt;}
.ls33{letter-spacing:13.283733pt;}
.ls9{letter-spacing:13.389734pt;}
.ls1c{letter-spacing:17.215373pt;}
.ls42{letter-spacing:48.849504pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls3c{letter-spacing:83.682933pt;}
.ls3e{letter-spacing:218.635418pt;}
.ls3d{letter-spacing:219.974716pt;}
.ls37{letter-spacing:245.898231pt;}
.ls38{letter-spacing:257.855565pt;}
.ls32{letter-spacing:353.320533pt;}
.ws76{word-spacing:-58.784000pt;}
.ws78{word-spacing:-52.800000pt;}
.wse9{word-spacing:-48.000000pt;}
.wsc{word-spacing:-27.864850pt;}
.ws77{word-spacing:-13.347840pt;}
.wsb8{word-spacing:-13.283467pt;}
.ws6a{word-spacing:-11.955200pt;}
.ws73{word-spacing:-11.881901pt;}
.ws74{word-spacing:-11.704000pt;}
.wse7{word-spacing:-10.810240pt;}
.wse8{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws10e{word-spacing:-3.091200pt;}
.ws91{word-spacing:-2.780483pt;}
.ws100{word-spacing:-2.740800pt;}
.ws92{word-spacing:-2.392509pt;}
.ws5f{word-spacing:-2.391024pt;}
.ws106{word-spacing:-2.145600pt;}
.ws105{word-spacing:-2.126400pt;}
.wsd6{word-spacing:-2.125355pt;}
.ws103{word-spacing:-2.097600pt;}
.ws104{word-spacing:-2.068800pt;}
.ws113{word-spacing:-1.817190pt;}
.wsf5{word-spacing:-1.795200pt;}
.wsf6{word-spacing:-1.752000pt;}
.wsf7{word-spacing:-1.732800pt;}
.wsdf{word-spacing:-1.721549pt;}
.ws62{word-spacing:-1.647150pt;}
.wsd7{word-spacing:-1.594016pt;}
.ws32{word-spacing:-1.540882pt;}
.wse0{word-spacing:-1.530266pt;}
.ws110{word-spacing:-1.473600pt;}
.wsb6{word-spacing:-1.381481pt;}
.ws9a{word-spacing:-1.322640pt;}
.ws36{word-spacing:-1.275213pt;}
.ws2f{word-spacing:-1.168945pt;}
.ws101{word-spacing:-1.152000pt;}
.wseb{word-spacing:-1.147699pt;}
.ws102{word-spacing:-1.142400pt;}
.ws107{word-spacing:-1.137600pt;}
.ws10f{word-spacing:-1.123200pt;}
.ws79{word-spacing:-1.099878pt;}
.ws126{word-spacing:-1.094800pt;}
.wscb{word-spacing:-1.062677pt;}
.ws8a{word-spacing:-0.934666pt;}
.ws38{word-spacing:-0.903276pt;}
.ws7a{word-spacing:-0.860774pt;}
.ws45{word-spacing:-0.850142pt;}
.ws109{word-spacing:-0.844800pt;}
.ws46{word-spacing:-0.833058pt;}
.ws108{word-spacing:-0.820800pt;}
.ws127{word-spacing:-0.812954pt;}
.ws4f{word-spacing:-0.797008pt;}
.wsb7{word-spacing:-0.743874pt;}
.ws4c{word-spacing:-0.690740pt;}
.ws87{word-spacing:-0.640746pt;}
.ws59{word-spacing:-0.637606pt;}
.ws8f{word-spacing:-0.546691pt;}
.ws8e{word-spacing:-0.523178pt;}
.ws123{word-spacing:-0.478208pt;}
.ws7d{word-spacing:-0.478205pt;}
.wsd{word-spacing:-0.450892pt;}
.ws2{word-spacing:-0.446323pt;}
.ws11{word-spacing:-0.428592pt;}
.ws10{word-spacing:-0.426688pt;}
.wsf{word-spacing:-0.425071pt;}
.ws25{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.286925pt;}
.ws80{word-spacing:-0.266851pt;}
.ws23{word-spacing:-0.265669pt;}
.wsed{word-spacing:-0.246848pt;}
.ws93{word-spacing:-0.241014pt;}
.ws67{word-spacing:-0.239104pt;}
.wsa9{word-spacing:-0.216480pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsda{word-spacing:-0.191283pt;}
.wsac{word-spacing:-0.179520pt;}
.wsa8{word-spacing:-0.163680pt;}
.ws4a{word-spacing:-0.159402pt;}
.wsfb{word-spacing:-0.158400pt;}
.wsfa{word-spacing:-0.144000pt;}
.wsd9{word-spacing:-0.143462pt;}
.wsab{word-spacing:-0.132000pt;}
.wsaa{word-spacing:-0.110880pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws1c{word-spacing:-0.095642pt;}
.ws81{word-spacing:-0.074906pt;}
.wsec{word-spacing:-0.072352pt;}
.ws75{word-spacing:-0.058784pt;}
.ws37{word-spacing:-0.053134pt;}
.ws7f{word-spacing:-0.051498pt;}
.wsea{word-spacing:-0.048000pt;}
.wsbb{word-spacing:-0.047821pt;}
.ws11e{word-spacing:-0.024533pt;}
.ws12c{word-spacing:-0.006178pt;}
.ws117{word-spacing:-0.001126pt;}
.ws2d{word-spacing:-0.001000pt;}
.ws11b{word-spacing:-0.000375pt;}
.ws1{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.001801pt;}
.wsc1{word-spacing:0.003934pt;}
.ws94{word-spacing:0.005878pt;}
.wsbf{word-spacing:0.006067pt;}
.ws86{word-spacing:0.029392pt;}
.ws83{word-spacing:0.041149pt;}
.ws15{word-spacing:0.047821pt;}
.wsf3{word-spacing:0.048096pt;}
.ws24{word-spacing:0.053134pt;}
.ws12{word-spacing:0.062387pt;}
.wsf1{word-spacing:0.064128pt;}
.ws95{word-spacing:0.064662pt;}
.wsa3{word-spacing:0.070541pt;}
.wsa0{word-spacing:0.076419pt;}
.wsef{word-spacing:0.090848pt;}
.ws85{word-spacing:0.094054pt;}
.ws66{word-spacing:0.095642pt;}
.wsfe{word-spacing:0.100800pt;}
.wsa7{word-spacing:0.105600pt;}
.ws31{word-spacing:0.106268pt;}
.wsf0{word-spacing:0.106880pt;}
.wsf2{word-spacing:0.112224pt;}
.wsfd{word-spacing:0.115200pt;}
.ws9e{word-spacing:0.117568pt;}
.wsa4{word-spacing:0.123446pt;}
.wsa5{word-spacing:0.132000pt;}
.wsa6{word-spacing:0.137280pt;}
.ws16{word-spacing:0.143462pt;}
.wsfc{word-spacing:0.144000pt;}
.wsff{word-spacing:0.148800pt;}
.ws30{word-spacing:0.159402pt;}
.wsb1{word-spacing:0.168960pt;}
.ws13{word-spacing:0.170029pt;}
.ws8d{word-spacing:0.176352pt;}
.ws9d{word-spacing:0.188109pt;}
.ws18{word-spacing:0.191283pt;}
.ws10c{word-spacing:0.206400pt;}
.ws33{word-spacing:0.212535pt;}
.ws10d{word-spacing:0.230400pt;}
.ws1d{word-spacing:0.239104pt;}
.ws22{word-spacing:0.265669pt;}
.wsd8{word-spacing:0.286925pt;}
.ws39{word-spacing:0.318803pt;}
.ws3a{word-spacing:0.371937pt;}
.ws72{word-spacing:0.425071pt;}
.ws9f{word-spacing:0.470272pt;}
.ws2b{word-spacing:0.478205pt;}
.ws7b{word-spacing:0.478208pt;}
.ws84{word-spacing:0.487907pt;}
.wsf4{word-spacing:0.489600pt;}
.ws54{word-spacing:0.531339pt;}
.ws49{word-spacing:0.584473pt;}
.ws50{word-spacing:0.637606pt;}
.wsce{word-spacing:0.690740pt;}
.ws6f{word-spacing:0.743874pt;}
.wsde{word-spacing:0.765133pt;}
.ws4b{word-spacing:0.797008pt;}
.ws34{word-spacing:0.850142pt;}
.wsb3{word-spacing:0.860774pt;}
.ws56{word-spacing:0.956410pt;}
.ws7c{word-spacing:0.956416pt;}
.ws43{word-spacing:1.009543pt;}
.ws68{word-spacing:1.052058pt;}
.wsf8{word-spacing:1.056000pt;}
.wscc{word-spacing:1.062677pt;}
.wsf9{word-spacing:1.089600pt;}
.ws6e{word-spacing:1.115811pt;}
.wsb2{word-spacing:1.147699pt;}
.ws89{word-spacing:1.152166pt;}
.ws88{word-spacing:1.163923pt;}
.ws4d{word-spacing:1.168945pt;}
.wsba{word-spacing:1.328347pt;}
.ws12f{word-spacing:1.338982pt;}
.ws47{word-spacing:1.381481pt;}
.ws3c{word-spacing:1.434614pt;}
.ws1b{word-spacing:1.434624pt;}
.wsc9{word-spacing:1.540882pt;}
.ws40{word-spacing:1.594016pt;}
.ws10a{word-spacing:1.694400pt;}
.ws63{word-spacing:1.700284pt;}
.ws5b{word-spacing:1.753418pt;}
.ws51{word-spacing:1.806551pt;}
.wsa2{word-spacing:1.851696pt;}
.ws48{word-spacing:1.859685pt;}
.ws98{word-spacing:1.875210pt;}
.ws55{word-spacing:1.912819pt;}
.ws129{word-spacing:1.912832pt;}
.ws99{word-spacing:1.945750pt;}
.wsa1{word-spacing:1.975142pt;}
.ws115{word-spacing:2.056294pt;}
.ws10b{word-spacing:2.059200pt;}
.ws5a{word-spacing:2.072221pt;}
.wsdd{word-spacing:2.104115pt;}
.ws90{word-spacing:2.186765pt;}
.ws3{word-spacing:2.231616pt;}
.ws61{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws60{word-spacing:2.284756pt;}
.ws65{word-spacing:2.295398pt;}
.wsd2{word-spacing:2.337890pt;}
.ws53{word-spacing:2.391024pt;}
.wsdc{word-spacing:2.391040pt;}
.ws3b{word-spacing:2.444158pt;}
.ws70{word-spacing:2.497292pt;}
.ws19{word-spacing:2.534502pt;}
.ws14{word-spacing:2.550432pt;}
.ws9c{word-spacing:2.551226pt;}
.ws9b{word-spacing:2.568861pt;}
.ws64{word-spacing:2.582323pt;}
.ws128{word-spacing:2.630144pt;}
.ws3f{word-spacing:2.656693pt;}
.ws131{word-spacing:2.725786pt;}
.ws5d{word-spacing:2.762961pt;}
.ws124{word-spacing:2.861807pt;}
.ws1e{word-spacing:2.861926pt;}
.ws121{word-spacing:2.862626pt;}
.ws96{word-spacing:2.862781pt;}
.ws12b{word-spacing:2.863735pt;}
.ws116{word-spacing:2.865749pt;}
.ws12e{word-spacing:2.865920pt;}
.ws125{word-spacing:2.866048pt;}
.ws11f{word-spacing:2.866364pt;}
.ws12d{word-spacing:2.867661pt;}
.ws27{word-spacing:2.869229pt;}
.ws114{word-spacing:2.869248pt;}
.wsd1{word-spacing:2.922363pt;}
.ws97{word-spacing:2.927443pt;}
.wsbc{word-spacing:2.964890pt;}
.wsd0{word-spacing:2.975497pt;}
.wsad{word-spacing:2.999040pt;}
.ws119{word-spacing:3.012710pt;}
.wsc6{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws4e{word-spacing:3.241166pt;}
.wsc7{word-spacing:3.294300pt;}
.ws112{word-spacing:3.299635pt;}
.ws5c{word-spacing:3.400567pt;}
.ws52{word-spacing:3.453701pt;}
.wscd{word-spacing:3.559969pt;}
.ws118{word-spacing:3.586560pt;}
.ws20{word-spacing:3.666237pt;}
.ws120{word-spacing:3.682202pt;}
.ws26{word-spacing:3.772505pt;}
.ws133{word-spacing:3.777843pt;}
.ws28{word-spacing:3.878772pt;}
.ws130{word-spacing:3.921306pt;}
.ws7e{word-spacing:3.931906pt;}
.ws35{word-spacing:3.985040pt;}
.ws122{word-spacing:4.016947pt;}
.wsd5{word-spacing:4.038174pt;}
.ws58{word-spacing:4.091308pt;}
.ws132{word-spacing:4.112589pt;}
.wsb9{word-spacing:4.144442pt;}
.wsa{word-spacing:4.240070pt;}
.ws44{word-spacing:4.250709pt;}
.wsb{word-spacing:4.314458pt;}
.ws57{word-spacing:4.410111pt;}
.wsae{word-spacing:4.435200pt;}
.ws11a{word-spacing:4.447334pt;}
.wsaf{word-spacing:4.477440pt;}
.wsb0{word-spacing:4.524960pt;}
.ws1a{word-spacing:4.638618pt;}
.ws41{word-spacing:4.728914pt;}
.wse3{word-spacing:4.734259pt;}
.ws42{word-spacing:4.782048pt;}
.ws3e{word-spacing:4.888316pt;}
.wse2{word-spacing:5.069005pt;}
.ws6d{word-spacing:5.153985pt;}
.ws3d{word-spacing:5.260253pt;}
.wsca{word-spacing:5.366521pt;}
.ws11c{word-spacing:5.451571pt;}
.ws21{word-spacing:5.579056pt;}
.wsdb{word-spacing:5.595034pt;}
.ws5e{word-spacing:5.632190pt;}
.ws8c{word-spacing:5.690291pt;}
.ws8b{word-spacing:5.737318pt;}
.wsc8{word-spacing:5.738458pt;}
.ws11d{word-spacing:5.881958pt;}
.wscf{word-spacing:6.163529pt;}
.ws111{word-spacing:6.312346pt;}
.ws29{word-spacing:6.376064pt;}
.wsd3{word-spacing:6.641733pt;}
.wsd4{word-spacing:6.854269pt;}
.ws8{word-spacing:6.918010pt;}
.ws71{word-spacing:7.066804pt;}
.ws12a{word-spacing:9.038131pt;}
.wsee{word-spacing:10.325056pt;}
.ws6{word-spacing:10.823338pt;}
.ws82{word-spacing:11.362243pt;}
.ws7{word-spacing:14.319536pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.wse1{word-spacing:82.969088pt;}
.wse5{word-spacing:183.440589pt;}
.wsbd{word-spacing:193.649698pt;}
.wse6{word-spacing:194.727151pt;}
.wse4{word-spacing:196.061116pt;}
.wsbe{word-spacing:224.807347pt;}
.wsc0{word-spacing:248.381235pt;}
.wsc2{word-spacing:260.336435pt;}
.wsc4{word-spacing:262.488371pt;}
.wsc3{word-spacing:274.443571pt;}
.wsb5{word-spacing:323.412070pt;}
.wsb4{word-spacing:329.412267pt;}
.ws69{word-spacing:334.708087pt;}
.ws6c{word-spacing:520.585335pt;}
.ws6b{word-spacing:528.022622pt;}
._5{margin-left:-7.077478pt;}
._19{margin-left:-6.004127pt;}
._8{margin-left:-4.994603pt;}
._0{margin-left:-3.421811pt;}
._22{margin-left:-2.486669pt;}
._4{margin-left:-1.338970pt;}
._24{width:1.287440pt;}
._6{width:2.691024pt;}
._23{width:4.038174pt;}
._1{width:11.527822pt;}
._13{width:13.177232pt;}
._9{width:14.128363pt;}
._d{width:15.493926pt;}
._10{width:16.577766pt;}
._b{width:17.789338pt;}
._c{width:18.793574pt;}
._f{width:20.350271pt;}
._12{width:21.792374pt;}
._2{width:23.063232pt;}
._16{width:24.611603pt;}
._11{width:25.504256pt;}
._3{width:27.188522pt;}
._a{width:28.692467pt;}
._18{width:29.701831pt;}
._17{width:31.912189pt;}
._e{width:33.686871pt;}
._37{width:34.866459pt;}
._38{width:36.928037pt;}
._7{width:48.339269pt;}
._5d{width:54.993920pt;}
._5c{width:78.904320pt;}
._55{width:80.386765pt;}
._3a{width:87.670880pt;}
._3d{width:94.876467pt;}
._54{width:113.765683pt;}
._3e{width:133.324390pt;}
._2a{width:145.136128pt;}
._3c{width:149.025859pt;}
._56{width:152.691814pt;}
._2b{width:159.031159pt;}
._40{width:173.350400pt;}
._41{width:175.693619pt;}
._4b{width:194.487194pt;}
._58{width:206.672367pt;}
._51{width:212.095001pt;}
._27{width:215.815270pt;}
._52{width:217.339980pt;}
._59{width:218.629700pt;}
._5b{width:221.963040pt;}
._49{width:241.447219pt;}
._2d{width:245.894554pt;}
._26{width:256.367309pt;}
._32{width:257.849754pt;}
._2c{width:260.336435pt;}
._2e{width:262.488371pt;}
._35{width:269.804954pt;}
._2f{width:272.291635pt;}
._30{width:274.443571pt;}
._34{width:284.246835pt;}
._36{width:286.398771pt;}
._28{width:288.263782pt;}
._4f{width:342.140453pt;}
._1b{width:343.162061pt;}
._46{width:348.517990pt;}
._20{width:377.240439pt;}
._1a{width:394.904166pt;}
._1d{width:402.029466pt;}
._1c{width:440.142643pt;}
._57{width:465.200742pt;}
._1e{width:467.783066pt;}
._1f{width:479.977370pt;}
._45{width:522.155315pt;}
._21{width:528.563302pt;}
._29{width:540.183757pt;}
._31{width:552.305698pt;}
._4a{width:553.573581pt;}
._33{width:572.581717pt;}
._14{width:721.690975pt;}
._3f{width:751.838618pt;}
._4c{width:790.587955pt;}
._43{width:809.606144pt;}
._50{width:870.462442pt;}
._42{width:972.020100pt;}
._48{width:979.814848pt;}
._4e{width:1051.402598pt;}
._47{width:1072.204646pt;}
._4d{width:1073.639270pt;}
._44{width:1136.556954pt;}
._53{width:1150.951014pt;}
._3b{width:1436.632474pt;}
._5a{width:1846.927376pt;}
._25{width:2054.309488pt;}
._39{width:2230.248000pt;}
._15{width:2251.501333pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:44.292800pt;}
.fs9{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fsb{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fsa{font-size:58.784000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:111.459400pt;}
.y113{bottom:-125.727507pt;}
.y219{bottom:-112.167067pt;}
.y112{bottom:-108.743067pt;}
.y218{bottom:-96.726667pt;}
.y111{bottom:-91.847067pt;}
.y217{bottom:-81.366667pt;}
.y110{bottom:-74.951067pt;}
.y216{bottom:-66.006667pt;}
.y10f{bottom:-57.966627pt;}
.y215{bottom:-50.566267pt;}
.y10e{bottom:-41.070627pt;}
.y214{bottom:-35.206267pt;}
.y10d{bottom:-19.150671pt;}
.y202{bottom:-17.512120pt;}
.y213{bottom:-15.286267pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.743170pt;}
.y1a{bottom:25.118899pt;}
.y4a{bottom:28.346667pt;}
.yeb{bottom:81.480000pt;}
.y184{bottom:92.673333pt;}
.y18{bottom:93.018667pt;}
.y49{bottom:93.372000pt;}
.y7f{bottom:94.884000pt;}
.ya2{bottom:95.282667pt;}
.yea{bottom:98.217333pt;}
.y258{bottom:104.249333pt;}
.y150{bottom:104.766667pt;}
.y17{bottom:108.920000pt;}
.y183{bottom:109.410667pt;}
.y48{bottom:110.109333pt;}
.y7e{bottom:111.621333pt;}
.ya1{bottom:112.020000pt;}
.ye9{bottom:114.954667pt;}
.y14f{bottom:119.378667pt;}
.y257{bottom:119.592000pt;}
.y194{bottom:124.692000pt;}
.y16{bottom:124.820000pt;}
.yb6{bottom:125.569333pt;}
.y182{bottom:126.148000pt;}
.y1c0{bottom:126.354667pt;}
.y47{bottom:126.846667pt;}
.y7d{bottom:128.358667pt;}
.ya0{bottom:128.757333pt;}
.ye8{bottom:131.692000pt;}
.y124{bottom:132.026667pt;}
.y14e{bottom:133.990667pt;}
.y256{bottom:134.933333pt;}
.y21f{bottom:138.738667pt;}
.y1f2{bottom:139.293333pt;}
.y15{bottom:140.720000pt;}
.y1bf{bottom:140.966667pt;}
.yb5{bottom:142.306667pt;}
.y181{bottom:142.885333pt;}
.y46{bottom:143.584000pt;}
.y7c{bottom:145.096000pt;}
.y9f{bottom:145.494667pt;}
.y193{bottom:148.284000pt;}
.ye7{bottom:148.429333pt;}
.y123{bottom:148.764000pt;}
.y255{bottom:150.276000pt;}
.y14d{bottom:155.004000pt;}
.y21e{bottom:155.834667pt;}
.y14{bottom:156.621333pt;}
.yb4{bottom:159.044000pt;}
.y180{bottom:159.621333pt;}
.y1f1{bottom:160.308000pt;}
.y45{bottom:160.321333pt;}
.y7b{bottom:161.833333pt;}
.y1be{bottom:161.980000pt;}
.y9e{bottom:162.232000pt;}
.y192{bottom:163.905333pt;}
.ye6{bottom:165.166667pt;}
.y122{bottom:165.501333pt;}
.y254{bottom:165.618667pt;}
.y14c{bottom:169.616000pt;}
.y13{bottom:172.521333pt;}
.y21d{bottom:172.930667pt;}
.yb3{bottom:175.781333pt;}
.y17f{bottom:176.358667pt;}
.y1bd{bottom:176.592000pt;}
.y44{bottom:177.058667pt;}
.y7a{bottom:178.570667pt;}
.y9d{bottom:178.969333pt;}
.y191{bottom:179.526667pt;}
.y253{bottom:180.961333pt;}
.y1f0{bottom:181.321333pt;}
.ye5{bottom:181.904000pt;}
.y121{bottom:182.238667pt;}
.y14b{bottom:184.228000pt;}
.y12{bottom:188.421333pt;}
.y21c{bottom:190.026667pt;}
.yb2{bottom:192.518667pt;}
.y17e{bottom:193.096000pt;}
.y43{bottom:193.796000pt;}
.y9c{bottom:195.706667pt;}
.y252{bottom:196.304000pt;}
.y1bc{bottom:197.606667pt;}
.ye4{bottom:198.641333pt;}
.y120{bottom:198.976000pt;}
.y79{bottom:199.293333pt;}
.y1ef{bottom:202.336000pt;}
.y190{bottom:203.118667pt;}
.y11{bottom:204.322667pt;}
.y14a{bottom:205.241333pt;}
.y21b{bottom:207.122667pt;}
.y17d{bottom:209.833333pt;}
.y42{bottom:210.532000pt;}
.y251{bottom:211.646667pt;}
.y1bb{bottom:212.218667pt;}
.y9b{bottom:212.444000pt;}
.yb1{bottom:213.241333pt;}
.ye3{bottom:215.378667pt;}
.y11f{bottom:215.713333pt;}
.y18f{bottom:218.740000pt;}
.y1ee{bottom:223.349333pt;}
.y21a{bottom:224.218667pt;}
.y148{bottom:226.256000pt;}
.y17c{bottom:226.570667pt;}
.y250{bottom:226.989333pt;}
.y41{bottom:227.269333pt;}
.y78{bottom:229.181333pt;}
.yb0{bottom:231.173333pt;}
.ye2{bottom:232.116000pt;}
.y11e{bottom:232.450667pt;}
.y1ba{bottom:233.232000pt;}
.y147{bottom:233.561333pt;}
.y18e{bottom:234.361333pt;}
.y149{bottom:240.868000pt;}
.y24f{bottom:242.332000pt;}
.y17b{bottom:243.308000pt;}
.y40{bottom:244.006667pt;}
.y209{bottom:244.154667pt;}
.y1ed{bottom:244.364000pt;}
.y77{bottom:245.918667pt;}
.yaf{bottom:249.106667pt;}
.y11d{bottom:249.188000pt;}
.ye1{bottom:252.838667pt;}
.y1b9{bottom:254.245333pt;}
.y24e{bottom:257.674667pt;}
.y18d{bottom:257.953333pt;}
.y17a{bottom:260.045333pt;}
.y3f{bottom:260.744000pt;}
.y146{bottom:261.881333pt;}
.y76{bottom:262.656000pt;}
.y10{bottom:264.148000pt;}
.y1ec{bottom:265.377333pt;}
.y11c{bottom:265.925333pt;}
.y24d{bottom:273.016000pt;}
.y1b8{bottom:275.260000pt;}
.y179{bottom:276.782667pt;}
.y3e{bottom:277.481333pt;}
.yae{bottom:278.994667pt;}
.y75{bottom:279.393333pt;}
.yf{bottom:280.048000pt;}
.y18c{bottom:281.545333pt;}
.y11b{bottom:282.662667pt;}
.ye0{bottom:282.726667pt;}
.y1eb{bottom:286.392000pt;}
.y24c{bottom:288.358667pt;}
.y145{bottom:292.644000pt;}
.y178{bottom:293.520000pt;}
.y3d{bottom:294.218667pt;}
.yad{bottom:295.732000pt;}
.ye{bottom:295.949333pt;}
.y74{bottom:296.129333pt;}
.y1b7{bottom:296.273333pt;}
.y18b{bottom:297.166667pt;}
.y11a{bottom:299.398667pt;}
.ydf{bottom:299.464000pt;}
.y24b{bottom:303.701333pt;}
.y1ea{bottom:307.405333pt;}
.y144{bottom:309.740000pt;}
.y177{bottom:310.257333pt;}
.y1b6{bottom:310.885333pt;}
.y3c{bottom:310.956000pt;}
.yd{bottom:311.849333pt;}
.yac{bottom:312.469333pt;}
.y9a{bottom:312.866667pt;}
.yde{bottom:316.201333pt;}
.y73{bottom:316.852000pt;}
.y24a{bottom:319.044000pt;}
.y18a{bottom:320.757333pt;}
.y143{bottom:326.836000pt;}
.y176{bottom:326.994667pt;}
.yab{bottom:329.206667pt;}
.y119{bottom:329.236000pt;}
.y99{bottom:329.604000pt;}
.y3b{bottom:331.678667pt;}
.y1b5{bottom:331.900000pt;}
.ydd{bottom:332.938667pt;}
.y249{bottom:334.386667pt;}
.y189{bottom:336.378667pt;}
.yc{bottom:337.048000pt;}
.y1e9{bottom:338.168000pt;}
.y175{bottom:343.732000pt;}
.y142{bottom:343.932000pt;}
.y212{bottom:345.433733pt;}
.yaa{bottom:345.944000pt;}
.y118{bottom:346.332000pt;}
.y98{bottom:346.341333pt;}
.y201{bottom:346.407600pt;}
.y1b4{bottom:346.512000pt;}
.y72{bottom:346.740000pt;}
.ydc{bottom:349.676000pt;}
.y248{bottom:349.729333pt;}
.y188{bottom:352.000000pt;}
.yb{bottom:352.948000pt;}
.y1e8{bottom:355.264000pt;}
.y174{bottom:360.469333pt;}
.ya9{bottom:362.680000pt;}
.y97{bottom:363.078667pt;}
.y117{bottom:363.426667pt;}
.y71{bottom:363.477333pt;}
.y247{bottom:365.072000pt;}
.ydb{bottom:366.413333pt;}
.y1b3{bottom:367.525333pt;}
.y187{bottom:367.622667pt;}
.ya{bottom:368.849333pt;}
.y1e7{bottom:372.360000pt;}
.y141{bottom:376.913333pt;}
.y173{bottom:377.206667pt;}
.ya8{bottom:379.417333pt;}
.y96{bottom:379.816000pt;}
.y70{bottom:380.214667pt;}
.y246{bottom:380.414667pt;}
.y116{bottom:380.522667pt;}
.y1b2{bottom:382.137333pt;}
.y186{bottom:383.244000pt;}
.yda{bottom:387.134667pt;}
.y1e6{bottom:389.456000pt;}
.y9{bottom:392.720000pt;}
.y140{bottom:393.650667pt;}
.y172{bottom:393.944000pt;}
.y245{bottom:395.756000pt;}
.ya7{bottom:396.154667pt;}
.y95{bottom:396.553333pt;}
.y6f{bottom:396.952000pt;}
.y115{bottom:397.618667pt;}
.y3a{bottom:398.478667pt;}
.y185{bottom:398.865333pt;}
.y1b1{bottom:403.152000pt;}
.y1e5{bottom:406.552000pt;}
.y8{bottom:408.620000pt;}
.y13f{bottom:410.388000pt;}
.y171{bottom:410.681333pt;}
.y244{bottom:411.098667pt;}
.ya6{bottom:412.892000pt;}
.y94{bottom:413.290667pt;}
.y6e{bottom:413.689333pt;}
.y114{bottom:414.714667pt;}
.y10c{bottom:416.625408pt;}
.yd9{bottom:417.022667pt;}
.y1b0{bottom:424.165333pt;}
.y7{bottom:424.520000pt;}
.y243{bottom:426.441333pt;}
.y13e{bottom:427.125333pt;}
.y170{bottom:427.418667pt;}
.ya5{bottom:429.629333pt;}
.y93{bottom:430.028000pt;}
.y6d{bottom:430.426667pt;}
.y39{bottom:431.714667pt;}
.yd8{bottom:433.760000pt;}
.yf5{bottom:434.652000pt;}
.y10b{bottom:435.456862pt;}
.y6{bottom:440.421333pt;}
.y242{bottom:441.784000pt;}
.y13d{bottom:443.862667pt;}
.y16f{bottom:444.156000pt;}
.y1af{bottom:445.180000pt;}
.y92{bottom:446.765333pt;}
.y6c{bottom:447.164000pt;}
.y1e4{bottom:448.900000pt;}
.y38{bottom:449.009333pt;}
.ya4{bottom:450.352000pt;}
.yd7{bottom:450.497333pt;}
.y1e2{bottom:451.181333pt;}
.y10a{bottom:454.200141pt;}
.y5{bottom:456.321333pt;}
.y241{bottom:457.126667pt;}
.y13c{bottom:460.600000pt;}
.y16e{bottom:460.893333pt;}
.y91{bottom:463.502667pt;}
.y1e3{bottom:463.512000pt;}
.y1e1{bottom:463.800000pt;}
.y6b{bottom:463.901333pt;}
.y1ae{bottom:466.193333pt;}
.y37{bottom:466.304000pt;}
.yd6{bottom:467.234667pt;}
.y4{bottom:472.221333pt;}
.y276{bottom:472.402667pt;}
.y240{bottom:472.469333pt;}
.y109{bottom:473.031595pt;}
.y13b{bottom:477.337333pt;}
.y16d{bottom:477.630667pt;}
.y90{bottom:480.240000pt;}
.y6a{bottom:480.638667pt;}
.y36{bottom:483.600000pt;}
.yd5{bottom:483.972000pt;}
.y1ad{bottom:487.206667pt;}
.y275{bottom:487.745333pt;}
.y23f{bottom:487.812000pt;}
.y3{bottom:488.122667pt;}
.y1e0{bottom:488.178667pt;}
.y108{bottom:491.774873pt;}
.y13a{bottom:494.074667pt;}
.y16c{bottom:494.368000pt;}
.y8f{bottom:496.977333pt;}
.y69{bottom:497.376000pt;}
.yd4{bottom:500.709333pt;}
.y35{bottom:500.894667pt;}
.y1ac{bottom:501.818667pt;}
.y274{bottom:503.088000pt;}
.y23e{bottom:503.154667pt;}
.y2{bottom:504.022667pt;}
.y1df{bottom:507.533333pt;}
.y107{bottom:510.606328pt;}
.y139{bottom:510.812000pt;}
.y16b{bottom:511.105333pt;}
.y8e{bottom:513.714667pt;}
.y68{bottom:514.113333pt;}
.yd3{bottom:517.446667pt;}
.y34{bottom:518.190667pt;}
.y23d{bottom:518.497333pt;}
.y1{bottom:519.922667pt;}
.y1de{bottom:520.152000pt;}
.y1ab{bottom:522.833333pt;}
.y138{bottom:527.549333pt;}
.y16a{bottom:527.842667pt;}
.y106{bottom:529.437782pt;}
.y8d{bottom:530.452000pt;}
.y1d2{bottom:530.518667pt;}
.y67{bottom:530.850667pt;}
.y1dd{bottom:532.772000pt;}
.y23c{bottom:533.838667pt;}
.yd2{bottom:534.184000pt;}
.y33{bottom:535.485333pt;}
.y273{bottom:537.824000pt;}
.y1d8{bottom:540.741333pt;}
.y1aa{bottom:543.846667pt;}
.y137{bottom:544.286667pt;}
.y1dc{bottom:545.390667pt;}
.y8c{bottom:547.189333pt;}
.y66{bottom:547.588000pt;}
.y105{bottom:548.182530pt;}
.y169{bottom:548.564000pt;}
.y23b{bottom:549.181333pt;}
.yd1{bottom:550.921333pt;}
.y32{bottom:552.780000pt;}
.y272{bottom:553.166667pt;}
.y1d7{bottom:553.361333pt;}
.y1db{bottom:558.010667pt;}
.y8b{bottom:563.926667pt;}
.y65{bottom:564.325333pt;}
.y23a{bottom:564.524000pt;}
.y1a9{bottom:564.861333pt;}
.y136{bottom:565.009333pt;}
.yd0{bottom:567.658667pt;}
.y271{bottom:568.509333pt;}
.y31{bottom:570.076000pt;}
.y1da{bottom:570.629333pt;}
.y104{bottom:571.327261pt;}
.y208{bottom:576.698667pt;}
.y239{bottom:579.866667pt;}
.y8a{bottom:580.664000pt;}
.y64{bottom:581.062667pt;}
.y1d9{bottom:583.249333pt;}
.y270{bottom:583.852000pt;}
.ycf{bottom:584.396000pt;}
.y1a8{bottom:585.874667pt;}
.y30{bottom:587.370667pt;}
.y168{bottom:588.842667pt;}
.y207{bottom:593.794667pt;}
.y103{bottom:594.558697pt;}
.y135{bottom:594.896000pt;}
.y238{bottom:595.209333pt;}
.y89{bottom:597.401333pt;}
.y63{bottom:597.800000pt;}
.y26f{bottom:599.194667pt;}
.yce{bottom:601.133333pt;}
.y167{bottom:603.454667pt;}
.y1d6{bottom:604.262667pt;}
.y2f{bottom:604.665333pt;}
.y1d4{bottom:605.922667pt;}
.y1a7{bottom:606.889333pt;}
.y237{bottom:610.552000pt;}
.y206{bottom:610.890667pt;}
.y134{bottom:611.633333pt;}
.y88{bottom:614.138667pt;}
.y62{bottom:614.537333pt;}
.y1d5{bottom:616.882667pt;}
.y166{bottom:618.066667pt;}
.y1d3{bottom:618.542667pt;}
.y2e{bottom:621.961333pt;}
.y236{bottom:625.894667pt;}
.y205{bottom:627.986667pt;}
.y133{bottom:628.370667pt;}
.y26e{bottom:629.878667pt;}
.y87{bottom:630.876000pt;}
.y102{bottom:630.990081pt;}
.y61{bottom:631.274667pt;}
.ya3{bottom:634.861333pt;}
.y1a6{bottom:634.994667pt;}
.y165{bottom:639.080000pt;}
.y1d1{bottom:639.224000pt;}
.y2d{bottom:639.256000pt;}
.y235{bottom:641.237333pt;}
.ycd{bottom:641.445333pt;}
.y204{bottom:645.082667pt;}
.y132{bottom:645.108000pt;}
.y26d{bottom:645.221333pt;}
.y86{bottom:647.613333pt;}
.y60{bottom:648.012000pt;}
.y1d0{bottom:649.332000pt;}
.y101{bottom:649.821536pt;}
.y1a5{bottom:652.090667pt;}
.y164{bottom:653.692000pt;}
.ycc{bottom:656.056000pt;}
.y2c{bottom:656.552000pt;}
.y234{bottom:656.578667pt;}
.y26c{bottom:660.564000pt;}
.y131{bottom:661.845333pt;}
.y203{bottom:662.178667pt;}
.y85{bottom:664.350667pt;}
.y5f{bottom:664.749333pt;}
.y100{bottom:668.564814pt;}
.y1a4{bottom:669.186667pt;}
.y233{bottom:671.921333pt;}
.y163{bottom:674.705333pt;}
.y26b{bottom:675.906667pt;}
.y1cf{bottom:676.842667pt;}
.ycb{bottom:677.070667pt;}
.y130{bottom:678.582667pt;}
.y1cb{bottom:678.813333pt;}
.y84{bottom:681.088000pt;}
.y5e{bottom:681.485333pt;}
.y1f3{bottom:682.115600pt;}
.y1a3{bottom:686.282667pt;}
.y232{bottom:687.264000pt;}
.yff{bottom:687.396269pt;}
.y162{bottom:689.317333pt;}
.y1ce{bottom:690.126667pt;}
.yc6{bottom:690.793333pt;}
.y2b{bottom:690.849333pt;}
.y26a{bottom:691.249333pt;}
.y12f{bottom:695.320000pt;}
.y83{bottom:697.825333pt;}
.yca{bottom:698.084000pt;}
.y5d{bottom:698.222667pt;}
.y231{bottom:702.606667pt;}
.y1cd{bottom:703.409333pt;}
.y161{bottom:703.929333pt;}
.y2a{bottom:705.196000pt;}
.yc5{bottom:705.404000pt;}
.yfe{bottom:706.227723pt;}
.y211{bottom:706.312933pt;}
.y269{bottom:706.592000pt;}
.y200{bottom:708.807467pt;}
.yc9{bottom:712.696000pt;}
.y82{bottom:714.562667pt;}
.y5c{bottom:714.960000pt;}
.y12e{bottom:716.042667pt;}
.y230{bottom:717.949333pt;}
.y1cc{bottom:718.021333pt;}
.y29{bottom:719.542667pt;}
.y210{bottom:721.753333pt;}
.y268{bottom:721.934667pt;}
.y28{bottom:723.400000pt;}
.y1ff{bottom:724.327067pt;}
.y1a2{bottom:724.525333pt;}
.y15f{bottom:724.944000pt;}
.yfd{bottom:724.971001pt;}
.y81{bottom:731.300000pt;}
.y5b{bottom:731.697333pt;}
.y22f{bottom:733.292000pt;}
.yc8{bottom:733.710667pt;}
.y27{bottom:733.888000pt;}
.y20f{bottom:737.113333pt;}
.y267{bottom:737.277333pt;}
.y15e{bottom:739.556000pt;}
.y1fe{bottom:739.687067pt;}
.y1ca{bottom:741.028000pt;}
.yfc{bottom:743.802456pt;}
.y160{bottom:746.861333pt;}
.yc7{bottom:748.322667pt;}
.y5a{bottom:748.434667pt;}
.y22e{bottom:748.634667pt;}
.y1c9{bottom:751.136000pt;}
.y80{bottom:752.021333pt;}
.y26{bottom:752.092000pt;}
.y20e{bottom:752.473333pt;}
.y266{bottom:752.620000pt;}
.y12d{bottom:753.664000pt;}
.y15d{bottom:754.168000pt;}
.y1fd{bottom:755.047067pt;}
.y1a1{bottom:757.202667pt;}
.yfb{bottom:762.545734pt;}
.y25{bottom:762.581333pt;}
.y22d{bottom:763.977333pt;}
.y59{bottom:765.172000pt;}
.y20d{bottom:767.913733pt;}
.y265{bottom:767.961333pt;}
.y15c{bottom:768.778667pt;}
.yc4{bottom:769.336000pt;}
.y1fc{bottom:770.407067pt;}
.yc2{bottom:772.368000pt;}
.y1a0{bottom:773.940000pt;}
.y12c{bottom:774.677333pt;}
.y22c{bottom:779.320000pt;}
.y1c8{bottom:779.974667pt;}
.y24{bottom:780.784000pt;}
.yfa{bottom:781.377189pt;}
.y58{bottom:781.909333pt;}
.y20c{bottom:783.273733pt;}
.y264{bottom:783.304000pt;}
.y1fb{bottom:785.847467pt;}
.yc1{bottom:786.980000pt;}
.y1c2{bottom:787.592000pt;}
.y15b{bottom:789.793333pt;}
.yc3{bottom:790.350667pt;}
.y19f{bottom:790.677333pt;}
.y23{bottom:791.273333pt;}
.y1c7{bottom:792.594667pt;}
.y22b{bottom:794.661333pt;}
.y12b{bottom:795.692000pt;}
.y57{bottom:798.646667pt;}
.yf9{bottom:800.208643pt;}
.y1c6{bottom:805.213333pt;}
.y22{bottom:805.620000pt;}
.y1c3{bottom:806.209333pt;}
.y19e{bottom:807.414667pt;}
.y22a{bottom:810.004000pt;}
.y15a{bottom:810.806667pt;}
.yc0{bottom:811.364000pt;}
.y263{bottom:813.989333pt;}
.y56{bottom:815.384000pt;}
.y12a{bottom:816.705333pt;}
.y1c5{bottom:817.833333pt;}
.y1fa{bottom:820.247467pt;}
.y1f8{bottom:820.568195pt;}
.yf8{bottom:823.353373pt;}
.y21{bottom:823.824000pt;}
.y19d{bottom:824.152000pt;}
.y229{bottom:825.346667pt;}
.y159{bottom:825.418667pt;}
.ybf{bottom:825.421333pt;}
.yf4{bottom:826.941333pt;}
.y262{bottom:829.332000pt;}
.y1c4{bottom:830.452000pt;}
.y20b{bottom:830.473853pt;}
.y55{bottom:832.121333pt;}
.y129{bottom:837.720000pt;}
.y20a{bottom:839.033733pt;}
.y228{bottom:840.689333pt;}
.y19c{bottom:840.888000pt;}
.y1f7{bottom:842.247467pt;}
.y1f9{bottom:842.648267pt;}
.yf3{bottom:843.678667pt;}
.y261{bottom:844.674667pt;}
.y158{bottom:846.433333pt;}
.y54{bottom:848.858667pt;}
.y1c1{bottom:852.130667pt;}
.ybe{bottom:853.392000pt;}
.y227{bottom:856.032000pt;}
.y19b{bottom:857.625333pt;}
.y128{bottom:858.733333pt;}
.y260{bottom:860.017333pt;}
.yf2{bottom:860.416000pt;}
.y157{bottom:861.045333pt;}
.y20{bottom:863.536000pt;}
.y53{bottom:865.596000pt;}
.y1f6{bottom:866.647467pt;}
.y226{bottom:871.374667pt;}
.y19a{bottom:874.362667pt;}
.y25f{bottom:875.360000pt;}
.yf7{bottom:876.857505pt;}
.yf1{bottom:877.153333pt;}
.y127{bottom:879.748000pt;}
.ybd{bottom:881.498667pt;}
.y156{bottom:882.058667pt;}
.y52{bottom:882.333333pt;}
.yf6{bottom:886.273373pt;}
.y225{bottom:886.717333pt;}
.y25e{bottom:890.702667pt;}
.y199{bottom:891.100000pt;}
.yf0{bottom:893.890667pt;}
.y1f{bottom:896.213333pt;}
.y155{bottom:896.670667pt;}
.ybc{bottom:898.594667pt;}
.y51{bottom:899.070667pt;}
.y126{bottom:900.761333pt;}
.y224{bottom:902.060000pt;}
.y25d{bottom:906.044000pt;}
.y198{bottom:907.837333pt;}
.yef{bottom:910.628000pt;}
.ybb{bottom:915.690667pt;}
.y50{bottom:915.808000pt;}
.y223{bottom:917.401333pt;}
.y153{bottom:917.685333pt;}
.y1f5{bottom:920.167587pt;}
.y1e{bottom:921.320000pt;}
.y25c{bottom:921.386667pt;}
.y125{bottom:921.776000pt;}
.y197{bottom:924.574667pt;}
.y152{bottom:924.990667pt;}
.yee{bottom:927.364000pt;}
.y1f4{bottom:928.727467pt;}
.y154{bottom:932.296000pt;}
.y4f{bottom:932.545333pt;}
.y222{bottom:932.744000pt;}
.yba{bottom:932.785333pt;}
.y25b{bottom:936.729333pt;}
.y196{bottom:941.312000pt;}
.yed{bottom:944.101333pt;}
.y1d{bottom:946.425333pt;}
.y221{bottom:948.086667pt;}
.y4e{bottom:949.282667pt;}
.yb9{bottom:949.881333pt;}
.y25a{bottom:952.072000pt;}
.y151{bottom:953.310667pt;}
.y195{bottom:962.034667pt;}
.y220{bottom:963.429333pt;}
.yec{bottom:964.824000pt;}
.y4d{bottom:966.020000pt;}
.yb8{bottom:966.977333pt;}
.y259{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.yb7{bottom:984.073333pt;}
.y19{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h20{height:30.732706pt;}
.ha{height:30.945242pt;}
.h25{height:31.067969pt;}
.h10{height:31.157778pt;}
.h24{height:31.338125pt;}
.hd{height:33.426739pt;}
.h17{height:34.174766pt;}
.h16{height:34.471938pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h28{height:35.039062pt;}
.h1d{height:35.052646pt;}
.h27{height:35.343750pt;}
.h14{height:36.873667pt;}
.he{height:38.415786pt;}
.h1c{height:38.542969pt;}
.hf{height:38.681455pt;}
.h1b{height:38.878125pt;}
.h6{height:38.947124pt;}
.h26{height:39.010156pt;}
.h1a{height:42.308406pt;}
.h18{height:42.911172pt;}
.h19{height:43.284313pt;}
.h2a{height:44.436941pt;}
.h4{height:45.272024pt;}
.h8{height:48.481423pt;}
.h21{height:48.961242pt;}
.h22{height:56.187908pt;}
.h11{height:62.642876pt;}
.h1f{height:63.795772pt;}
.h1e{height:63.801105pt;}
.h12{height:64.034876pt;}
.h13{height:64.040209pt;}
.h7{height:69.148877pt;}
.h5{height:75.569473pt;}
.h29{height:312.804000pt;}
.h23{height:313.925733pt;}
.h15{height:375.258400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:204.451647pt;}
.w5{width:312.244000pt;}
.w4{width:313.925333pt;}
.w3{width:373.121467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4d{left:-211.376000pt;}
.x7e{left:-190.248000pt;}
.x80{left:-76.728000pt;}
.x81{left:-65.128137pt;}
.x7f{left:-58.488000pt;}
.x4e{left:-20.152000pt;}
.x83{left:-16.408000pt;}
.x0{left:0.000000pt;}
.x4f{left:11.000581pt;}
.x1{left:47.621333pt;}
.x5e{left:55.197333pt;}
.x2{left:56.223489pt;}
.x76{left:57.284000pt;}
.x7d{left:75.202667pt;}
.x86{left:76.309333pt;}
.x71{left:78.202667pt;}
.x78{left:86.800000pt;}
.x82{left:88.311642pt;}
.x72{left:102.416000pt;}
.x87{left:121.812000pt;}
.x7c{left:135.826667pt;}
.x7b{left:191.657333pt;}
.x91{left:211.989333pt;}
.x37{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5a{left:225.522667pt;}
.x70{left:229.828000pt;}
.x5f{left:235.941333pt;}
.x79{left:237.702667pt;}
.x60{left:238.930667pt;}
.x4{left:239.924000pt;}
.x75{left:242.060000pt;}
.x9{left:250.204000pt;}
.x16{left:253.794667pt;}
.x77{left:259.540000pt;}
.x25{left:261.605333pt;}
.x3b{left:264.101333pt;}
.x55{left:265.276000pt;}
.x7{left:266.356000pt;}
.x52{left:268.140000pt;}
.x38{left:269.584000pt;}
.x7a{left:271.060000pt;}
.x51{left:272.361333pt;}
.x6{left:273.896000pt;}
.x8{left:275.502667pt;}
.x39{left:277.789333pt;}
.x69{left:279.541333pt;}
.x26{left:281.410667pt;}
.x8c{left:282.930667pt;}
.x3e{left:291.686667pt;}
.x6a{left:292.824000pt;}
.x27{left:294.694667pt;}
.x35{left:297.844000pt;}
.x45{left:304.666667pt;}
.x29{left:305.680000pt;}
.x36{left:311.126667pt;}
.x46{left:317.950667pt;}
.x2a{left:318.964000pt;}
.xa{left:324.890667pt;}
.x84{left:326.552000pt;}
.x85{left:328.953495pt;}
.xb{left:331.532000pt;}
.x2b{left:338.909333pt;}
.x6d{left:347.336000pt;}
.x58{left:348.517333pt;}
.x62{left:355.978667pt;}
.x63{left:359.366667pt;}
.x59{left:362.772000pt;}
.x54{left:363.738667pt;}
.x67{left:367.816000pt;}
.x64{left:372.649333pt;}
.x68{left:381.100000pt;}
.x6f{left:382.834667pt;}
.x6e{left:386.728000pt;}
.x21{left:389.881333pt;}
.x50{left:393.894574pt;}
.x22{left:396.522667pt;}
.x23{left:399.873333pt;}
.x73{left:405.658667pt;}
.x3f{left:411.266667pt;}
.x24{left:413.157333pt;}
.x42{left:416.425333pt;}
.x3a{left:417.465333pt;}
.x65{left:418.746667pt;}
.x66{left:425.388000pt;}
.x74{left:432.116000pt;}
.x3c{left:433.904000pt;}
.x3d{left:436.952000pt;}
.x49{left:439.586667pt;}
.x43{left:444.285333pt;}
.x41{left:449.313333pt;}
.x40{left:451.614667pt;}
.x4a{left:453.849333pt;}
.x12{left:455.944000pt;}
.x44{left:457.569333pt;}
.x53{left:461.034667pt;}
.x13{left:462.585333pt;}
.x2e{left:471.889333pt;}
.x18{left:484.121333pt;}
.x2f{left:485.173333pt;}
.x30{left:488.550667pt;}
.x6b{left:491.929333pt;}
.x19{left:497.405333pt;}
.x31{left:501.833333pt;}
.x6c{left:505.212000pt;}
.x4b{left:509.890667pt;}
.x5b{left:515.162667pt;}
.x4c{left:523.173333pt;}
.xc{left:533.576000pt;}
.xd{left:540.217333pt;}
.x47{left:584.085333pt;}
.x5c{left:592.465333pt;}
.x48{left:597.369333pt;}
.x5d{left:600.254667pt;}
.x1f{left:615.950667pt;}
.x8d{left:624.401333pt;}
.x1a{left:627.654667pt;}
.x20{left:629.233333pt;}
.x1b{left:640.937333pt;}
.x1c{left:644.325333pt;}
.x8e{left:648.312000pt;}
.x8f{left:654.660000pt;}
.x8a{left:655.650667pt;}
.x1d{left:657.608000pt;}
.x14{left:663.532000pt;}
.x15{left:670.173333pt;}
.x90{left:678.570667pt;}
.x8b{left:679.561333pt;}
.x32{left:682.597333pt;}
.x28{left:683.581333pt;}
.x2c{left:686.156000pt;}
.x33{left:695.881333pt;}
.x2d{left:699.438667pt;}
.x1e{left:710.130667pt;}
.x56{left:711.141333pt;}
.x34{left:712.418667pt;}
.x89{left:720.236000pt;}
.xe{left:723.897333pt;}
.x57{left:725.393333pt;}
.x17{left:727.082667pt;}
.xf{left:730.540000pt;}
.x10{left:733.794667pt;}
.x61{left:739.461333pt;}
.x11{left:740.436000pt;}
.x88{left:744.864000pt;}
}




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