
    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_fa7cc7f7b94382151fa449eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_9f7a9ced1c6b6e70d069bed9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3dcb52106f689763787d5186.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_93bdaf8094595edacfe409d6.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_c9fdf71ad5dceeb234529ffb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_71c941299d831322e5c30597.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e42dc0831e872eca385fc5a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_038802144ad8f4f918768f8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701190;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_78887c099ea1e76dec3d32b5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_511ccab98c630527d80cdd41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_723a4f26806e5d523985ffae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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_5a3289f852807a389ac02404.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_794875acabf366414af36aeb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ea8080b4ae5265688efc58b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.262000;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_ddf55b847a10e1a6ba6fb9a4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_04d494a43759cc66990c74cc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738000;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_86b50799c2fb5bb87b9c9830.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.628000;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_e95111d137e2dfb2ef2b9745.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f84b40f2fdaddd53e5d5552f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.052000;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_31648856929b885f8b48071f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m25{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);}
.m6{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);}
.m4{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);}
.m1d{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);}
.m3{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);}
.md{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);}
.m12{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);}
.mb{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m5{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);}
.m17{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);}
.m1b{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);}
.me{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);}
.m16{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);}
.m13{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);}
.m27{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);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m10{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);}
.m11{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);}
.m28{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1f{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);}
.ma{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);}
.m8{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);}
.m23{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);}
.mf{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);}
.m14{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);}
.m1a{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);}
.m18{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);}
.m22{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);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v3{vertical-align:-141.804000px;}
.v5{vertical-align:-53.046000px;}
.v1{vertical-align:-9.816000px;}
.v2{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.816000px;}
.ve{vertical-align:16.182000px;}
.v7{vertical-align:23.754000px;}
.vc{vertical-align:27.024000px;}
.va{vertical-align:35.970000px;}
.v8{vertical-align:44.280000px;}
.vf{vertical-align:49.836000px;}
.vb{vertical-align:52.842000px;}
.v9{vertical-align:54.990000px;}
.vd{vertical-align:66.018000px;}
.v4{vertical-align:82.782000px;}
.ls1{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.000843px;}
.ls4d{letter-spacing:0.001590px;}
.ls24{letter-spacing:0.002114px;}
.ls3b{letter-spacing:0.002156px;}
.ls3f{letter-spacing:0.002400px;}
.ls2d{letter-spacing:0.002686px;}
.ls3d{letter-spacing:0.002688px;}
.ls26{letter-spacing:0.002706px;}
.ls59{letter-spacing:0.003226px;}
.ls8{letter-spacing:0.004335px;}
.ls5b{letter-spacing:0.011909px;}
.ls12{letter-spacing:0.012296px;}
.ls45{letter-spacing:0.015107px;}
.ls47{letter-spacing:0.016757px;}
.ls28{letter-spacing:0.021946px;}
.ls2c{letter-spacing:0.022314px;}
.ls57{letter-spacing:0.196364px;}
.ls50{letter-spacing:0.261818px;}
.ls4e{letter-spacing:2.984915px;}
.ls5f{letter-spacing:2.986053px;}
.ls39{letter-spacing:2.987032px;}
.ls25{letter-spacing:2.989223px;}
.ls55{letter-spacing:2.990915px;}
.ls31{letter-spacing:3.272730px;}
.ls2f{letter-spacing:4.712731px;}
.ls19{letter-spacing:6.480005px;}
.ls11{letter-spacing:7.069097px;}
.ls51{letter-spacing:7.134551px;}
.ls9{letter-spacing:8.508587px;}
.ls10{letter-spacing:8.514587px;}
.ls5e{letter-spacing:10.865464px;}
.lsa{letter-spacing:10.930918px;}
.ls23{letter-spacing:13.941830px;}
.ls14{letter-spacing:14.530921px;}
.ls56{letter-spacing:14.596376px;}
.ls2a{letter-spacing:16.357358px;}
.ls38{letter-spacing:17.530834px;}
.ls34{letter-spacing:18.130924px;}
.lsc{letter-spacing:18.196379px;}
.ls16{letter-spacing:18.261833px;}
.ls2b{letter-spacing:18.458197px;}
.ls22{letter-spacing:18.589106px;}
.ls4f{letter-spacing:20.890742px;}
.ls29{letter-spacing:21.169223px;}
.ls37{letter-spacing:21.174792px;}
.ls15{letter-spacing:21.665473px;}
.ls2{letter-spacing:21.796382px;}
.ls18{letter-spacing:21.861836px;}
.ls4a{letter-spacing:22.712746px;}
.ls5a{letter-spacing:23.052587px;}
.ls13{letter-spacing:23.058587px;}
.ls4{letter-spacing:23.432747px;}
.ls7{letter-spacing:23.629111px;}
.ls1d{letter-spacing:23.760020px;}
.ls35{letter-spacing:23.956384px;}
.ls60{letter-spacing:24.218202px;}
.ls52{letter-spacing:24.741839px;}
.ls1c{letter-spacing:25.069112px;}
.ls54{letter-spacing:25.134566px;}
.lsd{letter-spacing:25.527294px;}
.ls4c{letter-spacing:25.592749px;}
.ls33{letter-spacing:26.414258px;}
.ls53{letter-spacing:26.509113px;}
.lsb{letter-spacing:26.688587px;}
.ls4b{letter-spacing:26.694587px;}
.ls40{letter-spacing:26.883738px;}
.ls48{letter-spacing:27.166571px;}
.ls46{letter-spacing:28.186742px;}
.ls49{letter-spacing:29.520025px;}
.ls5{letter-spacing:29.716388px;}
.ls3c{letter-spacing:29.781843px;}
.ls3{letter-spacing:29.847298px;}
.ls1f{letter-spacing:29.912752px;}
.ls1e{letter-spacing:29.978207px;}
.ls6{letter-spacing:30.109116px;}
.lse{letter-spacing:30.501844px;}
.ls44{letter-spacing:30.796571px;}
.lsf{letter-spacing:30.829117px;}
.ls17{letter-spacing:30.894571px;}
.ls43{letter-spacing:31.822742px;}
.ls32{letter-spacing:32.530936px;}
.ls0{letter-spacing:32.727300px;}
.ls1b{letter-spacing:36.000030px;}
.ls21{letter-spacing:36.327303px;}
.ls42{letter-spacing:36.392758px;}
.ls41{letter-spacing:36.981849px;}
.ls1a{letter-spacing:37.440031px;}
.ls36{letter-spacing:41.563671px;}
.ls20{letter-spacing:42.872763px;}
.ls58{letter-spacing:55.520706px;}
.ls30{letter-spacing:68.727330px;}
.ls2e{letter-spacing:70.560059px;}
.ls27{letter-spacing:85.090980px;}
.ls3e{letter-spacing:87.040139px;}
.ls5c{letter-spacing:96.879332px;}
.ls3a{letter-spacing:141.840118px;}
.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;}
}
.ws91{word-spacing:-65.454600px;}
.wsa2{word-spacing:-50.989133px;}
.ws9d{word-spacing:-50.923679px;}
.ws15{word-spacing:-48.418425px;}
.ws42{word-spacing:-47.324343px;}
.ws6d{word-spacing:-47.323676px;}
.ws95{word-spacing:-47.258221px;}
.ws68{word-spacing:-45.032765px;}
.ws3f{word-spacing:-42.637126px;}
.ws92{word-spacing:-39.992761px;}
.ws2d{word-spacing:-33.453846px;}
.ws40{word-spacing:-33.211407px;}
.ws4d{word-spacing:-32.727300px;}
.ws67{word-spacing:-31.706208px;}
.ws4{word-spacing:-30.551309px;}
.ws5d{word-spacing:-29.127297px;}
.ws43{word-spacing:-24.506202px;}
.ws6b{word-spacing:-24.440748px;}
.wsa3{word-spacing:-20.099082px;}
.ws6c{word-spacing:-18.183288px;}
.ws28{word-spacing:-17.869106px;}
.ws8b{word-spacing:-17.476378px;}
.wsaf{word-spacing:-17.410924px;}
.wsba{word-spacing:-16.625468px;}
.ws1d{word-spacing:-16.139475px;}
.wsc0{word-spacing:-15.840013px;}
.wsb1{word-spacing:-15.774559px;}
.wsa7{word-spacing:-15.316376px;}
.ws55{word-spacing:-14.923649px;}
.ws30{word-spacing:-14.727285px;}
.ws8c{word-spacing:-14.596376px;}
.wsbc{word-spacing:-14.530921px;}
.wsb2{word-spacing:-14.472012px;}
.ws8d{word-spacing:-14.465467px;}
.ws50{word-spacing:-14.400012px;}
.wsb7{word-spacing:-14.138194px;}
.ws72{word-spacing:-13.876375px;}
.wsa1{word-spacing:-13.810921px;}
.ws59{word-spacing:-13.745466px;}
.ws3b{word-spacing:-13.680011px;}
.wsbf{word-spacing:-13.614557px;}
.ws52{word-spacing:-13.449600px;}
.ws93{word-spacing:-13.418193px;}
.ws29{word-spacing:-13.287284px;}
.ws82{word-spacing:-13.221829px;}
.ws51{word-spacing:-13.162920px;}
.wsb3{word-spacing:-13.090920px;}
.wsc1{word-spacing:-12.763647px;}
.ws2e{word-spacing:-12.698192px;}
.ws62{word-spacing:-12.632738px;}
.ws16{word-spacing:-12.567283px;}
.ws21{word-spacing:-12.501829px;}
.ws3c{word-spacing:-12.305465px;}
.ws4f{word-spacing:-12.240010px;}
.ws8a{word-spacing:-12.174556px;}
.ws81{word-spacing:-12.115646px;}
.ws9b{word-spacing:-12.109101px;}
.ws63{word-spacing:-12.043646px;}
.wsbe{word-spacing:-11.912737px;}
.ws39{word-spacing:-11.781828px;}
.ws60{word-spacing:-11.716373px;}
.ws5e{word-spacing:-11.650919px;}
.wsb0{word-spacing:-11.454555px;}
.ws53{word-spacing:-11.389100px;}
.ws38{word-spacing:-11.323646px;}
.ws4c{word-spacing:-11.258191px;}
.ws25{word-spacing:-11.192737px;}
.ws3a{word-spacing:-11.127282px;}
.ws49{word-spacing:-11.061827px;}
.ws2b{word-spacing:-10.996373px;}
.ws17{word-spacing:-10.930918px;}
.ws19{word-spacing:-10.865464px;}
.ws14{word-spacing:-10.819384px;}
.ws24{word-spacing:-10.800009px;}
.ws3d{word-spacing:-10.734554px;}
.ws94{word-spacing:-10.675645px;}
.ws1e{word-spacing:-10.669100px;}
.ws1f{word-spacing:-10.603645px;}
.ws31{word-spacing:-10.538191px;}
.ws97{word-spacing:-10.479281px;}
.ws4b{word-spacing:-10.472736px;}
.ws54{word-spacing:-10.413827px;}
.ws9a{word-spacing:-10.407281px;}
.ws58{word-spacing:-10.348372px;}
.wse{word-spacing:-10.341179px;}
.ws77{word-spacing:-10.282918px;}
.wsf{word-spacing:-10.221628px;}
.wsbb{word-spacing:-10.210918px;}
.wsc{word-spacing:-10.161852px;}
.ws2f{word-spacing:-10.152008px;}
.ws99{word-spacing:-10.145463px;}
.ws10{word-spacing:-10.102076px;}
.ws4e{word-spacing:-10.086554px;}
.ws23{word-spacing:-10.021099px;}
.wsd{word-spacing:-9.982525px;}
.ws61{word-spacing:-9.955645px;}
.wsb6{word-spacing:-9.949099px;}
.ws3e{word-spacing:-9.890190px;}
.wsa{word-spacing:-9.862974px;}
.ws69{word-spacing:-9.824735px;}
.ws7a{word-spacing:-9.818190px;}
.ws8{word-spacing:-9.803198px;}
.ws66{word-spacing:-9.759281px;}
.wsa6{word-spacing:-9.752735px;}
.ws6{word-spacing:-9.743423px;}
.ws32{word-spacing:-9.693826px;}
.ws2a{word-spacing:-9.687281px;}
.ws5{word-spacing:-9.683647px;}
.wsb{word-spacing:-9.623872px;}
.ws9{word-spacing:-9.564096px;}
.wsc5{word-spacing:-9.562917px;}
.ws76{word-spacing:-9.497462px;}
.ws27{word-spacing:-9.490917px;}
.ws5a{word-spacing:-9.432008px;}
.ws22{word-spacing:-9.294553px;}
.ws36{word-spacing:-9.229099px;}
.ws3{word-spacing:-9.205442px;}
.ws5c{word-spacing:-9.170189px;}
.ws86{word-spacing:-9.163644px;}
.ws90{word-spacing:-9.098189px;}
.wsa8{word-spacing:-9.032735px;}
.wsb5{word-spacing:-8.973826px;}
.ws65{word-spacing:-8.967280px;}
.wsb4{word-spacing:-8.842916px;}
.ws5f{word-spacing:-8.705462px;}
.ws37{word-spacing:-8.574553px;}
.ws26{word-spacing:-8.515643px;}
.ws7b{word-spacing:-8.509098px;}
.ws7d{word-spacing:-8.450189px;}
.ws87{word-spacing:-8.443643px;}
.ws88{word-spacing:-8.378189px;}
.ws56{word-spacing:-8.247280px;}
.ws7{word-spacing:-8.075684px;}
.ws6f{word-spacing:-8.050916px;}
.ws9e{word-spacing:-7.985461px;}
.ws7c{word-spacing:-7.926552px;}
.ws5b{word-spacing:-7.861097px;}
.wsc7{word-spacing:-7.854552px;}
.ws6e{word-spacing:-7.730188px;}
.wsc2{word-spacing:-7.658188px;}
.ws4a{word-spacing:-7.337461px;}
.ws33{word-spacing:-7.330915px;}
.ws20{word-spacing:-7.010188px;}
.wsbd{word-spacing:-6.944733px;}
.ws70{word-spacing:-6.938188px;}
.ws11{word-spacing:-6.694867px;}
.wsa0{word-spacing:-6.676369px;}
.wsa9{word-spacing:-6.545460px;}
.ws73{word-spacing:-6.283642px;}
.ws89{word-spacing:-6.218187px;}
.ws83{word-spacing:-6.087278px;}
.ws9c{word-spacing:-5.956369px;}
.ws34{word-spacing:-5.694550px;}
.ws13{word-spacing:-5.684660px;}
.ws74{word-spacing:-5.432732px;}
.wsab{word-spacing:-5.367277px;}
.wsac{word-spacing:-5.301823px;}
.ws75{word-spacing:-5.046550px;}
.wsa4{word-spacing:-5.040004px;}
.ws84{word-spacing:-4.974550px;}
.wsad{word-spacing:-4.516367px;}
.ws7e{word-spacing:-4.320004px;}
.wsae{word-spacing:-4.189094px;}
.wsc6{word-spacing:-4.058185px;}
.ws57{word-spacing:-3.992731px;}
.ws79{word-spacing:-3.802912px;}
.ws7f{word-spacing:-3.652367px;}
.ws2c{word-spacing:-3.534548px;}
.ws18{word-spacing:-3.207275px;}
.wsa5{word-spacing:-2.945457px;}
.wsc4{word-spacing:-2.880002px;}
.ws12{word-spacing:-2.570351px;}
.ws85{word-spacing:-2.421820px;}
.ws9f{word-spacing:-1.898183px;}
.ws35{word-spacing:-1.315637px;}
.wsaa{word-spacing:-0.117818px;}
.ws46{word-spacing:-0.065455px;}
.ws47{word-spacing:-0.052364px;}
.ws8f{word-spacing:-0.047821px;}
.ws48{word-spacing:-0.025330px;}
.ws1a{word-spacing:0.000000px;}
.ws44{word-spacing:0.013091px;}
.ws80{word-spacing:0.274909px;}
.ws6a{word-spacing:1.237092px;}
.ws64{word-spacing:1.302547px;}
.ws78{word-spacing:2.938912px;}
.ws8e{word-spacing:3.665458px;}
.ws96{word-spacing:5.249459px;}
.wsc3{word-spacing:16.232741px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.ws98{word-spacing:26.361404px;}
.ws1b{word-spacing:26.836386px;}
.ws1c{word-spacing:27.098204px;}
.ws0{word-spacing:31.091012px;}
.ws71{word-spacing:32.727300px;}
.wsb8{word-spacing:34.516957px;}
.wsb9{word-spacing:35.549884px;}
.ws45{word-spacing:102.082994px;}
.ws41{word-spacing:793.474782px;}
._12{margin-left:-32.792755px;}
._32{margin-left:-25.920022px;}
._33{margin-left:-14.530921px;}
._2c{margin-left:-10.930918px;}
._30{margin-left:-9.333112px;}
._2f{margin-left:-8.091257px;}
._18{margin-left:-6.283642px;}
._6{margin-left:-4.817900px;}
._4{margin-left:-3.060485px;}
._1{margin-left:-1.936742px;}
._2{width:1.936742px;}
._20{width:3.060485px;}
._3{width:4.626644px;}
._27{width:6.518564px;}
._36{width:16.690923px;}
._7{width:18.542365px;}
._23{width:19.544030px;}
._26{width:20.852473px;}
._2e{width:22.189109px;}
._24{width:23.203756px;}
._8{width:24.412368px;}
._5{width:26.922878px;}
._16{width:28.445855px;}
._a{width:29.672621px;}
._0{width:31.203072px;}
._21{width:32.727300px;}
._14{width:34.413238px;}
._2d{width:36.024512px;}
._9{width:37.120648px;}
._29{width:38.330656px;}
._34{width:41.197839px;}
._2a{width:42.872763px;}
._22{width:44.012387px;}
._25{width:45.556402px;}
._35{width:47.100416px;}
._11{width:48.671327px;}
._1c{width:50.411705px;}
._13{width:54.956124px;}
._b{width:56.618229px;}
._17{width:57.927321px;}
._d{width:60.545505px;}
._1b{width:64.080053px;}
._31{width:65.728082px;}
._10{width:66.894601px;}
._28{width:80.697600px;}
._2b{width:88.756438px;}
._1f{width:96.836850px;}
._15{width:932.096182px;}
._1d{width:1081.598706px;}
._19{width:1177.266436px;}
._f{width:1178.734972px;}
._1a{width:1245.924093px;}
._c{width:1402.327237px;}
._1e{width:1524.633998px;}
._e{width:1837.834259px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y4f{bottom:108.000000px;}
.y1bd{bottom:116.886000px;}
.y177{bottom:123.163500px;}
.y197{bottom:123.504000px;}
.y26{bottom:126.540000px;}
.y4e{bottom:128.323500px;}
.y1bc{bottom:137.211000px;}
.y74{bottom:140.470500px;}
.y176{bottom:143.487000px;}
.y196{bottom:143.827500px;}
.y9b{bottom:144.280500px;}
.y4d{bottom:148.647000px;}
.y73{bottom:160.794000px;}
.y25{bottom:163.227000px;}
.y175{bottom:163.812000px;}
.y195{bottom:164.151000px;}
.y9a{bottom:164.605500px;}
.y1bb{bottom:167.247000px;}
.y4c{bottom:168.972000px;}
.y104{bottom:181.333500px;}
.y152{bottom:183.058500px;}
.y24{bottom:183.550500px;}
.y194{bottom:184.476000px;}
.y1ba{bottom:187.572000px;}
.y4b{bottom:189.295500px;}
.y174{bottom:193.848000px;}
.y72{bottom:194.046000px;}
.y99{bottom:197.977500px;}
.y103{bottom:201.658500px;}
.ybc{bottom:202.590000px;}
.y128{bottom:203.062500px;}
.y151{bottom:203.383500px;}
.y23{bottom:203.874000px;}
.y193{bottom:204.799500px;}
.y4a{bottom:209.619000px;}
.y173{bottom:214.173000px;}
.y1b9{bottom:217.609500px;}
.y150{bottom:218.064000px;}
.y98{bottom:218.301000px;}
.ybb{bottom:222.913500px;}
.y127{bottom:223.386000px;}
.y14e{bottom:223.707000px;}
.y22{bottom:224.199000px;}
.y71{bottom:227.298000px;}
.yde{bottom:229.942500px;}
.y14f{bottom:230.149500px;}
.y102{bottom:232.714500px;}
.y172{bottom:234.496500px;}
.y1b8{bottom:237.933000px;}
.y97{bottom:238.624500px;}
.y192{bottom:241.561500px;}
.yba{bottom:243.237000px;}
.y126{bottom:243.709500px;}
.y14d{bottom:244.030500px;}
.y49{bottom:247.158000px;}
.ydd{bottom:250.266000px;}
.y171{bottom:254.820000px;}
.y70{bottom:259.768500px;}
.y21{bottom:260.886000px;}
.yb9{bottom:263.560500px;}
.y14c{bottom:264.354000px;}
.y101{bottom:266.217000px;}
.y48{bottom:267.481500px;}
.y1b7{bottom:267.970500px;}
.y96{bottom:271.996500px;}
.y170{bottom:275.143500px;}
.y125{bottom:277.483500px;}
.y191{bottom:278.323500px;}
.ydc{bottom:278.599500px;}
.yb8{bottom:283.885500px;}
.y14b{bottom:284.677500px;}
.y6f{bottom:290.659500px;}
.y95{bottom:292.321500px;}
.y16f{bottom:295.467000px;}
.y20{bottom:297.573000px;}
.y124{bottom:297.807000px;}
.y1b6{bottom:298.008000px;}
.ydb{bottom:298.923000px;}
.y100{bottom:299.718000px;}
.y47{bottom:301.015500px;}
.yb7{bottom:304.209000px;}
.y14a{bottom:305.002500px;}
.y190{bottom:309.214500px;}
.y16e{bottom:315.792000px;}
.y1f{bottom:317.896500px;}
.y1b5{bottom:318.331500px;}
.yff{bottom:320.043000px;}
.yb6{bottom:324.532500px;}
.y149{bottom:325.326000px;}
.y94{bottom:325.933500px;}
.yda{bottom:327.256500px;}
.y123{bottom:331.581000px;}
.y6e{bottom:334.233000px;}
.y1e{bottom:338.221500px;}
.y46{bottom:338.554500px;}
.yfe{bottom:340.366500px;}
.y93{bottom:346.258500px;}
.y1b4{bottom:348.369000px;}
.y16d{bottom:349.564500px;}
.y122{bottom:351.904500px;}
.y18f{bottom:353.034000px;}
.y6d{bottom:354.556500px;}
.yd9{bottom:355.588500px;}
.y45{bottom:358.878000px;}
.y148{bottom:359.098500px;}
.yb5{bottom:359.649000px;}
.yfd{bottom:360.690000px;}
.y1b3{bottom:368.692500px;}
.y16c{bottom:369.888000px;}
.y18e{bottom:373.357500px;}
.y1d{bottom:374.908500px;}
.y92{bottom:379.870500px;}
.yfc{bottom:381.013500px;}
.y121{bottom:385.678500px;}
.yd8{bottom:387.186000px;}
.yb4{bottom:387.445500px;}
.y6c{bottom:391.084500px;}
.y44{bottom:392.053500px;}
.y147{bottom:392.872500px;}
.y18d{bottom:393.681000px;}
.y1c{bottom:395.232000px;}
.y1b2{bottom:398.730000px;}
.y16b{bottom:403.662000px;}
.yfb{bottom:404.113500px;}
.y120{bottom:406.002000px;}
.yd7{bottom:407.509500px;}
.yb3{bottom:412.252500px;}
.y43{bottom:412.377000px;}
.y91{bottom:413.242500px;}
.y18c{bottom:414.006000px;}
.y1b{bottom:415.555500px;}
.y1b1{bottom:419.053500px;}
.yf9{bottom:422.770500px;}
.yfa{bottom:423.574500px;}
.y146{bottom:426.646500px;}
.y42{bottom:432.702000px;}
.y18b{bottom:434.329500px;}
.yb2{bottom:437.059500px;}
.y16a{bottom:437.436000px;}
.yd6{bottom:439.107000px;}
.y11f{bottom:439.774500px;}
.y6b{bottom:442.396500px;}
.y90{bottom:443.040000px;}
.yf8{bottom:445.639500px;}
.y1a{bottom:452.242500px;}
.y1b0{bottom:455.581500px;}
.y169{bottom:457.759500px;}
.yd5{bottom:459.430500px;}
.y11e{bottom:460.099500px;}
.y145{bottom:460.419000px;}
.y6a{bottom:462.720000px;}
.y8f{bottom:463.363500px;}
.y41{bottom:465.877500px;}
.yf7{bottom:465.963000px;}
.y18a{bottom:468.102000px;}
.yb1{bottom:472.213500px;}
.y168{bottom:478.083000px;}
.y11d{bottom:480.423000px;}
.y69{bottom:483.043500px;}
.y8e{bottom:483.687000px;}
.y40{bottom:486.201000px;}
.yd4{bottom:487.764000px;}
.y19{bottom:488.931000px;}
.y144{bottom:491.311500px;}
.yb0{bottom:492.538500px;}
.yf6{bottom:496.855500px;}
.y167{bottom:498.406500px;}
.y11c{bottom:500.746500px;}
.y189{bottom:501.876000px;}
.y68{bottom:503.368500px;}
.y8d{bottom:504.012000px;}
.y3f{bottom:506.524500px;}
.y1af{bottom:507.139500px;}
.yd3{bottom:508.087500px;}
.yaf{bottom:512.862000px;}
.y166{bottom:518.730000px;}
.y11b{bottom:521.070000px;}
.y67{bottom:523.692000px;}
.y8c{bottom:524.335500px;}
.y18{bottom:525.618000px;}
.y3e{bottom:526.848000px;}
.y1ae{bottom:527.463000px;}
.yd2{bottom:528.411000px;}
.y143{bottom:535.129500px;}
.y188{bottom:535.650000px;}
.y165{bottom:539.055000px;}
.yf5{bottom:540.162000px;}
.y8b{bottom:544.659000px;}
.y3d{bottom:547.171500px;}
.y1ad{bottom:547.786500px;}
.yae{bottom:549.438000px;}
.y11a{bottom:551.107500px;}
.y142{bottom:555.453000px;}
.y66{bottom:556.162500px;}
.yd1{bottom:559.303500px;}
.yf4{bottom:560.485500px;}
.y3c{bottom:567.495000px;}
.y1ac{bottom:568.111500px;}
.y187{bottom:569.422500px;}
.y164{bottom:569.946000px;}
.y119{bottom:571.431000px;}
.y17{bottom:577.176000px;}
.y8a{bottom:578.031000px;}
.yf3{bottom:580.809000px;}
.yad{bottom:586.014000px;}
.y3b{bottom:587.820000px;}
.y1ab{bottom:588.435000px;}
.y65{bottom:589.414500px;}
.y118{bottom:591.754500px;}
.y141{bottom:591.981000px;}
.y16{bottom:595.108500px;}
.y89{bottom:598.354500px;}
.yf2{bottom:601.132500px;}
.yd0{bottom:602.095500px;}
.y186{bottom:603.196500px;}
.yac{bottom:606.337500px;}
.y3a{bottom:608.143500px;}
.y117{bottom:612.079500px;}
.y15{bottom:613.041000px;}
.y163{bottom:613.167000px;}
.y88{bottom:618.679500px;}
.yf1{bottom:621.457500px;}
.ycf{bottom:622.419000px;}
.y64{bottom:622.666500px;}
.y185{bottom:623.520000px;}
.y1aa{bottom:626.691000px;}
.y39{bottom:628.467000px;}
.y14{bottom:630.973500px;}
.y162{bottom:633.490500px;}
.yab{bottom:639.957000px;}
.yce{bottom:642.744000px;}
.y116{bottom:642.970500px;}
.y140{bottom:643.539000px;}
.y184{bottom:643.843500px;}
.y1a9{bottom:647.014500px;}
.y13{bottom:648.907500px;}
.y87{bottom:652.291500px;}
.y161{bottom:653.815500px;}
.y63{bottom:655.135500px;}
.yf0{bottom:657.985500px;}
.yaa{bottom:660.280500px;}
.y38{bottom:661.642500px;}
.ycd{bottom:663.067500px;}
.y13f{bottom:663.864000px;}
.y183{bottom:664.167000px;}
.y12{bottom:666.840000px;}
.y1a8{bottom:667.338000px;}
.y86{bottom:672.615000px;}
.y160{bottom:674.139000px;}
.y62{bottom:675.459000px;}
.y1cd{bottom:676.329000px;}
.y37{bottom:681.966000px;}
.ycc{bottom:683.391000px;}
.y13e{bottom:684.187500px;}
.y11{bottom:684.772500px;}
.y115{bottom:686.790000px;}
.y1a7{bottom:687.663000px;}
.y85{bottom:692.940000px;}
.y182{bottom:695.059500px;}
.y61{bottom:695.784000px;}
.ya9{bottom:696.856500px;}
.y10{bottom:702.705000px;}
.ycb{bottom:703.714500px;}
.y13d{bottom:704.511000px;}
.y1cc{bottom:706.366500px;}
.y114{bottom:707.113500px;}
.y15f{bottom:707.911500px;}
.y1a6{bottom:707.986500px;}
.yef{bottom:709.030500px;}
.y36{bottom:715.500000px;}
.y60{bottom:716.107500px;}
.yf{bottom:720.637500px;}
.y13c{bottom:724.834500px;}
.y84{bottom:726.552000px;}
.y1cb{bottom:726.690000px;}
.y113{bottom:727.437000px;}
.y15e{bottom:728.236500px;}
.y1a5{bottom:728.310000px;}
.yee{bottom:729.354000px;}
.ya8{bottom:733.432500px;}
.yca{bottom:733.948500px;}
.y5f{bottom:733.977000px;}
.y35{bottom:735.823500px;}
.y5e{bottom:736.431000px;}
.ye{bottom:738.570000px;}
.y181{bottom:738.877500px;}
.y13b{bottom:745.158000px;}
.y83{bottom:746.877000px;}
.y112{bottom:747.760500px;}
.y1a4{bottom:748.633500px;}
.yed{bottom:749.677500px;}
.ya7{bottom:753.756000px;}
.yd{bottom:756.504000px;}
.y1ca{bottom:756.727500px;}
.y15d{bottom:762.009000px;}
.yc9{bottom:764.182500px;}
.y13a{bottom:765.483000px;}
.y111{bottom:768.085500px;}
.y1a3{bottom:768.957000px;}
.y34{bottom:769.359000px;}
.yec{bottom:770.002500px;}
.yc{bottom:774.436500px;}
.y180{bottom:775.405500px;}
.y5d{bottom:778.333500px;}
.y82{bottom:780.249000px;}
.ya6{bottom:783.700500px;}
.yc8{bottom:784.506000px;}
.y139{bottom:785.806500px;}
.y1c9{bottom:786.765000px;}
.y110{bottom:788.409000px;}
.y1a2{bottom:789.282000px;}
.yeb{bottom:790.326000px;}
.yb{bottom:792.369000px;}
.y15c{bottom:795.783000px;}
.y33{bottom:802.533000px;}
.ya5{bottom:804.025500px;}
.y138{bottom:806.130000px;}
.y1a1{bottom:809.605500px;}
.ya{bottom:810.301500px;}
.y81{bottom:811.140000px;}
.yc7{bottom:815.397000px;}
.y1c8{bottom:816.802500px;}
.y5c{bottom:818.580000px;}
.yea{bottom:821.382000px;}
.y10f{bottom:822.181500px;}
.y32{bottom:822.858000px;}
.y137{bottom:826.453500px;}
.y17f{bottom:826.963500px;}
.y9{bottom:828.234000px;}
.y15b{bottom:829.555500px;}
.y1a0{bottom:829.929000px;}
.ya4{bottom:840.601500px;}
.y10e{bottom:842.506500px;}
.y31{bottom:843.181500px;}
.y8{bottom:846.166500px;}
.y136{bottom:846.777000px;}
.y1c7{bottom:846.840000px;}
.y17e{bottom:847.288500px;}
.y19f{bottom:850.252500px;}
.y5b{bottom:853.630500px;}
.ye9{bottom:854.068500px;}
.y80{bottom:854.884500px;}
.yc6{bottom:858.190500px;}
.y10d{bottom:860.374500px;}
.y15a{bottom:860.448000px;}
.y10c{bottom:862.830000px;}
.y7{bottom:864.100500px;}
.y135{bottom:867.102000px;}
.y19e{bottom:870.576000px;}
.ye8{bottom:874.393500px;}
.y7f{bottom:875.208000px;}
.y5a{bottom:875.820000px;}
.y30{bottom:876.357000px;}
.y1c6{bottom:876.877500px;}
.ya3{bottom:877.177500px;}
.yc5{bottom:878.514000px;}
.y17d{bottom:881.061000px;}
.y6{bottom:882.033000px;}
.y134{bottom:887.425500px;}
.y19d{bottom:890.901000px;}
.y59{bottom:893.689500px;}
.y7e{bottom:895.531500px;}
.y58{bottom:896.143500px;}
.ya2{bottom:897.501000px;}
.y10b{bottom:899.592000px;}
.y159{bottom:904.266000px;}
.y1c5{bottom:906.913500px;}
.ye7{bottom:907.080000px;}
.y133{bottom:907.749000px;}
.y5{bottom:909.306000px;}
.y2f{bottom:909.891000px;}
.y17c{bottom:914.835000px;}
.yc4{bottom:915.042000px;}
.y7d{bottom:915.855000px;}
.ya1{bottom:917.824500px;}
.y158{bottom:924.591000px;}
.ye6{bottom:927.403500px;}
.y19c{bottom:927.429000px;}
.y57{bottom:928.614000px;}
.y17b{bottom:935.158500px;}
.y7c{bottom:936.178500px;}
.y10a{bottom:936.354000px;}
.y1c4{bottom:936.951000px;}
.y132{bottom:937.786500px;}
.ya0{bottom:938.149500px;}
.y2e{bottom:943.425000px;}
.y157{bottom:944.914500px;}
.y17a{bottom:955.482000px;}
.y7b{bottom:956.502000px;}
.y109{bottom:956.677500px;}
.ye5{bottom:958.459500px;}
.y131{bottom:963.778500px;}
.y56{bottom:965.142000px;}
.y156{bottom:965.238000px;}
.yc3{bottom:965.574000px;}
.y1c3{bottom:966.988500px;}
.y130{bottom:967.824000px;}
.y4{bottom:969.717000px;}
.y9f{bottom:971.767500px;}
.y179{bottom:975.805500px;}
.y2d{bottom:976.600500px;}
.y7a{bottom:976.827000px;}
.y19b{bottom:978.987000px;}
.y155{bottom:985.561500px;}
.yc2{bottom:985.897500px;}
.y1c2{bottom:987.313500px;}
.ye4{bottom:989.517000px;}
.y108{bottom:990.451500px;}
.y178{bottom:996.129000px;}
.y79{bottom:997.150500px;}
.y19a{bottom:999.310500px;}
.y12f{bottom:1004.586000px;}
.y154{bottom:1005.885000px;}
.yc1{bottom:1006.221000px;}
.y3{bottom:1006.404000px;}
.y9e{bottom:1008.343500px;}
.y2c{bottom:1009.776000px;}
.ye3{bottom:1009.840500px;}
.y107{bottom:1010.775000px;}
.y55{bottom:1016.454000px;}
.y1c1{bottom:1017.349500px;}
.y153{bottom:1026.210000px;}
.y2b{bottom:1030.099500px;}
.ye2{bottom:1030.164000px;}
.y78{bottom:1030.522500px;}
.y199{bottom:1033.083000px;}
.y54{bottom:1036.777500px;}
.y1c0{bottom:1037.674500px;}
.yc0{bottom:1037.818500px;}
.y9d{bottom:1044.919500px;}
.y12e{bottom:1046.533500px;}
.y106{bottom:1047.537000px;}
.y2a{bottom:1050.423000px;}
.y77{bottom:1050.846000px;}
.y2{bottom:1051.870500px;}
.y198{bottom:1053.408000px;}
.y53{bottom:1057.101000px;}
.ybf{bottom:1058.142000px;}
.ye1{bottom:1061.220000px;}
.y12d{bottom:1066.857000px;}
.y1bf{bottom:1067.712000px;}
.y1{bottom:1072.792500px;}
.y52{bottom:1077.424500px;}
.ybe{bottom:1078.467000px;}
.y9c{bottom:1081.495500px;}
.ye0{bottom:1081.545000px;}
.y105{bottom:1084.299000px;}
.y76{bottom:1084.459500px;}
.y29{bottom:1086.951000px;}
.y12c{bottom:1087.180500px;}
.y1be{bottom:1088.035500px;}
.y51{bottom:1097.748000px;}
.ydf{bottom:1101.868500px;}
.y75{bottom:1104.783000px;}
.y12b{bottom:1105.602000px;}
.y129{bottom:1107.504000px;}
.ybd{bottom:1110.063000px;}
.y12a{bottom:1116.129000px;}
.y50{bottom:1118.073000px;}
.y28{bottom:1138.396500px;}
.h13{height:34.143908px;}
.h12{height:34.191729px;}
.hb{height:35.865450px;}
.h4{height:41.842920px;}
.h5{height:44.831700px;}
.h7{height:45.818220px;}
.h9{height:46.080038px;}
.ha{height:46.865494px;}
.h8{height:49.090950px;}
.he{height:50.211840px;}
.h3{height:51.216077px;}
.hd{height:56.681494px;}
.h11{height:57.381024px;}
.hf{height:57.945729px;}
.h6{height:60.254040px;}
.h15{height:62.889450px;}
.h16{height:68.409024px;}
.h2{height:73.027727px;}
.h14{height:77.338205px;}
.hc{height:85.173024px;}
.h10{height:93.370950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:100.008000px;}
.x4a{left:104.973000px;}
.x1c{left:106.863000px;}
.x12{left:108.000000px;}
.x20{left:112.527000px;}
.x16{left:115.272000px;}
.x1d{left:119.818500px;}
.x21{left:130.698000px;}
.x13{left:132.546000px;}
.x69{left:134.130000px;}
.x4b{left:135.900000px;}
.x70{left:137.182500px;}
.x22{left:138.880500px;}
.x17{left:140.727000px;}
.x44{left:141.810000px;}
.x53{left:143.316000px;}
.x7{left:148.909500px;}
.x6a{left:150.493500px;}
.x54{left:155.716500px;}
.x37{left:156.958500px;}
.x2{left:159.208500px;}
.x1a{left:160.786500px;}
.x6b{left:162.436500px;}
.x55{left:167.989500px;}
.x8e{left:169.381500px;}
.x6{left:171.325500px;}
.x38{left:173.322000px;}
.x95{left:174.862500px;}
.x8f{left:175.873500px;}
.x1b{left:177.150000px;}
.x6c{left:178.800000px;}
.x8c{left:181.218000px;}
.x39{left:182.269500px;}
.x3e{left:186.145500px;}
.x6d{left:188.199000px;}
.x3f{left:194.481000px;}
.x3a{left:198.633000px;}
.x50{left:205.507500px;}
.x45{left:207.127500px;}
.x76{left:208.566000px;}
.x7b{left:211.650000px;}
.x2b{left:217.342500px;}
.x40{left:226.564500px;}
.x2c{left:230.278500px;}
.x46{left:234.141000px;}
.x2d{left:236.706000px;}
.x84{left:239.260500px;}
.x47{left:240.378000px;}
.x4e{left:244.026000px;}
.x2e{left:246.478500px;}
.xa0{left:248.509500px;}
.x8a{left:249.663000px;}
.x7d{left:250.971000px;}
.x77{left:253.515000px;}
.x51{left:256.326000px;}
.x8d{left:257.517000px;}
.x7e{left:261.340500px;}
.x96{left:263.233500px;}
.x1{left:265.491000px;}
.x97{left:273.762000px;}
.x58{left:275.317500px;}
.x5c{left:278.584500px;}
.x7f{left:280.251000px;}
.x29{left:282.268500px;}
.x8b{left:285.157500px;}
.x1e{left:286.293000px;}
.x59{left:292.044000px;}
.x9d{left:297.160500px;}
.x9f{left:301.090500px;}
.x1f{left:302.656500px;}
.x6e{left:305.745000px;}
.x64{left:307.090500px;}
.xa3{left:309.567000px;}
.x5b{left:310.956000px;}
.x80{left:312.819000px;}
.x65{left:315.273000px;}
.xa4{left:317.236500px;}
.x62{left:318.973500px;}
.x6f{left:322.108500px;}
.x66{left:325.923000px;}
.x67{left:334.104000px;}
.xa6{left:338.527500px;}
.x63{left:340.008000px;}
.x68{left:344.754000px;}
.xa5{left:347.400000px;}
.x7c{left:350.869500px;}
.x49{left:353.629500px;}
.xb8{left:358.687500px;}
.x3d{left:361.723500px;}
.x28{left:363.763500px;}
.xa7{left:372.222000px;}
.x3{left:375.274500px;}
.x81{left:378.271500px;}
.xb9{left:380.362500px;}
.x4{left:387.661500px;}
.xa8{left:392.749500px;}
.x87{left:395.565000px;}
.x48{left:400.951500px;}
.x52{left:406.911000px;}
.x5{left:413.812500px;}
.x4c{left:426.091500px;}
.x71{left:432.282000px;}
.x41{left:433.521000px;}
.x74{left:435.669000px;}
.xad{left:438.274500px;}
.x14{left:442.366500px;}
.x56{left:446.695500px;}
.x4d{left:448.477500px;}
.x72{left:449.491500px;}
.x78{left:450.855000px;}
.x23{left:454.119000px;}
.x57{left:458.454000px;}
.x9e{left:469.011000px;}
.x24{left:471.793500px;}
.x42{left:472.819500px;}
.x73{left:479.161500px;}
.x2a{left:485.889000px;}
.x7a{left:489.282000px;}
.x79{left:496.177500px;}
.x75{left:507.939000px;}
.xae{left:509.620500px;}
.xab{left:511.800000px;}
.x82{left:514.840500px;}
.x99{left:522.411000px;}
.xaf{left:525.984000px;}
.x2f{left:530.485500px;}
.x5e{left:534.435000px;}
.x30{left:543.423000px;}
.x5f{left:548.529000px;}
.x31{left:549.850500px;}
.x25{left:559.218000px;}
.xac{left:563.292000px;}
.x91{left:569.472000px;}
.x32{left:570.615000px;}
.x83{left:573.669000px;}
.x26{left:575.502000px;}
.x9c{left:577.608000px;}
.x27{left:581.821500px;}
.x4f{left:589.266000px;}
.x92{left:593.490000px;}
.x33{left:600.843000px;}
.x93{left:604.018500px;}
.x9a{left:605.778000px;}
.x8{left:610.846500px;}
.xb0{left:612.442500px;}
.x88{left:615.591000px;}
.x9{left:618.318000px;}
.xa1{left:619.906500px;}
.x94{left:624.735000px;}
.xa{left:628.473000px;}
.x89{left:631.875000px;}
.xb{left:635.944500px;}
.xb1{left:637.717500px;}
.x85{left:639.337500px;}
.x36{left:645.013500px;}
.xc{left:646.099500px;}
.x86{left:648.343500px;}
.x5d{left:650.676000px;}
.xd{left:653.571000px;}
.xe{left:663.726000px;}
.xf{left:671.197500px;}
.xa2{left:673.905000px;}
.xb2{left:679.357500px;}
.x10{left:681.352500px;}
.x11{left:688.824000px;}
.x90{left:699.631500px;}
.xa9{left:705.409500px;}
.xb3{left:713.544000px;}
.x60{left:716.599500px;}
.x98{left:719.461500px;}
.xaa{left:724.105500px;}
.xb4{left:729.907500px;}
.x61{left:739.758000px;}
.x3b{left:744.207000px;}
.x43{left:746.007000px;}
.x9b{left:751.218000px;}
.xb5{left:755.184000px;}
.x35{left:761.916000px;}
.xb6{left:764.095500px;}
.x18{left:770.634000px;}
.x5a{left:771.681000px;}
.x34{left:775.908000px;}
.x19{left:778.815000px;}
.xb7{left:780.459000px;}
.x3c{left:783.505500px;}
@media print{
.v3{vertical-align:-126.048000pt;}
.v5{vertical-align:-47.152000pt;}
.v1{vertical-align:-8.725333pt;}
.v2{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.725333pt;}
.ve{vertical-align:14.384000pt;}
.v7{vertical-align:21.114667pt;}
.vc{vertical-align:24.021333pt;}
.va{vertical-align:31.973333pt;}
.v8{vertical-align:39.360000pt;}
.vf{vertical-align:44.298667pt;}
.vb{vertical-align:46.970667pt;}
.v9{vertical-align:48.880000pt;}
.vd{vertical-align:58.682667pt;}
.v4{vertical-align:73.584000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.000749pt;}
.ls4d{letter-spacing:0.001414pt;}
.ls24{letter-spacing:0.001879pt;}
.ls3b{letter-spacing:0.001916pt;}
.ls3f{letter-spacing:0.002133pt;}
.ls2d{letter-spacing:0.002387pt;}
.ls3d{letter-spacing:0.002389pt;}
.ls26{letter-spacing:0.002405pt;}
.ls59{letter-spacing:0.002868pt;}
.ls8{letter-spacing:0.003854pt;}
.ls5b{letter-spacing:0.010586pt;}
.ls12{letter-spacing:0.010930pt;}
.ls45{letter-spacing:0.013428pt;}
.ls47{letter-spacing:0.014895pt;}
.ls28{letter-spacing:0.019508pt;}
.ls2c{letter-spacing:0.019835pt;}
.ls57{letter-spacing:0.174546pt;}
.ls50{letter-spacing:0.232727pt;}
.ls4e{letter-spacing:2.653258pt;}
.ls5f{letter-spacing:2.654270pt;}
.ls39{letter-spacing:2.655139pt;}
.ls25{letter-spacing:2.657087pt;}
.ls55{letter-spacing:2.658591pt;}
.ls31{letter-spacing:2.909093pt;}
.ls2f{letter-spacing:4.189094pt;}
.ls19{letter-spacing:5.760005pt;}
.ls11{letter-spacing:6.283642pt;}
.ls51{letter-spacing:6.341823pt;}
.ls9{letter-spacing:7.563189pt;}
.ls10{letter-spacing:7.568522pt;}
.ls5e{letter-spacing:9.658190pt;}
.lsa{letter-spacing:9.716372pt;}
.ls23{letter-spacing:12.392738pt;}
.ls14{letter-spacing:12.916374pt;}
.ls56{letter-spacing:12.974556pt;}
.ls2a{letter-spacing:14.539874pt;}
.ls38{letter-spacing:15.582964pt;}
.ls34{letter-spacing:16.116377pt;}
.lsc{letter-spacing:16.174559pt;}
.ls16{letter-spacing:16.232741pt;}
.ls2b{letter-spacing:16.407286pt;}
.ls22{letter-spacing:16.523650pt;}
.ls4f{letter-spacing:18.569549pt;}
.ls29{letter-spacing:18.817087pt;}
.ls37{letter-spacing:18.822037pt;}
.ls15{letter-spacing:19.258198pt;}
.ls2{letter-spacing:19.374562pt;}
.ls18{letter-spacing:19.432743pt;}
.ls4a{letter-spacing:20.189108pt;}
.ls5a{letter-spacing:20.491189pt;}
.ls13{letter-spacing:20.496522pt;}
.ls4{letter-spacing:20.829108pt;}
.ls7{letter-spacing:21.003654pt;}
.ls1d{letter-spacing:21.120018pt;}
.ls35{letter-spacing:21.294563pt;}
.ls60{letter-spacing:21.527291pt;}
.ls52{letter-spacing:21.992746pt;}
.ls1c{letter-spacing:22.283655pt;}
.ls54{letter-spacing:22.341837pt;}
.lsd{letter-spacing:22.690928pt;}
.ls4c{letter-spacing:22.749110pt;}
.ls33{letter-spacing:23.479341pt;}
.ls53{letter-spacing:23.563656pt;}
.lsb{letter-spacing:23.723189pt;}
.ls4b{letter-spacing:23.728522pt;}
.ls40{letter-spacing:23.896656pt;}
.ls48{letter-spacing:24.148063pt;}
.ls46{letter-spacing:25.054882pt;}
.ls49{letter-spacing:26.240022pt;}
.ls5{letter-spacing:26.414567pt;}
.ls3c{letter-spacing:26.472749pt;}
.ls3{letter-spacing:26.530931pt;}
.ls1f{letter-spacing:26.589113pt;}
.ls1e{letter-spacing:26.647295pt;}
.ls6{letter-spacing:26.763659pt;}
.lse{letter-spacing:27.112750pt;}
.ls44{letter-spacing:27.374730pt;}
.lsf{letter-spacing:27.403659pt;}
.ls17{letter-spacing:27.461841pt;}
.ls43{letter-spacing:28.286882pt;}
.ls32{letter-spacing:28.916388pt;}
.ls0{letter-spacing:29.090933pt;}
.ls1b{letter-spacing:32.000027pt;}
.ls21{letter-spacing:32.290936pt;}
.ls42{letter-spacing:32.349118pt;}
.ls41{letter-spacing:32.872755pt;}
.ls1a{letter-spacing:33.280028pt;}
.ls36{letter-spacing:36.945485pt;}
.ls20{letter-spacing:38.109123pt;}
.ls58{letter-spacing:49.351739pt;}
.ls30{letter-spacing:61.090960pt;}
.ls2e{letter-spacing:62.720052pt;}
.ls27{letter-spacing:75.636427pt;}
.ls3e{letter-spacing:77.369012pt;}
.ls5c{letter-spacing:86.114961pt;}
.ls3a{letter-spacing:126.080105pt;}
.ws91{word-spacing:-58.181867pt;}
.wsa2{word-spacing:-45.323674pt;}
.ws9d{word-spacing:-45.265492pt;}
.ws15{word-spacing:-43.038600pt;}
.ws42{word-spacing:-42.066082pt;}
.ws6d{word-spacing:-42.065490pt;}
.ws95{word-spacing:-42.007308pt;}
.ws68{word-spacing:-40.029124pt;}
.ws3f{word-spacing:-37.899668pt;}
.ws92{word-spacing:-35.549121pt;}
.ws2d{word-spacing:-29.736752pt;}
.ws40{word-spacing:-29.521250pt;}
.ws4d{word-spacing:-29.090933pt;}
.ws67{word-spacing:-28.183296pt;}
.ws4{word-spacing:-27.156719pt;}
.ws5d{word-spacing:-25.890931pt;}
.ws43{word-spacing:-21.783291pt;}
.ws6b{word-spacing:-21.725109pt;}
.wsa3{word-spacing:-17.865851pt;}
.ws6c{word-spacing:-16.162923pt;}
.ws28{word-spacing:-15.883650pt;}
.ws8b{word-spacing:-15.534558pt;}
.wsaf{word-spacing:-15.476377pt;}
.wsba{word-spacing:-14.778194pt;}
.ws1d{word-spacing:-14.346200pt;}
.wsc0{word-spacing:-14.080012pt;}
.wsb1{word-spacing:-14.021830pt;}
.wsa7{word-spacing:-13.614557pt;}
.ws55{word-spacing:-13.265466pt;}
.ws30{word-spacing:-13.090920pt;}
.ws8c{word-spacing:-12.974556pt;}
.wsbc{word-spacing:-12.916374pt;}
.wsb2{word-spacing:-12.864011pt;}
.ws8d{word-spacing:-12.858193pt;}
.ws50{word-spacing:-12.800011pt;}
.wsb7{word-spacing:-12.567283pt;}
.ws72{word-spacing:-12.334556pt;}
.wsa1{word-spacing:-12.276374pt;}
.ws59{word-spacing:-12.218192pt;}
.ws3b{word-spacing:-12.160010pt;}
.wsbf{word-spacing:-12.101828pt;}
.ws52{word-spacing:-11.955200pt;}
.ws93{word-spacing:-11.927283pt;}
.ws29{word-spacing:-11.810919pt;}
.ws82{word-spacing:-11.752737pt;}
.ws51{word-spacing:-11.700373pt;}
.wsb3{word-spacing:-11.636373pt;}
.wsc1{word-spacing:-11.345464pt;}
.ws2e{word-spacing:-11.287282pt;}
.ws62{word-spacing:-11.229100pt;}
.ws16{word-spacing:-11.170918pt;}
.ws21{word-spacing:-11.112737pt;}
.ws3c{word-spacing:-10.938191pt;}
.ws4f{word-spacing:-10.880009pt;}
.ws8a{word-spacing:-10.821827pt;}
.ws81{word-spacing:-10.769464pt;}
.ws9b{word-spacing:-10.763645pt;}
.ws63{word-spacing:-10.705463pt;}
.wsbe{word-spacing:-10.589100pt;}
.ws39{word-spacing:-10.472736pt;}
.ws60{word-spacing:-10.414554pt;}
.ws5e{word-spacing:-10.356372pt;}
.wsb0{word-spacing:-10.181827pt;}
.ws53{word-spacing:-10.123645pt;}
.ws38{word-spacing:-10.065463pt;}
.ws4c{word-spacing:-10.007281pt;}
.ws25{word-spacing:-9.949099pt;}
.ws3a{word-spacing:-9.890917pt;}
.ws49{word-spacing:-9.832735pt;}
.ws2b{word-spacing:-9.774554pt;}
.ws17{word-spacing:-9.716372pt;}
.ws19{word-spacing:-9.658190pt;}
.ws14{word-spacing:-9.617230pt;}
.ws24{word-spacing:-9.600008pt;}
.ws3d{word-spacing:-9.541826pt;}
.ws94{word-spacing:-9.489462pt;}
.ws1e{word-spacing:-9.483644pt;}
.ws1f{word-spacing:-9.425462pt;}
.ws31{word-spacing:-9.367281pt;}
.ws97{word-spacing:-9.314917pt;}
.ws4b{word-spacing:-9.309099pt;}
.ws54{word-spacing:-9.256735pt;}
.ws9a{word-spacing:-9.250917pt;}
.ws58{word-spacing:-9.198553pt;}
.wse{word-spacing:-9.192159pt;}
.ws77{word-spacing:-9.140371pt;}
.wsf{word-spacing:-9.085891pt;}
.wsbb{word-spacing:-9.076371pt;}
.wsc{word-spacing:-9.032757pt;}
.ws2f{word-spacing:-9.024008pt;}
.ws99{word-spacing:-9.018189pt;}
.ws10{word-spacing:-8.979623pt;}
.ws4e{word-spacing:-8.965826pt;}
.ws23{word-spacing:-8.907644pt;}
.wsd{word-spacing:-8.873356pt;}
.ws61{word-spacing:-8.849462pt;}
.wsb6{word-spacing:-8.843644pt;}
.ws3e{word-spacing:-8.791280pt;}
.wsa{word-spacing:-8.767088pt;}
.ws69{word-spacing:-8.733098pt;}
.ws7a{word-spacing:-8.727280pt;}
.ws8{word-spacing:-8.713954pt;}
.ws66{word-spacing:-8.674916pt;}
.wsa6{word-spacing:-8.669098pt;}
.ws6{word-spacing:-8.660820pt;}
.ws32{word-spacing:-8.616734pt;}
.ws2a{word-spacing:-8.610916pt;}
.ws5{word-spacing:-8.607686pt;}
.wsb{word-spacing:-8.554553pt;}
.ws9{word-spacing:-8.501419pt;}
.wsc5{word-spacing:-8.500371pt;}
.ws76{word-spacing:-8.442189pt;}
.ws27{word-spacing:-8.436371pt;}
.ws5a{word-spacing:-8.384007pt;}
.ws22{word-spacing:-8.261825pt;}
.ws36{word-spacing:-8.203643pt;}
.ws3{word-spacing:-8.182615pt;}
.ws5c{word-spacing:-8.151280pt;}
.ws86{word-spacing:-8.145461pt;}
.ws90{word-spacing:-8.087279pt;}
.wsa8{word-spacing:-8.029098pt;}
.wsb5{word-spacing:-7.976734pt;}
.ws65{word-spacing:-7.970916pt;}
.wsb4{word-spacing:-7.860370pt;}
.ws5f{word-spacing:-7.738188pt;}
.ws37{word-spacing:-7.621825pt;}
.ws26{word-spacing:-7.569461pt;}
.ws7b{word-spacing:-7.563643pt;}
.ws7d{word-spacing:-7.511279pt;}
.ws87{word-spacing:-7.505461pt;}
.ws88{word-spacing:-7.447279pt;}
.ws56{word-spacing:-7.330915pt;}
.ws7{word-spacing:-7.178385pt;}
.ws6f{word-spacing:-7.156370pt;}
.ws9e{word-spacing:-7.098188pt;}
.ws7c{word-spacing:-7.045824pt;}
.ws5b{word-spacing:-6.987642pt;}
.wsc7{word-spacing:-6.981824pt;}
.ws6e{word-spacing:-6.871278pt;}
.wsc2{word-spacing:-6.807278pt;}
.ws4a{word-spacing:-6.522187pt;}
.ws33{word-spacing:-6.516369pt;}
.ws20{word-spacing:-6.231278pt;}
.wsbd{word-spacing:-6.173096pt;}
.ws70{word-spacing:-6.167278pt;}
.ws11{word-spacing:-5.950993pt;}
.wsa0{word-spacing:-5.934550pt;}
.wsa9{word-spacing:-5.818187pt;}
.ws73{word-spacing:-5.585459pt;}
.ws89{word-spacing:-5.527277pt;}
.ws83{word-spacing:-5.410914pt;}
.ws9c{word-spacing:-5.294550pt;}
.ws34{word-spacing:-5.061822pt;}
.ws13{word-spacing:-5.053031pt;}
.ws74{word-spacing:-4.829095pt;}
.wsab{word-spacing:-4.770913pt;}
.wsac{word-spacing:-4.712731pt;}
.ws75{word-spacing:-4.485822pt;}
.wsa4{word-spacing:-4.480004pt;}
.ws84{word-spacing:-4.421822pt;}
.wsad{word-spacing:-4.014549pt;}
.ws7e{word-spacing:-3.840003pt;}
.wsae{word-spacing:-3.723639pt;}
.wsc6{word-spacing:-3.607276pt;}
.ws57{word-spacing:-3.549094pt;}
.ws79{word-spacing:-3.380366pt;}
.ws7f{word-spacing:-3.246548pt;}
.ws2c{word-spacing:-3.141821pt;}
.ws18{word-spacing:-2.850911pt;}
.wsa5{word-spacing:-2.618184pt;}
.wsc4{word-spacing:-2.560002pt;}
.ws12{word-spacing:-2.284756pt;}
.ws85{word-spacing:-2.152729pt;}
.ws9f{word-spacing:-1.687274pt;}
.ws35{word-spacing:-1.169456pt;}
.wsaa{word-spacing:-0.104727pt;}
.ws46{word-spacing:-0.058182pt;}
.ws47{word-spacing:-0.046545pt;}
.ws8f{word-spacing:-0.042507pt;}
.ws48{word-spacing:-0.022516pt;}
.ws1a{word-spacing:0.000000pt;}
.ws44{word-spacing:0.011636pt;}
.ws80{word-spacing:0.244364pt;}
.ws6a{word-spacing:1.099637pt;}
.ws64{word-spacing:1.157819pt;}
.ws78{word-spacing:2.612366pt;}
.ws8e{word-spacing:3.258185pt;}
.ws96{word-spacing:4.666186pt;}
.wsc3{word-spacing:14.429103pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.ws98{word-spacing:23.432359pt;}
.ws1b{word-spacing:23.854565pt;}
.ws1c{word-spacing:24.087293pt;}
.ws0{word-spacing:27.636455pt;}
.ws71{word-spacing:29.090933pt;}
.wsb8{word-spacing:30.681740pt;}
.wsb9{word-spacing:31.599897pt;}
.ws45{word-spacing:90.740439pt;}
.ws41{word-spacing:705.310918pt;}
._12{margin-left:-29.149115pt;}
._32{margin-left:-23.040019pt;}
._33{margin-left:-12.916374pt;}
._2c{margin-left:-9.716372pt;}
._30{margin-left:-8.296100pt;}
._2f{margin-left:-7.192228pt;}
._18{margin-left:-5.585459pt;}
._6{margin-left:-4.282578pt;}
._4{margin-left:-2.720431pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.721549pt;}
._20{width:2.720431pt;}
._3{width:4.112573pt;}
._27{width:5.794279pt;}
._36{width:14.836376pt;}
._7{width:16.482102pt;}
._23{width:17.372471pt;}
._26{width:18.535531pt;}
._2e{width:19.723653pt;}
._24{width:20.625561pt;}
._8{width:21.699883pt;}
._5{width:23.931447pt;}
._16{width:25.285205pt;}
._a{width:26.375663pt;}
._0{width:27.736064pt;}
._21{width:29.090933pt;}
._14{width:30.589545pt;}
._2d{width:32.021789pt;}
._9{width:32.996131pt;}
._29{width:34.071694pt;}
._34{width:36.620301pt;}
._2a{width:38.109123pt;}
._22{width:39.122122pt;}
._25{width:40.494579pt;}
._35{width:41.867037pt;}
._11{width:43.263402pt;}
._1c{width:44.810405pt;}
._13{width:48.849888pt;}
._b{width:50.327315pt;}
._17{width:51.490952pt;}
._d{width:53.818227pt;}
._1b{width:56.960047pt;}
._31{width:58.424962pt;}
._10{width:59.461868pt;}
._28{width:71.731200pt;}
._2b{width:78.894611pt;}
._1f{width:86.077200pt;}
._15{width:828.529939pt;}
._1d{width:961.421072pt;}
._19{width:1046.459054pt;}
._f{width:1047.764420pt;}
._1a{width:1107.488083pt;}
._c{width:1246.513099pt;}
._1e{width:1355.230220pt;}
._e{width:1633.630452pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y4f{bottom:96.000000pt;}
.y1bd{bottom:103.898667pt;}
.y177{bottom:109.478667pt;}
.y197{bottom:109.781333pt;}
.y26{bottom:112.480000pt;}
.y4e{bottom:114.065333pt;}
.y1bc{bottom:121.965333pt;}
.y74{bottom:124.862667pt;}
.y176{bottom:127.544000pt;}
.y196{bottom:127.846667pt;}
.y9b{bottom:128.249333pt;}
.y4d{bottom:132.130667pt;}
.y73{bottom:142.928000pt;}
.y25{bottom:145.090667pt;}
.y175{bottom:145.610667pt;}
.y195{bottom:145.912000pt;}
.y9a{bottom:146.316000pt;}
.y1bb{bottom:148.664000pt;}
.y4c{bottom:150.197333pt;}
.y104{bottom:161.185333pt;}
.y152{bottom:162.718667pt;}
.y24{bottom:163.156000pt;}
.y194{bottom:163.978667pt;}
.y1ba{bottom:166.730667pt;}
.y4b{bottom:168.262667pt;}
.y174{bottom:172.309333pt;}
.y72{bottom:172.485333pt;}
.y99{bottom:175.980000pt;}
.y103{bottom:179.252000pt;}
.ybc{bottom:180.080000pt;}
.y128{bottom:180.500000pt;}
.y151{bottom:180.785333pt;}
.y23{bottom:181.221333pt;}
.y193{bottom:182.044000pt;}
.y4a{bottom:186.328000pt;}
.y173{bottom:190.376000pt;}
.y1b9{bottom:193.430667pt;}
.y150{bottom:193.834667pt;}
.y98{bottom:194.045333pt;}
.ybb{bottom:198.145333pt;}
.y127{bottom:198.565333pt;}
.y14e{bottom:198.850667pt;}
.y22{bottom:199.288000pt;}
.y71{bottom:202.042667pt;}
.yde{bottom:204.393333pt;}
.y14f{bottom:204.577333pt;}
.y102{bottom:206.857333pt;}
.y172{bottom:208.441333pt;}
.y1b8{bottom:211.496000pt;}
.y97{bottom:212.110667pt;}
.y192{bottom:214.721333pt;}
.yba{bottom:216.210667pt;}
.y126{bottom:216.630667pt;}
.y14d{bottom:216.916000pt;}
.y49{bottom:219.696000pt;}
.ydd{bottom:222.458667pt;}
.y171{bottom:226.506667pt;}
.y70{bottom:230.905333pt;}
.y21{bottom:231.898667pt;}
.yb9{bottom:234.276000pt;}
.y14c{bottom:234.981333pt;}
.y101{bottom:236.637333pt;}
.y48{bottom:237.761333pt;}
.y1b7{bottom:238.196000pt;}
.y96{bottom:241.774667pt;}
.y170{bottom:244.572000pt;}
.y125{bottom:246.652000pt;}
.y191{bottom:247.398667pt;}
.ydc{bottom:247.644000pt;}
.yb8{bottom:252.342667pt;}
.y14b{bottom:253.046667pt;}
.y6f{bottom:258.364000pt;}
.y95{bottom:259.841333pt;}
.y16f{bottom:262.637333pt;}
.y20{bottom:264.509333pt;}
.y124{bottom:264.717333pt;}
.y1b6{bottom:264.896000pt;}
.ydb{bottom:265.709333pt;}
.y100{bottom:266.416000pt;}
.y47{bottom:267.569333pt;}
.yb7{bottom:270.408000pt;}
.y14a{bottom:271.113333pt;}
.y190{bottom:274.857333pt;}
.y16e{bottom:280.704000pt;}
.y1f{bottom:282.574667pt;}
.y1b5{bottom:282.961333pt;}
.yff{bottom:284.482667pt;}
.yb6{bottom:288.473333pt;}
.y149{bottom:289.178667pt;}
.y94{bottom:289.718667pt;}
.yda{bottom:290.894667pt;}
.y123{bottom:294.738667pt;}
.y6e{bottom:297.096000pt;}
.y1e{bottom:300.641333pt;}
.y46{bottom:300.937333pt;}
.yfe{bottom:302.548000pt;}
.y93{bottom:307.785333pt;}
.y1b4{bottom:309.661333pt;}
.y16d{bottom:310.724000pt;}
.y122{bottom:312.804000pt;}
.y18f{bottom:313.808000pt;}
.y6d{bottom:315.161333pt;}
.yd9{bottom:316.078667pt;}
.y45{bottom:319.002667pt;}
.y148{bottom:319.198667pt;}
.yb5{bottom:319.688000pt;}
.yfd{bottom:320.613333pt;}
.y1b3{bottom:327.726667pt;}
.y16c{bottom:328.789333pt;}
.y18e{bottom:331.873333pt;}
.y1d{bottom:333.252000pt;}
.y92{bottom:337.662667pt;}
.yfc{bottom:338.678667pt;}
.y121{bottom:342.825333pt;}
.yd8{bottom:344.165333pt;}
.yb4{bottom:344.396000pt;}
.y6c{bottom:347.630667pt;}
.y44{bottom:348.492000pt;}
.y147{bottom:349.220000pt;}
.y18d{bottom:349.938667pt;}
.y1c{bottom:351.317333pt;}
.y1b2{bottom:354.426667pt;}
.y16b{bottom:358.810667pt;}
.yfb{bottom:359.212000pt;}
.y120{bottom:360.890667pt;}
.yd7{bottom:362.230667pt;}
.yb3{bottom:366.446667pt;}
.y43{bottom:366.557333pt;}
.y91{bottom:367.326667pt;}
.y18c{bottom:368.005333pt;}
.y1b{bottom:369.382667pt;}
.y1b1{bottom:372.492000pt;}
.yf9{bottom:375.796000pt;}
.yfa{bottom:376.510667pt;}
.y146{bottom:379.241333pt;}
.y42{bottom:384.624000pt;}
.y18b{bottom:386.070667pt;}
.yb2{bottom:388.497333pt;}
.y16a{bottom:388.832000pt;}
.yd6{bottom:390.317333pt;}
.y11f{bottom:390.910667pt;}
.y6b{bottom:393.241333pt;}
.y90{bottom:393.813333pt;}
.yf8{bottom:396.124000pt;}
.y1a{bottom:401.993333pt;}
.y1b0{bottom:404.961333pt;}
.y169{bottom:406.897333pt;}
.yd5{bottom:408.382667pt;}
.y11e{bottom:408.977333pt;}
.y145{bottom:409.261333pt;}
.y6a{bottom:411.306667pt;}
.y8f{bottom:411.878667pt;}
.y41{bottom:414.113333pt;}
.yf7{bottom:414.189333pt;}
.y18a{bottom:416.090667pt;}
.yb1{bottom:419.745333pt;}
.y168{bottom:424.962667pt;}
.y11d{bottom:427.042667pt;}
.y69{bottom:429.372000pt;}
.y8e{bottom:429.944000pt;}
.y40{bottom:432.178667pt;}
.yd4{bottom:433.568000pt;}
.y19{bottom:434.605333pt;}
.y144{bottom:436.721333pt;}
.yb0{bottom:437.812000pt;}
.yf6{bottom:441.649333pt;}
.y167{bottom:443.028000pt;}
.y11c{bottom:445.108000pt;}
.y189{bottom:446.112000pt;}
.y68{bottom:447.438667pt;}
.y8d{bottom:448.010667pt;}
.y3f{bottom:450.244000pt;}
.y1af{bottom:450.790667pt;}
.yd3{bottom:451.633333pt;}
.yaf{bottom:455.877333pt;}
.y166{bottom:461.093333pt;}
.y11b{bottom:463.173333pt;}
.y67{bottom:465.504000pt;}
.y8c{bottom:466.076000pt;}
.y18{bottom:467.216000pt;}
.y3e{bottom:468.309333pt;}
.y1ae{bottom:468.856000pt;}
.yd2{bottom:469.698667pt;}
.y143{bottom:475.670667pt;}
.y188{bottom:476.133333pt;}
.y165{bottom:479.160000pt;}
.yf5{bottom:480.144000pt;}
.y8b{bottom:484.141333pt;}
.y3d{bottom:486.374667pt;}
.y1ad{bottom:486.921333pt;}
.yae{bottom:488.389333pt;}
.y11a{bottom:489.873333pt;}
.y142{bottom:493.736000pt;}
.y66{bottom:494.366667pt;}
.yd1{bottom:497.158667pt;}
.yf4{bottom:498.209333pt;}
.y3c{bottom:504.440000pt;}
.y1ac{bottom:504.988000pt;}
.y187{bottom:506.153333pt;}
.y164{bottom:506.618667pt;}
.y119{bottom:507.938667pt;}
.y17{bottom:513.045333pt;}
.y8a{bottom:513.805333pt;}
.yf3{bottom:516.274667pt;}
.yad{bottom:520.901333pt;}
.y3b{bottom:522.506667pt;}
.y1ab{bottom:523.053333pt;}
.y65{bottom:523.924000pt;}
.y118{bottom:526.004000pt;}
.y141{bottom:526.205333pt;}
.y16{bottom:528.985333pt;}
.y89{bottom:531.870667pt;}
.yf2{bottom:534.340000pt;}
.yd0{bottom:535.196000pt;}
.y186{bottom:536.174667pt;}
.yac{bottom:538.966667pt;}
.y3a{bottom:540.572000pt;}
.y117{bottom:544.070667pt;}
.y15{bottom:544.925333pt;}
.y163{bottom:545.037333pt;}
.y88{bottom:549.937333pt;}
.yf1{bottom:552.406667pt;}
.ycf{bottom:553.261333pt;}
.y64{bottom:553.481333pt;}
.y185{bottom:554.240000pt;}
.y1aa{bottom:557.058667pt;}
.y39{bottom:558.637333pt;}
.y14{bottom:560.865333pt;}
.y162{bottom:563.102667pt;}
.yab{bottom:568.850667pt;}
.yce{bottom:571.328000pt;}
.y116{bottom:571.529333pt;}
.y140{bottom:572.034667pt;}
.y184{bottom:572.305333pt;}
.y1a9{bottom:575.124000pt;}
.y13{bottom:576.806667pt;}
.y87{bottom:579.814667pt;}
.y161{bottom:581.169333pt;}
.y63{bottom:582.342667pt;}
.yf0{bottom:584.876000pt;}
.yaa{bottom:586.916000pt;}
.y38{bottom:588.126667pt;}
.ycd{bottom:589.393333pt;}
.y13f{bottom:590.101333pt;}
.y183{bottom:590.370667pt;}
.y12{bottom:592.746667pt;}
.y1a8{bottom:593.189333pt;}
.y86{bottom:597.880000pt;}
.y160{bottom:599.234667pt;}
.y62{bottom:600.408000pt;}
.y1cd{bottom:601.181333pt;}
.y37{bottom:606.192000pt;}
.ycc{bottom:607.458667pt;}
.y13e{bottom:608.166667pt;}
.y11{bottom:608.686667pt;}
.y115{bottom:610.480000pt;}
.y1a7{bottom:611.256000pt;}
.y85{bottom:615.946667pt;}
.y182{bottom:617.830667pt;}
.y61{bottom:618.474667pt;}
.ya9{bottom:619.428000pt;}
.y10{bottom:624.626667pt;}
.ycb{bottom:625.524000pt;}
.y13d{bottom:626.232000pt;}
.y1cc{bottom:627.881333pt;}
.y114{bottom:628.545333pt;}
.y15f{bottom:629.254667pt;}
.y1a6{bottom:629.321333pt;}
.yef{bottom:630.249333pt;}
.y36{bottom:636.000000pt;}
.y60{bottom:636.540000pt;}
.yf{bottom:640.566667pt;}
.y13c{bottom:644.297333pt;}
.y84{bottom:645.824000pt;}
.y1cb{bottom:645.946667pt;}
.y113{bottom:646.610667pt;}
.y15e{bottom:647.321333pt;}
.y1a5{bottom:647.386667pt;}
.yee{bottom:648.314667pt;}
.ya8{bottom:651.940000pt;}
.yca{bottom:652.398667pt;}
.y5f{bottom:652.424000pt;}
.y35{bottom:654.065333pt;}
.y5e{bottom:654.605333pt;}
.ye{bottom:656.506667pt;}
.y181{bottom:656.780000pt;}
.y13b{bottom:662.362667pt;}
.y83{bottom:663.890667pt;}
.y112{bottom:664.676000pt;}
.y1a4{bottom:665.452000pt;}
.yed{bottom:666.380000pt;}
.ya7{bottom:670.005333pt;}
.yd{bottom:672.448000pt;}
.y1ca{bottom:672.646667pt;}
.y15d{bottom:677.341333pt;}
.yc9{bottom:679.273333pt;}
.y13a{bottom:680.429333pt;}
.y111{bottom:682.742667pt;}
.y1a3{bottom:683.517333pt;}
.y34{bottom:683.874667pt;}
.yec{bottom:684.446667pt;}
.yc{bottom:688.388000pt;}
.y180{bottom:689.249333pt;}
.y5d{bottom:691.852000pt;}
.y82{bottom:693.554667pt;}
.ya6{bottom:696.622667pt;}
.yc8{bottom:697.338667pt;}
.y139{bottom:698.494667pt;}
.y1c9{bottom:699.346667pt;}
.y110{bottom:700.808000pt;}
.y1a2{bottom:701.584000pt;}
.yeb{bottom:702.512000pt;}
.yb{bottom:704.328000pt;}
.y15c{bottom:707.362667pt;}
.y33{bottom:713.362667pt;}
.ya5{bottom:714.689333pt;}
.y138{bottom:716.560000pt;}
.y1a1{bottom:719.649333pt;}
.ya{bottom:720.268000pt;}
.y81{bottom:721.013333pt;}
.yc7{bottom:724.797333pt;}
.y1c8{bottom:726.046667pt;}
.y5c{bottom:727.626667pt;}
.yea{bottom:730.117333pt;}
.y10f{bottom:730.828000pt;}
.y32{bottom:731.429333pt;}
.y137{bottom:734.625333pt;}
.y17f{bottom:735.078667pt;}
.y9{bottom:736.208000pt;}
.y15b{bottom:737.382667pt;}
.y1a0{bottom:737.714667pt;}
.ya4{bottom:747.201333pt;}
.y10e{bottom:748.894667pt;}
.y31{bottom:749.494667pt;}
.y8{bottom:752.148000pt;}
.y136{bottom:752.690667pt;}
.y1c7{bottom:752.746667pt;}
.y17e{bottom:753.145333pt;}
.y19f{bottom:755.780000pt;}
.y5b{bottom:758.782667pt;}
.ye9{bottom:759.172000pt;}
.y80{bottom:759.897333pt;}
.yc6{bottom:762.836000pt;}
.y10d{bottom:764.777333pt;}
.y15a{bottom:764.842667pt;}
.y10c{bottom:766.960000pt;}
.y7{bottom:768.089333pt;}
.y135{bottom:770.757333pt;}
.y19e{bottom:773.845333pt;}
.ye8{bottom:777.238667pt;}
.y7f{bottom:777.962667pt;}
.y5a{bottom:778.506667pt;}
.y30{bottom:778.984000pt;}
.y1c6{bottom:779.446667pt;}
.ya3{bottom:779.713333pt;}
.yc5{bottom:780.901333pt;}
.y17d{bottom:783.165333pt;}
.y6{bottom:784.029333pt;}
.y134{bottom:788.822667pt;}
.y19d{bottom:791.912000pt;}
.y59{bottom:794.390667pt;}
.y7e{bottom:796.028000pt;}
.y58{bottom:796.572000pt;}
.ya2{bottom:797.778667pt;}
.y10b{bottom:799.637333pt;}
.y159{bottom:803.792000pt;}
.y1c5{bottom:806.145333pt;}
.ye7{bottom:806.293333pt;}
.y133{bottom:806.888000pt;}
.y5{bottom:808.272000pt;}
.y2f{bottom:808.792000pt;}
.y17c{bottom:813.186667pt;}
.yc4{bottom:813.370667pt;}
.y7d{bottom:814.093333pt;}
.ya1{bottom:815.844000pt;}
.y158{bottom:821.858667pt;}
.ye6{bottom:824.358667pt;}
.y19c{bottom:824.381333pt;}
.y57{bottom:825.434667pt;}
.y17b{bottom:831.252000pt;}
.y7c{bottom:832.158667pt;}
.y10a{bottom:832.314667pt;}
.y1c4{bottom:832.845333pt;}
.y132{bottom:833.588000pt;}
.ya0{bottom:833.910667pt;}
.y2e{bottom:838.600000pt;}
.y157{bottom:839.924000pt;}
.y17a{bottom:849.317333pt;}
.y7b{bottom:850.224000pt;}
.y109{bottom:850.380000pt;}
.ye5{bottom:851.964000pt;}
.y131{bottom:856.692000pt;}
.y56{bottom:857.904000pt;}
.y156{bottom:857.989333pt;}
.yc3{bottom:858.288000pt;}
.y1c3{bottom:859.545333pt;}
.y130{bottom:860.288000pt;}
.y4{bottom:861.970667pt;}
.y9f{bottom:863.793333pt;}
.y179{bottom:867.382667pt;}
.y2d{bottom:868.089333pt;}
.y7a{bottom:868.290667pt;}
.y19b{bottom:870.210667pt;}
.y155{bottom:876.054667pt;}
.yc2{bottom:876.353333pt;}
.y1c2{bottom:877.612000pt;}
.ye4{bottom:879.570667pt;}
.y108{bottom:880.401333pt;}
.y178{bottom:885.448000pt;}
.y79{bottom:886.356000pt;}
.y19a{bottom:888.276000pt;}
.y12f{bottom:892.965333pt;}
.y154{bottom:894.120000pt;}
.yc1{bottom:894.418667pt;}
.y3{bottom:894.581333pt;}
.y9e{bottom:896.305333pt;}
.y2c{bottom:897.578667pt;}
.ye3{bottom:897.636000pt;}
.y107{bottom:898.466667pt;}
.y55{bottom:903.514667pt;}
.y1c1{bottom:904.310667pt;}
.y153{bottom:912.186667pt;}
.y2b{bottom:915.644000pt;}
.ye2{bottom:915.701333pt;}
.y78{bottom:916.020000pt;}
.y199{bottom:918.296000pt;}
.y54{bottom:921.580000pt;}
.y1c0{bottom:922.377333pt;}
.yc0{bottom:922.505333pt;}
.y9d{bottom:928.817333pt;}
.y12e{bottom:930.252000pt;}
.y106{bottom:931.144000pt;}
.y2a{bottom:933.709333pt;}
.y77{bottom:934.085333pt;}
.y2{bottom:934.996000pt;}
.y198{bottom:936.362667pt;}
.y53{bottom:939.645333pt;}
.ybf{bottom:940.570667pt;}
.ye1{bottom:943.306667pt;}
.y12d{bottom:948.317333pt;}
.y1bf{bottom:949.077333pt;}
.y1{bottom:953.593333pt;}
.y52{bottom:957.710667pt;}
.ybe{bottom:958.637333pt;}
.y9c{bottom:961.329333pt;}
.ye0{bottom:961.373333pt;}
.y105{bottom:963.821333pt;}
.y76{bottom:963.964000pt;}
.y29{bottom:966.178667pt;}
.y12c{bottom:966.382667pt;}
.y1be{bottom:967.142667pt;}
.y51{bottom:975.776000pt;}
.ydf{bottom:979.438667pt;}
.y75{bottom:982.029333pt;}
.y12b{bottom:982.757333pt;}
.y129{bottom:984.448000pt;}
.ybd{bottom:986.722667pt;}
.y12a{bottom:992.114667pt;}
.y50{bottom:993.842667pt;}
.y28{bottom:1011.908000pt;}
.h13{height:30.350141pt;}
.h12{height:30.392648pt;}
.hb{height:31.880400pt;}
.h4{height:37.193707pt;}
.h5{height:39.850400pt;}
.h7{height:40.727307pt;}
.h9{height:40.960034pt;}
.ha{height:41.658217pt;}
.h8{height:43.636400pt;}
.he{height:44.632747pt;}
.h3{height:45.525402pt;}
.hd{height:50.383550pt;}
.h11{height:51.005355pt;}
.hf{height:51.507315pt;}
.h6{height:53.559147pt;}
.h15{height:55.901733pt;}
.h16{height:60.808021pt;}
.h2{height:64.913535pt;}
.h14{height:68.745071pt;}
.hc{height:75.709355pt;}
.h10{height:82.996400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:88.896000pt;}
.x4a{left:93.309333pt;}
.x1c{left:94.989333pt;}
.x12{left:96.000000pt;}
.x20{left:100.024000pt;}
.x16{left:102.464000pt;}
.x1d{left:106.505333pt;}
.x21{left:116.176000pt;}
.x13{left:117.818667pt;}
.x69{left:119.226667pt;}
.x4b{left:120.800000pt;}
.x70{left:121.940000pt;}
.x22{left:123.449333pt;}
.x17{left:125.090667pt;}
.x44{left:126.053333pt;}
.x53{left:127.392000pt;}
.x7{left:132.364000pt;}
.x6a{left:133.772000pt;}
.x54{left:138.414667pt;}
.x37{left:139.518667pt;}
.x2{left:141.518667pt;}
.x1a{left:142.921333pt;}
.x6b{left:144.388000pt;}
.x55{left:149.324000pt;}
.x8e{left:150.561333pt;}
.x6{left:152.289333pt;}
.x38{left:154.064000pt;}
.x95{left:155.433333pt;}
.x8f{left:156.332000pt;}
.x1b{left:157.466667pt;}
.x6c{left:158.933333pt;}
.x8c{left:161.082667pt;}
.x39{left:162.017333pt;}
.x3e{left:165.462667pt;}
.x6d{left:167.288000pt;}
.x3f{left:172.872000pt;}
.x3a{left:176.562667pt;}
.x50{left:182.673333pt;}
.x45{left:184.113333pt;}
.x76{left:185.392000pt;}
.x7b{left:188.133333pt;}
.x2b{left:193.193333pt;}
.x40{left:201.390667pt;}
.x2c{left:204.692000pt;}
.x46{left:208.125333pt;}
.x2d{left:210.405333pt;}
.x84{left:212.676000pt;}
.x47{left:213.669333pt;}
.x4e{left:216.912000pt;}
.x2e{left:219.092000pt;}
.xa0{left:220.897333pt;}
.x8a{left:221.922667pt;}
.x7d{left:223.085333pt;}
.x77{left:225.346667pt;}
.x51{left:227.845333pt;}
.x8d{left:228.904000pt;}
.x7e{left:232.302667pt;}
.x96{left:233.985333pt;}
.x1{left:235.992000pt;}
.x97{left:243.344000pt;}
.x58{left:244.726667pt;}
.x5c{left:247.630667pt;}
.x7f{left:249.112000pt;}
.x29{left:250.905333pt;}
.x8b{left:253.473333pt;}
.x1e{left:254.482667pt;}
.x59{left:259.594667pt;}
.x9d{left:264.142667pt;}
.x9f{left:267.636000pt;}
.x1f{left:269.028000pt;}
.x6e{left:271.773333pt;}
.x64{left:272.969333pt;}
.xa3{left:275.170667pt;}
.x5b{left:276.405333pt;}
.x80{left:278.061333pt;}
.x65{left:280.242667pt;}
.xa4{left:281.988000pt;}
.x62{left:283.532000pt;}
.x6f{left:286.318667pt;}
.x66{left:289.709333pt;}
.x67{left:296.981333pt;}
.xa6{left:300.913333pt;}
.x63{left:302.229333pt;}
.x68{left:306.448000pt;}
.xa5{left:308.800000pt;}
.x7c{left:311.884000pt;}
.x49{left:314.337333pt;}
.xb8{left:318.833333pt;}
.x3d{left:321.532000pt;}
.x28{left:323.345333pt;}
.xa7{left:330.864000pt;}
.x3{left:333.577333pt;}
.x81{left:336.241333pt;}
.xb9{left:338.100000pt;}
.x4{left:344.588000pt;}
.xa8{left:349.110667pt;}
.x87{left:351.613333pt;}
.x48{left:356.401333pt;}
.x52{left:361.698667pt;}
.x5{left:367.833333pt;}
.x4c{left:378.748000pt;}
.x71{left:384.250667pt;}
.x41{left:385.352000pt;}
.x74{left:387.261333pt;}
.xad{left:389.577333pt;}
.x14{left:393.214667pt;}
.x56{left:397.062667pt;}
.x4d{left:398.646667pt;}
.x72{left:399.548000pt;}
.x78{left:400.760000pt;}
.x23{left:403.661333pt;}
.x57{left:407.514667pt;}
.x9e{left:416.898667pt;}
.x24{left:419.372000pt;}
.x42{left:420.284000pt;}
.x73{left:425.921333pt;}
.x2a{left:431.901333pt;}
.x7a{left:434.917333pt;}
.x79{left:441.046667pt;}
.x75{left:451.501333pt;}
.xae{left:452.996000pt;}
.xab{left:454.933333pt;}
.x82{left:457.636000pt;}
.x99{left:464.365333pt;}
.xaf{left:467.541333pt;}
.x2f{left:471.542667pt;}
.x5e{left:475.053333pt;}
.x30{left:483.042667pt;}
.x5f{left:487.581333pt;}
.x31{left:488.756000pt;}
.x25{left:497.082667pt;}
.xac{left:500.704000pt;}
.x91{left:506.197333pt;}
.x32{left:507.213333pt;}
.x83{left:509.928000pt;}
.x26{left:511.557333pt;}
.x9c{left:513.429333pt;}
.x27{left:517.174667pt;}
.x4f{left:523.792000pt;}
.x92{left:527.546667pt;}
.x33{left:534.082667pt;}
.x93{left:536.905333pt;}
.x9a{left:538.469333pt;}
.x8{left:542.974667pt;}
.xb0{left:544.393333pt;}
.x88{left:547.192000pt;}
.x9{left:549.616000pt;}
.xa1{left:551.028000pt;}
.x94{left:555.320000pt;}
.xa{left:558.642667pt;}
.x89{left:561.666667pt;}
.xb{left:565.284000pt;}
.xb1{left:566.860000pt;}
.x85{left:568.300000pt;}
.x36{left:573.345333pt;}
.xc{left:574.310667pt;}
.x86{left:576.305333pt;}
.x5d{left:578.378667pt;}
.xd{left:580.952000pt;}
.xe{left:589.978667pt;}
.xf{left:596.620000pt;}
.xa2{left:599.026667pt;}
.xb2{left:603.873333pt;}
.x10{left:605.646667pt;}
.x11{left:612.288000pt;}
.x90{left:621.894667pt;}
.xa9{left:627.030667pt;}
.xb3{left:634.261333pt;}
.x60{left:636.977333pt;}
.x98{left:639.521333pt;}
.xaa{left:643.649333pt;}
.xb4{left:648.806667pt;}
.x61{left:657.562667pt;}
.x3b{left:661.517333pt;}
.x43{left:663.117333pt;}
.x9b{left:667.749333pt;}
.xb5{left:671.274667pt;}
.x35{left:677.258667pt;}
.xb6{left:679.196000pt;}
.x18{left:685.008000pt;}
.x5a{left:685.938667pt;}
.x34{left:689.696000pt;}
.x19{left:692.280000pt;}
.xb7{left:693.741333pt;}
.x3c{left:696.449333pt;}
}




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