
    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_19a4d3544a32073a9675c4f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_9026655eea5eb557fb65ed76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_beead813eb162242468be814.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_17582961cb53cd65e9a1d83b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_10395cef78131a6b3c1a500b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067383;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_03f671400cb4330ef6c12485.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.067383;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_039218d78d80ac97f583b3f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_103090230fdb936d78852471.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.074707;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_34a3eae38eac269f92462a32.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.074707;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_e4cc595354bd9e7be4c1f440.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.094727;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.fff{font-family:fff;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_30ea98e8c6e163f13972d6f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fdc4884968d578911debb4bb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_68f82754b431af331225a8f8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9c894b3e9f0e30884ba97271.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_312b1f478cd29c59f90f1015.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f18ec537652e652c416c1536.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f64ffda5d86d193f0f21107f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_e49e99bbe7536ba1c7de69b0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.100098;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:ff1b;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.003906;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:ff1c;src:url('chunks/assets/font_bc0a614a22e640ebc8f387f0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.100098;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:ff1d;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.035156;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:ff1e;src:url('chunks/assets/font_2c4561b22fc555ac21a8a5a1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.088379;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:ff1f;src:url('chunks/assets/font_ad294c714fd88de9efb8b716.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.088379;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:ff20;src:url('chunks/assets/font_da1d216a632d54834af7bf2a.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.048340;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:ff21;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.003906;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:ff22;src:url('chunks/assets/font_3c2db7702255dc77a9785ee8.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.048340;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:ff23;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.739746;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:ff24;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.035156;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;}
.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);}
.v1{vertical-align:-44.640000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls27{letter-spacing:-0.738000px;}
.lsd{letter-spacing:-0.517200px;}
.ls19{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.306000px;}
.ls4{letter-spacing:-0.304800px;}
.ls26{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.198000px;}
.ls13{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.145200px;}
.ls18{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.018000px;}
.ls23{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.127200px;}
.ls15{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.202800px;}
.ls3{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls9{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.337200px;}
.ls8{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.594000px;}
.ls25{letter-spacing:76.428000px;}
.ls7{letter-spacing:150.660000px;}
.lsa{letter-spacing:199.020000px;}
.ls28{letter-spacing:270.360000px;}
.ls1e{letter-spacing:284.580000px;}
.ls1f{letter-spacing:305.460000px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-15.067200px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.824000px;}
.ws11{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.662000px;}
.ws1b{word-spacing:-13.572000px;}
.ws1a{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.446000px;}
.ws13{word-spacing:-13.410000px;}
.ws8{word-spacing:-13.374000px;}
.ws14{word-spacing:-13.338000px;}
.ws12{word-spacing:-13.320000px;}
.wsf{word-spacing:-13.302000px;}
.wse{word-spacing:-13.230000px;}
.ws1c{word-spacing:-13.212000px;}
.ws16{word-spacing:-13.104000px;}
.ws1d{word-spacing:-12.762000px;}
.ws18{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.397200px;}
.ws5{word-spacing:-12.262800px;}
.ws4{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.914800px;}
.ws3{word-spacing:-11.755200px;}
.ws19{word-spacing:-11.700000px;}
.wsd{word-spacing:-11.542800px;}
.wsb{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.347840px;}
._0{width:1.092960px;}
._2{width:2.138160px;}
._3{width:3.218160px;}
._4{width:59.706000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:5.760000px;}
.fs7{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:1.440000px;}
.ya{bottom:3.240000px;}
.y7{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y193{bottom:9.900000px;}
.y19b{bottom:9.930000px;}
.y26{bottom:10.080000px;}
.y30{bottom:10.110000px;}
.y240{bottom:10.974000px;}
.y40{bottom:10.980000px;}
.y63{bottom:11.010000px;}
.y49{bottom:11.025000px;}
.y5d{bottom:11.154000px;}
.y23{bottom:11.160000px;}
.y6c{bottom:11.205000px;}
.y102{bottom:11.340000px;}
.y19a{bottom:11.370000px;}
.y108{bottom:11.385000px;}
.y12f{bottom:11.880000px;}
.y21b{bottom:12.420000px;}
.ya9{bottom:12.600000px;}
.yad{bottom:13.320000px;}
.y1f4{bottom:15.300000px;}
.yed{bottom:16.740000px;}
.y157{bottom:17.280000px;}
.y154{bottom:17.325000px;}
.y12c{bottom:17.505000px;}
.y12a{bottom:18.585000px;}
.yeb{bottom:18.720000px;}
.y37{bottom:18.900000px;}
.y114{bottom:18.930000px;}
.y155{bottom:18.945000px;}
.y288{bottom:21.960000px;}
.y74{bottom:25.020000px;}
.yec{bottom:30.240000px;}
.y156{bottom:32.400000px;}
.y153{bottom:32.445000px;}
.y5c{bottom:33.834000px;}
.y45{bottom:33.840000px;}
.y26e{bottom:33.870000px;}
.y7b{bottom:33.885000px;}
.ya5{bottom:34.020000px;}
.yb5{bottom:34.065000px;}
.y188{bottom:34.200000px;}
.ydb{bottom:34.560000px;}
.ya8{bottom:35.460000px;}
.y73{bottom:36.180000px;}
.y12b{bottom:37.845000px;}
.y287{bottom:39.780000px;}
.y129{bottom:41.445000px;}
.ya7{bottom:47.160000px;}
.y75{bottom:47.880000px;}
.y187{bottom:49.320000px;}
.yc9{bottom:49.365000px;}
.y8b{bottom:56.514000px;}
.yb0{bottom:56.520000px;}
.y14d{bottom:56.565000px;}
.y5b{bottom:56.694000px;}
.y9f{bottom:56.700000px;}
.y44{bottom:56.745000px;}
.y3{bottom:57.636000px;}
.ya6{bottom:58.140000px;}
.y2af{bottom:58.185000px;}
.y72{bottom:59.040000px;}
.y186{bottom:64.440000px;}
.yc8{bottom:64.485000px;}
.y1d3{bottom:76.134000px;}
.y2{bottom:77.796000px;}
.y5a{bottom:79.374000px;}
.y9e{bottom:79.380000px;}
.y1da{bottom:79.410000px;}
.yaf{bottom:79.425000px;}
.y20e{bottom:79.554000px;}
.ya4{bottom:79.560000px;}
.y43{bottom:79.605000px;}
.y185{bottom:79.740000px;}
.y24d{bottom:81.534000px;}
.y71{bottom:81.720000px;}
.y13c{bottom:90.030000px;}
.y184{bottom:94.860000px;}
.yc7{bottom:94.905000px;}
.y1d2{bottom:98.814000px;}
.y8a{bottom:102.054000px;}
.y215{bottom:102.060000px;}
.yae{bottom:102.105000px;}
.y1ea{bottom:102.234000px;}
.ya3{bottom:102.240000px;}
.y1d9{bottom:102.270000px;}
.y59{bottom:102.279000px;}
.y42{bottom:102.285000px;}
.y17d{bottom:105.300000px;}
.y219{bottom:106.785000px;}
.y183{bottom:110.025000px;}
.y13b{bottom:112.710000px;}
.yc6{bottom:117.405000px;}
.y1d1{bottom:121.719000px;}
.y1bd{bottom:124.920000px;}
.y1d8{bottom:124.950000px;}
.y89{bottom:124.959000px;}
.y9d{bottom:124.965000px;}
.ya2{bottom:125.130000px;}
.y58{bottom:125.139000px;}
.yac{bottom:125.145000px;}
.y182{bottom:125.325000px;}
.y216{bottom:128.739000px;}
.y101{bottom:129.456000px;}
.y252{bottom:129.465000px;}
.y218{bottom:129.645000px;}
.y82{bottom:129.996000px;}
.y1e9{bottom:130.716000px;}
.y21c{bottom:131.436000px;}
.y13a{bottom:135.570000px;}
.y2a4{bottom:136.110000px;}
.y181{bottom:137.016000px;}
.y24b{bottom:137.376000px;}
.ye6{bottom:137.556000px;}
.y1a5{bottom:137.736000px;}
.y152{bottom:138.096000px;}
.y23f{bottom:139.536000px;}
.yd1{bottom:139.896000px;}
.y3d{bottom:140.076000px;}
.y4c{bottom:140.616000px;}
.y1bf{bottom:141.336000px;}
.y11e{bottom:141.696000px;}
.y28f{bottom:143.136000px;}
.y25a{bottom:143.496000px;}
.y251{bottom:143.856000px;}
.y1d0{bottom:144.399000px;}
.y192{bottom:144.576000px;}
.y20b{bottom:145.116000px;}
.y26a{bottom:146.736000px;}
.y88{bottom:147.639000px;}
.y1bc{bottom:147.780000px;}
.ya1{bottom:147.810000px;}
.y57{bottom:147.819000px;}
.y9c{bottom:147.825000px;}
.y1b1{bottom:149.076000px;}
.y20d{bottom:149.256000px;}
.y249{bottom:150.150000px;}
.yb7{bottom:150.330000px;}
.y20{bottom:150.690000px;}
.y100{bottom:151.770000px;}
.y24e{bottom:152.280000px;}
.y217{bottom:152.325000px;}
.y99{bottom:153.390000px;}
.y1f2{bottom:154.110000px;}
.y160{bottom:155.910000px;}
.y172{bottom:156.270000px;}
.y139{bottom:158.430000px;}
.y2a3{bottom:158.970000px;}
.y1a4{bottom:160.050000px;}
.y274{bottom:161.310000px;}
.yd2{bottom:162.210000px;}
.y23e{bottom:163.110000px;}
.y6f{bottom:164.190000px;}
.y112{bottom:164.910000px;}
.y28e{bottom:166.710000px;}
.y1cf{bottom:167.259000px;}
.y20a{bottom:168.690000px;}
.y269{bottom:170.310000px;}
.y1b0{bottom:170.490000px;}
.y87{bottom:170.499000px;}
.y9b{bottom:170.505000px;}
.y2ae{bottom:170.640000px;}
.ya0{bottom:170.670000px;}
.y56{bottom:170.679000px;}
.yab{bottom:170.685000px;}
.ye5{bottom:171.210000px;}
.y1f{bottom:172.110000px;}
.y128{bottom:172.470000px;}
.y214{bottom:172.830000px;}
.yff{bottom:174.090000px;}
.y98{bottom:176.970000px;}
.y1f1{bottom:177.690000px;}
.y191{bottom:178.410000px;}
.y3c{bottom:178.770000px;}
.y151{bottom:179.310000px;}
.y138{bottom:181.110000px;}
.y22a{bottom:181.470000px;}
.y2a2{bottom:181.830000px;}
.y1a3{bottom:182.370000px;}
.y2ad{bottom:182.550000px;}
.yb6{bottom:184.170000px;}
.y259{bottom:184.530000px;}
.yd0{bottom:184.710000px;}
.y250{bottom:184.890000px;}
.y11d{bottom:186.510000px;}
.y6e{bottom:187.770000px;}
.y1be{bottom:188.490000px;}
.y15f{bottom:189.750000px;}
.y1ce{bottom:189.939000px;}
.y171{bottom:190.110000px;}
.y28d{bottom:190.290000px;}
.y248{bottom:191.190000px;}
.y209{bottom:192.270000px;}
.y1bb{bottom:193.350000px;}
.y55{bottom:193.359000px;}
.y9a{bottom:193.365000px;}
.yb4{bottom:193.545000px;}
.y1af{bottom:193.890000px;}
.y1e{bottom:194.430000px;}
.y273{bottom:194.970000px;}
.y3b{bottom:195.330000px;}
.yfe{bottom:196.410000px;}
.y97{bottom:200.550000px;}
.y1f0{bottom:201.270000px;}
.y137{bottom:204.015000px;}
.y2a1{bottom:204.510000px;}
.y1a2{bottom:204.870000px;}
.ye4{bottom:205.050000px;}
.y2ac{bottom:205.410000px;}
.y111{bottom:205.950000px;}
.yc5{bottom:208.110000px;}
.y11c{bottom:208.830000px;}
.y238{bottom:210.090000px;}
.y6d{bottom:211.170000px;}
.y190{bottom:212.070000px;}
.y1cd{bottom:212.799000px;}
.y127{bottom:213.510000px;}
.y28c{bottom:213.690000px;}
.y208{bottom:215.670000px;}
.y1ba{bottom:216.030000px;}
.y86{bottom:216.039000px;}
.y1d7{bottom:216.210000px;}
.y54{bottom:216.219000px;}
.y180{bottom:216.225000px;}
.yb3{bottom:216.255000px;}
.y1d{bottom:216.750000px;}
.y1ae{bottom:217.470000px;}
.y3a{bottom:217.650000px;}
.yfd{bottom:218.730000px;}
.y24a{bottom:219.630000px;}
.y213{bottom:219.810000px;}
.y150{bottom:220.350000px;}
.y15e{bottom:223.410000px;}
.y170{bottom:223.770000px;}
.y96{bottom:223.950000px;}
.y1ef{bottom:224.850000px;}
.y258{bottom:225.750000px;}
.y24f{bottom:226.110000px;}
.y136{bottom:226.695000px;}
.y1a1{bottom:227.190000px;}
.y2a0{bottom:227.415000px;}
.y2ab{bottom:228.090000px;}
.y229{bottom:228.630000px;}
.ycf{bottom:230.430000px;}
.y11b{bottom:231.150000px;}
.y247{bottom:232.410000px;}
.y23d{bottom:233.670000px;}
.y6b{bottom:234.750000px;}
.y1cc{bottom:235.659000px;}
.y28b{bottom:237.270000px;}
.ye3{bottom:238.755000px;}
.y1b9{bottom:238.890000px;}
.y53{bottom:238.899000px;}
.y17f{bottom:238.905000px;}
.y1c{bottom:239.115000px;}
.y207{bottom:239.295000px;}
.y36{bottom:240.015000px;}
.y268{bottom:240.915000px;}
.yfc{bottom:241.095000px;}
.y212{bottom:243.435000px;}
.y18f{bottom:245.775000px;}
.y110{bottom:247.215000px;}
.y95{bottom:247.575000px;}
.y1ee{bottom:248.295000px;}
.y135{bottom:249.555000px;}
.y29f{bottom:250.095000px;}
.y2aa{bottom:250.995000px;}
.y228{bottom:252.255000px;}
.yce{bottom:252.975000px;}
.y11a{bottom:253.515000px;}
.y14c{bottom:253.830000px;}
.y126{bottom:254.775000px;}
.y15d{bottom:257.295000px;}
.y16f{bottom:257.655000px;}
.y1cb{bottom:258.339000px;}
.y6a{bottom:258.375000px;}
.y28a{bottom:260.895000px;}
.y85{bottom:261.579000px;}
.y1b{bottom:261.615000px;}
.y1b8{bottom:261.750000px;}
.y52{bottom:261.759000px;}
.y17e{bottom:261.765000px;}
.yb2{bottom:261.795000px;}
.y39{bottom:262.335000px;}
.y272{bottom:262.515000px;}
.y206{bottom:262.875000px;}
.yfb{bottom:263.595000px;}
.y267{bottom:264.495000px;}
.y1ad{bottom:264.675000px;}
.y257{bottom:266.835000px;}
.y211{bottom:267.015000px;}
.y94{bottom:271.155000px;}
.y1a0{bottom:271.875000px;}
.y134{bottom:272.235000px;}
.ye2{bottom:272.595000px;}
.y29e{bottom:272.955000px;}
.y246{bottom:273.495000px;}
.y2a9{bottom:273.675000px;}
.ycd{bottom:275.295000px;}
.y227{bottom:275.655000px;}
.y119{bottom:275.835000px;}
.y14b{bottom:276.690000px;}
.y18e{bottom:279.615000px;}
.y23c{bottom:280.695000px;}
.y1ca{bottom:281.199000px;}
.y69{bottom:281.955000px;}
.y1a{bottom:283.935000px;}
.y289{bottom:284.295000px;}
.y1b7{bottom:284.430000px;}
.y51{bottom:284.439000px;}
.y1d6{bottom:284.475000px;}
.y38{bottom:284.655000px;}
.yfa{bottom:285.915000px;}
.y205{bottom:286.455000px;}
.y1ac{bottom:288.075000px;}
.y10f{bottom:288.255000px;}
.y210{bottom:290.595000px;}
.y15c{bottom:290.955000px;}
.y16e{bottom:291.315000px;}
.y19f{bottom:294.195000px;}
.y93{bottom:294.735000px;}
.y133{bottom:295.095000px;}
.y1ed{bottom:295.455000px;}
.y29d{bottom:295.635000px;}
.y125{bottom:295.815000px;}
.y271{bottom:296.175000px;}
.y2a8{bottom:296.535000px;}
.ycc{bottom:297.615000px;}
.y118{bottom:298.335000px;}
.y226{bottom:299.235000px;}
.y14a{bottom:299.550000px;}
.y14f{bottom:302.655000px;}
.y1c9{bottom:303.909000px;}
.y23b{bottom:304.275000px;}
.y68{bottom:305.355000px;}
.y19{bottom:306.255000px;}
.y35{bottom:306.975000px;}
.y84{bottom:307.149000px;}
.y1b6{bottom:307.290000px;}
.y50{bottom:307.329000px;}
.yb1{bottom:307.335000px;}
.y286{bottom:307.875000px;}
.y256{bottom:308.055000px;}
.yf9{bottom:308.235000px;}
.y204{bottom:309.855000px;}
.y265{bottom:311.475000px;}
.y1ab{bottom:311.655000px;}
.y18d{bottom:313.275000px;}
.y20f{bottom:313.995000px;}
.y245{bottom:314.715000px;}
.y132{bottom:317.955000px;}
.y92{bottom:318.135000px;}
.y29c{bottom:318.495000px;}
.y1ec{bottom:319.035000px;}
.y2a7{bottom:319.215000px;}
.ycb{bottom:319.935000px;}
.y117{bottom:320.655000px;}
.y149{bottom:322.230000px;}
.y225{bottom:322.815000px;}
.y15b{bottom:324.795000px;}
.y16d{bottom:324.975000px;}
.y1c8{bottom:326.769000px;}
.y23a{bottom:327.855000px;}
.y18{bottom:328.575000px;}
.y67{bottom:328.935000px;}
.y34{bottom:329.475000px;}
.y1b5{bottom:329.970000px;}
.y83{bottom:330.009000px;}
.y1d5{bottom:330.015000px;}
.y4f{bottom:330.189000px;}
.yf8{bottom:330.555000px;}
.y285{bottom:331.455000px;}
.y203{bottom:333.435000px;}
.y266{bottom:335.055000px;}
.y1aa{bottom:335.235000px;}
.y19e{bottom:335.415000px;}
.y124{bottom:337.035000px;}
.y20c{bottom:337.575000px;}
.ye1{bottom:339.915000px;}
.y131{bottom:340.635000px;}
.y29b{bottom:341.355000px;}
.y91{bottom:341.715000px;}
.y2a6{bottom:342.075000px;}
.yca{bottom:342.255000px;}
.y1eb{bottom:342.435000px;}
.y116{bottom:342.975000px;}
.y14e{bottom:343.875000px;}
.y148{bottom:345.135000px;}
.y224{bottom:346.395000px;}
.y18c{bottom:347.115000px;}
.y255{bottom:349.095000px;}
.y1c7{bottom:349.449000px;}
.y17{bottom:350.895000px;}
.y239{bottom:351.255000px;}
.y33{bottom:351.795000px;}
.y66{bottom:352.515000px;}
.y1b4{bottom:352.830000px;}
.y4e{bottom:352.869000px;}
.yf7{bottom:352.875000px;}
.y284{bottom:355.035000px;}
.y244{bottom:355.755000px;}
.y19d{bottom:357.915000px;}
.y15a{bottom:358.455000px;}
.y264{bottom:358.635000px;}
.y16c{bottom:358.815000px;}
.y202{bottom:361.155000px;}
.y270{bottom:363.675000px;}
.y24c{bottom:364.029000px;}
.y29a{bottom:364.035000px;}
.yc4{bottom:364.575000px;}
.y2a5{bottom:364.935000px;}
.y90{bottom:365.295000px;}
.y1d4{bottom:366.015000px;}
.y147{bottom:367.815000px;}
.y223{bottom:369.795000px;}
.y10e{bottom:370.515000px;}
.y1c6{bottom:372.309000px;}
.y16{bottom:373.215000px;}
.ye0{bottom:373.755000px;}
.y32{bottom:374.115000px;}
.y237{bottom:374.835000px;}
.yf6{bottom:375.195000px;}
.y130{bottom:375.549000px;}
.y1b3{bottom:375.555000px;}
.y4d{bottom:375.729000px;}
.y65{bottom:375.915000px;}
.y123{bottom:378.075000px;}
.y283{bottom:378.435000px;}
.y19c{bottom:380.235000px;}
.y18b{bottom:380.775000px;}
.y1a9{bottom:382.215000px;}
.y201{bottom:384.735000px;}
.y115{bottom:387.615000px;}
.yc3{bottom:388.155000px;}
.y8f{bottom:388.875000px;}
.y1e8{bottom:389.595000px;}
.y254{bottom:390.315000px;}
.y146{bottom:390.675000px;}
.y159{bottom:392.115000px;}
.y16b{bottom:392.475000px;}
.y222{bottom:393.375000px;}
.y298{bottom:394.455000px;}
.y1c5{bottom:394.989000px;}
.y15{bottom:395.715000px;}
.y31{bottom:396.435000px;}
.y243{bottom:396.975000px;}
.y26f{bottom:397.335000px;}
.yf5{bottom:397.695000px;}
.y12e{bottom:398.409000px;}
.y1b2{bottom:398.415000px;}
.y64{bottom:399.495000px;}
.y282{bottom:402.015000px;}
.y263{bottom:405.615000px;}
.y1a8{bottom:405.795000px;}
.ydf{bottom:407.415000px;}
.y200{bottom:408.135000px;}
.y113{bottom:409.935000px;}
.yc2{bottom:411.735000px;}
.y8e{bottom:412.275000px;}
.y1e7{bottom:412.995000px;}
.y145{bottom:413.355000px;}
.y26d{bottom:413.895000px;}
.y18a{bottom:414.615000px;}
.y221{bottom:416.955000px;}
.y297{bottom:417.315000px;}
.y1c4{bottom:417.849000px;}
.y14{bottom:418.035000px;}
.y2f{bottom:418.755000px;}
.y122{bottom:419.295000px;}
.yf4{bottom:420.015000px;}
.y21a{bottom:421.089000px;}
.y12d{bottom:421.269000px;}
.y199{bottom:421.455000px;}
.y236{bottom:421.995000px;}
.y62{bottom:423.075000px;}
.y281{bottom:425.595000px;}
.y158{bottom:425.955000px;}
.y16a{bottom:426.315000px;}
.y262{bottom:429.225000px;}
.y1a7{bottom:429.405000px;}
.y253{bottom:431.385000px;}
.y1ff{bottom:431.745000px;}
.yc1{bottom:435.345000px;}
.y8d{bottom:435.885000px;}
.y144{bottom:436.215000px;}
.y1e6{bottom:436.605000px;}
.y26c{bottom:437.325000px;}
.y242{bottom:438.225000px;}
.y296{bottom:439.995000px;}
.y13{bottom:440.385000px;}
.y1c3{bottom:440.709000px;}
.y2e{bottom:441.105000px;}
.yde{bottom:441.285000px;}
.yf3{bottom:442.365000px;}
.y198{bottom:443.805000px;}
.y176{bottom:443.949000px;}
.y235{bottom:445.425000px;}
.y61{bottom:446.685000px;}
.y189{bottom:448.305000px;}
.y280{bottom:449.205000px;}
.y2b1{bottom:449.745000px;}
.y1a6{bottom:452.805000px;}
.y10d{bottom:452.985000px;}
.y1fe{bottom:455.325000px;}
.ydd{bottom:457.665000px;}
.yc0{bottom:458.745000px;}
.y143{bottom:459.075000px;}
.y8c{bottom:459.465000px;}
.y169{bottom:460.005000px;}
.y1e5{bottom:460.185000px;}
.y121{bottom:460.545000px;}
.y26b{bottom:460.905000px;}
.y12{bottom:462.705000px;}
.y295{bottom:462.900000px;}
.y1c2{bottom:463.389000px;}
.y2d{bottom:463.605000px;}
.yf2{bottom:464.685000px;}
.y197{bottom:466.125000px;}
.y175{bottom:466.809000px;}
.y234{bottom:469.005000px;}
.y60{bottom:470.085000px;}
.y27f{bottom:472.605000px;}
.y168{bottom:476.385000px;}
.y1fd{bottom:478.725000px;}
.y241{bottom:479.265000px;}
.yda{bottom:481.245000px;}
.y142{bottom:481.755000px;}
.y220{bottom:482.145000px;}
.ybf{bottom:482.325000px;}
.y81{bottom:482.865000px;}
.y2b0{bottom:483.585000px;}
.y1e4{bottom:483.765000px;}
.y11{bottom:485.025000px;}
.y294{bottom:485.580000px;}
.y2c{bottom:485.925000px;}
.y1c1{bottom:486.294000px;}
.yf1{bottom:487.005000px;}
.y196{bottom:488.445000px;}
.y174{bottom:489.714000px;}
.y10c{bottom:491.685000px;}
.y231{bottom:492.585000px;}
.y5f{bottom:493.665000px;}
.y27e{bottom:496.185000px;}
.y261{bottom:499.785000px;}
.y167{bottom:499.965000px;}
.y120{bottom:501.585000px;}
.y1fc{bottom:502.305000px;}
.ydc{bottom:504.645000px;}
.ybd{bottom:505.905000px;}
.y7f{bottom:506.445000px;}
.y1e3{bottom:507.165000px;}
.y10{bottom:507.345000px;}
.y2b{bottom:508.245000px;}
.y293{bottom:508.440000px;}
.y1c0{bottom:508.974000px;}
.yf0{bottom:509.325000px;}
.y195{bottom:510.945000px;}
.y173{bottom:512.394000px;}
.y17c{bottom:513.480000px;}
.y233{bottom:516.165000px;}
.y17b{bottom:517.080000px;}
.y5e{bottom:517.245000px;}
.y27d{bottom:519.765000px;}
.y21f{bottom:520.485000px;}
.y260{bottom:523.365000px;}
.y166{bottom:523.545000px;}
.y10b{bottom:525.345000px;}
.y1fb{bottom:525.885000px;}
.ybe{bottom:528.225000px;}
.yf{bottom:529.845000px;}
.y80{bottom:530.025000px;}
.y2a{bottom:530.565000px;}
.y1e2{bottom:530.745000px;}
.y17a{bottom:531.120000px;}
.yea{bottom:531.825000px;}
.y141{bottom:531.834000px;}
.y194{bottom:533.265000px;}
.y179{bottom:533.640000px;}
.y178{bottom:537.420000px;}
.y232{bottom:539.565000px;}
.y4b{bottom:540.825000px;}
.y10a{bottom:541.905000px;}
.y11f{bottom:542.805000px;}
.y27c{bottom:543.165000px;}
.y165{bottom:546.945000px;}
.y1fa{bottom:549.465000px;}
.ybc{bottom:550.545000px;}
.ye{bottom:552.165000px;}
.y177{bottom:552.360000px;}
.y29{bottom:552.885000px;}
.y7e{bottom:553.605000px;}
.y292{bottom:553.980000px;}
.yef{bottom:554.145000px;}
.y1e1{bottom:554.325000px;}
.y140{bottom:554.514000px;}
.y21e{bottom:561.525000px;}
.y230{bottom:563.145000px;}
.y41{bottom:564.225000px;}
.y27b{bottom:566.745000px;}
.yd9{bottom:569.805000px;}
.y25f{bottom:570.345000px;}
.y164{bottom:570.525000px;}
.y1f9{bottom:572.865000px;}
.yba{bottom:574.125000px;}
.yd{bottom:574.485000px;}
.y28{bottom:575.205000px;}
.y299{bottom:575.940000px;}
.yee{bottom:576.465000px;}
.y291{bottom:576.840000px;}
.y7d{bottom:577.005000px;}
.y13f{bottom:577.374000px;}
.y1e0{bottom:577.905000px;}
.y109{bottom:586.545000px;}
.y22f{bottom:586.725000px;}
.y4a{bottom:587.805000px;}
.y27a{bottom:590.325000px;}
.y25e{bottom:593.925000px;}
.y163{bottom:594.105000px;}
.ybb{bottom:596.445000px;}
.yc{bottom:596.805000px;}
.y27{bottom:597.705000px;}
.ye9{bottom:598.785000px;}
.y290{bottom:599.520000px;}
.y13e{bottom:600.234000px;}
.y7a{bottom:600.585000px;}
.y1df{bottom:601.305000px;}
.y21d{bottom:602.745000px;}
.yd8{bottom:608.145000px;}
.y107{bottom:608.865000px;}
.y22e{bottom:610.125000px;}
.y48{bottom:611.385000px;}
.y279{bottom:613.905000px;}
.y25d{bottom:617.550000px;}
.y162{bottom:617.730000px;}
.yb9{bottom:618.810000px;}
.yb{bottom:619.170000px;}
.y25{bottom:620.070000px;}
.ye8{bottom:621.150000px;}
.y13d{bottom:622.914000px;}
.y7c{bottom:624.210000px;}
.y1de{bottom:624.930000px;}
.y106{bottom:631.230000px;}
.y22d{bottom:633.750000px;}
.y47{bottom:634.830000px;}
.y278{bottom:637.350000px;}
.y161{bottom:641.130000px;}
.y8{bottom:641.490000px;}
.y24{bottom:642.390000px;}
.ye7{bottom:643.470000px;}
.y1f8{bottom:643.650000px;}
.yd7{bottom:647.070000px;}
.y79{bottom:647.790000px;}
.y1dd{bottom:648.510000px;}
.y105{bottom:653.550000px;}
.y22c{bottom:657.330000px;}
.y46{bottom:658.410000px;}
.y277{bottom:660.930000px;}
.y6{bottom:663.990000px;}
.y25c{bottom:664.530000px;}
.y22{bottom:664.710000px;}
.yb8{bottom:665.970000px;}
.y1f7{bottom:667.050000px;}
.y70{bottom:671.190000px;}
.y1dc{bottom:671.910000px;}
.y104{bottom:676.050000px;}
.yd6{bottom:680.730000px;}
.y3f{bottom:681.990000px;}
.y276{bottom:684.510000px;}
.y1f6{bottom:690.630000px;}
.y78{bottom:694.770000px;}
.y1db{bottom:695.490000px;}
.yd5{bottom:697.110000px;}
.y103{bottom:698.370000px;}
.y22b{bottom:701.250000px;}
.y5{bottom:704.850000px;}
.y21{bottom:706.290000px;}
.y25b{bottom:706.470000px;}
.y3e{bottom:709.170000px;}
.y1f5{bottom:714.210000px;}
.y77{bottom:718.350000px;}
.y275{bottom:720.330000px;}
.yd4{bottom:720.690000px;}
.y1f3{bottom:737.610000px;}
.y76{bottom:741.930000px;}
.yd3{bottom:743.010000px;}
.y4{bottom:744.630000px;}
.y1{bottom:826.920000px;}
.h4e{height:5.729063px;}
.h2a{height:15.082031px;}
.h7{height:21.600000px;}
.ha{height:21.636000px;}
.hf{height:22.680000px;}
.h11{height:22.716000px;}
.hb{height:22.860000px;}
.h13{height:22.896000px;}
.h4f{height:23.743125px;}
.h42{height:27.000000px;}
.h28{height:30.456000px;}
.h9{height:32.670352px;}
.hc{height:36.571289px;}
.h26{height:40.372734px;}
.h2b{height:40.419844px;}
.h3c{height:40.500000px;}
.h4b{height:42.398438px;}
.h21{height:43.920000px;}
.h20{height:43.956000px;}
.h27{height:45.193359px;}
.h8{height:45.246094px;}
.h3f{height:45.540000px;}
.h4d{height:45.720000px;}
.h1c{height:46.260000px;}
.h15{height:46.296000px;}
.h16{height:46.440000px;}
.h4c{height:46.476000px;}
.h3{height:48.761719px;}
.h2{height:50.072344px;}
.he{height:55.291992px;}
.h49{height:56.531250px;}
.h25{height:60.257812px;}
.h4a{height:60.328125px;}
.h4{height:65.884219px;}
.hd{height:66.240000px;}
.h3e{height:69.156000px;}
.h1b{height:69.840000px;}
.h29{height:69.876000px;}
.h6{height:73.722656px;}
.h5{height:80.236406px;}
.h2d{height:93.240000px;}
.h53{height:93.276000px;}
.h14{height:93.420000px;}
.h1e{height:116.856000px;}
.h38{height:117.000000px;}
.h10{height:117.036000px;}
.h32{height:140.436000px;}
.h22{height:155.730000px;}
.h1a{height:163.830000px;}
.h43{height:164.010000px;}
.h2e{height:187.410000px;}
.h19{height:187.590000px;}
.h18{height:210.990000px;}
.h41{height:234.570000px;}
.h30{height:281.550000px;}
.h52{height:281.730000px;}
.h39{height:281.775000px;}
.h1d{height:328.755000px;}
.h1f{height:328.935000px;}
.h17{height:352.155000px;}
.h2f{height:352.335000px;}
.h40{height:375.015000px;}
.h47{height:375.735000px;}
.h12{height:399.315000px;}
.h3d{height:422.895000px;}
.h44{height:446.295000px;}
.h2c{height:446.475000px;}
.h33{height:493.455000px;}
.h36{height:540.645000px;}
.h37{height:564.045000px;}
.h51{height:587.625000px;}
.h50{height:611.205000px;}
.h31{height:634.605000px;}
.h56{height:892.895100px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h46{height:919.500000px;}
.h45{height:919.642275px;}
.h3a{height:1203.442110px;}
.h48{height:1203.473790px;}
.h3b{height:1203.750000px;}
.h55{height:1204.500000px;}
.h54{height:1204.815900px;}
.h35{height:1206.000000px;}
.h34{height:1206.161400px;}
.h23{height:1213.451745px;}
.h24{height:1213.500000px;}
.w45{width:47.700000px;}
.w51{width:47.880000px;}
.w44{width:55.836000px;}
.w28{width:63.000000px;}
.w9{width:63.036000px;}
.w8{width:68.220000px;}
.w27{width:68.256000px;}
.w46{width:69.660000px;}
.wb{width:73.620000px;}
.wa{width:73.800000px;}
.w47{width:76.140000px;}
.w56{width:84.456000px;}
.w55{width:85.140000px;}
.w43{width:86.580000px;}
.w4f{width:86.796000px;}
.w3a{width:89.460000px;}
.w41{width:89.856000px;}
.w7{width:90.900000px;}
.w11{width:91.800000px;}
.w26{width:92.016000px;}
.w1b{width:92.196000px;}
.we{width:93.096000px;}
.w3d{width:94.320000px;}
.w30{width:94.680000px;}
.w50{width:94.860000px;}
.w34{width:98.280000px;}
.w35{width:102.276000px;}
.w42{width:102.960000px;}
.w2e{width:103.140000px;}
.w4a{width:105.300000px;}
.w53{width:105.480000px;}
.w4c{width:105.516000px;}
.w5{width:105.660000px;}
.w6{width:105.696000px;}
.w4d{width:105.876000px;}
.w54{width:115.416000px;}
.w2a{width:115.920000px;}
.w10{width:115.956000px;}
.w1d{width:116.100000px;}
.w29{width:116.136000px;}
.w3{width:116.280000px;}
.w15{width:116.316000px;}
.w2c{width:116.460000px;}
.w37{width:117.576000px;}
.w19{width:120.816000px;}
.w39{width:121.140000px;}
.w14{width:126.720000px;}
.w17{width:126.900000px;}
.w13{width:126.936000px;}
.wc{width:127.260000px;}
.w12{width:129.816000px;}
.w1c{width:132.840000px;}
.w33{width:133.380000px;}
.w3e{width:137.160000px;}
.w32{width:137.196000px;}
.w31{width:137.556000px;}
.w23{width:137.916000px;}
.w52{width:138.240000px;}
.w2d{width:139.716000px;}
.w4e{width:142.020000px;}
.w4{width:146.916000px;}
.w2f{width:147.096000px;}
.w24{width:147.276000px;}
.w38{width:147.996000px;}
.w4b{width:148.176000px;}
.w2b{width:158.430000px;}
.w3f{width:158.610000px;}
.w21{width:158.790000px;}
.w40{width:169.200000px;}
.w20{width:169.380000px;}
.w1a{width:174.780000px;}
.w25{width:180.000000px;}
.w1f{width:190.650000px;}
.w18{width:211.890000px;}
.w57{width:214.740000px;}
.w1e{width:222.510000px;}
.w16{width:225.180000px;}
.w3b{width:233.130000px;}
.w48{width:248.250000px;}
.w49{width:270.390000px;}
.wd{width:307.650000px;}
.w36{width:342.030000px;}
.wf{width:351.210000px;}
.w3c{width:827.925000px;}
.w22{width:1262.834700px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x15{left:-16.380000px;}
.x0{left:0.000000px;}
.x2c{left:4.860000px;}
.xd{left:6.120000px;}
.x1b{left:7.380000px;}
.x4f{left:9.000000px;}
.x1a{left:10.080000px;}
.x10{left:11.160000px;}
.x12{left:12.420000px;}
.x89{left:13.680000px;}
.x39{left:14.760000px;}
.x17{left:16.245000px;}
.x80{left:17.280000px;}
.x1d{left:18.360000px;}
.x16{left:19.620000px;}
.x22{left:20.700000px;}
.x19{left:22.320000px;}
.x23{left:24.120000px;}
.x8{left:25.380000px;}
.x25{left:27.360000px;}
.x24{left:29.025000px;}
.x50{left:30.240000px;}
.x18{left:31.320000px;}
.xa{left:32.985000px;}
.x5d{left:34.200000px;}
.x30{left:35.490000px;}
.x20{left:37.485000px;}
.x6f{left:38.880000px;}
.x1f{left:40.185000px;}
.x21{left:41.760000px;}
.x1e{left:43.785000px;}
.x70{left:44.820000px;}
.x4c{left:45.900000px;}
.x4d{left:47.520000px;}
.x52{left:48.960000px;}
.x6{left:50.394000px;}
.x4e{left:52.020000px;}
.x35{left:53.820000px;}
.x28{left:55.620000px;}
.x5c{left:57.060000px;}
.x1c{left:58.314000px;}
.x64{left:60.120000px;}
.x51{left:61.200000px;}
.xbd{left:62.460000px;}
.x3d{left:63.540000px;}
.x8e{left:65.340000px;}
.x4b{left:66.780000px;}
.x81{left:67.860000px;}
.x5b{left:69.660000px;}
.x5a{left:71.145000px;}
.x96{left:72.540000px;}
.x56{left:74.565000px;}
.x3f{left:76.005000px;}
.x61{left:78.300000px;}
.x2e{left:80.100000px;}
.x33{left:83.025000px;}
.x32{left:84.285000px;}
.xb3{left:85.545000px;}
.x3b{left:86.625000px;}
.x71{left:87.705000px;}
.xbc{left:89.505000px;}
.x3c{left:90.585000px;}
.xa3{left:92.700000px;}
.x75{left:95.445000px;}
.x79{left:96.525000px;}
.xa2{left:97.590000px;}
.x78{left:98.865000px;}
.x8b{left:100.665000px;}
.x43{left:101.700000px;}
.x8f{left:103.320000px;}
.x36{left:104.625000px;}
.x3{left:106.379981px;}
.xb4{left:107.865000px;}
.x3e{left:109.125000px;}
.xaa{left:110.340000px;}
.x65{left:111.960000px;}
.x37{left:113.085000px;}
.x34{left:116.325000px;}
.x8d{left:117.585000px;}
.x7b{left:119.205000px;}
.x41{left:120.285000px;}
.x2a{left:122.445000px;}
.xb5{left:123.705000px;}
.x2f{left:124.785000px;}
.x40{left:126.045000px;}
.x73{left:128.025000px;}
.x74{left:129.825000px;}
.x76{left:131.445000px;}
.x7a{left:132.705000px;}
.x72{left:134.685000px;}
.x38{left:135.765000px;}
.x3a{left:138.285000px;}
.x77{left:140.265000px;}
.x5{left:147.996000px;}
.x82{left:153.765000px;}
.x8c{left:169.020000px;}
.x31{left:173.520000px;}
.x7c{left:176.250000px;}
.xb6{left:185.430000px;}
.x53{left:189.029981px;}
.x27{left:190.830000px;}
.x54{left:200.010000px;}
.x5f{left:202.530000px;}
.x44{left:218.370000px;}
.x90{left:221.610000px;}
.x83{left:228.990000px;}
.xab{left:248.250000px;}
.x66{left:250.590000px;}
.x7{left:264.990000px;}
.x97{left:268.950000px;}
.x42{left:281.009981px;}
.x7d{left:292.890000px;}
.x45{left:311.070000px;}
.x29{left:318.810000px;}
.x84{left:324.390000px;}
.x55{left:327.630000px;}
.xa4{left:335.010000px;}
.x1{left:370.109981px;}
.x9{left:381.990000px;}
.x67{left:398.595000px;}
.x87{left:402.915000px;}
.x5e{left:421.094981px;}
.x98{left:428.475000px;}
.xa9{left:435.494981px;}
.x46{left:441.615000px;}
.x26{left:451.154981px;}
.x85{left:462.675000px;}
.xac{left:471.495000px;}
.x91{left:476.715000px;}
.xa5{left:483.915000px;}
.x4{left:519.014981px;}
.xb{left:529.635000px;}
.x88{left:537.015000px;}
.x57{left:540.255000px;}
.x60{left:542.775000px;}
.xb7{left:547.815000px;}
.x47{left:558.615000px;}
.x7e{left:569.415000px;}
.x68{left:579.315000px;}
.x92{left:583.095000px;}
.xa0{left:589.935000px;}
.x99{left:598.575000px;}
.xa6{left:600.915000px;}
.xad{left:614.235000px;}
.x2b{left:627.195000px;}
.x2{left:631.514981px;}
.xc{left:636.015000px;}
.xb8{left:654.015000px;}
.x58{left:661.785000px;}
.x69{left:672.045000px;}
.x48{left:686.265000px;}
.x9a{left:689.145000px;}
.x86{left:696.705000px;}
.xae{left:701.745000px;}
.xa7{left:707.145000px;}
.x7f{left:709.845000px;}
.x2d{left:721.005000px;}
.x8a{left:730.185000px;}
.x62{left:734.145000px;}
.xe{left:742.425000px;}
.xb9{left:770.145000px;}
.x6a{left:778.425000px;}
.x9b{left:793.005000px;}
.xaf{left:797.325000px;}
.x49{left:813.705000px;}
.xa8{left:824.145000px;}
.x95{left:827.745000px;}
.x93{left:832.605000px;}
.xf{left:834.045000px;}
.x59{left:837.285000px;}
.xa1{left:839.085000px;}
.xba{left:856.005000px;}
.x6b{left:870.045000px;}
.x9c{left:880.305000px;}
.xb0{left:901.005000px;}
.x11{left:902.985000px;}
.x63{left:904.245000px;}
.x94{left:922.785000px;}
.x4a{left:930.750000px;}
.x9d{left:937.050000px;}
.x6c{left:939.030000px;}
.xbb{left:941.190000px;}
.xb1{left:957.570000px;}
.x13{left:966.750000px;}
.x9e{left:985.470000px;}
.x6d{left:1002.750000px;}
.xb2{left:1006.170000px;}
.x14{left:1041.270000px;}
.x9f{left:1055.850000px;}
.x6e{left:1077.270000px;}
@media print{
.v1{vertical-align:-39.680000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls27{letter-spacing:-0.656000pt;}
.lsd{letter-spacing:-0.459733pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.272000pt;}
.ls4{letter-spacing:-0.270933pt;}
.ls26{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.129067pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.016000pt;}
.ls23{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.113067pt;}
.ls15{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.180267pt;}
.ls3{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls9{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.299733pt;}
.ls8{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.528000pt;}
.ls25{letter-spacing:67.936000pt;}
.ls7{letter-spacing:133.920000pt;}
.lsa{letter-spacing:176.906667pt;}
.ls28{letter-spacing:240.320000pt;}
.ls1e{letter-spacing:252.960000pt;}
.ls1f{letter-spacing:271.520000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-13.393067pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.288000pt;}
.ws11{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.192000pt;}
.ws15{word-spacing:-12.144000pt;}
.ws1b{word-spacing:-12.064000pt;}
.ws1a{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.952000pt;}
.ws13{word-spacing:-11.920000pt;}
.ws8{word-spacing:-11.888000pt;}
.ws14{word-spacing:-11.856000pt;}
.ws12{word-spacing:-11.840000pt;}
.wsf{word-spacing:-11.824000pt;}
.wse{word-spacing:-11.760000pt;}
.ws1c{word-spacing:-11.744000pt;}
.ws16{word-spacing:-11.648000pt;}
.ws1d{word-spacing:-11.344000pt;}
.ws18{word-spacing:-11.040000pt;}
.ws17{word-spacing:-11.019733pt;}
.ws5{word-spacing:-10.900267pt;}
.ws4{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.590933pt;}
.ws3{word-spacing:-10.449067pt;}
.ws19{word-spacing:-10.400000pt;}
.wsd{word-spacing:-10.260267pt;}
.wsb{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.971520pt;}
._2{width:1.900587pt;}
._3{width:2.860587pt;}
._4{width:53.072000pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:1.280000pt;}
.ya{bottom:2.880000pt;}
.y7{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y193{bottom:8.800000pt;}
.y19b{bottom:8.826667pt;}
.y26{bottom:8.960000pt;}
.y30{bottom:8.986667pt;}
.y240{bottom:9.754667pt;}
.y40{bottom:9.760000pt;}
.y63{bottom:9.786667pt;}
.y49{bottom:9.800000pt;}
.y5d{bottom:9.914667pt;}
.y23{bottom:9.920000pt;}
.y6c{bottom:9.960000pt;}
.y102{bottom:10.080000pt;}
.y19a{bottom:10.106667pt;}
.y108{bottom:10.120000pt;}
.y12f{bottom:10.560000pt;}
.y21b{bottom:11.040000pt;}
.ya9{bottom:11.200000pt;}
.yad{bottom:11.840000pt;}
.y1f4{bottom:13.600000pt;}
.yed{bottom:14.880000pt;}
.y157{bottom:15.360000pt;}
.y154{bottom:15.400000pt;}
.y12c{bottom:15.560000pt;}
.y12a{bottom:16.520000pt;}
.yeb{bottom:16.640000pt;}
.y37{bottom:16.800000pt;}
.y114{bottom:16.826667pt;}
.y155{bottom:16.840000pt;}
.y288{bottom:19.520000pt;}
.y74{bottom:22.240000pt;}
.yec{bottom:26.880000pt;}
.y156{bottom:28.800000pt;}
.y153{bottom:28.840000pt;}
.y5c{bottom:30.074667pt;}
.y45{bottom:30.080000pt;}
.y26e{bottom:30.106667pt;}
.y7b{bottom:30.120000pt;}
.ya5{bottom:30.240000pt;}
.yb5{bottom:30.280000pt;}
.y188{bottom:30.400000pt;}
.ydb{bottom:30.720000pt;}
.ya8{bottom:31.520000pt;}
.y73{bottom:32.160000pt;}
.y12b{bottom:33.640000pt;}
.y287{bottom:35.360000pt;}
.y129{bottom:36.840000pt;}
.ya7{bottom:41.920000pt;}
.y75{bottom:42.560000pt;}
.y187{bottom:43.840000pt;}
.yc9{bottom:43.880000pt;}
.y8b{bottom:50.234667pt;}
.yb0{bottom:50.240000pt;}
.y14d{bottom:50.280000pt;}
.y5b{bottom:50.394667pt;}
.y9f{bottom:50.400000pt;}
.y44{bottom:50.440000pt;}
.y3{bottom:51.232000pt;}
.ya6{bottom:51.680000pt;}
.y2af{bottom:51.720000pt;}
.y72{bottom:52.480000pt;}
.y186{bottom:57.280000pt;}
.yc8{bottom:57.320000pt;}
.y1d3{bottom:67.674667pt;}
.y2{bottom:69.152000pt;}
.y5a{bottom:70.554667pt;}
.y9e{bottom:70.560000pt;}
.y1da{bottom:70.586667pt;}
.yaf{bottom:70.600000pt;}
.y20e{bottom:70.714667pt;}
.ya4{bottom:70.720000pt;}
.y43{bottom:70.760000pt;}
.y185{bottom:70.880000pt;}
.y24d{bottom:72.474667pt;}
.y71{bottom:72.640000pt;}
.y13c{bottom:80.026667pt;}
.y184{bottom:84.320000pt;}
.yc7{bottom:84.360000pt;}
.y1d2{bottom:87.834667pt;}
.y8a{bottom:90.714667pt;}
.y215{bottom:90.720000pt;}
.yae{bottom:90.760000pt;}
.y1ea{bottom:90.874667pt;}
.ya3{bottom:90.880000pt;}
.y1d9{bottom:90.906667pt;}
.y59{bottom:90.914667pt;}
.y42{bottom:90.920000pt;}
.y17d{bottom:93.600000pt;}
.y219{bottom:94.920000pt;}
.y183{bottom:97.800000pt;}
.y13b{bottom:100.186667pt;}
.yc6{bottom:104.360000pt;}
.y1d1{bottom:108.194667pt;}
.y1bd{bottom:111.040000pt;}
.y1d8{bottom:111.066667pt;}
.y89{bottom:111.074667pt;}
.y9d{bottom:111.080000pt;}
.ya2{bottom:111.226667pt;}
.y58{bottom:111.234667pt;}
.yac{bottom:111.240000pt;}
.y182{bottom:111.400000pt;}
.y216{bottom:114.434667pt;}
.y101{bottom:115.072000pt;}
.y252{bottom:115.080000pt;}
.y218{bottom:115.240000pt;}
.y82{bottom:115.552000pt;}
.y1e9{bottom:116.192000pt;}
.y21c{bottom:116.832000pt;}
.y13a{bottom:120.506667pt;}
.y2a4{bottom:120.986667pt;}
.y181{bottom:121.792000pt;}
.y24b{bottom:122.112000pt;}
.ye6{bottom:122.272000pt;}
.y1a5{bottom:122.432000pt;}
.y152{bottom:122.752000pt;}
.y23f{bottom:124.032000pt;}
.yd1{bottom:124.352000pt;}
.y3d{bottom:124.512000pt;}
.y4c{bottom:124.992000pt;}
.y1bf{bottom:125.632000pt;}
.y11e{bottom:125.952000pt;}
.y28f{bottom:127.232000pt;}
.y25a{bottom:127.552000pt;}
.y251{bottom:127.872000pt;}
.y1d0{bottom:128.354667pt;}
.y192{bottom:128.512000pt;}
.y20b{bottom:128.992000pt;}
.y26a{bottom:130.432000pt;}
.y88{bottom:131.234667pt;}
.y1bc{bottom:131.360000pt;}
.ya1{bottom:131.386667pt;}
.y57{bottom:131.394667pt;}
.y9c{bottom:131.400000pt;}
.y1b1{bottom:132.512000pt;}
.y20d{bottom:132.672000pt;}
.y249{bottom:133.466667pt;}
.yb7{bottom:133.626667pt;}
.y20{bottom:133.946667pt;}
.y100{bottom:134.906667pt;}
.y24e{bottom:135.360000pt;}
.y217{bottom:135.400000pt;}
.y99{bottom:136.346667pt;}
.y1f2{bottom:136.986667pt;}
.y160{bottom:138.586667pt;}
.y172{bottom:138.906667pt;}
.y139{bottom:140.826667pt;}
.y2a3{bottom:141.306667pt;}
.y1a4{bottom:142.266667pt;}
.y274{bottom:143.386667pt;}
.yd2{bottom:144.186667pt;}
.y23e{bottom:144.986667pt;}
.y6f{bottom:145.946667pt;}
.y112{bottom:146.586667pt;}
.y28e{bottom:148.186667pt;}
.y1cf{bottom:148.674667pt;}
.y20a{bottom:149.946667pt;}
.y269{bottom:151.386667pt;}
.y1b0{bottom:151.546667pt;}
.y87{bottom:151.554667pt;}
.y9b{bottom:151.560000pt;}
.y2ae{bottom:151.680000pt;}
.ya0{bottom:151.706667pt;}
.y56{bottom:151.714667pt;}
.yab{bottom:151.720000pt;}
.ye5{bottom:152.186667pt;}
.y1f{bottom:152.986667pt;}
.y128{bottom:153.306667pt;}
.y214{bottom:153.626667pt;}
.yff{bottom:154.746667pt;}
.y98{bottom:157.306667pt;}
.y1f1{bottom:157.946667pt;}
.y191{bottom:158.586667pt;}
.y3c{bottom:158.906667pt;}
.y151{bottom:159.386667pt;}
.y138{bottom:160.986667pt;}
.y22a{bottom:161.306667pt;}
.y2a2{bottom:161.626667pt;}
.y1a3{bottom:162.106667pt;}
.y2ad{bottom:162.266667pt;}
.yb6{bottom:163.706667pt;}
.y259{bottom:164.026667pt;}
.yd0{bottom:164.186667pt;}
.y250{bottom:164.346667pt;}
.y11d{bottom:165.786667pt;}
.y6e{bottom:166.906667pt;}
.y1be{bottom:167.546667pt;}
.y15f{bottom:168.666667pt;}
.y1ce{bottom:168.834667pt;}
.y171{bottom:168.986667pt;}
.y28d{bottom:169.146667pt;}
.y248{bottom:169.946667pt;}
.y209{bottom:170.906667pt;}
.y1bb{bottom:171.866667pt;}
.y55{bottom:171.874667pt;}
.y9a{bottom:171.880000pt;}
.yb4{bottom:172.040000pt;}
.y1af{bottom:172.346667pt;}
.y1e{bottom:172.826667pt;}
.y273{bottom:173.306667pt;}
.y3b{bottom:173.626667pt;}
.yfe{bottom:174.586667pt;}
.y97{bottom:178.266667pt;}
.y1f0{bottom:178.906667pt;}
.y137{bottom:181.346667pt;}
.y2a1{bottom:181.786667pt;}
.y1a2{bottom:182.106667pt;}
.ye4{bottom:182.266667pt;}
.y2ac{bottom:182.586667pt;}
.y111{bottom:183.066667pt;}
.yc5{bottom:184.986667pt;}
.y11c{bottom:185.626667pt;}
.y238{bottom:186.746667pt;}
.y6d{bottom:187.706667pt;}
.y190{bottom:188.506667pt;}
.y1cd{bottom:189.154667pt;}
.y127{bottom:189.786667pt;}
.y28c{bottom:189.946667pt;}
.y208{bottom:191.706667pt;}
.y1ba{bottom:192.026667pt;}
.y86{bottom:192.034667pt;}
.y1d7{bottom:192.186667pt;}
.y54{bottom:192.194667pt;}
.y180{bottom:192.200000pt;}
.yb3{bottom:192.226667pt;}
.y1d{bottom:192.666667pt;}
.y1ae{bottom:193.306667pt;}
.y3a{bottom:193.466667pt;}
.yfd{bottom:194.426667pt;}
.y24a{bottom:195.226667pt;}
.y213{bottom:195.386667pt;}
.y150{bottom:195.866667pt;}
.y15e{bottom:198.586667pt;}
.y170{bottom:198.906667pt;}
.y96{bottom:199.066667pt;}
.y1ef{bottom:199.866667pt;}
.y258{bottom:200.666667pt;}
.y24f{bottom:200.986667pt;}
.y136{bottom:201.506667pt;}
.y1a1{bottom:201.946667pt;}
.y2a0{bottom:202.146667pt;}
.y2ab{bottom:202.746667pt;}
.y229{bottom:203.226667pt;}
.ycf{bottom:204.826667pt;}
.y11b{bottom:205.466667pt;}
.y247{bottom:206.586667pt;}
.y23d{bottom:207.706667pt;}
.y6b{bottom:208.666667pt;}
.y1cc{bottom:209.474667pt;}
.y28b{bottom:210.906667pt;}
.ye3{bottom:212.226667pt;}
.y1b9{bottom:212.346667pt;}
.y53{bottom:212.354667pt;}
.y17f{bottom:212.360000pt;}
.y1c{bottom:212.546667pt;}
.y207{bottom:212.706667pt;}
.y36{bottom:213.346667pt;}
.y268{bottom:214.146667pt;}
.yfc{bottom:214.306667pt;}
.y212{bottom:216.386667pt;}
.y18f{bottom:218.466667pt;}
.y110{bottom:219.746667pt;}
.y95{bottom:220.066667pt;}
.y1ee{bottom:220.706667pt;}
.y135{bottom:221.826667pt;}
.y29f{bottom:222.306667pt;}
.y2aa{bottom:223.106667pt;}
.y228{bottom:224.226667pt;}
.yce{bottom:224.866667pt;}
.y11a{bottom:225.346667pt;}
.y14c{bottom:225.626667pt;}
.y126{bottom:226.466667pt;}
.y15d{bottom:228.706667pt;}
.y16f{bottom:229.026667pt;}
.y1cb{bottom:229.634667pt;}
.y6a{bottom:229.666667pt;}
.y28a{bottom:231.906667pt;}
.y85{bottom:232.514667pt;}
.y1b{bottom:232.546667pt;}
.y1b8{bottom:232.666667pt;}
.y52{bottom:232.674667pt;}
.y17e{bottom:232.680000pt;}
.yb2{bottom:232.706667pt;}
.y39{bottom:233.186667pt;}
.y272{bottom:233.346667pt;}
.y206{bottom:233.666667pt;}
.yfb{bottom:234.306667pt;}
.y267{bottom:235.106667pt;}
.y1ad{bottom:235.266667pt;}
.y257{bottom:237.186667pt;}
.y211{bottom:237.346667pt;}
.y94{bottom:241.026667pt;}
.y1a0{bottom:241.666667pt;}
.y134{bottom:241.986667pt;}
.ye2{bottom:242.306667pt;}
.y29e{bottom:242.626667pt;}
.y246{bottom:243.106667pt;}
.y2a9{bottom:243.266667pt;}
.ycd{bottom:244.706667pt;}
.y227{bottom:245.026667pt;}
.y119{bottom:245.186667pt;}
.y14b{bottom:245.946667pt;}
.y18e{bottom:248.546667pt;}
.y23c{bottom:249.506667pt;}
.y1ca{bottom:249.954667pt;}
.y69{bottom:250.626667pt;}
.y1a{bottom:252.386667pt;}
.y289{bottom:252.706667pt;}
.y1b7{bottom:252.826667pt;}
.y51{bottom:252.834667pt;}
.y1d6{bottom:252.866667pt;}
.y38{bottom:253.026667pt;}
.yfa{bottom:254.146667pt;}
.y205{bottom:254.626667pt;}
.y1ac{bottom:256.066667pt;}
.y10f{bottom:256.226667pt;}
.y210{bottom:258.306667pt;}
.y15c{bottom:258.626667pt;}
.y16e{bottom:258.946667pt;}
.y19f{bottom:261.506667pt;}
.y93{bottom:261.986667pt;}
.y133{bottom:262.306667pt;}
.y1ed{bottom:262.626667pt;}
.y29d{bottom:262.786667pt;}
.y125{bottom:262.946667pt;}
.y271{bottom:263.266667pt;}
.y2a8{bottom:263.586667pt;}
.ycc{bottom:264.546667pt;}
.y118{bottom:265.186667pt;}
.y226{bottom:265.986667pt;}
.y14a{bottom:266.266667pt;}
.y14f{bottom:269.026667pt;}
.y1c9{bottom:270.141333pt;}
.y23b{bottom:270.466667pt;}
.y68{bottom:271.426667pt;}
.y19{bottom:272.226667pt;}
.y35{bottom:272.866667pt;}
.y84{bottom:273.021333pt;}
.y1b6{bottom:273.146667pt;}
.y50{bottom:273.181333pt;}
.yb1{bottom:273.186667pt;}
.y286{bottom:273.666667pt;}
.y256{bottom:273.826667pt;}
.yf9{bottom:273.986667pt;}
.y204{bottom:275.426667pt;}
.y265{bottom:276.866667pt;}
.y1ab{bottom:277.026667pt;}
.y18d{bottom:278.466667pt;}
.y20f{bottom:279.106667pt;}
.y245{bottom:279.746667pt;}
.y132{bottom:282.626667pt;}
.y92{bottom:282.786667pt;}
.y29c{bottom:283.106667pt;}
.y1ec{bottom:283.586667pt;}
.y2a7{bottom:283.746667pt;}
.ycb{bottom:284.386667pt;}
.y117{bottom:285.026667pt;}
.y149{bottom:286.426667pt;}
.y225{bottom:286.946667pt;}
.y15b{bottom:288.706667pt;}
.y16d{bottom:288.866667pt;}
.y1c8{bottom:290.461333pt;}
.y23a{bottom:291.426667pt;}
.y18{bottom:292.066667pt;}
.y67{bottom:292.386667pt;}
.y34{bottom:292.866667pt;}
.y1b5{bottom:293.306667pt;}
.y83{bottom:293.341333pt;}
.y1d5{bottom:293.346667pt;}
.y4f{bottom:293.501333pt;}
.yf8{bottom:293.826667pt;}
.y285{bottom:294.626667pt;}
.y203{bottom:296.386667pt;}
.y266{bottom:297.826667pt;}
.y1aa{bottom:297.986667pt;}
.y19e{bottom:298.146667pt;}
.y124{bottom:299.586667pt;}
.y20c{bottom:300.066667pt;}
.ye1{bottom:302.146667pt;}
.y131{bottom:302.786667pt;}
.y29b{bottom:303.426667pt;}
.y91{bottom:303.746667pt;}
.y2a6{bottom:304.066667pt;}
.yca{bottom:304.226667pt;}
.y1eb{bottom:304.386667pt;}
.y116{bottom:304.866667pt;}
.y14e{bottom:305.666667pt;}
.y148{bottom:306.786667pt;}
.y224{bottom:307.906667pt;}
.y18c{bottom:308.546667pt;}
.y255{bottom:310.306667pt;}
.y1c7{bottom:310.621333pt;}
.y17{bottom:311.906667pt;}
.y239{bottom:312.226667pt;}
.y33{bottom:312.706667pt;}
.y66{bottom:313.346667pt;}
.y1b4{bottom:313.626667pt;}
.y4e{bottom:313.661333pt;}
.yf7{bottom:313.666667pt;}
.y284{bottom:315.586667pt;}
.y244{bottom:316.226667pt;}
.y19d{bottom:318.146667pt;}
.y15a{bottom:318.626667pt;}
.y264{bottom:318.786667pt;}
.y16c{bottom:318.946667pt;}
.y202{bottom:321.026667pt;}
.y270{bottom:323.266667pt;}
.y24c{bottom:323.581333pt;}
.y29a{bottom:323.586667pt;}
.yc4{bottom:324.066667pt;}
.y2a5{bottom:324.386667pt;}
.y90{bottom:324.706667pt;}
.y1d4{bottom:325.346667pt;}
.y147{bottom:326.946667pt;}
.y223{bottom:328.706667pt;}
.y10e{bottom:329.346667pt;}
.y1c6{bottom:330.941333pt;}
.y16{bottom:331.746667pt;}
.ye0{bottom:332.226667pt;}
.y32{bottom:332.546667pt;}
.y237{bottom:333.186667pt;}
.yf6{bottom:333.506667pt;}
.y130{bottom:333.821333pt;}
.y1b3{bottom:333.826667pt;}
.y4d{bottom:333.981333pt;}
.y65{bottom:334.146667pt;}
.y123{bottom:336.066667pt;}
.y283{bottom:336.386667pt;}
.y19c{bottom:337.986667pt;}
.y18b{bottom:338.466667pt;}
.y1a9{bottom:339.746667pt;}
.y201{bottom:341.986667pt;}
.y115{bottom:344.546667pt;}
.yc3{bottom:345.026667pt;}
.y8f{bottom:345.666667pt;}
.y1e8{bottom:346.306667pt;}
.y254{bottom:346.946667pt;}
.y146{bottom:347.266667pt;}
.y159{bottom:348.546667pt;}
.y16b{bottom:348.866667pt;}
.y222{bottom:349.666667pt;}
.y298{bottom:350.626667pt;}
.y1c5{bottom:351.101333pt;}
.y15{bottom:351.746667pt;}
.y31{bottom:352.386667pt;}
.y243{bottom:352.866667pt;}
.y26f{bottom:353.186667pt;}
.yf5{bottom:353.506667pt;}
.y12e{bottom:354.141333pt;}
.y1b2{bottom:354.146667pt;}
.y64{bottom:355.106667pt;}
.y282{bottom:357.346667pt;}
.y263{bottom:360.546667pt;}
.y1a8{bottom:360.706667pt;}
.ydf{bottom:362.146667pt;}
.y200{bottom:362.786667pt;}
.y113{bottom:364.386667pt;}
.yc2{bottom:365.986667pt;}
.y8e{bottom:366.466667pt;}
.y1e7{bottom:367.106667pt;}
.y145{bottom:367.426667pt;}
.y26d{bottom:367.906667pt;}
.y18a{bottom:368.546667pt;}
.y221{bottom:370.626667pt;}
.y297{bottom:370.946667pt;}
.y1c4{bottom:371.421333pt;}
.y14{bottom:371.586667pt;}
.y2f{bottom:372.226667pt;}
.y122{bottom:372.706667pt;}
.yf4{bottom:373.346667pt;}
.y21a{bottom:374.301333pt;}
.y12d{bottom:374.461333pt;}
.y199{bottom:374.626667pt;}
.y236{bottom:375.106667pt;}
.y62{bottom:376.066667pt;}
.y281{bottom:378.306667pt;}
.y158{bottom:378.626667pt;}
.y16a{bottom:378.946667pt;}
.y262{bottom:381.533333pt;}
.y1a7{bottom:381.693333pt;}
.y253{bottom:383.453333pt;}
.y1ff{bottom:383.773333pt;}
.yc1{bottom:386.973333pt;}
.y8d{bottom:387.453333pt;}
.y144{bottom:387.746667pt;}
.y1e6{bottom:388.093333pt;}
.y26c{bottom:388.733333pt;}
.y242{bottom:389.533333pt;}
.y296{bottom:391.106667pt;}
.y13{bottom:391.453333pt;}
.y1c3{bottom:391.741333pt;}
.y2e{bottom:392.093333pt;}
.yde{bottom:392.253333pt;}
.yf3{bottom:393.213333pt;}
.y198{bottom:394.493333pt;}
.y176{bottom:394.621333pt;}
.y235{bottom:395.933333pt;}
.y61{bottom:397.053333pt;}
.y189{bottom:398.493333pt;}
.y280{bottom:399.293333pt;}
.y2b1{bottom:399.773333pt;}
.y1a6{bottom:402.493333pt;}
.y10d{bottom:402.653333pt;}
.y1fe{bottom:404.733333pt;}
.ydd{bottom:406.813333pt;}
.yc0{bottom:407.773333pt;}
.y143{bottom:408.066667pt;}
.y8c{bottom:408.413333pt;}
.y169{bottom:408.893333pt;}
.y1e5{bottom:409.053333pt;}
.y121{bottom:409.373333pt;}
.y26b{bottom:409.693333pt;}
.y12{bottom:411.293333pt;}
.y295{bottom:411.466667pt;}
.y1c2{bottom:411.901333pt;}
.y2d{bottom:412.093333pt;}
.yf2{bottom:413.053333pt;}
.y197{bottom:414.333333pt;}
.y175{bottom:414.941333pt;}
.y234{bottom:416.893333pt;}
.y60{bottom:417.853333pt;}
.y27f{bottom:420.093333pt;}
.y168{bottom:423.453333pt;}
.y1fd{bottom:425.533333pt;}
.y241{bottom:426.013333pt;}
.yda{bottom:427.773333pt;}
.y142{bottom:428.226667pt;}
.y220{bottom:428.573333pt;}
.ybf{bottom:428.733333pt;}
.y81{bottom:429.213333pt;}
.y2b0{bottom:429.853333pt;}
.y1e4{bottom:430.013333pt;}
.y11{bottom:431.133333pt;}
.y294{bottom:431.626667pt;}
.y2c{bottom:431.933333pt;}
.y1c1{bottom:432.261333pt;}
.yf1{bottom:432.893333pt;}
.y196{bottom:434.173333pt;}
.y174{bottom:435.301333pt;}
.y10c{bottom:437.053333pt;}
.y231{bottom:437.853333pt;}
.y5f{bottom:438.813333pt;}
.y27e{bottom:441.053333pt;}
.y261{bottom:444.253333pt;}
.y167{bottom:444.413333pt;}
.y120{bottom:445.853333pt;}
.y1fc{bottom:446.493333pt;}
.ydc{bottom:448.573333pt;}
.ybd{bottom:449.693333pt;}
.y7f{bottom:450.173333pt;}
.y1e3{bottom:450.813333pt;}
.y10{bottom:450.973333pt;}
.y2b{bottom:451.773333pt;}
.y293{bottom:451.946667pt;}
.y1c0{bottom:452.421333pt;}
.yf0{bottom:452.733333pt;}
.y195{bottom:454.173333pt;}
.y173{bottom:455.461333pt;}
.y17c{bottom:456.426667pt;}
.y233{bottom:458.813333pt;}
.y17b{bottom:459.626667pt;}
.y5e{bottom:459.773333pt;}
.y27d{bottom:462.013333pt;}
.y21f{bottom:462.653333pt;}
.y260{bottom:465.213333pt;}
.y166{bottom:465.373333pt;}
.y10b{bottom:466.973333pt;}
.y1fb{bottom:467.453333pt;}
.ybe{bottom:469.533333pt;}
.yf{bottom:470.973333pt;}
.y80{bottom:471.133333pt;}
.y2a{bottom:471.613333pt;}
.y1e2{bottom:471.773333pt;}
.y17a{bottom:472.106667pt;}
.yea{bottom:472.733333pt;}
.y141{bottom:472.741333pt;}
.y194{bottom:474.013333pt;}
.y179{bottom:474.346667pt;}
.y178{bottom:477.706667pt;}
.y232{bottom:479.613333pt;}
.y4b{bottom:480.733333pt;}
.y10a{bottom:481.693333pt;}
.y11f{bottom:482.493333pt;}
.y27c{bottom:482.813333pt;}
.y165{bottom:486.173333pt;}
.y1fa{bottom:488.413333pt;}
.ybc{bottom:489.373333pt;}
.ye{bottom:490.813333pt;}
.y177{bottom:490.986667pt;}
.y29{bottom:491.453333pt;}
.y7e{bottom:492.093333pt;}
.y292{bottom:492.426667pt;}
.yef{bottom:492.573333pt;}
.y1e1{bottom:492.733333pt;}
.y140{bottom:492.901333pt;}
.y21e{bottom:499.133333pt;}
.y230{bottom:500.573333pt;}
.y41{bottom:501.533333pt;}
.y27b{bottom:503.773333pt;}
.yd9{bottom:506.493333pt;}
.y25f{bottom:506.973333pt;}
.y164{bottom:507.133333pt;}
.y1f9{bottom:509.213333pt;}
.yba{bottom:510.333333pt;}
.yd{bottom:510.653333pt;}
.y28{bottom:511.293333pt;}
.y299{bottom:511.946667pt;}
.yee{bottom:512.413333pt;}
.y291{bottom:512.746667pt;}
.y7d{bottom:512.893333pt;}
.y13f{bottom:513.221333pt;}
.y1e0{bottom:513.693333pt;}
.y109{bottom:521.373333pt;}
.y22f{bottom:521.533333pt;}
.y4a{bottom:522.493333pt;}
.y27a{bottom:524.733333pt;}
.y25e{bottom:527.933333pt;}
.y163{bottom:528.093333pt;}
.ybb{bottom:530.173333pt;}
.yc{bottom:530.493333pt;}
.y27{bottom:531.293333pt;}
.ye9{bottom:532.253333pt;}
.y290{bottom:532.906667pt;}
.y13e{bottom:533.541333pt;}
.y7a{bottom:533.853333pt;}
.y1df{bottom:534.493333pt;}
.y21d{bottom:535.773333pt;}
.yd8{bottom:540.573333pt;}
.y107{bottom:541.213333pt;}
.y22e{bottom:542.333333pt;}
.y48{bottom:543.453333pt;}
.y279{bottom:545.693333pt;}
.y25d{bottom:548.933333pt;}
.y162{bottom:549.093333pt;}
.yb9{bottom:550.053333pt;}
.yb{bottom:550.373333pt;}
.y25{bottom:551.173333pt;}
.ye8{bottom:552.133333pt;}
.y13d{bottom:553.701333pt;}
.y7c{bottom:554.853333pt;}
.y1de{bottom:555.493333pt;}
.y106{bottom:561.093333pt;}
.y22d{bottom:563.333333pt;}
.y47{bottom:564.293333pt;}
.y278{bottom:566.533333pt;}
.y161{bottom:569.893333pt;}
.y8{bottom:570.213333pt;}
.y24{bottom:571.013333pt;}
.ye7{bottom:571.973333pt;}
.y1f8{bottom:572.133333pt;}
.yd7{bottom:575.173333pt;}
.y79{bottom:575.813333pt;}
.y1dd{bottom:576.453333pt;}
.y105{bottom:580.933333pt;}
.y22c{bottom:584.293333pt;}
.y46{bottom:585.253333pt;}
.y277{bottom:587.493333pt;}
.y6{bottom:590.213333pt;}
.y25c{bottom:590.693333pt;}
.y22{bottom:590.853333pt;}
.yb8{bottom:591.973333pt;}
.y1f7{bottom:592.933333pt;}
.y70{bottom:596.613333pt;}
.y1dc{bottom:597.253333pt;}
.y104{bottom:600.933333pt;}
.yd6{bottom:605.093333pt;}
.y3f{bottom:606.213333pt;}
.y276{bottom:608.453333pt;}
.y1f6{bottom:613.893333pt;}
.y78{bottom:617.573333pt;}
.y1db{bottom:618.213333pt;}
.yd5{bottom:619.653333pt;}
.y103{bottom:620.773333pt;}
.y22b{bottom:623.333333pt;}
.y5{bottom:626.533333pt;}
.y21{bottom:627.813333pt;}
.y25b{bottom:627.973333pt;}
.y3e{bottom:630.373333pt;}
.y1f5{bottom:634.853333pt;}
.y77{bottom:638.533333pt;}
.y275{bottom:640.293333pt;}
.yd4{bottom:640.613333pt;}
.y1f3{bottom:655.653333pt;}
.y76{bottom:659.493333pt;}
.yd3{bottom:660.453333pt;}
.y4{bottom:661.893333pt;}
.y1{bottom:735.040000pt;}
.h4e{height:5.092500pt;}
.h2a{height:13.406250pt;}
.h7{height:19.200000pt;}
.ha{height:19.232000pt;}
.hf{height:20.160000pt;}
.h11{height:20.192000pt;}
.hb{height:20.320000pt;}
.h13{height:20.352000pt;}
.h4f{height:21.105000pt;}
.h42{height:24.000000pt;}
.h28{height:27.072000pt;}
.h9{height:29.040312pt;}
.hc{height:32.507812pt;}
.h26{height:35.886875pt;}
.h2b{height:35.928750pt;}
.h3c{height:36.000000pt;}
.h4b{height:37.687500pt;}
.h21{height:39.040000pt;}
.h20{height:39.072000pt;}
.h27{height:40.171875pt;}
.h8{height:40.218750pt;}
.h3f{height:40.480000pt;}
.h4d{height:40.640000pt;}
.h1c{height:41.120000pt;}
.h15{height:41.152000pt;}
.h16{height:41.280000pt;}
.h4c{height:41.312000pt;}
.h3{height:43.343750pt;}
.h2{height:44.508750pt;}
.he{height:49.148438pt;}
.h49{height:50.250000pt;}
.h25{height:53.562500pt;}
.h4a{height:53.625000pt;}
.h4{height:58.563750pt;}
.hd{height:58.880000pt;}
.h3e{height:61.472000pt;}
.h1b{height:62.080000pt;}
.h29{height:62.112000pt;}
.h6{height:65.531250pt;}
.h5{height:71.321250pt;}
.h2d{height:82.880000pt;}
.h53{height:82.912000pt;}
.h14{height:83.040000pt;}
.h1e{height:103.872000pt;}
.h38{height:104.000000pt;}
.h10{height:104.032000pt;}
.h32{height:124.832000pt;}
.h22{height:138.426667pt;}
.h1a{height:145.626667pt;}
.h43{height:145.786667pt;}
.h2e{height:166.586667pt;}
.h19{height:166.746667pt;}
.h18{height:187.546667pt;}
.h41{height:208.506667pt;}
.h30{height:250.266667pt;}
.h52{height:250.426667pt;}
.h39{height:250.466667pt;}
.h1d{height:292.226667pt;}
.h1f{height:292.386667pt;}
.h17{height:313.026667pt;}
.h2f{height:313.186667pt;}
.h40{height:333.346667pt;}
.h47{height:333.986667pt;}
.h12{height:354.946667pt;}
.h3d{height:375.906667pt;}
.h44{height:396.706667pt;}
.h2c{height:396.866667pt;}
.h33{height:438.626667pt;}
.h36{height:480.573333pt;}
.h37{height:501.373333pt;}
.h51{height:522.333333pt;}
.h50{height:543.293333pt;}
.h31{height:564.093333pt;}
.h56{height:793.684533pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h46{height:817.333333pt;}
.h45{height:817.459800pt;}
.h3a{height:1069.726320pt;}
.h48{height:1069.754480pt;}
.h3b{height:1070.000000pt;}
.h55{height:1070.666667pt;}
.h54{height:1070.947467pt;}
.h35{height:1072.000000pt;}
.h34{height:1072.143467pt;}
.h23{height:1078.623773pt;}
.h24{height:1078.666667pt;}
.w45{width:42.400000pt;}
.w51{width:42.560000pt;}
.w44{width:49.632000pt;}
.w28{width:56.000000pt;}
.w9{width:56.032000pt;}
.w8{width:60.640000pt;}
.w27{width:60.672000pt;}
.w46{width:61.920000pt;}
.wb{width:65.440000pt;}
.wa{width:65.600000pt;}
.w47{width:67.680000pt;}
.w56{width:75.072000pt;}
.w55{width:75.680000pt;}
.w43{width:76.960000pt;}
.w4f{width:77.152000pt;}
.w3a{width:79.520000pt;}
.w41{width:79.872000pt;}
.w7{width:80.800000pt;}
.w11{width:81.600000pt;}
.w26{width:81.792000pt;}
.w1b{width:81.952000pt;}
.we{width:82.752000pt;}
.w3d{width:83.840000pt;}
.w30{width:84.160000pt;}
.w50{width:84.320000pt;}
.w34{width:87.360000pt;}
.w35{width:90.912000pt;}
.w42{width:91.520000pt;}
.w2e{width:91.680000pt;}
.w4a{width:93.600000pt;}
.w53{width:93.760000pt;}
.w4c{width:93.792000pt;}
.w5{width:93.920000pt;}
.w6{width:93.952000pt;}
.w4d{width:94.112000pt;}
.w54{width:102.592000pt;}
.w2a{width:103.040000pt;}
.w10{width:103.072000pt;}
.w1d{width:103.200000pt;}
.w29{width:103.232000pt;}
.w3{width:103.360000pt;}
.w15{width:103.392000pt;}
.w2c{width:103.520000pt;}
.w37{width:104.512000pt;}
.w19{width:107.392000pt;}
.w39{width:107.680000pt;}
.w14{width:112.640000pt;}
.w17{width:112.800000pt;}
.w13{width:112.832000pt;}
.wc{width:113.120000pt;}
.w12{width:115.392000pt;}
.w1c{width:118.080000pt;}
.w33{width:118.560000pt;}
.w3e{width:121.920000pt;}
.w32{width:121.952000pt;}
.w31{width:122.272000pt;}
.w23{width:122.592000pt;}
.w52{width:122.880000pt;}
.w2d{width:124.192000pt;}
.w4e{width:126.240000pt;}
.w4{width:130.592000pt;}
.w2f{width:130.752000pt;}
.w24{width:130.912000pt;}
.w38{width:131.552000pt;}
.w4b{width:131.712000pt;}
.w2b{width:140.826667pt;}
.w3f{width:140.986667pt;}
.w21{width:141.146667pt;}
.w40{width:150.400000pt;}
.w20{width:150.560000pt;}
.w1a{width:155.360000pt;}
.w25{width:160.000000pt;}
.w1f{width:169.466667pt;}
.w18{width:188.346667pt;}
.w57{width:190.880000pt;}
.w1e{width:197.786667pt;}
.w16{width:200.160000pt;}
.w3b{width:207.226667pt;}
.w48{width:220.666667pt;}
.w49{width:240.346667pt;}
.wd{width:273.466667pt;}
.w36{width:304.026667pt;}
.wf{width:312.186667pt;}
.w3c{width:735.933333pt;}
.w22{width:1122.519733pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x15{left:-14.560000pt;}
.x0{left:0.000000pt;}
.x2c{left:4.320000pt;}
.xd{left:5.440000pt;}
.x1b{left:6.560000pt;}
.x4f{left:8.000000pt;}
.x1a{left:8.960000pt;}
.x10{left:9.920000pt;}
.x12{left:11.040000pt;}
.x89{left:12.160000pt;}
.x39{left:13.120000pt;}
.x17{left:14.440000pt;}
.x80{left:15.360000pt;}
.x1d{left:16.320000pt;}
.x16{left:17.440000pt;}
.x22{left:18.400000pt;}
.x19{left:19.840000pt;}
.x23{left:21.440000pt;}
.x8{left:22.560000pt;}
.x25{left:24.320000pt;}
.x24{left:25.800000pt;}
.x50{left:26.880000pt;}
.x18{left:27.840000pt;}
.xa{left:29.320000pt;}
.x5d{left:30.400000pt;}
.x30{left:31.546667pt;}
.x20{left:33.320000pt;}
.x6f{left:34.560000pt;}
.x1f{left:35.720000pt;}
.x21{left:37.120000pt;}
.x1e{left:38.920000pt;}
.x70{left:39.840000pt;}
.x4c{left:40.800000pt;}
.x4d{left:42.240000pt;}
.x52{left:43.520000pt;}
.x6{left:44.794667pt;}
.x4e{left:46.240000pt;}
.x35{left:47.840000pt;}
.x28{left:49.440000pt;}
.x5c{left:50.720000pt;}
.x1c{left:51.834667pt;}
.x64{left:53.440000pt;}
.x51{left:54.400000pt;}
.xbd{left:55.520000pt;}
.x3d{left:56.480000pt;}
.x8e{left:58.080000pt;}
.x4b{left:59.360000pt;}
.x81{left:60.320000pt;}
.x5b{left:61.920000pt;}
.x5a{left:63.240000pt;}
.x96{left:64.480000pt;}
.x56{left:66.280000pt;}
.x3f{left:67.560000pt;}
.x61{left:69.600000pt;}
.x2e{left:71.200000pt;}
.x33{left:73.800000pt;}
.x32{left:74.920000pt;}
.xb3{left:76.040000pt;}
.x3b{left:77.000000pt;}
.x71{left:77.960000pt;}
.xbc{left:79.560000pt;}
.x3c{left:80.520000pt;}
.xa3{left:82.400000pt;}
.x75{left:84.840000pt;}
.x79{left:85.800000pt;}
.xa2{left:86.746667pt;}
.x78{left:87.880000pt;}
.x8b{left:89.480000pt;}
.x43{left:90.400000pt;}
.x8f{left:91.840000pt;}
.x36{left:93.000000pt;}
.x3{left:94.559983pt;}
.xb4{left:95.880000pt;}
.x3e{left:97.000000pt;}
.xaa{left:98.080000pt;}
.x65{left:99.520000pt;}
.x37{left:100.520000pt;}
.x34{left:103.400000pt;}
.x8d{left:104.520000pt;}
.x7b{left:105.960000pt;}
.x41{left:106.920000pt;}
.x2a{left:108.840000pt;}
.xb5{left:109.960000pt;}
.x2f{left:110.920000pt;}
.x40{left:112.040000pt;}
.x73{left:113.800000pt;}
.x74{left:115.400000pt;}
.x76{left:116.840000pt;}
.x7a{left:117.960000pt;}
.x72{left:119.720000pt;}
.x38{left:120.680000pt;}
.x3a{left:122.920000pt;}
.x77{left:124.680000pt;}
.x5{left:131.552000pt;}
.x82{left:136.680000pt;}
.x8c{left:150.240000pt;}
.x31{left:154.240000pt;}
.x7c{left:156.666667pt;}
.xb6{left:164.826667pt;}
.x53{left:168.026650pt;}
.x27{left:169.626667pt;}
.x54{left:177.786667pt;}
.x5f{left:180.026667pt;}
.x44{left:194.106667pt;}
.x90{left:196.986667pt;}
.x83{left:203.546667pt;}
.xab{left:220.666667pt;}
.x66{left:222.746667pt;}
.x7{left:235.546667pt;}
.x97{left:239.066667pt;}
.x42{left:249.786650pt;}
.x7d{left:260.346667pt;}
.x45{left:276.506667pt;}
.x29{left:283.386667pt;}
.x84{left:288.346667pt;}
.x55{left:291.226667pt;}
.xa4{left:297.786667pt;}
.x1{left:328.986650pt;}
.x9{left:339.546667pt;}
.x67{left:354.306667pt;}
.x87{left:358.146667pt;}
.x5e{left:374.306650pt;}
.x98{left:380.866667pt;}
.xa9{left:387.106650pt;}
.x46{left:392.546667pt;}
.x26{left:401.026650pt;}
.x85{left:411.266667pt;}
.xac{left:419.106667pt;}
.x91{left:423.746667pt;}
.xa5{left:430.146667pt;}
.x4{left:461.346650pt;}
.xb{left:470.786667pt;}
.x88{left:477.346667pt;}
.x57{left:480.226667pt;}
.x60{left:482.466667pt;}
.xb7{left:486.946667pt;}
.x47{left:496.546667pt;}
.x7e{left:506.146667pt;}
.x68{left:514.946667pt;}
.x92{left:518.306667pt;}
.xa0{left:524.386667pt;}
.x99{left:532.066667pt;}
.xa6{left:534.146667pt;}
.xad{left:545.986667pt;}
.x2b{left:557.506667pt;}
.x2{left:561.346650pt;}
.xc{left:565.346667pt;}
.xb8{left:581.346667pt;}
.x58{left:588.253333pt;}
.x69{left:597.373333pt;}
.x48{left:610.013333pt;}
.x9a{left:612.573333pt;}
.x86{left:619.293333pt;}
.xae{left:623.773333pt;}
.xa7{left:628.573333pt;}
.x7f{left:630.973333pt;}
.x2d{left:640.893333pt;}
.x8a{left:649.053333pt;}
.x62{left:652.573333pt;}
.xe{left:659.933333pt;}
.xb9{left:684.573333pt;}
.x6a{left:691.933333pt;}
.x9b{left:704.893333pt;}
.xaf{left:708.733333pt;}
.x49{left:723.293333pt;}
.xa8{left:732.573333pt;}
.x95{left:735.773333pt;}
.x93{left:740.093333pt;}
.xf{left:741.373333pt;}
.x59{left:744.253333pt;}
.xa1{left:745.853333pt;}
.xba{left:760.893333pt;}
.x6b{left:773.373333pt;}
.x9c{left:782.493333pt;}
.xb0{left:800.893333pt;}
.x11{left:802.653333pt;}
.x63{left:803.773333pt;}
.x94{left:820.253333pt;}
.x4a{left:827.333333pt;}
.x9d{left:832.933333pt;}
.x6c{left:834.693333pt;}
.xbb{left:836.613333pt;}
.xb1{left:851.173333pt;}
.x13{left:859.333333pt;}
.x9e{left:875.973333pt;}
.x6d{left:891.333333pt;}
.xb2{left:894.373333pt;}
.x14{left:925.573333pt;}
.x9f{left:938.533333pt;}
.x6e{left:957.573333pt;}
}




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