
    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_b7d7827c153b81c7b358ff07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_b73520de8f7054d7fb936fd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894000;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_d969d8814c3b12be301fd941.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916000;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_e6a8202a94b4d9e0d5863d72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.804199;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_9e48b3e20130a1614c668813.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.360019;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_5d0879c440ebda5a169c6723.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.143066;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_564e239191f737b6359c719d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939000;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_0cb4fbdc0bfd12f64858ee61.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_07683830866b92cae40e9377.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12{transform:matrix(-0.249860,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.249860,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.249860,0.000000,0.000000,-0.250000,0,0);}
.me{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250140,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.296957,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.296957,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.296957,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.300652,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.300652,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.300652,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.300662,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.300662,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.300662,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.300712,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.300712,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.300712,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.301247,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.301247,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.301247,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.301370,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.301370,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.301370,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.301392,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.301392,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.301392,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250347,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253578,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296957,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300652,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300712,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.301247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301247,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301370,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-35.279986px;}
.v4{vertical-align:-18.719993px;}
.v7{vertical-align:-8.639997px;}
.v5{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.159999px;}
.v6{vertical-align:5.759998px;}
.v2{vertical-align:8.639997px;}
.v8{vertical-align:20.159992px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:40.963619px;}
.ls1{letter-spacing:114.993471px;}
.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;}
}
.ws4{word-spacing:-58.915185px;}
.wsc{word-spacing:-14.741994px;}
.ws0{word-spacing:-14.541279px;}
.ws22{word-spacing:-11.737975px;}
.ws3{word-spacing:-9.460616px;}
.ws21{word-spacing:-8.138697px;}
.ws23{word-spacing:-8.058597px;}
.ws24{word-spacing:-7.725237px;}
.wsa{word-spacing:-7.330137px;}
.wse{word-spacing:-6.802235px;}
.ws8{word-spacing:-6.729657px;}
.wsb{word-spacing:-6.716877px;}
.ws6{word-spacing:-6.716337px;}
.ws2b{word-spacing:-4.948554px;}
.ws2d{word-spacing:-4.896912px;}
.ws30{word-spacing:-4.889106px;}
.ws26{word-spacing:-4.865687px;}
.ws9{word-spacing:-4.275718px;}
.ws2e{word-spacing:-4.080660px;}
.ws31{word-spacing:-4.074255px;}
.ws27{word-spacing:-4.054840px;}
.ws7{word-spacing:-3.925618px;}
.ws5{word-spacing:-3.917878px;}
.ws19{word-spacing:-3.353404px;}
.ws1d{word-spacing:-2.868855px;}
.ws29{word-spacing:-2.413656px;}
.ws1c{word-spacing:-1.982466px;}
.ws18{word-spacing:-1.875149px;}
.ws28{word-spacing:-1.693179px;}
.ws1b{word-spacing:-1.428592px;}
.ws1a{word-spacing:-1.261839px;}
.ws1f{word-spacing:-0.708191px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:3.060205px;}
.ws1e{word-spacing:7.382580px;}
.ws12{word-spacing:15.945036px;}
.ws11{word-spacing:38.701579px;}
.ws1{word-spacing:42.765220px;}
.ws17{word-spacing:53.074314px;}
.ws16{word-spacing:55.235614px;}
.ws25{word-spacing:82.386440px;}
.ws32{word-spacing:83.301593px;}
.ws2a{word-spacing:109.658954px;}
.ws2c{word-spacing:136.419056px;}
.ws2f{word-spacing:139.796691px;}
.ws10{word-spacing:184.902901px;}
.ws13{word-spacing:208.681542px;}
.wsf{word-spacing:239.658879px;}
.ws14{word-spacing:369.331983px;}
.wsd{word-spacing:374.066130px;}
.ws15{word-spacing:464.424240px;}
._25{margin-left:-134.465490px;}
._27{margin-left:-132.563707px;}
._26{margin-left:-114.293619px;}
._2c{margin-left:-75.523792px;}
._2b{margin-left:-74.082987px;}
._2f{margin-left:-49.577763px;}
._1{margin-left:-2.282613px;}
._2{margin-left:-1.196181px;}
._0{width:1.184620px;}
._3{width:2.349978px;}
._17{width:3.535960px;}
._c{width:4.882043px;}
._d{width:5.896543px;}
._18{width:7.847595px;}
._16{width:9.788124px;}
._15{width:11.215733px;}
._8{width:12.415816px;}
._7{width:13.489717px;}
._53{width:14.810841px;}
._14{width:15.834684px;}
._1a{width:17.296243px;}
._24{width:18.641193px;}
._6{width:19.953097px;}
._19{width:21.005886px;}
._12{width:22.039635px;}
._11{width:23.532006px;}
._10{width:24.685991px;}
._1f{width:25.954832px;}
._1e{width:27.026755px;}
._13{width:28.166564px;}
._b{width:29.557607px;}
._1b{width:30.768685px;}
._20{width:32.716976px;}
._28{width:33.830305px;}
._f{width:35.874411px;}
._e{width:37.086037px;}
._a{width:38.714069px;}
._9{width:39.814796px;}
._1c{width:40.846279px;}
._1d{width:42.375821px;}
._4b{width:43.789922px;}
._21{width:45.493897px;}
._5{width:46.510485px;}
._4{width:47.850148px;}
._29{width:49.003256px;}
._2a{width:50.395550px;}
._30{width:52.265130px;}
._23{width:55.101000px;}
._3c{width:61.594953px;}
._3d{width:62.817964px;}
._22{width:64.070031px;}
._3b{width:88.720610px;}
._3a{width:95.738221px;}
._4e{width:115.971323px;}
._4d{width:120.310848px;}
._4c{width:124.466473px;}
._35{width:129.840003px;}
._3f{width:132.426156px;}
._39{width:137.764075px;}
._52{width:141.088554px;}
._51{width:144.064938px;}
._50{width:145.750279px;}
._4f{width:149.677857px;}
._38{width:171.629367px;}
._37{width:173.590106px;}
._2e{width:178.231807px;}
._36{width:179.456977px;}
._33{width:182.250240px;}
._34{width:188.847795px;}
._31{width:190.983199px;}
._42{width:209.126873px;}
._32{width:214.158163px;}
._43{width:225.521417px;}
._2d{width:229.347507px;}
._49{width:233.787241px;}
._40{width:243.375989px;}
._47{width:250.184979px;}
._46{width:257.263225px;}
._41{width:261.714965px;}
._4a{width:271.460073px;}
._48{width:273.961986px;}
._44{width:295.952532px;}
._45{width:309.131372px;}
._3e{width:615.717842px;}
.fc3{color:rgb(139,207,36);}
.fc2{color:rgb(66,69,163);}
.fc1{color:rgb(237,30,36);}
.fc0{color:rgb(16,15,13);}
.fs16{font-size:14.585754px;}
.fs1b{font-size:14.655594px;}
.fs19{font-size:14.678634px;}
.fs5{font-size:15.671514px;}
.fs7{font-size:15.702474px;}
.fs9{font-size:17.102873px;}
.fs15{font-size:17.502473px;}
.fs1a{font-size:17.586713px;}
.fs18{font-size:17.614793px;}
.fs17{font-size:17.800553px;}
.fsf{font-size:24.454790px;}
.fse{font-size:24.468470px;}
.fsc{font-size:25.199990px;}
.fs10{font-size:26.693269px;}
.fs6{font-size:26.865349px;}
.fsb{font-size:26.867509px;}
.fs8{font-size:26.918629px;}
.fsa{font-size:29.320548px;}
.fs14{font-size:30.900948px;}
.fs13{font-size:32.234387px;}
.fs12{font-size:32.554787px;}
.fs3{font-size:37.842465px;}
.fs4{font-size:40.297664px;}
.fsd{font-size:46.951901px;}
.fs0{font-size:58.165117px;}
.fs11{font-size:64.262974px;}
.fs2{font-size:70.078772px;}
.fs1{font-size:81.992967px;}
.y0{bottom:0.000000px;}
.y22c{bottom:1.079690px;}
.y20a{bottom:1.079803px;}
.y18c{bottom:1.799805px;}
.y8{bottom:3.419622px;}
.y14e{bottom:4.319612px;}
.y1{bottom:108.990706px;}
.y59{bottom:162.629935px;}
.y1b9{bottom:163.349935px;}
.y19e{bottom:163.529935px;}
.y175{bottom:165.869934px;}
.y255{bottom:168.929932px;}
.yb5{bottom:170.910682px;}
.y9e{bottom:171.449931px;}
.y30{bottom:176.309929px;}
.y14c{bottom:178.469929px;}
.y58{bottom:179.909928px;}
.y1b8{bottom:180.629928px;}
.y19d{bottom:180.809928px;}
.y174{bottom:182.969927px;}
.y254{bottom:186.209926px;}
.yb4{bottom:188.009925px;}
.y9d{bottom:188.549925px;}
.y229{bottom:192.149923px;}
.y1df{bottom:192.689923px;}
.y2f{bottom:193.589923px;}
.ye3{bottom:194.129922px;}
.y14b{bottom:195.569922px;}
.y57{bottom:197.009921px;}
.y1b7{bottom:197.729921px;}
.y19c{bottom:197.909921px;}
.y173{bottom:200.249920px;}
.y253{bottom:203.309919px;}
.yb3{bottom:205.289918px;}
.y9c{bottom:205.829918px;}
.y1de{bottom:206.549917px;}
.y228{bottom:209.249916px;}
.y2e{bottom:210.689916px;}
.ye2{bottom:211.229916px;}
.y14a{bottom:212.849915px;}
.y1b6{bottom:214.829914px;}
.y19b{bottom:215.009914px;}
.y172{bottom:217.349913px;}
.y1da{bottom:218.969912px;}
.y252{bottom:220.409912px;}
.yb2{bottom:222.389911px;}
.y1cf{bottom:224.009910px;}
.y1d0{bottom:227.429909px;}
.y2d{bottom:227.789909px;}
.ye1{bottom:228.329909px;}
.y149{bottom:229.949908px;}
.y280{bottom:230.489908px;}
.y56{bottom:231.389907px;}
.y1b5{bottom:232.109907px;}
.y19a{bottom:232.289907px;}
.y171{bottom:234.449906px;}
.y251{bottom:237.689905px;}
.y9b{bottom:239.489904px;}
.yb1{bottom:239.669904px;}
.y227{bottom:242.909903px;}
.y27f{bottom:244.349902px;}
.y2c{bottom:245.069902px;}
.ye0{bottom:245.609902px;}
.y148{bottom:247.049901px;}
.y1d1{bottom:247.589901px;}
.y1b4{bottom:249.209900px;}
.y199{bottom:249.389900px;}
.y170{bottom:251.729899px;}
.y250{bottom:254.789898px;}
.y221{bottom:255.149898px;}
.yb0{bottom:256.769897px;}
.y27e{bottom:258.209897px;}
.y219{bottom:260.369896px;}
.y2b{bottom:262.169895px;}
.ydf{bottom:262.709895px;}
.y147{bottom:264.329894px;}
.y55{bottom:266.129894px;}
.y1b3{bottom:266.309893px;}
.y198{bottom:266.489893px;}
.y1d2{bottom:267.569893px;}
.y97{bottom:267.749893px;}
.y16f{bottom:268.829892px;}
.y98{bottom:269.549892px;}
.y24f{bottom:272.069891px;}
.y96{bottom:272.429891px;}
.yaf{bottom:273.869890px;}
.y2a{bottom:279.449888px;}
.yde{bottom:279.809888px;}
.y146{bottom:281.429887px;}
.y1b2{bottom:283.589887px;}
.y197{bottom:283.769886px;}
.y27d{bottom:285.929886px;}
.y16e{bottom:286.109886px;}
.y21a{bottom:286.469885px;}
.y1d3{bottom:287.729885px;}
.y24e{bottom:289.169884px;}
.yae{bottom:291.149884px;}
.y29{bottom:296.549881px;}
.ydd{bottom:297.089881px;}
.y1db{bottom:297.629881px;}
.y145{bottom:298.709881px;}
.y27c{bottom:299.609880px;}
.y1f3{bottom:299.789880px;}
.y1b1{bottom:300.689880px;}
.y196{bottom:300.869880px;}
.y16d{bottom:303.209879px;}
.y54{bottom:303.569879px;}
.y24d{bottom:306.269877px;}
.y1d4{bottom:307.709877px;}
.yad{bottom:308.249877px;}
.y21b{bottom:309.149876px;}
.y27b{bottom:313.469875px;}
.y28{bottom:313.649875px;}
.ydc{bottom:314.189874px;}
.y144{bottom:315.809874px;}
.y1f2{bottom:317.069873px;}
.y1b0{bottom:317.969873px;}
.y195{bottom:318.149873px;}
.y88{bottom:319.229872px;}
.y16c{bottom:320.309872px;}
.y53{bottom:320.669872px;}
.y24c{bottom:323.549871px;}
.y8c{bottom:323.909870px;}
.y87{bottom:324.089870px;}
.yac{bottom:325.529870px;}
.y89{bottom:325.709870px;}
.y27a{bottom:327.329869px;}
.y1d5{bottom:327.869869px;}
.y8b{bottom:328.589869px;}
.y27{bottom:330.929868px;}
.ydb{bottom:331.469867px;}
.y21c{bottom:331.829867px;}
.y8a{bottom:332.549867px;}
.y143{bottom:332.909867px;}
.y99{bottom:333.269867px;}
.y1f1{bottom:334.169866px;}
.y1af{bottom:335.069866px;}
.y194{bottom:335.249866px;}
.y16b{bottom:337.589865px;}
.y52{bottom:337.949865px;}
.y24b{bottom:340.649864px;}
.y279{bottom:341.189864px;}
.yab{bottom:342.629863px;}
.y222{bottom:344.249862px;}
.y223{bottom:345.509862px;}
.y94{bottom:347.129861px;}
.y1d6{bottom:347.669861px;}
.y26{bottom:348.029861px;}
.yda{bottom:348.569861px;}
.y95{bottom:348.929860px;}
.y141{bottom:350.189860px;}
.y1f0{bottom:351.449859px;}
.y93{bottom:351.809859px;}
.y1ae{bottom:352.169859px;}
.y193{bottom:352.349859px;}
.y21d{bottom:354.329858px;}
.y224{bottom:354.509858px;}
.y16a{bottom:354.689858px;}
.y51{bottom:355.049858px;}
.y142{bottom:356.849857px;}
.y24a{bottom:357.929857px;}
.yaa{bottom:359.729856px;}
.y25{bottom:365.129854px;}
.yd9{bottom:365.669854px;}
.y1d7{bottom:367.829853px;}
.y91{bottom:368.189853px;}
.y1ef{bottom:368.549853px;}
.y278{bottom:368.909852px;}
.y1ad{bottom:369.449852px;}
.y192{bottom:369.629852px;}
.y92{bottom:369.989852px;}
.y169{bottom:371.789851px;}
.y50{bottom:372.149851px;}
.y90{bottom:373.229851px;}
.y249{bottom:375.029850px;}
.ya9{bottom:377.009849px;}
.y24{bottom:382.409847px;}
.y277{bottom:382.769847px;}
.yd8{bottom:382.949847px;}
.y140{bottom:383.849846px;}
.y1ee{bottom:385.649846px;}
.y1ac{bottom:386.549845px;}
.y191{bottom:386.729845px;}
.y1d8{bottom:387.809845px;}
.y168{bottom:389.069844px;}
.y4f{bottom:389.429844px;}
.y248{bottom:392.129843px;}
.ya8{bottom:394.109842px;}
.y1dd{bottom:396.449841px;}
.y276{bottom:396.629841px;}
.y13f{bottom:397.709841px;}
.y23{bottom:399.509840px;}
.y21e{bottom:399.869840px;}
.yd7{bottom:400.049840px;}
.y1dc{bottom:402.389839px;}
.y1ab{bottom:403.829838px;}
.y190{bottom:404.009838px;}
.y167{bottom:406.169838px;}
.y4e{bottom:406.529837px;}
.y1d9{bottom:407.789837px;}
.y247{bottom:409.409836px;}
.y275{bottom:410.489836px;}
.ya7{bottom:411.209836px;}
.y13e{bottom:415.349834px;}
.y9a{bottom:416.609833px;}
.y22{bottom:416.789833px;}
.y139{bottom:419.669832px;}
.y1aa{bottom:420.929832px;}
.y21f{bottom:422.549831px;}
.y166{bottom:423.449831px;}
.y4d{bottom:423.809830px;}
.y274{bottom:424.169830px;}
.y13b{bottom:425.789830px;}
.y13d{bottom:426.149830px;}
.y246{bottom:426.509829px;}
.ya6{bottom:428.489829px;}
.y13c{bottom:430.649828px;}
.y13a{bottom:430.829828px;}
.y226{bottom:433.529827px;}
.y21{bottom:433.889826px;}
.y1ce{bottom:434.609826px;}
.yd6{bottom:434.789826px;}
.y138{bottom:436.949825px;}
.y18f{bottom:437.489825px;}
.y1a9{bottom:438.029825px;}
.y225{bottom:439.649824px;}
.y165{bottom:440.549824px;}
.y4c{bottom:440.909824px;}
.y245{bottom:443.789822px;}
.y220{bottom:445.049822px;}
.ya5{bottom:445.589822px;}
.y1ed{bottom:449.369820px;}
.y8e{bottom:449.729820px;}
.y20{bottom:450.989820px;}
.y8f{bottom:451.349819px;}
.y1cd{bottom:451.709819px;}
.y273{bottom:451.889819px;}
.y8d{bottom:454.409818px;}
.y164{bottom:457.649817px;}
.y4b{bottom:458.009817px;}
.y244{bottom:460.889816px;}
.y132{bottom:461.429815px;}
.y133{bottom:461.969815px;}
.ya4{bottom:462.869815px;}
.y272{bottom:465.749814px;}
.y1f{bottom:468.269813px;}
.yd5{bottom:468.989812px;}
.y1ec{bottom:471.149812px;}
.y1a8{bottom:472.409811px;}
.y18e{bottom:472.589811px;}
.y218{bottom:474.749810px;}
.y163{bottom:474.929810px;}
.y4a{bottom:475.289810px;}
.y243{bottom:477.989809px;}
.y271{bottom:479.609808px;}
.ya3{bottom:479.969808px;}
.y1e{bottom:485.369806px;}
.y18b{bottom:485.910000px;}
.yd4{bottom:486.089806px;}
.y213{bottom:488.249805px;}
.y86{bottom:489.689804px;}
.y117{bottom:490.409804px;}
.y111{bottom:491.129804px;}
.y162{bottom:492.029803px;}
.y49{bottom:492.389803px;}
.y209{bottom:492.390000px;}
.y122{bottom:493.109803px;}
.y208{bottom:493.469803px;}
.y119{bottom:494.009802px;}
.y113{bottom:494.729802px;}
.y242{bottom:495.269802px;}
.ya2{bottom:497.069801px;}
.y185{bottom:499.589800px;}
.y121{bottom:500.309800px;}
.y118{bottom:501.209800px;}
.y112{bottom:501.929799px;}
.y1d{bottom:502.649799px;}
.yd3{bottom:503.189799px;}
.y85{bottom:506.789797px;}
.y270{bottom:507.329797px;}
.y161{bottom:509.309796px;}
.y48{bottom:509.489796px;}
.y241{bottom:512.369795px;}
.y136{bottom:512.909795px;}
.y12f{bottom:513.449795px;}
.y11f{bottom:513.629795px;}
.yf5{bottom:515.429794px;}
.yf0{bottom:516.869793px;}
.y20b{bottom:517.229793px;}
.y1c{bottom:519.749792px;}
.yd2{bottom:520.469792px;}
.y11e{bottom:520.829792px;}
.y26f{bottom:521.189792px;}
.y84{bottom:523.889790px;}
.y120{bottom:524.609790px;}
.yf6{bottom:525.329790px;}
.y160{bottom:526.409789px;}
.y47{bottom:526.769789px;}
.y186{bottom:527.489789px;}
.y1ea{bottom:528.749789px;}
.y11d{bottom:528.929788px;}
.y240{bottom:529.469788px;}
.ya1{bottom:530.729788px;}
.y131{bottom:531.269787px;}
.y26e{bottom:535.049786px;}
.y1b{bottom:536.849785px;}
.y20c{bottom:537.209785px;}
.yd1{bottom:537.569785px;}
.y1eb{bottom:540.809784px;}
.y83{bottom:541.169784px;}
.y114{bottom:542.069783px;}
.y46{bottom:543.869782px;}
.ya0{bottom:544.589782px;}
.y116{bottom:545.849782px;}
.y23f{bottom:546.749781px;}
.y26d{bottom:548.909780px;}
.y115{bottom:553.049779px;}
.y130{bottom:553.589779px;}
.y1a{bottom:554.129778px;}
.yd0{bottom:554.849778px;}
.y187{bottom:555.569778px;}
.y18d{bottom:556.109778px;}
.y20d{bottom:557.549777px;}
.y11b{bottom:558.089777px;}
.y82{bottom:558.269777px;}
.y10e{bottom:559.169776px;}
.y15f{bottom:560.789776px;}
.y1e9{bottom:560.969776px;}
.y45{bottom:561.149776px;}
.y26c{bottom:562.589775px;}
.y110{bottom:563.309775px;}
.y23e{bottom:563.849774px;}
.y11c{bottom:567.269773px;}
.y124{bottom:569.609772px;}
.y125{bottom:569.789772px;}
.y10f{bottom:570.689772px;}
.ycf{bottom:571.949771px;}
.y12e{bottom:572.489771px;}
.y81{bottom:573.209771px;}
.y1e8{bottom:574.829770px;}
.y80{bottom:575.369770px;}
.y26b{bottom:576.449769px;}
.y20e{bottom:577.529769px;}
.y44{bottom:578.249769px;}
.y214{bottom:578.789768px;}
.y135{bottom:579.509768px;}
.y23d{bottom:581.129768px;}
.y12d{bottom:583.649767px;}
.y215{bottom:587.789765px;}
.y19{bottom:588.689765px;}
.yce{bottom:589.049764px;}
.y100{bottom:589.949764px;}
.y26a{bottom:590.309764px;}
.yfd{bottom:590.489764px;}
.y7f{bottom:592.649763px;}
.y43{bottom:595.349762px;}
.yff{bottom:597.149761px;}
.yfc{bottom:597.689761px;}
.y20f{bottom:597.869761px;}
.y23c{bottom:598.229761px;}
.y101{bottom:601.109760px;}
.y269{bottom:604.169758px;}
.ycd{bottom:606.329757px;}
.yfe{bottom:606.869757px;}
.y7d{bottom:609.749756px;}
.yef{bottom:610.649756px;}
.y10b{bottom:611.009756px;}
.y188{bottom:611.729755px;}
.y42{bottom:612.629755px;}
.y10d{bottom:614.249754px;}
.y23b{bottom:615.329754px;}
.y7e{bottom:616.409753px;}
.yf7{bottom:618.029753px;}
.yf8{bottom:618.209753px;}
.y10c{bottom:621.449751px;}
.ycc{bottom:623.429751px;}
.y7c{bottom:624.689750px;}
.y12b{bottom:625.409750px;}
.y18{bottom:626.309749px;}
.y1e7{bottom:626.849749px;}
.y1a7{bottom:627.028399px;}
.y7b{bottom:627.029749px;}
.y134{bottom:627.569749px;}
.y41{bottom:629.729748px;}
.y268{bottom:631.889747px;}
.y12a{bottom:632.609747px;}
.y15e{bottom:632.969747px;}
.yf2{bottom:637.289745px;}
.y210{bottom:638.369745px;}
.y189{bottom:639.629744px;}
.ycb{bottom:640.709744px;}
.y7a{bottom:641.789743px;}
.y17{bottom:643.409743px;}
.y1a6{bottom:644.128392px;}
.y78{bottom:644.129742px;}
.y267{bottom:645.749742px;}
.y40{bottom:647.009741px;}
.yf1{bottom:649.529740px;}
.y23a{bottom:649.709740px;}
.y1e6{bottom:649.889740px;}
.y15d{bottom:650.069740px;}
.y129{bottom:650.249740px;}
.y79{bottom:650.789740px;}
.y108{bottom:656.549737px;}
.yca{bottom:657.809737px;}
.y211{bottom:658.349737px;}
.y77{bottom:659.069736px;}
.yee{bottom:659.429736px;}
.y266{bottom:659.609736px;}
.y109{bottom:659.969736px;}
.y16{bottom:660.509736px;}
.y128{bottom:660.869736px;}
.y1a5{bottom:661.228386px;}
.y76{bottom:661.229736px;}
.y10a{bottom:663.749735px;}
.y107{bottom:663.929734px;}
.y3f{bottom:664.109734px;}
.y12c{bottom:664.289734px;}
.yf3{bottom:665.369734px;}
.y217{bottom:666.989733px;}
.y15c{bottom:667.169733px;}
.y18a{bottom:667.709733px;}
.y1e5{bottom:671.849731px;}
.y216{bottom:673.109731px;}
.y265{bottom:673.469731px;}
.yc9{bottom:674.909730px;}
.y15{bottom:677.789729px;}
.y212{bottom:678.329729px;}
.y1a4{bottom:678.508379px;}
.y75{bottom:678.509729px;}
.yf4{bottom:678.869728px;}
.y3e{bottom:681.209728px;}
.y239{bottom:684.089726px;}
.y15b{bottom:684.449726px;}
.y127{bottom:684.989726px;}
.y264{bottom:687.149725px;}
.y126{bottom:691.649723px;}
.y106{bottom:692.009723px;}
.yc8{bottom:692.189723px;}
.y105{bottom:692.549723px;}
.y1e4{bottom:693.629723px;}
.y123{bottom:693.809722px;}
.y14{bottom:694.889722px;}
.y1a3{bottom:695.608372px;}
.y74{bottom:695.609722px;}
.y104{bottom:696.509721px;}
.y3d{bottom:698.489721px;}
.y263{bottom:701.009720px;}
.y15a{bottom:701.549719px;}
.y103{bottom:703.709719px;}
.y184{bottom:705.869718px;}
.y207{bottom:706.589717px;}
.yc7{bottom:709.289716px;}
.y73{bottom:710.549716px;}
.y13{bottom:712.169715px;}
.yec{bottom:712.529715px;}
.y1a2{bottom:712.888365px;}
.y72{bottom:712.889715px;}
.y262{bottom:714.869714px;}
.y3c{bottom:715.589714px;}
.y102{bottom:716.129714px;}
.y1e3{bottom:717.569713px;}
.y159{bottom:718.829712px;}
.yeb{bottom:719.729712px;}
.yea{bottom:719.909712px;}
.ye8{bottom:720.449712px;}
.yf9{bottom:720.809712px;}
.yed{bottom:722.249711px;}
.y11a{bottom:723.149711px;}
.y206{bottom:723.869710px;}
.yfb{bottom:724.049710px;}
.yc6{bottom:726.389709px;}
.ye9{bottom:727.109709px;}
.y71{bottom:727.649709px;}
.y261{bottom:728.729709px;}
.y12{bottom:729.269708px;}
.y1a1{bottom:729.988358px;}
.y70{bottom:729.989708px;}
.yfa{bottom:731.429707px;}
.y3b{bottom:732.869707px;}
.y137{bottom:734.669706px;}
.y158{bottom:735.929706px;}
.y205{bottom:740.969704px;}
.y1e2{bottom:741.329703px;}
.y260{bottom:742.589703px;}
.yc5{bottom:743.668353px;}
.y1cc{bottom:743.669703px;}
.y6f{bottom:744.929702px;}
.y11{bottom:746.369701px;}
.y1a0{bottom:747.088351px;}
.y6e{bottom:747.089701px;}
.y183{bottom:749.609700px;}
.y3a{bottom:749.969700px;}
.y17f{bottom:751.229700px;}
.y157{bottom:753.029699px;}
.y238{bottom:755.549698px;}
.y25f{bottom:756.449697px;}
.y204{bottom:758.249697px;}
.yc4{bottom:760.768346px;}
.y1cb{bottom:760.769696px;}
.y1e1{bottom:761.489695px;}
.y6c{bottom:762.029695px;}
.y10{bottom:763.649695px;}
.y6b{bottom:764.368344px;}
.y6d{bottom:764.369694px;}
.y39{bottom:767.069693px;}
.y234{bottom:769.049692px;}
.y156{bottom:770.309692px;}
.y182{bottom:771.569691px;}
.y22b{bottom:773.190000px;}
.y22a{bottom:774.269690px;}
.y1e0{bottom:775.349690px;}
.y22d{bottom:777.689689px;}
.yc3{bottom:778.048339px;}
.y1ca{bottom:778.049689px;}
.yf{bottom:780.749688px;}
.y6a{bottom:781.468337px;}
.y38{bottom:784.349686px;}
.y155{bottom:787.409685px;}
.y25e{bottom:788.489685px;}
.y203{bottom:792.449683px;}
.y181{bottom:793.349683px;}
.yc2{bottom:795.148332px;}
.ye{bottom:798.029681px;}
.y69{bottom:798.568331px;}
.y37{bottom:801.449679px;}
.y154{bottom:804.689678px;}
.y22e{bottom:807.929677px;}
.y202{bottom:809.729676px;}
.yc1{bottom:812.249675px;}
.y1c9{bottom:812.609675px;}
.yd{bottom:815.129674px;}
.y180{bottom:815.309674px;}
.y68{bottom:815.848324px;}
.y36{bottom:818.549673px;}
.y153{bottom:821.789671px;}
.y201{bottom:826.829669px;}
.yc0{bottom:829.529668px;}
.yc{bottom:832.229667px;}
.y67{bottom:832.948317px;}
.y35{bottom:835.829666px;}
.y17e{bottom:837.989665px;}
.y22f{bottom:838.349665px;}
.y151{bottom:838.889664px;}
.y200{bottom:844.109662px;}
.y152{bottom:845.549662px;}
.ybf{bottom:846.629661px;}
.yb{bottom:849.509660px;}
.y1c8{bottom:850.228160px;}
.y19f{bottom:850.228310px;}
.ye7{bottom:850.229660px;}
.y34{bottom:852.929659px;}
.y235{bottom:858.869656px;}
.y17d{bottom:859.769656px;}
.y1ff{bottom:861.209656px;}
.ybe{bottom:863.909654px;}
.ya{bottom:866.609653px;}
.y1c7{bottom:867.328153px;}
.y66{bottom:867.328303px;}
.ye6{bottom:867.329653px;}
.y230{bottom:868.409653px;}
.y33{bottom:870.209652px;}
.y150{bottom:872.549651px;}
.y178{bottom:876.689649px;}
.y25d{bottom:881.009648px;}
.y17c{bottom:881.729647px;}
.ybd{bottom:881.909647px;}
.y1c6{bottom:884.428146px;}
.y9f{bottom:884.428296px;}
.ye5{bottom:884.429646px;}
.y32{bottom:887.309645px;}
.y1fe{bottom:894.869642px;}
.y25c{bottom:898.109641px;}
.y231{bottom:898.829640px;}
.ybc{bottom:899.009640px;}
.y9{bottom:901.349639px;}
.y1c5{bottom:901.708139px;}
.y65{bottom:901.708289px;}
.ye4{bottom:901.709639px;}
.y17b{bottom:903.689639px;}
.y31{bottom:904.409638px;}
.y1fb{bottom:906.929637px;}
.y1f4{bottom:912.149635px;}
.y25b{bottom:915.389634px;}
.ybb{bottom:916.289633px;}
.y1c4{bottom:918.808132px;}
.y64{bottom:918.809632px;}
.y17a{bottom:925.469630px;}
.y232{bottom:929.069628px;}
.y1f5{bottom:931.049628px;}
.y25a{bottom:932.489627px;}
.yba{bottom:933.389627px;}
.y1c3{bottom:936.088126px;}
.y63{bottom:936.089626px;}
.y7{bottom:942.390000px;}
.y179{bottom:947.429621px;}
.y237{bottom:947.789621px;}
.y259{bottom:949.589620px;}
.yb9{bottom:951.389619px;}
.y1c2{bottom:953.188119px;}
.y62{bottom:953.189619px;}
.y236{bottom:953.909618px;}
.y233{bottom:959.129616px;}
.y14f{bottom:961.109616px;}
.y1f6{bottom:961.649615px;}
.y6{bottom:962.909615px;}
.y14d{bottom:964.530000px;}
.y258{bottom:966.869613px;}
.y177{bottom:967.589613px;}
.yb8{bottom:968.669613px;}
.y1c1{bottom:970.288112px;}
.y61{bottom:970.289612px;}
.y5{bottom:980.189608px;}
.y176{bottom:981.449607px;}
.y257{bottom:983.969606px;}
.yb7{bottom:986.669605px;}
.y1c0{bottom:987.568105px;}
.y60{bottom:987.569605px;}
.y1f7{bottom:992.249603px;}
.y4{bottom:998.009601px;}
.yb6{bottom:1003.769598px;}
.y1bf{bottom:1004.668098px;}
.y5f{bottom:1004.669598px;}
.y256{bottom:1018.709593px;}
.y1be{bottom:1021.948091px;}
.y5e{bottom:1021.949591px;}
.y1f8{bottom:1022.669591px;}
.y1bd{bottom:1039.048084px;}
.y5d{bottom:1039.049584px;}
.y3{bottom:1043.189583px;}
.y1f9{bottom:1053.449579px;}
.y1bc{bottom:1056.148078px;}
.y5c{bottom:1056.149578px;}
.y1bb{bottom:1073.428071px;}
.y5b{bottom:1073.429571px;}
.y1fa{bottom:1084.049566px;}
.y1fd{bottom:1087.469565px;}
.y1ba{bottom:1090.528064px;}
.y5a{bottom:1090.529564px;}
.y2{bottom:1090.530314px;}
.y1fc{bottom:1093.589563px;}
.h1d{height:0.000000px;}
.h14{height:3.605272px;}
.h24{height:5.220000px;}
.ha{height:7.412626px;}
.h20{height:8.640000px;}
.h27{height:10.683928px;}
.h25{height:10.700724px;}
.hc{height:10.970060px;}
.hd{height:11.252147px;}
.hf{height:11.274376px;}
.h11{height:12.279863px;}
.hb{height:12.707310px;}
.h21{height:12.759303px;}
.h26{height:12.820714px;}
.h23{height:12.841184px;}
.h22{height:12.976603px;}
.h5{height:16.380000px;}
.h1a{height:17.813046px;}
.h19{height:17.827542px;}
.h16{height:17.837515px;}
.he{height:19.289321px;}
.h13{height:19.290872px;}
.h10{height:19.327576px;}
.h1c{height:19.440000px;}
.h1b{height:19.459393px;}
.h18{height:19.997514px;}
.h12{height:21.052154px;}
.h1f{height:22.186880px;}
.h1e{height:23.374337px;}
.h17{height:26.477511px;}
.h8{height:27.170890px;}
.h9{height:28.078499px;}
.h15{height:33.711465px;}
.h7{height:40.715582px;}
.h2{height:41.762554px;}
.h28{height:43.304282px;}
.h6{height:47.513407px;}
.h4{height:50.316558px;}
.h3{height:55.591232px;}
.h1{height:1262.970000px;}
.h0{height:1263.000000px;}
.w4{width:4.320000px;}
.w6{width:7.380000px;}
.w7{width:7.560000px;}
.w5{width:8.460000px;}
.w3{width:9.540000px;}
.w2{width:276.840000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:88.349665px;}
.xe{left:89.609664px;}
.x92{left:92.670642px;}
.xb1{left:93.749663px;}
.xae{left:96.449661px;}
.xaf{left:98.069661px;}
.x1d{left:101.309659px;}
.x9c{left:102.569659px;}
.x3{left:104.549658px;}
.xd{left:106.169658px;}
.x1e{left:108.509657px;}
.x4{left:110.129656px;}
.x9d{left:114.629657px;}
.xac{left:117.869653px;}
.x17{left:122.549651px;}
.xb{left:124.170064px;}
.x93{left:138.569645px;}
.xb2{left:140.909663px;}
.x15{left:144.509642px;}
.x16{left:147.209641px;}
.x9e{left:156.569937px;}
.x2{left:166.111434px;}
.x1a{left:170.249932px;}
.x9a{left:175.289930px;}
.x1b{left:180.329920px;}
.x1c{left:187.349925px;}
.x13{left:197.429921px;}
.x9f{left:203.729919px;}
.x21{left:212.189915px;}
.x94{left:213.629915px;}
.x14{left:214.709914px;}
.x22{left:222.269911px;}
.xa0{left:228.209909px;}
.x23{left:233.429907px;}
.x91{left:235.769906px;}
.x95{left:238.109905px;}
.x2b{left:241.889961px;}
.x2a{left:242.969960px;}
.x2d{left:245.129874px;}
.x18{left:255.029898px;}
.x2e{left:256.109869px;}
.x19{left:257.729897px;}
.xb0{left:259.709896px;}
.x28{left:262.409895px;}
.x26{left:267.269893px;}
.x29{left:268.529894px;}
.x27{left:269.789892px;}
.x7a{left:271.589891px;}
.x2f{left:275.549890px;}
.x2c{left:283.109864px;}
.x9b{left:287.249918px;}
.x1f{left:297.149881px;}
.x24{left:300.929880px;}
.x20{left:304.349878px;}
.xc{left:308.309400px;}
.x25{left:309.749876px;}
.xa1{left:314.789874px;}
.x96{left:318.209873px;}
.x5{left:319.289872px;}
.x97{left:324.689870px;}
.x6{left:344.669862px;}
.x7b{left:352.409859px;}
.x11{left:358.169857px;}
.x31{left:359.609856px;}
.x12{left:360.689856px;}
.x30{left:368.609853px;}
.xa2{left:369.689852px;}
.xa3{left:377.609849px;}
.x98{left:379.409848px;}
.x99{left:387.329845px;}
.x7c{left:409.289836px;}
.x32{left:411.449535px;}
.xad{left:424.949400px;}
.x7d{left:426.209830px;}
.xf{left:463.469768px;}
.x10{left:464.909814px;}
.xab{left:468.149813px;}
.x64{left:469.409812px;}
.x72{left:472.470408px;}
.x8e{left:474.629810px;}
.x66{left:476.429933px;}
.xa4{left:477.509809px;}
.x67{left:479.129937px;}
.x33{left:481.467407px;}
.x43{left:483.629800px;}
.x42{left:487.229805px;}
.x6f{left:489.210143px;}
.x74{left:492.629803px;}
.x75{left:496.409801px;}
.x44{left:498.389804px;}
.x8{left:500.189800px;}
.x89{left:503.609400px;}
.x65{left:504.689866px;}
.xa9{left:505.949798px;}
.xa6{left:507.389797px;}
.x3f{left:509.909796px;}
.x45{left:512.429795px;}
.x54{left:514.949794px;}
.x55{left:516.029794px;}
.x52{left:517.649793px;}
.x53{left:522.329791px;}
.x7{left:524.129790px;}
.x3e{left:528.089789px;}
.x3a{left:532.409431px;}
.x86{left:543.569783px;}
.x8a{left:552.389400px;}
.x69{left:554.189925px;}
.x7f{left:555.629839px;}
.x6e{left:564.090082px;}
.x80{left:566.609773px;}
.x50{left:568.049773px;}
.x51{left:569.669766px;}
.x4f{left:573.269771px;}
.x60{left:575.069770px;}
.x61{left:576.149770px;}
.x78{left:577.409695px;}
.x88{left:578.489772px;}
.x87{left:581.009764px;}
.x3c{left:582.269378px;}
.x36{left:584.970012px;}
.x4e{left:586.229766px;}
.x38{left:589.830291px;}
.x46{left:595.769762px;}
.x4d{left:597.029761px;}
.x8b{left:600.989400px;}
.x6b{left:604.229967px;}
.x3b{left:605.309383px;}
.x76{left:609.089756px;}
.x7e{left:612.869755px;}
.x57{left:615.389754px;}
.x58{left:616.469754px;}
.x73{left:618.269753px;}
.x56{left:622.409751px;}
.x5a{left:624.029750px;}
.x5b{left:627.269752px;}
.x59{left:631.769747px;}
.xaa{left:633.029747px;}
.x8f{left:634.289746px;}
.x8d{left:635.729746px;}
.x6c{left:638.970022px;}
.x6a{left:640.050018px;}
.x4c{left:643.289743px;}
.x81{left:644.549742px;}
.x5f{left:647.249741px;}
.x5e{left:650.489740px;}
.x4b{left:653.909738px;}
.x9{left:663.089735px;}
.x5d{left:674.429730px;}
.x82{left:675.689730px;}
.x68{left:679.829952px;}
.x83{left:685.589726px;}
.xa{left:688.469725px;}
.x47{left:691.709723px;}
.x48{left:693.329717px;}
.x84{left:694.589722px;}
.x49{left:696.569721px;}
.x85{left:697.649721px;}
.x6d{left:704.850048px;}
.x4a{left:706.109718px;}
.x77{left:712.229715px;}
.x71{left:719.610080px;}
.x70{left:720.870080px;}
.x3d{left:725.549710px;}
.x63{left:727.709709px;}
.x41{left:728.969708px;}
.x62{left:736.889705px;}
.x40{left:738.149705px;}
.x34{left:739.589704px;}
.x90{left:741.209704px;}
.xa8{left:744.089702px;}
.x8c{left:745.169400px;}
.xa5{left:749.129700px;}
.x5c{left:750.209700px;}
.x35{left:754.349708px;}
.x37{left:770.189842px;}
.x39{left:786.389775px;}
.x79{left:797.909681px;}
.xa7{left:800.429400px;}
@media print{
.v1{vertical-align:-31.359987pt;}
.v4{vertical-align:-16.639993pt;}
.v7{vertical-align:-7.679997pt;}
.v5{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.919999pt;}
.v6{vertical-align:5.119998pt;}
.v2{vertical-align:7.679997pt;}
.v8{vertical-align:17.919993pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:36.412106pt;}
.ls1{letter-spacing:102.216419pt;}
.ws4{word-spacing:-52.369053pt;}
.wsc{word-spacing:-13.103995pt;}
.ws0{word-spacing:-12.925581pt;}
.ws22{word-spacing:-10.433756pt;}
.ws3{word-spacing:-8.409437pt;}
.ws21{word-spacing:-7.234397pt;}
.ws23{word-spacing:-7.163197pt;}
.ws24{word-spacing:-6.866877pt;}
.wsa{word-spacing:-6.515677pt;}
.wse{word-spacing:-6.046431pt;}
.ws8{word-spacing:-5.981918pt;}
.wsb{word-spacing:-5.970558pt;}
.ws6{word-spacing:-5.970078pt;}
.ws2b{word-spacing:-4.398714pt;}
.ws2d{word-spacing:-4.352811pt;}
.ws30{word-spacing:-4.345872pt;}
.ws26{word-spacing:-4.325056pt;}
.ws9{word-spacing:-3.800638pt;}
.ws2e{word-spacing:-3.627254pt;}
.ws31{word-spacing:-3.621560pt;}
.ws27{word-spacing:-3.604302pt;}
.ws7{word-spacing:-3.489439pt;}
.ws5{word-spacing:-3.482559pt;}
.ws19{word-spacing:-2.980803pt;}
.ws1d{word-spacing:-2.550093pt;}
.ws29{word-spacing:-2.145472pt;}
.ws1c{word-spacing:-1.762192pt;}
.ws18{word-spacing:-1.666799pt;}
.ws28{word-spacing:-1.505048pt;}
.ws1b{word-spacing:-1.269859pt;}
.ws1a{word-spacing:-1.121634pt;}
.ws1f{word-spacing:-0.629503pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:2.720182pt;}
.ws1e{word-spacing:6.562293pt;}
.ws12{word-spacing:14.173365pt;}
.ws11{word-spacing:34.401404pt;}
.ws1{word-spacing:38.013529pt;}
.ws17{word-spacing:47.177168pt;}
.ws16{word-spacing:49.098324pt;}
.ws25{word-spacing:73.232391pt;}
.ws32{word-spacing:74.045860pt;}
.ws2a{word-spacing:97.474626pt;}
.ws2c{word-spacing:121.261383pt;}
.ws2f{word-spacing:124.263725pt;}
.ws10{word-spacing:164.358134pt;}
.ws13{word-spacing:185.494704pt;}
.wsf{word-spacing:213.030115pt;}
.ws14{word-spacing:328.295096pt;}
.wsd{word-spacing:332.503227pt;}
.ws15{word-spacing:412.821547pt;}
._25{margin-left:-119.524880pt;}
._27{margin-left:-117.834406pt;}
._26{margin-left:-101.594328pt;}
._2c{margin-left:-67.132260pt;}
._2b{margin-left:-65.851544pt;}
._2f{margin-left:-44.069123pt;}
._1{margin-left:-2.028990pt;}
._2{margin-left:-1.063272pt;}
._0{width:1.052995pt;}
._3{width:2.088870pt;}
._17{width:3.143075pt;}
._c{width:4.339593pt;}
._d{width:5.241371pt;}
._18{width:6.975640pt;}
._16{width:8.700554pt;}
._15{width:9.969541pt;}
._8{width:11.036281pt;}
._7{width:11.990860pt;}
._53{width:13.165192pt;}
._14{width:14.075275pt;}
._1a{width:15.374438pt;}
._24{width:16.569949pt;}
._6{width:17.736086pt;}
._19{width:18.671898pt;}
._12{width:19.590787pt;}
._11{width:20.917339pt;}
._10{width:21.943103pt;}
._1f{width:23.070961pt;}
._1e{width:24.023783pt;}
._13{width:25.036945pt;}
._b{width:26.273428pt;}
._1b{width:27.349943pt;}
._20{width:29.081756pt;}
._28{width:30.071382pt;}
._f{width:31.888365pt;}
._e{width:32.965366pt;}
._a{width:34.412506pt;}
._9{width:35.390930pt;}
._1c{width:36.307804pt;}
._1d{width:37.667396pt;}
._4b{width:38.924375pt;}
._21{width:40.439019pt;}
._5{width:41.342653pt;}
._4{width:42.533465pt;}
._29{width:43.558450pt;}
._2a{width:44.796044pt;}
._30{width:46.457893pt;}
._23{width:48.978667pt;}
._3c{width:54.751069pt;}
._3d{width:55.838190pt;}
._22{width:56.951138pt;}
._3b{width:78.862764pt;}
._3a{width:85.100641pt;}
._4e{width:103.085620pt;}
._4d{width:106.942976pt;}
._4c{width:110.636865pt;}
._35{width:115.413336pt;}
._3f{width:117.712139pt;}
._39{width:122.456956pt;}
._52{width:125.412048pt;}
._51{width:128.057722pt;}
._50{width:129.555803pt;}
._4f{width:133.046984pt;}
._38{width:152.559437pt;}
._37{width:154.302317pt;}
._2e{width:158.428273pt;}
._36{width:159.517313pt;}
._33{width:162.000213pt;}
._34{width:167.864706pt;}
._31{width:169.762844pt;}
._42{width:185.890553pt;}
._32{width:190.362812pt;}
._43{width:200.463482pt;}
._2d{width:203.864450pt;}
._49{width:207.810881pt;}
._40{width:216.334212pt;}
._47{width:222.386648pt;}
._46{width:228.678422pt;}
._41{width:232.635524pt;}
._4a{width:241.297843pt;}
._48{width:243.521766pt;}
._44{width:263.068917pt;}
._45{width:274.783442pt;}
._3e{width:547.304749pt;}
.fs16{font-size:12.965115pt;}
.fs1b{font-size:13.027195pt;}
.fs19{font-size:13.047675pt;}
.fs5{font-size:13.930234pt;}
.fs7{font-size:13.957754pt;}
.fs9{font-size:15.202554pt;}
.fs15{font-size:15.557754pt;}
.fs1a{font-size:15.632634pt;}
.fs18{font-size:15.657594pt;}
.fs17{font-size:15.822714pt;}
.fsf{font-size:21.737591pt;}
.fse{font-size:21.749751pt;}
.fsc{font-size:22.399991pt;}
.fs10{font-size:23.727351pt;}
.fs6{font-size:23.880310pt;}
.fsb{font-size:23.882230pt;}
.fs8{font-size:23.927670pt;}
.fsa{font-size:26.062710pt;}
.fs14{font-size:27.467509pt;}
.fs13{font-size:28.652789pt;}
.fs12{font-size:28.937588pt;}
.fs3{font-size:33.637747pt;}
.fs4{font-size:35.820146pt;}
.fsd{font-size:41.735023pt;}
.fs0{font-size:51.702326pt;}
.fs11{font-size:57.122644pt;}
.fs2{font-size:62.292242pt;}
.fs1{font-size:72.882638pt;}
.y0{bottom:0.000000pt;}
.y22c{bottom:0.959725pt;}
.y20a{bottom:0.959825pt;}
.y18c{bottom:1.599827pt;}
.y8{bottom:3.039664pt;}
.y14e{bottom:3.839656pt;}
.y1{bottom:96.880628pt;}
.y59{bottom:144.559942pt;}
.y1b9{bottom:145.199942pt;}
.y19e{bottom:145.359942pt;}
.y175{bottom:147.439941pt;}
.y255{bottom:150.159940pt;}
.yb5{bottom:151.920606pt;}
.y9e{bottom:152.399939pt;}
.y30{bottom:156.719937pt;}
.y14c{bottom:158.639937pt;}
.y58{bottom:159.919936pt;}
.y1b8{bottom:160.559936pt;}
.y19d{bottom:160.719936pt;}
.y174{bottom:162.639935pt;}
.y254{bottom:165.519934pt;}
.yb4{bottom:167.119933pt;}
.y9d{bottom:167.599933pt;}
.y229{bottom:170.799932pt;}
.y1df{bottom:171.279931pt;}
.y2f{bottom:172.079931pt;}
.ye3{bottom:172.559931pt;}
.y14b{bottom:173.839930pt;}
.y57{bottom:175.119930pt;}
.y1b7{bottom:175.759930pt;}
.y19c{bottom:175.919930pt;}
.y173{bottom:177.999929pt;}
.y253{bottom:180.719928pt;}
.yb3{bottom:182.479927pt;}
.y9c{bottom:182.959927pt;}
.y1de{bottom:183.599927pt;}
.y228{bottom:185.999926pt;}
.y2e{bottom:187.279925pt;}
.ye2{bottom:187.759925pt;}
.y14a{bottom:189.199924pt;}
.y1b6{bottom:190.959924pt;}
.y19b{bottom:191.119924pt;}
.y172{bottom:193.199923pt;}
.y1da{bottom:194.639922pt;}
.y252{bottom:195.919922pt;}
.yb2{bottom:197.679921pt;}
.y1cf{bottom:199.119920pt;}
.y1d0{bottom:202.159919pt;}
.y2d{bottom:202.479919pt;}
.ye1{bottom:202.959919pt;}
.y149{bottom:204.399918pt;}
.y280{bottom:204.879918pt;}
.y56{bottom:205.679918pt;}
.y1b5{bottom:206.319917pt;}
.y19a{bottom:206.479917pt;}
.y171{bottom:208.399917pt;}
.y251{bottom:211.279915pt;}
.y9b{bottom:212.879915pt;}
.yb1{bottom:213.039915pt;}
.y227{bottom:215.919914pt;}
.y27f{bottom:217.199913pt;}
.y2c{bottom:217.839913pt;}
.ye0{bottom:218.319913pt;}
.y148{bottom:219.599912pt;}
.y1d1{bottom:220.079912pt;}
.y1b4{bottom:221.519911pt;}
.y199{bottom:221.679911pt;}
.y170{bottom:223.759910pt;}
.y250{bottom:226.479909pt;}
.y221{bottom:226.799909pt;}
.yb0{bottom:228.239909pt;}
.y27e{bottom:229.519908pt;}
.y219{bottom:231.439907pt;}
.y2b{bottom:233.039907pt;}
.ydf{bottom:233.519907pt;}
.y147{bottom:234.959906pt;}
.y55{bottom:236.559905pt;}
.y1b3{bottom:236.719905pt;}
.y198{bottom:236.879905pt;}
.y1d2{bottom:237.839905pt;}
.y97{bottom:237.999905pt;}
.y16f{bottom:238.959904pt;}
.y98{bottom:239.599904pt;}
.y24f{bottom:241.839903pt;}
.y96{bottom:242.159903pt;}
.yaf{bottom:243.439903pt;}
.y2a{bottom:248.399901pt;}
.yde{bottom:248.719901pt;}
.y146{bottom:250.159900pt;}
.y1b2{bottom:252.079899pt;}
.y197{bottom:252.239899pt;}
.y27d{bottom:254.159898pt;}
.y16e{bottom:254.319898pt;}
.y21a{bottom:254.639898pt;}
.y1d3{bottom:255.759898pt;}
.y24e{bottom:257.039897pt;}
.yae{bottom:258.799896pt;}
.y29{bottom:263.599895pt;}
.ydd{bottom:264.079894pt;}
.y1db{bottom:264.559894pt;}
.y145{bottom:265.519894pt;}
.y27c{bottom:266.319893pt;}
.y1f3{bottom:266.479893pt;}
.y1b1{bottom:267.279893pt;}
.y196{bottom:267.439893pt;}
.y16d{bottom:269.519892pt;}
.y54{bottom:269.839892pt;}
.y24d{bottom:272.239891pt;}
.y1d4{bottom:273.519891pt;}
.yad{bottom:273.999890pt;}
.y21b{bottom:274.799890pt;}
.y27b{bottom:278.639889pt;}
.y28{bottom:278.799888pt;}
.ydc{bottom:279.279888pt;}
.y144{bottom:280.719888pt;}
.y1f2{bottom:281.839887pt;}
.y1b0{bottom:282.639887pt;}
.y195{bottom:282.799887pt;}
.y88{bottom:283.759886pt;}
.y16c{bottom:284.719886pt;}
.y53{bottom:285.039886pt;}
.y24c{bottom:287.599885pt;}
.y8c{bottom:287.919885pt;}
.y87{bottom:288.079885pt;}
.yac{bottom:289.359884pt;}
.y89{bottom:289.519884pt;}
.y27a{bottom:290.959884pt;}
.y1d5{bottom:291.439883pt;}
.y8b{bottom:292.079883pt;}
.y27{bottom:294.159882pt;}
.ydb{bottom:294.639882pt;}
.y21c{bottom:294.959882pt;}
.y8a{bottom:295.599882pt;}
.y143{bottom:295.919882pt;}
.y99{bottom:296.239882pt;}
.y1f1{bottom:297.039881pt;}
.y1af{bottom:297.839881pt;}
.y194{bottom:297.999881pt;}
.y16b{bottom:300.079880pt;}
.y52{bottom:300.399880pt;}
.y24b{bottom:302.799879pt;}
.y279{bottom:303.279879pt;}
.yab{bottom:304.559878pt;}
.y222{bottom:305.999878pt;}
.y223{bottom:307.119877pt;}
.y94{bottom:308.559877pt;}
.y1d6{bottom:309.039876pt;}
.y26{bottom:309.359876pt;}
.yda{bottom:309.839876pt;}
.y95{bottom:310.159876pt;}
.y141{bottom:311.279875pt;}
.y1f0{bottom:312.399875pt;}
.y93{bottom:312.719875pt;}
.y1ae{bottom:313.039875pt;}
.y193{bottom:313.199875pt;}
.y21d{bottom:314.959874pt;}
.y224{bottom:315.119874pt;}
.y16a{bottom:315.279874pt;}
.y51{bottom:315.599874pt;}
.y142{bottom:317.199873pt;}
.y24a{bottom:318.159873pt;}
.yaa{bottom:319.759872pt;}
.y25{bottom:324.559870pt;}
.yd9{bottom:325.039870pt;}
.y1d7{bottom:326.959869pt;}
.y91{bottom:327.279869pt;}
.y1ef{bottom:327.599869pt;}
.y278{bottom:327.919869pt;}
.y1ad{bottom:328.399869pt;}
.y192{bottom:328.559869pt;}
.y92{bottom:328.879868pt;}
.y169{bottom:330.479868pt;}
.y50{bottom:330.799868pt;}
.y90{bottom:331.759867pt;}
.y249{bottom:333.359867pt;}
.ya9{bottom:335.119866pt;}
.y24{bottom:339.919864pt;}
.y277{bottom:340.239864pt;}
.yd8{bottom:340.399864pt;}
.y140{bottom:341.199864pt;}
.y1ee{bottom:342.799863pt;}
.y1ac{bottom:343.599863pt;}
.y191{bottom:343.759862pt;}
.y1d8{bottom:344.719862pt;}
.y168{bottom:345.839862pt;}
.y4f{bottom:346.159862pt;}
.y248{bottom:348.559861pt;}
.ya8{bottom:350.319860pt;}
.y1dd{bottom:352.399859pt;}
.y276{bottom:352.559859pt;}
.y13f{bottom:353.519859pt;}
.y23{bottom:355.119858pt;}
.y21e{bottom:355.439858pt;}
.yd7{bottom:355.599858pt;}
.y1dc{bottom:357.679857pt;}
.y1ab{bottom:358.959856pt;}
.y190{bottom:359.119856pt;}
.y167{bottom:361.039856pt;}
.y4e{bottom:361.359855pt;}
.y1d9{bottom:362.479855pt;}
.y247{bottom:363.919854pt;}
.y275{bottom:364.879854pt;}
.ya7{bottom:365.519854pt;}
.y13e{bottom:369.199852pt;}
.y9a{bottom:370.319852pt;}
.y22{bottom:370.479852pt;}
.y139{bottom:373.039851pt;}
.y1aa{bottom:374.159850pt;}
.y21f{bottom:375.599850pt;}
.y166{bottom:376.399849pt;}
.y4d{bottom:376.719849pt;}
.y274{bottom:377.039849pt;}
.y13b{bottom:378.479849pt;}
.y13d{bottom:378.799848pt;}
.y246{bottom:379.119848pt;}
.ya6{bottom:380.879848pt;}
.y13c{bottom:382.799847pt;}
.y13a{bottom:382.959847pt;}
.y226{bottom:385.359846pt;}
.y21{bottom:385.679846pt;}
.y1ce{bottom:386.319845pt;}
.yd6{bottom:386.479845pt;}
.y138{bottom:388.399845pt;}
.y18f{bottom:388.879844pt;}
.y1a9{bottom:389.359844pt;}
.y225{bottom:390.799844pt;}
.y165{bottom:391.599843pt;}
.y4c{bottom:391.919843pt;}
.y245{bottom:394.479842pt;}
.y220{bottom:395.599842pt;}
.ya5{bottom:396.079842pt;}
.y1ed{bottom:399.439840pt;}
.y8e{bottom:399.759840pt;}
.y20{bottom:400.879840pt;}
.y8f{bottom:401.199840pt;}
.y1cd{bottom:401.519839pt;}
.y273{bottom:401.679839pt;}
.y8d{bottom:403.919838pt;}
.y164{bottom:406.799837pt;}
.y4b{bottom:407.119837pt;}
.y244{bottom:409.679836pt;}
.y132{bottom:410.159836pt;}
.y133{bottom:410.639836pt;}
.ya4{bottom:411.439835pt;}
.y272{bottom:413.999834pt;}
.y1f{bottom:416.239834pt;}
.yd5{bottom:416.879833pt;}
.y1ec{bottom:418.799832pt;}
.y1a8{bottom:419.919832pt;}
.y18e{bottom:420.079832pt;}
.y218{bottom:421.999831pt;}
.y163{bottom:422.159831pt;}
.y4a{bottom:422.479831pt;}
.y243{bottom:424.879830pt;}
.y271{bottom:426.319829pt;}
.ya3{bottom:426.639829pt;}
.y1e{bottom:431.439827pt;}
.y18b{bottom:431.920000pt;}
.yd4{bottom:432.079827pt;}
.y213{bottom:433.999826pt;}
.y86{bottom:435.279826pt;}
.y117{bottom:435.919826pt;}
.y111{bottom:436.559825pt;}
.y162{bottom:437.359825pt;}
.y49{bottom:437.679825pt;}
.y209{bottom:437.680000pt;}
.y122{bottom:438.319825pt;}
.y208{bottom:438.639825pt;}
.y119{bottom:439.119824pt;}
.y113{bottom:439.759824pt;}
.y242{bottom:440.239824pt;}
.ya2{bottom:441.839823pt;}
.y185{bottom:444.079822pt;}
.y121{bottom:444.719822pt;}
.y118{bottom:445.519822pt;}
.y112{bottom:446.159822pt;}
.y1d{bottom:446.799821pt;}
.yd3{bottom:447.279821pt;}
.y85{bottom:450.479820pt;}
.y270{bottom:450.959820pt;}
.y161{bottom:452.719819pt;}
.y48{bottom:452.879819pt;}
.y241{bottom:455.439818pt;}
.y136{bottom:455.919818pt;}
.y12f{bottom:456.399817pt;}
.y11f{bottom:456.559817pt;}
.yf5{bottom:458.159817pt;}
.yf0{bottom:459.439816pt;}
.y20b{bottom:459.759816pt;}
.y1c{bottom:461.999815pt;}
.yd2{bottom:462.639815pt;}
.y11e{bottom:462.959815pt;}
.y26f{bottom:463.279815pt;}
.y84{bottom:465.679814pt;}
.y120{bottom:466.319813pt;}
.yf6{bottom:466.959813pt;}
.y160{bottom:467.919813pt;}
.y47{bottom:468.239813pt;}
.y186{bottom:468.879812pt;}
.y1ea{bottom:469.999812pt;}
.y11d{bottom:470.159812pt;}
.y240{bottom:470.639812pt;}
.ya1{bottom:471.759811pt;}
.y131{bottom:472.239811pt;}
.y26e{bottom:475.599810pt;}
.y1b{bottom:477.199809pt;}
.y20c{bottom:477.519809pt;}
.yd1{bottom:477.839809pt;}
.y1eb{bottom:480.719808pt;}
.y83{bottom:481.039808pt;}
.y114{bottom:481.839807pt;}
.y46{bottom:483.439807pt;}
.ya0{bottom:484.079806pt;}
.y116{bottom:485.199806pt;}
.y23f{bottom:485.999806pt;}
.y26d{bottom:487.919805pt;}
.y115{bottom:491.599803pt;}
.y130{bottom:492.079803pt;}
.y1a{bottom:492.559803pt;}
.yd0{bottom:493.199803pt;}
.y187{bottom:493.839802pt;}
.y18d{bottom:494.319802pt;}
.y20d{bottom:495.599802pt;}
.y11b{bottom:496.079802pt;}
.y82{bottom:496.239802pt;}
.y10e{bottom:497.039801pt;}
.y15f{bottom:498.479801pt;}
.y1e9{bottom:498.639801pt;}
.y45{bottom:498.799800pt;}
.y26c{bottom:500.079800pt;}
.y110{bottom:500.719800pt;}
.y23e{bottom:501.199800pt;}
.y11c{bottom:504.239798pt;}
.y124{bottom:506.319797pt;}
.y125{bottom:506.479797pt;}
.y10f{bottom:507.279797pt;}
.ycf{bottom:508.399797pt;}
.y12e{bottom:508.879796pt;}
.y81{bottom:509.519796pt;}
.y1e8{bottom:510.959796pt;}
.y80{bottom:511.439795pt;}
.y26b{bottom:512.399795pt;}
.y20e{bottom:513.359795pt;}
.y44{bottom:513.999794pt;}
.y214{bottom:514.479794pt;}
.y135{bottom:515.119794pt;}
.y23d{bottom:516.559793pt;}
.y12d{bottom:518.799792pt;}
.y215{bottom:522.479791pt;}
.y19{bottom:523.279791pt;}
.yce{bottom:523.599791pt;}
.y100{bottom:524.399790pt;}
.y26a{bottom:524.719790pt;}
.yfd{bottom:524.879790pt;}
.y7f{bottom:526.799789pt;}
.y43{bottom:529.199788pt;}
.yff{bottom:530.799788pt;}
.yfc{bottom:531.279787pt;}
.y20f{bottom:531.439787pt;}
.y23c{bottom:531.759787pt;}
.y101{bottom:534.319786pt;}
.y269{bottom:537.039785pt;}
.ycd{bottom:538.959784pt;}
.yfe{bottom:539.439784pt;}
.y7d{bottom:541.999783pt;}
.yef{bottom:542.799783pt;}
.y10b{bottom:543.119783pt;}
.y188{bottom:543.759782pt;}
.y42{bottom:544.559782pt;}
.y10d{bottom:545.999782pt;}
.y23b{bottom:546.959781pt;}
.y7e{bottom:547.919781pt;}
.yf7{bottom:549.359780pt;}
.yf8{bottom:549.519780pt;}
.y10c{bottom:552.399779pt;}
.ycc{bottom:554.159778pt;}
.y7c{bottom:555.279778pt;}
.y12b{bottom:555.919778pt;}
.y18{bottom:556.719777pt;}
.y1e7{bottom:557.199777pt;}
.y1a7{bottom:557.358577pt;}
.y7b{bottom:557.359777pt;}
.y134{bottom:557.839777pt;}
.y41{bottom:559.759776pt;}
.y268{bottom:561.679775pt;}
.y12a{bottom:562.319775pt;}
.y15e{bottom:562.639775pt;}
.yf2{bottom:566.479773pt;}
.y210{bottom:567.439773pt;}
.y189{bottom:568.559773pt;}
.ycb{bottom:569.519772pt;}
.y7a{bottom:570.479772pt;}
.y17{bottom:571.919771pt;}
.y1a6{bottom:572.558571pt;}
.y78{bottom:572.559771pt;}
.y267{bottom:573.999770pt;}
.y40{bottom:575.119770pt;}
.yf1{bottom:577.359769pt;}
.y23a{bottom:577.519769pt;}
.y1e6{bottom:577.679769pt;}
.y15d{bottom:577.839769pt;}
.y129{bottom:577.999769pt;}
.y79{bottom:578.479769pt;}
.y108{bottom:583.599767pt;}
.yca{bottom:584.719766pt;}
.y211{bottom:585.199766pt;}
.y77{bottom:585.839766pt;}
.yee{bottom:586.159766pt;}
.y266{bottom:586.319765pt;}
.y109{bottom:586.639765pt;}
.y16{bottom:587.119765pt;}
.y128{bottom:587.439765pt;}
.y1a5{bottom:587.758565pt;}
.y76{bottom:587.759765pt;}
.y10a{bottom:589.999764pt;}
.y107{bottom:590.159764pt;}
.y3f{bottom:590.319764pt;}
.y12c{bottom:590.479764pt;}
.yf3{bottom:591.439763pt;}
.y217{bottom:592.879763pt;}
.y15c{bottom:593.039763pt;}
.y18a{bottom:593.519763pt;}
.y1e5{bottom:597.199761pt;}
.y216{bottom:598.319761pt;}
.y265{bottom:598.639761pt;}
.yc9{bottom:599.919760pt;}
.y15{bottom:602.479759pt;}
.y212{bottom:602.959759pt;}
.y1a4{bottom:603.118559pt;}
.y75{bottom:603.119759pt;}
.yf4{bottom:603.439759pt;}
.y3e{bottom:605.519758pt;}
.y239{bottom:608.079757pt;}
.y15b{bottom:608.399757pt;}
.y127{bottom:608.879756pt;}
.y264{bottom:610.799756pt;}
.y126{bottom:614.799754pt;}
.y106{bottom:615.119754pt;}
.yc8{bottom:615.279754pt;}
.y105{bottom:615.599754pt;}
.y1e4{bottom:616.559753pt;}
.y123{bottom:616.719753pt;}
.y14{bottom:617.679753pt;}
.y1a3{bottom:618.318553pt;}
.y74{bottom:618.319753pt;}
.y104{bottom:619.119752pt;}
.y3d{bottom:620.879752pt;}
.y263{bottom:623.119751pt;}
.y15a{bottom:623.599751pt;}
.y103{bottom:625.519750pt;}
.y184{bottom:627.439749pt;}
.y207{bottom:628.079749pt;}
.yc7{bottom:630.479748pt;}
.y73{bottom:631.599747pt;}
.y13{bottom:633.039747pt;}
.yec{bottom:633.359747pt;}
.y1a2{bottom:633.678547pt;}
.y72{bottom:633.679747pt;}
.y262{bottom:635.439746pt;}
.y3c{bottom:636.079746pt;}
.y102{bottom:636.559745pt;}
.y1e3{bottom:637.839745pt;}
.y159{bottom:638.959744pt;}
.yeb{bottom:639.759744pt;}
.yea{bottom:639.919744pt;}
.ye8{bottom:640.399744pt;}
.yf9{bottom:640.719744pt;}
.yed{bottom:641.999743pt;}
.y11a{bottom:642.799743pt;}
.y206{bottom:643.439743pt;}
.yfb{bottom:643.599743pt;}
.yc6{bottom:645.679742pt;}
.ye9{bottom:646.319741pt;}
.y71{bottom:646.799741pt;}
.y261{bottom:647.759741pt;}
.y12{bottom:648.239741pt;}
.y1a1{bottom:648.878540pt;}
.y70{bottom:648.879740pt;}
.yfa{bottom:650.159740pt;}
.y3b{bottom:651.439739pt;}
.y137{bottom:653.039739pt;}
.y158{bottom:654.159738pt;}
.y205{bottom:658.639737pt;}
.y1e2{bottom:658.959736pt;}
.y260{bottom:660.079736pt;}
.yc5{bottom:661.038536pt;}
.y1cc{bottom:661.039736pt;}
.y6f{bottom:662.159735pt;}
.y11{bottom:663.439735pt;}
.y1a0{bottom:664.078534pt;}
.y6e{bottom:664.079734pt;}
.y183{bottom:666.319733pt;}
.y3a{bottom:666.639733pt;}
.y17f{bottom:667.759733pt;}
.y157{bottom:669.359732pt;}
.y238{bottom:671.599731pt;}
.y25f{bottom:672.399731pt;}
.y204{bottom:673.999730pt;}
.yc4{bottom:676.238530pt;}
.y1cb{bottom:676.239730pt;}
.y1e1{bottom:676.879729pt;}
.y6c{bottom:677.359729pt;}
.y10{bottom:678.799728pt;}
.y6b{bottom:679.438528pt;}
.y6d{bottom:679.439728pt;}
.y39{bottom:681.839727pt;}
.y234{bottom:683.599727pt;}
.y156{bottom:684.719726pt;}
.y182{bottom:685.839726pt;}
.y22b{bottom:687.280000pt;}
.y22a{bottom:688.239725pt;}
.y1e0{bottom:689.199724pt;}
.y22d{bottom:691.279723pt;}
.yc3{bottom:691.598523pt;}
.y1ca{bottom:691.599723pt;}
.yf{bottom:693.999722pt;}
.y6a{bottom:694.638522pt;}
.y38{bottom:697.199721pt;}
.y155{bottom:699.919720pt;}
.y25e{bottom:700.879720pt;}
.y203{bottom:704.399718pt;}
.y181{bottom:705.199718pt;}
.yc2{bottom:706.798517pt;}
.ye{bottom:709.359716pt;}
.y69{bottom:709.838516pt;}
.y37{bottom:712.399715pt;}
.y154{bottom:715.279714pt;}
.y22e{bottom:718.159713pt;}
.y202{bottom:719.759712pt;}
.yc1{bottom:721.999711pt;}
.y1c9{bottom:722.319711pt;}
.yd{bottom:724.559710pt;}
.y180{bottom:724.719710pt;}
.y68{bottom:725.198510pt;}
.y36{bottom:727.599709pt;}
.y153{bottom:730.479708pt;}
.y201{bottom:734.959706pt;}
.yc0{bottom:737.359705pt;}
.yc{bottom:739.759704pt;}
.y67{bottom:740.398504pt;}
.y35{bottom:742.959703pt;}
.y17e{bottom:744.879702pt;}
.y22f{bottom:745.199702pt;}
.y151{bottom:745.679702pt;}
.y200{bottom:750.319700pt;}
.y152{bottom:751.599699pt;}
.ybf{bottom:752.559699pt;}
.yb{bottom:755.119698pt;}
.y1c8{bottom:755.758364pt;}
.y19f{bottom:755.758498pt;}
.ye7{bottom:755.759698pt;}
.y34{bottom:758.159697pt;}
.y235{bottom:763.439695pt;}
.y17d{bottom:764.239694pt;}
.y1ff{bottom:765.519694pt;}
.ybe{bottom:767.919693pt;}
.ya{bottom:770.319692pt;}
.y1c7{bottom:770.958358pt;}
.y66{bottom:770.958492pt;}
.ye6{bottom:770.959692pt;}
.y230{bottom:771.919691pt;}
.y33{bottom:773.519691pt;}
.y150{bottom:775.599690pt;}
.y178{bottom:779.279688pt;}
.y25d{bottom:783.119687pt;}
.y17c{bottom:783.759686pt;}
.ybd{bottom:783.919686pt;}
.y1c6{bottom:786.158352pt;}
.y9f{bottom:786.158486pt;}
.ye5{bottom:786.159686pt;}
.y32{bottom:788.719685pt;}
.y1fe{bottom:795.439682pt;}
.y25c{bottom:798.319681pt;}
.y231{bottom:798.959680pt;}
.ybc{bottom:799.119680pt;}
.y9{bottom:801.199680pt;}
.y1c5{bottom:801.518346pt;}
.y65{bottom:801.518479pt;}
.ye4{bottom:801.519679pt;}
.y17b{bottom:803.279679pt;}
.y31{bottom:803.919678pt;}
.y1fb{bottom:806.159678pt;}
.y1f4{bottom:810.799676pt;}
.y25b{bottom:813.679675pt;}
.ybb{bottom:814.479674pt;}
.y1c4{bottom:816.718340pt;}
.y64{bottom:816.719673pt;}
.y17a{bottom:822.639671pt;}
.y232{bottom:825.839670pt;}
.y1f5{bottom:827.599669pt;}
.y25a{bottom:828.879668pt;}
.yba{bottom:829.679668pt;}
.y1c3{bottom:832.078334pt;}
.y63{bottom:832.079667pt;}
.y7{bottom:837.680000pt;}
.y179{bottom:842.159663pt;}
.y237{bottom:842.479663pt;}
.y259{bottom:844.079662pt;}
.yb9{bottom:845.679662pt;}
.y1c2{bottom:847.278328pt;}
.y62{bottom:847.279661pt;}
.y236{bottom:847.919661pt;}
.y233{bottom:852.559659pt;}
.y14f{bottom:854.319658pt;}
.y1f6{bottom:854.799658pt;}
.y6{bottom:855.919658pt;}
.y14d{bottom:857.360000pt;}
.y258{bottom:859.439656pt;}
.y177{bottom:860.079656pt;}
.yb8{bottom:861.039656pt;}
.y1c1{bottom:862.478322pt;}
.y61{bottom:862.479655pt;}
.y5{bottom:871.279651pt;}
.y176{bottom:872.399651pt;}
.y257{bottom:874.639650pt;}
.yb7{bottom:877.039649pt;}
.y1c0{bottom:877.838316pt;}
.y60{bottom:877.839649pt;}
.y1f7{bottom:881.999647pt;}
.y4{bottom:887.119645pt;}
.yb6{bottom:892.239643pt;}
.y1bf{bottom:893.038309pt;}
.y5f{bottom:893.039643pt;}
.y256{bottom:905.519638pt;}
.y1be{bottom:908.398303pt;}
.y5e{bottom:908.399637pt;}
.y1f8{bottom:909.039636pt;}
.y1bd{bottom:923.598297pt;}
.y5d{bottom:923.599631pt;}
.y3{bottom:927.279629pt;}
.y1f9{bottom:936.399625pt;}
.y1bc{bottom:938.798291pt;}
.y5c{bottom:938.799624pt;}
.y1bb{bottom:954.158285pt;}
.y5b{bottom:954.159618pt;}
.y1fa{bottom:963.599615pt;}
.y1fd{bottom:966.639613pt;}
.y1ba{bottom:969.358279pt;}
.y5a{bottom:969.359612pt;}
.y2{bottom:969.360279pt;}
.y1fc{bottom:972.079611pt;}
.h1d{height:0.000000pt;}
.h14{height:3.204686pt;}
.h24{height:4.640000pt;}
.ha{height:6.589001pt;}
.h20{height:7.680000pt;}
.h27{height:9.496825pt;}
.h25{height:9.511755pt;}
.hc{height:9.751164pt;}
.hd{height:10.001908pt;}
.hf{height:10.021668pt;}
.h11{height:10.915434pt;}
.hb{height:11.295387pt;}
.h21{height:11.341603pt;}
.h26{height:11.396190pt;}
.h23{height:11.414386pt;}
.h22{height:11.534758pt;}
.h5{height:14.560000pt;}
.h1a{height:15.833819pt;}
.h19{height:15.846704pt;}
.h16{height:15.855569pt;}
.he{height:17.146063pt;}
.h13{height:17.147441pt;}
.h10{height:17.180067pt;}
.h1c{height:17.280000pt;}
.h1b{height:17.297239pt;}
.h18{height:17.775568pt;}
.h12{height:18.713025pt;}
.h1f{height:19.721671pt;}
.h1e{height:20.777188pt;}
.h17{height:23.535566pt;}
.h8{height:24.151902pt;}
.h9{height:24.958666pt;}
.h15{height:29.965747pt;}
.h7{height:36.191628pt;}
.h2{height:37.122270pt;}
.h28{height:38.492695pt;}
.h6{height:42.234140pt;}
.h4{height:44.725830pt;}
.h3{height:49.414428pt;}
.h1{height:1122.640000pt;}
.h0{height:1122.666667pt;}
.w4{width:3.840000pt;}
.w6{width:6.560000pt;}
.w7{width:6.720000pt;}
.w5{width:7.520000pt;}
.w3{width:8.480000pt;}
.w2{width:246.080000pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:78.533035pt;}
.xe{left:79.653035pt;}
.x92{left:82.373904pt;}
.xb1{left:83.333033pt;}
.xae{left:85.733032pt;}
.xaf{left:87.173032pt;}
.x1d{left:90.053031pt;}
.x9c{left:91.173030pt;}
.x3{left:92.933029pt;}
.xd{left:94.373029pt;}
.x1e{left:96.453028pt;}
.x4{left:97.893028pt;}
.x9d{left:101.893029pt;}
.xac{left:104.773025pt;}
.x17{left:108.933023pt;}
.xb{left:110.373390pt;}
.x93{left:123.173017pt;}
.xb2{left:125.253034pt;}
.x15{left:128.453015pt;}
.x16{left:130.853014pt;}
.x9e{left:139.173278pt;}
.x2{left:147.654608pt;}
.x1a{left:151.333273pt;}
.x9a{left:155.813271pt;}
.x1b{left:160.293263pt;}
.x1c{left:166.533267pt;}
.x13{left:175.493263pt;}
.x9f{left:181.093261pt;}
.x21{left:188.613258pt;}
.x94{left:189.893257pt;}
.x14{left:190.853257pt;}
.x22{left:197.573254pt;}
.xa0{left:202.853252pt;}
.x23{left:207.493250pt;}
.x91{left:209.573250pt;}
.x95{left:211.653249pt;}
.x2b{left:215.013298pt;}
.x2a{left:215.973298pt;}
.x2d{left:217.893221pt;}
.x18{left:226.693243pt;}
.x2e{left:227.653217pt;}
.x19{left:229.093242pt;}
.xb0{left:230.853241pt;}
.x28{left:233.253240pt;}
.x26{left:237.573238pt;}
.x29{left:238.693239pt;}
.x27{left:239.813237pt;}
.x7a{left:241.413237pt;}
.x2f{left:244.933235pt;}
.x2c{left:251.653212pt;}
.x9b{left:255.333261pt;}
.x1f{left:264.133228pt;}
.x24{left:267.493226pt;}
.x20{left:270.533225pt;}
.xc{left:274.052800pt;}
.x25{left:275.333223pt;}
.xa1{left:279.813221pt;}
.x96{left:282.853220pt;}
.x5{left:283.813220pt;}
.x97{left:288.613218pt;}
.x6{left:306.373211pt;}
.x7b{left:313.253208pt;}
.x11{left:318.373206pt;}
.x31{left:319.653205pt;}
.x12{left:320.613205pt;}
.x30{left:327.653202pt;}
.xa2{left:328.613202pt;}
.xa3{left:335.653199pt;}
.x98{left:337.253198pt;}
.x99{left:344.293196pt;}
.x7c{left:363.813188pt;}
.x32{left:365.732920pt;}
.xad{left:377.732800pt;}
.x7d{left:378.853182pt;}
.xf{left:411.973127pt;}
.x10{left:413.253168pt;}
.xab{left:416.133167pt;}
.x64{left:417.253166pt;}
.x72{left:419.973696pt;}
.x8e{left:421.893165pt;}
.x66{left:423.493274pt;}
.xa4{left:424.453164pt;}
.x67{left:425.893277pt;}
.x33{left:427.971028pt;}
.x43{left:429.893156pt;}
.x42{left:433.093160pt;}
.x6f{left:434.853461pt;}
.x74{left:437.893158pt;}
.x75{left:441.253157pt;}
.x44{left:443.013159pt;}
.x8{left:444.613155pt;}
.x89{left:447.652800pt;}
.x65{left:448.613214pt;}
.xa9{left:449.733153pt;}
.xa6{left:451.013153pt;}
.x3f{left:453.253152pt;}
.x45{left:455.493151pt;}
.x54{left:457.733150pt;}
.x55{left:458.693150pt;}
.x52{left:460.133149pt;}
.x53{left:464.293148pt;}
.x7{left:465.893147pt;}
.x3e{left:469.413146pt;}
.x3a{left:473.252827pt;}
.x86{left:483.173140pt;}
.x8a{left:491.012800pt;}
.x69{left:492.613266pt;}
.x7f{left:493.893191pt;}
.x6e{left:501.413406pt;}
.x80{left:503.653132pt;}
.x50{left:504.933131pt;}
.x51{left:506.373125pt;}
.x4f{left:509.573130pt;}
.x60{left:511.173129pt;}
.x61{left:512.133129pt;}
.x78{left:513.253062pt;}
.x88{left:514.213131pt;}
.x87{left:516.453124pt;}
.x3c{left:517.572781pt;}
.x36{left:519.973344pt;}
.x4e{left:521.093125pt;}
.x38{left:524.293592pt;}
.x46{left:529.573122pt;}
.x4d{left:530.693121pt;}
.x8b{left:534.212800pt;}
.x6b{left:537.093304pt;}
.x3b{left:538.052785pt;}
.x76{left:541.413117pt;}
.x7e{left:544.773115pt;}
.x57{left:547.013115pt;}
.x58{left:547.973115pt;}
.x73{left:549.573114pt;}
.x56{left:553.253112pt;}
.x5a{left:554.693111pt;}
.x5b{left:557.573113pt;}
.x59{left:561.573109pt;}
.xaa{left:562.693108pt;}
.x8f{left:563.813108pt;}
.x8d{left:565.093107pt;}
.x6c{left:567.973353pt;}
.x6a{left:568.933349pt;}
.x4c{left:571.813105pt;}
.x81{left:572.933104pt;}
.x5f{left:575.333103pt;}
.x5e{left:578.213102pt;}
.x4b{left:581.253101pt;}
.x9{left:589.413098pt;}
.x5d{left:599.493094pt;}
.x82{left:600.613093pt;}
.x68{left:604.293291pt;}
.x83{left:609.413090pt;}
.xa{left:611.973089pt;}
.x47{left:614.853087pt;}
.x48{left:616.293081pt;}
.x84{left:617.413086pt;}
.x49{left:619.173086pt;}
.x85{left:620.133085pt;}
.x6d{left:626.533376pt;}
.x4a{left:627.653082pt;}
.x77{left:633.093080pt;}
.x71{left:639.653405pt;}
.x70{left:640.773405pt;}
.x3d{left:644.933075pt;}
.x63{left:646.853075pt;}
.x41{left:647.973074pt;}
.x62{left:655.013071pt;}
.x40{left:656.133071pt;}
.x34{left:657.413070pt;}
.x90{left:658.853070pt;}
.xa8{left:661.413069pt;}
.x8c{left:662.372800pt;}
.xa5{left:665.893067pt;}
.x5c{left:666.853067pt;}
.x35{left:670.533074pt;}
.x37{left:684.613193pt;}
.x39{left:699.013133pt;}
.x79{left:709.253050pt;}
.xa7{left:711.492800pt;}
}




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