
    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_ddf811ca345ee65a9924c942.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9c07302e37efbfa6b88af177.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_d6eebefa564e1b35b8a04e9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ff34a75420436e7752f955c0.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_c93224f2d013058f07cd3f98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3fb7abe5d24a29eedc519cd5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_38f382d316a56d12e45349eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bef000a159cb8d722098b593.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.670000;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_5112a9a905c1dece1a6fa530.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4c36ca83fe52b091e94cff09.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.012695;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_1ba66ce465f4f5a310dbc407.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.221680;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_535d8b924b683dddb3444825.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.221680;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_e0177f98c4473bd5c6d18d2c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.040000;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_5112a9a905c1dece1a6fa530.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4c36ca83fe52b091e94cff09.woff2')format("woff");}.fff{font-family:fff;line-height:1.012695;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_02200d3081c2aeb0084a205b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.221680;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_535d8b924b683dddb3444825.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.221680;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_5112a9a905c1dece1a6fa530.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_90e615ab2367530277b3103d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.012695;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_69a7a6b43b174354f22c56a2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.221680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_282aa2a56b946c7c3f487348.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.221680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6d76f3b18b1d106b98df5bf3.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_6001bbced7856cc6cbee959f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.012695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b70c972bef4814d7b1718b92.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.221680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_028c7241acbf7ac96d9f8180.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.221680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c7d198908b79e8f3bb4a1a09.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.md{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);}
.m22{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);}
.m26{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);}
.m7{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);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.me{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);}
.m1f{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);}
.m1b{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);}
.m20{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);}
.m9{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);}
.m18{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);}
.m15{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);}
.m1e{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);}
.m13{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);}
.ma{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);}
.m25{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);}
.m1{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);}
.m1c{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);}
.m3{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);}
.m4{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);}
.m19{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);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m1d{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);}
.m24{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);}
.m12{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);}
.mc{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);}
.m8{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);}
.m17{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);}
.mb{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);}
.m5{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);}
.m2{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);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.912000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:31.308000px;}
.lse{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.090000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000094px;}
.ls1d{letter-spacing:0.000208px;}
.ls1a{letter-spacing:0.001133px;}
.ls18{letter-spacing:0.001303px;}
.ls14{letter-spacing:0.002293px;}
.ls13{letter-spacing:0.003701px;}
.lsd{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.026640px;}
.lsc{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.139800px;}
.ls9{letter-spacing:0.180000px;}
.ls1{letter-spacing:2.989200px;}
.lsf{letter-spacing:6.210000px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls1c{letter-spacing:13.301879px;}
.ls15{letter-spacing:13.448400px;}
.ls19{letter-spacing:13.454400px;}
.ls17{letter-spacing:13.475023px;}
.ls1b{letter-spacing:13.493457px;}
.ls7{letter-spacing:14.645022px;}
.ls16{letter-spacing:16.682400px;}
.ls2{letter-spacing:17.935200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.ws85{word-spacing:-60.120000px;}
.ws76{word-spacing:-54.000000px;}
.ws7e{word-spacing:-20.970000px;}
.ws84{word-spacing:-15.169800px;}
.ws86{word-spacing:-15.056640px;}
.ws83{word-spacing:-15.030000px;}
.ws11{word-spacing:-14.943900px;}
.ws80{word-spacing:-13.518000px;}
.ws7f{word-spacing:-13.500000px;}
.ws6d{word-spacing:-13.449600px;}
.ws74{word-spacing:-12.150000px;}
.ws75{word-spacing:-11.970000px;}
.ws38{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws95{word-spacing:-3.706087px;}
.ws3a{word-spacing:-3.108331px;}
.ws55{word-spacing:-2.570351px;}
.ws59{word-spacing:-2.510575px;}
.ws47{word-spacing:-2.450800px;}
.ws5c{word-spacing:-2.391024px;}
.ws96{word-spacing:-2.211697px;}
.wsa7{word-spacing:-2.044339px;}
.wsaa{word-spacing:-1.990541px;}
.wsa8{word-spacing:-1.829146px;}
.wsab{word-spacing:-1.775347px;}
.ws82{word-spacing:-1.613952px;}
.ws8e{word-spacing:-1.494390px;}
.ws8b{word-spacing:-1.434614px;}
.ws56{word-spacing:-1.315063px;}
.ws6{word-spacing:-1.171598px;}
.ws54{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws5b{word-spacing:-0.956410px;}
.wsa6{word-spacing:-0.914573px;}
.ws53{word-spacing:-0.896634px;}
.ws4f{word-spacing:-0.836858px;}
.ws49{word-spacing:-0.777083px;}
.ws9c{word-spacing:-0.717307px;}
.ws57{word-spacing:-0.358654px;}
.ws1e{word-spacing:-0.322790px;}
.ws30{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.268992px;}
.ws2f{word-spacing:-0.239102px;}
.ws7a{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.wscf{word-spacing:-0.161395px;}
.ws48{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws81{word-spacing:-0.053798px;}
.ws39{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.wsae{word-spacing:-0.005107px;}
.wsc8{word-spacing:-0.004022px;}
.ws14{word-spacing:-0.001957px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.wsb6{word-spacing:0.107597px;}
.ws40{word-spacing:0.119551px;}
.ws1f{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws20{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.ws7d{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.wsb2{word-spacing:0.322790px;}
.ws3d{word-spacing:0.358654px;}
.wsa5{word-spacing:0.376589px;}
.wsb5{word-spacing:0.430387px;}
.wsa0{word-spacing:0.657532px;}
.ws21{word-spacing:0.753178px;}
.ws4c{word-spacing:0.777083px;}
.wsb0{word-spacing:0.860774px;}
.wsbf{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws22{word-spacing:1.022170px;}
.ws61{word-spacing:1.075961px;}
.wsa9{word-spacing:1.129766px;}
.ws9b{word-spacing:1.135736px;}
.ws35{word-spacing:1.255288px;}
.ws31{word-spacing:1.374839px;}
.wsa1{word-spacing:1.494390px;}
.wsb9{word-spacing:1.506355px;}
.ws5d{word-spacing:1.673717px;}
.ws44{word-spacing:1.733492px;}
.wsa3{word-spacing:1.775347px;}
.ws7c{word-spacing:1.829146px;}
.ws72{word-spacing:1.853044px;}
.wscb{word-spacing:1.882944px;}
.wscc{word-spacing:1.936742px;}
.ws1c{word-spacing:2.044339px;}
.ws34{word-spacing:2.092146px;}
.wsa2{word-spacing:2.098138px;}
.ws7b{word-spacing:2.151936px;}
.wsbe{word-spacing:2.205734px;}
.wsca{word-spacing:2.313331px;}
.ws51{word-spacing:2.391024px;}
.ws0{word-spacing:2.511541px;}
.ws52{word-spacing:2.570351px;}
.ws91{word-spacing:2.630126px;}
.ws8f{word-spacing:2.689902px;}
.wscd{word-spacing:2.689920px;}
.wsbc{word-spacing:2.797517px;}
.ws79{word-spacing:2.851315px;}
.ws15{word-spacing:2.869236px;}
.ws2c{word-spacing:3.048556px;}
.ws1a{word-spacing:3.066509px;}
.ws98{word-spacing:3.168107px;}
.ws25{word-spacing:3.219667px;}
.ws16{word-spacing:3.222857px;}
.wsc0{word-spacing:3.224256px;}
.ws9d{word-spacing:3.227882px;}
.wsd1{word-spacing:3.227904px;}
.ws5a{word-spacing:3.287658px;}
.ws89{word-spacing:3.347434px;}
.ws27{word-spacing:3.586536px;}
.ws4e{word-spacing:3.646312px;}
.ws73{word-spacing:3.765863px;}
.ws60{word-spacing:4.004965px;}
.ws8c{word-spacing:4.064741px;}
.ws50{word-spacing:4.124516px;}
.ws42{word-spacing:4.184292px;}
.ws29{word-spacing:4.244068px;}
.ws28{word-spacing:4.602721px;}
.ws9e{word-spacing:4.662497px;}
.ws88{word-spacing:4.680461px;}
.wse{word-spacing:4.770079px;}
.ws43{word-spacing:4.782048px;}
.wsf{word-spacing:4.853765px;}
.ws4b{word-spacing:4.961375px;}
.ws87{word-spacing:5.057050px;}
.ws8d{word-spacing:5.140702px;}
.ws58{word-spacing:5.200477px;}
.wsac{word-spacing:5.218445px;}
.ws33{word-spacing:5.260253px;}
.ws32{word-spacing:5.320028px;}
.ws5e{word-spacing:5.379804px;}
.wsa4{word-spacing:5.595034px;}
.ws41{word-spacing:5.618906px;}
.ws3c{word-spacing:5.858009px;}
.ws2b{word-spacing:5.917784px;}
.ws9f{word-spacing:6.097111px;}
.ws1d{word-spacing:6.133018px;}
.ws97{word-spacing:6.276438px;}
.ws8a{word-spacing:6.515540px;}
.ws45{word-spacing:6.575316px;}
.ws99{word-spacing:6.874194px;}
.ws78{word-spacing:7.262784px;}
.ws4a{word-spacing:7.531726px;}
.ws18{word-spacing:7.531776px;}
.wsc5{word-spacing:7.585574px;}
.wsc3{word-spacing:7.639373px;}
.ws77{word-spacing:7.693171px;}
.wsc{word-spacing:7.782761px;}
.ws3e{word-spacing:8.129482px;}
.ws46{word-spacing:8.249033px;}
.wsd2{word-spacing:10.104567px;}
.wsd4{word-spacing:10.114099px;}
.ws2{word-spacing:10.418857px;}
.ws3{word-spacing:10.419305px;}
.wsb4{word-spacing:10.705882px;}
.ws37{word-spacing:11.901520px;}
.wsa{word-spacing:12.176255px;}
.wsd0{word-spacing:13.234406px;}
.ws17{word-spacing:13.371930px;}
.wsb8{word-spacing:13.382122px;}
.wsb7{word-spacing:13.387334px;}
.wsc7{word-spacing:13.388122px;}
.wsce{word-spacing:13.389274px;}
.wsc1{word-spacing:13.395734px;}
.ws26{word-spacing:13.395802px;}
.wsbd{word-spacing:13.449600px;}
.wsb3{word-spacing:13.664794px;}
.ws9a{word-spacing:14.704798px;}
.ws93{word-spacing:14.718303px;}
.ws94{word-spacing:14.740039px;}
.ws2e{word-spacing:14.884124px;}
.ws92{word-spacing:14.943900px;}
.ws4d{word-spacing:15.626260px;}
.wsb{word-spacing:16.109478px;}
.wsbb{word-spacing:16.611888px;}
.wsc2{word-spacing:16.614653px;}
.wsad{word-spacing:16.614806px;}
.wsd6{word-spacing:16.618474px;}
.wsd7{word-spacing:16.619914px;}
.wsb1{word-spacing:16.620432px;}
.wsc9{word-spacing:16.622112px;}
.wsba{word-spacing:16.623706px;}
.wsaf{word-spacing:16.677504px;}
.wsd5{word-spacing:16.946496px;}
.ws90{word-spacing:17.574026px;}
.ws5f{word-spacing:18.470660px;}
.ws19{word-spacing:20.927578px;}
.wsc4{word-spacing:21.035174px;}
.wsd3{word-spacing:23.509901px;}
.wsd{word-spacing:26.109907px;}
.ws10{word-spacing:26.774851px;}
.ws9{word-spacing:26.840252px;}
.wsc6{word-spacing:48.418560px;}
.ws62{word-spacing:409.237747px;}
.ws6e{word-spacing:445.934938px;}
.ws68{word-spacing:471.758170px;}
.ws69{word-spacing:497.904192px;}
.ws6f{word-spacing:510.385421px;}
.ws70{word-spacing:533.733926px;}
.ws64{word-spacing:546.376550px;}
.ws66{word-spacing:558.588787px;}
.ws6a{word-spacing:559.072973px;}
.ws63{word-spacing:563.592038px;}
.ws67{word-spacing:565.259789px;}
.ws6c{word-spacing:583.120858px;}
.ws71{word-spacing:591.513408px;}
.ws6b{word-spacing:594.310925px;}
.ws65{word-spacing:645.365606px;}
._2a{margin-left:-22.949240px;}
._29{margin-left:-20.216221px;}
._7{margin-left:-7.711052px;}
._e{margin-left:-6.563419px;}
._0{margin-left:-5.397721px;}
._8{margin-left:-3.538724px;}
._3{margin-left:-2.301354px;}
._9{margin-left:-1.141729px;}
._1d{width:1.160030px;}
._2{width:2.301354px;}
._5{width:3.674096px;}
._1e{width:5.130000px;}
._20{width:6.768000px;}
._21{width:8.513640px;}
._23{width:10.197726px;}
._1{width:12.971268px;}
._27{width:14.423882px;}
._1f{width:15.547738px;}
._d{width:16.677504px;}
._10{width:18.560448px;}
._f{width:20.604787px;}
._14{width:21.889834px;}
._b{width:22.918118px;}
._18{width:24.513989px;}
._c{width:26.319380px;}
._22{width:29.050942px;}
._4{width:30.587087px;}
._12{width:31.740844px;}
._11{width:32.936356px;}
._15{width:34.908950px;}
._13{width:36.714204px;}
._a{width:39.649421px;}
._25{width:49.536364px;}
._6{width:54.429634px;}
._26{width:61.868160px;}
._24{width:88.767360px;}
._1a{width:339.331523px;}
._19{width:497.892222px;}
._1b{width:522.543859px;}
._16{width:709.596198px;}
._28{width:2474.693929px;}
._17{width:2498.603929px;}
._1c{width:2528.618040px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(91,41,111);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fsc{font-size:83.880000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y10b{bottom:-700.651500px;}
.yd3{bottom:-655.479000px;}
.y12a{bottom:-612.991500px;}
.y129{bottom:-593.731500px;}
.y128{bottom:-574.561500px;}
.ydd{bottom:-556.479000px;}
.y127{bottom:-555.301500px;}
.ydc{bottom:-539.109000px;}
.y126{bottom:-536.131500px;}
.ydb{bottom:-521.829000px;}
.y125{bottom:-516.841500px;}
.yda{bottom:-504.459000px;}
.y124{bottom:-497.581500px;}
.yd9{bottom:-482.049000px;}
.y123{bottom:-478.411500px;}
.y122{bottom:-459.151500px;}
.y121{bottom:-439.981500px;}
.y120{bottom:-420.721500px;}
.y11f{bottom:-401.461500px;}
.y11e{bottom:-382.291500px;}
.y11d{bottom:-363.031500px;}
.y11c{bottom:-343.861500px;}
.yf7{bottom:-339.451500px;}
.y11b{bottom:-324.601500px;}
.y11a{bottom:-305.341500px;}
.y119{bottom:-286.171500px;}
.y118{bottom:-266.911500px;}
.y117{bottom:-247.651500px;}
.y116{bottom:-228.481500px;}
.y115{bottom:-209.221500px;}
.y114{bottom:-190.051500px;}
.ye5{bottom:-185.310000px;}
.y113{bottom:-170.791500px;}
.y112{bottom:-151.531500px;}
.y111{bottom:-127.861500px;}
.y102{bottom:-109.831500px;}
.y101{bottom:-92.461500px;}
.y110{bottom:-91.021500px;}
.yef{bottom:-86.310000px;}
.yd8{bottom:-84.039000px;}
.y100{bottom:-75.091500px;}
.y10f{bottom:-73.651500px;}
.yee{bottom:-68.940000px;}
.yd7{bottom:-66.669000px;}
.yff{bottom:-57.811500px;}
.y10e{bottom:-56.281500px;}
.yed{bottom:-51.660000px;}
.yd6{bottom:-49.359000px;}
.yfe{bottom:-40.531500px;}
.y10d{bottom:-39.001500px;}
.yec{bottom:-34.290000px;}
.yd5{bottom:-31.989000px;}
.yfd{bottom:-23.251500px;}
.y10c{bottom:-16.591500px;}
.yeb{bottom:-11.880000px;}
.yd4{bottom:-9.579000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.658500px;}
.yf9{bottom:4.500000px;}
.yfb{bottom:10.800000px;}
.y19{bottom:12.925707px;}
.y47{bottom:31.890000px;}
.y14b{bottom:93.984000px;}
.y17{bottom:104.646000px;}
.y7d{bottom:105.847500px;}
.y46{bottom:112.242000px;}
.y14a{bottom:112.813500px;}
.y187{bottom:120.732000px;}
.y16{bottom:122.535000px;}
.y7c{bottom:124.677000px;}
.y45{bottom:131.071500px;}
.y149{bottom:131.643000px;}
.y186{bottom:137.992500px;}
.y15{bottom:140.422500px;}
.y7b{bottom:143.506500px;}
.y151{bottom:144.852000px;}
.y44{bottom:149.901000px;}
.y148{bottom:150.472500px;}
.yf3{bottom:154.458000px;}
.y185{bottom:155.253000px;}
.y14{bottom:158.310000px;}
.y7a{bottom:162.336000px;}
.y150{bottom:163.681500px;}
.y43{bottom:168.730500px;}
.y147{bottom:169.302000px;}
.y184{bottom:172.513500px;}
.yf2{bottom:173.689500px;}
.y13{bottom:176.199000px;}
.y79{bottom:181.165500px;}
.y14f{bottom:182.511000px;}
.y42{bottom:187.560000px;}
.y146{bottom:188.131500px;}
.y183{bottom:189.774000px;}
.yf1{bottom:192.922500px;}
.y12{bottom:194.086500px;}
.y78{bottom:199.995000px;}
.y14e{bottom:201.340500px;}
.y41{bottom:206.389500px;}
.y145{bottom:206.961000px;}
.y182{bottom:207.034500px;}
.y11{bottom:211.974000px;}
.yf0{bottom:212.155500px;}
.ya7{bottom:218.824500px;}
.y77{bottom:223.308000px;}
.y181{bottom:224.295000px;}
.y14d{bottom:224.652000px;}
.y40{bottom:225.219000px;}
.y144{bottom:225.789000px;}
.y10{bottom:229.863000px;}
.ye2{bottom:234.585000px;}
.ya6{bottom:237.654000px;}
.y180{bottom:241.554000px;}
.y76{bottom:243.481500px;}
.y3f{bottom:244.048500px;}
.y143{bottom:244.618500px;}
.ya5{bottom:256.483500px;}
.y14c{bottom:258.276000px;}
.y17f{bottom:258.814500px;}
.y3e{bottom:262.878000px;}
.y142{bottom:263.448000px;}
.ya4{bottom:275.313000px;}
.y17e{bottom:276.075000px;}
.y75{bottom:277.105500px;}
.y107{bottom:278.928000px;}
.y3d{bottom:281.707500px;}
.y141{bottom:282.277500px;}
.y17d{bottom:293.335500px;}
.ya3{bottom:294.142500px;}
.y74{bottom:295.935000px;}
.y106{bottom:298.161000px;}
.yf{bottom:300.154500px;}
.y3c{bottom:300.537000px;}
.y140{bottom:301.107000px;}
.y17c{bottom:310.596000px;}
.ya2{bottom:312.972000px;}
.y73{bottom:314.764500px;}
.y105{bottom:317.394000px;}
.ye{bottom:318.043500px;}
.y3b{bottom:319.366500px;}
.ycf{bottom:319.603500px;}
.y13f{bottom:319.936500px;}
.y17b{bottom:327.856500px;}
.ya1{bottom:331.801500px;}
.y72{bottom:333.594000px;}
.yd{bottom:335.931000px;}
.y104{bottom:336.627000px;}
.y3a{bottom:338.196000px;}
.yce{bottom:338.433000px;}
.y13e{bottom:338.766000px;}
.y17a{bottom:345.117000px;}
.ya0{bottom:350.631000px;}
.y71{bottom:352.423500px;}
.yc{bottom:353.818500px;}
.y103{bottom:355.860000px;}
.y39{bottom:357.025500px;}
.ycd{bottom:357.262500px;}
.y13d{bottom:357.595500px;}
.y179{bottom:362.377500px;}
.y9f{bottom:369.460500px;}
.y70{bottom:371.253000px;}
.y38{bottom:375.855000px;}
.ycc{bottom:376.092000px;}
.y13c{bottom:376.425000px;}
.yf4{bottom:378.289500px;}
.y178{bottom:379.638000px;}
.yb{bottom:380.673000px;}
.yea{bottom:386.130000px;}
.y6f{bottom:390.082500px;}
.y9e{bottom:392.773500px;}
.y37{bottom:394.684500px;}
.ycb{bottom:394.921500px;}
.y13b{bottom:395.254500px;}
.y177{bottom:396.897000px;}
.ya{bottom:398.562000px;}
.ye9{bottom:403.500000px;}
.y6e{bottom:408.912000px;}
.y36{bottom:413.514000px;}
.yca{bottom:413.751000px;}
.y13a{bottom:414.084000px;}
.y176{bottom:414.157500px;}
.y9{bottom:416.449500px;}
.ye8{bottom:420.810000px;}
.y9d{bottom:426.397500px;}
.y6d{bottom:427.741500px;}
.y175{bottom:431.418000px;}
.y35{bottom:432.343500px;}
.yc9{bottom:432.580500px;}
.y139{bottom:432.913500px;}
.y10a{bottom:433.528500px;}
.ye7{bottom:438.180000px;}
.y109{bottom:443.158500px;}
.y8{bottom:444.798000px;}
.y9c{bottom:445.227000px;}
.y6c{bottom:446.571000px;}
.y174{bottom:448.678500px;}
.yc8{bottom:451.410000px;}
.y138{bottom:451.743000px;}
.y34{bottom:455.655000px;}
.ye6{bottom:460.590000px;}
.y9b{bottom:464.056500px;}
.y6b{bottom:465.400500px;}
.y173{bottom:465.939000px;}
.yc7{bottom:470.239500px;}
.y137{bottom:470.572500px;}
.y7{bottom:471.652500px;}
.yd2{bottom:478.701000px;}
.y9a{bottom:482.886000px;}
.y172{bottom:483.199500px;}
.y6a{bottom:484.230000px;}
.yd1{bottom:488.331000px;}
.y136{bottom:489.402000px;}
.y6{bottom:489.540000px;}
.y171{bottom:500.460000px;}
.y99{bottom:501.714000px;}
.y69{bottom:503.059500px;}
.y5{bottom:507.429000px;}
.y135{bottom:508.231500px;}
.yc6{bottom:511.218000px;}
.y170{bottom:517.720500px;}
.y98{bottom:520.543500px;}
.y68{bottom:521.889000px;}
.y4{bottom:525.316500px;}
.y134{bottom:527.061000px;}
.yc5{bottom:527.656500px;}
.y33{bottom:530.805000px;}
.y16e{bottom:534.979500px;}
.y16f{bottom:534.981000px;}
.yc2{bottom:536.269500px;}
.y97{bottom:539.373000px;}
.y67{bottom:540.718500px;}
.y3{bottom:543.204000px;}
.yc4{bottom:544.095000px;}
.y133{bottom:545.890500px;}
.y16d{bottom:552.240000px;}
.y1a6{bottom:553.272000px;}
.y96{bottom:558.202500px;}
.y66{bottom:559.548000px;}
.yc3{bottom:560.533500px;}
.y2{bottom:561.093000px;}
.y132{bottom:564.720000px;}
.y32{bottom:568.195500px;}
.y16c{bottom:569.500500px;}
.y1a5{bottom:570.531000px;}
.y95{bottom:577.032000px;}
.y65{bottom:578.377500px;}
.y1{bottom:578.980500px;}
.y131{bottom:583.549500px;}
.yc1{bottom:584.173500px;}
.y16b{bottom:586.761000px;}
.y31{bottom:587.652000px;}
.y1a4{bottom:587.791500px;}
.y94{bottom:595.861500px;}
.y64{bottom:597.207000px;}
.yc0{bottom:600.612000px;}
.y130{bottom:602.379000px;}
.y16a{bottom:604.021500px;}
.y1a3{bottom:605.052000px;}
.ye1{bottom:606.364500px;}
.y30{bottom:607.110000px;}
.y93{bottom:614.691000px;}
.y63{bottom:616.036500px;}
.ybf{bottom:617.050500px;}
.y169{bottom:621.282000px;}
.y1a2{bottom:622.312500px;}
.ye0{bottom:625.596000px;}
.y12f{bottom:625.692000px;}
.y2f{bottom:626.566500px;}
.ybe{bottom:633.489000px;}
.y92{bottom:633.520500px;}
.y62{bottom:634.866000px;}
.y168{bottom:638.542500px;}
.y1a1{bottom:639.573000px;}
.ydf{bottom:644.829000px;}
.y2e{bottom:646.024500px;}
.ybd{bottom:649.927500px;}
.y91{bottom:652.350000px;}
.y61{bottom:653.695500px;}
.y167{bottom:655.803000px;}
.y12e{bottom:656.118000px;}
.y1a0{bottom:656.833500px;}
.yde{bottom:664.062000px;}
.y2d{bottom:665.481000px;}
.ybc{bottom:666.366000px;}
.y90{bottom:671.179500px;}
.y60{bottom:672.525000px;}
.y166{bottom:673.063500px;}
.y19f{bottom:674.094000px;}
.y12d{bottom:675.351000px;}
.ybb{bottom:682.804500px;}
.y2c{bottom:684.937500px;}
.yd0{bottom:686.491500px;}
.y8f{bottom:690.009000px;}
.y165{bottom:690.322500px;}
.yb5{bottom:690.928500px;}
.y5f{bottom:691.354500px;}
.y12c{bottom:694.584000px;}
.yba{bottom:699.243000px;}
.y2b{bottom:704.395500px;}
.y164{bottom:707.583000px;}
.y19e{bottom:708.613500px;}
.y8e{bottom:708.838500px;}
.y5e{bottom:710.184000px;}
.y12b{bottom:713.817000px;}
.yb9{bottom:715.680000px;}
.y2a{bottom:723.852000px;}
.y163{bottom:724.843500px;}
.y19d{bottom:725.874000px;}
.y8d{bottom:727.668000px;}
.yfa{bottom:727.848000px;}
.y5d{bottom:729.013500px;}
.yb8{bottom:732.118500px;}
.y108{bottom:736.246500px;}
.y162{bottom:742.104000px;}
.y19c{bottom:743.134500px;}
.y29{bottom:743.308500px;}
.y8c{bottom:746.497500px;}
.y5c{bottom:747.843000px;}
.yb7{bottom:748.557000px;}
.y161{bottom:759.364500px;}
.y19b{bottom:760.395000px;}
.y28{bottom:762.766500px;}
.yb6{bottom:764.995500px;}
.yf8{bottom:765.198000px;}
.y5b{bottom:766.671000px;}
.y8b{bottom:769.810500px;}
.y19a{bottom:777.655500px;}
.y160{bottom:781.108500px;}
.y27{bottom:782.223000px;}
.y5a{bottom:785.500500px;}
.yb4{bottom:788.637000px;}
.yf6{bottom:794.728500px;}
.y199{bottom:794.916000px;}
.yb3{bottom:797.248500px;}
.y26{bottom:801.681000px;}
.y8a{bottom:803.434500px;}
.y59{bottom:804.330000px;}
.yf5{bottom:804.358500px;}
.y198{bottom:812.176500px;}
.y15f{bottom:814.732500px;}
.y25{bottom:821.137500px;}
.y89{bottom:822.264000px;}
.y58{bottom:823.159500px;}
.yb2{bottom:828.715500px;}
.y197{bottom:829.437000px;}
.y88{bottom:841.093500px;}
.y15e{bottom:841.272000px;}
.y57{bottom:841.989000px;}
.y196{bottom:846.697500px;}
.y24{bottom:859.722000px;}
.y87{bottom:859.923000px;}
.yb1{bottom:860.335500px;}
.y56{bottom:860.818500px;}
.y195{bottom:863.956500px;}
.y15d{bottom:867.813000px;}
.y23{bottom:875.862000px;}
.y86{bottom:878.752500px;}
.y55{bottom:879.648000px;}
.y194{bottom:881.217000px;}
.yb0{bottom:893.547000px;}
.y15c{bottom:894.354000px;}
.y22{bottom:896.341500px;}
.y85{bottom:897.582000px;}
.y54{bottom:898.477500px;}
.y21{bottom:908.142000px;}
.y15b{bottom:911.928000px;}
.yaf{bottom:912.376500px;}
.y193{bottom:915.738000px;}
.y53{bottom:917.307000px;}
.y84{bottom:920.893500px;}
.y20{bottom:928.620000px;}
.y15a{bottom:929.502000px;}
.yae{bottom:931.206000px;}
.y192{bottom:932.998500px;}
.y52{bottom:936.136500px;}
.y1f{bottom:940.420500px;}
.ye4{bottom:948.870000px;}
.y191{bottom:950.259000px;}
.y83{bottom:954.517500px;}
.y51{bottom:954.966000px;}
.y159{bottom:956.041500px;}
.ye3{bottom:958.500000px;}
.y1e{bottom:960.900000px;}
.y190{bottom:967.519500px;}
.y82{bottom:973.347000px;}
.y158{bottom:973.617000px;}
.y50{bottom:973.795500px;}
.y18f{bottom:984.780000px;}
.yad{bottom:988.141500px;}
.y81{bottom:992.176500px;}
.y4f{bottom:992.625000px;}
.y157{bottom:1000.156500px;}
.y18d{bottom:1002.039000px;}
.y18e{bottom:1002.040500px;}
.y1d{bottom:1005.576000px;}
.yac{bottom:1006.971000px;}
.y80{bottom:1011.006000px;}
.y4e{bottom:1011.454500px;}
.y156{bottom:1017.730500px;}
.y18c{bottom:1019.299500px;}
.y1c{bottom:1024.405500px;}
.yab{bottom:1025.800500px;}
.y7f{bottom:1029.835500px;}
.y4d{bottom:1030.284000px;}
.y155{bottom:1035.304500px;}
.y18b{bottom:1036.560000px;}
.yaa{bottom:1044.630000px;}
.y4c{bottom:1049.113500px;}
.y154{bottom:1052.880000px;}
.y7e{bottom:1053.148500px;}
.y18a{bottom:1053.820500px;}
.ya9{bottom:1063.459500px;}
.y1b{bottom:1064.728500px;}
.y4b{bottom:1067.943000px;}
.y153{bottom:1070.454000px;}
.y189{bottom:1071.081000px;}
.ya8{bottom:1082.289000px;}
.y4a{bottom:1086.772500px;}
.y152{bottom:1088.028000px;}
.y188{bottom:1088.341500px;}
.y1a{bottom:1092.972000px;}
.y49{bottom:1105.602000px;}
.y18{bottom:1136.460000px;}
.y48{bottom:1168.366500px;}
.h14{height:15.135660px;}
.h8{height:31.131341px;}
.h2{height:36.319550px;}
.h18{height:37.350000px;}
.ha{height:38.734848px;}
.h9{height:41.508281px;}
.he{height:41.723369px;}
.hc{height:43.038432px;}
.h5{height:43.815515px;}
.h1c{height:44.268047px;}
.h11{height:44.536816px;}
.hb{height:46.697011px;}
.h1d{height:47.021011px;}
.h13{height:50.229492px;}
.h3{height:50.930649px;}
.hd{height:51.885221px;}
.h7{height:54.411312px;}
.h12{height:55.922168px;}
.h1e{height:59.609011px;}
.hf{height:78.005011px;}
.h19{height:78.023145px;}
.h6{height:78.115277px;}
.h4{height:92.253453px;}
.h15{height:346.582500px;}
.h1a{height:349.558500px;}
.h17{height:355.350000px;}
.h1b{height:384.300000px;}
.h10{height:434.055000px;}
.h16{height:742.258500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.345381px;}
.w5{width:438.874500px;}
.w4{width:489.927000px;}
.w6{width:495.595500px;}
.w3{width:544.042500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x53{left:-211.581000px;}
.x5e{left:-203.290500px;}
.x4c{left:-200.671500px;}
.x55{left:-15.981000px;}
.x5f{left:-7.690500px;}
.x4e{left:-5.071500px;}
.x0{left:0.000000px;}
.x60{left:24.169500px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x7c{left:85.848000px;}
.x59{left:216.198000px;}
.x80{left:242.056500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x5c{left:253.536000px;}
.x5d{left:262.506000px;}
.x5{left:269.914500px;}
.x3d{left:272.541000px;}
.x48{left:276.018000px;}
.xa{left:281.479500px;}
.x1a{left:301.927500px;}
.x5a{left:306.820500px;}
.x7{left:308.145000px;}
.x1b{left:309.399000px;}
.x3b{left:310.447500px;}
.x61{left:311.856000px;}
.x50{left:314.497500px;}
.x35{left:316.792500px;}
.x11{left:317.823000px;}
.x31{left:328.987500px;}
.x65{left:333.529500px;}
.x66{left:341.001000px;}
.x32{left:343.932000px;}
.x6f{left:358.393500px;}
.x75{left:366.084000px;}
.x2a{left:371.055000px;}
.x16{left:385.803000px;}
.x17{left:393.276000px;}
.x18{left:396.175500px;}
.xd{left:400.932000px;}
.x2c{left:402.571500px;}
.x19{left:403.647000px;}
.xe{left:408.405000px;}
.x77{left:411.774000px;}
.xf{left:415.869000px;}
.x2d{left:417.516000px;}
.x10{left:423.340500px;}
.x7b{left:433.692000px;}
.x6d{left:437.254500px;}
.x39{left:441.741000px;}
.x63{left:443.313000px;}
.x6e{left:444.726000px;}
.x3a{left:450.972000px;}
.x79{left:452.337000px;}
.x58{left:456.168000px;}
.x64{left:458.256000px;}
.x70{left:460.144500px;}
.x7a{left:467.281500px;}
.x71{left:474.744000px;}
.x29{left:476.145000px;}
.x49{left:477.784500px;}
.x23{left:481.405500px;}
.x41{left:484.240500px;}
.x45{left:487.233000px;}
.x24{left:491.307000px;}
.x3e{left:493.822500px;}
.x4a{left:499.734000px;}
.x3c{left:502.902000px;}
.x42{left:506.076000px;}
.x40{left:507.615000px;}
.x3f{left:509.310000px;}
.x44{left:512.080500px;}
.x43{left:514.885500px;}
.x2b{left:523.041000px;}
.x4f{left:526.438500px;}
.x25{left:528.186000px;}
.x46{left:531.838500px;}
.x1c{left:537.117000px;}
.x54{left:541.359000px;}
.x26{left:543.570000px;}
.x1d{left:544.588500px;}
.x76{left:545.967000px;}
.x1e{left:548.358000px;}
.x4d{left:552.268500px;}
.x36{left:556.512000px;}
.x1f{left:563.302500px;}
.x20{left:567.072000px;}
.x62{left:577.327500px;}
.x21{left:582.016500px;}
.x33{left:588.730500px;}
.xb{left:596.560500px;}
.x34{left:597.960000px;}
.xc{left:604.033500px;}
.x4b{left:635.349000px;}
.x67{left:669.135000px;}
.x30{left:681.103500px;}
.x51{left:682.384500px;}
.x68{left:684.079500px;}
.x2e{left:685.693500px;}
.x69{left:687.889500px;}
.x7d{left:690.943500px;}
.x73{left:695.430000px;}
.x52{left:697.600500px;}
.x78{left:700.714500px;}
.x6a{left:702.834000px;}
.x47{left:725.562000px;}
.x8{left:730.761000px;}
.x2f{left:739.008000px;}
.x27{left:742.518000px;}
.x74{left:746.233500px;}
.x28{left:757.462500px;}
.x7e{left:763.860000px;}
.x56{left:775.095000px;}
.x9{left:777.802500px;}
.x72{left:783.694500px;}
.x57{left:789.649500px;}
.x7f{left:790.758000px;}
.x6b{left:799.441500px;}
.x12{left:810.076500px;}
.x6c{left:814.384500px;}
.x13{left:817.548000px;}
.x37{left:818.973000px;}
.x5b{left:822.922500px;}
.x14{left:825.169500px;}
.x22{left:829.074000px;}
.x15{left:832.642500px;}
.x38{left:833.917500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.477333pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:27.829333pt;}
.lse{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000084pt;}
.ls1d{letter-spacing:0.000185pt;}
.ls1a{letter-spacing:0.001007pt;}
.ls18{letter-spacing:0.001158pt;}
.ls14{letter-spacing:0.002038pt;}
.ls13{letter-spacing:0.003290pt;}
.lsd{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.023680pt;}
.lsc{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.124267pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1{letter-spacing:2.657067pt;}
.lsf{letter-spacing:5.520000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.823893pt;}
.ls15{letter-spacing:11.954133pt;}
.ls19{letter-spacing:11.959467pt;}
.ls17{letter-spacing:11.977798pt;}
.ls1b{letter-spacing:11.994184pt;}
.ls7{letter-spacing:13.017797pt;}
.ls16{letter-spacing:14.828800pt;}
.ls2{letter-spacing:15.942400pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws85{word-spacing:-53.440000pt;}
.ws76{word-spacing:-48.000000pt;}
.ws7e{word-spacing:-18.640000pt;}
.ws84{word-spacing:-13.484267pt;}
.ws86{word-spacing:-13.383680pt;}
.ws83{word-spacing:-13.360000pt;}
.ws11{word-spacing:-13.283467pt;}
.ws80{word-spacing:-12.016000pt;}
.ws7f{word-spacing:-12.000000pt;}
.ws6d{word-spacing:-11.955200pt;}
.ws74{word-spacing:-10.800000pt;}
.ws75{word-spacing:-10.640000pt;}
.ws38{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws95{word-spacing:-3.294300pt;}
.ws3a{word-spacing:-2.762961pt;}
.ws55{word-spacing:-2.284756pt;}
.ws59{word-spacing:-2.231622pt;}
.ws47{word-spacing:-2.178489pt;}
.ws5c{word-spacing:-2.125355pt;}
.ws96{word-spacing:-1.965953pt;}
.wsa7{word-spacing:-1.817190pt;}
.wsaa{word-spacing:-1.769370pt;}
.wsa8{word-spacing:-1.625907pt;}
.wsab{word-spacing:-1.578086pt;}
.ws82{word-spacing:-1.434624pt;}
.ws8e{word-spacing:-1.328347pt;}
.ws8b{word-spacing:-1.275213pt;}
.ws56{word-spacing:-1.168945pt;}
.ws6{word-spacing:-1.041421pt;}
.ws54{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws5b{word-spacing:-0.850142pt;}
.wsa6{word-spacing:-0.812954pt;}
.ws53{word-spacing:-0.797008pt;}
.ws4f{word-spacing:-0.743874pt;}
.ws49{word-spacing:-0.690740pt;}
.ws9c{word-spacing:-0.637606pt;}
.ws57{word-spacing:-0.318803pt;}
.ws1e{word-spacing:-0.286925pt;}
.ws30{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.239104pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws7a{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.wscf{word-spacing:-0.143462pt;}
.ws48{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws81{word-spacing:-0.047821pt;}
.ws39{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.wsae{word-spacing:-0.004540pt;}
.wsc8{word-spacing:-0.003575pt;}
.ws14{word-spacing:-0.001740pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.wsb6{word-spacing:0.095642pt;}
.ws40{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws20{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.ws7d{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.wsb2{word-spacing:0.286925pt;}
.ws3d{word-spacing:0.318803pt;}
.wsa5{word-spacing:0.334746pt;}
.wsb5{word-spacing:0.382566pt;}
.wsa0{word-spacing:0.584473pt;}
.ws21{word-spacing:0.669491pt;}
.ws4c{word-spacing:0.690740pt;}
.wsb0{word-spacing:0.765133pt;}
.wsbf{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws22{word-spacing:0.908595pt;}
.ws61{word-spacing:0.956410pt;}
.wsa9{word-spacing:1.004237pt;}
.ws9b{word-spacing:1.009543pt;}
.ws35{word-spacing:1.115811pt;}
.ws31{word-spacing:1.222079pt;}
.wsa1{word-spacing:1.328347pt;}
.wsb9{word-spacing:1.338982pt;}
.ws5d{word-spacing:1.487748pt;}
.ws44{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.578086pt;}
.ws7c{word-spacing:1.625907pt;}
.ws72{word-spacing:1.647150pt;}
.wscb{word-spacing:1.673728pt;}
.wscc{word-spacing:1.721549pt;}
.ws1c{word-spacing:1.817190pt;}
.ws34{word-spacing:1.859685pt;}
.wsa2{word-spacing:1.865011pt;}
.ws7b{word-spacing:1.912832pt;}
.wsbe{word-spacing:1.960653pt;}
.wsca{word-spacing:2.056294pt;}
.ws51{word-spacing:2.125355pt;}
.ws0{word-spacing:2.232481pt;}
.ws52{word-spacing:2.284756pt;}
.ws91{word-spacing:2.337890pt;}
.ws8f{word-spacing:2.391024pt;}
.wscd{word-spacing:2.391040pt;}
.wsbc{word-spacing:2.486682pt;}
.ws79{word-spacing:2.534502pt;}
.ws15{word-spacing:2.550432pt;}
.ws2c{word-spacing:2.709827pt;}
.ws1a{word-spacing:2.725786pt;}
.ws98{word-spacing:2.816095pt;}
.ws25{word-spacing:2.861926pt;}
.ws16{word-spacing:2.864762pt;}
.wsc0{word-spacing:2.866005pt;}
.ws9d{word-spacing:2.869229pt;}
.wsd1{word-spacing:2.869248pt;}
.ws5a{word-spacing:2.922363pt;}
.ws89{word-spacing:2.975497pt;}
.ws27{word-spacing:3.188032pt;}
.ws4e{word-spacing:3.241166pt;}
.ws73{word-spacing:3.347434pt;}
.ws60{word-spacing:3.559969pt;}
.ws8c{word-spacing:3.613103pt;}
.ws50{word-spacing:3.666237pt;}
.ws42{word-spacing:3.719371pt;}
.ws29{word-spacing:3.772505pt;}
.ws28{word-spacing:4.091308pt;}
.ws9e{word-spacing:4.144442pt;}
.ws88{word-spacing:4.160410pt;}
.wse{word-spacing:4.240070pt;}
.ws43{word-spacing:4.250709pt;}
.wsf{word-spacing:4.314458pt;}
.ws4b{word-spacing:4.410111pt;}
.ws87{word-spacing:4.495155pt;}
.ws8d{word-spacing:4.569513pt;}
.ws58{word-spacing:4.622646pt;}
.wsac{word-spacing:4.638618pt;}
.ws33{word-spacing:4.675780pt;}
.ws32{word-spacing:4.728914pt;}
.ws5e{word-spacing:4.782048pt;}
.wsa4{word-spacing:4.973363pt;}
.ws41{word-spacing:4.994583pt;}
.ws3c{word-spacing:5.207119pt;}
.ws2b{word-spacing:5.260253pt;}
.ws9f{word-spacing:5.419654pt;}
.ws1d{word-spacing:5.451571pt;}
.ws97{word-spacing:5.579056pt;}
.ws8a{word-spacing:5.791591pt;}
.ws45{word-spacing:5.844725pt;}
.ws99{word-spacing:6.110395pt;}
.ws78{word-spacing:6.455808pt;}
.ws4a{word-spacing:6.694867pt;}
.ws18{word-spacing:6.694912pt;}
.wsc5{word-spacing:6.742733pt;}
.wsc3{word-spacing:6.790554pt;}
.ws77{word-spacing:6.838374pt;}
.wsc{word-spacing:6.918010pt;}
.ws3e{word-spacing:7.226206pt;}
.ws46{word-spacing:7.332474pt;}
.wsd2{word-spacing:8.981838pt;}
.wsd4{word-spacing:8.990310pt;}
.ws2{word-spacing:9.261206pt;}
.ws3{word-spacing:9.261604pt;}
.wsb4{word-spacing:9.516339pt;}
.ws37{word-spacing:10.579129pt;}
.wsa{word-spacing:10.823338pt;}
.wsd0{word-spacing:11.763917pt;}
.ws17{word-spacing:11.886160pt;}
.wsb8{word-spacing:11.895219pt;}
.wsb7{word-spacing:11.899853pt;}
.wsc7{word-spacing:11.900553pt;}
.wsce{word-spacing:11.901577pt;}
.wsc1{word-spacing:11.907319pt;}
.ws26{word-spacing:11.907379pt;}
.wsbd{word-spacing:11.955200pt;}
.wsb3{word-spacing:12.146483pt;}
.ws9a{word-spacing:13.070931pt;}
.ws93{word-spacing:13.082936pt;}
.ws94{word-spacing:13.102257pt;}
.ws2e{word-spacing:13.230333pt;}
.ws92{word-spacing:13.283467pt;}
.ws4d{word-spacing:13.890009pt;}
.wsb{word-spacing:14.319536pt;}
.wsbb{word-spacing:14.766123pt;}
.wsc2{word-spacing:14.768580pt;}
.wsad{word-spacing:14.768717pt;}
.wsd6{word-spacing:14.771977pt;}
.wsd7{word-spacing:14.773257pt;}
.wsb1{word-spacing:14.773717pt;}
.wsc9{word-spacing:14.775211pt;}
.wsba{word-spacing:14.776627pt;}
.wsaf{word-spacing:14.824448pt;}
.wsd5{word-spacing:15.063552pt;}
.ws90{word-spacing:15.621357pt;}
.ws5f{word-spacing:16.418365pt;}
.ws19{word-spacing:18.602291pt;}
.wsc4{word-spacing:18.697933pt;}
.wsd3{word-spacing:20.897690pt;}
.wsd{word-spacing:23.208806pt;}
.ws10{word-spacing:23.799868pt;}
.ws9{word-spacing:23.858002pt;}
.wsc6{word-spacing:43.038720pt;}
.ws62{word-spacing:363.766886pt;}
.ws6e{word-spacing:396.386611pt;}
.ws68{word-spacing:419.340595pt;}
.ws69{word-spacing:442.581504pt;}
.ws6f{word-spacing:453.675930pt;}
.ws70{word-spacing:474.430157pt;}
.ws64{word-spacing:485.668045pt;}
.ws66{word-spacing:496.523366pt;}
.ws6a{word-spacing:496.953754pt;}
.ws63{word-spacing:500.970701pt;}
.ws67{word-spacing:502.453146pt;}
.ws6c{word-spacing:518.329651pt;}
.ws71{word-spacing:525.789696pt;}
.ws6b{word-spacing:528.276378pt;}
.ws65{word-spacing:573.658317pt;}
._2a{margin-left:-20.399325pt;}
._29{margin-left:-17.969974pt;}
._7{margin-left:-6.854269pt;}
._e{margin-left:-5.834150pt;}
._0{margin-left:-4.797974pt;}
._8{margin-left:-3.145533pt;}
._3{margin-left:-2.045648pt;}
._9{margin-left:-1.014870pt;}
._1d{width:1.031138pt;}
._2{width:2.045648pt;}
._5{width:3.265863pt;}
._1e{width:4.560000pt;}
._20{width:6.016000pt;}
._21{width:7.567680pt;}
._23{width:9.064645pt;}
._1{width:11.530016pt;}
._27{width:12.821229pt;}
._1f{width:13.820211pt;}
._d{width:14.824448pt;}
._10{width:16.498176pt;}
._f{width:18.315366pt;}
._14{width:19.457630pt;}
._b{width:20.371661pt;}
._18{width:21.790212pt;}
._c{width:23.395005pt;}
._22{width:25.823059pt;}
._4{width:27.188522pt;}
._12{width:28.214083pt;}
._11{width:29.276761pt;}
._15{width:31.030178pt;}
._13{width:32.634848pt;}
._a{width:35.243930pt;}
._25{width:44.032323pt;}
._6{width:48.381897pt;}
._26{width:54.993920pt;}
._24{width:78.904320pt;}
._1a{width:301.628020pt;}
._19{width:442.570864pt;}
._1b{width:464.483430pt;}
._16{width:630.752176pt;}
._28{width:2199.727937pt;}
._17{width:2220.981270pt;}
._1c{width:2247.660480pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fsc{font-size:74.560000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y10b{bottom:-622.801333pt;}
.yd3{bottom:-582.648000pt;}
.y12a{bottom:-544.881333pt;}
.y129{bottom:-527.761333pt;}
.y128{bottom:-510.721333pt;}
.ydd{bottom:-494.648000pt;}
.y127{bottom:-493.601333pt;}
.ydc{bottom:-479.208000pt;}
.y126{bottom:-476.561333pt;}
.ydb{bottom:-463.848000pt;}
.y125{bottom:-459.414667pt;}
.yda{bottom:-448.408000pt;}
.y124{bottom:-442.294667pt;}
.yd9{bottom:-428.488000pt;}
.y123{bottom:-425.254667pt;}
.y122{bottom:-408.134667pt;}
.y121{bottom:-391.094667pt;}
.y120{bottom:-373.974667pt;}
.y11f{bottom:-356.854667pt;}
.y11e{bottom:-339.814667pt;}
.y11d{bottom:-322.694667pt;}
.y11c{bottom:-305.654667pt;}
.yf7{bottom:-301.734667pt;}
.y11b{bottom:-288.534667pt;}
.y11a{bottom:-271.414667pt;}
.y119{bottom:-254.374667pt;}
.y118{bottom:-237.254667pt;}
.y117{bottom:-220.134667pt;}
.y116{bottom:-203.094667pt;}
.y115{bottom:-185.974667pt;}
.y114{bottom:-168.934667pt;}
.ye5{bottom:-164.720000pt;}
.y113{bottom:-151.814667pt;}
.y112{bottom:-134.694667pt;}
.y111{bottom:-113.654667pt;}
.y102{bottom:-97.628000pt;}
.y101{bottom:-82.188000pt;}
.y110{bottom:-80.908000pt;}
.yef{bottom:-76.720000pt;}
.yd8{bottom:-74.701333pt;}
.y100{bottom:-66.748000pt;}
.y10f{bottom:-65.468000pt;}
.yee{bottom:-61.280000pt;}
.yd7{bottom:-59.261333pt;}
.yff{bottom:-51.388000pt;}
.y10e{bottom:-50.028000pt;}
.yed{bottom:-45.920000pt;}
.yd6{bottom:-43.874667pt;}
.yfe{bottom:-36.028000pt;}
.y10d{bottom:-34.668000pt;}
.yec{bottom:-30.480000pt;}
.yd5{bottom:-28.434667pt;}
.yfd{bottom:-20.668000pt;}
.y10c{bottom:-14.748000pt;}
.yeb{bottom:-10.560000pt;}
.yd4{bottom:-8.514667pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:3.252000pt;}
.yf9{bottom:4.000000pt;}
.yfb{bottom:9.600000pt;}
.y19{bottom:11.489518pt;}
.y47{bottom:28.346667pt;}
.y14b{bottom:83.541333pt;}
.y17{bottom:93.018667pt;}
.y7d{bottom:94.086667pt;}
.y46{bottom:99.770667pt;}
.y14a{bottom:100.278667pt;}
.y187{bottom:107.317333pt;}
.y16{bottom:108.920000pt;}
.y7c{bottom:110.824000pt;}
.y45{bottom:116.508000pt;}
.y149{bottom:117.016000pt;}
.y186{bottom:122.660000pt;}
.y15{bottom:124.820000pt;}
.y7b{bottom:127.561333pt;}
.y151{bottom:128.757333pt;}
.y44{bottom:133.245333pt;}
.y148{bottom:133.753333pt;}
.yf3{bottom:137.296000pt;}
.y185{bottom:138.002667pt;}
.y14{bottom:140.720000pt;}
.y7a{bottom:144.298667pt;}
.y150{bottom:145.494667pt;}
.y43{bottom:149.982667pt;}
.y147{bottom:150.490667pt;}
.y184{bottom:153.345333pt;}
.yf2{bottom:154.390667pt;}
.y13{bottom:156.621333pt;}
.y79{bottom:161.036000pt;}
.y14f{bottom:162.232000pt;}
.y42{bottom:166.720000pt;}
.y146{bottom:167.228000pt;}
.y183{bottom:168.688000pt;}
.yf1{bottom:171.486667pt;}
.y12{bottom:172.521333pt;}
.y78{bottom:177.773333pt;}
.y14e{bottom:178.969333pt;}
.y41{bottom:183.457333pt;}
.y145{bottom:183.965333pt;}
.y182{bottom:184.030667pt;}
.y11{bottom:188.421333pt;}
.yf0{bottom:188.582667pt;}
.ya7{bottom:194.510667pt;}
.y77{bottom:198.496000pt;}
.y181{bottom:199.373333pt;}
.y14d{bottom:199.690667pt;}
.y40{bottom:200.194667pt;}
.y144{bottom:200.701333pt;}
.y10{bottom:204.322667pt;}
.ye2{bottom:208.520000pt;}
.ya6{bottom:211.248000pt;}
.y180{bottom:214.714667pt;}
.y76{bottom:216.428000pt;}
.y3f{bottom:216.932000pt;}
.y143{bottom:217.438667pt;}
.ya5{bottom:227.985333pt;}
.y14c{bottom:229.578667pt;}
.y17f{bottom:230.057333pt;}
.y3e{bottom:233.669333pt;}
.y142{bottom:234.176000pt;}
.ya4{bottom:244.722667pt;}
.y17e{bottom:245.400000pt;}
.y75{bottom:246.316000pt;}
.y107{bottom:247.936000pt;}
.y3d{bottom:250.406667pt;}
.y141{bottom:250.913333pt;}
.y17d{bottom:260.742667pt;}
.ya3{bottom:261.460000pt;}
.y74{bottom:263.053333pt;}
.y106{bottom:265.032000pt;}
.yf{bottom:266.804000pt;}
.y3c{bottom:267.144000pt;}
.y140{bottom:267.650667pt;}
.y17c{bottom:276.085333pt;}
.ya2{bottom:278.197333pt;}
.y73{bottom:279.790667pt;}
.y105{bottom:282.128000pt;}
.ye{bottom:282.705333pt;}
.y3b{bottom:283.881333pt;}
.ycf{bottom:284.092000pt;}
.y13f{bottom:284.388000pt;}
.y17b{bottom:291.428000pt;}
.ya1{bottom:294.934667pt;}
.y72{bottom:296.528000pt;}
.yd{bottom:298.605333pt;}
.y104{bottom:299.224000pt;}
.y3a{bottom:300.618667pt;}
.yce{bottom:300.829333pt;}
.y13e{bottom:301.125333pt;}
.y17a{bottom:306.770667pt;}
.ya0{bottom:311.672000pt;}
.y71{bottom:313.265333pt;}
.yc{bottom:314.505333pt;}
.y103{bottom:316.320000pt;}
.y39{bottom:317.356000pt;}
.ycd{bottom:317.566667pt;}
.y13d{bottom:317.862667pt;}
.y179{bottom:322.113333pt;}
.y9f{bottom:328.409333pt;}
.y70{bottom:330.002667pt;}
.y38{bottom:334.093333pt;}
.ycc{bottom:334.304000pt;}
.y13c{bottom:334.600000pt;}
.yf4{bottom:336.257333pt;}
.y178{bottom:337.456000pt;}
.yb{bottom:338.376000pt;}
.yea{bottom:343.226667pt;}
.y6f{bottom:346.740000pt;}
.y9e{bottom:349.132000pt;}
.y37{bottom:350.830667pt;}
.ycb{bottom:351.041333pt;}
.y13b{bottom:351.337333pt;}
.y177{bottom:352.797333pt;}
.ya{bottom:354.277333pt;}
.ye9{bottom:358.666667pt;}
.y6e{bottom:363.477333pt;}
.y36{bottom:367.568000pt;}
.yca{bottom:367.778667pt;}
.y13a{bottom:368.074667pt;}
.y176{bottom:368.140000pt;}
.y9{bottom:370.177333pt;}
.ye8{bottom:374.053333pt;}
.y9d{bottom:379.020000pt;}
.y6d{bottom:380.214667pt;}
.y175{bottom:383.482667pt;}
.y35{bottom:384.305333pt;}
.yc9{bottom:384.516000pt;}
.y139{bottom:384.812000pt;}
.y10a{bottom:385.358667pt;}
.ye7{bottom:389.493333pt;}
.y109{bottom:393.918667pt;}
.y8{bottom:395.376000pt;}
.y9c{bottom:395.757333pt;}
.y6c{bottom:396.952000pt;}
.y174{bottom:398.825333pt;}
.yc8{bottom:401.253333pt;}
.y138{bottom:401.549333pt;}
.y34{bottom:405.026667pt;}
.ye6{bottom:409.413333pt;}
.y9b{bottom:412.494667pt;}
.y6b{bottom:413.689333pt;}
.y173{bottom:414.168000pt;}
.yc7{bottom:417.990667pt;}
.y137{bottom:418.286667pt;}
.y7{bottom:419.246667pt;}
.yd2{bottom:425.512000pt;}
.y9a{bottom:429.232000pt;}
.y172{bottom:429.510667pt;}
.y6a{bottom:430.426667pt;}
.yd1{bottom:434.072000pt;}
.y136{bottom:435.024000pt;}
.y6{bottom:435.146667pt;}
.y171{bottom:444.853333pt;}
.y99{bottom:445.968000pt;}
.y69{bottom:447.164000pt;}
.y5{bottom:451.048000pt;}
.y135{bottom:451.761333pt;}
.yc6{bottom:454.416000pt;}
.y170{bottom:460.196000pt;}
.y98{bottom:462.705333pt;}
.y68{bottom:463.901333pt;}
.y4{bottom:466.948000pt;}
.y134{bottom:468.498667pt;}
.yc5{bottom:469.028000pt;}
.y33{bottom:471.826667pt;}
.y16e{bottom:475.537333pt;}
.y16f{bottom:475.538667pt;}
.yc2{bottom:476.684000pt;}
.y97{bottom:479.442667pt;}
.y67{bottom:480.638667pt;}
.y3{bottom:482.848000pt;}
.yc4{bottom:483.640000pt;}
.y133{bottom:485.236000pt;}
.y16d{bottom:490.880000pt;}
.y1a6{bottom:491.797333pt;}
.y96{bottom:496.180000pt;}
.y66{bottom:497.376000pt;}
.yc3{bottom:498.252000pt;}
.y2{bottom:498.749333pt;}
.y132{bottom:501.973333pt;}
.y32{bottom:505.062667pt;}
.y16c{bottom:506.222667pt;}
.y1a5{bottom:507.138667pt;}
.y95{bottom:512.917333pt;}
.y65{bottom:514.113333pt;}
.y1{bottom:514.649333pt;}
.y131{bottom:518.710667pt;}
.yc1{bottom:519.265333pt;}
.y16b{bottom:521.565333pt;}
.y31{bottom:522.357333pt;}
.y1a4{bottom:522.481333pt;}
.y94{bottom:529.654667pt;}
.y64{bottom:530.850667pt;}
.yc0{bottom:533.877333pt;}
.y130{bottom:535.448000pt;}
.y16a{bottom:536.908000pt;}
.y1a3{bottom:537.824000pt;}
.ye1{bottom:538.990667pt;}
.y30{bottom:539.653333pt;}
.y93{bottom:546.392000pt;}
.y63{bottom:547.588000pt;}
.ybf{bottom:548.489333pt;}
.y169{bottom:552.250667pt;}
.y1a2{bottom:553.166667pt;}
.ye0{bottom:556.085333pt;}
.y12f{bottom:556.170667pt;}
.y2f{bottom:556.948000pt;}
.ybe{bottom:563.101333pt;}
.y92{bottom:563.129333pt;}
.y62{bottom:564.325333pt;}
.y168{bottom:567.593333pt;}
.y1a1{bottom:568.509333pt;}
.ydf{bottom:573.181333pt;}
.y2e{bottom:574.244000pt;}
.ybd{bottom:577.713333pt;}
.y91{bottom:579.866667pt;}
.y61{bottom:581.062667pt;}
.y167{bottom:582.936000pt;}
.y12e{bottom:583.216000pt;}
.y1a0{bottom:583.852000pt;}
.yde{bottom:590.277333pt;}
.y2d{bottom:591.538667pt;}
.ybc{bottom:592.325333pt;}
.y90{bottom:596.604000pt;}
.y60{bottom:597.800000pt;}
.y166{bottom:598.278667pt;}
.y19f{bottom:599.194667pt;}
.y12d{bottom:600.312000pt;}
.ybb{bottom:606.937333pt;}
.y2c{bottom:608.833333pt;}
.yd0{bottom:610.214667pt;}
.y8f{bottom:613.341333pt;}
.y165{bottom:613.620000pt;}
.yb5{bottom:614.158667pt;}
.y5f{bottom:614.537333pt;}
.y12c{bottom:617.408000pt;}
.yba{bottom:621.549333pt;}
.y2b{bottom:626.129333pt;}
.y164{bottom:628.962667pt;}
.y19e{bottom:629.878667pt;}
.y8e{bottom:630.078667pt;}
.y5e{bottom:631.274667pt;}
.y12b{bottom:634.504000pt;}
.yb9{bottom:636.160000pt;}
.y2a{bottom:643.424000pt;}
.y163{bottom:644.305333pt;}
.y19d{bottom:645.221333pt;}
.y8d{bottom:646.816000pt;}
.yfa{bottom:646.976000pt;}
.y5d{bottom:648.012000pt;}
.yb8{bottom:650.772000pt;}
.y108{bottom:654.441333pt;}
.y162{bottom:659.648000pt;}
.y19c{bottom:660.564000pt;}
.y29{bottom:660.718667pt;}
.y8c{bottom:663.553333pt;}
.y5c{bottom:664.749333pt;}
.yb7{bottom:665.384000pt;}
.y161{bottom:674.990667pt;}
.y19b{bottom:675.906667pt;}
.y28{bottom:678.014667pt;}
.yb6{bottom:679.996000pt;}
.yf8{bottom:680.176000pt;}
.y5b{bottom:681.485333pt;}
.y8b{bottom:684.276000pt;}
.y19a{bottom:691.249333pt;}
.y160{bottom:694.318667pt;}
.y27{bottom:695.309333pt;}
.y5a{bottom:698.222667pt;}
.yb4{bottom:701.010667pt;}
.yf6{bottom:706.425333pt;}
.y199{bottom:706.592000pt;}
.yb3{bottom:708.665333pt;}
.y26{bottom:712.605333pt;}
.y8a{bottom:714.164000pt;}
.y59{bottom:714.960000pt;}
.yf5{bottom:714.985333pt;}
.y198{bottom:721.934667pt;}
.y15f{bottom:724.206667pt;}
.y25{bottom:729.900000pt;}
.y89{bottom:730.901333pt;}
.y58{bottom:731.697333pt;}
.yb2{bottom:736.636000pt;}
.y197{bottom:737.277333pt;}
.y88{bottom:747.638667pt;}
.y15e{bottom:747.797333pt;}
.y57{bottom:748.434667pt;}
.y196{bottom:752.620000pt;}
.y24{bottom:764.197333pt;}
.y87{bottom:764.376000pt;}
.yb1{bottom:764.742667pt;}
.y56{bottom:765.172000pt;}
.y195{bottom:767.961333pt;}
.y15d{bottom:771.389333pt;}
.y23{bottom:778.544000pt;}
.y86{bottom:781.113333pt;}
.y55{bottom:781.909333pt;}
.y194{bottom:783.304000pt;}
.yb0{bottom:794.264000pt;}
.y15c{bottom:794.981333pt;}
.y22{bottom:796.748000pt;}
.y85{bottom:797.850667pt;}
.y54{bottom:798.646667pt;}
.y21{bottom:807.237333pt;}
.y15b{bottom:810.602667pt;}
.yaf{bottom:811.001333pt;}
.y193{bottom:813.989333pt;}
.y53{bottom:815.384000pt;}
.y84{bottom:818.572000pt;}
.y20{bottom:825.440000pt;}
.y15a{bottom:826.224000pt;}
.yae{bottom:827.738667pt;}
.y192{bottom:829.332000pt;}
.y52{bottom:832.121333pt;}
.y1f{bottom:835.929333pt;}
.ye4{bottom:843.440000pt;}
.y191{bottom:844.674667pt;}
.y83{bottom:848.460000pt;}
.y51{bottom:848.858667pt;}
.y159{bottom:849.814667pt;}
.ye3{bottom:852.000000pt;}
.y1e{bottom:854.133333pt;}
.y190{bottom:860.017333pt;}
.y82{bottom:865.197333pt;}
.y158{bottom:865.437333pt;}
.y50{bottom:865.596000pt;}
.y18f{bottom:875.360000pt;}
.yad{bottom:878.348000pt;}
.y81{bottom:881.934667pt;}
.y4f{bottom:882.333333pt;}
.y157{bottom:889.028000pt;}
.y18d{bottom:890.701333pt;}
.y18e{bottom:890.702667pt;}
.y1d{bottom:893.845333pt;}
.yac{bottom:895.085333pt;}
.y80{bottom:898.672000pt;}
.y4e{bottom:899.070667pt;}
.y156{bottom:904.649333pt;}
.y18c{bottom:906.044000pt;}
.y1c{bottom:910.582667pt;}
.yab{bottom:911.822667pt;}
.y7f{bottom:915.409333pt;}
.y4d{bottom:915.808000pt;}
.y155{bottom:920.270667pt;}
.y18b{bottom:921.386667pt;}
.yaa{bottom:928.560000pt;}
.y4c{bottom:932.545333pt;}
.y154{bottom:935.893333pt;}
.y7e{bottom:936.132000pt;}
.y18a{bottom:936.729333pt;}
.ya9{bottom:945.297333pt;}
.y1b{bottom:946.425333pt;}
.y4b{bottom:949.282667pt;}
.y153{bottom:951.514667pt;}
.y189{bottom:952.072000pt;}
.ya8{bottom:962.034667pt;}
.y4a{bottom:966.020000pt;}
.y152{bottom:967.136000pt;}
.y188{bottom:967.414667pt;}
.y1a{bottom:971.530667pt;}
.y49{bottom:982.757333pt;}
.y18{bottom:1010.186667pt;}
.y48{bottom:1038.548000pt;}
.h14{height:13.453920pt;}
.h8{height:27.672303pt;}
.h2{height:32.284045pt;}
.h18{height:33.200000pt;}
.ha{height:34.430976pt;}
.h9{height:36.896250pt;}
.he{height:37.087439pt;}
.hc{height:38.256384pt;}
.h5{height:38.947124pt;}
.h1c{height:39.349375pt;}
.h11{height:39.588281pt;}
.hb{height:41.508454pt;}
.h1d{height:41.796454pt;}
.h13{height:44.648438pt;}
.h3{height:45.271688pt;}
.hd{height:46.120196pt;}
.h7{height:48.365611pt;}
.h12{height:49.708594pt;}
.h1e{height:52.985788pt;}
.hf{height:69.337788pt;}
.h19{height:69.353906pt;}
.h6{height:69.435802pt;}
.h4{height:82.003069pt;}
.h15{height:308.073333pt;}
.h1a{height:310.718667pt;}
.h17{height:315.866667pt;}
.h1b{height:341.600000pt;}
.h10{height:385.826667pt;}
.h16{height:659.785333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.307005pt;}
.w5{width:390.110667pt;}
.w4{width:435.490667pt;}
.w6{width:440.529333pt;}
.w3{width:483.593333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x53{left:-188.072000pt;}
.x5e{left:-180.702667pt;}
.x4c{left:-178.374667pt;}
.x55{left:-14.205333pt;}
.x5f{left:-6.836000pt;}
.x4e{left:-4.508000pt;}
.x0{left:0.000000pt;}
.x60{left:21.484000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x7c{left:76.309333pt;}
.x59{left:192.176000pt;}
.x80{left:215.161333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x5c{left:225.365333pt;}
.x5d{left:233.338667pt;}
.x5{left:239.924000pt;}
.x3d{left:242.258667pt;}
.x48{left:245.349333pt;}
.xa{left:250.204000pt;}
.x1a{left:268.380000pt;}
.x5a{left:272.729333pt;}
.x7{left:273.906667pt;}
.x1b{left:275.021333pt;}
.x3b{left:275.953333pt;}
.x61{left:277.205333pt;}
.x50{left:279.553333pt;}
.x35{left:281.593333pt;}
.x11{left:282.509333pt;}
.x31{left:292.433333pt;}
.x65{left:296.470667pt;}
.x66{left:303.112000pt;}
.x32{left:305.717333pt;}
.x6f{left:318.572000pt;}
.x75{left:325.408000pt;}
.x2a{left:329.826667pt;}
.x16{left:342.936000pt;}
.x17{left:349.578667pt;}
.x18{left:352.156000pt;}
.xd{left:356.384000pt;}
.x2c{left:357.841333pt;}
.x19{left:358.797333pt;}
.xe{left:363.026667pt;}
.x77{left:366.021333pt;}
.xf{left:369.661333pt;}
.x2d{left:371.125333pt;}
.x10{left:376.302667pt;}
.x7b{left:385.504000pt;}
.x6d{left:388.670667pt;}
.x39{left:392.658667pt;}
.x63{left:394.056000pt;}
.x6e{left:395.312000pt;}
.x3a{left:400.864000pt;}
.x79{left:402.077333pt;}
.x58{left:405.482667pt;}
.x64{left:407.338667pt;}
.x70{left:409.017333pt;}
.x7a{left:415.361333pt;}
.x71{left:421.994667pt;}
.x29{left:423.240000pt;}
.x49{left:424.697333pt;}
.x23{left:427.916000pt;}
.x41{left:430.436000pt;}
.x45{left:433.096000pt;}
.x24{left:436.717333pt;}
.x3e{left:438.953333pt;}
.x4a{left:444.208000pt;}
.x3c{left:447.024000pt;}
.x42{left:449.845333pt;}
.x40{left:451.213333pt;}
.x3f{left:452.720000pt;}
.x44{left:455.182667pt;}
.x43{left:457.676000pt;}
.x2b{left:464.925333pt;}
.x4f{left:467.945333pt;}
.x25{left:469.498667pt;}
.x46{left:472.745333pt;}
.x1c{left:477.437333pt;}
.x54{left:481.208000pt;}
.x26{left:483.173333pt;}
.x1d{left:484.078667pt;}
.x76{left:485.304000pt;}
.x1e{left:487.429333pt;}
.x4d{left:490.905333pt;}
.x36{left:494.677333pt;}
.x1f{left:500.713333pt;}
.x20{left:504.064000pt;}
.x62{left:513.180000pt;}
.x21{left:517.348000pt;}
.x33{left:523.316000pt;}
.xb{left:530.276000pt;}
.x34{left:531.520000pt;}
.xc{left:536.918667pt;}
.x4b{left:564.754667pt;}
.x67{left:594.786667pt;}
.x30{left:605.425333pt;}
.x51{left:606.564000pt;}
.x68{left:608.070667pt;}
.x2e{left:609.505333pt;}
.x69{left:611.457333pt;}
.x7d{left:614.172000pt;}
.x73{left:618.160000pt;}
.x52{left:620.089333pt;}
.x78{left:622.857333pt;}
.x6a{left:624.741333pt;}
.x47{left:644.944000pt;}
.x8{left:649.565333pt;}
.x2f{left:656.896000pt;}
.x27{left:660.016000pt;}
.x74{left:663.318667pt;}
.x28{left:673.300000pt;}
.x7e{left:678.986667pt;}
.x56{left:688.973333pt;}
.x9{left:691.380000pt;}
.x72{left:696.617333pt;}
.x57{left:701.910667pt;}
.x7f{left:702.896000pt;}
.x6b{left:710.614667pt;}
.x12{left:720.068000pt;}
.x6c{left:723.897333pt;}
.x13{left:726.709333pt;}
.x37{left:727.976000pt;}
.x5b{left:731.486667pt;}
.x14{left:733.484000pt;}
.x22{left:736.954667pt;}
.x15{left:740.126667pt;}
.x38{left:741.260000pt;}
}




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