
    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_aefffa1a534b7399402fc9af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_9f39cbd4f86adb07bee3b094.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_e3e03f8f8af8e075675075aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_6ba2817c75cb4b4de494979e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9521b24fd2590e18fa26f8e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_301dd3b4ee5b394c1d4db3c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_219cb2aca2fa8888ba2d874c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_7533da333401d7d2be2285ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_6584da9e31adb15c1a93416f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_34894d6d78e231faeb48ec92.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_7efd139d5385336bb5759a6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_a49b2394cb3948e788512eba.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_978e1e15ec2fbed03bcd8703.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_1a4d0ef68cf831465fd67de9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_1ebff94f859323b5dd95ddd1.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_a49b2394cb3948e788512eba.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_a75c5ca4e0ff423d4d34f904.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.784180;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_abb57cba2eaa93e5f705a65e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_8ad8088bfe9341cb712afa61.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_a0f2609a9d2e75f839c1f53c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;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_0223da48d854ad2cb48d6b04.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893555;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_a49b2394cb3948e788512eba.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_683b3377be53ec27534a0d9e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.784180;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_08b4947ac6fa8f784757a4fd.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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_11dab98cff7d2358f6f6ba3c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.882324;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_fe82cb282819d3c51d30fb63.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_1f1f72bccc9041d2e951e6ba.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a75c5ca4e0ff423d4d34f904.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.784180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e08a8dd582c1937685910f77.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_da4a0637ae1da0b1893292a2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2dfed11ba94753fcc9880f5e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.784180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_c508ea39d8ca1d05defa0bec.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.784180;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:ff21;src:url('chunks/assets/font_b64881ce4d3b6a5c439434fd.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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:ff22;src:url('chunks/assets/font_dc7ca46015b41137396e0f0c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910645;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:ff23;src:url('chunks/assets/font_9250a5000d638aa062798795.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;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:ff24;src:url('chunks/assets/font_a75c5ca4e0ff423d4d34f904.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.784180;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:ff25;src:url('chunks/assets/font_8b1be4ffb73b49a3b3632bff.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893555;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:ff26;src:url('chunks/assets/font_a49b2394cb3948e788512eba.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_ea582b04c03ea9589a6e2921.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.690918;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;}
.me{transform:matrix(0.000000,-0.242473,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.242473,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.242473,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.272413,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.272413,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.272413,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236460,0.000000,-0.080874,0.236557,0,0);-ms-transform:matrix(0.236460,0.000000,-0.080874,0.236557,0,0);-webkit-transform:matrix(0.236460,0.000000,-0.080874,0.236557,0,0);}
.mc{transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242473,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.m3{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);}
.m8{transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272408,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272413,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v6{vertical-align:-20.880000px;}
.v5{vertical-align:-6.100560px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.689360px;}
.v8{vertical-align:5.760000px;}
.v2{vertical-align:12.592440px;}
.v4{vertical-align:20.933280px;}
.v3{vertical-align:27.000000px;}
.ls26{letter-spacing:-1.577147px;}
.ls14{letter-spacing:-0.601200px;}
.ls19{letter-spacing:-0.300600px;}
.ls35{letter-spacing:-0.265062px;}
.ls36{letter-spacing:-0.240480px;}
.ls24{letter-spacing:-0.240001px;}
.ls25{letter-spacing:-0.236112px;}
.ls15{letter-spacing:-0.180360px;}
.ls18{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.120240px;}
.ls10{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.095760px;}
.ls13{letter-spacing:-0.078120px;}
.ls16{letter-spacing:-0.060120px;}
.ls11{letter-spacing:-0.054000px;}
.ls17{letter-spacing:-0.047880px;}
.lsf{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.007803px;}
.lsb{letter-spacing:0.008403px;}
.ls31{letter-spacing:0.023940px;}
.ls21{letter-spacing:0.027000px;}
.ls30{letter-spacing:0.030060px;}
.ls1c{letter-spacing:0.036072px;}
.ls2e{letter-spacing:0.041331px;}
.ls1{letter-spacing:0.047880px;}
.ls2d{letter-spacing:0.048014px;}
.ls5{letter-spacing:0.054000px;}
.ls33{letter-spacing:0.059760px;}
.ls6{letter-spacing:0.060120px;}
.ls1e{letter-spacing:0.068572px;}
.ls32{letter-spacing:0.071820px;}
.ls3{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.076608px;}
.ls1b{letter-spacing:0.090180px;}
.ls0{letter-spacing:0.095760px;}
.ls4{letter-spacing:0.101880px;}
.ls1f{letter-spacing:0.102857px;}
.ls29{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.113598px;}
.ls27{letter-spacing:0.119700px;}
.ls8{letter-spacing:0.120240px;}
.ls2{letter-spacing:0.143640px;}
.lsc{letter-spacing:0.170156px;}
.ls23{letter-spacing:0.179280px;}
.lse{letter-spacing:0.180360px;}
.ls7{letter-spacing:0.191520px;}
.ls28{letter-spacing:0.239400px;}
.ls9{letter-spacing:0.368548px;}
.ls34{letter-spacing:0.743958px;}
.ls1d{letter-spacing:1.627920px;}
.lsd{letter-spacing:2.585160px;}
.ls20{letter-spacing:3.667320px;}
.ls2c{letter-spacing:1147.612737px;}
.ls2b{letter-spacing:1218.812760px;}
.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;}
}
.ws6{word-spacing:-99.000000px;}
.ws8f{word-spacing:-48.023640px;}
.ws8{word-spacing:-18.817560px;}
.ws2{word-spacing:-15.984000px;}
.wsf{word-spacing:-15.210360px;}
.wsc{word-spacing:-15.082200px;}
.ws1{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.986440px;}
.ws5{word-spacing:-14.958000px;}
.wsd{word-spacing:-14.938560px;}
.ws7{word-spacing:-14.909760px;}
.ws11{word-spacing:-14.849640px;}
.ws10{word-spacing:-14.729400px;}
.ws4{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.780000px;}
.wse{word-spacing:-12.065760px;}
.ws4b{word-spacing:-12.000000px;}
.ws8c{word-spacing:-10.533600px;}
.ws8e{word-spacing:-10.261686px;}
.wsb{word-spacing:-9.720000px;}
.ws4f{word-spacing:-9.634310px;}
.ws4e{word-spacing:-7.954306px;}
.ws4c{word-spacing:-7.470000px;}
.ws26{word-spacing:-3.366720px;}
.ws55{word-spacing:-3.126240px;}
.ws25{word-spacing:-3.006000px;}
.ws27{word-spacing:-2.945880px;}
.ws90{word-spacing:-2.705400px;}
.ws47{word-spacing:-2.525040px;}
.ws5a{word-spacing:-2.464920px;}
.ws5b{word-spacing:-2.404800px;}
.ws5c{word-spacing:-2.344680px;}
.ws88{word-spacing:-2.284560px;}
.ws89{word-spacing:-2.044080px;}
.ws65{word-spacing:-1.620000px;}
.ws66{word-spacing:-1.566000px;}
.ws33{word-spacing:-1.442880px;}
.ws76{word-spacing:-1.322640px;}
.wsa7{word-spacing:-1.082160px;}
.ws5e{word-spacing:-1.022040px;}
.ws98{word-spacing:-0.972000px;}
.ws75{word-spacing:-0.961920px;}
.ws99{word-spacing:-0.918000px;}
.ws77{word-spacing:-0.901800px;}
.ws5d{word-spacing:-0.601200px;}
.ws5f{word-spacing:-0.480960px;}
.wsa0{word-spacing:-0.384110px;}
.ws3a{word-spacing:-0.360720px;}
.wsa1{word-spacing:-0.330648px;}
.ws78{word-spacing:-0.300600px;}
.ws9a{word-spacing:-0.270000px;}
.ws39{word-spacing:-0.240480px;}
.ws16{word-spacing:-0.239400px;}
.ws14{word-spacing:-0.191520px;}
.ws43{word-spacing:-0.180360px;}
.ws69{word-spacing:-0.179280px;}
.ws17{word-spacing:-0.143640px;}
.ws70{word-spacing:-0.120240px;}
.ws0{word-spacing:-0.099000px;}
.ws97{word-spacing:-0.095760px;}
.ws1a{word-spacing:-0.078120px;}
.ws18{word-spacing:-0.072000px;}
.ws2b{word-spacing:-0.060120px;}
.ws92{word-spacing:-0.059760px;}
.ws2a{word-spacing:-0.054000px;}
.ws15{word-spacing:-0.047880px;}
.ws12{word-spacing:0.000000px;}
.ws6a{word-spacing:0.047880px;}
.ws96{word-spacing:0.054000px;}
.ws1b{word-spacing:0.078120px;}
.ws68{word-spacing:0.095760px;}
.ws19{word-spacing:0.101880px;}
.ws1c{word-spacing:0.108000px;}
.ws45{word-spacing:0.120240px;}
.ws29{word-spacing:0.162000px;}
.ws28{word-spacing:0.180360px;}
.ws13{word-spacing:0.216000px;}
.ws6d{word-spacing:0.236112px;}
.wsb0{word-spacing:0.239400px;}
.ws3b{word-spacing:0.240480px;}
.ws44{word-spacing:0.270000px;}
.ws6c{word-spacing:0.308572px;}
.wsa2{word-spacing:0.371979px;}
.wsa3{word-spacing:0.413310px;}
.ws8b{word-spacing:0.420840px;}
.ws7b{word-spacing:0.480960px;}
.ws62{word-spacing:0.486000px;}
.ws64{word-spacing:0.540000px;}
.ws63{word-spacing:0.648000px;}
.ws2e{word-spacing:0.841680px;}
.ws7a{word-spacing:0.901800px;}
.ws83{word-spacing:1.202400px;}
.wsab{word-spacing:1.382760px;}
.ws59{word-spacing:1.442880px;}
.ws4a{word-spacing:1.503000px;}
.ws58{word-spacing:1.563120px;}
.ws7f{word-spacing:1.620000px;}
.ws21{word-spacing:1.623240px;}
.ws60{word-spacing:1.683360px;}
.wsaa{word-spacing:1.863720px;}
.ws81{word-spacing:1.944000px;}
.ws80{word-spacing:1.998000px;}
.ws49{word-spacing:2.044080px;}
.ws2d{word-spacing:2.104200px;}
.ws22{word-spacing:2.164320px;}
.ws48{word-spacing:2.404800px;}
.ws2c{word-spacing:2.705400px;}
.ws40{word-spacing:2.885760px;}
.ws24{word-spacing:2.945880px;}
.ws1e{word-spacing:3.066120px;}
.ws23{word-spacing:3.126240px;}
.ws46{word-spacing:3.246480px;}
.ws1d{word-spacing:3.426840px;}
.ws74{word-spacing:3.607200px;}
.ws30{word-spacing:3.787560px;}
.ws2f{word-spacing:3.847680px;}
.ws73{word-spacing:4.028040px;}
.ws8a{word-spacing:4.148280px;}
.ws82{word-spacing:5.050080px;}
.ws34{word-spacing:5.230440px;}
.ws50{word-spacing:5.410800px;}
.ws51{word-spacing:5.470920px;}
.ws35{word-spacing:5.651280px;}
.ws32{word-spacing:5.711400px;}
.wsa8{word-spacing:5.771520px;}
.wsac{word-spacing:6.192360px;}
.ws72{word-spacing:6.312600px;}
.ws71{word-spacing:6.613200px;}
.wsa5{word-spacing:6.913800px;}
.ws57{word-spacing:6.973920px;}
.ws56{word-spacing:7.034040px;}
.wsa6{word-spacing:7.154280px;}
.ws6f{word-spacing:7.214400px;}
.ws6e{word-spacing:7.394760px;}
.ws20{word-spacing:7.755480px;}
.ws1f{word-spacing:8.116200px;}
.ws85{word-spacing:8.356680px;}
.ws86{word-spacing:8.717400px;}
.ws84{word-spacing:8.777520px;}
.wsa4{word-spacing:8.837640px;}
.ws42{word-spacing:8.897760px;}
.wsa9{word-spacing:9.198360px;}
.ws37{word-spacing:9.498960px;}
.ws41{word-spacing:9.619200px;}
.ws38{word-spacing:9.919800px;}
.ws79{word-spacing:10.400760px;}
.ws54{word-spacing:10.581120px;}
.ws53{word-spacing:10.641240px;}
.ws52{word-spacing:10.701360px;}
.ws36{word-spacing:10.761480px;}
.wsad{word-spacing:12.444840px;}
.wsae{word-spacing:12.805560px;}
.wsaf{word-spacing:13.587120px;}
.ws31{word-spacing:14.248440px;}
.ws87{word-spacing:14.428800px;}
.ws6b{word-spacing:76.847400px;}
.ws95{word-spacing:82.545120px;}
.ws94{word-spacing:83.646360px;}
.ws9b{word-spacing:87.234120px;}
.ws3f{word-spacing:115.007760px;}
.ws3e{word-spacing:132.388200px;}
.ws4d{word-spacing:133.778108px;}
.ws3d{word-spacing:141.054480px;}
.ws93{word-spacing:146.704320px;}
.ws8d{word-spacing:199.061562px;}
.ws91{word-spacing:235.761120px;}
.ws67{word-spacing:253.045800px;}
.ws7c{word-spacing:406.351080px;}
.ws9e{word-spacing:477.986040px;}
.ws9d{word-spacing:489.908160px;}
.ws9c{word-spacing:501.782400px;}
.ws3c{word-spacing:617.029560px;}
.ws3{word-spacing:1212.546600px;}
.ws9f{word-spacing:1218.452040px;}
.ws61{word-spacing:1325.916000px;}
.ws7e{word-spacing:1330.938000px;}
.ws7d{word-spacing:1393.100640px;}
._2{margin-left:-6.949800px;}
._1{margin-left:-3.958200px;}
._0{margin-left:-1.791900px;}
._3{width:1.015200px;}
._f{width:2.825640px;}
._1f{width:3.921480px;}
._8{width:5.022612px;}
._e{width:6.446373px;}
._a{width:10.456992px;}
._b{width:12.257280px;}
._c{width:16.432416px;}
._22{width:25.261488px;}
._17{width:31.370976px;}
._d{width:48.674808px;}
._9{width:61.578468px;}
._16{width:73.237248px;}
._1c{width:76.766004px;}
._2e{width:79.341948px;}
._28{width:80.750808px;}
._21{width:84.891240px;}
._15{width:87.270876px;}
._1b{width:89.731908px;}
._26{width:98.259336px;}
._1a{width:108.457776px;}
._23{width:110.483100px;}
._2c{width:117.028296px;}
._2d{width:123.889500px;}
._1d{width:127.791720px;}
._1e{width:138.124224px;}
._18{width:139.675536px;}
._19{width:150.324048px;}
._25{width:158.880204px;}
._2b{width:167.297508px;}
._29{width:178.975440px;}
._27{width:196.106904px;}
._2a{width:206.353224px;}
._24{width:207.990720px;}
._7{width:232.160544px;}
._6{width:300.590640px;}
._11{width:563.544300px;}
._14{width:715.443300px;}
._5{width:782.598600px;}
._13{width:812.523600px;}
._12{width:869.791800px;}
._10{width:917.791200px;}
._4{width:1044.331020px;}
._20{width:1377.830160px;}
.fc5{color:transparent;}
.fc4{color:rgb(55,80,159);}
.fc3{color:rgb(60,68,150);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fsd{font-size:29.514000px;}
.fs3{font-size:29.880000px;}
.fsc{font-size:34.285800px;}
.fs12{font-size:36.000000px;}
.fs11{font-size:37.866000px;}
.fsa{font-size:38.880000px;}
.fs10{font-size:41.331000px;}
.fs4{font-size:47.880000px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:48.013800px;}
.fs9{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fse{font-size:57.068584px;}
.fs5{font-size:60.120000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs0{font-size:99.000000px;}
.fs7{font-size:101.880000px;}
.y3d{bottom:-352.885170px;}
.ya8{bottom:-352.885020px;}
.y3c{bottom:-337.837980px;}
.ya7{bottom:-337.837830px;}
.y3b{bottom:-322.899420px;}
.ya6{bottom:-322.899270px;}
.y59{bottom:-289.885170px;}
.yc4{bottom:-289.885020px;}
.y58{bottom:-274.850850px;}
.yc3{bottom:-274.850700px;}
.y57{bottom:-259.640850px;}
.yc2{bottom:-259.640700px;}
.y56{bottom:-227.600850px;}
.yc1{bottom:-227.600700px;}
.y55{bottom:-198.719580px;}
.yc0{bottom:-198.719430px;}
.y54{bottom:-180.713640px;}
.ybf{bottom:-180.713490px;}
.y53{bottom:-162.707700px;}
.ybe{bottom:-162.707550px;}
.y52{bottom:-126.710850px;}
.ybd{bottom:-126.710700px;}
.y51{bottom:-75.500850px;}
.ybc{bottom:-75.500700px;}
.y50{bottom:-60.290850px;}
.ybb{bottom:-60.290700px;}
.y17{bottom:-50.995170px;}
.y8b{bottom:-50.995020px;}
.y4f{bottom:-43.825350px;}
.yba{bottom:-43.825200px;}
.y16{bottom:-35.947980px;}
.y8a{bottom:-35.947830px;}
.y8{bottom:-31.889700px;}
.y4e{bottom:-27.260850px;}
.yb9{bottom:-27.260700px;}
.y15{bottom:-21.009420px;}
.y89{bottom:-21.009270px;}
.yb8{bottom:-10.808340px;}
.y4d{bottom:-10.790400px;}
.y0{bottom:0.000000px;}
.y71{bottom:2.610150px;}
.y6c{bottom:2.610300px;}
.y73{bottom:2.700150px;}
.yc9{bottom:2.700300px;}
.y12{bottom:2.880150px;}
.y86{bottom:2.880300px;}
.ye7{bottom:3.240300px;}
.yb7{bottom:6.385980px;}
.ya2{bottom:12.004980px;}
.yb6{bottom:23.670480px;}
.ya1{bottom:27.039300px;}
.yb5{bottom:40.954980px;}
.ya0{bottom:42.249300px;}
.yb4{bottom:58.135980px;}
.y7{bottom:68.125950px;}
.y9f{bottom:74.289300px;}
.yb3{bottom:75.420480px;}
.y6{bottom:81.625950px;}
.y14d{bottom:90.064200px;}
.yf4{bottom:91.161450px;}
.yb2{bottom:92.704980px;}
.y14c{bottom:93.664200px;}
.yf3{bottom:94.761300px;}
.y5{bottom:96.625950px;}
.y11a{bottom:99.933780px;}
.y9e{bottom:103.170570px;}
.y83{bottom:105.898830px;}
.yd2{bottom:105.898980px;}
.yb1{bottom:109.899300px;}
.y4{bottom:110.125950px;}
.y14b{bottom:111.034200px;}
.y119{bottom:117.939720px;}
.y9d{bottom:121.176510px;}
.y82{bottom:123.183330px;}
.yd1{bottom:123.183480px;}
.y193{bottom:123.625830px;}
.y14a{bottom:123.633300px;}
.y118{bottom:135.945660px;}
.y9c{bottom:139.182450px;}
.y81{bottom:140.467830px;}
.yd0{bottom:140.467980px;}
.yb0{bottom:143.649300px;}
.y117{bottom:153.951600px;}
.y80{bottom:157.662150px;}
.ycf{bottom:157.662300px;}
.y116{bottom:171.957540px;}
.y7f{bottom:174.946650px;}
.yce{bottom:174.946800px;}
.y9b{bottom:175.179300px;}
.y115{bottom:189.963480px;}
.yaf{bottom:190.625130px;}
.y7e{bottom:192.231150px;}
.ycd{bottom:192.231300px;}
.yae{bottom:205.659450px;}
.y114{bottom:207.969420px;}
.y113{bottom:225.975360px;}
.y2b{bottom:226.389150px;}
.y9a{bottom:226.389300px;}
.y7d{bottom:227.241300px;}
.ycc{bottom:227.241450px;}
.yc{bottom:229.606500px;}
.yad{bottom:234.189300px;}
.yf2{bottom:234.261300px;}
.yf1{bottom:238.671300px;}
.y11e{bottom:238.671390px;}
.y2a{bottom:241.599150px;}
.y99{bottom:241.599300px;}
.y33{bottom:241.611330px;}
.y112{bottom:243.981300px;}
.y188{bottom:245.168250px;}
.y7c{bottom:254.242200px;}
.y32{bottom:256.645650px;}
.yf0{bottom:257.391300px;}
.y11d{bottom:257.392470px;}
.y29{bottom:258.064650px;}
.y98{bottom:258.064800px;}
.y187{bottom:259.880190px;}
.y121{bottom:261.990900px;}
.y111{bottom:261.994950px;}
.y31{bottom:271.855650px;}
.y186{bottom:273.741450px;}
.y28{bottom:274.629150px;}
.y97{bottom:274.629300px;}
.yef{bottom:276.111450px;}
.y11c{bottom:276.113550px;}
.yac{bottom:276.121110px;}
.y120{bottom:279.986400px;}
.y110{bottom:279.990450px;}
.y185{bottom:287.506950px;}
.y27{bottom:291.081510px;}
.y96{bottom:291.081660px;}
.yed{bottom:294.918420px;}
.y11f{bottom:297.981900px;}
.y10f{bottom:297.985950px;}
.y184{bottom:301.272450px;}
.y30{bottom:303.895650px;}
.yab{bottom:306.099300px;}
.y26{bottom:308.275830px;}
.y95{bottom:308.275980px;}
.yee{bottom:311.391450px;}
.yec{bottom:312.921300px;}
.y183{bottom:315.133710px;}
.y10e{bottom:315.981450px;}
.y25{bottom:325.560330px;}
.y94{bottom:325.560480px;}
.y182{bottom:328.899210px;}
.y2f{bottom:332.776920px;}
.y10d{bottom:333.895260px;}
.y192{bottom:341.876460px;}
.y149{bottom:341.884050px;}
.y181{bottom:342.664710px;}
.y24{bottom:342.844830px;}
.y93{bottom:342.844980px;}
.yeb{bottom:349.015950px;}
.y2e{bottom:350.782860px;}
.yaa{bottom:351.729300px;}
.y180{bottom:356.525970px;}
.y23{bottom:360.025830px;}
.y92{bottom:360.025980px;}
.yea{bottom:364.041450px;}
.y2d{bottom:368.788800px;}
.y3e{bottom:369.729150px;}
.ya9{bottom:369.729300px;}
.y17f{bottom:370.291470px;}
.ye9{bottom:376.641300px;}
.y22{bottom:377.310330px;}
.y91{bottom:377.310480px;}
.y17e{bottom:384.056970px;}
.y21{bottom:394.594830px;}
.y90{bottom:394.594980px;}
.y17d{bottom:397.918230px;}
.y3a{bottom:404.744910px;}
.ya5{bottom:404.745060px;}
.y2c{bottom:404.785650px;}
.y17c{bottom:411.683730px;}
.y20{bottom:411.789150px;}
.y8f{bottom:411.789300px;}
.ye8{bottom:412.015800px;}
.ye6{bottom:423.801000px;}
.y17b{bottom:425.449230px;}
.ye5{bottom:427.041300px;}
.y148{bottom:433.769880px;}
.y17a{bottom:439.310490px;}
.y1f{bottom:445.539150px;}
.y8e{bottom:445.539300px;}
.y7b{bottom:449.181300px;}
.y147{bottom:450.964200px;}
.y15e{bottom:451.054200px;}
.y179{bottom:453.075990px;}
.ye4{bottom:455.931300px;}
.y7a{bottom:466.362120px;}
.y178{bottom:466.841490px;}
.y146{bottom:469.324200px;}
.y191{bottom:469.329330px;}
.y39{bottom:476.469150px;}
.ya4{bottom:476.469300px;}
.y177{bottom:480.702750px;}
.yb{bottom:481.606650px;}
.y79{bottom:483.646620px;}
.y190{bottom:488.133120px;}
.y145{bottom:488.134200px;}
.y35{bottom:488.259300px;}
.y38{bottom:490.509300px;}
.y1e{bottom:492.515130px;}
.yf5{bottom:493.011300px;}
.y176{bottom:494.468250px;}
.ya{bottom:496.606650px;}
.y78{bottom:501.016290px;}
.ycb{bottom:501.016440px;}
.y18f{bottom:506.853120px;}
.y144{bottom:506.854200px;}
.y1d{bottom:507.549450px;}
.yf6{bottom:507.861300px;}
.y9{bottom:511.606650px;}
.yf8{bottom:517.851300px;}
.y77{bottom:518.472480px;}
.y37{bottom:524.169300px;}
.y142{bottom:525.566640px;}
.y143{bottom:525.574200px;}
.y175{bottom:527.155080px;}
.y34{bottom:531.496500px;}
.y76{bottom:535.756980px;}
.y1c{bottom:536.079300px;}
.y4c{bottom:537.882330px;}
.yf9{bottom:543.949054px;}
.y141{bottom:544.384200px;}
.y140{bottom:544.388700px;}
.y75{bottom:552.951300px;}
.y4b{bottom:555.166830px;}
.y13f{bottom:562.384200px;}
.y174{bottom:562.791210px;}
.y36{bottom:565.569150px;}
.ya3{bottom:565.569300px;}
.y72{bottom:567.711000px;}
.yfa{bottom:570.046809px;}
.y74{bottom:570.411150px;}
.yca{bottom:570.411300px;}
.y4a{bottom:572.451330px;}
.y1b{bottom:578.011110px;}
.y104{bottom:580.041300px;}
.y173{bottom:580.075710px;}
.y13e{bottom:580.384200px;}
.y70{bottom:582.291000px;}
.y6f{bottom:584.901150px;}
.yc8{bottom:584.901300px;}
.yf7{bottom:585.081300px;}
.y49{bottom:589.632330px;}
.yfb{bottom:596.144564px;}
.y172{bottom:597.270030px;}
.y13d{bottom:598.384200px;}
.y13c{bottom:603.064200px;}
.y10c{bottom:603.894180px;}
.y103{bottom:604.521300px;}
.y48{bottom:606.916830px;}
.y13b{bottom:607.384200px;}
.y18e{bottom:607.384440px;}
.y1a{bottom:607.989300px;}
.y101{bottom:611.635554px;}
.y171{bottom:614.554530px;}
.y128{bottom:616.365000px;}
.y6e{bottom:617.841300px;}
.yfc{bottom:622.242318px;}
.y47{bottom:624.201330px;}
.y100{bottom:624.321300px;}
.y18d{bottom:626.189310px;}
.y13a{bottom:626.194200px;}
.y102{bottom:633.595609px;}
.y14f{bottom:636.004200px;}
.y46{bottom:641.395650px;}
.y18c{bottom:644.910390px;}
.y139{bottom:644.914200px;}
.y6d{bottom:648.255630px;}
.yc7{bottom:648.261300px;}
.yfd{bottom:648.340073px;}
.y170{bottom:650.100480px;}
.y19{bottom:653.619150px;}
.y8d{bottom:653.619300px;}
.y150{bottom:655.174200px;}
.yff{bottom:659.601300px;}
.y6b{bottom:660.141000px;}
.y6a{bottom:662.751300px;}
.y137{bottom:663.631470px;}
.y152{bottom:668.224200px;}
.y18{bottom:671.619150px;}
.y8c{bottom:671.619300px;}
.yfe{bottom:674.349285px;}
.y45{bottom:675.145650px;}
.y138{bottom:680.104200px;}
.y136{bottom:681.634350px;}
.y15c{bottom:681.994200px;}
.y16f{bottom:686.097330px;}
.ye3{bottom:690.947040px;}
.y15b{bottom:694.774200px;}
.y69{bottom:695.691150px;}
.yc6{bottom:695.691300px;}
.y153{bottom:699.634047px;}
.y135{bottom:700.084200px;}
.y16e{bottom:704.103270px;}
.y14{bottom:706.634910px;}
.y88{bottom:706.635060px;}
.y15a{bottom:707.644200px;}
.ye2{bottom:708.952980px;}
.y134{bottom:720.604200px;}
.y16d{bottom:722.109210px;}
.y44{bottom:722.121630px;}
.y151{bottom:722.944500px;}
.y10b{bottom:723.142200px;}
.y68{bottom:725.877660px;}
.ye1{bottom:726.958920px;}
.y154{bottom:730.958695px;}
.y43{bottom:737.155950px;}
.y133{bottom:738.598260px;}
.y16c{bottom:740.115150px;}
.y10a{bottom:741.148140px;}
.y11b{bottom:742.401300px;}
.y67{bottom:743.162160px;}
.ye0{bottom:744.964860px;}
.y132{bottom:756.604200px;}
.y16b{bottom:758.121090px;}
.y109{bottom:759.154080px;}
.y66{bottom:760.356480px;}
.y155{bottom:762.283344px;}
.ydf{bottom:762.970800px;}
.y42{bottom:765.685800px;}
.y131{bottom:775.324200px;}
.y18b{bottom:775.324290px;}
.y16a{bottom:776.127030px;}
.y108{bottom:777.160020px;}
.y65{bottom:777.640980px;}
.y13{bottom:778.359150px;}
.y87{bottom:778.359300px;}
.yde{bottom:780.976740px;}
.yd{bottom:790.149300px;}
.y10{bottom:792.399300px;}
.y156{bottom:793.607993px;}
.y130{bottom:794.044350px;}
.y18a{bottom:794.045370px;}
.y169{bottom:794.132970px;}
.y107{bottom:795.165960px;}
.ydd{bottom:798.982680px;}
.y41{bottom:807.617610px;}
.y15d{bottom:810.604200px;}
.y189{bottom:812.850240px;}
.y12f{bottom:812.854200px;}
.y106{bottom:813.171900px;}
.y64{bottom:813.186930px;}
.ydc{bottom:816.988620px;}
.y157{bottom:824.932641px;}
.yf{bottom:826.059300px;}
.y168{bottom:830.129820px;}
.y105{bottom:831.177840px;}
.y12d{bottom:831.571320px;}
.ydb{bottom:834.994560px;}
.y40{bottom:837.595800px;}
.y12e{bottom:848.044350px;}
.y63{bottom:849.183780px;}
.y12c{bottom:849.574200px;}
.yda{bottom:853.000500px;}
.y158{bottom:856.162624px;}
.y167{bottom:866.126670px;}
.y62{bottom:867.189720px;}
.ye{bottom:867.459150px;}
.y85{bottom:867.459300px;}
.y12b{bottom:868.294350px;}
.y3f{bottom:883.225650px;}
.y166{bottom:884.132610px;}
.y61{bottom:885.195660px;}
.y12a{bottom:886.298850px;}
.y159{bottom:887.487273px;}
.yd9{bottom:888.997350px;}
.y165{bottom:902.138550px;}
.y14e{bottom:903.124200px;}
.y60{bottom:903.201600px;}
.y129{bottom:904.294350px;}
.y164{bottom:920.144490px;}
.y5f{bottom:921.207540px;}
.y127{bottom:922.270590px;}
.yd8{bottom:924.633480px;}
.y163{bottom:938.150430px;}
.y5e{bottom:939.213480px;}
.y126{bottom:940.276530px;}
.yd7{bottom:941.917980px;}
.y162{bottom:956.156370px;}
.y5d{bottom:957.219420px;}
.y125{bottom:958.282470px;}
.yd6{bottom:959.202480px;}
.y3{bottom:961.130850px;}
.y161{bottom:974.162310px;}
.y5c{bottom:975.225360px;}
.y124{bottom:976.288410px;}
.yd5{bottom:976.396800px;}
.y1{bottom:988.999500px;}
.y160{bottom:992.168250px;}
.y5b{bottom:993.231300px;}
.yd4{bottom:993.681300px;}
.y123{bottom:994.294350px;}
.y11{bottom:1005.085500px;}
.y15f{bottom:1027.538250px;}
.yd3{bottom:1028.241450px;}
.y5a{bottom:1028.601150px;}
.yc5{bottom:1028.601300px;}
.y122{bottom:1029.304350px;}
.y2{bottom:1033.378950px;}
.y84{bottom:1035.561750px;}
.hc{height:-538.432500px;}
.h1b{height:-85.242000px;}
.h26{height:2.001094px;}
.h21{height:13.318500px;}
.h1d{height:13.320000px;}
.h1e{height:13.410000px;}
.h23{height:15.208500px;}
.h2a{height:15.210000px;}
.h8{height:20.746758px;}
.h25{height:20.761348px;}
.h28{height:21.486999px;}
.h27{height:24.961000px;}
.h33{height:25.013672px;}
.h31{height:27.567483px;}
.h30{height:30.090098px;}
.h24{height:32.777227px;}
.he{height:33.244805px;}
.hd{height:33.268184px;}
.h4{height:33.328125px;}
.h10{height:34.857949px;}
.h2f{height:34.955359px;}
.h5{height:36.000000px;}
.h14{height:36.597656px;}
.h6{height:37.494141px;}
.h17{height:37.520508px;}
.h3{height:38.664000px;}
.h2e{height:39.004805px;}
.h2c{height:39.067458px;}
.h9{height:39.313477px;}
.h19{height:40.745391px;}
.h18{height:41.045344px;}
.h15{height:41.772832px;}
.h22{height:41.792272px;}
.h20{height:41.792872px;}
.hf{height:45.625629px;}
.hb{height:45.837245px;}
.h2d{height:46.462192px;}
.h1f{height:47.930046px;}
.h16{height:47.948046px;}
.h29{height:48.084846px;}
.h11{height:50.027344px;}
.h13{height:62.519414px;}
.ha{height:65.983887px;}
.h12{height:70.788691px;}
.h2{height:74.646000px;}
.h7{height:237.046500px;}
.h1a{height:388.347000px;}
.h32{height:1009.843500px;}
.h1c{height:1017.991500px;}
.h2b{height:1019.055000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.wf{width:-595.137000px;}
.w10{width:-550.227000px;}
.w5{width:-412.756500px;}
.w6{width:-288.556500px;}
.w4{width:-214.486500px;}
.w8{width:-62.769000px;}
.w9{width:3.960000px;}
.wb{width:6.030000px;}
.wa{width:11.970000px;}
.wd{width:28.170000px;}
.w11{width:39.330000px;}
.w7{width:40.309500px;}
.w3{width:40.393500px;}
.we{width:41.373000px;}
.w12{width:48.814500px;}
.wc{width:81.898500px;}
.w2{width:166.230000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x2e{left:-759.100500px;}
.x65{left:-758.036700px;}
.xde{left:-753.025650px;}
.x31{left:-751.089600px;}
.x66{left:-749.893692px;}
.x64{left:-747.416700px;}
.xdf{left:-743.848752px;}
.x36{left:-741.098160px;}
.xb5{left:-739.975650px;}
.x2f{left:-737.679600px;}
.xce{left:-732.775650px;}
.xb6{left:-696.599394px;}
.x7a{left:-694.766700px;}
.x35{left:-692.949600px;}
.xdb{left:-689.665650px;}
.x84{left:-687.746700px;}
.xe0{left:-682.555650px;}
.xdc{left:-680.305650px;}
.x33{left:-677.919600px;}
.x69{left:-676.856700px;}
.xd2{left:-668.155650px;}
.x28{left:-666.399600px;}
.xda{left:-664.555650px;}
.xdd{left:-636.475650px;}
.x34{left:-625.455090px;}
.x68{left:-590.726700px;}
.xd3{left:-583.194930px;}
.x6a{left:-577.766700px;}
.xd7{left:-575.990109px;}
.x29{left:-569.739600px;}
.x2b{left:-558.399600px;}
.xd9{left:-553.585650px;}
.xd5{left:-517.135650px;}
.x2a{left:-510.699600px;}
.x32{left:-480.190680px;}
.xd4{left:-476.185650px;}
.xcf{left:-471.865650px;}
.x30{left:-450.669600px;}
.xd8{left:-447.655650px;}
.x85{left:-445.826700px;}
.xd6{left:-444.685650px;}
.xe1{left:-428.575650px;}
.x67{left:-399.428844px;}
.x6b{left:-394.256700px;}
.x78{left:-381.195974px;}
.x7d{left:-379.316700px;}
.x77{left:-375.081833px;}
.x7f{left:-370.762253px;}
.xb9{left:-369.535650px;}
.xb7{left:-367.555650px;}
.xc3{left:-360.994920px;}
.x7e{left:-357.536700px;}
.xc2{left:-354.773094px;}
.x7c{left:-351.146700px;}
.x6c{left:-348.716700px;}
.xc4{left:-345.145650px;}
.x79{left:-340.256700px;}
.xcd{left:-334.706197px;}
.xd0{left:-333.175650px;}
.xba{left:-328.495650px;}
.xd1{left:-325.795650px;}
.xb8{left:-319.852769px;}
.x81{left:-309.206700px;}
.xc5{left:-302.215650px;}
.x6d{left:-295.173101px;}
.x82{left:-280.402448px;}
.xbb{left:-279.271434px;}
.xc6{left:-252.991434px;}
.x7b{left:-248.816700px;}
.x2c{left:-229.449600px;}
.x2d{left:-220.809600px;}
.x6e{left:-213.626700px;}
.xbc{left:-212.219294px;}
.x6f{left:-206.966700px;}
.x80{left:-202.016700px;}
.xbd{left:-193.673467px;}
.x83{left:-188.236315px;}
.xc7{left:-184.503488px;}
.x73{left:-180.865142px;}
.xca{left:-176.300900px;}
.x70{left:-173.297049px;}
.x71{left:-166.466700px;}
.xc8{left:-164.245650px;}
.x72{left:-157.736700px;}
.xc9{left:-150.025650px;}
.xe2{left:-136.615650px;}
.x75{left:-134.057866px;}
.x74{left:-127.943725px;}
.xbe{left:-122.301943px;}
.xcb{left:-119.155821px;}
.xbf{left:-115.465650px;}
.xcc{left:-112.670764px;}
.xc0{left:-101.245650px;}
.x76{left:-99.227605px;}
.xc1{left:-72.170579px;}
.x0{left:0.000000px;}
.x22{left:8.009700px;}
.x8{left:56.125950px;}
.x11{left:57.277350px;}
.x4{left:58.576050px;}
.xae{left:63.352200px;}
.x14{left:65.288250px;}
.x42{left:66.484308px;}
.x41{left:68.961300px;}
.xaf{left:72.529098px;}
.x18{left:75.279690px;}
.x88{left:76.402200px;}
.x12{left:78.698250px;}
.xa0{left:83.602200px;}
.x1a{left:97.739700px;}
.x60{left:105.852660px;}
.x5{left:110.575950px;}
.x6{left:114.175950px;}
.x89{left:119.778456px;}
.x55{left:121.611300px;}
.x7{left:123.293100px;}
.xab{left:126.712200px;}
.x5e{left:128.631300px;}
.xb0{left:133.822200px;}
.xac{left:136.072200px;}
.x16{left:138.458250px;}
.xb4{left:145.703040px;}
.xa4{left:148.222200px;}
.xb{left:149.978250px;}
.xaa{left:151.822200px;}
.xad{left:179.902200px;}
.x17{left:190.922760px;}
.x40{left:212.236350px;}
.x38{left:214.486500px;}
.x39{left:218.446350px;}
.x3a{left:223.846350px;}
.x44{left:225.651300px;}
.x1c{left:232.289700px;}
.x2{left:236.123100px;}
.x45{left:237.981000px;}
.xa7{left:240.382200px;}
.xc{left:246.638250px;}
.x27{left:252.629700px;}
.x3b{left:253.636350px;}
.xe{left:257.978250px;}
.x3{left:261.601800px;}
.xa9{left:262.792200px;}
.x1e{left:264.247903px;}
.x61{left:265.769700px;}
.x37{left:268.306350px;}
.x3f{left:288.555000px;}
.x1{left:292.179600px;}
.x1f{left:294.029700px;}
.xa6{left:299.242200px;}
.x3c{left:300.886350px;}
.xd{left:305.678250px;}
.x1b{left:308.699700px;}
.x25{left:334.979700px;}
.x15{left:336.187170px;}
.xa5{left:340.192200px;}
.x20{left:341.279700px;}
.xa1{left:344.512200px;}
.x13{left:365.708250px;}
.xa8{left:368.722200px;}
.x5f{left:370.551300px;}
.x9{left:372.377400px;}
.xb1{left:387.802200px;}
.x86{left:408.973664px;}
.x3d{left:412.756500px;}
.x43{left:416.949156px;}
.x46{left:422.121300px;}
.x3e{left:424.726200px;}
.x53{left:435.171300px;}
.x57{left:437.061300px;}
.x52{left:441.291300px;}
.x59{left:445.615747px;}
.x8b{left:446.842200px;}
.x62{left:449.361692px;}
.x95{left:455.392200px;}
.x58{left:458.841300px;}
.x94{left:461.602200px;}
.x23{left:465.119700px;}
.x47{left:467.661300px;}
.x96{left:471.232200px;}
.x54{left:476.121300px;}
.x9f{left:481.672200px;}
.xa2{left:483.202200px;}
.x8c{left:487.882200px;}
.xa3{left:490.582200px;}
.x8a{left:496.525081px;}
.x26{left:505.160532px;}
.x5b{left:507.171300px;}
.x97{left:514.162200px;}
.x48{left:521.204899px;}
.x5c{left:535.975552px;}
.x8d{left:537.106416px;}
.x98{left:563.386416px;}
.x56{left:567.561300px;}
.xf{left:587.377500px;}
.x10{left:595.568250px;}
.x49{left:602.751300px;}
.x8e{left:604.158556px;}
.x4a{left:609.411300px;}
.x5a{left:614.361300px;}
.x8f{left:622.704383px;}
.x5d{left:628.141685px;}
.x99{left:631.874362px;}
.x4e{left:635.512858px;}
.x9c{left:640.076950px;}
.x4b{left:643.080951px;}
.xa{left:645.818400px;}
.x4c{left:649.911300px;}
.x9a{left:652.132200px;}
.x4d{left:658.641300px;}
.x9b{left:666.352200px;}
.xb2{left:679.762200px;}
.x50{left:682.320134px;}
.x4f{left:688.434275px;}
.x90{left:694.075907px;}
.x9d{left:697.222029px;}
.x91{left:700.912200px;}
.x9e{left:703.707086px;}
.x87{left:705.886350px;}
.x92{left:715.132200px;}
.x51{left:717.150394px;}
.x93{left:744.207272px;}
.x63{left:746.279700px;}
.x19{left:775.984500px;}
.xb3{left:777.048000px;}
.x1d{left:1030.864500px;}
.x24{left:1104.934500px;}
.x21{left:1229.134500px;}
@media print{
.v6{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.422720pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.168320pt;}
.v8{vertical-align:5.120000pt;}
.v2{vertical-align:11.193280pt;}
.v4{vertical-align:18.607360pt;}
.v3{vertical-align:24.000000pt;}
.ls26{letter-spacing:-1.401908pt;}
.ls14{letter-spacing:-0.534400pt;}
.ls19{letter-spacing:-0.267200pt;}
.ls35{letter-spacing:-0.235611pt;}
.ls36{letter-spacing:-0.213760pt;}
.ls24{letter-spacing:-0.213334pt;}
.ls25{letter-spacing:-0.209877pt;}
.ls15{letter-spacing:-0.160320pt;}
.ls18{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.106880pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.085120pt;}
.ls13{letter-spacing:-0.069440pt;}
.ls16{letter-spacing:-0.053440pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls17{letter-spacing:-0.042560pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.006936pt;}
.lsb{letter-spacing:0.007470pt;}
.ls31{letter-spacing:0.021280pt;}
.ls21{letter-spacing:0.024000pt;}
.ls30{letter-spacing:0.026720pt;}
.ls1c{letter-spacing:0.032064pt;}
.ls2e{letter-spacing:0.036739pt;}
.ls1{letter-spacing:0.042560pt;}
.ls2d{letter-spacing:0.042679pt;}
.ls5{letter-spacing:0.048000pt;}
.ls33{letter-spacing:0.053120pt;}
.ls6{letter-spacing:0.053440pt;}
.ls1e{letter-spacing:0.060953pt;}
.ls32{letter-spacing:0.063840pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.068096pt;}
.ls1b{letter-spacing:0.080160pt;}
.ls0{letter-spacing:0.085120pt;}
.ls4{letter-spacing:0.090560pt;}
.ls1f{letter-spacing:0.091429pt;}
.ls29{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.100976pt;}
.ls27{letter-spacing:0.106400pt;}
.ls8{letter-spacing:0.106880pt;}
.ls2{letter-spacing:0.127680pt;}
.lsc{letter-spacing:0.151250pt;}
.ls23{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.160320pt;}
.ls7{letter-spacing:0.170240pt;}
.ls28{letter-spacing:0.212800pt;}
.ls9{letter-spacing:0.327598pt;}
.ls34{letter-spacing:0.661296pt;}
.ls1d{letter-spacing:1.447040pt;}
.lsd{letter-spacing:2.297920pt;}
.ls20{letter-spacing:3.259840pt;}
.ls2c{letter-spacing:1020.100211pt;}
.ls2b{letter-spacing:1083.389120pt;}
.ws6{word-spacing:-88.000000pt;}
.ws8f{word-spacing:-42.687680pt;}
.ws8{word-spacing:-16.726720pt;}
.ws2{word-spacing:-14.208000pt;}
.wsf{word-spacing:-13.520320pt;}
.wsc{word-spacing:-13.406400pt;}
.ws1{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.321280pt;}
.ws5{word-spacing:-13.296000pt;}
.wsd{word-spacing:-13.278720pt;}
.ws7{word-spacing:-13.253120pt;}
.ws11{word-spacing:-13.199680pt;}
.ws10{word-spacing:-13.092800pt;}
.ws4{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.360000pt;}
.wse{word-spacing:-10.725120pt;}
.ws4b{word-spacing:-10.666667pt;}
.ws8c{word-spacing:-9.363200pt;}
.ws8e{word-spacing:-9.121499pt;}
.wsb{word-spacing:-8.640000pt;}
.ws4f{word-spacing:-8.563831pt;}
.ws4e{word-spacing:-7.070494pt;}
.ws4c{word-spacing:-6.640000pt;}
.ws26{word-spacing:-2.992640pt;}
.ws55{word-spacing:-2.778880pt;}
.ws25{word-spacing:-2.672000pt;}
.ws27{word-spacing:-2.618560pt;}
.ws90{word-spacing:-2.404800pt;}
.ws47{word-spacing:-2.244480pt;}
.ws5a{word-spacing:-2.191040pt;}
.ws5b{word-spacing:-2.137600pt;}
.ws5c{word-spacing:-2.084160pt;}
.ws88{word-spacing:-2.030720pt;}
.ws89{word-spacing:-1.816960pt;}
.ws65{word-spacing:-1.440000pt;}
.ws66{word-spacing:-1.392000pt;}
.ws33{word-spacing:-1.282560pt;}
.ws76{word-spacing:-1.175680pt;}
.wsa7{word-spacing:-0.961920pt;}
.ws5e{word-spacing:-0.908480pt;}
.ws98{word-spacing:-0.864000pt;}
.ws75{word-spacing:-0.855040pt;}
.ws99{word-spacing:-0.816000pt;}
.ws77{word-spacing:-0.801600pt;}
.ws5d{word-spacing:-0.534400pt;}
.ws5f{word-spacing:-0.427520pt;}
.wsa0{word-spacing:-0.341431pt;}
.ws3a{word-spacing:-0.320640pt;}
.wsa1{word-spacing:-0.293909pt;}
.ws78{word-spacing:-0.267200pt;}
.ws9a{word-spacing:-0.240000pt;}
.ws39{word-spacing:-0.213760pt;}
.ws16{word-spacing:-0.212800pt;}
.ws14{word-spacing:-0.170240pt;}
.ws43{word-spacing:-0.160320pt;}
.ws69{word-spacing:-0.159360pt;}
.ws17{word-spacing:-0.127680pt;}
.ws70{word-spacing:-0.106880pt;}
.ws0{word-spacing:-0.088000pt;}
.ws97{word-spacing:-0.085120pt;}
.ws1a{word-spacing:-0.069440pt;}
.ws18{word-spacing:-0.064000pt;}
.ws2b{word-spacing:-0.053440pt;}
.ws92{word-spacing:-0.053120pt;}
.ws2a{word-spacing:-0.048000pt;}
.ws15{word-spacing:-0.042560pt;}
.ws12{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.042560pt;}
.ws96{word-spacing:0.048000pt;}
.ws1b{word-spacing:0.069440pt;}
.ws68{word-spacing:0.085120pt;}
.ws19{word-spacing:0.090560pt;}
.ws1c{word-spacing:0.096000pt;}
.ws45{word-spacing:0.106880pt;}
.ws29{word-spacing:0.144000pt;}
.ws28{word-spacing:0.160320pt;}
.ws13{word-spacing:0.192000pt;}
.ws6d{word-spacing:0.209877pt;}
.wsb0{word-spacing:0.212800pt;}
.ws3b{word-spacing:0.213760pt;}
.ws44{word-spacing:0.240000pt;}
.ws6c{word-spacing:0.274286pt;}
.wsa2{word-spacing:0.330648pt;}
.wsa3{word-spacing:0.367387pt;}
.ws8b{word-spacing:0.374080pt;}
.ws7b{word-spacing:0.427520pt;}
.ws62{word-spacing:0.432000pt;}
.ws64{word-spacing:0.480000pt;}
.ws63{word-spacing:0.576000pt;}
.ws2e{word-spacing:0.748160pt;}
.ws7a{word-spacing:0.801600pt;}
.ws83{word-spacing:1.068800pt;}
.wsab{word-spacing:1.229120pt;}
.ws59{word-spacing:1.282560pt;}
.ws4a{word-spacing:1.336000pt;}
.ws58{word-spacing:1.389440pt;}
.ws7f{word-spacing:1.440000pt;}
.ws21{word-spacing:1.442880pt;}
.ws60{word-spacing:1.496320pt;}
.wsaa{word-spacing:1.656640pt;}
.ws81{word-spacing:1.728000pt;}
.ws80{word-spacing:1.776000pt;}
.ws49{word-spacing:1.816960pt;}
.ws2d{word-spacing:1.870400pt;}
.ws22{word-spacing:1.923840pt;}
.ws48{word-spacing:2.137600pt;}
.ws2c{word-spacing:2.404800pt;}
.ws40{word-spacing:2.565120pt;}
.ws24{word-spacing:2.618560pt;}
.ws1e{word-spacing:2.725440pt;}
.ws23{word-spacing:2.778880pt;}
.ws46{word-spacing:2.885760pt;}
.ws1d{word-spacing:3.046080pt;}
.ws74{word-spacing:3.206400pt;}
.ws30{word-spacing:3.366720pt;}
.ws2f{word-spacing:3.420160pt;}
.ws73{word-spacing:3.580480pt;}
.ws8a{word-spacing:3.687360pt;}
.ws82{word-spacing:4.488960pt;}
.ws34{word-spacing:4.649280pt;}
.ws50{word-spacing:4.809600pt;}
.ws51{word-spacing:4.863040pt;}
.ws35{word-spacing:5.023360pt;}
.ws32{word-spacing:5.076800pt;}
.wsa8{word-spacing:5.130240pt;}
.wsac{word-spacing:5.504320pt;}
.ws72{word-spacing:5.611200pt;}
.ws71{word-spacing:5.878400pt;}
.wsa5{word-spacing:6.145600pt;}
.ws57{word-spacing:6.199040pt;}
.ws56{word-spacing:6.252480pt;}
.wsa6{word-spacing:6.359360pt;}
.ws6f{word-spacing:6.412800pt;}
.ws6e{word-spacing:6.573120pt;}
.ws20{word-spacing:6.893760pt;}
.ws1f{word-spacing:7.214400pt;}
.ws85{word-spacing:7.428160pt;}
.ws86{word-spacing:7.748800pt;}
.ws84{word-spacing:7.802240pt;}
.wsa4{word-spacing:7.855680pt;}
.ws42{word-spacing:7.909120pt;}
.wsa9{word-spacing:8.176320pt;}
.ws37{word-spacing:8.443520pt;}
.ws41{word-spacing:8.550400pt;}
.ws38{word-spacing:8.817600pt;}
.ws79{word-spacing:9.245120pt;}
.ws54{word-spacing:9.405440pt;}
.ws53{word-spacing:9.458880pt;}
.ws52{word-spacing:9.512320pt;}
.ws36{word-spacing:9.565760pt;}
.wsad{word-spacing:11.062080pt;}
.wsae{word-spacing:11.382720pt;}
.wsaf{word-spacing:12.077440pt;}
.ws31{word-spacing:12.665280pt;}
.ws87{word-spacing:12.825600pt;}
.ws6b{word-spacing:68.308800pt;}
.ws95{word-spacing:73.373440pt;}
.ws94{word-spacing:74.352320pt;}
.ws9b{word-spacing:77.541440pt;}
.ws3f{word-spacing:102.229120pt;}
.ws3e{word-spacing:117.678400pt;}
.ws4d{word-spacing:118.913874pt;}
.ws3d{word-spacing:125.381760pt;}
.ws93{word-spacing:130.403840pt;}
.ws8d{word-spacing:176.943611pt;}
.ws91{word-spacing:209.565440pt;}
.ws67{word-spacing:224.929600pt;}
.ws7c{word-spacing:361.200960pt;}
.ws9e{word-spacing:424.876480pt;}
.ws9d{word-spacing:435.473920pt;}
.ws9c{word-spacing:446.028800pt;}
.ws3c{word-spacing:548.470720pt;}
.ws3{word-spacing:1077.819200pt;}
.ws9f{word-spacing:1083.068480pt;}
.ws61{word-spacing:1178.592000pt;}
.ws7e{word-spacing:1183.056000pt;}
.ws7d{word-spacing:1238.311680pt;}
._2{margin-left:-6.177600pt;}
._1{margin-left:-3.518400pt;}
._0{margin-left:-1.592800pt;}
._3{width:0.902400pt;}
._f{width:2.511680pt;}
._1f{width:3.485760pt;}
._8{width:4.464544pt;}
._e{width:5.730109pt;}
._a{width:9.295104pt;}
._b{width:10.895360pt;}
._c{width:14.606592pt;}
._22{width:22.454656pt;}
._17{width:27.885312pt;}
._d{width:43.266496pt;}
._9{width:54.736416pt;}
._16{width:65.099776pt;}
._1c{width:68.236448pt;}
._2e{width:70.526176pt;}
._28{width:71.778496pt;}
._21{width:75.458880pt;}
._15{width:77.574112pt;}
._1b{width:79.761696pt;}
._26{width:87.341632pt;}
._1a{width:96.406912pt;}
._23{width:98.207200pt;}
._2c{width:104.025152pt;}
._2d{width:110.124000pt;}
._1d{width:113.592640pt;}
._1e{width:122.777088pt;}
._18{width:124.156032pt;}
._19{width:133.621376pt;}
._25{width:141.226848pt;}
._2b{width:148.708896pt;}
._29{width:159.089280pt;}
._27{width:174.317248pt;}
._2a{width:183.425088pt;}
._24{width:184.880640pt;}
._7{width:206.364928pt;}
._6{width:267.191680pt;}
._11{width:500.928267pt;}
._14{width:635.949600pt;}
._5{width:695.643200pt;}
._13{width:722.243200pt;}
._12{width:773.148267pt;}
._10{width:815.814400pt;}
._4{width:928.294240pt;}
._20{width:1224.737920pt;}
.fsb{font-size:2.560000pt;}
.fsd{font-size:26.234667pt;}
.fs3{font-size:26.560000pt;}
.fsc{font-size:30.476267pt;}
.fs12{font-size:32.000000pt;}
.fs11{font-size:33.658667pt;}
.fsa{font-size:34.560000pt;}
.fs10{font-size:36.738667pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:42.678933pt;}
.fs9{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:50.727630pt;}
.fs5{font-size:53.440000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.440000pt;}
.fs0{font-size:88.000000pt;}
.fs7{font-size:90.560000pt;}
.y3d{bottom:-313.675707pt;}
.ya8{bottom:-313.675573pt;}
.y3c{bottom:-300.300427pt;}
.ya7{bottom:-300.300293pt;}
.y3b{bottom:-287.021707pt;}
.ya6{bottom:-287.021573pt;}
.y59{bottom:-257.675707pt;}
.yc4{bottom:-257.675573pt;}
.y58{bottom:-244.311867pt;}
.yc3{bottom:-244.311733pt;}
.y57{bottom:-230.791867pt;}
.yc2{bottom:-230.791733pt;}
.y56{bottom:-202.311867pt;}
.yc1{bottom:-202.311733pt;}
.y55{bottom:-176.639627pt;}
.yc0{bottom:-176.639493pt;}
.y54{bottom:-160.634347pt;}
.ybf{bottom:-160.634213pt;}
.y53{bottom:-144.629067pt;}
.ybe{bottom:-144.628933pt;}
.y52{bottom:-112.631867pt;}
.ybd{bottom:-112.631733pt;}
.y51{bottom:-67.111867pt;}
.ybc{bottom:-67.111733pt;}
.y50{bottom:-53.591867pt;}
.ybb{bottom:-53.591733pt;}
.y17{bottom:-45.329040pt;}
.y8b{bottom:-45.328907pt;}
.y4f{bottom:-38.955867pt;}
.yba{bottom:-38.955733pt;}
.y16{bottom:-31.953760pt;}
.y8a{bottom:-31.953627pt;}
.y8{bottom:-28.346400pt;}
.y4e{bottom:-24.231867pt;}
.yb9{bottom:-24.231733pt;}
.y15{bottom:-18.675040pt;}
.y89{bottom:-18.674907pt;}
.yb8{bottom:-9.607413pt;}
.y4d{bottom:-9.591467pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.320133pt;}
.y6c{bottom:2.320267pt;}
.y73{bottom:2.400133pt;}
.yc9{bottom:2.400267pt;}
.y12{bottom:2.560133pt;}
.y86{bottom:2.560267pt;}
.ye7{bottom:2.880267pt;}
.yb7{bottom:5.676427pt;}
.ya2{bottom:10.671093pt;}
.yb6{bottom:21.040427pt;}
.ya1{bottom:24.034933pt;}
.yb5{bottom:36.404427pt;}
.ya0{bottom:37.554933pt;}
.yb4{bottom:51.676427pt;}
.y7{bottom:60.556400pt;}
.y9f{bottom:66.034933pt;}
.yb3{bottom:67.040427pt;}
.y6{bottom:72.556400pt;}
.y14d{bottom:80.057067pt;}
.yf4{bottom:81.032400pt;}
.yb2{bottom:82.404427pt;}
.y14c{bottom:83.257067pt;}
.yf3{bottom:84.232267pt;}
.y5{bottom:85.889733pt;}
.y11a{bottom:88.830027pt;}
.y9e{bottom:91.707173pt;}
.y83{bottom:94.132293pt;}
.yd2{bottom:94.132427pt;}
.yb1{bottom:97.688267pt;}
.y4{bottom:97.889733pt;}
.y14b{bottom:98.697067pt;}
.y119{bottom:104.835307pt;}
.y9d{bottom:107.712453pt;}
.y82{bottom:109.496293pt;}
.yd1{bottom:109.496427pt;}
.y193{bottom:109.889627pt;}
.y14a{bottom:109.896267pt;}
.y118{bottom:120.840587pt;}
.y9c{bottom:123.717733pt;}
.y81{bottom:124.860293pt;}
.yd0{bottom:124.860427pt;}
.yb0{bottom:127.688267pt;}
.y117{bottom:136.845867pt;}
.y80{bottom:140.144133pt;}
.ycf{bottom:140.144267pt;}
.y116{bottom:152.851147pt;}
.y7f{bottom:155.508133pt;}
.yce{bottom:155.508267pt;}
.y9b{bottom:155.714933pt;}
.y115{bottom:168.856427pt;}
.yaf{bottom:169.444560pt;}
.y7e{bottom:170.872133pt;}
.ycd{bottom:170.872267pt;}
.yae{bottom:182.808400pt;}
.y114{bottom:184.861707pt;}
.y113{bottom:200.866987pt;}
.y2b{bottom:201.234800pt;}
.y9a{bottom:201.234933pt;}
.y7d{bottom:201.992267pt;}
.ycc{bottom:201.992400pt;}
.yc{bottom:204.094667pt;}
.yad{bottom:208.168267pt;}
.yf2{bottom:208.232267pt;}
.yf1{bottom:212.152267pt;}
.y11e{bottom:212.152347pt;}
.y2a{bottom:214.754800pt;}
.y99{bottom:214.754933pt;}
.y33{bottom:214.765627pt;}
.y112{bottom:216.872267pt;}
.y188{bottom:217.927333pt;}
.y7c{bottom:225.993067pt;}
.y32{bottom:228.129467pt;}
.yf0{bottom:228.792267pt;}
.y11d{bottom:228.793307pt;}
.y29{bottom:229.390800pt;}
.y98{bottom:229.390933pt;}
.y187{bottom:231.004613pt;}
.y121{bottom:232.880800pt;}
.y111{bottom:232.884400pt;}
.y31{bottom:241.649467pt;}
.y186{bottom:243.325733pt;}
.y28{bottom:244.114800pt;}
.y97{bottom:244.114933pt;}
.yef{bottom:245.432400pt;}
.y11c{bottom:245.434267pt;}
.yac{bottom:245.440987pt;}
.y120{bottom:248.876800pt;}
.y110{bottom:248.880400pt;}
.y185{bottom:255.561733pt;}
.y27{bottom:258.739120pt;}
.y96{bottom:258.739253pt;}
.yed{bottom:262.149707pt;}
.y11f{bottom:264.872800pt;}
.y10f{bottom:264.876400pt;}
.y184{bottom:267.797733pt;}
.y30{bottom:270.129467pt;}
.yab{bottom:272.088267pt;}
.y26{bottom:274.022960pt;}
.y95{bottom:274.023093pt;}
.yee{bottom:276.792400pt;}
.yec{bottom:278.152267pt;}
.y183{bottom:280.118853pt;}
.y10e{bottom:280.872400pt;}
.y25{bottom:289.386960pt;}
.y94{bottom:289.387093pt;}
.y182{bottom:292.354853pt;}
.y2f{bottom:295.801707pt;}
.y10d{bottom:296.795787pt;}
.y192{bottom:303.890187pt;}
.y149{bottom:303.896933pt;}
.y181{bottom:304.590853pt;}
.y24{bottom:304.750960pt;}
.y93{bottom:304.751093pt;}
.yeb{bottom:310.236400pt;}
.y2e{bottom:311.806987pt;}
.yaa{bottom:312.648267pt;}
.y180{bottom:316.911973pt;}
.y23{bottom:320.022960pt;}
.y92{bottom:320.023093pt;}
.yea{bottom:323.592400pt;}
.y2d{bottom:327.812267pt;}
.y3e{bottom:328.648133pt;}
.ya9{bottom:328.648267pt;}
.y17f{bottom:329.147973pt;}
.ye9{bottom:334.792267pt;}
.y22{bottom:335.386960pt;}
.y91{bottom:335.387093pt;}
.y17e{bottom:341.383973pt;}
.y21{bottom:350.750960pt;}
.y90{bottom:350.751093pt;}
.y17d{bottom:353.705093pt;}
.y3a{bottom:359.773253pt;}
.ya5{bottom:359.773387pt;}
.y2c{bottom:359.809467pt;}
.y17c{bottom:365.941093pt;}
.y20{bottom:366.034800pt;}
.y8f{bottom:366.034933pt;}
.ye8{bottom:366.236267pt;}
.ye6{bottom:376.712000pt;}
.y17b{bottom:378.177093pt;}
.ye5{bottom:379.592267pt;}
.y148{bottom:385.573227pt;}
.y17a{bottom:390.498213pt;}
.y1f{bottom:396.034800pt;}
.y8e{bottom:396.034933pt;}
.y7b{bottom:399.272267pt;}
.y147{bottom:400.857067pt;}
.y15e{bottom:400.937067pt;}
.y179{bottom:402.734213pt;}
.ye4{bottom:405.272267pt;}
.y7a{bottom:414.544107pt;}
.y178{bottom:414.970213pt;}
.y146{bottom:417.177067pt;}
.y191{bottom:417.181627pt;}
.y39{bottom:423.528133pt;}
.ya4{bottom:423.528267pt;}
.y177{bottom:427.291333pt;}
.yb{bottom:428.094800pt;}
.y79{bottom:429.908107pt;}
.y190{bottom:433.896107pt;}
.y145{bottom:433.897067pt;}
.y35{bottom:434.008267pt;}
.y38{bottom:436.008267pt;}
.y1e{bottom:437.791227pt;}
.yf5{bottom:438.232267pt;}
.y176{bottom:439.527333pt;}
.ya{bottom:441.428133pt;}
.y78{bottom:445.347813pt;}
.ycb{bottom:445.347947pt;}
.y18f{bottom:450.536107pt;}
.y144{bottom:450.537067pt;}
.y1d{bottom:451.155067pt;}
.yf6{bottom:451.432267pt;}
.y9{bottom:454.761467pt;}
.yf8{bottom:460.312267pt;}
.y77{bottom:460.864427pt;}
.y37{bottom:465.928267pt;}
.y142{bottom:467.170347pt;}
.y143{bottom:467.177067pt;}
.y175{bottom:468.582293pt;}
.y34{bottom:472.441333pt;}
.y76{bottom:476.228427pt;}
.y1c{bottom:476.514933pt;}
.y4c{bottom:478.117627pt;}
.yf9{bottom:483.510271pt;}
.y141{bottom:483.897067pt;}
.y140{bottom:483.901067pt;}
.y75{bottom:491.512267pt;}
.y4b{bottom:493.481627pt;}
.y13f{bottom:499.897067pt;}
.y174{bottom:500.258853pt;}
.y36{bottom:502.728133pt;}
.ya3{bottom:502.728267pt;}
.y72{bottom:504.632000pt;}
.yfa{bottom:506.708275pt;}
.y74{bottom:507.032133pt;}
.yca{bottom:507.032267pt;}
.y4a{bottom:508.845627pt;}
.y1b{bottom:513.787653pt;}
.y104{bottom:515.592267pt;}
.y173{bottom:515.622853pt;}
.y13e{bottom:515.897067pt;}
.y70{bottom:517.592000pt;}
.y6f{bottom:519.912133pt;}
.yc8{bottom:519.912267pt;}
.yf7{bottom:520.072267pt;}
.y49{bottom:524.117627pt;}
.yfb{bottom:529.906279pt;}
.y172{bottom:530.906693pt;}
.y13d{bottom:531.897067pt;}
.y13c{bottom:536.057067pt;}
.y10c{bottom:536.794827pt;}
.y103{bottom:537.352267pt;}
.y48{bottom:539.481627pt;}
.y13b{bottom:539.897067pt;}
.y18e{bottom:539.897280pt;}
.y1a{bottom:540.434933pt;}
.y101{bottom:543.676048pt;}
.y171{bottom:546.270693pt;}
.y128{bottom:547.880000pt;}
.y6e{bottom:549.192267pt;}
.yfc{bottom:553.104283pt;}
.y47{bottom:554.845627pt;}
.y100{bottom:554.952267pt;}
.y18d{bottom:556.612720pt;}
.y13a{bottom:556.617067pt;}
.y102{bottom:563.196097pt;}
.y14f{bottom:565.337067pt;}
.y46{bottom:570.129467pt;}
.y18c{bottom:573.253680pt;}
.y139{bottom:573.257067pt;}
.y6d{bottom:576.227227pt;}
.yc7{bottom:576.232267pt;}
.yfd{bottom:576.302287pt;}
.y170{bottom:577.867093pt;}
.y19{bottom:580.994800pt;}
.y8d{bottom:580.994933pt;}
.y150{bottom:582.377067pt;}
.yff{bottom:586.312267pt;}
.y6b{bottom:586.792000pt;}
.y6a{bottom:589.112267pt;}
.y137{bottom:589.894640pt;}
.y152{bottom:593.977067pt;}
.y18{bottom:596.994800pt;}
.y8c{bottom:596.994933pt;}
.yfe{bottom:599.421587pt;}
.y45{bottom:600.129467pt;}
.y138{bottom:604.537067pt;}
.y136{bottom:605.897200pt;}
.y15c{bottom:606.217067pt;}
.y16f{bottom:609.864293pt;}
.ye3{bottom:614.175147pt;}
.y15b{bottom:617.577067pt;}
.y69{bottom:618.392133pt;}
.yc6{bottom:618.392267pt;}
.y153{bottom:621.896931pt;}
.y135{bottom:622.297067pt;}
.y16e{bottom:625.869573pt;}
.y14{bottom:628.119920pt;}
.y88{bottom:628.120053pt;}
.y15a{bottom:629.017067pt;}
.ye2{bottom:630.180427pt;}
.y134{bottom:640.537067pt;}
.y16d{bottom:641.874853pt;}
.y44{bottom:641.885893pt;}
.y151{bottom:642.617333pt;}
.y10b{bottom:642.793067pt;}
.y68{bottom:645.224587pt;}
.ye1{bottom:646.185707pt;}
.y154{bottom:649.741063pt;}
.y43{bottom:655.249733pt;}
.y133{bottom:656.531787pt;}
.y16c{bottom:657.880133pt;}
.y10a{bottom:658.798347pt;}
.y11b{bottom:659.912267pt;}
.y67{bottom:660.588587pt;}
.ye0{bottom:662.190987pt;}
.y132{bottom:672.537067pt;}
.y16b{bottom:673.885413pt;}
.y109{bottom:674.803627pt;}
.y66{bottom:675.872427pt;}
.y155{bottom:677.585195pt;}
.ydf{bottom:678.196267pt;}
.y42{bottom:680.609600pt;}
.y131{bottom:689.177067pt;}
.y18b{bottom:689.177147pt;}
.y16a{bottom:689.890693pt;}
.y108{bottom:690.808907pt;}
.y65{bottom:691.236427pt;}
.y13{bottom:691.874800pt;}
.y87{bottom:691.874933pt;}
.yde{bottom:694.201547pt;}
.yd{bottom:702.354933pt;}
.y10{bottom:704.354933pt;}
.y156{bottom:705.429327pt;}
.y130{bottom:705.817200pt;}
.y18a{bottom:705.818107pt;}
.y169{bottom:705.895973pt;}
.y107{bottom:706.814187pt;}
.ydd{bottom:710.206827pt;}
.y41{bottom:717.882320pt;}
.y15d{bottom:720.537067pt;}
.y189{bottom:722.533547pt;}
.y12f{bottom:722.537067pt;}
.y106{bottom:722.819467pt;}
.y64{bottom:722.832827pt;}
.ydc{bottom:726.212107pt;}
.y157{bottom:733.273459pt;}
.yf{bottom:734.274933pt;}
.y168{bottom:737.893173pt;}
.y105{bottom:738.824747pt;}
.y12d{bottom:739.174507pt;}
.ydb{bottom:742.217387pt;}
.y40{bottom:744.529600pt;}
.y12e{bottom:753.817200pt;}
.y63{bottom:754.830027pt;}
.y12c{bottom:755.177067pt;}
.yda{bottom:758.222667pt;}
.y158{bottom:761.033444pt;}
.y167{bottom:769.890373pt;}
.y62{bottom:770.835307pt;}
.ye{bottom:771.074800pt;}
.y85{bottom:771.074933pt;}
.y12b{bottom:771.817200pt;}
.y3f{bottom:785.089467pt;}
.y166{bottom:785.895653pt;}
.y61{bottom:786.840587pt;}
.y12a{bottom:787.821200pt;}
.y159{bottom:788.877576pt;}
.yd9{bottom:790.219867pt;}
.y165{bottom:801.900933pt;}
.y14e{bottom:802.777067pt;}
.y60{bottom:802.845867pt;}
.y129{bottom:803.817200pt;}
.y164{bottom:817.906213pt;}
.y5f{bottom:818.851147pt;}
.y127{bottom:819.796080pt;}
.yd8{bottom:821.896427pt;}
.y163{bottom:833.911493pt;}
.y5e{bottom:834.856427pt;}
.y126{bottom:835.801360pt;}
.yd7{bottom:837.260427pt;}
.y162{bottom:849.916773pt;}
.y5d{bottom:850.861707pt;}
.y125{bottom:851.806640pt;}
.yd6{bottom:852.624427pt;}
.y3{bottom:854.338533pt;}
.y161{bottom:865.922053pt;}
.y5c{bottom:866.866987pt;}
.y124{bottom:867.811920pt;}
.yd5{bottom:867.908267pt;}
.y1{bottom:879.110667pt;}
.y160{bottom:881.927333pt;}
.y5b{bottom:882.872267pt;}
.yd4{bottom:883.272267pt;}
.y123{bottom:883.817200pt;}
.y11{bottom:893.409333pt;}
.y15f{bottom:913.367333pt;}
.yd3{bottom:913.992400pt;}
.y5a{bottom:914.312133pt;}
.yc5{bottom:914.312267pt;}
.y122{bottom:914.937200pt;}
.y2{bottom:918.559067pt;}
.y84{bottom:920.499333pt;}
.hc{height:-478.606667pt;}
.h1b{height:-75.770667pt;}
.h26{height:1.778750pt;}
.h21{height:11.838667pt;}
.h1d{height:11.840000pt;}
.h1e{height:11.920000pt;}
.h23{height:13.518667pt;}
.h2a{height:13.520000pt;}
.h8{height:18.441562pt;}
.h25{height:18.454531pt;}
.h28{height:19.099555pt;}
.h27{height:22.187555pt;}
.h33{height:22.234375pt;}
.h31{height:24.504430pt;}
.h30{height:26.746754pt;}
.h24{height:29.135313pt;}
.he{height:29.550937pt;}
.hd{height:29.571719pt;}
.h4{height:29.625000pt;}
.h10{height:30.984844pt;}
.h2f{height:31.071430pt;}
.h5{height:32.000000pt;}
.h14{height:32.531250pt;}
.h6{height:33.328125pt;}
.h17{height:33.351562pt;}
.h3{height:34.368000pt;}
.h2e{height:34.670938pt;}
.h2c{height:34.726630pt;}
.h9{height:34.945312pt;}
.h19{height:36.218125pt;}
.h18{height:36.484750pt;}
.h15{height:37.131406pt;}
.h22{height:37.148686pt;}
.h20{height:37.149220pt;}
.hf{height:40.556115pt;}
.hb{height:40.744218pt;}
.h2d{height:41.299726pt;}
.h1f{height:42.604485pt;}
.h16{height:42.620485pt;}
.h29{height:42.742085pt;}
.h11{height:44.468750pt;}
.h13{height:55.572812pt;}
.ha{height:58.652344pt;}
.h12{height:62.923281pt;}
.h2{height:66.352000pt;}
.h7{height:210.708000pt;}
.h1a{height:345.197333pt;}
.h32{height:897.638667pt;}
.h1c{height:904.881333pt;}
.h2b{height:905.826667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.wf{width:-529.010667pt;}
.w10{width:-489.090667pt;}
.w5{width:-366.894667pt;}
.w6{width:-256.494667pt;}
.w4{width:-190.654667pt;}
.w8{width:-55.794667pt;}
.w9{width:3.520000pt;}
.wb{width:5.360000pt;}
.wa{width:10.640000pt;}
.wd{width:25.040000pt;}
.w11{width:34.960000pt;}
.w7{width:35.830667pt;}
.w3{width:35.905333pt;}
.we{width:36.776000pt;}
.w12{width:43.390667pt;}
.wc{width:72.798667pt;}
.w2{width:147.760000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x2e{left:-674.756000pt;}
.x65{left:-673.810400pt;}
.xde{left:-669.356133pt;}
.x31{left:-667.635200pt;}
.x66{left:-666.572171pt;}
.x64{left:-664.370400pt;}
.xdf{left:-661.198891pt;}
.x36{left:-658.753920pt;}
.xb5{left:-657.756133pt;}
.x2f{left:-655.715200pt;}
.xce{left:-651.356133pt;}
.xb6{left:-619.199461pt;}
.x7a{left:-617.570400pt;}
.x35{left:-615.955200pt;}
.xdb{left:-613.036133pt;}
.x84{left:-611.330400pt;}
.xe0{left:-606.716133pt;}
.xdc{left:-604.716133pt;}
.x33{left:-602.595200pt;}
.x69{left:-601.650400pt;}
.xd2{left:-593.916133pt;}
.x28{left:-592.355200pt;}
.xda{left:-590.716133pt;}
.xdd{left:-565.756133pt;}
.x34{left:-555.960080pt;}
.x68{left:-525.090400pt;}
.xd3{left:-518.395493pt;}
.x6a{left:-513.570400pt;}
.xd7{left:-511.991208pt;}
.x29{left:-506.435200pt;}
.x2b{left:-496.355200pt;}
.xd9{left:-492.076133pt;}
.xd5{left:-459.676133pt;}
.x2a{left:-453.955200pt;}
.x32{left:-426.836160pt;}
.xd4{left:-423.276133pt;}
.xcf{left:-419.436133pt;}
.x30{left:-400.595200pt;}
.xd8{left:-397.916133pt;}
.x85{left:-396.290400pt;}
.xd6{left:-395.276133pt;}
.xe1{left:-380.956133pt;}
.x67{left:-355.047861pt;}
.x6b{left:-350.450400pt;}
.x78{left:-338.840866pt;}
.x7d{left:-337.170400pt;}
.x77{left:-333.406074pt;}
.x7f{left:-329.566447pt;}
.xb9{left:-328.476133pt;}
.xb7{left:-326.716133pt;}
.xc3{left:-320.884374pt;}
.x7e{left:-317.810400pt;}
.xc2{left:-315.353862pt;}
.x7c{left:-312.130400pt;}
.x6c{left:-309.970400pt;}
.xc4{left:-306.796133pt;}
.x79{left:-302.450400pt;}
.xcd{left:-297.516619pt;}
.xd0{left:-296.156133pt;}
.xba{left:-291.996133pt;}
.xd1{left:-289.596133pt;}
.xb8{left:-284.313573pt;}
.x81{left:-274.850400pt;}
.xc5{left:-268.636133pt;}
.x6d{left:-262.376090pt;}
.x82{left:-249.246621pt;}
.xbb{left:-248.241275pt;}
.xc6{left:-224.881275pt;}
.x7b{left:-221.170400pt;}
.x2c{left:-203.955200pt;}
.x2d{left:-196.275200pt;}
.x6e{left:-189.890400pt;}
.xbc{left:-188.639373pt;}
.x6f{left:-183.970400pt;}
.x80{left:-179.570400pt;}
.xbd{left:-172.154193pt;}
.x83{left:-167.321169pt;}
.xc7{left:-164.003101pt;}
.x73{left:-160.769015pt;}
.xca{left:-156.711911pt;}
.x70{left:-154.041822pt;}
.x71{left:-147.970400pt;}
.xc8{left:-145.996133pt;}
.x72{left:-140.210400pt;}
.xc9{left:-133.356133pt;}
.xe2{left:-121.436133pt;}
.x75{left:-119.162548pt;}
.x74{left:-113.727756pt;}
.xbe{left:-108.712839pt;}
.xcb{left:-105.916285pt;}
.xbf{left:-102.636133pt;}
.xcc{left:-100.151790pt;}
.xc0{left:-89.996133pt;}
.x76{left:-88.202316pt;}
.xc1{left:-64.151625pt;}
.x0{left:0.000000pt;}
.x22{left:7.119733pt;}
.x8{left:49.889733pt;}
.x11{left:50.913200pt;}
.x4{left:52.067600pt;}
.xae{left:56.313067pt;}
.x14{left:58.034000pt;}
.x42{left:59.097163pt;}
.x41{left:61.298933pt;}
.xaf{left:64.470309pt;}
.x18{left:66.915280pt;}
.x88{left:67.913067pt;}
.x12{left:69.954000pt;}
.xa0{left:74.313067pt;}
.x1a{left:86.879733pt;}
.x60{left:94.091253pt;}
.x5{left:98.289733pt;}
.x6{left:101.489733pt;}
.x89{left:106.469739pt;}
.x55{left:108.098933pt;}
.x7{left:109.593867pt;}
.xab{left:112.633067pt;}
.x5e{left:114.338933pt;}
.xb0{left:118.953067pt;}
.xac{left:120.953067pt;}
.x16{left:123.074000pt;}
.xb4{left:129.513813pt;}
.xa4{left:131.753067pt;}
.xb{left:133.314000pt;}
.xaa{left:134.953067pt;}
.xad{left:159.913067pt;}
.x17{left:169.709120pt;}
.x40{left:188.654533pt;}
.x38{left:190.654667pt;}
.x39{left:194.174533pt;}
.x3a{left:198.974533pt;}
.x44{left:200.578933pt;}
.x1c{left:206.479733pt;}
.x2{left:209.887200pt;}
.x45{left:211.538667pt;}
.xa7{left:213.673067pt;}
.xc{left:219.234000pt;}
.x27{left:224.559733pt;}
.x3b{left:225.454533pt;}
.xe{left:229.314000pt;}
.x3{left:232.534933pt;}
.xa9{left:233.593067pt;}
.x1e{left:234.887025pt;}
.x61{left:236.239733pt;}
.x37{left:238.494533pt;}
.x3f{left:256.493333pt;}
.x1{left:259.715200pt;}
.x1f{left:261.359733pt;}
.xa6{left:265.993067pt;}
.x3c{left:267.454533pt;}
.xd{left:271.714000pt;}
.x1b{left:274.399733pt;}
.x25{left:297.759733pt;}
.x15{left:298.833040pt;}
.xa5{left:302.393067pt;}
.x20{left:303.359733pt;}
.xa1{left:306.233067pt;}
.x13{left:325.074000pt;}
.xa8{left:327.753067pt;}
.x5f{left:329.378933pt;}
.x9{left:331.002133pt;}
.xb1{left:344.713067pt;}
.x86{left:363.532145pt;}
.x3d{left:366.894667pt;}
.x43{left:370.621472pt;}
.x46{left:375.218933pt;}
.x3e{left:377.534400pt;}
.x53{left:386.818933pt;}
.x57{left:388.498933pt;}
.x52{left:392.258933pt;}
.x59{left:396.102886pt;}
.x8b{left:397.193067pt;}
.x62{left:399.432615pt;}
.x95{left:404.793067pt;}
.x58{left:407.858933pt;}
.x94{left:410.313067pt;}
.x23{left:413.439733pt;}
.x47{left:415.698933pt;}
.x96{left:418.873067pt;}
.x54{left:423.218933pt;}
.x9f{left:428.153067pt;}
.xa2{left:429.513067pt;}
.x8c{left:433.673067pt;}
.xa3{left:436.073067pt;}
.x8a{left:441.355627pt;}
.x26{left:449.031584pt;}
.x5b{left:450.818933pt;}
.x97{left:457.033067pt;}
.x48{left:463.293243pt;}
.x5c{left:476.422713pt;}
.x8d{left:477.427925pt;}
.x98{left:500.787925pt;}
.x56{left:504.498933pt;}
.xf{left:522.113333pt;}
.x10{left:529.394000pt;}
.x49{left:535.778933pt;}
.x8e{left:537.029827pt;}
.x4a{left:541.698933pt;}
.x5a{left:546.098933pt;}
.x8f{left:553.515007pt;}
.x5d{left:558.348164pt;}
.x99{left:561.666099pt;}
.x4e{left:564.900319pt;}
.x9c{left:568.957289pt;}
.x4b{left:571.627512pt;}
.xa{left:574.060800pt;}
.x4c{left:577.698933pt;}
.x9a{left:579.673067pt;}
.x4d{left:585.458933pt;}
.x9b{left:592.313067pt;}
.xb2{left:604.233067pt;}
.x50{left:606.506786pt;}
.x4f{left:611.941577pt;}
.x90{left:616.956361pt;}
.x9d{left:619.752915pt;}
.x91{left:623.033067pt;}
.x9e{left:625.517410pt;}
.x87{left:627.454533pt;}
.x92{left:635.673067pt;}
.x51{left:637.467017pt;}
.x93{left:661.517575pt;}
.x63{left:663.359733pt;}
.x19{left:689.764000pt;}
.xb3{left:690.709333pt;}
.x1d{left:916.324000pt;}
.x24{left:982.164000pt;}
.x21{left:1092.564000pt;}
}




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