
    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_8cbe1cb1efcba0b6c1d90964.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_018fb84ff69f704f320e7917.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_73f78b0b916c8ad47a49cffd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c21f8479ce7f1bd04d7ebdac.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_a4218eb5ff1badb82ab13041.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_6150457af28707ab9b219d58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.592000;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_261af0ea557e6d62dd25e82c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_36226b80cbb1fde2ee167cdd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_fddbbd598552e093c839bf23.woff')format("woff");}.ff9{font-family:ff9;line-height:0.959961;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_2e5474471b7a213fe9715129.woff')format("woff");}.ffa{font-family:ffa;line-height:1.281250;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_d572156773c4ef3e69989d18.woff')format("woff");}.ffb{font-family:ffb;line-height:1.147461;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_d9b4257832abf49bc2c5a50f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ffd{font-family:ffd;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ffe{font-family:ffe;line-height:1.281250;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_4d053d53d5c47435afc32fb8.woff')format("woff");}.fff{font-family:fff;line-height:0.962402;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff10{font-family:ff10;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff11{font-family:ff11;line-height:1.281250;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_603762ff54bbe9c964bbf415.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff13{font-family:ff13;line-height:1.281250;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_461950335ed2023463d85c3e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.767578;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff15{font-family:ff15;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff16{font-family:ff16;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff17{font-family:ff17;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff18{font-family:ff18;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff19{font-family:ff19;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff20{font-family:ff20;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff21{font-family:ff21;line-height:1.281250;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_65ed8f14b97690beda6004a2.woff')format("woff");}.ff22{font-family:ff22;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff23{font-family:ff23;line-height:1.281250;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_2e5474471b7a213fe9715129.woff')format("woff");}.ff24{font-family:ff24;line-height:1.281250;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:ff25;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff25{font-family:ff25;line-height:1.281250;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:ff26;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff26{font-family:ff26;line-height:1.281250;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:ff27;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff27{font-family:ff27;line-height:1.281250;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:ff28;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff28{font-family:ff28;line-height:1.281250;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:ff29;src:url('chunks/assets/font_261af0ea557e6d62dd25e82c.woff')format("woff");}.ff29{font-family:ff29;line-height:1.432129;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:ff2a;src:url('chunks/assets/font_36226b80cbb1fde2ee167cdd.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;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:ff2b;src:url('chunks/assets/font_9a6432ae2c571d04f900dbd1.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.959961;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:ff2c;src:url('chunks/assets/font_d572156773c4ef3e69989d18.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.147461;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:ff2d;src:url('chunks/assets/font_d9b4257832abf49bc2c5a50f.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_4d053d53d5c47435afc32fb8.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.962402;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:ff2f;src:url('chunks/assets/font_603762ff54bbe9c964bbf415.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;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:ff30;src:url('chunks/assets/font_461950335ed2023463d85c3e.woff')format("woff");}.ff30{font-family:ff30;line-height:0.767578;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:ff31;src:url('chunks/assets/font_c9927d86fd2a87c0641129bd.woff')format("woff");}.ff31{font-family:ff31;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_c9a1f48433ae264dc9a236d9.woff')format("woff");}.ff32{font-family:ff32;line-height:1.432129;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:ff33;src:url('chunks/assets/font_a5a175d4934512b21da17987.woff')format("woff");}.ff33{font-family:ff33;line-height:1.432129;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:ff34;src:url('chunks/assets/font_caf632a7791973c695e14001.woff')format("woff");}.ff34{font-family:ff34;line-height:0.959961;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls28{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.084240px;}
.ls1b{letter-spacing:-0.078156px;}
.ls13{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.136800px;}
.ls2{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.316728px;}
.ls9{letter-spacing:0.328680px;}
.lse{letter-spacing:0.336960px;}
.lsa{letter-spacing:0.340632px;}
.ls17{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.418320px;}
.ls32{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.792000px;}
.ls6{letter-spacing:1.081656px;}
.ls21{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.576800px;}
.ls31{letter-spacing:1.584000px;}
.ls4{letter-spacing:2.304000px;}
.ls2a{letter-spacing:8.040000px;}
.ls1f{letter-spacing:8.064000px;}
.ls27{letter-spacing:8.784000px;}
.ls23{letter-spacing:9.648000px;}
.ls24{letter-spacing:12.384000px;}
.ls29{letter-spacing:17.429760px;}
.ls2d{letter-spacing:22.464000px;}
.ls2b{letter-spacing:24.624000px;}
.ls20{letter-spacing:27.504000px;}
.ls2f{letter-spacing:92.304000px;}
.ls30{letter-spacing:112.464000px;}
.ls2c{letter-spacing:364.464000px;}
.ls2e{letter-spacing:525.744000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(51,54,102),0 0.015em rgb(51,54,102),0.015em 0 rgb(51,54,102),0 -0.015em  rgb(51,54,102);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(51,54,102);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws26{word-spacing:-72.000000px;}
.ws21{word-spacing:-23.760120px;}
.ws0{word-spacing:-23.755680px;}
.ws2b{word-spacing:-20.664000px;}
.ws1{word-spacing:-20.304000px;}
.ws27{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws28{word-spacing:-19.872000px;}
.ws24{word-spacing:-19.800000px;}
.ws2a{word-spacing:-19.584000px;}
.ws25{word-spacing:-19.512000px;}
.ws29{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.296000px;}
.ws5{word-spacing:-16.493760px;}
.ws22{word-spacing:-13.410720px;}
.ws23{word-spacing:-13.229520px;}
.ws15{word-spacing:-3.024000px;}
.ws1b{word-spacing:-1.374480px;}
.wsb{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.657360px;}
.wsa{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.ws1c{word-spacing:0.059760px;}
.wsf{word-spacing:0.072000px;}
.ws7{word-spacing:0.132480px;}
.wse{word-spacing:0.216000px;}
.ws1d{word-spacing:0.288000px;}
.ws8{word-spacing:0.421200px;}
.ws11{word-spacing:0.432000px;}
.wsd{word-spacing:0.463680px;}
.wsc{word-spacing:0.576000px;}
.ws10{word-spacing:2.016000px;}
.ws19{word-spacing:10.099440px;}
.ws18{word-spacing:10.159200px;}
.ws14{word-spacing:12.816000px;}
.ws13{word-spacing:13.536000px;}
.ws17{word-spacing:13.744800px;}
.ws12{word-spacing:13.968000px;}
.ws1e{word-spacing:593.220000px;}
.ws1f{word-spacing:770.178000px;}
.ws20{word-spacing:809.274000px;}
._58{margin-left:-14.778096px;}
._91{margin-left:-7.836432px;}
._5f{margin-left:-6.581088px;}
._20{margin-left:-5.053824px;}
._4{margin-left:-3.730176px;}
._3{margin-left:-2.507616px;}
._0{margin-left:-1.410912px;}
._2{width:1.224000px;}
._13{width:2.529792px;}
._1a{width:4.296000px;}
._1b{width:5.328000px;}
._18{width:6.624000px;}
._17{width:7.896000px;}
._19{width:9.120000px;}
._22{width:10.482912px;}
._21{width:11.664000px;}
._1c{width:13.002912px;}
._10{width:14.232000px;}
._5{width:15.378912px;}
._15{width:16.591968px;}
._14{width:17.703264px;}
._26{width:18.779616px;}
._2e{width:21.052656px;}
._f{width:22.134096px;}
._16{width:23.910528px;}
._29{width:25.306944px;}
._1d{width:26.322912px;}
._1e{width:27.334176px;}
._24{width:28.465824px;}
._25{width:29.655648px;}
._2d{width:31.408704px;}
._23{width:32.570880px;}
._12{width:34.376736px;}
._11{width:35.874912px;}
._2f{width:36.893088px;}
._33{width:38.130912px;}
._2b{width:39.768000px;}
._2a{width:40.872000px;}
._3c{width:42.192000px;}
._94{width:43.954176px;}
._3d{width:45.108000px;}
._e{width:47.421888px;}
._c{width:48.576000px;}
._d{width:50.188272px;}
._37{width:52.104000px;}
._95{width:53.538912px;}
._40{width:54.576000px;}
._3e{width:57.138912px;}
._3a{width:64.224000px;}
._88{width:65.226096px;}
._3b{width:66.276000px;}
._8f{width:71.424000px;}
._36{width:72.438912px;}
._35{width:73.584000px;}
._49{width:74.736000px;}
._8c{width:77.801904px;}
._93{width:80.616000px;}
._47{width:82.695648px;}
._46{width:83.880000px;}
._4c{width:86.592000px;}
._30{width:92.136000px;}
._92{width:95.880000px;}
._27{width:98.064000px;}
._28{width:100.153824px;}
._31{width:102.384000px;}
._32{width:103.716384px;}
._4d{width:105.264000px;}
._69{width:106.697472px;}
._65{width:107.801904px;}
._43{width:108.864000px;}
._42{width:110.520000px;}
._79{width:113.305824px;}
._8d{width:115.902096px;}
._8e{width:117.000000px;}
._62{width:119.208000px;}
._7b{width:120.540000px;}
._68{width:122.004000px;}
._73{width:124.794912px;}
._41{width:128.700000px;}
._7f{width:129.852000px;}
._56{width:132.096000px;}
._5d{width:136.932816px;}
._3f{width:139.752000px;}
._64{width:149.904000px;}
._59{width:151.937904px;}
._45{width:154.692000px;}
._53{width:157.985904px;}
._6a{width:159.528000px;}
._8a{width:162.761904px;}
._6e{width:163.920000px;}
._57{width:166.049904px;}
._71{width:171.480000px;}
._90{width:172.704000px;}
._38{width:175.752000px;}
._39{width:176.844000px;}
._6c{width:179.544000px;}
._8b{width:187.824000px;}
._7e{width:189.504000px;}
._75{width:191.940000px;}
._74{width:193.008000px;}
._82{width:212.808000px;}
._67{width:215.616000px;}
._44{width:224.136000px;}
._86{width:232.824000px;}
._63{width:234.186912px;}
._70{width:236.941824px;}
._85{width:250.452000px;}
._52{width:258.065904px;}
._34{width:261.252000px;}
._54{width:264.365904px;}
._7d{width:268.104000px;}
._81{width:269.892000px;}
._6f{width:278.204352px;}
._76{width:308.177904px;}
._89{width:309.780000px;}
._6d{width:322.116432px;}
._77{width:324.192000px;}
._4a{width:327.396000px;}
._5a{width:328.620000px;}
._87{width:330.372000px;}
._83{width:331.524000px;}
._4e{width:340.716000px;}
._66{width:342.264000px;}
._51{width:346.049904px;}
._b{width:353.244000px;}
._6b{width:362.580432px;}
._5b{width:368.184000px;}
._7c{width:378.348816px;}
._80{width:382.121904px;}
._50{width:388.200000px;}
._61{width:397.452000px;}
._60{width:404.784000px;}
._72{width:406.404000px;}
._84{width:446.129904px;}
._5c{width:456.461904px;}
._7a{width:462.185904px;}
._4b{width:490.464000px;}
._78{width:491.544000px;}
._8{width:494.076000px;}
._4f{width:533.064000px;}
._6{width:551.154000px;}
._55{width:618.209904px;}
._a{width:623.298000px;}
._5e{width:703.349904px;}
._7{width:737.292000px;}
._9{width:743.340000px;}
._1f{width:840.737280px;}
._2c{width:844.140000px;}
._1{width:989.195040px;}
._48{width:1074.780000px;}
.fca{color:rgb(0,0,255);}
.fc9{color:rgb(255,0,0);}
.fc8{color:transparent;}
.fc3{color:rgb(0,111,183);}
.fc1{color:rgb(5,99,193);}
.fc7{color:rgb(100,100,100);}
.fc6{color:rgb(51,54,102);}
.fc5{color:rgb(68,68,68);}
.fc4{color:rgb(42,42,42);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsa{font-size:60.000000px;}
.fsb{font-size:60.120000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1e4{bottom:10.980000px;}
.y1e7{bottom:11.025000px;}
.y1e0{bottom:17.820000px;}
.y1e8{bottom:17.865000px;}
.y1e1{bottom:28.980000px;}
.y1e2{bottom:29.160000px;}
.y4b{bottom:30.000000px;}
.yad{bottom:33.783000px;}
.y1df{bottom:39.960000px;}
.yac{bottom:50.702250px;}
.yab{bottom:67.711650px;}
.yaa{bottom:84.721200px;}
.ya9{bottom:101.730600px;}
.y138{bottom:110.376000px;}
.y1c2{bottom:110.736000px;}
.y10d{bottom:115.776000px;}
.ya8{bottom:118.740000px;}
.y150{bottom:122.436000px;}
.y210{bottom:125.676000px;}
.ye1{bottom:127.476000px;}
.y1c1{bottom:130.716000px;}
.y149{bottom:134.316000px;}
.ya7{bottom:135.659250px;}
.yf9{bottom:139.716000px;}
.y6b{bottom:143.676000px;}
.y176{bottom:146.376000px;}
.y16d{bottom:146.556000px;}
.y1c0{bottom:148.356000px;}
.y137{bottom:151.770000px;}
.ya6{bottom:152.668800px;}
.y10c{bottom:157.170000px;}
.y14f{bottom:163.830000px;}
.y20f{bottom:167.070000px;}
.ye0{bottom:168.870000px;}
.y1bf{bottom:169.050000px;}
.ya5{bottom:169.678200px;}
.y15e{bottom:173.010000px;}
.y148{bottom:175.710000px;}
.yf8{bottom:181.110000px;}
.y6a{bottom:183.810000px;}
.y127{bottom:185.070000px;}
.ya4{bottom:186.687750px;}
.y16c{bottom:187.770000px;}
.y17a{bottom:187.950000px;}
.y1be{bottom:189.750000px;}
.y136{bottom:193.170000px;}
.y1d{bottom:194.040000px;}
.ya3{bottom:203.697150px;}
.y14e{bottom:205.230000px;}
.y20e{bottom:208.470000px;}
.ydf{bottom:210.270000px;}
.y1bd{bottom:210.450000px;}
.y10b{bottom:210.630000px;}
.y15d{bottom:214.410000px;}
.y69{bottom:214.770000px;}
.y147{bottom:217.110000px;}
.ya2{bottom:220.616400px;}
.yf7{bottom:222.510000px;}
.y1c{bottom:228.420000px;}
.y16b{bottom:229.170000px;}
.y175{bottom:229.350000px;}
.y1bc{bottom:231.150000px;}
.y135{bottom:234.570000px;}
.ya1{bottom:237.625800px;}
.y126{bottom:238.530000px;}
.y4a{bottom:241.500000px;}
.yc9{bottom:242.670000px;}
.y68{bottom:245.910000px;}
.y14d{bottom:246.630000px;}
.y20d{bottom:249.870000px;}
.y1b{bottom:250.560000px;}
.yde{bottom:251.670000px;}
.y1bb{bottom:251.850000px;}
.y10a{bottom:252.030000px;}
.ya0{bottom:254.635350px;}
.y15c{bottom:255.810000px;}
.y49{bottom:258.000000px;}
.y146{bottom:258.510000px;}
.yf6{bottom:263.910000px;}
.y117{bottom:264.090000px;}
.y174{bottom:270.570000px;}
.y16a{bottom:270.750000px;}
.y9f{bottom:271.644750px;}
.y1ba{bottom:272.370000px;}
.y1a{bottom:272.880000px;}
.y48{bottom:274.500000px;}
.y134{bottom:276.015000px;}
.y67{bottom:276.915000px;}
.y125{bottom:279.975000px;}
.yc8{bottom:285.555000px;}
.y14c{bottom:288.075000px;}
.y9e{bottom:288.654150px;}
.y47{bottom:291.000000px;}
.y20c{bottom:291.315000px;}
.ydd{bottom:293.115000px;}
.y109{bottom:293.475000px;}
.y1b9{bottom:294.555000px;}
.y19{bottom:295.200000px;}
.y15b{bottom:297.255000px;}
.y145{bottom:299.955000px;}
.yf5{bottom:305.355000px;}
.y9d{bottom:305.573400px;}
.y46{bottom:307.500000px;}
.y173{bottom:312.015000px;}
.y169{bottom:312.195000px;}
.y1b8{bottom:315.255000px;}
.yc7{bottom:316.515000px;}
.y18{bottom:316.800000px;}
.y66{bottom:317.055000px;}
.y133{bottom:317.415000px;}
.y124{bottom:321.375000px;}
.y9c{bottom:322.582950px;}
.y45{bottom:324.000000px;}
.y14b{bottom:329.475000px;}
.y20b{bottom:332.715000px;}
.y108{bottom:334.875000px;}
.y17{bottom:335.520000px;}
.y1b7{bottom:335.955000px;}
.y15a{bottom:338.655000px;}
.y9b{bottom:339.592350px;}
.y44{bottom:340.500000px;}
.y144{bottom:341.355000px;}
.y194{bottom:344.775000px;}
.ydc{bottom:346.575000px;}
.yf4{bottom:346.755000px;}
.y65{bottom:348.015000px;}
.y168{bottom:353.415000px;}
.y179{bottom:353.595000px;}
.y16{bottom:354.780000px;}
.y9a{bottom:356.601750px;}
.yc6{bottom:356.655000px;}
.y43{bottom:357.000000px;}
.y132{bottom:358.815000px;}
.y123{bottom:362.595000px;}
.y193{bottom:364.935000px;}
.y14a{bottom:370.875000px;}
.y42{bottom:373.500000px;}
.y99{bottom:373.611300px;}
.y20a{bottom:374.115000px;}
.y107{bottom:376.275000px;}
.y15{bottom:377.100000px;}
.y1b6{bottom:377.355000px;}
.y64{bottom:379.155000px;}
.y159{bottom:380.055000px;}
.y143{bottom:382.755000px;}
.y192{bottom:384.015000px;}
.yc5{bottom:387.615000px;}
.ydb{bottom:387.975000px;}
.yf3{bottom:388.155000px;}
.y41{bottom:390.000000px;}
.y98{bottom:390.620700px;}
.y167{bottom:394.815000px;}
.y172{bottom:394.995000px;}
.y1b5{bottom:398.055000px;}
.y14{bottom:399.420000px;}
.y116{bottom:400.215000px;}
.y191{bottom:402.915000px;}
.y122{bottom:403.995000px;}
.y40{bottom:406.500000px;}
.y97{bottom:407.539950px;}
.y63{bottom:410.115000px;}
.y131{bottom:412.275000px;}
.y209{bottom:415.515000px;}
.y106{bottom:417.675000px;}
.yc4{bottom:418.755000px;}
.y158{bottom:421.455000px;}
.y190{bottom:421.995000px;}
.y3f{bottom:423.000000px;}
.y142{bottom:424.155000px;}
.y96{bottom:424.549500px;}
.yda{bottom:429.375000px;}
.yf2{bottom:429.555000px;}
.y13{bottom:433.980000px;}
.y208{bottom:436.035000px;}
.y171{bottom:436.215000px;}
.y166{bottom:436.395000px;}
.y18f{bottom:439.275000px;}
.y1b4{bottom:439.455000px;}
.y3e{bottom:439.500000px;}
.y62{bottom:441.255000px;}
.y95{bottom:441.558900px;}
.y115{bottom:441.615000px;}
.y130{bottom:453.675000px;}
.y3d{bottom:456.000000px;}
.y207{bottom:456.735000px;}
.y18e{bottom:456.915000px;}
.y121{bottom:457.455000px;}
.y94{bottom:458.568300px;}
.yc3{bottom:458.715000px;}
.y1b3{bottom:461.595000px;}
.y157{bottom:462.855000px;}
.y141{bottom:465.555000px;}
.y12{bottom:468.360000px;}
.yd9{bottom:470.775000px;}
.yf1{bottom:470.955000px;}
.y61{bottom:472.215000px;}
.y3c{bottom:472.500000px;}
.y93{bottom:475.577850px;}
.y206{bottom:477.435000px;}
.y151{bottom:477.615000px;}
.y1b2{bottom:482.295000px;}
.y114{bottom:483.015000px;}
.y3b{bottom:489.000000px;}
.yc2{bottom:489.855000px;}
.y92{bottom:492.497100px;}
.y12f{bottom:495.075000px;}
.y205{bottom:498.135000px;}
.y18d{bottom:498.315000px;}
.y120{bottom:498.855000px;}
.y11{bottom:502.560000px;}
.y196{bottom:502.995000px;}
.y60{bottom:503.355000px;}
.y3a{bottom:505.500000px;}
.y156{bottom:505.515000px;}
.y91{bottom:509.506500px;}
.yd8{bottom:512.175000px;}
.yf0{bottom:512.355000px;}
.y204{bottom:518.835000px;}
.y140{bottom:519.015000px;}
.y170{bottom:519.195000px;}
.yc1{bottom:520.815000px;}
.y39{bottom:522.000000px;}
.y195{bottom:522.075000px;}
.y1b1{bottom:523.695000px;}
.y105{bottom:524.415000px;}
.y10{bottom:524.700000px;}
.y90{bottom:526.516050px;}
.y5f{bottom:534.315000px;}
.y12e{bottom:536.475000px;}
.y38{bottom:538.500000px;}
.y203{bottom:539.535000px;}
.y18c{bottom:539.715000px;}
.y11f{bottom:540.255000px;}
.y8f{bottom:543.525450px;}
.y1b0{bottom:544.395000px;}
.y155{bottom:548.355000px;}
.yc0{bottom:551.955000px;}
.yd7{bottom:553.575000px;}
.yef{bottom:553.755000px;}
.y37{bottom:555.000000px;}
.yf{bottom:559.260000px;}
.y202{bottom:560.265000px;}
.y13f{bottom:560.445000px;}
.y8e{bottom:560.534850px;}
.y165{bottom:560.625000px;}
.y1af{bottom:565.125000px;}
.y5e{bottom:565.485000px;}
.y104{bottom:565.845000px;}
.y36{bottom:571.500000px;}
.y8d{bottom:577.454100px;}
.y12d{bottom:577.905000px;}
.ye{bottom:579.960000px;}
.y201{bottom:580.965000px;}
.y18b{bottom:581.145000px;}
.ybf{bottom:582.945000px;}
.y1ae{bottom:585.825000px;}
.y35{bottom:588.000000px;}
.y154{bottom:589.785000px;}
.y8c{bottom:594.463650px;}
.yd6{bottom:595.005000px;}
.yee{bottom:595.185000px;}
.y5d{bottom:596.445000px;}
.yd{bottom:600.660000px;}
.y200{bottom:601.665000px;}
.y13e{bottom:601.845000px;}
.y17c{bottom:602.025000px;}
.y34{bottom:604.500000px;}
.y1ad{bottom:606.345000px;}
.y103{bottom:607.245000px;}
.y8b{bottom:611.473050px;}
.ybe{bottom:614.085000px;}
.y12c{bottom:619.125000px;}
.y1ff{bottom:622.365000px;}
.y18a{bottom:622.545000px;}
.y11e{bottom:625.785000px;}
.y5c{bottom:627.585000px;}
.y8a{bottom:628.482450px;}
.y1ac{bottom:628.485000px;}
.y153{bottom:631.185000px;}
.y33{bottom:631.500000px;}
.yc{bottom:635.040000px;}
.yd5{bottom:636.225000px;}
.yed{bottom:636.585000px;}
.y1fe{bottom:643.065000px;}
.y13d{bottom:643.245000px;}
.y178{bottom:643.425000px;}
.ybd{bottom:645.045000px;}
.y89{bottom:645.492000px;}
.y102{bottom:648.645000px;}
.y1ab{bottom:649.185000px;}
.y32{bottom:658.500000px;}
.y5b{bottom:658.545000px;}
.y113{bottom:660.525000px;}
.y88{bottom:662.411250px;}
.y1fd{bottom:663.765000px;}
.y189{bottom:663.945000px;}
.y11d{bottom:667.185000px;}
.yb{bottom:669.420000px;}
.y1aa{bottom:669.885000px;}
.y152{bottom:672.585000px;}
.yd4{bottom:677.625000px;}
.yec{bottom:677.985000px;}
.y87{bottom:679.420650px;}
.y1d4{bottom:683.565000px;}
.y1fc{bottom:684.465000px;}
.y13c{bottom:684.645000px;}
.y16f{bottom:684.825000px;}
.ybc{bottom:685.185000px;}
.y31{bottom:685.500000px;}
.y101{bottom:690.045000px;}
.y1a9{bottom:690.585000px;}
.y5a{bottom:695.625000px;}
.y86{bottom:696.430050px;}
.y112{bottom:702.105000px;}
.ya{bottom:703.800000px;}
.y1d3{bottom:704.265000px;}
.y1fb{bottom:705.165000px;}
.y188{bottom:705.345000px;}
.y11c{bottom:708.585000px;}
.y1a8{bottom:711.285000px;}
.y30{bottom:712.500000px;}
.y85{bottom:713.439600px;}
.y12b{bottom:713.985000px;}
.ybb{bottom:716.865000px;}
.yd3{bottom:719.025000px;}
.yeb{bottom:719.385000px;}
.y1dd{bottom:719.925000px;}
.y59{bottom:720.645000px;}
.y1d2{bottom:724.965000px;}
.y1fa{bottom:725.865000px;}
.y13b{bottom:726.045000px;}
.y164{bottom:726.225000px;}
.y84{bottom:730.449000px;}
.y1a7{bottom:731.985000px;}
.y9{bottom:738.000000px;}
.y2f{bottom:739.500000px;}
.y100{bottom:743.325000px;}
.y1d1{bottom:745.665000px;}
.y1f9{bottom:746.565000px;}
.y187{bottom:746.745000px;}
.y83{bottom:747.369750px;}
.yba{bottom:749.265000px;}
.y11b{bottom:751.245000px;}
.y1a6{bottom:752.685000px;}
.y1dc{bottom:754.485000px;}
.y12a{bottom:755.385000px;}
.y58{bottom:757.725000px;}
.yd2{bottom:760.425000px;}
.y82{bottom:764.379300px;}
.y1d0{bottom:766.365000px;}
.y2e{bottom:766.500000px;}
.y1f8{bottom:767.265000px;}
.y13a{bottom:767.445000px;}
.y163{bottom:767.625000px;}
.y8{bottom:772.380000px;}
.yea{bottom:772.845000px;}
.y1a5{bottom:773.385000px;}
.y1db{bottom:775.185000px;}
.yb9{bottom:780.225000px;}
.y81{bottom:781.388700px;}
.y57{bottom:782.745000px;}
.y111{bottom:784.725000px;}
.y1cf{bottom:787.065000px;}
.y1f7{bottom:787.965000px;}
.y186{bottom:788.145000px;}
.y2d{bottom:793.500000px;}
.y11a{bottom:794.085000px;}
.y1a4{bottom:795.525000px;}
.y1da{bottom:795.885000px;}
.yff{bottom:796.785000px;}
.y80{bottom:798.398100px;}
.yd1{bottom:801.825000px;}
.y7{bottom:808.560000px;}
.y1f6{bottom:808.665000px;}
.y139{bottom:808.845000px;}
.y162{bottom:809.025000px;}
.yb8{bottom:811.365000px;}
.y56{bottom:813.705000px;}
.y7f{bottom:815.407650px;}
.y1a3{bottom:816.225000px;}
.y1d9{bottom:816.585000px;}
.y1ce{bottom:818.025000px;}
.y2c{bottom:820.500000px;}
.ye9{bottom:826.125000px;}
.y1f5{bottom:829.365000px;}
.y185{bottom:829.545000px;}
.y7e{bottom:832.326900px;}
.y1e6{bottom:833.865000px;}
.y119{bottom:836.745000px;}
.y1a2{bottom:836.925000px;}
.yfe{bottom:838.185000px;}
.yb7{bottom:842.370000px;}
.yd0{bottom:843.270000px;}
.y6{bottom:847.448100px;}
.y2b{bottom:847.500000px;}
.y1cd{bottom:849.030000px;}
.y7d{bottom:849.336300px;}
.y1f4{bottom:850.110000px;}
.y129{bottom:850.290000px;}
.y161{bottom:850.470000px;}
.y55{bottom:850.830000px;}
.y1a1{bottom:857.670000px;}
.y2a{bottom:864.000000px;}
.y7c{bottom:866.345700px;}
.y110{bottom:867.570000px;}
.y1e5{bottom:869.010000px;}
.y1f3{bottom:870.810000px;}
.y184{bottom:870.990000px;}
.yb6{bottom:873.510000px;}
.y1a0{bottom:878.370000px;}
.ye8{bottom:879.630000px;}
.y1cc{bottom:880.170000px;}
.y29{bottom:880.500000px;}
.y54{bottom:881.790000px;}
.y7b{bottom:883.355250px;}
.ycf{bottom:884.670000px;}
.y5{bottom:885.419280px;}
.y19c{bottom:890.070000px;}
.y1f2{bottom:891.510000px;}
.y128{bottom:891.690000px;}
.y17b{bottom:891.870000px;}
.y19f{bottom:899.070000px;}
.y7a{bottom:900.364650px;}
.y1e3{bottom:904.110000px;}
.y53{bottom:906.990000px;}
.y28{bottom:907.500000px;}
.y10f{bottom:908.970000px;}
.y1cb{bottom:911.130000px;}
.y1f1{bottom:912.210000px;}
.y183{bottom:912.390000px;}
.yb5{bottom:913.470000px;}
.y79{bottom:917.285400px;}
.y19e{bottom:919.590000px;}
.yfd{bottom:921.030000px;}
.y19b{bottom:921.210000px;}
.y4{bottom:923.580000px;}
.y27{bottom:924.000000px;}
.yce{bottom:926.070000px;}
.y1f0{bottom:932.910000px;}
.ye7{bottom:933.090000px;}
.y17d{bottom:933.270000px;}
.y78{bottom:934.294950px;}
.y52{bottom:937.950000px;}
.y1de{bottom:939.210000px;}
.y19d{bottom:940.290000px;}
.y19a{bottom:941.730000px;}
.y1ca{bottom:942.270000px;}
.yb4{bottom:944.610000px;}
.y10e{bottom:950.370000px;}
.y26{bottom:951.000000px;}
.y77{bottom:951.304350px;}
.y1ef{bottom:953.610000px;}
.y182{bottom:953.790000px;}
.y3{bottom:956.522880px;}
.yfc{bottom:962.430000px;}
.ycd{bottom:967.470000px;}
.y76{bottom:968.313750px;}
.y51{bottom:969.090000px;}
.y1c9{bottom:973.230000px;}
.y1ee{bottom:974.310000px;}
.ye6{bottom:974.490000px;}
.y160{bottom:974.670000px;}
.yb3{bottom:975.570000px;}
.y25{bottom:978.000000px;}
.y199{bottom:983.130000px;}
.y75{bottom:985.323300px;}
.y1c8{bottom:994.110000px;}
.y1ed{bottom:995.010000px;}
.y181{bottom:995.190000px;}
.y50{bottom:1000.050000px;}
.y74{bottom:1002.244050px;}
.yfb{bottom:1003.830000px;}
.y24{bottom:1005.000000px;}
.yb2{bottom:1006.710000px;}
.ycc{bottom:1008.870000px;}
.y1c7{bottom:1014.810000px;}
.y1d8{bottom:1015.710000px;}
.ye5{bottom:1015.890000px;}
.y16e{bottom:1016.070000px;}
.y73{bottom:1019.253450px;}
.y23{bottom:1024.500000px;}
.y198{bottom:1024.530000px;}
.y4f{bottom:1031.190000px;}
.y72{bottom:1036.262850px;}
.y1ec{bottom:1036.410000px;}
.y180{bottom:1036.590000px;}
.yb1{bottom:1037.670000px;}
.y22{bottom:1042.500000px;}
.yfa{bottom:1045.230000px;}
.y1d7{bottom:1046.670000px;}
.y1c6{bottom:1049.190000px;}
.ycb{bottom:1050.270000px;}
.y71{bottom:1053.272400px;}
.y1eb{bottom:1057.110000px;}
.ye4{bottom:1057.290000px;}
.y21{bottom:1060.500000px;}
.y4e{bottom:1064.670000px;}
.y197{bottom:1065.930000px;}
.yb0{bottom:1068.810000px;}
.y70{bottom:1070.281800px;}
.y1c5{bottom:1071.330000px;}
.y1d6{bottom:1077.810000px;}
.y17f{bottom:1077.990000px;}
.y20{bottom:1081.500000px;}
.y118{bottom:1086.630000px;}
.y6f{bottom:1087.201050px;}
.yca{bottom:1091.670000px;}
.y1c4{bottom:1093.650000px;}
.y1ea{bottom:1098.510000px;}
.ye3{bottom:1098.690000px;}
.y15f{bottom:1098.870000px;}
.yaf{bottom:1099.770000px;}
.y4d{bottom:1100.850000px;}
.y1f{bottom:1102.500000px;}
.y6e{bottom:1104.210600px;}
.y2{bottom:1107.367920px;}
.y1d5{bottom:1108.770000px;}
.y1e{bottom:1110.000000px;}
.y1c3{bottom:1116.150000px;}
.y1e9{bottom:1119.210000px;}
.y17e{bottom:1119.390000px;}
.y6d{bottom:1121.220000px;}
.y4c{bottom:1137.240000px;}
.yae{bottom:1139.940000px;}
.ye2{bottom:1140.120000px;}
.y177{bottom:1140.300000px;}
.y1{bottom:1141.200000px;}
.y6c{bottom:1244.880000px;}
.ha{height:22.500000px;}
.h18{height:34.365000px;}
.h19{height:34.402500px;}
.hd{height:40.500000px;}
.h7{height:43.506914px;}
.h2{height:44.149219px;}
.h12{height:45.000000px;}
.h11{height:51.333750px;}
.he{height:52.032000px;}
.h6{height:52.417969px;}
.h5{height:52.453125px;}
.hc{height:54.000000px;}
.h4{height:56.146289px;}
.h17{height:56.685000px;}
.h13{height:58.975137px;}
.h3{height:61.370156px;}
.h14{height:61.423863px;}
.hb{height:63.000000px;}
.h15{height:69.086250px;}
.h9{height:72.000000px;}
.h16{height:74.004654px;}
.h10{height:75.093750px;}
.hf{height:87.859687px;}
.h8{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:95.961000px;}
.w6{width:96.336000px;}
.w5{width:96.660000px;}
.w3{width:111.771000px;}
.w8{width:116.121000px;}
.w7{width:116.265000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:3.060000px;}
.x1b{left:5.925000px;}
.xf{left:7.500000px;}
.x12{left:11.691000px;}
.x1f{left:16.191000px;}
.x20{left:17.265000px;}
.x21{left:20.700000px;}
.x23{left:21.765000px;}
.x13{left:24.285000px;}
.x25{left:25.365000px;}
.x10{left:27.000000px;}
.x22{left:30.405000px;}
.x1e{left:36.525000px;}
.x1c{left:39.045000px;}
.x24{left:40.845000px;}
.x15{left:41.925000px;}
.x17{left:43.200000px;}
.x8{left:65.955000px;}
.xc{left:69.150000px;}
.x1{left:127.620000px;}
.x11{left:175.710000px;}
.xe{left:184.890000px;}
.x2{left:194.220000px;}
.x9{left:221.610000px;}
.x14{left:240.885000px;}
.x5{left:272.160000px;}
.x6{left:301.035000px;}
.xd{left:328.425000px;}
.x16{left:337.575000px;}
.x4{left:364.700700px;}
.xa{left:381.030000px;}
.x18{left:434.955000px;}
.x3{left:446.413500px;}
.xb{left:456.510000px;}
.x7{left:457.965000px;}
.x1a{left:532.020000px;}
.x1d{left:649.020000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.074880pt;}
.ls1b{letter-spacing:-0.069472pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.121600pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.281536pt;}
.ls9{letter-spacing:0.292160pt;}
.lse{letter-spacing:0.299520pt;}
.lsa{letter-spacing:0.302784pt;}
.ls17{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.371840pt;}
.ls32{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.961472pt;}
.ls21{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.401600pt;}
.ls31{letter-spacing:1.408000pt;}
.ls4{letter-spacing:2.048000pt;}
.ls2a{letter-spacing:7.146667pt;}
.ls1f{letter-spacing:7.168000pt;}
.ls27{letter-spacing:7.808000pt;}
.ls23{letter-spacing:8.576000pt;}
.ls24{letter-spacing:11.008000pt;}
.ls29{letter-spacing:15.493120pt;}
.ls2d{letter-spacing:19.968000pt;}
.ls2b{letter-spacing:21.888000pt;}
.ls20{letter-spacing:24.448000pt;}
.ls2f{letter-spacing:82.048000pt;}
.ls30{letter-spacing:99.968000pt;}
.ls2c{letter-spacing:323.968000pt;}
.ls2e{letter-spacing:467.328000pt;}
.ws26{word-spacing:-64.000000pt;}
.ws21{word-spacing:-21.120107pt;}
.ws0{word-spacing:-21.116160pt;}
.ws2b{word-spacing:-18.368000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws27{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws28{word-spacing:-17.664000pt;}
.ws24{word-spacing:-17.600000pt;}
.ws2a{word-spacing:-17.408000pt;}
.ws25{word-spacing:-17.344000pt;}
.ws29{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.152000pt;}
.ws5{word-spacing:-14.661120pt;}
.ws22{word-spacing:-11.920640pt;}
.ws23{word-spacing:-11.759573pt;}
.ws15{word-spacing:-2.688000pt;}
.ws1b{word-spacing:-1.221760pt;}
.wsb{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.584320pt;}
.wsa{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.053120pt;}
.wsf{word-spacing:0.064000pt;}
.ws7{word-spacing:0.117760pt;}
.wse{word-spacing:0.192000pt;}
.ws1d{word-spacing:0.256000pt;}
.ws8{word-spacing:0.374400pt;}
.ws11{word-spacing:0.384000pt;}
.wsd{word-spacing:0.412160pt;}
.wsc{word-spacing:0.512000pt;}
.ws10{word-spacing:1.792000pt;}
.ws19{word-spacing:8.977280pt;}
.ws18{word-spacing:9.030400pt;}
.ws14{word-spacing:11.392000pt;}
.ws13{word-spacing:12.032000pt;}
.ws17{word-spacing:12.217600pt;}
.ws12{word-spacing:12.416000pt;}
.ws1e{word-spacing:527.306667pt;}
.ws1f{word-spacing:684.602667pt;}
.ws20{word-spacing:719.354667pt;}
._58{margin-left:-13.136085pt;}
._91{margin-left:-6.965717pt;}
._5f{margin-left:-5.849856pt;}
._20{margin-left:-4.492288pt;}
._4{margin-left:-3.315712pt;}
._3{margin-left:-2.228992pt;}
._0{margin-left:-1.254144pt;}
._2{width:1.088000pt;}
._13{width:2.248704pt;}
._1a{width:3.818667pt;}
._1b{width:4.736000pt;}
._18{width:5.888000pt;}
._17{width:7.018667pt;}
._19{width:8.106667pt;}
._22{width:9.318144pt;}
._21{width:10.368000pt;}
._1c{width:11.558144pt;}
._10{width:12.650667pt;}
._5{width:13.670144pt;}
._15{width:14.748416pt;}
._14{width:15.736235pt;}
._26{width:16.692992pt;}
._2e{width:18.713472pt;}
._f{width:19.674752pt;}
._16{width:21.253803pt;}
._29{width:22.495061pt;}
._1d{width:23.398144pt;}
._1e{width:24.297045pt;}
._24{width:25.302955pt;}
._25{width:26.360576pt;}
._2d{width:27.918848pt;}
._23{width:28.951893pt;}
._12{width:30.557099pt;}
._11{width:31.888811pt;}
._2f{width:32.793856pt;}
._33{width:33.894144pt;}
._2b{width:35.349333pt;}
._2a{width:36.330667pt;}
._3c{width:37.504000pt;}
._94{width:39.070379pt;}
._3d{width:40.096000pt;}
._e{width:42.152789pt;}
._c{width:43.178667pt;}
._d{width:44.611797pt;}
._37{width:46.314667pt;}
._95{width:47.590144pt;}
._40{width:48.512000pt;}
._3e{width:50.790144pt;}
._3a{width:57.088000pt;}
._88{width:57.978752pt;}
._3b{width:58.912000pt;}
._8f{width:63.488000pt;}
._36{width:64.390144pt;}
._35{width:65.408000pt;}
._49{width:66.432000pt;}
._8c{width:69.157248pt;}
._93{width:71.658667pt;}
._47{width:73.507243pt;}
._46{width:74.560000pt;}
._4c{width:76.970667pt;}
._30{width:81.898667pt;}
._92{width:85.226667pt;}
._27{width:87.168000pt;}
._28{width:89.025621pt;}
._31{width:91.008000pt;}
._32{width:92.192341pt;}
._4d{width:93.568000pt;}
._69{width:94.842197pt;}
._65{width:95.823915pt;}
._43{width:96.768000pt;}
._42{width:98.240000pt;}
._79{width:100.716288pt;}
._8d{width:103.024085pt;}
._8e{width:104.000000pt;}
._62{width:105.962667pt;}
._7b{width:107.146667pt;}
._68{width:108.448000pt;}
._73{width:110.928811pt;}
._41{width:114.400000pt;}
._7f{width:115.424000pt;}
._56{width:117.418667pt;}
._5d{width:121.718059pt;}
._3f{width:124.224000pt;}
._64{width:133.248000pt;}
._59{width:135.055915pt;}
._45{width:137.504000pt;}
._53{width:140.431915pt;}
._6a{width:141.802667pt;}
._8a{width:144.677248pt;}
._6e{width:145.706667pt;}
._57{width:147.599915pt;}
._71{width:152.426667pt;}
._90{width:153.514667pt;}
._38{width:156.224000pt;}
._39{width:157.194667pt;}
._6c{width:159.594667pt;}
._8b{width:166.954667pt;}
._7e{width:168.448000pt;}
._75{width:170.613333pt;}
._74{width:171.562667pt;}
._82{width:189.162667pt;}
._67{width:191.658667pt;}
._44{width:199.232000pt;}
._86{width:206.954667pt;}
._63{width:208.166144pt;}
._70{width:210.614955pt;}
._85{width:222.624000pt;}
._52{width:229.391915pt;}
._34{width:232.224000pt;}
._54{width:234.991915pt;}
._7d{width:238.314667pt;}
._81{width:239.904000pt;}
._6f{width:247.292757pt;}
._76{width:273.935915pt;}
._89{width:275.360000pt;}
._6d{width:286.325717pt;}
._77{width:288.170667pt;}
._4a{width:291.018667pt;}
._5a{width:292.106667pt;}
._87{width:293.664000pt;}
._83{width:294.688000pt;}
._4e{width:302.858667pt;}
._66{width:304.234667pt;}
._51{width:307.599915pt;}
._b{width:313.994667pt;}
._6b{width:322.293717pt;}
._5b{width:327.274667pt;}
._7c{width:336.310059pt;}
._80{width:339.663915pt;}
._50{width:345.066667pt;}
._61{width:353.290667pt;}
._60{width:359.808000pt;}
._72{width:361.248000pt;}
._84{width:396.559915pt;}
._5c{width:405.743915pt;}
._7a{width:410.831915pt;}
._4b{width:435.968000pt;}
._78{width:436.928000pt;}
._8{width:439.178667pt;}
._4f{width:473.834667pt;}
._6{width:489.914667pt;}
._55{width:549.519915pt;}
._a{width:554.042667pt;}
._5e{width:625.199915pt;}
._7{width:655.370667pt;}
._9{width:660.746667pt;}
._1f{width:747.322027pt;}
._2c{width:750.346667pt;}
._1{width:879.284480pt;}
._48{width:955.360000pt;}
.fs5{font-size:26.666667pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsa{font-size:53.333333pt;}
.fsb{font-size:53.440000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1e4{bottom:9.760000pt;}
.y1e7{bottom:9.800000pt;}
.y1e0{bottom:15.840000pt;}
.y1e8{bottom:15.880000pt;}
.y1e1{bottom:25.760000pt;}
.y1e2{bottom:25.920000pt;}
.y4b{bottom:26.666667pt;}
.yad{bottom:30.029333pt;}
.y1df{bottom:35.520000pt;}
.yac{bottom:45.068667pt;}
.yab{bottom:60.188133pt;}
.yaa{bottom:75.307733pt;}
.ya9{bottom:90.427200pt;}
.y138{bottom:98.112000pt;}
.y1c2{bottom:98.432000pt;}
.y10d{bottom:102.912000pt;}
.ya8{bottom:105.546667pt;}
.y150{bottom:108.832000pt;}
.y210{bottom:111.712000pt;}
.ye1{bottom:113.312000pt;}
.y1c1{bottom:116.192000pt;}
.y149{bottom:119.392000pt;}
.ya7{bottom:120.586000pt;}
.yf9{bottom:124.192000pt;}
.y6b{bottom:127.712000pt;}
.y176{bottom:130.112000pt;}
.y16d{bottom:130.272000pt;}
.y1c0{bottom:131.872000pt;}
.y137{bottom:134.906667pt;}
.ya6{bottom:135.705600pt;}
.y10c{bottom:139.706667pt;}
.y14f{bottom:145.626667pt;}
.y20f{bottom:148.506667pt;}
.ye0{bottom:150.106667pt;}
.y1bf{bottom:150.266667pt;}
.ya5{bottom:150.825067pt;}
.y15e{bottom:153.786667pt;}
.y148{bottom:156.186667pt;}
.yf8{bottom:160.986667pt;}
.y6a{bottom:163.386667pt;}
.y127{bottom:164.506667pt;}
.ya4{bottom:165.944667pt;}
.y16c{bottom:166.906667pt;}
.y17a{bottom:167.066667pt;}
.y1be{bottom:168.666667pt;}
.y136{bottom:171.706667pt;}
.y1d{bottom:172.480000pt;}
.ya3{bottom:181.064133pt;}
.y14e{bottom:182.426667pt;}
.y20e{bottom:185.306667pt;}
.ydf{bottom:186.906667pt;}
.y1bd{bottom:187.066667pt;}
.y10b{bottom:187.226667pt;}
.y15d{bottom:190.586667pt;}
.y69{bottom:190.906667pt;}
.y147{bottom:192.986667pt;}
.ya2{bottom:196.103467pt;}
.yf7{bottom:197.786667pt;}
.y1c{bottom:203.040000pt;}
.y16b{bottom:203.706667pt;}
.y175{bottom:203.866667pt;}
.y1bc{bottom:205.466667pt;}
.y135{bottom:208.506667pt;}
.ya1{bottom:211.222933pt;}
.y126{bottom:212.026667pt;}
.y4a{bottom:214.666667pt;}
.yc9{bottom:215.706667pt;}
.y68{bottom:218.586667pt;}
.y14d{bottom:219.226667pt;}
.y20d{bottom:222.106667pt;}
.y1b{bottom:222.720000pt;}
.yde{bottom:223.706667pt;}
.y1bb{bottom:223.866667pt;}
.y10a{bottom:224.026667pt;}
.ya0{bottom:226.342533pt;}
.y15c{bottom:227.386667pt;}
.y49{bottom:229.333333pt;}
.y146{bottom:229.786667pt;}
.yf6{bottom:234.586667pt;}
.y117{bottom:234.746667pt;}
.y174{bottom:240.506667pt;}
.y16a{bottom:240.666667pt;}
.y9f{bottom:241.462000pt;}
.y1ba{bottom:242.106667pt;}
.y1a{bottom:242.560000pt;}
.y48{bottom:244.000000pt;}
.y134{bottom:245.346667pt;}
.y67{bottom:246.146667pt;}
.y125{bottom:248.866667pt;}
.yc8{bottom:253.826667pt;}
.y14c{bottom:256.066667pt;}
.y9e{bottom:256.581467pt;}
.y47{bottom:258.666667pt;}
.y20c{bottom:258.946667pt;}
.ydd{bottom:260.546667pt;}
.y109{bottom:260.866667pt;}
.y1b9{bottom:261.826667pt;}
.y19{bottom:262.400000pt;}
.y15b{bottom:264.226667pt;}
.y145{bottom:266.626667pt;}
.yf5{bottom:271.426667pt;}
.y9d{bottom:271.620800pt;}
.y46{bottom:273.333333pt;}
.y173{bottom:277.346667pt;}
.y169{bottom:277.506667pt;}
.y1b8{bottom:280.226667pt;}
.yc7{bottom:281.346667pt;}
.y18{bottom:281.600000pt;}
.y66{bottom:281.826667pt;}
.y133{bottom:282.146667pt;}
.y124{bottom:285.666667pt;}
.y9c{bottom:286.740400pt;}
.y45{bottom:288.000000pt;}
.y14b{bottom:292.866667pt;}
.y20b{bottom:295.746667pt;}
.y108{bottom:297.666667pt;}
.y17{bottom:298.240000pt;}
.y1b7{bottom:298.626667pt;}
.y15a{bottom:301.026667pt;}
.y9b{bottom:301.859867pt;}
.y44{bottom:302.666667pt;}
.y144{bottom:303.426667pt;}
.y194{bottom:306.466667pt;}
.ydc{bottom:308.066667pt;}
.yf4{bottom:308.226667pt;}
.y65{bottom:309.346667pt;}
.y168{bottom:314.146667pt;}
.y179{bottom:314.306667pt;}
.y16{bottom:315.360000pt;}
.y9a{bottom:316.979333pt;}
.yc6{bottom:317.026667pt;}
.y43{bottom:317.333333pt;}
.y132{bottom:318.946667pt;}
.y123{bottom:322.306667pt;}
.y193{bottom:324.386667pt;}
.y14a{bottom:329.666667pt;}
.y42{bottom:332.000000pt;}
.y99{bottom:332.098933pt;}
.y20a{bottom:332.546667pt;}
.y107{bottom:334.466667pt;}
.y15{bottom:335.200000pt;}
.y1b6{bottom:335.426667pt;}
.y64{bottom:337.026667pt;}
.y159{bottom:337.826667pt;}
.y143{bottom:340.226667pt;}
.y192{bottom:341.346667pt;}
.yc5{bottom:344.546667pt;}
.ydb{bottom:344.866667pt;}
.yf3{bottom:345.026667pt;}
.y41{bottom:346.666667pt;}
.y98{bottom:347.218400pt;}
.y167{bottom:350.946667pt;}
.y172{bottom:351.106667pt;}
.y1b5{bottom:353.826667pt;}
.y14{bottom:355.040000pt;}
.y116{bottom:355.746667pt;}
.y191{bottom:358.146667pt;}
.y122{bottom:359.106667pt;}
.y40{bottom:361.333333pt;}
.y97{bottom:362.257733pt;}
.y63{bottom:364.546667pt;}
.y131{bottom:366.466667pt;}
.y209{bottom:369.346667pt;}
.y106{bottom:371.266667pt;}
.yc4{bottom:372.226667pt;}
.y158{bottom:374.626667pt;}
.y190{bottom:375.106667pt;}
.y3f{bottom:376.000000pt;}
.y142{bottom:377.026667pt;}
.y96{bottom:377.377333pt;}
.yda{bottom:381.666667pt;}
.yf2{bottom:381.826667pt;}
.y13{bottom:385.760000pt;}
.y208{bottom:387.586667pt;}
.y171{bottom:387.746667pt;}
.y166{bottom:387.906667pt;}
.y18f{bottom:390.466667pt;}
.y1b4{bottom:390.626667pt;}
.y3e{bottom:390.666667pt;}
.y62{bottom:392.226667pt;}
.y95{bottom:392.496800pt;}
.y115{bottom:392.546667pt;}
.y130{bottom:403.266667pt;}
.y3d{bottom:405.333333pt;}
.y207{bottom:405.986667pt;}
.y18e{bottom:406.146667pt;}
.y121{bottom:406.626667pt;}
.y94{bottom:407.616267pt;}
.yc3{bottom:407.746667pt;}
.y1b3{bottom:410.306667pt;}
.y157{bottom:411.426667pt;}
.y141{bottom:413.826667pt;}
.y12{bottom:416.320000pt;}
.yd9{bottom:418.466667pt;}
.yf1{bottom:418.626667pt;}
.y61{bottom:419.746667pt;}
.y3c{bottom:420.000000pt;}
.y93{bottom:422.735867pt;}
.y206{bottom:424.386667pt;}
.y151{bottom:424.546667pt;}
.y1b2{bottom:428.706667pt;}
.y114{bottom:429.346667pt;}
.y3b{bottom:434.666667pt;}
.yc2{bottom:435.426667pt;}
.y92{bottom:437.775200pt;}
.y12f{bottom:440.066667pt;}
.y205{bottom:442.786667pt;}
.y18d{bottom:442.946667pt;}
.y120{bottom:443.426667pt;}
.y11{bottom:446.720000pt;}
.y196{bottom:447.106667pt;}
.y60{bottom:447.426667pt;}
.y3a{bottom:449.333333pt;}
.y156{bottom:449.346667pt;}
.y91{bottom:452.894667pt;}
.yd8{bottom:455.266667pt;}
.yf0{bottom:455.426667pt;}
.y204{bottom:461.186667pt;}
.y140{bottom:461.346667pt;}
.y170{bottom:461.506667pt;}
.yc1{bottom:462.946667pt;}
.y39{bottom:464.000000pt;}
.y195{bottom:464.066667pt;}
.y1b1{bottom:465.506667pt;}
.y105{bottom:466.146667pt;}
.y10{bottom:466.400000pt;}
.y90{bottom:468.014267pt;}
.y5f{bottom:474.946667pt;}
.y12e{bottom:476.866667pt;}
.y38{bottom:478.666667pt;}
.y203{bottom:479.586667pt;}
.y18c{bottom:479.746667pt;}
.y11f{bottom:480.226667pt;}
.y8f{bottom:483.133733pt;}
.y1b0{bottom:483.906667pt;}
.y155{bottom:487.426667pt;}
.yc0{bottom:490.626667pt;}
.yd7{bottom:492.066667pt;}
.yef{bottom:492.226667pt;}
.y37{bottom:493.333333pt;}
.yf{bottom:497.120000pt;}
.y202{bottom:498.013333pt;}
.y13f{bottom:498.173333pt;}
.y8e{bottom:498.253200pt;}
.y165{bottom:498.333333pt;}
.y1af{bottom:502.333333pt;}
.y5e{bottom:502.653333pt;}
.y104{bottom:502.973333pt;}
.y36{bottom:508.000000pt;}
.y8d{bottom:513.292533pt;}
.y12d{bottom:513.693333pt;}
.ye{bottom:515.520000pt;}
.y201{bottom:516.413333pt;}
.y18b{bottom:516.573333pt;}
.ybf{bottom:518.173333pt;}
.y1ae{bottom:520.733333pt;}
.y35{bottom:522.666667pt;}
.y154{bottom:524.253333pt;}
.y8c{bottom:528.412133pt;}
.yd6{bottom:528.893333pt;}
.yee{bottom:529.053333pt;}
.y5d{bottom:530.173333pt;}
.yd{bottom:533.920000pt;}
.y200{bottom:534.813333pt;}
.y13e{bottom:534.973333pt;}
.y17c{bottom:535.133333pt;}
.y34{bottom:537.333333pt;}
.y1ad{bottom:538.973333pt;}
.y103{bottom:539.773333pt;}
.y8b{bottom:543.531600pt;}
.ybe{bottom:545.853333pt;}
.y12c{bottom:550.333333pt;}
.y1ff{bottom:553.213333pt;}
.y18a{bottom:553.373333pt;}
.y11e{bottom:556.253333pt;}
.y5c{bottom:557.853333pt;}
.y8a{bottom:558.651067pt;}
.y1ac{bottom:558.653333pt;}
.y153{bottom:561.053333pt;}
.y33{bottom:561.333333pt;}
.yc{bottom:564.480000pt;}
.yd5{bottom:565.533333pt;}
.yed{bottom:565.853333pt;}
.y1fe{bottom:571.613333pt;}
.y13d{bottom:571.773333pt;}
.y178{bottom:571.933333pt;}
.ybd{bottom:573.373333pt;}
.y89{bottom:573.770667pt;}
.y102{bottom:576.573333pt;}
.y1ab{bottom:577.053333pt;}
.y32{bottom:585.333333pt;}
.y5b{bottom:585.373333pt;}
.y113{bottom:587.133333pt;}
.y88{bottom:588.810000pt;}
.y1fd{bottom:590.013333pt;}
.y189{bottom:590.173333pt;}
.y11d{bottom:593.053333pt;}
.yb{bottom:595.040000pt;}
.y1aa{bottom:595.453333pt;}
.y152{bottom:597.853333pt;}
.yd4{bottom:602.333333pt;}
.yec{bottom:602.653333pt;}
.y87{bottom:603.929467pt;}
.y1d4{bottom:607.613333pt;}
.y1fc{bottom:608.413333pt;}
.y13c{bottom:608.573333pt;}
.y16f{bottom:608.733333pt;}
.ybc{bottom:609.053333pt;}
.y31{bottom:609.333333pt;}
.y101{bottom:613.373333pt;}
.y1a9{bottom:613.853333pt;}
.y5a{bottom:618.333333pt;}
.y86{bottom:619.048933pt;}
.y112{bottom:624.093333pt;}
.ya{bottom:625.600000pt;}
.y1d3{bottom:626.013333pt;}
.y1fb{bottom:626.813333pt;}
.y188{bottom:626.973333pt;}
.y11c{bottom:629.853333pt;}
.y1a8{bottom:632.253333pt;}
.y30{bottom:633.333333pt;}
.y85{bottom:634.168533pt;}
.y12b{bottom:634.653333pt;}
.ybb{bottom:637.213333pt;}
.yd3{bottom:639.133333pt;}
.yeb{bottom:639.453333pt;}
.y1dd{bottom:639.933333pt;}
.y59{bottom:640.573333pt;}
.y1d2{bottom:644.413333pt;}
.y1fa{bottom:645.213333pt;}
.y13b{bottom:645.373333pt;}
.y164{bottom:645.533333pt;}
.y84{bottom:649.288000pt;}
.y1a7{bottom:650.653333pt;}
.y9{bottom:656.000000pt;}
.y2f{bottom:657.333333pt;}
.y100{bottom:660.733333pt;}
.y1d1{bottom:662.813333pt;}
.y1f9{bottom:663.613333pt;}
.y187{bottom:663.773333pt;}
.y83{bottom:664.328667pt;}
.yba{bottom:666.013333pt;}
.y11b{bottom:667.773333pt;}
.y1a6{bottom:669.053333pt;}
.y1dc{bottom:670.653333pt;}
.y12a{bottom:671.453333pt;}
.y58{bottom:673.533333pt;}
.yd2{bottom:675.933333pt;}
.y82{bottom:679.448267pt;}
.y1d0{bottom:681.213333pt;}
.y2e{bottom:681.333333pt;}
.y1f8{bottom:682.013333pt;}
.y13a{bottom:682.173333pt;}
.y163{bottom:682.333333pt;}
.y8{bottom:686.560000pt;}
.yea{bottom:686.973333pt;}
.y1a5{bottom:687.453333pt;}
.y1db{bottom:689.053333pt;}
.yb9{bottom:693.533333pt;}
.y81{bottom:694.567733pt;}
.y57{bottom:695.773333pt;}
.y111{bottom:697.533333pt;}
.y1cf{bottom:699.613333pt;}
.y1f7{bottom:700.413333pt;}
.y186{bottom:700.573333pt;}
.y2d{bottom:705.333333pt;}
.y11a{bottom:705.853333pt;}
.y1a4{bottom:707.133333pt;}
.y1da{bottom:707.453333pt;}
.yff{bottom:708.253333pt;}
.y80{bottom:709.687200pt;}
.yd1{bottom:712.733333pt;}
.y7{bottom:718.720000pt;}
.y1f6{bottom:718.813333pt;}
.y139{bottom:718.973333pt;}
.y162{bottom:719.133333pt;}
.yb8{bottom:721.213333pt;}
.y56{bottom:723.293333pt;}
.y7f{bottom:724.806800pt;}
.y1a3{bottom:725.533333pt;}
.y1d9{bottom:725.853333pt;}
.y1ce{bottom:727.133333pt;}
.y2c{bottom:729.333333pt;}
.ye9{bottom:734.333333pt;}
.y1f5{bottom:737.213333pt;}
.y185{bottom:737.373333pt;}
.y7e{bottom:739.846133pt;}
.y1e6{bottom:741.213333pt;}
.y119{bottom:743.773333pt;}
.y1a2{bottom:743.933333pt;}
.yfe{bottom:745.053333pt;}
.yb7{bottom:748.773333pt;}
.yd0{bottom:749.573333pt;}
.y6{bottom:753.287200pt;}
.y2b{bottom:753.333333pt;}
.y1cd{bottom:754.693333pt;}
.y7d{bottom:754.965600pt;}
.y1f4{bottom:755.653333pt;}
.y129{bottom:755.813333pt;}
.y161{bottom:755.973333pt;}
.y55{bottom:756.293333pt;}
.y1a1{bottom:762.373333pt;}
.y2a{bottom:768.000000pt;}
.y7c{bottom:770.085067pt;}
.y110{bottom:771.173333pt;}
.y1e5{bottom:772.453333pt;}
.y1f3{bottom:774.053333pt;}
.y184{bottom:774.213333pt;}
.yb6{bottom:776.453333pt;}
.y1a0{bottom:780.773333pt;}
.ye8{bottom:781.893333pt;}
.y1cc{bottom:782.373333pt;}
.y29{bottom:782.666667pt;}
.y54{bottom:783.813333pt;}
.y7b{bottom:785.204667pt;}
.ycf{bottom:786.373333pt;}
.y5{bottom:787.039360pt;}
.y19c{bottom:791.173333pt;}
.y1f2{bottom:792.453333pt;}
.y128{bottom:792.613333pt;}
.y17b{bottom:792.773333pt;}
.y19f{bottom:799.173333pt;}
.y7a{bottom:800.324133pt;}
.y1e3{bottom:803.653333pt;}
.y53{bottom:806.213333pt;}
.y28{bottom:806.666667pt;}
.y10f{bottom:807.973333pt;}
.y1cb{bottom:809.893333pt;}
.y1f1{bottom:810.853333pt;}
.y183{bottom:811.013333pt;}
.yb5{bottom:811.973333pt;}
.y79{bottom:815.364800pt;}
.y19e{bottom:817.413333pt;}
.yfd{bottom:818.693333pt;}
.y19b{bottom:818.853333pt;}
.y4{bottom:820.960000pt;}
.y27{bottom:821.333333pt;}
.yce{bottom:823.173333pt;}
.y1f0{bottom:829.253333pt;}
.ye7{bottom:829.413333pt;}
.y17d{bottom:829.573333pt;}
.y78{bottom:830.484400pt;}
.y52{bottom:833.733333pt;}
.y1de{bottom:834.853333pt;}
.y19d{bottom:835.813333pt;}
.y19a{bottom:837.093333pt;}
.y1ca{bottom:837.573333pt;}
.yb4{bottom:839.653333pt;}
.y10e{bottom:844.773333pt;}
.y26{bottom:845.333333pt;}
.y77{bottom:845.603867pt;}
.y1ef{bottom:847.653333pt;}
.y182{bottom:847.813333pt;}
.y3{bottom:850.242560pt;}
.yfc{bottom:855.493333pt;}
.ycd{bottom:859.973333pt;}
.y76{bottom:860.723333pt;}
.y51{bottom:861.413333pt;}
.y1c9{bottom:865.093333pt;}
.y1ee{bottom:866.053333pt;}
.ye6{bottom:866.213333pt;}
.y160{bottom:866.373333pt;}
.yb3{bottom:867.173333pt;}
.y25{bottom:869.333333pt;}
.y199{bottom:873.893333pt;}
.y75{bottom:875.842933pt;}
.y1c8{bottom:883.653333pt;}
.y1ed{bottom:884.453333pt;}
.y181{bottom:884.613333pt;}
.y50{bottom:888.933333pt;}
.y74{bottom:890.883600pt;}
.yfb{bottom:892.293333pt;}
.y24{bottom:893.333333pt;}
.yb2{bottom:894.853333pt;}
.ycc{bottom:896.773333pt;}
.y1c7{bottom:902.053333pt;}
.y1d8{bottom:902.853333pt;}
.ye5{bottom:903.013333pt;}
.y16e{bottom:903.173333pt;}
.y73{bottom:906.003067pt;}
.y23{bottom:910.666667pt;}
.y198{bottom:910.693333pt;}
.y4f{bottom:916.613333pt;}
.y72{bottom:921.122533pt;}
.y1ec{bottom:921.253333pt;}
.y180{bottom:921.413333pt;}
.yb1{bottom:922.373333pt;}
.y22{bottom:926.666667pt;}
.yfa{bottom:929.093333pt;}
.y1d7{bottom:930.373333pt;}
.y1c6{bottom:932.613333pt;}
.ycb{bottom:933.573333pt;}
.y71{bottom:936.242133pt;}
.y1eb{bottom:939.653333pt;}
.ye4{bottom:939.813333pt;}
.y21{bottom:942.666667pt;}
.y4e{bottom:946.373333pt;}
.y197{bottom:947.493333pt;}
.yb0{bottom:950.053333pt;}
.y70{bottom:951.361600pt;}
.y1c5{bottom:952.293333pt;}
.y1d6{bottom:958.053333pt;}
.y17f{bottom:958.213333pt;}
.y20{bottom:961.333333pt;}
.y118{bottom:965.893333pt;}
.y6f{bottom:966.400933pt;}
.yca{bottom:970.373333pt;}
.y1c4{bottom:972.133333pt;}
.y1ea{bottom:976.453333pt;}
.ye3{bottom:976.613333pt;}
.y15f{bottom:976.773333pt;}
.yaf{bottom:977.573333pt;}
.y4d{bottom:978.533333pt;}
.y1f{bottom:980.000000pt;}
.y6e{bottom:981.520533pt;}
.y2{bottom:984.327040pt;}
.y1d5{bottom:985.573333pt;}
.y1e{bottom:986.666667pt;}
.y1c3{bottom:992.133333pt;}
.y1e9{bottom:994.853333pt;}
.y17e{bottom:995.013333pt;}
.y6d{bottom:996.640000pt;}
.y4c{bottom:1010.880000pt;}
.yae{bottom:1013.280000pt;}
.ye2{bottom:1013.440000pt;}
.y177{bottom:1013.600000pt;}
.y1{bottom:1014.400000pt;}
.y6c{bottom:1106.560000pt;}
.ha{height:20.000000pt;}
.h18{height:30.546667pt;}
.h19{height:30.580000pt;}
.hd{height:36.000000pt;}
.h7{height:38.672812pt;}
.h2{height:39.243750pt;}
.h12{height:40.000000pt;}
.h11{height:45.630000pt;}
.he{height:46.250667pt;}
.h6{height:46.593750pt;}
.h5{height:46.625000pt;}
.hc{height:48.000000pt;}
.h4{height:49.907812pt;}
.h17{height:50.386667pt;}
.h13{height:52.422344pt;}
.h3{height:54.551250pt;}
.h14{height:54.598989pt;}
.hb{height:56.000000pt;}
.h15{height:61.410000pt;}
.h9{height:64.000000pt;}
.h16{height:65.781915pt;}
.h10{height:66.750000pt;}
.hf{height:78.097500pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:85.298667pt;}
.w6{width:85.632000pt;}
.w5{width:85.920000pt;}
.w3{width:99.352000pt;}
.w8{width:103.218667pt;}
.w7{width:103.346667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.720000pt;}
.x1b{left:5.266667pt;}
.xf{left:6.666667pt;}
.x12{left:10.392000pt;}
.x1f{left:14.392000pt;}
.x20{left:15.346667pt;}
.x21{left:18.400000pt;}
.x23{left:19.346667pt;}
.x13{left:21.586667pt;}
.x25{left:22.546667pt;}
.x10{left:24.000000pt;}
.x22{left:27.026667pt;}
.x1e{left:32.466667pt;}
.x1c{left:34.706667pt;}
.x24{left:36.306667pt;}
.x15{left:37.266667pt;}
.x17{left:38.400000pt;}
.x8{left:58.626667pt;}
.xc{left:61.466667pt;}
.x1{left:113.440000pt;}
.x11{left:156.186667pt;}
.xe{left:164.346667pt;}
.x2{left:172.640000pt;}
.x9{left:196.986667pt;}
.x14{left:214.120000pt;}
.x5{left:241.920000pt;}
.x6{left:267.586667pt;}
.xd{left:291.933333pt;}
.x16{left:300.066667pt;}
.x4{left:324.178400pt;}
.xa{left:338.693333pt;}
.x18{left:386.626667pt;}
.x3{left:396.812000pt;}
.xb{left:405.786667pt;}
.x7{left:407.080000pt;}
.x1a{left:472.906667pt;}
.x1d{left:576.906667pt;}
}

