
    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_001501d12df7ad10d231e467.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_266b1e7bf783456d377946f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_537aaa2e8f36f9ba3ac458f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_250f644219236920437c2a86.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;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_6b537078c39cb8efa7309591.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.226000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_714ec3b33456a7b6eb8c043f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_80d225ae41beed27142887b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_67feeca663a7f1f0ac350eab.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1f902163fd24498d8216b006.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a02818cd4856b153992e0a74.woff2')format("woff");}.fff{font-family:fff;line-height:1.215332;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_e055f41d340b37741348dce8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.215332;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_c371fb129d0258c61586f6f3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_7e77738162d31c61e35c0960.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.391000;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_f269f668116b9635aaa532a0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.869000;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;}
.m6{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);}
.m11{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);}
.me{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);}
.m29{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);}
.m15{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1b{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);}
.m28{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);}
.m27{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);}
.m13{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m19{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);}
.m16{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1c{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);}
.mc{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);}
.mf{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);}
.m14{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);}
.m7{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);}
.m9{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);}
.m2{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);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m25{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);}
.m23{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);}
.m18{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);}
.m1e{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);}
.m21{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);}
.m22{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);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m20{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);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v5{vertical-align:-17.364000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:21.702000px;}
.ls23{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.090000px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000002px;}
.ls2e{letter-spacing:0.000154px;}
.ls35{letter-spacing:0.000273px;}
.ls24{letter-spacing:0.000309px;}
.ls1a{letter-spacing:0.000366px;}
.ls41{letter-spacing:0.000503px;}
.ls46{letter-spacing:0.000676px;}
.ls2a{letter-spacing:0.000846px;}
.ls2f{letter-spacing:0.000990px;}
.ls3a{letter-spacing:0.001036px;}
.ls13{letter-spacing:0.001193px;}
.ls1c{letter-spacing:0.001226px;}
.ls1d{letter-spacing:0.001518px;}
.ls2c{letter-spacing:0.001541px;}
.ls29{letter-spacing:0.002224px;}
.ls33{letter-spacing:0.002316px;}
.ls40{letter-spacing:0.002840px;}
.ls15{letter-spacing:0.002958px;}
.ls6{letter-spacing:0.003049px;}
.lsa{letter-spacing:0.003488px;}
.ls7{letter-spacing:0.003494px;}
.ls2d{letter-spacing:0.004784px;}
.ls42{letter-spacing:0.005270px;}
.ls2b{letter-spacing:0.005415px;}
.ls1f{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.466433px;}
.ls27{letter-spacing:0.472338px;}
.ls25{letter-spacing:0.477488px;}
.ls28{letter-spacing:0.483488px;}
.ls3e{letter-spacing:0.524565px;}
.ls45{letter-spacing:0.530008px;}
.ls3d{letter-spacing:0.530447px;}
.ls39{letter-spacing:0.534040px;}
.ls44{letter-spacing:0.535979px;}
.ls3c{letter-spacing:0.537859px;}
.ls3f{letter-spacing:0.539759px;}
.ls43{letter-spacing:0.545573px;}
.ls3b{letter-spacing:0.545660px;}
.lsb{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls9{letter-spacing:11.954850px;}
.ls34{letter-spacing:11.955150px;}
.ls12{letter-spacing:12.014896px;}
.ls1b{letter-spacing:12.552876px;}
.ls10{letter-spacing:14.286368px;}
.ls38{letter-spacing:14.346144px;}
.ls1e{letter-spacing:14.704798px;}
.ls11{letter-spacing:14.884124px;}
.lsd{letter-spacing:14.943900px;}
.ls16{letter-spacing:14.944435px;}
.lsf{letter-spacing:15.003676px;}
.lse{letter-spacing:15.063451px;}
.ls8{letter-spacing:15.242778px;}
.ls19{letter-spacing:15.720983px;}
.ls17{letter-spacing:16.378514px;}
.ls30{letter-spacing:17.514251px;}
.lsc{letter-spacing:17.715259px;}
.ls37{letter-spacing:18.530436px;}
.ls14{letter-spacing:20.383480px;}
.ls20{letter-spacing:23.192933px;}
.ls36{letter-spacing:30.485556px;}
.ls18{letter-spacing:41.544042px;}
.ls21{letter-spacing:67.111200px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls2{letter-spacing:72.361200px;}
.ls32{letter-spacing:84.189093px;}
.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;}
}
.ws60{word-spacing:-60.120000px;}
.ws47{word-spacing:-17.394700px;}
.wsb7{word-spacing:-15.655334px;}
.ws14{word-spacing:-14.943900px;}
.ws61{word-spacing:-14.850000px;}
.ws8f{word-spacing:-14.089801px;}
.ws1d{word-spacing:-13.915795px;}
.wsb5{word-spacing:-13.449600px;}
.ws91{word-spacing:-12.104640px;}
.ws1a{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws5f{word-spacing:-9.000000px;}
.ws62{word-spacing:-8.280000px;}
.ws21{word-spacing:-3.825638px;}
.ws58{word-spacing:-3.765863px;}
.ws59{word-spacing:-3.706087px;}
.ws4a{word-spacing:-3.586536px;}
.wseb{word-spacing:-3.550694px;}
.ws83{word-spacing:-3.466985px;}
.ws26{word-spacing:-3.347434px;}
.ws20{word-spacing:-3.108331px;}
.ws1f{word-spacing:-2.749678px;}
.ws113{word-spacing:-2.689920px;}
.ws6f{word-spacing:-2.689902px;}
.ws6d{word-spacing:-2.630126px;}
.ws9{word-spacing:-2.570351px;}
.ws27{word-spacing:-2.510575px;}
.ws7e{word-spacing:-2.391024px;}
.ws85{word-spacing:-2.271473px;}
.ws43{word-spacing:-2.092146px;}
.ws44{word-spacing:-2.032370px;}
.ws57{word-spacing:-1.972595px;}
.ws16{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws7d{word-spacing:-1.853044px;}
.ws78{word-spacing:-1.613941px;}
.ws9e{word-spacing:-1.554166px;}
.ws6e{word-spacing:-1.434614px;}
.ws48{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.ws49{word-spacing:-1.315063px;}
.ws95{word-spacing:-1.307301px;}
.ws90{word-spacing:-1.258883px;}
.wsa8{word-spacing:-1.195512px;}
.ws28{word-spacing:-1.135736px;}
.ws29{word-spacing:-1.075961px;}
.wsa6{word-spacing:-1.016185px;}
.wsb2{word-spacing:-0.753178px;}
.ws80{word-spacing:-0.657532px;}
.ws31{word-spacing:-0.597756px;}
.ws3f{word-spacing:-0.537980px;}
.wsd{word-spacing:-0.478205px;}
.ws67{word-spacing:-0.418429px;}
.ws7{word-spacing:-0.358654px;}
.ws94{word-spacing:-0.338930px;}
.ws3b{word-spacing:-0.298878px;}
.ws74{word-spacing:-0.286924px;}
.wsd1{word-spacing:-0.268992px;}
.ws8e{word-spacing:-0.242093px;}
.ws8{word-spacing:-0.239102px;}
.wsf1{word-spacing:-0.215194px;}
.ws12{word-spacing:-0.179327px;}
.wsb8{word-spacing:-0.161395px;}
.ws5{word-spacing:-0.119551px;}
.wsb1{word-spacing:-0.107597px;}
.wsa{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.wsf0{word-spacing:-0.003437px;}
.ws0{word-spacing:0.000000px;}
.ws8d{word-spacing:0.048419px;}
.wsac{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.wsae{word-spacing:0.107597px;}
.ws10{word-spacing:0.119551px;}
.ws96{word-spacing:0.145256px;}
.wsdc{word-spacing:0.161395px;}
.ws3e{word-spacing:0.179327px;}
.ws93{word-spacing:0.193674px;}
.wsb6{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wsad{word-spacing:0.268992px;}
.ws6{word-spacing:0.298878px;}
.wsdd{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws110{word-spacing:0.376589px;}
.ws34{word-spacing:0.418429px;}
.wscf{word-spacing:0.430387px;}
.ws5a{word-spacing:0.478205px;}
.wsab{word-spacing:0.537980px;}
.ws2c{word-spacing:0.657532px;}
.ws70{word-spacing:0.717307px;}
.ws7f{word-spacing:0.777083px;}
.wsc8{word-spacing:0.806976px;}
.ws42{word-spacing:0.836858px;}
.ws45{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.ws6c{word-spacing:1.016185px;}
.ws81{word-spacing:1.135736px;}
.wsc1{word-spacing:1.183565px;}
.ws71{word-spacing:1.195512px;}
.wsc5{word-spacing:1.237363px;}
.wsbe{word-spacing:1.291162px;}
.wsa3{word-spacing:1.374839px;}
.wse{word-spacing:1.434614px;}
.wsd8{word-spacing:1.506355px;}
.ws87{word-spacing:1.554166px;}
.wsc2{word-spacing:1.560154px;}
.ws11{word-spacing:1.613941px;}
.wsb0{word-spacing:1.775347px;}
.ws118{word-spacing:1.829146px;}
.ws88{word-spacing:1.912819px;}
.wsd7{word-spacing:1.936742px;}
.ws9b{word-spacing:1.972595px;}
.wsaf{word-spacing:2.044339px;}
.wsa0{word-spacing:2.092146px;}
.wsc{word-spacing:2.151922px;}
.ws4c{word-spacing:2.271473px;}
.wsa7{word-spacing:2.450800px;}
.ws5c{word-spacing:2.510575px;}
.ws75{word-spacing:2.570351px;}
.ws100{word-spacing:2.582323px;}
.ws5e{word-spacing:2.630126px;}
.ws10f{word-spacing:2.636122px;}
.ws22{word-spacing:2.749678px;}
.ws7a{word-spacing:2.809453px;}
.ws36{word-spacing:2.869229px;}
.ws5b{word-spacing:2.929004px;}
.ws103{word-spacing:2.958912px;}
.ws8b{word-spacing:2.988780px;}
.wsc6{word-spacing:3.012710px;}
.ws54{word-spacing:3.048556px;}
.ws8a{word-spacing:3.108331px;}
.ws9a{word-spacing:3.168107px;}
.ws23{word-spacing:3.287658px;}
.ws5d{word-spacing:3.347434px;}
.wsc3{word-spacing:3.443098px;}
.ws2d{word-spacing:3.526760px;}
.ws7b{word-spacing:3.765863px;}
.ws38{word-spacing:3.825638px;}
.ws3a{word-spacing:3.885414px;}
.wsfb{word-spacing:3.927283px;}
.ws39{word-spacing:3.945190px;}
.ws6a{word-spacing:4.064741px;}
.ws10b{word-spacing:4.088678px;}
.ws9d{word-spacing:4.184292px;}
.ws15{word-spacing:4.244068px;}
.wsf9{word-spacing:4.357670px;}
.ws32{word-spacing:4.423394px;}
.wsef{word-spacing:4.465267px;}
.ws52{word-spacing:4.483170px;}
.wsf2{word-spacing:4.519066px;}
.ws79{word-spacing:4.662497px;}
.ws4b{word-spacing:4.722272px;}
.wsd2{word-spacing:4.734259px;}
.ws2e{word-spacing:4.782048px;}
.wsff{word-spacing:4.788058px;}
.ws51{word-spacing:4.841824px;}
.wsf6{word-spacing:4.841856px;}
.ws6b{word-spacing:4.901599px;}
.ws89{word-spacing:4.961375px;}
.wsce{word-spacing:5.003251px;}
.ws24{word-spacing:5.021150px;}
.ws53{word-spacing:5.080926px;}
.ws40{word-spacing:5.140702px;}
.ws55{word-spacing:5.200477px;}
.ws56{word-spacing:5.260253px;}
.wsb4{word-spacing:5.272243px;}
.wsbc{word-spacing:5.374253px;}
.wsfe{word-spacing:5.376778px;}
.ws116{word-spacing:5.378563px;}
.wsd0{word-spacing:5.379734px;}
.ws65{word-spacing:5.379804px;}
.ws2{word-spacing:5.379840px;}
.wsd4{word-spacing:5.381059px;}
.ws3d{word-spacing:5.499355px;}
.wse1{word-spacing:5.541235px;}
.wse5{word-spacing:5.595034px;}
.ws8c{word-spacing:5.618906px;}
.ws13{word-spacing:5.798233px;}
.ws7c{word-spacing:5.858009px;}
.wsda{word-spacing:5.864026px;}
.ws30{word-spacing:5.917784px;}
.wsf{word-spacing:5.977560px;}
.wsd5{word-spacing:6.079219px;}
.ws84{word-spacing:6.395989px;}
.ws105{word-spacing:6.402010px;}
.ws77{word-spacing:6.515540px;}
.ws108{word-spacing:6.563405px;}
.ws17{word-spacing:6.694867px;}
.wsde{word-spacing:6.820705px;}
.ws2b{word-spacing:6.874194px;}
.wse2{word-spacing:6.939994px;}
.ws50{word-spacing:6.993745px;}
.wsa9{word-spacing:7.053521px;}
.ws9f{word-spacing:7.113296px;}
.wsf5{word-spacing:7.208986px;}
.ws35{word-spacing:7.292623px;}
.ws41{word-spacing:7.352399px;}
.ws63{word-spacing:7.412174px;}
.wsa4{word-spacing:7.711052px;}
.ws64{word-spacing:7.890379px;}
.wsc0{word-spacing:7.908365px;}
.ws104{word-spacing:8.069760px;}
.ws82{word-spacing:8.189257px;}
.ws86{word-spacing:8.488135px;}
.ws109{word-spacing:8.607744px;}
.ws4e{word-spacing:8.727238px;}
.ws73{word-spacing:8.787013px;}
.wsb{word-spacing:8.906564px;}
.ws33{word-spacing:9.026116px;}
.wsea{word-spacing:9.038131px;}
.ws76{word-spacing:9.623872px;}
.ws9c{word-spacing:10.042301px;}
.wsc7{word-spacing:10.114099px;}
.wsa2{word-spacing:10.221628px;}
.wsa1{word-spacing:10.281403px;}
.ws68{word-spacing:10.341179px;}
.ws66{word-spacing:10.460730px;}
.wse6{word-spacing:10.544486px;}
.wsaa{word-spacing:10.640057px;}
.ws114{word-spacing:10.705882px;}
.wsbb{word-spacing:10.921075px;}
.ws2f{word-spacing:11.476915px;}
.ws19{word-spacing:11.906882px;}
.ws97{word-spacing:12.048782px;}
.wsa5{word-spacing:12.074671px;}
.ws3c{word-spacing:12.194222px;}
.wsb3{word-spacing:12.642624px;}
.ws112{word-spacing:13.019213px;}
.wscd{word-spacing:13.073011px;}
.wsf4{word-spacing:13.126810px;}
.ws119{word-spacing:13.180608px;}
.ws4d{word-spacing:13.210408px;}
.wsfd{word-spacing:13.288205px;}
.wsba{word-spacing:13.342003px;}
.wsca{word-spacing:13.388698px;}
.ws117{word-spacing:13.389120px;}
.wsb9{word-spacing:13.390493px;}
.wsd9{word-spacing:13.392403px;}
.wsbd{word-spacing:13.394275px;}
.wsbf{word-spacing:13.395802px;}
.ws115{word-spacing:13.397203px;}
.ws25{word-spacing:13.449510px;}
.wse0{word-spacing:13.449600px;}
.wse4{word-spacing:13.503398px;}
.wse3{word-spacing:13.664794px;}
.wsdf{word-spacing:13.718592px;}
.ws111{word-spacing:13.826189px;}
.wsc9{word-spacing:14.202778px;}
.ws10c{word-spacing:14.848358px;}
.ws69{word-spacing:14.884124px;}
.ws10e{word-spacing:14.902157px;}
.wsf8{word-spacing:15.224947px;}
.ws101{word-spacing:15.978125px;}
.ws102{word-spacing:16.354714px;}
.wscb{word-spacing:16.677504px;}
.wsc4{word-spacing:16.838899px;}
.wse9{word-spacing:17.107891px;}
.wsfc{word-spacing:17.323085px;}
.ws10a{word-spacing:17.484480px;}
.ws4f{word-spacing:17.633802px;}
.ws18{word-spacing:17.693578px;}
.wsfa{word-spacing:17.699674px;}
.wsf3{word-spacing:17.914867px;}
.wsd3{word-spacing:18.076262px;}
.wsf7{word-spacing:18.237658px;}
.wsdb{word-spacing:19.259827px;}
.wsd6{word-spacing:19.475021px;}
.ws106{word-spacing:19.797811px;}
.ws107{word-spacing:19.905408px;}
.ws72{word-spacing:22.894055px;}
.wse7{word-spacing:23.994086px;}
.wsec{word-spacing:24.693466px;}
.ws98{word-spacing:25.775303px;}
.ws99{word-spacing:25.823124px;}
.wscc{word-spacing:26.684006px;}
.ws10d{word-spacing:28.244160px;}
.wsed{word-spacing:33.086016px;}
.wse8{word-spacing:37.551283px;}
.wsee{word-spacing:64.880870px;}
.ws1c{word-spacing:800.564665px;}
._4{margin-left:-7.908365px;}
._2{margin-left:-6.654257px;}
._9{margin-left:-4.638574px;}
._18{margin-left:-3.227882px;}
._3{margin-left:-1.936742px;}
._6{width:1.091170px;}
._1{width:2.998612px;}
._1f{width:7.334640px;}
._32{width:8.661542px;}
._11{width:9.683647px;}
._12{width:10.962858px;}
._1d{width:12.749222px;}
._b{width:14.004178px;}
._16{width:16.043784px;}
._1e{width:17.221848px;}
._5{width:18.829440px;}
._17{width:19.845499px;}
._7{width:21.024324px;}
._a{width:22.140895px;}
._c{width:23.432035px;}
._15{width:24.771022px;}
._8{width:26.642051px;}
._26{width:28.214083px;}
._e{width:29.821450px;}
._f{width:31.322414px;}
._10{width:32.661401px;}
._1b{width:34.131868px;}
._23{width:35.171976px;}
._1a{width:36.623278px;}
._0{width:37.658880px;}
._31{width:39.229862px;}
._24{width:40.647408px;}
._19{width:42.440676px;}
._21{width:43.695964px;}
._2b{width:45.393604px;}
._25{width:46.883236px;}
._2d{width:50.534896px;}
._2c{width:51.849847px;}
._22{width:52.980347px;}
._20{width:55.380000px;}
._35{width:57.518361px;}
._2e{width:59.544511px;}
._34{width:63.176066px;}
._33{width:64.702730px;}
._2a{width:67.618328px;}
._2f{width:70.583501px;}
._30{width:77.362099px;}
._14{width:93.548814px;}
._13{width:96.537594px;}
._27{width:253.858510px;}
._28{width:538.027039px;}
._1c{width:1650.950630px;}
._29{width:2060.541600px;}
._d{width:2084.451600px;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc4{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:33.120000px;}
.fs13{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs9{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fsd{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs14{font-size:48.418560px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:128.507760px;}
.yd4{bottom:-680.206500px;}
.yd3{bottom:-665.626500px;}
.yd2{bottom:-621.166500px;}
.yd1{bottom:-600.916500px;}
.yd0{bottom:-580.666500px;}
.ycf{bottom:-560.506500px;}
.yce{bottom:-540.226500px;}
.ycd{bottom:-519.976500px;}
.ycc{bottom:-499.726500px;}
.ycb{bottom:-479.476500px;}
.yca{bottom:-459.226500px;}
.yc9{bottom:-438.976500px;}
.yc8{bottom:-418.816500px;}
.yc7{bottom:-398.566500px;}
.yc6{bottom:-378.316500px;}
.yc5{bottom:-358.066500px;}
.yc4{bottom:-337.816500px;}
.yc3{bottom:-317.566500px;}
.yc2{bottom:-297.316500px;}
.yc1{bottom:-277.156500px;}
.yc0{bottom:-256.906500px;}
.ybf{bottom:-236.656500px;}
.ybe{bottom:-216.406500px;}
.ybd{bottom:-196.156500px;}
.ybc{bottom:-175.906500px;}
.ybb{bottom:-155.746500px;}
.yba{bottom:-135.466500px;}
.yb9{bottom:-115.216500px;}
.yb8{bottom:-94.966500px;}
.yb7{bottom:-65.626500px;}
.yb6{bottom:-27.826500px;}
.yb5{bottom:-3.436500px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.425340px;}
.y30{bottom:14.151273px;}
.y24{bottom:16.704213px;}
.y6{bottom:35.925007px;}
.y50{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.yeb{bottom:115.374000px;}
.y82{bottom:116.487000px;}
.y11a{bottom:116.607000px;}
.yab{bottom:119.863500px;}
.y4f{bottom:121.377000px;}
.y11d{bottom:122.029500px;}
.yf5{bottom:123.717000px;}
.y1c1{bottom:136.348500px;}
.y81{bottom:136.750500px;}
.y119{bottom:136.870500px;}
.yf4{bottom:138.687000px;}
.y22{bottom:139.264499px;}
.y190{bottom:140.056500px;}
.yaa{bottom:140.128500px;}
.y4e{bottom:141.642000px;}
.y13f{bottom:144.892650px;}
.y1f3{bottom:147.691500px;}
.yf3{bottom:149.316000px;}
.y14a{bottom:150.946050px;}
.y1c0{bottom:155.716500px;}
.y80{bottom:157.015500px;}
.y118{bottom:157.134000px;}
.y13e{bottom:159.687300px;}
.y18f{bottom:160.321500px;}
.ya9{bottom:160.392000px;}
.y4d{bottom:161.905500px;}
.yf2{bottom:163.512000px;}
.y149{bottom:165.740700px;}
.y1f2{bottom:167.059500px;}
.yf1{bottom:167.853000px;}
.yea{bottom:174.000000px;}
.y1bf{bottom:175.084500px;}
.y13d{bottom:175.827900px;}
.y7f{bottom:177.279000px;}
.y117{bottom:177.399000px;}
.y148{bottom:180.534000px;}
.y18e{bottom:180.585000px;}
.ya8{bottom:180.657000px;}
.y4c{bottom:182.170500px;}
.yf0{bottom:182.821500px;}
.y1f1{bottom:186.427500px;}
.y13c{bottom:190.621200px;}
.ye9{bottom:194.263500px;}
.y1be{bottom:194.451000px;}
.y147{bottom:196.674600px;}
.y19{bottom:196.933500px;}
.y7e{bottom:197.542500px;}
.y116{bottom:197.662500px;}
.y18d{bottom:200.848500px;}
.ya7{bottom:200.920500px;}
.y4b{bottom:202.434000px;}
.y13b{bottom:205.415850px;}
.y1f0{bottom:205.794000px;}
.y133{bottom:206.088150px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y146{bottom:211.469250px;}
.y1bd{bottom:213.819000px;}
.ye8{bottom:214.528500px;}
.y115{bottom:217.927500px;}
.y13a{bottom:220.210500px;}
.y132{bottom:220.882800px;}
.y18c{bottom:221.113500px;}
.ya6{bottom:221.184000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y4a{bottom:222.697500px;}
.y1ef{bottom:225.162000px;}
.y145{bottom:227.608500px;}
.y7d{bottom:229.762500px;}
.y1bc{bottom:233.187000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ye7{bottom:234.792000px;}
.y131{bottom:235.677450px;}
.y139{bottom:236.349750px;}
.y114{bottom:238.191000px;}
.y18b{bottom:241.377000px;}
.ya5{bottom:241.449000px;}
.y144{bottom:242.403150px;}
.y49{bottom:242.962500px;}
.y1ee{bottom:244.528500px;}
.y130{bottom:250.472100px;}
.y138{bottom:251.144400px;}
.y7c{bottom:251.521500px;}
.y1bb{bottom:252.553500px;}
.ye6{bottom:255.057000px;}
.y113{bottom:258.454500px;}
.y143{bottom:258.542400px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y18a{bottom:261.642000px;}
.ya4{bottom:261.712500px;}
.y48{bottom:263.226000px;}
.y1ed{bottom:263.896500px;}
.y137{bottom:265.939050px;}
.yef{bottom:267.138000px;}
.y1ba{bottom:271.921500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y7b{bottom:273.279000px;}
.y142{bottom:273.337050px;}
.ye5{bottom:275.320500px;}
.y112{bottom:278.719500px;}
.y136{bottom:280.733700px;}
.y189{bottom:281.905500px;}
.ya3{bottom:281.977500px;}
.y1ec{bottom:283.264500px;}
.y47{bottom:283.491000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y141{bottom:289.476300px;}
.y1b9{bottom:291.288000px;}
.y135{bottom:295.528350px;}
.ye4{bottom:295.584000px;}
.y111{bottom:298.983000px;}
.y188{bottom:302.169000px;}
.ya2{bottom:302.241000px;}
.y1eb{bottom:302.631000px;}
.y46{bottom:303.754500px;}
.y140{bottom:304.270950px;}
.y7a{bottom:305.499000px;}
.y1b{bottom:310.318501px;}
.y134{bottom:310.323000px;}
.y12{bottom:310.333501px;}
.y1b8{bottom:310.656000px;}
.ye3{bottom:315.849000px;}
.y110{bottom:319.248000px;}
.y1ea{bottom:321.999000px;}
.y187{bottom:322.434000px;}
.ya1{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y45{bottom:324.018000px;}
.y79{bottom:325.762500px;}
.yb4{bottom:327.253500px;}
.y1b7{bottom:330.024000px;}
.y12a{bottom:330.254400px;}
.ye2{bottom:336.112500px;}
.y12f{bottom:338.324700px;}
.y10f{bottom:339.511500px;}
.y1e9{bottom:341.367000px;}
.y186{bottom:342.697500px;}
.ya0{bottom:342.769500px;}
.y44{bottom:344.283000px;}
.y129{bottom:345.049050px;}
.y78{bottom:346.027500px;}
.yb3{bottom:347.503500px;}
.y10{bottom:348.133500px;}
.y1b6{bottom:349.390500px;}
.y12e{bottom:353.119350px;}
.ye1{bottom:356.377500px;}
.y10e{bottom:359.775000px;}
.y128{bottom:359.843700px;}
.y1e8{bottom:360.733500px;}
.y185{bottom:362.962500px;}
.y9f{bottom:363.033000px;}
.y43{bottom:364.546500px;}
.y77{bottom:366.291000px;}
.yb2{bottom:367.753500px;}
.y12d{bottom:367.914000px;}
.y1b5{bottom:368.758500px;}
.y122{bottom:369.258600px;}
.y127{bottom:375.982950px;}
.ye0{bottom:376.641000px;}
.y10d{bottom:380.040000px;}
.y1e7{bottom:380.101500px;}
.y184{bottom:383.226000px;}
.y9e{bottom:383.298000px;}
.y121{bottom:384.053250px;}
.y42{bottom:384.811500px;}
.y76{bottom:386.554500px;}
.yf{bottom:386.785499px;}
.y1b4{bottom:388.125000px;}
.y126{bottom:390.777600px;}
.ydf{bottom:396.904500px;}
.y120{bottom:398.847900px;}
.y1e6{bottom:399.468000px;}
.y10c{bottom:400.303500px;}
.y183{bottom:403.489500px;}
.y9d{bottom:403.561500px;}
.yb1{bottom:405.193500px;}
.y125{bottom:405.572250px;}
.y75{bottom:406.819500px;}
.y1b3{bottom:407.493000px;}
.ye{bottom:408.044999px;}
.y12c{bottom:413.642550px;}
.y41{bottom:414.042000px;}
.yde{bottom:417.169500px;}
.y1e5{bottom:418.836000px;}
.y10b{bottom:420.568500px;}
.y124{bottom:421.711500px;}
.y9c{bottom:423.825000px;}
.y1b2{bottom:426.861000px;}
.y74{bottom:427.083000px;}
.y12b{bottom:428.435850px;}
.y182{bottom:432.720000px;}
.y123{bottom:436.506150px;}
.ydc{bottom:437.433000px;}
.y1e4{bottom:438.204000px;}
.y10a{bottom:440.832000px;}
.ydd{bottom:442.858500px;}
.y9b{bottom:444.090000px;}
.y1b1{bottom:446.227500px;}
.y73{bottom:447.348000px;}
.y1e3{bottom:457.570500px;}
.ydb{bottom:457.698000px;}
.y11f{bottom:458.104800px;}
.y109{bottom:461.095500px;}
.y9a{bottom:464.353500px;}
.y1b0{bottom:465.595500px;}
.y181{bottom:467.539500px;}
.y72{bottom:467.611500px;}
.y1e2{bottom:476.938500px;}
.yda{bottom:477.961500px;}
.y108{bottom:481.360500px;}
.y99{bottom:484.618500px;}
.y1af{bottom:484.962000px;}
.y180{bottom:487.804500px;}
.y71{bottom:487.875000px;}
.y11e{bottom:488.034000px;}
.y40{bottom:489.553500px;}
.y1e1{bottom:496.305000px;}
.yd9{bottom:498.225000px;}
.y107{bottom:501.624000px;}
.yd{bottom:502.864502px;}
.y1ae{bottom:504.330000px;}
.y98{bottom:504.882000px;}
.y17f{bottom:508.068000px;}
.y70{bottom:508.140000px;}
.y1e0{bottom:515.673000px;}
.yd8{bottom:518.490000px;}
.yc{bottom:520.864502px;}
.y106{bottom:521.889000px;}
.y1ad{bottom:523.698000px;}
.y97{bottom:525.145500px;}
.y3f{bottom:527.749500px;}
.y17e{bottom:528.333000px;}
.y6f{bottom:528.403500px;}
.yee{bottom:530.571000px;}
.y1df{bottom:535.041000px;}
.yd7{bottom:538.753500px;}
.yb{bottom:538.864499px;}
.y105{bottom:542.152500px;}
.y1ac{bottom:543.064500px;}
.y96{bottom:545.410500px;}
.y3e{bottom:548.014500px;}
.y17d{bottom:548.596500px;}
.y6e{bottom:548.667000px;}
.y1de{bottom:554.407500px;}
.ya{bottom:556.864499px;}
.y104{bottom:562.416000px;}
.y1ab{bottom:562.432500px;}
.y95{bottom:565.674000px;}
.yd6{bottom:567.984000px;}
.y17c{bottom:568.860000px;}
.y6d{bottom:568.932000px;}
.y11c{bottom:571.099500px;}
.y1dd{bottom:573.775500px;}
.y1aa{bottom:581.799000px;}
.y103{bottom:582.681000px;}
.y94{bottom:585.939000px;}
.y3d{bottom:586.210500px;}
.y17b{bottom:589.125000px;}
.y6c{bottom:589.195500px;}
.y1dc{bottom:593.142000px;}
.yd5{bottom:599.607000px;}
.y1a9{bottom:601.167000px;}
.y102{bottom:602.944500px;}
.y93{bottom:606.202500px;}
.y3c{bottom:606.475500px;}
.y17a{bottom:609.388500px;}
.y6b{bottom:609.460500px;}
.y1db{bottom:612.510000px;}
.y1a8{bottom:620.535000px;}
.yb0{bottom:622.036500px;}
.y101{bottom:623.209500px;}
.y92{bottom:626.466000px;}
.y3b{bottom:626.739000px;}
.y179{bottom:629.653500px;}
.y6a{bottom:629.724000px;}
.y1da{bottom:631.878000px;}
.y1a7{bottom:639.901500px;}
.y100{bottom:643.473000px;}
.y9{bottom:645.510000px;}
.y91{bottom:646.731000px;}
.y3a{bottom:647.002500px;}
.y178{bottom:649.917000px;}
.y69{bottom:649.987500px;}
.y1d9{bottom:651.244500px;}
.y1a6{bottom:659.269500px;}
.yff{bottom:663.736500px;}
.y8{bottom:666.771000px;}
.y90{bottom:666.994500px;}
.y39{bottom:667.267500px;}
.y177{bottom:670.180500px;}
.y68{bottom:670.252500px;}
.y1d8{bottom:670.612500px;}
.y1a5{bottom:678.636000px;}
.yfe{bottom:684.001500px;}
.y8f{bottom:687.258000px;}
.y38{bottom:687.531000px;}
.y1d7{bottom:689.979000px;}
.y176{bottom:690.445500px;}
.y67{bottom:690.516000px;}
.y1a4{bottom:698.004000px;}
.yfd{bottom:704.265000px;}
.y8e{bottom:707.523000px;}
.y37{bottom:707.796000px;}
.y1d6{bottom:709.347000px;}
.y175{bottom:710.709000px;}
.y66{bottom:710.781000px;}
.y1a3{bottom:717.372000px;}
.yfc{bottom:724.530000px;}
.y7{bottom:726.298500px;}
.y8d{bottom:727.786500px;}
.y36{bottom:728.059500px;}
.y1d5{bottom:728.715000px;}
.y174{bottom:730.974000px;}
.y65{bottom:731.044500px;}
.y1a2{bottom:736.738500px;}
.yfb{bottom:744.793500px;}
.y8c{bottom:748.051500px;}
.y1d4{bottom:748.081500px;}
.y35{bottom:748.323000px;}
.y64{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y1a1{bottom:756.106500px;}
.yfa{bottom:765.057000px;}
.y1d3{bottom:767.449500px;}
.y8b{bottom:768.315000px;}
.y34{bottom:768.588000px;}
.y63{bottom:771.573000px;}
.y173{bottom:774.102000px;}
.y1a0{bottom:775.473000px;}
.y11b{bottom:777.282000px;}
.y1d2{bottom:786.816000px;}
.y172{bottom:788.298000px;}
.y8a{bottom:788.578500px;}
.y33{bottom:788.851500px;}
.y62{bottom:791.836500px;}
.yf9{bottom:794.287500px;}
.y19f{bottom:803.808000px;}
.y1d1{bottom:806.184000px;}
.y171{bottom:807.783900px;}
.y89{bottom:808.843500px;}
.y32{bottom:809.116500px;}
.y61{bottom:812.101500px;}
.yed{bottom:814.267500px;}
.y170{bottom:822.578550px;}
.y15f{bottom:823.250850px;}
.y1d0{bottom:825.552000px;}
.y88{bottom:829.107000px;}
.y60{bottom:832.365000px;}
.y16f{bottom:837.373200px;}
.y15e{bottom:838.045500px;}
.y19e{bottom:843.259500px;}
.y2f{bottom:844.548055px;}
.y1cf{bottom:844.918500px;}
.y2e{bottom:845.314500px;}
.y87{bottom:849.372000px;}
.y5f{bottom:852.628500px;}
.y15d{bottom:852.840150px;}
.y16e{bottom:853.512450px;}
.y19d{bottom:858.457500px;}
.y1ce{bottom:864.286500px;}
.y16d{bottom:868.307100px;}
.y15c{bottom:868.979400px;}
.y86{bottom:869.635500px;}
.y5e{bottom:872.893500px;}
.y19c{bottom:873.655500px;}
.y2{bottom:879.369000px;}
.y1cd{bottom:883.653000px;}
.y15b{bottom:883.774050px;}
.y2d{bottom:884.320500px;}
.y16c{bottom:884.446350px;}
.y19b{bottom:888.853500px;}
.y85{bottom:889.899000px;}
.y5d{bottom:893.157000px;}
.y15a{bottom:898.568700px;}
.yec{bottom:898.866000px;}
.y16b{bottom:899.241000px;}
.y2c{bottom:902.478000px;}
.y1cc{bottom:903.021000px;}
.y84{bottom:910.164000px;}
.y19a{bottom:913.018500px;}
.y159{bottom:913.362000px;}
.y5c{bottom:913.422000px;}
.y16a{bottom:915.380250px;}
.y1cb{bottom:922.389000px;}
.y14f{bottom:922.776900px;}
.y2b{bottom:925.516500px;}
.y199{bottom:928.216500px;}
.y158{bottom:929.502600px;}
.y169{bottom:930.174900px;}
.yaf{bottom:930.427500px;}
.y5b{bottom:933.685500px;}
.y14e{bottom:937.571550px;}
.y83{bottom:939.394500px;}
.y1ca{bottom:941.755500px;}
.y2a{bottom:943.674000px;}
.y157{bottom:944.297250px;}
.y168{bottom:944.969550px;}
.yae{bottom:950.692500px;}
.y14d{bottom:952.366200px;}
.y198{bottom:952.380000px;}
.y5a{bottom:953.949000px;}
.y167{bottom:959.764200px;}
.y156{bottom:960.436500px;}
.y1c9{bottom:961.123500px;}
.y29{bottom:965.914500px;}
.y1{bottom:966.726000px;}
.y196{bottom:967.578000px;}
.y197{bottom:967.579500px;}
.y1f6{bottom:968.313000px;}
.yad{bottom:970.956000px;}
.y59{bottom:974.214000px;}
.y155{bottom:975.231150px;}
.y166{bottom:975.903450px;}
.y1c8{bottom:980.490000px;}
.y1f5{bottom:987.681000px;}
.y154{bottom:990.025800px;}
.y165{bottom:990.698100px;}
.yf8{bottom:991.219500px;}
.y195{bottom:991.743000px;}
.y58{bottom:994.477500px;}
.y1c7{bottom:999.858000px;}
.yac{bottom:1000.186500px;}
.y164{bottom:1005.492750px;}
.y153{bottom:1006.165050px;}
.y194{bottom:1006.941000px;}
.y1f4{bottom:1007.047500px;}
.y28{bottom:1010.451000px;}
.yf7{bottom:1011.484500px;}
.y57{bottom:1014.742500px;}
.y1c6{bottom:1019.226000px;}
.y152{bottom:1020.959700px;}
.y163{bottom:1021.632000px;}
.y193{bottom:1022.139000px;}
.y192{bottom:1031.748000px;}
.y56{bottom:1035.006000px;}
.y151{bottom:1035.753000px;}
.y162{bottom:1036.426650px;}
.y1c5{bottom:1038.592500px;}
.yf6{bottom:1040.715000px;}
.y27{bottom:1040.848500px;}
.y150{bottom:1050.547650px;}
.y161{bottom:1051.221300px;}
.y55{bottom:1055.269500px;}
.y1c4{bottom:1057.960500px;}
.y191{bottom:1060.978500px;}
.y160{bottom:1066.014600px;}
.y26{bottom:1071.244500px;}
.y54{bottom:1075.534500px;}
.y1c3{bottom:1077.327000px;}
.y14c{bottom:1087.613250px;}
.y53{bottom:1095.798000px;}
.y1c2{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y52{bottom:1116.063000px;}
.y14b{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y51{bottom:1168.366500px;}
.h25{height:22.563049px;}
.h12{height:25.508090px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h14{height:33.112997px;}
.h21{height:33.821261px;}
.h13{height:34.199443px;}
.h23{height:34.861363px;}
.h1f{height:35.320430px;}
.h28{height:37.927872px;}
.h27{height:38.412058px;}
.h26{height:38.734848px;}
.h10{height:39.457760px;}
.h18{height:42.679778px;}
.h20{height:42.840113px;}
.h15{height:43.038432px;}
.hd{height:43.815515px;}
.h1d{height:43.886426px;}
.h1a{height:44.723848px;}
.h17{height:45.094826px;}
.h24{height:45.658702px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1c{height:50.440430px;}
.h11{height:50.731891px;}
.hb{height:50.930649px;}
.hf{height:54.411312px;}
.h2{height:55.152000px;}
.h1b{height:56.157012px;}
.h16{height:56.368391px;}
.h22{height:64.536113px;}
.h1e{height:74.004654px;}
.he{height:77.469696px;}
.h5{height:78.132000px;}
.hc{height:87.128261px;}
.h4{height:119.055004px;}
.h19{height:308.265000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.247128px;}
.w6{width:406.942500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x1f{left:-124.921500px;}
.x22{left:-93.031500px;}
.x0{left:0.000000px;}
.xb{left:29.274117px;}
.x6{left:58.056593px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x21{left:107.488500px;}
.x5{left:114.802500px;}
.xf{left:119.187000px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x15{left:131.092500px;}
.x2a{left:136.063500px;}
.x3a{left:144.790500px;}
.x8{left:146.170500px;}
.x3b{left:148.650000px;}
.x2d{left:156.040800px;}
.x33{left:175.578000px;}
.xc{left:188.950500px;}
.x17{left:195.097500px;}
.x4{left:203.484001px;}
.x1c{left:221.637000px;}
.x2b{left:228.853500px;}
.x36{left:238.107000px;}
.x10{left:239.230500px;}
.x1e{left:242.986500px;}
.x37{left:245.946000px;}
.x3c{left:252.085500px;}
.x3e{left:254.101500px;}
.x35{left:256.480500px;}
.x2e{left:257.832150px;}
.x32{left:260.376000px;}
.x3d{left:267.238500px;}
.x2f{left:285.210150px;}
.x34{left:295.621500px;}
.x2c{left:304.269000px;}
.x16{left:313.984500px;}
.x14{left:320.863500px;}
.x23{left:346.951500px;}
.x31{left:405.214500px;}
.x20{left:411.568500px;}
.x38{left:417.657000px;}
.x39{left:424.099500px;}
.x25{left:436.090500px;}
.x26{left:442.516500px;}
.x3{left:454.959000px;}
.x30{left:485.984850px;}
.x1a{left:508.939500px;}
.x1b{left:513.229500px;}
.x24{left:514.458000px;}
.x1d{left:549.400500px;}
.x13{left:570.249000px;}
.x18{left:625.392000px;}
.xd{left:652.048500px;}
.x11{left:667.332000px;}
.x27{left:695.556000px;}
.xa{left:701.339982px;}
.x28{left:717.936000px;}
.x29{left:724.362000px;}
.x19{left:736.707000px;}
.xe{left:772.092000px;}
.x12{left:776.257500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v5{vertical-align:-15.434667pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:19.290667pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000002pt;}
.ls2e{letter-spacing:0.000137pt;}
.ls35{letter-spacing:0.000243pt;}
.ls24{letter-spacing:0.000274pt;}
.ls1a{letter-spacing:0.000325pt;}
.ls41{letter-spacing:0.000447pt;}
.ls46{letter-spacing:0.000600pt;}
.ls2a{letter-spacing:0.000752pt;}
.ls2f{letter-spacing:0.000880pt;}
.ls3a{letter-spacing:0.000921pt;}
.ls13{letter-spacing:0.001061pt;}
.ls1c{letter-spacing:0.001089pt;}
.ls1d{letter-spacing:0.001349pt;}
.ls2c{letter-spacing:0.001370pt;}
.ls29{letter-spacing:0.001977pt;}
.ls33{letter-spacing:0.002058pt;}
.ls40{letter-spacing:0.002525pt;}
.ls15{letter-spacing:0.002630pt;}
.ls6{letter-spacing:0.002710pt;}
.lsa{letter-spacing:0.003100pt;}
.ls7{letter-spacing:0.003106pt;}
.ls2d{letter-spacing:0.004252pt;}
.ls42{letter-spacing:0.004685pt;}
.ls2b{letter-spacing:0.004813pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.414607pt;}
.ls27{letter-spacing:0.419856pt;}
.ls25{letter-spacing:0.424434pt;}
.ls28{letter-spacing:0.429767pt;}
.ls3e{letter-spacing:0.466280pt;}
.ls45{letter-spacing:0.471119pt;}
.ls3d{letter-spacing:0.471509pt;}
.ls39{letter-spacing:0.474702pt;}
.ls44{letter-spacing:0.476425pt;}
.ls3c{letter-spacing:0.478097pt;}
.ls3f{letter-spacing:0.479786pt;}
.ls43{letter-spacing:0.484954pt;}
.ls3b{letter-spacing:0.485031pt;}
.lsb{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls9{letter-spacing:10.626533pt;}
.ls34{letter-spacing:10.626800pt;}
.ls12{letter-spacing:10.679907pt;}
.ls1b{letter-spacing:11.158112pt;}
.ls10{letter-spacing:12.698994pt;}
.ls38{letter-spacing:12.752128pt;}
.ls1e{letter-spacing:13.070931pt;}
.ls11{letter-spacing:13.230333pt;}
.lsd{letter-spacing:13.283467pt;}
.ls16{letter-spacing:13.283942pt;}
.lsf{letter-spacing:13.336601pt;}
.lse{letter-spacing:13.389734pt;}
.ls8{letter-spacing:13.549136pt;}
.ls19{letter-spacing:13.974207pt;}
.ls17{letter-spacing:14.558679pt;}
.ls30{letter-spacing:15.568223pt;}
.lsc{letter-spacing:15.746897pt;}
.ls37{letter-spacing:16.471499pt;}
.ls14{letter-spacing:18.118649pt;}
.ls20{letter-spacing:20.615940pt;}
.ls36{letter-spacing:27.098272pt;}
.ls18{letter-spacing:36.928037pt;}
.ls21{letter-spacing:59.654400pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls2{letter-spacing:64.321067pt;}
.ls32{letter-spacing:74.834749pt;}
.ws60{word-spacing:-53.440000pt;}
.ws47{word-spacing:-15.461955pt;}
.wsb7{word-spacing:-13.915853pt;}
.ws14{word-spacing:-13.283467pt;}
.ws61{word-spacing:-13.200000pt;}
.ws8f{word-spacing:-12.524268pt;}
.ws1d{word-spacing:-12.369595pt;}
.wsb5{word-spacing:-11.955200pt;}
.ws91{word-spacing:-10.759680pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws5f{word-spacing:-8.000000pt;}
.ws62{word-spacing:-7.360000pt;}
.ws21{word-spacing:-3.400567pt;}
.ws58{word-spacing:-3.347434pt;}
.ws59{word-spacing:-3.294300pt;}
.ws4a{word-spacing:-3.188032pt;}
.wseb{word-spacing:-3.156173pt;}
.ws83{word-spacing:-3.081764pt;}
.ws26{word-spacing:-2.975497pt;}
.ws20{word-spacing:-2.762961pt;}
.ws1f{word-spacing:-2.444158pt;}
.ws113{word-spacing:-2.391040pt;}
.ws6f{word-spacing:-2.391024pt;}
.ws6d{word-spacing:-2.337890pt;}
.ws9{word-spacing:-2.284756pt;}
.ws27{word-spacing:-2.231622pt;}
.ws7e{word-spacing:-2.125355pt;}
.ws85{word-spacing:-2.019087pt;}
.ws43{word-spacing:-1.859685pt;}
.ws44{word-spacing:-1.806551pt;}
.ws57{word-spacing:-1.753418pt;}
.ws16{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws7d{word-spacing:-1.647150pt;}
.ws78{word-spacing:-1.434614pt;}
.ws9e{word-spacing:-1.381481pt;}
.ws6e{word-spacing:-1.275213pt;}
.ws48{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.ws49{word-spacing:-1.168945pt;}
.ws95{word-spacing:-1.162045pt;}
.ws90{word-spacing:-1.119007pt;}
.wsa8{word-spacing:-1.062677pt;}
.ws28{word-spacing:-1.009543pt;}
.ws29{word-spacing:-0.956410pt;}
.wsa6{word-spacing:-0.903276pt;}
.wsb2{word-spacing:-0.669491pt;}
.ws80{word-spacing:-0.584473pt;}
.ws31{word-spacing:-0.531339pt;}
.ws3f{word-spacing:-0.478205pt;}
.wsd{word-spacing:-0.425071pt;}
.ws67{word-spacing:-0.371937pt;}
.ws7{word-spacing:-0.318803pt;}
.ws94{word-spacing:-0.301271pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws74{word-spacing:-0.255043pt;}
.wsd1{word-spacing:-0.239104pt;}
.ws8e{word-spacing:-0.215194pt;}
.ws8{word-spacing:-0.212535pt;}
.wsf1{word-spacing:-0.191283pt;}
.ws12{word-spacing:-0.159402pt;}
.wsb8{word-spacing:-0.143462pt;}
.ws5{word-spacing:-0.106268pt;}
.wsb1{word-spacing:-0.095642pt;}
.wsa{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.wsf0{word-spacing:-0.003055pt;}
.ws0{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.043039pt;}
.wsac{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.wsae{word-spacing:0.095642pt;}
.ws10{word-spacing:0.106268pt;}
.ws96{word-spacing:0.129116pt;}
.wsdc{word-spacing:0.143462pt;}
.ws3e{word-spacing:0.159402pt;}
.ws93{word-spacing:0.172155pt;}
.wsb6{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wsad{word-spacing:0.239104pt;}
.ws6{word-spacing:0.265669pt;}
.wsdd{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws110{word-spacing:0.334746pt;}
.ws34{word-spacing:0.371937pt;}
.wscf{word-spacing:0.382566pt;}
.ws5a{word-spacing:0.425071pt;}
.wsab{word-spacing:0.478205pt;}
.ws2c{word-spacing:0.584473pt;}
.ws70{word-spacing:0.637606pt;}
.ws7f{word-spacing:0.690740pt;}
.wsc8{word-spacing:0.717312pt;}
.ws42{word-spacing:0.743874pt;}
.ws45{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.ws6c{word-spacing:0.903276pt;}
.ws81{word-spacing:1.009543pt;}
.wsc1{word-spacing:1.052058pt;}
.ws71{word-spacing:1.062677pt;}
.wsc5{word-spacing:1.099878pt;}
.wsbe{word-spacing:1.147699pt;}
.wsa3{word-spacing:1.222079pt;}
.wse{word-spacing:1.275213pt;}
.wsd8{word-spacing:1.338982pt;}
.ws87{word-spacing:1.381481pt;}
.wsc2{word-spacing:1.386803pt;}
.ws11{word-spacing:1.434614pt;}
.wsb0{word-spacing:1.578086pt;}
.ws118{word-spacing:1.625907pt;}
.ws88{word-spacing:1.700284pt;}
.wsd7{word-spacing:1.721549pt;}
.ws9b{word-spacing:1.753418pt;}
.wsaf{word-spacing:1.817190pt;}
.wsa0{word-spacing:1.859685pt;}
.wsc{word-spacing:1.912819pt;}
.ws4c{word-spacing:2.019087pt;}
.wsa7{word-spacing:2.178489pt;}
.ws5c{word-spacing:2.231622pt;}
.ws75{word-spacing:2.284756pt;}
.ws100{word-spacing:2.295398pt;}
.ws5e{word-spacing:2.337890pt;}
.ws10f{word-spacing:2.343219pt;}
.ws22{word-spacing:2.444158pt;}
.ws7a{word-spacing:2.497292pt;}
.ws36{word-spacing:2.550426pt;}
.ws5b{word-spacing:2.603559pt;}
.ws103{word-spacing:2.630144pt;}
.ws8b{word-spacing:2.656693pt;}
.wsc6{word-spacing:2.677965pt;}
.ws54{word-spacing:2.709827pt;}
.ws8a{word-spacing:2.762961pt;}
.ws9a{word-spacing:2.816095pt;}
.ws23{word-spacing:2.922363pt;}
.ws5d{word-spacing:2.975497pt;}
.wsc3{word-spacing:3.060531pt;}
.ws2d{word-spacing:3.134898pt;}
.ws7b{word-spacing:3.347434pt;}
.ws38{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.453701pt;}
.wsfb{word-spacing:3.490918pt;}
.ws39{word-spacing:3.506835pt;}
.ws6a{word-spacing:3.613103pt;}
.ws10b{word-spacing:3.634381pt;}
.ws9d{word-spacing:3.719371pt;}
.ws15{word-spacing:3.772505pt;}
.wsf9{word-spacing:3.873485pt;}
.ws32{word-spacing:3.931906pt;}
.wsef{word-spacing:3.969126pt;}
.ws52{word-spacing:3.985040pt;}
.wsf2{word-spacing:4.016947pt;}
.ws79{word-spacing:4.144442pt;}
.ws4b{word-spacing:4.197575pt;}
.wsd2{word-spacing:4.208230pt;}
.ws2e{word-spacing:4.250709pt;}
.wsff{word-spacing:4.256051pt;}
.ws51{word-spacing:4.303843pt;}
.wsf6{word-spacing:4.303872pt;}
.ws6b{word-spacing:4.356977pt;}
.ws89{word-spacing:4.410111pt;}
.wsce{word-spacing:4.447334pt;}
.ws24{word-spacing:4.463245pt;}
.ws53{word-spacing:4.516379pt;}
.ws40{word-spacing:4.569513pt;}
.ws55{word-spacing:4.622646pt;}
.ws56{word-spacing:4.675780pt;}
.wsb4{word-spacing:4.686438pt;}
.wsbc{word-spacing:4.777114pt;}
.wsfe{word-spacing:4.779358pt;}
.ws116{word-spacing:4.780945pt;}
.wsd0{word-spacing:4.781986pt;}
.ws65{word-spacing:4.782048pt;}
.ws2{word-spacing:4.782080pt;}
.wsd4{word-spacing:4.783164pt;}
.ws3d{word-spacing:4.888316pt;}
.wse1{word-spacing:4.925542pt;}
.wse5{word-spacing:4.973363pt;}
.ws8c{word-spacing:4.994583pt;}
.ws13{word-spacing:5.153985pt;}
.ws7c{word-spacing:5.207119pt;}
.wsda{word-spacing:5.212467pt;}
.ws30{word-spacing:5.260253pt;}
.wsf{word-spacing:5.313387pt;}
.wsd5{word-spacing:5.403750pt;}
.ws84{word-spacing:5.685324pt;}
.ws105{word-spacing:5.690675pt;}
.ws77{word-spacing:5.791591pt;}
.ws108{word-spacing:5.834138pt;}
.ws17{word-spacing:5.950993pt;}
.wsde{word-spacing:6.062849pt;}
.ws2b{word-spacing:6.110395pt;}
.wse2{word-spacing:6.168883pt;}
.ws50{word-spacing:6.216662pt;}
.wsa9{word-spacing:6.269796pt;}
.ws9f{word-spacing:6.322930pt;}
.wsf5{word-spacing:6.407987pt;}
.ws35{word-spacing:6.482332pt;}
.ws41{word-spacing:6.535466pt;}
.ws63{word-spacing:6.588599pt;}
.wsa4{word-spacing:6.854269pt;}
.ws64{word-spacing:7.013670pt;}
.wsc0{word-spacing:7.029658pt;}
.ws104{word-spacing:7.173120pt;}
.ws82{word-spacing:7.279340pt;}
.ws86{word-spacing:7.545009pt;}
.ws109{word-spacing:7.651328pt;}
.ws4e{word-spacing:7.757545pt;}
.ws73{word-spacing:7.810678pt;}
.wsb{word-spacing:7.916946pt;}
.ws33{word-spacing:8.023214pt;}
.wsea{word-spacing:8.033894pt;}
.ws76{word-spacing:8.554553pt;}
.ws9c{word-spacing:8.926490pt;}
.wsc7{word-spacing:8.990310pt;}
.wsa2{word-spacing:9.085891pt;}
.wsa1{word-spacing:9.139025pt;}
.ws68{word-spacing:9.192159pt;}
.ws66{word-spacing:9.298427pt;}
.wse6{word-spacing:9.372877pt;}
.wsaa{word-spacing:9.457828pt;}
.ws114{word-spacing:9.516339pt;}
.wsbb{word-spacing:9.707622pt;}
.ws2f{word-spacing:10.201702pt;}
.ws19{word-spacing:10.583895pt;}
.ws97{word-spacing:10.710029pt;}
.wsa5{word-spacing:10.733041pt;}
.ws3c{word-spacing:10.839309pt;}
.wsb3{word-spacing:11.237888pt;}
.ws112{word-spacing:11.572634pt;}
.wscd{word-spacing:11.620454pt;}
.wsf4{word-spacing:11.668275pt;}
.ws119{word-spacing:11.716096pt;}
.ws4d{word-spacing:11.742585pt;}
.wsfd{word-spacing:11.811738pt;}
.wsba{word-spacing:11.859558pt;}
.wsca{word-spacing:11.901065pt;}
.ws117{word-spacing:11.901440pt;}
.wsb9{word-spacing:11.902660pt;}
.wsd9{word-spacing:11.904358pt;}
.wsbd{word-spacing:11.906022pt;}
.wsbf{word-spacing:11.907379pt;}
.ws115{word-spacing:11.908625pt;}
.ws25{word-spacing:11.955120pt;}
.wse0{word-spacing:11.955200pt;}
.wse4{word-spacing:12.003021pt;}
.wse3{word-spacing:12.146483pt;}
.wsdf{word-spacing:12.194304pt;}
.ws111{word-spacing:12.289946pt;}
.wsc9{word-spacing:12.624691pt;}
.ws10c{word-spacing:13.198541pt;}
.ws69{word-spacing:13.230333pt;}
.ws10e{word-spacing:13.246362pt;}
.wsf8{word-spacing:13.533286pt;}
.ws101{word-spacing:14.202778pt;}
.ws102{word-spacing:14.537523pt;}
.wscb{word-spacing:14.824448pt;}
.wsc4{word-spacing:14.967910pt;}
.wse9{word-spacing:15.207014pt;}
.wsfc{word-spacing:15.398298pt;}
.ws10a{word-spacing:15.541760pt;}
.ws4f{word-spacing:15.674491pt;}
.ws18{word-spacing:15.727625pt;}
.wsfa{word-spacing:15.733043pt;}
.wsf3{word-spacing:15.924326pt;}
.wsd3{word-spacing:16.067789pt;}
.wsf7{word-spacing:16.211251pt;}
.wsdb{word-spacing:17.119846pt;}
.wsd6{word-spacing:17.311130pt;}
.ws106{word-spacing:17.598054pt;}
.ws107{word-spacing:17.693696pt;}
.ws72{word-spacing:20.350271pt;}
.wse7{word-spacing:21.328077pt;}
.wsec{word-spacing:21.949747pt;}
.ws98{word-spacing:22.911381pt;}
.ws99{word-spacing:22.953888pt;}
.wscc{word-spacing:23.719117pt;}
.ws10d{word-spacing:25.105920pt;}
.wsed{word-spacing:29.409792pt;}
.wse8{word-spacing:33.378918pt;}
.wsee{word-spacing:57.671885pt;}
.ws1c{word-spacing:711.613035pt;}
._4{margin-left:-7.029658pt;}
._2{margin-left:-5.914895pt;}
._9{margin-left:-4.123177pt;}
._18{margin-left:-2.869229pt;}
._3{margin-left:-1.721549pt;}
._6{width:0.969929pt;}
._1{width:2.665433pt;}
._1f{width:6.519680pt;}
._32{width:7.699149pt;}
._11{width:8.607686pt;}
._12{width:9.744763pt;}
._1d{width:11.332642pt;}
._b{width:12.448158pt;}
._16{width:14.261141pt;}
._1e{width:15.308309pt;}
._5{width:16.737280pt;}
._17{width:17.640444pt;}
._7{width:18.688288pt;}
._a{width:19.680796pt;}
._c{width:20.828476pt;}
._15{width:22.018686pt;}
._8{width:23.681823pt;}
._26{width:25.079185pt;}
._e{width:26.507956pt;}
._f{width:27.842146pt;}
._10{width:29.032356pt;}
._1b{width:30.339438pt;}
._23{width:31.263979pt;}
._1a{width:32.554025pt;}
._0{width:33.474560pt;}
._31{width:34.870989pt;}
._24{width:36.131029pt;}
._19{width:37.725045pt;}
._21{width:38.840857pt;}
._2b{width:40.349870pt;}
._25{width:41.673987pt;}
._2d{width:44.919907pt;}
._2c{width:46.088753pt;}
._22{width:47.093642pt;}
._20{width:49.226667pt;}
._35{width:51.127432pt;}
._2e{width:52.928454pt;}
._34{width:56.156503pt;}
._33{width:57.513538pt;}
._2a{width:60.105181pt;}
._2f{width:62.740890pt;}
._30{width:68.766310pt;}
._14{width:83.154501pt;}
._13{width:85.811195pt;}
._27{width:225.652009pt;}
._28{width:478.246257pt;}
._1c{width:1467.511671pt;}
._29{width:1831.592533pt;}
._d{width:1852.845867pt;}
.fs12{font-size:29.440000pt;}
.fs13{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs9{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs14{font-size:43.038720pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:114.229120pt;}
.yd4{bottom:-604.628000pt;}
.yd3{bottom:-591.668000pt;}
.yd2{bottom:-552.148000pt;}
.yd1{bottom:-534.148000pt;}
.yd0{bottom:-516.148000pt;}
.ycf{bottom:-498.228000pt;}
.yce{bottom:-480.201333pt;}
.ycd{bottom:-462.201333pt;}
.ycc{bottom:-444.201333pt;}
.ycb{bottom:-426.201333pt;}
.yca{bottom:-408.201333pt;}
.yc9{bottom:-390.201333pt;}
.yc8{bottom:-372.281333pt;}
.yc7{bottom:-354.281333pt;}
.yc6{bottom:-336.281333pt;}
.yc5{bottom:-318.281333pt;}
.yc4{bottom:-300.281333pt;}
.yc3{bottom:-282.281333pt;}
.yc2{bottom:-264.281333pt;}
.yc1{bottom:-246.361333pt;}
.yc0{bottom:-228.361333pt;}
.ybf{bottom:-210.361333pt;}
.ybe{bottom:-192.361333pt;}
.ybd{bottom:-174.361333pt;}
.ybc{bottom:-156.361333pt;}
.ybb{bottom:-138.441333pt;}
.yba{bottom:-120.414667pt;}
.yb9{bottom:-102.414667pt;}
.yb8{bottom:-84.414667pt;}
.yb7{bottom:-58.334667pt;}
.yb6{bottom:-24.734667pt;}
.yb5{bottom:-3.054667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.044747pt;}
.y30{bottom:12.578910pt;}
.y24{bottom:14.848190pt;}
.y6{bottom:31.933340pt;}
.y50{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.yeb{bottom:102.554667pt;}
.y82{bottom:103.544000pt;}
.y11a{bottom:103.650667pt;}
.yab{bottom:106.545333pt;}
.y4f{bottom:107.890667pt;}
.y11d{bottom:108.470667pt;}
.yf5{bottom:109.970667pt;}
.y1c1{bottom:121.198667pt;}
.y81{bottom:121.556000pt;}
.y119{bottom:121.662667pt;}
.yf4{bottom:123.277333pt;}
.y22{bottom:123.790666pt;}
.y190{bottom:124.494667pt;}
.yaa{bottom:124.558667pt;}
.y4e{bottom:125.904000pt;}
.y13f{bottom:128.793467pt;}
.y1f3{bottom:131.281333pt;}
.yf3{bottom:132.725333pt;}
.y14a{bottom:134.174267pt;}
.y1c0{bottom:138.414667pt;}
.y80{bottom:139.569333pt;}
.y118{bottom:139.674667pt;}
.y13e{bottom:141.944267pt;}
.y18f{bottom:142.508000pt;}
.ya9{bottom:142.570667pt;}
.y4d{bottom:143.916000pt;}
.yf2{bottom:145.344000pt;}
.y149{bottom:147.325067pt;}
.y1f2{bottom:148.497333pt;}
.yf1{bottom:149.202667pt;}
.yea{bottom:154.666667pt;}
.y1bf{bottom:155.630667pt;}
.y13d{bottom:156.291467pt;}
.y7f{bottom:157.581333pt;}
.y117{bottom:157.688000pt;}
.y148{bottom:160.474667pt;}
.y18e{bottom:160.520000pt;}
.ya8{bottom:160.584000pt;}
.y4c{bottom:161.929333pt;}
.yf0{bottom:162.508000pt;}
.y1f1{bottom:165.713333pt;}
.y13c{bottom:169.441067pt;}
.ye9{bottom:172.678667pt;}
.y1be{bottom:172.845333pt;}
.y147{bottom:174.821867pt;}
.y19{bottom:175.052000pt;}
.y7e{bottom:175.593333pt;}
.y116{bottom:175.700000pt;}
.y18d{bottom:178.532000pt;}
.ya7{bottom:178.596000pt;}
.y4b{bottom:179.941333pt;}
.y13b{bottom:182.591867pt;}
.y1f0{bottom:182.928000pt;}
.y133{bottom:183.189467pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y146{bottom:187.972667pt;}
.y1bd{bottom:190.061333pt;}
.ye8{bottom:190.692000pt;}
.y115{bottom:193.713333pt;}
.y13a{bottom:195.742667pt;}
.y132{bottom:196.340267pt;}
.y18c{bottom:196.545333pt;}
.ya6{bottom:196.608000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y4a{bottom:197.953333pt;}
.y1ef{bottom:200.144000pt;}
.y145{bottom:202.318667pt;}
.y7d{bottom:204.233333pt;}
.y1bc{bottom:207.277333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ye7{bottom:208.704000pt;}
.y131{bottom:209.491067pt;}
.y139{bottom:210.088667pt;}
.y114{bottom:211.725333pt;}
.y18b{bottom:214.557333pt;}
.ya5{bottom:214.621333pt;}
.y144{bottom:215.469467pt;}
.y49{bottom:215.966667pt;}
.y1ee{bottom:217.358667pt;}
.y130{bottom:222.641867pt;}
.y138{bottom:223.239467pt;}
.y7c{bottom:223.574667pt;}
.y1bb{bottom:224.492000pt;}
.ye6{bottom:226.717333pt;}
.y113{bottom:229.737333pt;}
.y143{bottom:229.815467pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y18a{bottom:232.570667pt;}
.ya4{bottom:232.633333pt;}
.y48{bottom:233.978667pt;}
.y1ed{bottom:234.574667pt;}
.y137{bottom:236.390267pt;}
.yef{bottom:237.456000pt;}
.y1ba{bottom:241.708000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y7b{bottom:242.914667pt;}
.y142{bottom:242.966267pt;}
.ye5{bottom:244.729333pt;}
.y112{bottom:247.750667pt;}
.y136{bottom:249.541067pt;}
.y189{bottom:250.582667pt;}
.ya3{bottom:250.646667pt;}
.y1ec{bottom:251.790667pt;}
.y47{bottom:251.992000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y141{bottom:257.312267pt;}
.y1b9{bottom:258.922667pt;}
.y135{bottom:262.691867pt;}
.ye4{bottom:262.741333pt;}
.y111{bottom:265.762667pt;}
.y188{bottom:268.594667pt;}
.ya2{bottom:268.658667pt;}
.y1eb{bottom:269.005333pt;}
.y46{bottom:270.004000pt;}
.y140{bottom:270.463067pt;}
.y7a{bottom:271.554667pt;}
.y1b{bottom:275.838667pt;}
.y134{bottom:275.842667pt;}
.y12{bottom:275.852001pt;}
.y1b8{bottom:276.138667pt;}
.ye3{bottom:280.754667pt;}
.y110{bottom:283.776000pt;}
.y1ea{bottom:286.221333pt;}
.y187{bottom:286.608000pt;}
.ya1{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y45{bottom:288.016000pt;}
.y79{bottom:289.566667pt;}
.yb4{bottom:290.892000pt;}
.y1b7{bottom:293.354667pt;}
.y12a{bottom:293.559467pt;}
.ye2{bottom:298.766667pt;}
.y12f{bottom:300.733067pt;}
.y10f{bottom:301.788000pt;}
.y1e9{bottom:303.437333pt;}
.y186{bottom:304.620000pt;}
.ya0{bottom:304.684000pt;}
.y44{bottom:306.029333pt;}
.y129{bottom:306.710267pt;}
.y78{bottom:307.580000pt;}
.yb3{bottom:308.892000pt;}
.y10{bottom:309.452000pt;}
.y1b6{bottom:310.569333pt;}
.y12e{bottom:313.883867pt;}
.ye1{bottom:316.780000pt;}
.y10e{bottom:319.800000pt;}
.y128{bottom:319.861067pt;}
.y1e8{bottom:320.652000pt;}
.y185{bottom:322.633333pt;}
.y9f{bottom:322.696000pt;}
.y43{bottom:324.041333pt;}
.y77{bottom:325.592000pt;}
.yb2{bottom:326.892000pt;}
.y12d{bottom:327.034667pt;}
.y1b5{bottom:327.785333pt;}
.y122{bottom:328.229867pt;}
.y127{bottom:334.207067pt;}
.ye0{bottom:334.792000pt;}
.y10d{bottom:337.813333pt;}
.y1e7{bottom:337.868000pt;}
.y184{bottom:340.645333pt;}
.y9e{bottom:340.709333pt;}
.y121{bottom:341.380667pt;}
.y42{bottom:342.054667pt;}
.y76{bottom:343.604000pt;}
.yf{bottom:343.809333pt;}
.y1b4{bottom:345.000000pt;}
.y126{bottom:347.357867pt;}
.ydf{bottom:352.804000pt;}
.y120{bottom:354.531467pt;}
.y1e6{bottom:355.082667pt;}
.y10c{bottom:355.825333pt;}
.y183{bottom:358.657333pt;}
.y9d{bottom:358.721333pt;}
.yb1{bottom:360.172000pt;}
.y125{bottom:360.508667pt;}
.y75{bottom:361.617333pt;}
.y1b3{bottom:362.216000pt;}
.ye{bottom:362.706666pt;}
.y12c{bottom:367.682267pt;}
.y41{bottom:368.037333pt;}
.yde{bottom:370.817333pt;}
.y1e5{bottom:372.298667pt;}
.y10b{bottom:373.838667pt;}
.y124{bottom:374.854667pt;}
.y9c{bottom:376.733333pt;}
.y1b2{bottom:379.432000pt;}
.y74{bottom:379.629333pt;}
.y12b{bottom:380.831867pt;}
.y182{bottom:384.640000pt;}
.y123{bottom:388.005467pt;}
.ydc{bottom:388.829333pt;}
.y1e4{bottom:389.514667pt;}
.y10a{bottom:391.850667pt;}
.ydd{bottom:393.652000pt;}
.y9b{bottom:394.746667pt;}
.y1b1{bottom:396.646667pt;}
.y73{bottom:397.642667pt;}
.y1e3{bottom:406.729333pt;}
.ydb{bottom:406.842667pt;}
.y11f{bottom:407.204267pt;}
.y109{bottom:409.862667pt;}
.y9a{bottom:412.758667pt;}
.y1b0{bottom:413.862667pt;}
.y181{bottom:415.590667pt;}
.y72{bottom:415.654667pt;}
.y1e2{bottom:423.945333pt;}
.yda{bottom:424.854667pt;}
.y108{bottom:427.876000pt;}
.y99{bottom:430.772000pt;}
.y1af{bottom:431.077333pt;}
.y180{bottom:433.604000pt;}
.y71{bottom:433.666667pt;}
.y11e{bottom:433.808000pt;}
.y40{bottom:435.158667pt;}
.y1e1{bottom:441.160000pt;}
.yd9{bottom:442.866667pt;}
.y107{bottom:445.888000pt;}
.yd{bottom:446.990669pt;}
.y1ae{bottom:448.293333pt;}
.y98{bottom:448.784000pt;}
.y17f{bottom:451.616000pt;}
.y70{bottom:451.680000pt;}
.y1e0{bottom:458.376000pt;}
.yd8{bottom:460.880000pt;}
.yc{bottom:462.990669pt;}
.y106{bottom:463.901333pt;}
.y1ad{bottom:465.509333pt;}
.y97{bottom:466.796000pt;}
.y3f{bottom:469.110667pt;}
.y17e{bottom:469.629333pt;}
.y6f{bottom:469.692000pt;}
.yee{bottom:471.618667pt;}
.y1df{bottom:475.592000pt;}
.yd7{bottom:478.892000pt;}
.yb{bottom:478.990666pt;}
.y105{bottom:481.913333pt;}
.y1ac{bottom:482.724000pt;}
.y96{bottom:484.809333pt;}
.y3e{bottom:487.124000pt;}
.y17d{bottom:487.641333pt;}
.y6e{bottom:487.704000pt;}
.y1de{bottom:492.806667pt;}
.ya{bottom:494.990666pt;}
.y104{bottom:499.925333pt;}
.y1ab{bottom:499.940000pt;}
.y95{bottom:502.821333pt;}
.yd6{bottom:504.874667pt;}
.y17c{bottom:505.653333pt;}
.y6d{bottom:505.717333pt;}
.y11c{bottom:507.644000pt;}
.y1dd{bottom:510.022667pt;}
.y1aa{bottom:517.154667pt;}
.y103{bottom:517.938667pt;}
.y94{bottom:520.834667pt;}
.y3d{bottom:521.076000pt;}
.y17b{bottom:523.666667pt;}
.y6c{bottom:523.729333pt;}
.y1dc{bottom:527.237333pt;}
.yd5{bottom:532.984000pt;}
.y1a9{bottom:534.370667pt;}
.y102{bottom:535.950667pt;}
.y93{bottom:538.846667pt;}
.y3c{bottom:539.089333pt;}
.y17a{bottom:541.678667pt;}
.y6b{bottom:541.742667pt;}
.y1db{bottom:544.453333pt;}
.y1a8{bottom:551.586667pt;}
.yb0{bottom:552.921333pt;}
.y101{bottom:553.964000pt;}
.y92{bottom:556.858667pt;}
.y3b{bottom:557.101333pt;}
.y179{bottom:559.692000pt;}
.y6a{bottom:559.754667pt;}
.y1da{bottom:561.669333pt;}
.y1a7{bottom:568.801333pt;}
.y100{bottom:571.976000pt;}
.y9{bottom:573.786667pt;}
.y91{bottom:574.872000pt;}
.y3a{bottom:575.113333pt;}
.y178{bottom:577.704000pt;}
.y69{bottom:577.766667pt;}
.y1d9{bottom:578.884000pt;}
.y1a6{bottom:586.017333pt;}
.yff{bottom:589.988000pt;}
.y8{bottom:592.685334pt;}
.y90{bottom:592.884000pt;}
.y39{bottom:593.126667pt;}
.y177{bottom:595.716000pt;}
.y68{bottom:595.780000pt;}
.y1d8{bottom:596.100000pt;}
.y1a5{bottom:603.232000pt;}
.yfe{bottom:608.001333pt;}
.y8f{bottom:610.896000pt;}
.y38{bottom:611.138667pt;}
.y1d7{bottom:613.314667pt;}
.y176{bottom:613.729333pt;}
.y67{bottom:613.792000pt;}
.y1a4{bottom:620.448000pt;}
.yfd{bottom:626.013333pt;}
.y8e{bottom:628.909333pt;}
.y37{bottom:629.152000pt;}
.y1d6{bottom:630.530667pt;}
.y175{bottom:631.741333pt;}
.y66{bottom:631.805333pt;}
.y1a3{bottom:637.664000pt;}
.yfc{bottom:644.026667pt;}
.y7{bottom:645.598667pt;}
.y8d{bottom:646.921333pt;}
.y36{bottom:647.164000pt;}
.y1d5{bottom:647.746667pt;}
.y174{bottom:649.754667pt;}
.y65{bottom:649.817333pt;}
.y1a2{bottom:654.878667pt;}
.yfb{bottom:662.038667pt;}
.y8c{bottom:664.934667pt;}
.y1d4{bottom:664.961333pt;}
.y35{bottom:665.176000pt;}
.y64{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y1a1{bottom:672.094667pt;}
.yfa{bottom:680.050667pt;}
.y1d3{bottom:682.177333pt;}
.y8b{bottom:682.946667pt;}
.y34{bottom:683.189333pt;}
.y63{bottom:685.842667pt;}
.y173{bottom:688.090667pt;}
.y1a0{bottom:689.309333pt;}
.y11b{bottom:690.917333pt;}
.y1d2{bottom:699.392000pt;}
.y172{bottom:700.709333pt;}
.y8a{bottom:700.958667pt;}
.y33{bottom:701.201333pt;}
.y62{bottom:703.854667pt;}
.yf9{bottom:706.033333pt;}
.y19f{bottom:714.496000pt;}
.y1d1{bottom:716.608000pt;}
.y171{bottom:718.030133pt;}
.y89{bottom:718.972000pt;}
.y32{bottom:719.214667pt;}
.y61{bottom:721.868000pt;}
.yed{bottom:723.793333pt;}
.y170{bottom:731.180933pt;}
.y15f{bottom:731.778533pt;}
.y1d0{bottom:733.824000pt;}
.y88{bottom:736.984000pt;}
.y60{bottom:739.880000pt;}
.y16f{bottom:744.331733pt;}
.y15e{bottom:744.929333pt;}
.y19e{bottom:749.564000pt;}
.y2f{bottom:750.709382pt;}
.y1cf{bottom:751.038667pt;}
.y2e{bottom:751.390667pt;}
.y87{bottom:754.997333pt;}
.y5f{bottom:757.892000pt;}
.y15d{bottom:758.080133pt;}
.y16e{bottom:758.677733pt;}
.y19d{bottom:763.073333pt;}
.y1ce{bottom:768.254667pt;}
.y16d{bottom:771.828533pt;}
.y15c{bottom:772.426133pt;}
.y86{bottom:773.009333pt;}
.y5e{bottom:775.905333pt;}
.y19c{bottom:776.582667pt;}
.y2{bottom:781.661334pt;}
.y1cd{bottom:785.469333pt;}
.y15b{bottom:785.576933pt;}
.y2d{bottom:786.062667pt;}
.y16c{bottom:786.174533pt;}
.y19b{bottom:790.092000pt;}
.y85{bottom:791.021333pt;}
.y5d{bottom:793.917333pt;}
.y15a{bottom:798.727733pt;}
.yec{bottom:798.992000pt;}
.y16b{bottom:799.325333pt;}
.y2c{bottom:802.202667pt;}
.y1cc{bottom:802.685333pt;}
.y84{bottom:809.034667pt;}
.y19a{bottom:811.572000pt;}
.y159{bottom:811.877333pt;}
.y5c{bottom:811.930667pt;}
.y16a{bottom:813.671333pt;}
.y1cb{bottom:819.901333pt;}
.y14f{bottom:820.246133pt;}
.y2b{bottom:822.681333pt;}
.y199{bottom:825.081333pt;}
.y158{bottom:826.224533pt;}
.y169{bottom:826.822133pt;}
.yaf{bottom:827.046667pt;}
.y5b{bottom:829.942667pt;}
.y14e{bottom:833.396933pt;}
.y83{bottom:835.017333pt;}
.y1ca{bottom:837.116000pt;}
.y2a{bottom:838.821333pt;}
.y157{bottom:839.375333pt;}
.y168{bottom:839.972933pt;}
.yae{bottom:845.060000pt;}
.y14d{bottom:846.547733pt;}
.y198{bottom:846.560000pt;}
.y5a{bottom:847.954667pt;}
.y167{bottom:853.123733pt;}
.y156{bottom:853.721333pt;}
.y1c9{bottom:854.332000pt;}
.y29{bottom:858.590667pt;}
.y1{bottom:859.312000pt;}
.y196{bottom:860.069333pt;}
.y197{bottom:860.070667pt;}
.y1f6{bottom:860.722667pt;}
.yad{bottom:863.072000pt;}
.y59{bottom:865.968000pt;}
.y155{bottom:866.872133pt;}
.y166{bottom:867.469733pt;}
.y1c8{bottom:871.546667pt;}
.y1f5{bottom:877.938667pt;}
.y154{bottom:880.022933pt;}
.y165{bottom:880.620533pt;}
.yf8{bottom:881.084000pt;}
.y195{bottom:881.549333pt;}
.y58{bottom:883.980000pt;}
.y1c7{bottom:888.762667pt;}
.yac{bottom:889.054667pt;}
.y164{bottom:893.771333pt;}
.y153{bottom:894.368933pt;}
.y194{bottom:895.058667pt;}
.y1f4{bottom:895.153333pt;}
.y28{bottom:898.178667pt;}
.yf7{bottom:899.097333pt;}
.y57{bottom:901.993333pt;}
.y1c6{bottom:905.978667pt;}
.y152{bottom:907.519733pt;}
.y163{bottom:908.117333pt;}
.y193{bottom:908.568000pt;}
.y192{bottom:917.109333pt;}
.y56{bottom:920.005333pt;}
.y151{bottom:920.669333pt;}
.y162{bottom:921.268133pt;}
.y1c5{bottom:923.193333pt;}
.yf6{bottom:925.080000pt;}
.y27{bottom:925.198667pt;}
.y150{bottom:933.820133pt;}
.y161{bottom:934.418933pt;}
.y55{bottom:938.017333pt;}
.y1c4{bottom:940.409333pt;}
.y191{bottom:943.092000pt;}
.y160{bottom:947.568533pt;}
.y26{bottom:952.217333pt;}
.y54{bottom:956.030667pt;}
.y1c3{bottom:957.624000pt;}
.y14c{bottom:966.767333pt;}
.y53{bottom:974.042667pt;}
.y1c2{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y52{bottom:992.056000pt;}
.y14b{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y51{bottom:1038.548000pt;}
.h25{height:20.056044pt;}
.h12{height:22.673858pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h14{height:29.433775pt;}
.h21{height:30.063343pt;}
.h13{height:30.399505pt;}
.h23{height:30.987878pt;}
.h1f{height:31.395937pt;}
.h28{height:33.713664pt;}
.h27{height:34.144051pt;}
.h26{height:34.430976pt;}
.h10{height:35.073565pt;}
.h18{height:37.937581pt;}
.h20{height:38.080100pt;}
.h15{height:38.256384pt;}
.hd{height:38.947124pt;}
.h1d{height:39.010156pt;}
.h1a{height:39.754531pt;}
.h17{height:40.084290pt;}
.h24{height:40.585513pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1c{height:44.835938pt;}
.h11{height:45.095014pt;}
.hb{height:45.271688pt;}
.hf{height:48.365611pt;}
.h2{height:49.024000pt;}
.h1b{height:49.917344pt;}
.h16{height:50.105236pt;}
.h22{height:57.365434pt;}
.h1e{height:65.781915pt;}
.he{height:68.861952pt;}
.h5{height:69.450667pt;}
.hc{height:77.447343pt;}
.h4{height:105.826671pt;}
.h19{height:274.013333pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.330780pt;}
.w6{width:361.726667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1f{left:-111.041333pt;}
.x22{left:-82.694667pt;}
.x0{left:0.000000pt;}
.xb{left:26.021437pt;}
.x6{left:51.605861pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x21{left:95.545333pt;}
.x5{left:102.046667pt;}
.xf{left:105.944000pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x15{left:116.526667pt;}
.x2a{left:120.945333pt;}
.x3a{left:128.702667pt;}
.x8{left:129.929333pt;}
.x3b{left:132.133333pt;}
.x2d{left:138.702933pt;}
.x33{left:156.069333pt;}
.xc{left:167.956000pt;}
.x17{left:173.420000pt;}
.x4{left:180.874667pt;}
.x1c{left:197.010667pt;}
.x2b{left:203.425333pt;}
.x36{left:211.650667pt;}
.x10{left:212.649333pt;}
.x1e{left:215.988000pt;}
.x37{left:218.618667pt;}
.x3c{left:224.076000pt;}
.x3e{left:225.868000pt;}
.x35{left:227.982667pt;}
.x2e{left:229.184133pt;}
.x32{left:231.445333pt;}
.x3d{left:237.545333pt;}
.x2f{left:253.520133pt;}
.x34{left:262.774667pt;}
.x2c{left:270.461333pt;}
.x16{left:279.097333pt;}
.x14{left:285.212000pt;}
.x23{left:308.401333pt;}
.x31{left:360.190667pt;}
.x20{left:365.838667pt;}
.x38{left:371.250667pt;}
.x39{left:376.977333pt;}
.x25{left:387.636000pt;}
.x26{left:393.348000pt;}
.x3{left:404.408000pt;}
.x30{left:431.986533pt;}
.x1a{left:452.390667pt;}
.x1b{left:456.204000pt;}
.x24{left:457.296000pt;}
.x1d{left:488.356000pt;}
.x13{left:506.888000pt;}
.x18{left:555.904000pt;}
.xd{left:579.598667pt;}
.x11{left:593.184000pt;}
.x27{left:618.272000pt;}
.xa{left:623.413317pt;}
.x28{left:638.165333pt;}
.x29{left:643.877333pt;}
.x19{left:654.850667pt;}
.xe{left:686.304000pt;}
.x12{left:690.006667pt;}
}




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