
    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_47f65afcb52f9e64787e463e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_76c5cf0ad32871de260615a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_e5ec39edf92ad7a2229f30fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_066335914c803f6cee8cd613.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_0a720456da551f1eb44b9c1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_980f46f102451ef754f623c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_a4e71552c88d9d9e8384290b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_815baab4b66562b5bf82528e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_6aaa29acc4743d61b3a4b865.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9ce068db51f042af49775cda.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_21139a592849db1b7e1aeecd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9a198ea09b63f411ceb1df9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_50c4ddfd44a51de0cfabc20d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_abd2233aff9817947aebb034.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_252795a23138b495ca58b4b0.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{transform:matrix(0.000000,-0.241045,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241045,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241045,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.241774,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241774,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241774,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250668,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250668,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250668,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.259160,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.259160,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.259160,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.262116,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.262116,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.262116,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.179971,-0.173524,0.179971,0.173524,0,0);-ms-transform:matrix(0.179971,-0.173524,0.179971,0.173524,0,0);-webkit-transform:matrix(0.179971,-0.173524,0.179971,0.173524,0,0);}
.m2{transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190090,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.190189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190189,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.216074,-0.125083,0.124749,0.216651,0,0);-ms-transform:matrix(0.216074,-0.125083,0.124749,0.216651,0,0);-webkit-transform:matrix(0.216074,-0.125083,0.124749,0.216651,0,0);}
.m1b{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217248,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.219132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219132,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219716,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.223953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223953,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224917,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238444,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.241164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241164,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248737,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,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);}
.m1a{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255815,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256916,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258506,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-35.064851px;}
.v5{vertical-align:-11.678982px;}
.v6{vertical-align:-9.000000px;}
.v1{vertical-align:-7.622445px;}
.v8{vertical-align:-6.397401px;}
.v4{vertical-align:-3.120000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.000000px;}
.v2{vertical-align:34.978272px;}
.ls6{letter-spacing:-3.373650px;}
.lsd{letter-spacing:-2.029500px;}
.ls17{letter-spacing:-1.946400px;}
.ls3b{letter-spacing:-1.731600px;}
.ls9{letter-spacing:-1.627350px;}
.ls14{letter-spacing:-1.298700px;}
.ls40{letter-spacing:-1.188000px;}
.ls23{letter-spacing:-1.154400px;}
.ls7{letter-spacing:-1.113450px;}
.lsb{letter-spacing:-0.541350px;}
.ls3a{letter-spacing:-0.454860px;}
.lsf{letter-spacing:-0.365310px;}
.ls3{letter-spacing:-0.342600px;}
.ls11{letter-spacing:-0.338250px;}
.ls1{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.001912px;}
.ls31{letter-spacing:0.002653px;}
.ls2e{letter-spacing:0.004692px;}
.ls2c{letter-spacing:0.019121px;}
.ls2f{letter-spacing:0.023462px;}
.ls30{letter-spacing:0.026534px;}
.ls36{letter-spacing:0.039350px;}
.ls25{letter-spacing:0.045150px;}
.ls1c{letter-spacing:0.050157px;}
.ls32{letter-spacing:0.066335px;}
.ls3e{letter-spacing:0.085881px;}
.ls26{letter-spacing:0.099676px;}
.ls24{letter-spacing:0.100185px;}
.ls2b{letter-spacing:0.105307px;}
.ls35{letter-spacing:0.110385px;}
.ls19{letter-spacing:0.158008px;}
.ls4{letter-spacing:0.174300px;}
.ls34{letter-spacing:0.179700px;}
.ls10{letter-spacing:0.202950px;}
.ls5{letter-spacing:0.257985px;}
.ls18{letter-spacing:0.324450px;}
.ls1f{letter-spacing:0.330300px;}
.ls2{letter-spacing:0.342600px;}
.lse{letter-spacing:0.405900px;}
.ls43{letter-spacing:0.432900px;}
.ls38{letter-spacing:0.529500px;}
.ls15{letter-spacing:0.577200px;}
.ls37{letter-spacing:0.633450px;}
.ls1e{letter-spacing:0.702201px;}
.ls1d{letter-spacing:0.758029px;}
.ls1b{letter-spacing:0.804327px;}
.ls1a{letter-spacing:0.890907px;}
.ls21{letter-spacing:0.972405px;}
.ls20{letter-spacing:0.992250px;}
.lsa{letter-spacing:1.027800px;}
.ls8{letter-spacing:1.087755px;}
.ls3d{letter-spacing:1.113450px;}
.ls12{letter-spacing:1.154400px;}
.ls45{letter-spacing:1.352250px;}
.ls13{letter-spacing:1.370850px;}
.ls3f{letter-spacing:1.439850px;}
.ls42{letter-spacing:1.485000px;}
.ls33{letter-spacing:1.515150px;}
.ls41{letter-spacing:1.534500px;}
.ls28{letter-spacing:1.623600px;}
.lsc{letter-spacing:1.731840px;}
.ls27{letter-spacing:1.758900px;}
.ls22{letter-spacing:1.948050px;}
.ls0{letter-spacing:2.002830px;}
.ls29{letter-spacing:2.092350px;}
.ls44{letter-spacing:2.237621px;}
.ls16{letter-spacing:2.666105px;}
.ls3c{letter-spacing:4.539450px;}
.ls39{letter-spacing:16.322100px;}
.ls2a{letter-spacing:151.726243px;}
.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;}
}
.ws1d{word-spacing:-127.523101px;}
.ws1a{word-spacing:-112.995308px;}
.ws1c{word-spacing:-112.756762px;}
.ws1b{word-spacing:-96.728704px;}
.ws19{word-spacing:-91.894204px;}
.ws1f{word-spacing:-85.650000px;}
.ws10{word-spacing:-45.841950px;}
.ws2{word-spacing:-45.107685px;}
.ws3{word-spacing:-41.476050px;}
.wsf{word-spacing:-25.546500px;}
.ws29{word-spacing:-23.896350px;}
.ws21{word-spacing:-20.470350px;}
.wsc{word-spacing:-19.798626px;}
.ws23{word-spacing:-19.390800px;}
.ws0{word-spacing:-19.356900px;}
.ws16{word-spacing:-18.398250px;}
.ws11{word-spacing:-18.253950px;}
.ws4{word-spacing:-18.243450px;}
.ws5{word-spacing:-17.729550px;}
.wsa{word-spacing:-17.676750px;}
.wsb{word-spacing:-16.883100px;}
.ws2a{word-spacing:-16.616684px;}
.ws6{word-spacing:-16.614840px;}
.wsd{word-spacing:-16.305900px;}
.ws12{word-spacing:-15.151500px;}
.ws9{word-spacing:-15.085950px;}
.ws15{word-spacing:-15.007200px;}
.ws7{word-spacing:-14.883000px;}
.ws14{word-spacing:-14.114792px;}
.ws26{word-spacing:-12.721500px;}
.ws24{word-spacing:-12.660750px;}
.ws22{word-spacing:-11.929571px;}
.ws25{word-spacing:-11.187000px;}
.ws28{word-spacing:-3.082650px;}
.ws8{word-spacing:-0.473550px;}
.ws1{word-spacing:0.000000px;}
.ws27{word-spacing:2.883000px;}
.ws1e{word-spacing:21.101850px;}
.ws17{word-spacing:121.953243px;}
.ws13{word-spacing:129.783416px;}
.ws18{word-spacing:135.308734px;}
.wse{word-spacing:220.188750px;}
.ws20{word-spacing:1311.987900px;}
._96{margin-left:-5465.430982px;}
._97{margin-left:-5454.656319px;}
._93{margin-left:-5449.427872px;}
._94{margin-left:-5429.756914px;}
._85{margin-left:-5418.938416px;}
._88{margin-left:-5391.112108px;}
._86{margin-left:-5384.839995px;}
._8f{margin-left:-5378.875197px;}
._91{margin-left:-5337.685235px;}
._89{margin-left:-5323.684787px;}
._87{margin-left:-5309.529723px;}
._8b{margin-left:-5279.051702px;}
._8d{margin-left:-5239.009448px;}
._8c{margin-left:-5231.485585px;}
._92{margin-left:-5213.510135px;}
._95{margin-left:-5065.040846px;}
._8e{margin-left:-5007.017835px;}
._98{margin-left:-4982.438276px;}
._90{margin-left:-4888.963843px;}
._58{margin-left:-4842.786708px;}
._59{margin-left:-4833.214507px;}
._55{margin-left:-4828.549299px;}
._82{margin-left:-4823.104825px;}
._80{margin-left:-4818.481798px;}
._56{margin-left:-4811.148022px;}
._47{margin-left:-4801.606998px;}
._73{margin-left:-4791.470265px;}
._4a{margin-left:-4776.919332px;}
._48{margin-left:-4771.269567px;}
._51{margin-left:-4766.062894px;}
._74{margin-left:-4761.290658px;}
._7c{margin-left:-4756.094909px;}
._53{margin-left:-4729.565410px;}
._7e{margin-left:-4719.706875px;}
._4b{margin-left:-4717.080015px;}
._30{margin-left:-4716.040892px;}
._8a{margin-left:-4714.506934px;}
._76{margin-left:-4707.247769px;}
._49{margin-left:-4704.602335px;}
._75{margin-left:-4694.764169px;}
._26{margin-left:-4680.713940px;}
._4d{margin-left:-4677.564057px;}
._78{margin-left:-4667.815303px;}
._4f{margin-left:-4642.083530px;}
._4e{margin-left:-4635.449207px;}
._7a{margin-left:-4632.409679px;}
._79{margin-left:-4625.757030px;}
._54{margin-left:-4619.540380px;}
._7f{margin-left:-4609.881789px;}
._57{margin-left:-4488.013842px;}
._81{margin-left:-4478.632918px;}
._50{margin-left:-4436.600977px;}
._7b{margin-left:-4427.328591px;}
._5a{margin-left:-4414.792882px;}
._28{margin-left:-4407.003330px;}
._83{margin-left:-4405.566536px;}
._2b{margin-left:-4404.228632px;}
._2d{margin-left:-4383.380056px;}
._1d{margin-left:-4373.485106px;}
._20{margin-left:-4370.996670px;}
._27{margin-left:-4354.061885px;}
._2e{margin-left:-4352.523108px;}
._22{margin-left:-4350.183343px;}
._2a{margin-left:-4346.940041px;}
._52{margin-left:-4331.967322px;}
._7d{margin-left:-4322.915829px;}
._1c{margin-left:-4321.264192px;}
._24{margin-left:-4318.685193px;}
._23{margin-left:-4315.876499px;}
._1f{margin-left:-4312.838108px;}
._2c{margin-left:-4221.184991px;}
._21{margin-left:-4188.527365px;}
._4c{margin-left:-4177.366229px;}
._77{margin-left:-4168.641117px;}
._6e{margin-left:-4145.650804px;}
._6f{margin-left:-4137.428864px;}
._6b{margin-left:-4133.462988px;}
._6c{margin-left:-4118.566767px;}
._5d{margin-left:-4110.376181px;}
._29{margin-left:-4097.568068px;}
._60{margin-left:-4089.237843px;}
._5e{margin-left:-4084.401408px;}
._67{margin-left:-4079.972014px;}
._1e{margin-left:-4065.608222px;}
._69{margin-left:-4048.728643px;}
._61{margin-left:-4038.068359px;}
._2f{margin-left:-4028.613205px;}
._5f{margin-left:-4027.331473px;}
._63{margin-left:-4004.213312px;}
._25{margin-left:-3997.999508px;}
._65{margin-left:-3973.840499px;}
._64{margin-left:-3968.133506px;}
._6a{margin-left:-3954.514885px;}
._42{margin-left:-3938.449602px;}
._43{margin-left:-3930.638595px;}
._3f{margin-left:-3926.870933px;}
._40{margin-left:-3912.719225px;}
._31{margin-left:-3904.939623px;}
._34{margin-left:-3884.888560px;}
._32{margin-left:-3880.267186px;}
._3b{margin-left:-3876.053438px;}
._3d{margin-left:-3846.371610px;}
._6d{margin-left:-3841.922674px;}
._35{margin-left:-3836.244126px;}
._33{margin-left:-3826.043870px;}
._37{margin-left:-3804.081155px;}
._66{margin-left:-3797.911114px;}
._70{margin-left:-3779.242474px;}
._39{margin-left:-3775.226375px;}
._38{margin-left:-3769.837017px;}
._3e{margin-left:-3756.866655px;}
._68{margin-left:-3708.340334px;}
._41{margin-left:-3649.901801px;}
._3a{margin-left:-3608.089938px;}
._44{margin-left:-3590.386756px;}
._62{margin-left:-3575.995340px;}
._3c{margin-left:-3522.963504px;}
._36{margin-left:-3397.297912px;}
._9a{margin-left:-1008.578061px;}
._5c{margin-left:-893.487949px;}
._84{margin-left:-891.692543px;}
._72{margin-left:-764.658518px;}
._46{margin-left:-727.757997px;}
._99{margin-left:-350.959176px;}
._5b{margin-left:-310.948698px;}
._71{margin-left:-266.185076px;}
._45{margin-left:-252.881148px;}
._11{margin-left:-41.867262px;}
._9d{margin-left:-35.288295px;}
._9c{margin-left:-22.084650px;}
._9b{margin-left:-8.924850px;}
._8{margin-left:-7.369800px;}
._5{margin-left:-5.535600px;}
._1{margin-left:-3.966000px;}
._3{margin-left:-2.570100px;}
._4{margin-left:-1.420500px;}
._0{width:1.388100px;}
._6{width:2.660850px;}
._2{width:3.767700px;}
._7{width:4.852290px;}
._c{width:6.321387px;}
._a{width:7.979543px;}
._e{width:10.003134px;}
._f{width:11.929851px;}
._b{width:13.087230px;}
._d{width:14.481829px;}
._10{width:16.708620px;}
._9{width:17.814300px;}
._12{width:20.105992px;}
._a2{width:37.805199px;}
._18{width:43.316588px;}
._17{width:44.969761px;}
._19{width:46.072271px;}
._9e{width:218.562818px;}
._13{width:260.415598px;}
._a1{width:458.253840px;}
._a3{width:471.147536px;}
._a0{width:473.527378px;}
._16{width:546.200711px;}
._1a{width:560.174998px;}
._15{width:563.376700px;}
._a4{width:568.497040px;}
._1b{width:676.753573px;}
._9f{width:930.407402px;}
._14{width:1108.571904px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(197,90,17);}
.fc5{color:rgb(137,137,137);}
.fc3{color:rgb(215,171,169);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2f{font-size:29.100632px;}
.fs36{font-size:31.500000px;}
.fs34{font-size:31.650000px;}
.fs2e{font-size:42.912125px;}
.fs30{font-size:42.940523px;}
.fs19{font-size:46.650364px;}
.fs26{font-size:48.643671px;}
.fs35{font-size:49.500000px;}
.fs33{font-size:49.650000px;}
.fs1d{font-size:49.838192px;}
.fs18{font-size:50.092465px;}
.fs1c{font-size:50.772634px;}
.fs23{font-size:52.229475px;}
.fs1f{font-size:52.653420px;}
.fs2d{font-size:54.150000px;}
.fs31{font-size:55.135201px;}
.fs3d{font-size:61.617708px;}
.fs22{font-size:63.150000px;}
.fs1b{font-size:64.499996px;}
.fs20{font-size:64.664511px;}
.fs24{font-size:64.875461px;}
.fs1e{font-size:66.556652px;}
.fs1a{font-size:66.694639px;}
.fs25{font-size:67.252499px;}
.fs5{font-size:67.650000px;}
.fs21{font-size:67.798386px;}
.fs14{font-size:68.347889px;}
.fs17{font-size:69.077421px;}
.fs6{font-size:72.150000px;}
.fsd{font-size:73.416935px;}
.fs38{font-size:73.525149px;}
.fs3e{font-size:80.078438px;}
.fs1{font-size:85.650000px;}
.fs32{font-size:85.800000px;}
.fs8{font-size:87.604542px;}
.fs28{font-size:91.894204px;}
.fse{font-size:95.412726px;}
.fs13{font-size:95.644793px;}
.fs2a{font-size:96.728704px;}
.fs16{font-size:96.799109px;}
.fs12{font-size:104.025726px;}
.fs15{font-size:105.461046px;}
.fs2{font-size:108.150000px;}
.fs3c{font-size:110.290721px;}
.fs2b{font-size:112.756762px;}
.fs29{font-size:112.995308px;}
.fs11{font-size:121.650000px;}
.fs2c{font-size:127.523101px;}
.fsc{font-size:131.410385px;}
.fs3b{font-size:135.148853px;}
.fsb{font-size:161.028621px;}
.fs3a{font-size:171.908429px;}
.fs27{font-size:180.300000px;}
.fs4{font-size:180.450000px;}
.fs3f{font-size:187.089517px;}
.fs0{font-size:198.300000px;}
.fs3{font-size:198.450000px;}
.fsa{font-size:204.827320px;}
.fs7{font-size:216.300000px;}
.fs39{font-size:220.731335px;}
.fsf{font-size:222.915447px;}
.fs9{font-size:262.999365px;}
.fs40{font-size:267.611636px;}
.fs37{font-size:270.450000px;}
.fs10{font-size:318.856816px;}
.y109{bottom:-1646.523300px;}
.y108{bottom:-1609.428565px;}
.y11f{bottom:-1501.540731px;}
.ybe{bottom:-1484.550505px;}
.ybd{bottom:-1451.681707px;}
.y11e{bottom:-1428.147286px;}
.y11d{bottom:-1391.264825px;}
.yd4{bottom:-1356.084761px;}
.y11c{bottom:-1354.170090px;}
.y11b{bottom:-1317.897914px;}
.yd3{bottom:-1291.052506px;}
.y11a{bottom:-1280.803179px;}
.yd2{bottom:-1258.371799px;}
.y119{bottom:-1244.504469px;}
.yef{bottom:-1238.283217px;}
.yd1{bottom:-1225.503001px;}
.y118{bottom:-1207.436268px;}
.yee{bottom:-1205.483809px;}
.yd0{bottom:-1193.363054px;}
.ya5{bottom:-1192.655222px;}
.y117{bottom:-1171.137558px;}
.ya4{bottom:-1165.943569px;}
.ycf{bottom:-1160.494257px;}
.y116{bottom:-1134.042823px;}
.yce{bottom:-1128.330798px;}
.y105{bottom:-1110.088679px;}
.y115{bottom:-1097.744113px;}
.ycd{bottom:-1095.485512px;}
.ybb{bottom:-1088.179580px;}
.yd7{bottom:-1068.363101px;}
.ycc{bottom:-1063.322054px;}
.y114{bottom:-1060.596310px;}
.y104{bottom:-1045.193714px;}
.yd6{bottom:-1040.226037px;}
.yba{bottom:-1035.310776px;}
.ycb{bottom:-1030.453256px;}
.y113{bottom:-1024.297599px;}
.y103{bottom:-1012.582000px;}
.yb9{bottom:-1008.732968px;}
.yca{bottom:-998.289798px;}
.y112{bottom:-987.229399px;}
.yb8{bottom:-982.002195px;}
.y102{bottom:-979.806054px;}
.yc9{bottom:-965.373978px;}
.yed{bottom:-958.391058px;}
.yb7{bottom:-955.845043px;}
.y111{bottom:-950.930689px;}
.y101{bottom:-947.710496px;}
.yc8{bottom:-933.210520px;}
.yb6{bottom:-929.133390px;}
.y100{bottom:-914.911088px;}
.y110{bottom:-913.835954px;}
.yb5{bottom:-902.976238px;}
.yec{bottom:-902.720730px;}
.yc7{bottom:-900.365233px;}
.yff{bottom:-882.815531px;}
.y10f{bottom:-877.537243px;}
.yb4{bottom:-876.245465px;}
.yeb{bottom:-874.744680px;}
.yc6{bottom:-868.201775px;}
.yb3{bottom:-850.088313px;}
.yfe{bottom:-850.039585px;}
.yea{bottom:-846.607616px;}
.y10e{bottom:-840.469043px;}
.yc5{bottom:-835.332978px;}
.yb2{bottom:-823.376660px;}
.ye9{bottom:-819.094479px;}
.yfd{bottom:-817.944027px;}
.y10d{bottom:-804.170333px;}
.yc4{bottom:-803.169519px;}
.yb1{bottom:-797.219508px;}
.ye8{bottom:-790.957415px;}
.yfc{bottom:-785.144619px;}
.yb0{bottom:-770.450493px;}
.yc3{bottom:-770.324233px;}
.y10c{bottom:-767.075598px;}
.ye7{bottom:-763.424151px;}
.yfb{bottom:-753.049062px;}
.yaf{bottom:-744.293341px;}
.yc2{bottom:-738.160775px;}
.ye6{bottom:-735.307214px;}
.y10b{bottom:-730.803422px;}
.yfa{bottom:-720.202731px;}
.yae{bottom:-717.562568px;}
.ye5{bottom:-707.773950px;}
.yc1{bottom:-705.291977px;}
.yad{bottom:-691.424537px;}
.yf9{bottom:-688.107173px;}
.ye4{bottom:-679.636886px;}
.yc0{bottom:-673.152030px;}
.yac{bottom:-664.693763px;}
.yf8{bottom:-655.331227px;}
.ye3{bottom:-652.103622px;}
.yab{bottom:-638.536611px;}
.y10a{bottom:-632.441346px;}
.ye2{bottom:-623.926305px;}
.yf7{bottom:-623.235669px;}
.yaa{bottom:-611.824959px;}
.ye1{bottom:-596.393041px;}
.y4f{bottom:-593.028888px;}
.yf6{bottom:-590.436261px;}
.ybf{bottom:-585.995641px;}
.ya9{bottom:-585.667807px;}
.ye0{bottom:-568.276104px;}
.y4e{bottom:-562.769220px;}
.ya8{bottom:-558.937033px;}
.yf5{bottom:-558.364165px;}
.ydf{bottom:-540.742840px;}
.y5c{bottom:-538.873173px;}
.ya7{bottom:-532.779881px;}
.yf4{bottom:-525.564758px;}
.yde{bottom:-512.605776px;}
.yf3{bottom:-493.469200px;}
.ydd{bottom:-485.072512px;}
.ya6{bottom:-461.918475px;}
.yf2{bottom:-460.693254px;}
.ydc{bottom:-456.955575px;}
.ydb{bottom:-429.422311px;}
.yf1{bottom:-428.597696px;}
.yda{bottom:-401.285247px;}
.yd9{bottom:-373.772110px;}
.yf0{bottom:-341.625304px;}
.yd8{bottom:-299.162600px;}
.y5f{bottom:-51.103684px;}
.y32{bottom:-48.902646px;}
.y161{bottom:-41.043200px;}
.y34{bottom:-33.118826px;}
.y163{bottom:-27.796173px;}
.y31{bottom:-22.301241px;}
.y5e{bottom:-20.463281px;}
.y160{bottom:-18.717049px;}
.y0{bottom:0.000000px;}
.y96{bottom:0.870534px;}
.y15b{bottom:1.041908px;}
.y2c{bottom:1.241464px;}
.y7e{bottom:1.286751px;}
.y6c{bottom:3.735406px;}
.y7c{bottom:4.674781px;}
.ya0{bottom:4.869410px;}
.y15f{bottom:5.395366px;}
.y80{bottom:5.880182px;}
.y30{bottom:6.428469px;}
.y128{bottom:7.889451px;}
.y94{bottom:8.639164px;}
.y8b{bottom:9.750000px;}
.y106{bottom:10.050000px;}
.y13e{bottom:11.250150px;}
.y15d{bottom:11.721432px;}
.y81{bottom:13.260101px;}
.y2e{bottom:13.966019px;}
.y15a{bottom:15.601515px;}
.y162{bottom:15.824865px;}
.y15e{bottom:16.308570px;}
.yd{bottom:17.887500px;}
.y125{bottom:18.975000px;}
.y5d{bottom:19.125000px;}
.y124{bottom:22.912500px;}
.y70{bottom:27.948804px;}
.yd5{bottom:28.125000px;}
.y97{bottom:29.136524px;}
.y8d{bottom:29.258176px;}
.y7{bottom:29.812500px;}
.y15c{bottom:30.474452px;}
.y127{bottom:31.477872px;}
.y7f{bottom:36.200269px;}
.y2d{bottom:36.310070px;}
.y98{bottom:41.969780px;}
.y177{bottom:46.661456px;}
.y71{bottom:50.792493px;}
.y6e{bottom:51.562500px;}
.ya1{bottom:51.832609px;}
.y7a{bottom:52.189683px;}
.y82{bottom:53.900840px;}
.y6{bottom:55.200000px;}
.y48{bottom:55.596649px;}
.y129{bottom:57.924542px;}
.y12f{bottom:58.799752px;}
.y8e{bottom:62.137851px;}
.y144{bottom:63.193665px;}
.y159{bottom:64.147739px;}
.y7b{bottom:66.002512px;}
.y79{bottom:66.486155px;}
.y99{bottom:72.453783px;}
.y178{bottom:73.500000px;}
.y2a{bottom:76.431623px;}
.y5{bottom:77.737500px;}
.y176{bottom:79.666232px;}
.y78{bottom:80.784060px;}
.y175{bottom:81.265582px;}
.y12a{bottom:90.496909px;}
.y72{bottom:92.984031px;}
.y9f{bottom:94.477529px;}
.y47{bottom:94.921537px;}
.y77{bottom:95.081965px;}
.y83{bottom:95.129697px;}
.y46{bottom:96.827149px;}
.y158{bottom:98.045873px;}
.y93{bottom:100.216783px;}
.y4{bottom:101.400000px;}
.y8f{bottom:102.080721px;}
.y9a{bottom:102.883624px;}
.y133{bottom:104.226176px;}
.y130{bottom:104.456494px;}
.y76{bottom:109.377721px;}
.y88{bottom:109.515420px;}
.y174{bottom:113.822180px;}
.y29{bottom:116.820939px;}
.y12b{bottom:123.070043px;}
.y3{bottom:123.975000px;}
.y157{bottom:131.833086px;}
.y9b{bottom:133.370428px;}
.y73{bottom:135.231457px;}
.y45{bottom:135.618037px;}
.y107{bottom:136.125000px;}
.y173{bottom:136.335997px;}
.y84{bottom:137.162671px;}
.y90{bottom:142.023591px;}
.y131{bottom:151.036045px;}
.y12c{bottom:155.690776px;}
.y28{bottom:157.078094px;}
.y44{bottom:162.443044px;}
.y9c{bottom:163.800269px;}
.y156{bottom:165.286040px;}
.y172{bottom:168.637777px;}
.y2{bottom:171.450000px;}
.y74{bottom:177.424428px;}
.y85{bottom:179.193507px;}
.y91{bottom:181.964579px;}
.y12d{bottom:188.263142px;}
.y9d{bottom:194.287073px;}
.y27{bottom:196.936982px;}
.y132{bottom:197.570300px;}
.y4c{bottom:197.925000px;}
.y155{bottom:199.221646px;}
.y43{bottom:200.930320px;}
.y4b{bottom:209.775000px;}
.y75{bottom:219.618116px;}
.y13d{bottom:220.470000px;}
.y12e{bottom:220.836276px;}
.y13c{bottom:221.100000px;}
.y86{bottom:221.170878px;}
.y92{bottom:221.907449px;}
.y126{bottom:223.005000px;}
.y1{bottom:224.445000px;}
.y9e{bottom:224.715047px;}
.y154{bottom:232.677597px;}
.y26{bottom:237.370947px;}
.ybc{bottom:240.750000px;}
.y8c{bottom:243.877500px;}
.y121{bottom:251.145000px;}
.y87{bottom:263.203139px;}
.y89{bottom:264.825000px;}
.y153{bottom:266.463312px;}
.y4d{bottom:271.125000px;}
.y25{bottom:277.233407px;}
.y137{bottom:281.670000px;}
.y6f{bottom:283.258200px;}
.y135{bottom:283.425000px;}
.y152{bottom:300.024188px;}
.y136{bottom:307.620000px;}
.y134{bottom:309.375000px;}
.y5b{bottom:313.700550px;}
.y24{bottom:317.488776px;}
.y151{bottom:333.809902px;}
.y23{bottom:357.476252px;}
.y150{bottom:367.265853px;}
.y4a{bottom:367.770000px;}
.y5a{bottom:373.570537px;}
.yf{bottom:391.500000px;}
.y2b{bottom:396.684750px;}
.y33{bottom:396.950850px;}
.y13a{bottom:397.155000px;}
.y2f{bottom:397.527300px;}
.y22{bottom:397.731622px;}
.y14f{bottom:401.156492px;}
.y139{bottom:411.825000px;}
.y138{bottom:426.495000px;}
.y59{bottom:433.418879px;}
.y14e{bottom:434.987174px;}
.y171{bottom:436.962751px;}
.y21{bottom:437.594082px;}
.y15{bottom:453.390450px;}
.y13b{bottom:454.995000px;}
.y170{bottom:461.440156px;}
.y49{bottom:462.675000px;}
.yc{bottom:468.030000px;}
.y14d{bottom:468.428136px;}
.y120{bottom:471.945000px;}
.y20{bottom:477.974468px;}
.yb{bottom:491.445000px;}
.y58{bottom:493.288866px;}
.y8a{bottom:495.375000px;}
.y16f{bottom:496.050277px;}
.y14c{bottom:502.333764px;}
.ya3{bottom:505.950000px;}
.y95{bottom:515.175000px;}
.y9{bottom:517.380000px;}
.y1f{bottom:518.283416px;}
.y42{bottom:520.637178px;}
.y123{bottom:525.195000px;}
.y122{bottom:529.125000px;}
.y16e{bottom:530.495518px;}
.ye{bottom:533.925000px;}
.y8{bottom:534.900000px;}
.y14b{bottom:535.789715px;}
.y6d{bottom:542.175000px;}
.y149{bottom:548.554687px;}
.y41{bottom:549.801782px;}
.y7d{bottom:551.250000px;}
.y57{bottom:553.202143px;}
.ya2{bottom:554.400000px;}
.y1e{bottom:558.128016px;}
.ya{bottom:560.400000px;}
.y16d{bottom:565.105639px;}
.y14a{bottom:569.575430px;}
.y148{bottom:576.164840px;}
.y40{bottom:591.039425px;}
.y1d{bottom:598.526261px;}
.y16c{bottom:599.715761px;}
.y56{bottom:621.816698px;}
.y16b{bottom:622.106817px;}
.y3f{bottom:632.080614px;}
.y1c{bottom:638.388721px;}
.y1a{bottom:653.597841px;}
.y147{bottom:671.891883px;}
.y55{bottom:672.920472px;}
.y3e{bottom:673.318257px;}
.y1b{bottom:678.644090px;}
.y19{bottom:686.495086px;}
.y3d{bottom:714.555900px;}
.y146{bottom:727.411974px;}
.y145{bottom:728.125608px;}
.y54{bottom:732.768814px;}
.y3c{bottom:741.234530px;}
.y16a{bottom:757.447381px;}
.y169{bottom:792.012535px;}
.y53{bottom:792.617156px;}
.y18{bottom:800.553208px;}
.y168{bottom:826.622657px;}
.y52{bottom:852.487143px;}
.y167{bottom:861.112865px;}
.y17{bottom:866.704889px;}
.y6b{bottom:866.826119px;}
.y16{bottom:867.554950px;}
.y143{bottom:885.218540px;}
.y166{bottom:895.722986px;}
.y3b{bottom:902.491682px;}
.y51{bottom:912.335486px;}
.y6a{bottom:927.407340px;}
.y165{bottom:930.318119px;}
.y3a{bottom:943.675747px;}
.y142{bottom:952.460206px;}
.y164{bottom:959.502141px;}
.y50{bottom:972.248762px;}
.y39{bottom:984.913390px;}
.y69{bottom:988.032176px;}
.y141{bottom:1009.943886px;}
.y38{bottom:1026.008157px;}
.y140{bottom:1032.352778px;}
.y68{bottom:1048.613397px;}
.y14{bottom:1054.729968px;}
.y13f{bottom:1054.791648px;}
.y37{bottom:1067.245800px;}
.y36{bottom:1108.465584px;}
.y67{bottom:1109.238233px;}
.y13{bottom:1134.847797px;}
.y35{bottom:1143.238079px;}
.y66{bottom:1178.695105px;}
.y12{bottom:1203.339075px;}
.y11{bottom:1230.039065px;}
.y65{bottom:1230.466098px;}
.y10{bottom:1256.774774px;}
.y64{bottom:1291.025511px;}
.y63{bottom:1351.606733px;}
.y62{bottom:1412.253376px;}
.y61{bottom:1472.812790px;}
.y60{bottom:1533.459433px;}
.h5a{height:0.929332px;}
.hf{height:1.107290px;}
.h4f{height:31.283106px;}
.h51{height:31.303809px;}
.h50{height:31.405952px;}
.h2a{height:34.008297px;}
.h3c{height:35.461426px;}
.h55{height:35.529785px;}
.h54{height:35.637451px;}
.h30{height:36.332237px;}
.h29{height:36.517603px;}
.h2f{height:37.013448px;}
.h39{height:38.075491px;}
.h34{height:38.384549px;}
.h4d{height:38.867432px;}
.h52{height:40.193777px;}
.h5f{height:44.227554px;}
.h37{height:45.327393px;}
.h2c{height:47.020749px;}
.h35{height:47.140681px;}
.h9{height:47.269116px;}
.h3a{height:47.294465px;}
.h22{height:47.489768px;}
.h60{height:47.814135px;}
.h27{height:47.996665px;}
.h63{height:48.298140px;}
.h31{height:48.520059px;}
.h5e{height:48.521475px;}
.h32{height:48.557373px;}
.h2b{height:48.620652px;}
.h3b{height:49.027335px;}
.h36{height:49.425288px;}
.h61{height:50.261332px;}
.ha{height:51.787354px;}
.h14{height:52.696726px;}
.h58{height:52.774399px;}
.h57{height:52.872840px;}
.h67{height:54.741120px;}
.h15{height:56.970090px;}
.h64{height:57.478176px;}
.h18{height:57.546780px;}
.h13{height:57.812880px;}
.h2{height:58.549805px;}
.h16{height:59.885917px;}
.h7{height:61.477295px;}
.h53{height:61.584961px;}
.hd{height:62.880213px;}
.hc{height:62.997675px;}
.h3f{height:63.850319px;}
.h40{height:64.164410px;}
.h1c{height:65.223543px;}
.h45{height:67.209446px;}
.h46{height:67.540062px;}
.h19{height:68.484721px;}
.h62{height:70.006856px;}
.h20{height:72.279594px;}
.h25{height:73.276889px;}
.h1d{height:73.508203px;}
.h4{height:77.627197px;}
.h48{height:78.346129px;}
.h42{height:78.511876px;}
.h49{height:78.731528px;}
.h43{height:78.898091px;}
.h5d{height:79.163750px;}
.h3{height:81.551514px;}
.h21{height:82.468040px;}
.h23{height:82.814360px;}
.h17{height:83.412528px;}
.h26{height:83.499267px;}
.h8{height:85.189966px;}
.h1e{height:87.317139px;}
.h4b{height:88.606139px;}
.h4c{height:89.042009px;}
.h12{height:94.322884px;}
.h5c{height:97.006257px;}
.h11{height:115.582067px;}
.h3d{height:123.251953px;}
.h6{height:123.354492px;}
.h5b{height:123.391304px;}
.h65{height:127.893225px;}
.h1{height:135.556641px;}
.h5{height:135.659180px;}
.h10{height:147.019610px;}
.hb{height:147.861328px;}
.h1a{height:152.383607px;}
.h59{height:158.435089px;}
.he{height:188.773958px;}
.h2d{height:188.811035px;}
.h44{height:190.124400px;}
.h66{height:192.084524px;}
.h3e{height:220.500000px;}
.h47{height:221.625000px;}
.h1b{height:228.866953px;}
.h4e{height:239.625000px;}
.h41{height:253.099200px;}
.h56{height:257.508545px;}
.h1f{height:259.869600px;}
.h24{height:262.125000px;}
.h28{height:264.605400px;}
.h38{height:275.876550px;}
.h33{height:278.115900px;}
.h2e{height:294.585300px;}
.h4a{height:305.991750px;}
.h0{height:607.500000px;}
.w14{width:0.894144px;}
.w3{width:0.932671px;}
.w17{width:72.649335px;}
.w6{width:75.779640px;}
.w15{width:79.950585px;}
.w4{width:83.395485px;}
.w12{width:294.204750px;}
.w11{width:312.740100px;}
.w10{width:312.745200px;}
.wa{width:320.342850px;}
.w7{width:321.741750px;}
.we{width:326.250000px;}
.wb{width:346.559400px;}
.wc{width:347.689950px;}
.w9{width:357.459450px;}
.w8{width:370.125000px;}
.wf{width:397.608450px;}
.wd{width:411.746850px;}
.w16{width:547.559400px;}
.w5{width:571.152450px;}
.w13{width:626.617050px;}
.w2{width:653.616600px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x48{left:-821.140423px;}
.x4c{left:-582.000032px;}
.x1f{left:-457.889715px;}
.x1e{left:-406.311977px;}
.x4f{left:-341.632041px;}
.x47{left:-267.395681px;}
.x44{left:-257.915413px;}
.x4b{left:-109.233806px;}
.x24{left:-46.687917px;}
.x52{left:-35.810413px;}
.xa{left:-6.334380px;}
.x12{left:-3.380947px;}
.x0{left:0.000000px;}
.xc{left:1.748749px;}
.x23{left:5.761329px;}
.x6a{left:7.413320px;}
.xf{left:8.470612px;}
.x4{left:10.799984px;}
.x42{left:16.012484px;}
.x8{left:19.349984px;}
.x5d{left:23.984976px;}
.x3{left:27.787484px;}
.x2b{left:29.622140px;}
.x36{left:32.278719px;}
.x39{left:35.662484px;}
.x26{left:37.162484px;}
.x35{left:39.045287px;}
.x5c{left:40.204409px;}
.x40{left:43.137407px;}
.x2f{left:44.313185px;}
.x34{left:45.533119px;}
.x3c{left:48.707587px;}
.x2d{left:50.137484px;}
.x27{left:55.574984px;}
.x58{left:57.298251px;}
.x3b{left:58.514110px;}
.x30{left:61.506863px;}
.x59{left:66.993312px;}
.x9{left:68.625000px;}
.x10{left:70.490370px;}
.x68{left:73.170090px;}
.xd{left:76.322832px;}
.x3f{left:80.166505px;}
.x29{left:82.417741px;}
.x69{left:84.682620px;}
.x2a{left:92.977602px;}
.x1d{left:100.452760px;}
.x6b{left:102.937883px;}
.x11{left:107.373255px;}
.x31{left:117.855254px;}
.x72{left:134.924984px;}
.xe{left:151.089000px;}
.x5a{left:158.107125px;}
.x32{left:166.495139px;}
.x5b{left:167.802951px;}
.x2c{left:175.117509px;}
.x60{left:187.874984px;}
.x1a{left:194.069984px;}
.x5f{left:201.149984px;}
.x4e{left:208.911949px;}
.x41{left:235.738797px;}
.x19{left:249.074984px;}
.x67{left:253.705338px;}
.x33{left:257.284119px;}
.xb{left:264.636956px;}
.x65{left:278.174984px;}
.x1b{left:280.319984px;}
.x5e{left:288.830413px;}
.x4d{left:299.250000px;}
.x6e{left:311.680121px;}
.x49{left:317.263081px;}
.x43{left:318.375000px;}
.x15{left:325.109748px;}
.x21{left:361.125000px;}
.x6{left:366.329984px;}
.x1{left:370.844984px;}
.x5{left:374.369984px;}
.x55{left:381.299984px;}
.x1c{left:390.375000px;}
.x66{left:405.524984px;}
.x61{left:442.829984px;}
.x62{left:444.194984px;}
.x6f{left:478.595872px;}
.x70{left:491.547526px;}
.x16{left:499.217540px;}
.x17{left:512.727253px;}
.x22{left:520.958685px;}
.x71{left:563.044256px;}
.x6c{left:564.842779px;}
.x28{left:582.750000px;}
.x51{left:585.558650px;}
.x18{left:587.304624px;}
.x13{left:589.180646px;}
.x6d{left:591.769013px;}
.x14{left:617.267069px;}
.x4a{left:649.125000px;}
.x45{left:670.430314px;}
.x20{left:686.963785px;}
.x3a{left:690.750000px;}
.x3e{left:695.250000px;}
.x7{left:700.904984px;}
.x46{left:726.750000px;}
.x57{left:748.125000px;}
.x2e{left:758.250000px;}
.x50{left:790.196736px;}
.x38{left:801.119984px;}
.x64{left:807.794984px;}
.x63{left:836.369984px;}
.x3d{left:840.569984px;}
.x54{left:863.774984px;}
.x2{left:895.379984px;}
.x37{left:975.224984px;}
.x56{left:982.319984px;}
.x25{left:1117.256482px;}
.x53{left:1241.633747px;}
@media print{
.v3{vertical-align:-31.168757pt;}
.v5{vertical-align:-10.381318pt;}
.v6{vertical-align:-8.000000pt;}
.v1{vertical-align:-6.775507pt;}
.v8{vertical-align:-5.686579pt;}
.v4{vertical-align:-2.773333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.000000pt;}
.v2{vertical-align:31.091797pt;}
.ls6{letter-spacing:-2.998800pt;}
.lsd{letter-spacing:-1.804000pt;}
.ls17{letter-spacing:-1.730133pt;}
.ls3b{letter-spacing:-1.539200pt;}
.ls9{letter-spacing:-1.446533pt;}
.ls14{letter-spacing:-1.154400pt;}
.ls40{letter-spacing:-1.056000pt;}
.ls23{letter-spacing:-1.026133pt;}
.ls7{letter-spacing:-0.989733pt;}
.lsb{letter-spacing:-0.481200pt;}
.ls3a{letter-spacing:-0.404320pt;}
.lsf{letter-spacing:-0.324720pt;}
.ls3{letter-spacing:-0.304533pt;}
.ls11{letter-spacing:-0.300667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.001700pt;}
.ls31{letter-spacing:0.002359pt;}
.ls2e{letter-spacing:0.004171pt;}
.ls2c{letter-spacing:0.016996pt;}
.ls2f{letter-spacing:0.020855pt;}
.ls30{letter-spacing:0.023586pt;}
.ls36{letter-spacing:0.034978pt;}
.ls25{letter-spacing:0.040133pt;}
.ls1c{letter-spacing:0.044584pt;}
.ls32{letter-spacing:0.058965pt;}
.ls3e{letter-spacing:0.076339pt;}
.ls26{letter-spacing:0.088601pt;}
.ls24{letter-spacing:0.089053pt;}
.ls2b{letter-spacing:0.093606pt;}
.ls35{letter-spacing:0.098120pt;}
.ls19{letter-spacing:0.140452pt;}
.ls4{letter-spacing:0.154933pt;}
.ls34{letter-spacing:0.159733pt;}
.ls10{letter-spacing:0.180400pt;}
.ls5{letter-spacing:0.229320pt;}
.ls18{letter-spacing:0.288400pt;}
.ls1f{letter-spacing:0.293600pt;}
.ls2{letter-spacing:0.304533pt;}
.lse{letter-spacing:0.360800pt;}
.ls43{letter-spacing:0.384800pt;}
.ls38{letter-spacing:0.470667pt;}
.ls15{letter-spacing:0.513067pt;}
.ls37{letter-spacing:0.563067pt;}
.ls1e{letter-spacing:0.624179pt;}
.ls1d{letter-spacing:0.673803pt;}
.ls1b{letter-spacing:0.714957pt;}
.ls1a{letter-spacing:0.791917pt;}
.ls21{letter-spacing:0.864360pt;}
.ls20{letter-spacing:0.882000pt;}
.lsa{letter-spacing:0.913600pt;}
.ls8{letter-spacing:0.966893pt;}
.ls3d{letter-spacing:0.989733pt;}
.ls12{letter-spacing:1.026133pt;}
.ls45{letter-spacing:1.202000pt;}
.ls13{letter-spacing:1.218533pt;}
.ls3f{letter-spacing:1.279867pt;}
.ls42{letter-spacing:1.320000pt;}
.ls33{letter-spacing:1.346800pt;}
.ls41{letter-spacing:1.364000pt;}
.ls28{letter-spacing:1.443200pt;}
.lsc{letter-spacing:1.539413pt;}
.ls27{letter-spacing:1.563467pt;}
.ls22{letter-spacing:1.731600pt;}
.ls0{letter-spacing:1.780293pt;}
.ls29{letter-spacing:1.859867pt;}
.ls44{letter-spacing:1.988996pt;}
.ls16{letter-spacing:2.369871pt;}
.ls3c{letter-spacing:4.035067pt;}
.ls39{letter-spacing:14.508533pt;}
.ls2a{letter-spacing:134.867771pt;}
.ws1d{word-spacing:-113.353867pt;}
.ws1a{word-spacing:-100.440274pt;}
.ws1c{word-spacing:-100.228233pt;}
.ws1b{word-spacing:-85.981070pt;}
.ws19{word-spacing:-81.683737pt;}
.ws1f{word-spacing:-76.133333pt;}
.ws10{word-spacing:-40.748400pt;}
.ws2{word-spacing:-40.095720pt;}
.ws3{word-spacing:-36.867600pt;}
.wsf{word-spacing:-22.708000pt;}
.ws29{word-spacing:-21.241200pt;}
.ws21{word-spacing:-18.195867pt;}
.wsc{word-spacing:-17.598779pt;}
.ws23{word-spacing:-17.236267pt;}
.ws0{word-spacing:-17.206133pt;}
.ws16{word-spacing:-16.354000pt;}
.ws11{word-spacing:-16.225733pt;}
.ws4{word-spacing:-16.216400pt;}
.ws5{word-spacing:-15.759600pt;}
.wsa{word-spacing:-15.712667pt;}
.wsb{word-spacing:-15.007200pt;}
.ws2a{word-spacing:-14.770385pt;}
.ws6{word-spacing:-14.768747pt;}
.wsd{word-spacing:-14.494133pt;}
.ws12{word-spacing:-13.468000pt;}
.ws9{word-spacing:-13.409733pt;}
.ws15{word-spacing:-13.339733pt;}
.ws7{word-spacing:-13.229333pt;}
.ws14{word-spacing:-12.546482pt;}
.ws26{word-spacing:-11.308000pt;}
.ws24{word-spacing:-11.254000pt;}
.ws22{word-spacing:-10.604063pt;}
.ws25{word-spacing:-9.944000pt;}
.ws28{word-spacing:-2.740133pt;}
.ws8{word-spacing:-0.420933pt;}
.ws1{word-spacing:0.000000pt;}
.ws27{word-spacing:2.562667pt;}
.ws1e{word-spacing:18.757200pt;}
.ws17{word-spacing:108.402883pt;}
.ws13{word-spacing:115.363036pt;}
.ws18{word-spacing:120.274430pt;}
.wse{word-spacing:195.723333pt;}
.ws20{word-spacing:1166.211467pt;}
._96{margin-left:-4858.160873pt;}
._97{margin-left:-4848.583394pt;}
._93{margin-left:-4843.935886pt;}
._94{margin-left:-4826.450590pt;}
._85{margin-left:-4816.834148pt;}
._88{margin-left:-4792.099651pt;}
._86{margin-left:-4786.524440pt;}
._8f{margin-left:-4781.222397pt;}
._91{margin-left:-4744.609098pt;}
._89{margin-left:-4732.164255pt;}
._87{margin-left:-4719.581976pt;}
._8b{margin-left:-4692.490402pt;}
._8d{margin-left:-4656.897287pt;}
._8c{margin-left:-4650.209409pt;}
._92{margin-left:-4634.231231pt;}
._95{margin-left:-4502.258529pt;}
._8e{margin-left:-4450.682520pt;}
._98{margin-left:-4428.834023pt;}
._90{margin-left:-4345.745638pt;}
._58{margin-left:-4304.699296pt;}
._59{margin-left:-4296.190673pt;}
._55{margin-left:-4292.043822pt;}
._82{margin-left:-4287.204289pt;}
._80{margin-left:-4283.094932pt;}
._56{margin-left:-4276.576019pt;}
._47{margin-left:-4268.095109pt;}
._73{margin-left:-4259.084680pt;}
._4a{margin-left:-4246.150518pt;}
._48{margin-left:-4241.128504pt;}
._51{margin-left:-4236.500350pt;}
._74{margin-left:-4232.258363pt;}
._7c{margin-left:-4227.639919pt;}
._53{margin-left:-4204.058142pt;}
._7e{margin-left:-4195.295000pt;}
._4b{margin-left:-4192.960013pt;}
._30{margin-left:-4192.036349pt;}
._8a{margin-left:-4190.672831pt;}
._76{margin-left:-4184.220239pt;}
._49{margin-left:-4181.868743pt;}
._75{margin-left:-4173.123705pt;}
._26{margin-left:-4160.634613pt;}
._4d{margin-left:-4157.834717pt;}
._78{margin-left:-4149.169158pt;}
._4f{margin-left:-4126.296471pt;}
._4e{margin-left:-4120.399295pt;}
._7a{margin-left:-4117.697493pt;}
._79{margin-left:-4111.784027pt;}
._54{margin-left:-4106.258115pt;}
._7f{margin-left:-4097.672701pt;}
._57{margin-left:-3989.345637pt;}
._81{margin-left:-3981.007038pt;}
._50{margin-left:-3943.645312pt;}
._7b{margin-left:-3935.403192pt;}
._5a{margin-left:-3924.260340pt;}
._28{margin-left:-3917.336294pt;}
._83{margin-left:-3916.059143pt;}
._2b{margin-left:-3914.869895pt;}
._2d{margin-left:-3896.337828pt;}
._1d{margin-left:-3887.542316pt;}
._20{margin-left:-3885.330374pt;}
._27{margin-left:-3870.277231pt;}
._2e{margin-left:-3868.909430pt;}
._22{margin-left:-3866.829639pt;}
._2a{margin-left:-3863.946703pt;}
._52{margin-left:-3850.637619pt;}
._7d{margin-left:-3842.591848pt;}
._1c{margin-left:-3841.123726pt;}
._24{margin-left:-3838.831283pt;}
._23{margin-left:-3836.334666pt;}
._1f{margin-left:-3833.633874pt;}
._2c{margin-left:-3752.164436pt;}
._21{margin-left:-3723.135436pt;}
._4c{margin-left:-3713.214426pt;}
._77{margin-left:-3705.458771pt;}
._6e{margin-left:-3685.022937pt;}
._6f{margin-left:-3677.714546pt;}
._6b{margin-left:-3674.189322pt;}
._6c{margin-left:-3660.948237pt;}
._5d{margin-left:-3653.667716pt;}
._29{margin-left:-3642.282727pt;}
._60{margin-left:-3634.878083pt;}
._5e{margin-left:-3630.579029pt;}
._67{margin-left:-3626.641790pt;}
._1e{margin-left:-3613.873975pt;}
._69{margin-left:-3598.869905pt;}
._61{margin-left:-3589.394097pt;}
._2f{margin-left:-3580.989515pt;}
._5f{margin-left:-3579.850198pt;}
._63{margin-left:-3559.300722pt;}
._25{margin-left:-3553.777341pt;}
._65{margin-left:-3532.302666pt;}
._64{margin-left:-3527.229783pt;}
._6a{margin-left:-3515.124342pt;}
._42{margin-left:-3500.844091pt;}
._43{margin-left:-3493.900973pt;}
._3f{margin-left:-3490.551940pt;}
._40{margin-left:-3477.972645pt;}
._31{margin-left:-3471.057443pt;}
._34{margin-left:-3453.234276pt;}
._32{margin-left:-3449.126388pt;}
._3b{margin-left:-3445.380833pt;}
._3d{margin-left:-3418.996986pt;}
._6d{margin-left:-3415.042377pt;}
._35{margin-left:-3409.994779pt;}
._33{margin-left:-3400.927884pt;}
._37{margin-left:-3381.405471pt;}
._66{margin-left:-3375.920990pt;}
._70{margin-left:-3359.326643pt;}
._39{margin-left:-3355.756778pt;}
._38{margin-left:-3350.966237pt;}
._3e{margin-left:-3339.437026pt;}
._68{margin-left:-3296.302519pt;}
._41{margin-left:-3244.357156pt;}
._3a{margin-left:-3207.191056pt;}
._44{margin-left:-3191.454894pt;}
._62{margin-left:-3178.662525pt;}
._3c{margin-left:-3131.523115pt;}
._36{margin-left:-3019.820366pt;}
._9a{margin-left:-896.513832pt;}
._5c{margin-left:-794.211510pt;}
._84{margin-left:-792.615594pt;}
._72{margin-left:-679.696460pt;}
._46{margin-left:-646.895997pt;}
._99{margin-left:-311.963712pt;}
._5b{margin-left:-276.398843pt;}
._71{margin-left:-236.608956pt;}
._45{margin-left:-224.783243pt;}
._11{margin-left:-37.215344pt;}
._9d{margin-left:-31.367373pt;}
._9c{margin-left:-19.630800pt;}
._9b{margin-left:-7.933200pt;}
._8{margin-left:-6.550933pt;}
._5{margin-left:-4.920533pt;}
._1{margin-left:-3.525333pt;}
._3{margin-left:-2.284533pt;}
._4{margin-left:-1.262667pt;}
._0{width:1.233867pt;}
._6{width:2.365200pt;}
._2{width:3.349067pt;}
._7{width:4.313147pt;}
._c{width:5.619011pt;}
._a{width:7.092927pt;}
._e{width:8.891674pt;}
._f{width:10.604312pt;}
._b{width:11.633093pt;}
._d{width:12.872737pt;}
._10{width:14.852107pt;}
._9{width:15.834933pt;}
._12{width:17.871993pt;}
._a2{width:33.604622pt;}
._18{width:38.503634pt;}
._17{width:39.973121pt;}
._19{width:40.953129pt;}
._9e{width:194.278061pt;}
._13{width:231.480531pt;}
._a1{width:407.336746pt;}
._a3{width:418.797810pt;}
._a0{width:420.913225pt;}
._16{width:485.511743pt;}
._1a{width:497.933331pt;}
._15{width:500.779288pt;}
._a4{width:505.330702pt;}
._1b{width:601.558731pt;}
._9f{width:827.028801pt;}
._14{width:985.397248pt;}
.fs2f{font-size:25.867229pt;}
.fs36{font-size:28.000000pt;}
.fs34{font-size:28.133333pt;}
.fs2e{font-size:38.144111pt;}
.fs30{font-size:38.169354pt;}
.fs19{font-size:41.466990pt;}
.fs26{font-size:43.238819pt;}
.fs35{font-size:44.000000pt;}
.fs33{font-size:44.133333pt;}
.fs1d{font-size:44.300615pt;}
.fs18{font-size:44.526636pt;}
.fs1c{font-size:45.131230pt;}
.fs23{font-size:46.426200pt;}
.fs1f{font-size:46.803040pt;}
.fs2d{font-size:48.133333pt;}
.fs31{font-size:49.009067pt;}
.fs3d{font-size:54.771296pt;}
.fs22{font-size:56.133333pt;}
.fs1b{font-size:57.333330pt;}
.fs20{font-size:57.479565pt;}
.fs24{font-size:57.667077pt;}
.fs1e{font-size:59.161468pt;}
.fs1a{font-size:59.284123pt;}
.fs25{font-size:59.779999pt;}
.fs5{font-size:60.133333pt;}
.fs21{font-size:60.265232pt;}
.fs14{font-size:60.753679pt;}
.fs17{font-size:61.402152pt;}
.fs6{font-size:64.133333pt;}
.fsd{font-size:65.259498pt;}
.fs38{font-size:65.355688pt;}
.fs3e{font-size:71.180834pt;}
.fs1{font-size:76.133333pt;}
.fs32{font-size:76.266667pt;}
.fs8{font-size:77.870704pt;}
.fs28{font-size:81.683737pt;}
.fse{font-size:84.811312pt;}
.fs13{font-size:85.017594pt;}
.fs2a{font-size:85.981070pt;}
.fs16{font-size:86.043652pt;}
.fs12{font-size:92.467312pt;}
.fs15{font-size:93.743152pt;}
.fs2{font-size:96.133333pt;}
.fs3c{font-size:98.036197pt;}
.fs2b{font-size:100.228233pt;}
.fs29{font-size:100.440274pt;}
.fs11{font-size:108.133333pt;}
.fs2c{font-size:113.353867pt;}
.fsc{font-size:116.809231pt;}
.fs3b{font-size:120.132314pt;}
.fsb{font-size:143.136552pt;}
.fs3a{font-size:152.807493pt;}
.fs27{font-size:160.266667pt;}
.fs4{font-size:160.400000pt;}
.fs3f{font-size:166.301793pt;}
.fs0{font-size:176.266667pt;}
.fs3{font-size:176.400000pt;}
.fsa{font-size:182.068729pt;}
.fs7{font-size:192.266667pt;}
.fs39{font-size:196.205631pt;}
.fsf{font-size:198.147064pt;}
.fs9{font-size:233.777213pt;}
.fs40{font-size:237.877010pt;}
.fs37{font-size:240.400000pt;}
.fs10{font-size:283.428280pt;}
.y109{bottom:-1463.576266pt;}
.y108{bottom:-1430.603169pt;}
.y11f{bottom:-1334.702872pt;}
.ybe{bottom:-1319.600449pt;}
.ybd{bottom:-1290.383740pt;}
.y11e{bottom:-1269.464255pt;}
.y11d{bottom:-1236.679844pt;}
.yd4{bottom:-1205.408677pt;}
.y11c{bottom:-1203.706747pt;}
.y11b{bottom:-1171.464812pt;}
.yd3{bottom:-1147.602227pt;}
.y11a{bottom:-1138.491715pt;}
.yd2{bottom:-1118.552710pt;}
.y119{bottom:-1106.226194pt;}
.yef{bottom:-1100.696193pt;}
.yd1{bottom:-1089.336001pt;}
.y118{bottom:-1073.276683pt;}
.yee{bottom:-1071.541164pt;}
.yd0{bottom:-1060.767159pt;}
.ya5{bottom:-1060.137975pt;}
.y117{bottom:-1041.011163pt;}
.ya4{bottom:-1036.394284pt;}
.ycf{bottom:-1031.550450pt;}
.y116{bottom:-1008.038065pt;}
.yce{bottom:-1002.960710pt;}
.y105{bottom:-986.745493pt;}
.y115{bottom:-975.772545pt;}
.ycd{bottom:-973.764900pt;}
.ybb{bottom:-967.270738pt;}
.yd7{bottom:-949.656090pt;}
.ycc{bottom:-945.175159pt;}
.y114{bottom:-942.752275pt;}
.y104{bottom:-929.061079pt;}
.yd6{bottom:-924.645366pt;}
.yba{bottom:-920.276245pt;}
.ycb{bottom:-915.958450pt;}
.y113{bottom:-910.486755pt;}
.y103{bottom:-900.072889pt;}
.yb9{bottom:-896.651527pt;}
.yca{bottom:-887.368709pt;}
.y112{bottom:-877.537243pt;}
.yb8{bottom:-872.890840pt;}
.y102{bottom:-870.938714pt;}
.yc9{bottom:-858.110203pt;}
.yed{bottom:-851.903162pt;}
.yb7{bottom:-849.640038pt;}
.y111{bottom:-845.271723pt;}
.y101{bottom:-842.409330pt;}
.yc8{bottom:-829.520462pt;}
.yb6{bottom:-825.896347pt;}
.y100{bottom:-813.254301pt;}
.y110{bottom:-812.298626pt;}
.yb5{bottom:-802.645545pt;}
.yec{bottom:-802.418427pt;}
.yc7{bottom:-800.324652pt;}
.yff{bottom:-784.724916pt;}
.y10f{bottom:-780.033105pt;}
.yb4{bottom:-778.884857pt;}
.yeb{bottom:-777.550826pt;}
.yc6{bottom:-771.734911pt;}
.yb3{bottom:-755.634056pt;}
.yfe{bottom:-755.590742pt;}
.yea{bottom:-752.540103pt;}
.y10e{bottom:-747.083594pt;}
.yc5{bottom:-742.518202pt;}
.yb2{bottom:-731.890364pt;}
.ye9{bottom:-728.083981pt;}
.yfd{bottom:-727.061357pt;}
.y10d{bottom:-714.818073pt;}
.yc4{bottom:-713.928462pt;}
.yb1{bottom:-708.639563pt;}
.ye8{bottom:-703.073258pt;}
.yfc{bottom:-697.906328pt;}
.yb0{bottom:-684.844883pt;}
.yc3{bottom:-684.732652pt;}
.y10c{bottom:-681.844976pt;}
.ye7{bottom:-678.599245pt;}
.yfb{bottom:-669.376944pt;}
.yaf{bottom:-661.594081pt;}
.yc2{bottom:-656.142911pt;}
.ye6{bottom:-653.606412pt;}
.y10b{bottom:-649.603041pt;}
.yfa{bottom:-640.180205pt;}
.yae{bottom:-637.833394pt;}
.ye5{bottom:-629.132400pt;}
.yc1{bottom:-626.926202pt;}
.yad{bottom:-614.599588pt;}
.yf9{bottom:-611.650820pt;}
.ye4{bottom:-604.121676pt;}
.yc0{bottom:-598.357360pt;}
.yac{bottom:-590.838901pt;}
.yf8{bottom:-582.516646pt;}
.ye3{bottom:-579.647664pt;}
.yab{bottom:-567.588099pt;}
.y10a{bottom:-562.170085pt;}
.ye2{bottom:-554.601160pt;}
.yf7{bottom:-553.987261pt;}
.yaa{bottom:-543.844408pt;}
.ye1{bottom:-530.127148pt;}
.y4f{bottom:-527.136789pt;}
.yf6{bottom:-524.832232pt;}
.ybf{bottom:-520.885014pt;}
.ya9{bottom:-520.593606pt;}
.ye0{bottom:-505.134315pt;}
.y4e{bottom:-500.239307pt;}
.ya8{bottom:-496.832918pt;}
.yf5{bottom:-496.323703pt;}
.ydf{bottom:-480.660302pt;}
.y5c{bottom:-478.998376pt;}
.ya7{bottom:-473.582117pt;}
.yf4{bottom:-467.168673pt;}
.yde{bottom:-455.649579pt;}
.yf3{bottom:-438.639289pt;}
.ydd{bottom:-431.175566pt;}
.ya6{bottom:-410.594200pt;}
.yf2{bottom:-409.505115pt;}
.ydc{bottom:-406.182733pt;}
.ydb{bottom:-381.708721pt;}
.yf1{bottom:-380.975730pt;}
.yda{bottom:-356.697998pt;}
.yd9{bottom:-332.241876pt;}
.yf0{bottom:-303.666937pt;}
.yd8{bottom:-265.922311pt;}
.y5f{bottom:-45.425497pt;}
.y32{bottom:-43.469019pt;}
.y161{bottom:-36.482845pt;}
.y34{bottom:-29.438957pt;}
.y163{bottom:-24.707709pt;}
.y31{bottom:-19.823325pt;}
.y5e{bottom:-18.189583pt;}
.y160{bottom:-16.637377pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:0.773808pt;}
.y15b{bottom:0.926141pt;}
.y2c{bottom:1.103524pt;}
.y7e{bottom:1.143779pt;}
.y6c{bottom:3.320361pt;}
.y7c{bottom:4.155361pt;}
.ya0{bottom:4.328364pt;}
.y15f{bottom:4.795880pt;}
.y80{bottom:5.226829pt;}
.y30{bottom:5.714194pt;}
.y128{bottom:7.012845pt;}
.y94{bottom:7.679257pt;}
.y8b{bottom:8.666667pt;}
.y106{bottom:8.933333pt;}
.y13e{bottom:10.000133pt;}
.y15d{bottom:10.419050pt;}
.y81{bottom:11.786757pt;}
.y2e{bottom:12.414239pt;}
.y15a{bottom:13.868013pt;}
.y162{bottom:14.066547pt;}
.y15e{bottom:14.496507pt;}
.yd{bottom:15.900000pt;}
.y125{bottom:16.866667pt;}
.y5d{bottom:17.000000pt;}
.y124{bottom:20.366667pt;}
.y70{bottom:24.843381pt;}
.yd5{bottom:25.000000pt;}
.y97{bottom:25.899133pt;}
.y8d{bottom:26.007267pt;}
.y7{bottom:26.500000pt;}
.y15c{bottom:27.088401pt;}
.y127{bottom:27.980331pt;}
.y7f{bottom:32.178017pt;}
.y2d{bottom:32.275618pt;}
.y98{bottom:37.306471pt;}
.y177{bottom:41.476850pt;}
.y71{bottom:45.148883pt;}
.y6e{bottom:45.833333pt;}
.ya1{bottom:46.073430pt;}
.y7a{bottom:46.390829pt;}
.y82{bottom:47.911858pt;}
.y6{bottom:49.066667pt;}
.y48{bottom:49.419244pt;}
.y129{bottom:51.488482pt;}
.y12f{bottom:52.266446pt;}
.y8e{bottom:55.233645pt;}
.y144{bottom:56.172147pt;}
.y159{bottom:57.020213pt;}
.y7b{bottom:58.668900pt;}
.y79{bottom:59.098804pt;}
.y99{bottom:64.403362pt;}
.y178{bottom:65.333333pt;}
.y2a{bottom:67.939221pt;}
.y5{bottom:69.100000pt;}
.y176{bottom:70.814428pt;}
.y78{bottom:71.808053pt;}
.y175{bottom:72.236073pt;}
.y12a{bottom:80.441697pt;}
.y72{bottom:82.652472pt;}
.y9f{bottom:83.980025pt;}
.y47{bottom:84.374700pt;}
.y77{bottom:84.517302pt;}
.y83{bottom:84.559730pt;}
.y46{bottom:86.068577pt;}
.y158{bottom:87.151887pt;}
.y93{bottom:89.081585pt;}
.y4{bottom:90.133333pt;}
.y8f{bottom:90.738419pt;}
.y9a{bottom:91.452110pt;}
.y133{bottom:92.645490pt;}
.y130{bottom:92.850217pt;}
.y76{bottom:97.224641pt;}
.y88{bottom:97.347040pt;}
.y174{bottom:101.175271pt;}
.y29{bottom:103.840835pt;}
.y12b{bottom:109.395593pt;}
.y3{bottom:110.200000pt;}
.y157{bottom:117.184965pt;}
.y9b{bottom:118.551491pt;}
.y73{bottom:120.205740pt;}
.y45{bottom:120.549366pt;}
.y107{bottom:121.000000pt;}
.y173{bottom:121.187552pt;}
.y84{bottom:121.922374pt;}
.y90{bottom:126.243192pt;}
.y131{bottom:134.254262pt;}
.y12c{bottom:138.391800pt;}
.y28{bottom:139.624973pt;}
.y44{bottom:144.393816pt;}
.y9c{bottom:145.600239pt;}
.y156{bottom:146.920924pt;}
.y172{bottom:149.900247pt;}
.y2{bottom:152.400000pt;}
.y74{bottom:157.710603pt;}
.y85{bottom:159.283117pt;}
.y91{bottom:161.746292pt;}
.y12d{bottom:167.345015pt;}
.y9d{bottom:172.699620pt;}
.y27{bottom:175.055095pt;}
.y132{bottom:175.618044pt;}
.y4c{bottom:175.933333pt;}
.y155{bottom:177.085908pt;}
.y43{bottom:178.604729pt;}
.y4b{bottom:186.466667pt;}
.y75{bottom:195.216103pt;}
.y13d{bottom:195.973333pt;}
.y12e{bottom:196.298912pt;}
.y13c{bottom:196.533333pt;}
.y86{bottom:196.596336pt;}
.y92{bottom:197.251066pt;}
.y126{bottom:198.226667pt;}
.y1{bottom:199.506667pt;}
.y9e{bottom:199.746708pt;}
.y154{bottom:206.824531pt;}
.y26{bottom:210.996397pt;}
.ybc{bottom:214.000000pt;}
.y8c{bottom:216.780000pt;}
.y121{bottom:223.240000pt;}
.y87{bottom:233.958346pt;}
.y89{bottom:235.400000pt;}
.y153{bottom:236.856277pt;}
.y4d{bottom:241.000000pt;}
.y25{bottom:246.429695pt;}
.y137{bottom:250.373333pt;}
.y6f{bottom:251.785067pt;}
.y135{bottom:251.933333pt;}
.y152{bottom:266.688167pt;}
.y136{bottom:273.440000pt;}
.y134{bottom:275.000000pt;}
.y5b{bottom:278.844934pt;}
.y24{bottom:282.212245pt;}
.y151{bottom:296.719913pt;}
.y23{bottom:317.756669pt;}
.y150{bottom:326.458536pt;}
.y4a{bottom:326.906667pt;}
.y5a{bottom:332.062700pt;}
.yf{bottom:348.000000pt;}
.y2b{bottom:352.608667pt;}
.y33{bottom:352.845200pt;}
.y13a{bottom:353.026667pt;}
.y2f{bottom:353.357600pt;}
.y22{bottom:353.539219pt;}
.y14f{bottom:356.583548pt;}
.y139{bottom:366.066667pt;}
.y138{bottom:379.106667pt;}
.y59{bottom:385.261226pt;}
.y14e{bottom:386.655266pt;}
.y171{bottom:388.411334pt;}
.y21{bottom:388.972517pt;}
.y15{bottom:403.013733pt;}
.y13b{bottom:404.440000pt;}
.y170{bottom:410.169027pt;}
.y49{bottom:411.266667pt;}
.yc{bottom:416.026667pt;}
.y14d{bottom:416.380565pt;}
.y120{bottom:419.506667pt;}
.y20{bottom:424.866193pt;}
.yb{bottom:436.840000pt;}
.y58{bottom:438.478992pt;}
.y8a{bottom:440.333333pt;}
.y16f{bottom:440.933580pt;}
.y14c{bottom:446.518901pt;}
.ya3{bottom:449.733333pt;}
.y95{bottom:457.933333pt;}
.y9{bottom:459.893333pt;}
.y1f{bottom:460.696369pt;}
.y42{bottom:462.788603pt;}
.y123{bottom:466.840000pt;}
.y122{bottom:470.333333pt;}
.y16e{bottom:471.551571pt;}
.ye{bottom:474.600000pt;}
.y8{bottom:475.466667pt;}
.y14b{bottom:476.257525pt;}
.y6d{bottom:481.933333pt;}
.y149{bottom:487.604166pt;}
.y41{bottom:488.712695pt;}
.y7d{bottom:490.000000pt;}
.y57{bottom:491.735238pt;}
.ya2{bottom:492.800000pt;}
.y1e{bottom:496.113792pt;}
.ya{bottom:498.133333pt;}
.y16d{bottom:502.316124pt;}
.y14a{bottom:506.289271pt;}
.y148{bottom:512.146525pt;}
.y40{bottom:525.368378pt;}
.y1d{bottom:532.023343pt;}
.y16c{bottom:533.080676pt;}
.y56{bottom:552.725954pt;}
.y16b{bottom:552.983837pt;}
.y3f{bottom:561.849435pt;}
.y1c{bottom:567.456641pt;}
.y1a{bottom:580.975858pt;}
.y147{bottom:597.237229pt;}
.y55{bottom:598.151531pt;}
.y3e{bottom:598.505117pt;}
.y1b{bottom:603.239192pt;}
.y19{bottom:610.217854pt;}
.y3d{bottom:635.160800pt;}
.y146{bottom:646.588422pt;}
.y145{bottom:647.222763pt;}
.y54{bottom:651.350057pt;}
.y3c{bottom:658.875138pt;}
.y16a{bottom:673.286561pt;}
.y169{bottom:704.011142pt;}
.y53{bottom:704.548583pt;}
.y18{bottom:711.602852pt;}
.y168{bottom:734.775695pt;}
.y52{bottom:757.766350pt;}
.y167{bottom:765.433657pt;}
.y17{bottom:770.404346pt;}
.y6b{bottom:770.512106pt;}
.y16{bottom:771.159956pt;}
.y143{bottom:786.860925pt;}
.y166{bottom:796.198210pt;}
.y3b{bottom:802.214828pt;}
.y51{bottom:810.964876pt;}
.y6a{bottom:824.362080pt;}
.y165{bottom:826.949439pt;}
.y3a{bottom:838.822886pt;}
.y142{bottom:846.631294pt;}
.y164{bottom:852.890792pt;}
.y50{bottom:864.221122pt;}
.y39{bottom:875.478569pt;}
.y69{bottom:878.250823pt;}
.y141{bottom:897.727898pt;}
.y38{bottom:912.007251pt;}
.y140{bottom:917.646914pt;}
.y68{bottom:932.100797pt;}
.y14{bottom:937.537749pt;}
.y13f{bottom:937.592576pt;}
.y37{bottom:948.662933pt;}
.y36{bottom:985.302741pt;}
.y67{bottom:985.989541pt;}
.y13{bottom:1008.753597pt;}
.y35{bottom:1016.211626pt;}
.y66{bottom:1047.728982pt;}
.y12{bottom:1069.634734pt;}
.y11{bottom:1093.368058pt;}
.y65{bottom:1093.747643pt;}
.y10{bottom:1117.133133pt;}
.y64{bottom:1147.578232pt;}
.y63{bottom:1201.428207pt;}
.y62{bottom:1255.336334pt;}
.y61{bottom:1309.166924pt;}
.y60{bottom:1363.075052pt;}
.h5a{height:0.826073pt;}
.hf{height:0.984258pt;}
.h4f{height:27.807206pt;}
.h51{height:27.825608pt;}
.h50{height:27.916402pt;}
.h2a{height:30.229598pt;}
.h3c{height:31.521268pt;}
.h55{height:31.582031pt;}
.h54{height:31.677734pt;}
.h30{height:32.295321pt;}
.h29{height:32.460091pt;}
.h2f{height:32.900843pt;}
.h39{height:33.844881pt;}
.h34{height:34.119599pt;}
.h4d{height:34.548828pt;}
.h52{height:35.727801pt;}
.h5f{height:39.313382pt;}
.h37{height:40.291016pt;}
.h2c{height:41.796221pt;}
.h35{height:41.902828pt;}
.h9{height:42.016992pt;}
.h3a{height:42.039524pt;}
.h22{height:42.213128pt;}
.h60{height:42.501453pt;}
.h27{height:42.663702pt;}
.h63{height:42.931680pt;}
.h31{height:43.128941pt;}
.h5e{height:43.130200pt;}
.h32{height:43.162109pt;}
.h2b{height:43.218357pt;}
.h3b{height:43.579853pt;}
.h36{height:43.933589pt;}
.h61{height:44.676740pt;}
.ha{height:46.033203pt;}
.h14{height:46.841534pt;}
.h58{height:46.910577pt;}
.h57{height:46.998080pt;}
.h67{height:48.658773pt;}
.h15{height:50.640080pt;}
.h64{height:51.091712pt;}
.h18{height:51.152693pt;}
.h13{height:51.389227pt;}
.h2{height:52.044271pt;}
.h16{height:53.231927pt;}
.h7{height:54.646484pt;}
.h53{height:54.742188pt;}
.hd{height:55.893523pt;}
.hc{height:55.997933pt;}
.h3f{height:56.755839pt;}
.h40{height:57.035031pt;}
.h1c{height:57.976483pt;}
.h45{height:59.741730pt;}
.h46{height:60.035611pt;}
.h19{height:60.875307pt;}
.h62{height:62.228316pt;}
.h20{height:64.248528pt;}
.h25{height:65.135012pt;}
.h1d{height:65.340625pt;}
.h4{height:69.001953pt;}
.h48{height:69.641004pt;}
.h42{height:69.788335pt;}
.h49{height:69.983581pt;}
.h43{height:70.131636pt;}
.h5d{height:70.367778pt;}
.h3{height:72.490234pt;}
.h21{height:73.304924pt;}
.h23{height:73.612764pt;}
.h17{height:74.144469pt;}
.h26{height:74.221571pt;}
.h8{height:75.724414pt;}
.h1e{height:77.615234pt;}
.h4b{height:78.761012pt;}
.h4c{height:79.148452pt;}
.h12{height:83.842563pt;}
.h5c{height:86.227784pt;}
.h11{height:102.739615pt;}
.h3d{height:109.557292pt;}
.h6{height:109.648437pt;}
.h5b{height:109.681159pt;}
.h65{height:113.682866pt;}
.h1{height:120.494792pt;}
.h5{height:120.585938pt;}
.h10{height:130.684098pt;}
.hb{height:131.432292pt;}
.h1a{height:135.452095pt;}
.h59{height:140.831190pt;}
.he{height:167.799074pt;}
.h2d{height:167.832031pt;}
.h44{height:168.999467pt;}
.h66{height:170.741799pt;}
.h3e{height:196.000000pt;}
.h47{height:197.000000pt;}
.h1b{height:203.437291pt;}
.h4e{height:213.000000pt;}
.h41{height:224.977067pt;}
.h56{height:228.896484pt;}
.h1f{height:230.995200pt;}
.h24{height:233.000000pt;}
.h28{height:235.204800pt;}
.h38{height:245.223600pt;}
.h33{height:247.214133pt;}
.h2e{height:261.853600pt;}
.h4a{height:271.992667pt;}
.h0{height:540.000000pt;}
.w14{width:0.794795pt;}
.w3{width:0.829041pt;}
.w17{width:64.577187pt;}
.w6{width:67.359680pt;}
.w15{width:71.067187pt;}
.w4{width:74.129320pt;}
.w12{width:261.515333pt;}
.w11{width:277.991200pt;}
.w10{width:277.995733pt;}
.wa{width:284.749200pt;}
.w7{width:285.992667pt;}
.we{width:290.000000pt;}
.wb{width:308.052800pt;}
.wc{width:309.057733pt;}
.w9{width:317.741733pt;}
.w8{width:329.000000pt;}
.wf{width:353.429733pt;}
.wd{width:365.997200pt;}
.w16{width:486.719467pt;}
.w5{width:507.691067pt;}
.w13{width:556.992933pt;}
.w2{width:580.992533pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x48{left:-729.902599pt;}
.x4c{left:-517.333362pt;}
.x1f{left:-407.013080pt;}
.x1e{left:-361.166201pt;}
.x4f{left:-303.672925pt;}
.x47{left:-237.685050pt;}
.x44{left:-229.258145pt;}
.x4b{left:-97.096716pt;}
.x24{left:-41.500371pt;}
.x52{left:-31.831479pt;}
.xa{left:-5.630560pt;}
.x12{left:-3.005286pt;}
.x0{left:0.000000pt;}
.xc{left:1.554443pt;}
.x23{left:5.121182pt;}
.x6a{left:6.589617pt;}
.xf{left:7.529433pt;}
.x4{left:9.599986pt;}
.x42{left:14.233319pt;}
.x8{left:17.199986pt;}
.x5d{left:21.319979pt;}
.x3{left:24.699986pt;}
.x2b{left:26.330791pt;}
.x36{left:28.692195pt;}
.x39{left:31.699986pt;}
.x26{left:33.033319pt;}
.x35{left:34.706922pt;}
.x5c{left:35.737253pt;}
.x40{left:38.344362pt;}
.x2f{left:39.389498pt;}
.x34{left:40.473884pt;}
.x3c{left:43.295633pt;}
.x2d{left:44.566652pt;}
.x27{left:49.399986pt;}
.x58{left:50.931779pt;}
.x3b{left:52.012542pt;}
.x30{left:54.672767pt;}
.x59{left:59.549610pt;}
.x9{left:61.000000pt;}
.x10{left:62.658107pt;}
.x68{left:65.040080pt;}
.xd{left:67.842517pt;}
.x3f{left:71.259115pt;}
.x29{left:73.260214pt;}
.x69{left:75.273440pt;}
.x2a{left:82.646757pt;}
.x1d{left:89.291342pt;}
.x6b{left:91.500340pt;}
.x11{left:95.442894pt;}
.x31{left:104.760225pt;}
.x72{left:119.933319pt;}
.xe{left:134.301333pt;}
.x5a{left:140.539667pt;}
.x32{left:147.995679pt;}
.x5b{left:149.158179pt;}
.x2c{left:155.660008pt;}
.x60{left:166.999986pt;}
.x1a{left:172.506652pt;}
.x5f{left:178.799986pt;}
.x4e{left:185.699510pt;}
.x41{left:209.545598pt;}
.x19{left:221.399986pt;}
.x67{left:225.515856pt;}
.x33{left:228.696995pt;}
.xb{left:235.232850pt;}
.x65{left:247.266652pt;}
.x1b{left:249.173319pt;}
.x5e{left:256.738145pt;}
.x4d{left:266.000000pt;}
.x6e{left:277.048997pt;}
.x49{left:282.011627pt;}
.x43{left:283.000000pt;}
.x15{left:288.986443pt;}
.x21{left:321.000000pt;}
.x6{left:325.626652pt;}
.x1{left:329.639986pt;}
.x5{left:332.773319pt;}
.x55{left:338.933319pt;}
.x1c{left:347.000000pt;}
.x66{left:360.466652pt;}
.x61{left:393.626652pt;}
.x62{left:394.839986pt;}
.x6f{left:425.418553pt;}
.x70{left:436.931134pt;}
.x16{left:443.748925pt;}
.x17{left:455.757558pt;}
.x22{left:463.074386pt;}
.x71{left:500.483783pt;}
.x6c{left:502.082470pt;}
.x28{left:518.000000pt;}
.x51{left:520.496577pt;}
.x18{left:522.048555pt;}
.x13{left:523.716130pt;}
.x6d{left:526.016900pt;}
.x14{left:548.681839pt;}
.x4a{left:577.000000pt;}
.x45{left:595.938057pt;}
.x20{left:610.634476pt;}
.x3a{left:614.000000pt;}
.x3e{left:618.000000pt;}
.x7{left:623.026652pt;}
.x46{left:646.000000pt;}
.x57{left:665.000000pt;}
.x2e{left:674.000000pt;}
.x50{left:702.397098pt;}
.x38{left:712.106652pt;}
.x64{left:718.039986pt;}
.x63{left:743.439986pt;}
.x3d{left:747.173319pt;}
.x54{left:767.799986pt;}
.x2{left:795.893319pt;}
.x37{left:866.866652pt;}
.x56{left:873.173319pt;}
.x25{left:993.116873pt;}
.x53{left:1103.674442pt;}
}




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