
    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_cd1ebca0a15b9e95919ff854.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093750;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_026c0cf8b71b2e5adb13df95.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_108fc5202bc4cd1e0579df71.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c29f6539994810e684a4842.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90b15ddf5c8714aaa25bee90.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c92883df1bef1839f2dc8af.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_381036d46ff1f9a9c5f6a5f0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1c916fc8d75473e53f94db10.woff')format("woff");}.ff9{font-family:ff9;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: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_2e5474471b7a213fe9715129.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f665fab659f77a0a5764ab16.woff')format("woff");}.ffc{font-family:ffc;line-height:0.727539;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_2e5474471b7a213fe9715129.woff')format("woff");}.fff{font-family:fff;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: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_e232b3a9e5d2ced66a7b3af5.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2e5474471b7a213fe9715129.woff')format("woff");}.ff12{font-family:ff12;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: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_2e5474471b7a213fe9715129.woff')format("woff");}.ff14{font-family:ff14;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: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_3b43de9c6a17e587cd6f3605.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.680176;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_260129c5ff9ce866ab998034.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.925293;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_29da4e45941e7fb1be20ceee.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_381036d46ff1f9a9c5f6a5f0.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_eb7a4a1f888781c50b243945.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_88f407d0a98e229316de49e7.woff')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_4043a14b95f57aa9de471076.woff')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_eb7a4a1f888781c50b243945.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_a7e4cd5b4d9ecc283893d9c8.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_67c40e6ca776045cd1b2d043.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_eb7a4a1f888781c50b243945.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_76a1fdab93270c23cc18734d.woff')format("woff");}.ff29{font-family:ff29;line-height:0.925293;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_9dfeec26c7fd222288670a3b.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_eb7a4a1f888781c50b243945.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_e858c2621554bd424286da7e.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_01470d28bfc4b88e3e6250de.woff')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_13d5b80bf6719df931879cf1.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.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_12f7196e1e1cfaece401f5f6.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_3dbe9dccf908280f276e3cb9.woff')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_b5903dd64451b06e1796eefe.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_aeb67a7572adab74db586f24.woff')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_12f7196e1e1cfaece401f5f6.woff')format("woff");}.ff34{font-family:ff34;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;}
.m1{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250016,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250016,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250016,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.119400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120600px;}
.ls3{letter-spacing:-0.078156px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:19.512000px;}
.ls4{letter-spacing:28.152000px;}
.ls2{letter-spacing:30.312000px;}
.ls5{letter-spacing:34.632000px;}
.ls1{letter-spacing:35.101562px;}
.ls7{letter-spacing:88.098122px;}
.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;}
}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-16.614781px;}
.wsa{word-spacing:-15.389969px;}
.ws1{word-spacing:-13.409219px;}
.ws8{word-spacing:-13.337495px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.432000px;}
.ws4{word-spacing:0.648000px;}
.ws3{word-spacing:6.843125px;}
.ws7{word-spacing:210.551642px;}
.ws9{word-spacing:236.459006px;}
.wsb{word-spacing:270.650696px;}
._5a{margin-left:-4.142570px;}
._1{margin-left:-2.712178px;}
._0{margin-left:-1.294448px;}
._2{width:1.654448px;}
._e{width:3.316655px;}
._1f{width:4.320000px;}
._b{width:5.400000px;}
._19{width:6.654024px;}
._17{width:7.741992px;}
._f{width:9.026502px;}
._5{width:10.204300px;}
._4{width:11.253252px;}
._15{width:12.760488px;}
._7{width:13.773252px;}
._6{width:14.976533px;}
._9{width:16.198402px;}
._8{width:17.971523px;}
._1e{width:18.992954px;}
._3{width:21.528000px;}
._d{width:22.897552px;}
._25{width:24.046448px;}
._c{width:25.056000px;}
._18{width:27.037530px;}
._16{width:29.034996px;}
._10{width:30.384000px;}
._12{width:32.328000px;}
._13{width:33.696000px;}
._a{width:35.619281px;}
._1c{width:37.080000px;}
._1d{width:38.304000px;}
._1b{width:39.886218px;}
._1a{width:41.227556px;}
._30{width:42.548897px;}
._24{width:43.555345px;}
._2c{width:44.860655px;}
._26{width:45.936000px;}
._23{width:47.376000px;}
._22{width:48.816000px;}
._11{width:50.832000px;}
._2d{width:52.488000px;}
._14{width:53.948719px;}
._2f{width:56.232000px;}
._27{width:57.888000px;}
._21{width:59.544000px;}
._20{width:61.272000px;}
._2b{width:64.656000px;}
._31{width:67.536000px;}
._2e{width:77.400000px;}
._2a{width:78.912000px;}
._28{width:80.136000px;}
._49{width:92.304000px;}
._29{width:99.288000px;}
._42{width:112.320000px;}
._35{width:152.352000px;}
._41{width:172.368000px;}
._45{width:177.840000px;}
._46{width:193.752000px;}
._59{width:271.639729px;}
._58{width:291.080993px;}
._57{width:308.804542px;}
._56{width:375.768000px;}
._55{width:442.153552px;}
._3c{width:453.888000px;}
._39{width:457.920000px;}
._3d{width:495.864000px;}
._40{width:509.616000px;}
._54{width:535.824000px;}
._3e{width:557.496000px;}
._47{width:598.032000px;}
._4b{width:649.944000px;}
._48{width:669.960000px;}
._53{width:675.936000px;}
._4a{width:677.808000px;}
._44{width:690.048000px;}
._43{width:697.824000px;}
._3a{width:756.000000px;}
._50{width:781.848000px;}
._3b{width:786.024000px;}
._33{width:821.952000px;}
._34{width:837.864000px;}
._4e{width:854.352000px;}
._38{width:889.992000px;}
._32{width:905.976000px;}
._4f{width:914.328000px;}
._36{width:919.872000px;}
._52{width:963.936000px;}
._51{width:1256.040000px;}
._3f{width:1446.768000px;}
._37{width:1463.472000px;}
._4d{width:1811.880000px;}
._4c{width:2156.328000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.976600px;}
.fs3{font-size:48.234600px;}
.fs9{font-size:55.356000px;}
.fs8{font-size:55.359600px;}
.fs6{font-size:59.765400px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:61.640400px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.234600px;}
.y0{bottom:0.000000px;}
.y117{bottom:1.799850px;}
.y6c{bottom:33.783000px;}
.y6b{bottom:50.702250px;}
.y6a{bottom:67.711650px;}
.y69{bottom:84.721200px;}
.y68{bottom:101.730600px;}
.y84{bottom:116.234700px;}
.y67{bottom:118.740000px;}
.y116{bottom:129.914700px;}
.y66{bottom:135.659250px;}
.yc7{bottom:146.474550px;}
.yc1{bottom:146.474700px;}
.ycb{bottom:146.654700px;}
.y115{bottom:150.614700px;}
.y65{bottom:152.668800px;}
.y83{bottom:157.634700px;}
.y64{bottom:169.678200px;}
.y114{bottom:171.314700px;}
.y18{bottom:176.545245px;}
.yab{bottom:182.474700px;}
.y63{bottom:186.687750px;}
.yc6{bottom:187.874550px;}
.y9c{bottom:187.874700px;}
.yc5{bottom:188.054700px;}
.y17{bottom:203.184685px;}
.y62{bottom:203.697150px;}
.y113{bottom:208.214982px;}
.y61{bottom:220.616400px;}
.yaa{bottom:223.874700px;}
.ybe{bottom:229.274550px;}
.y98{bottom:229.274700px;}
.yc0{bottom:229.454700px;}
.y16{bottom:230.004423px;}
.y82{bottom:233.414700px;}
.y60{bottom:237.625800px;}
.y5f{bottom:254.635350px;}
.y15{bottom:256.643863px;}
.y112{bottom:259.874700px;}
.ya9{bottom:265.274700px;}
.ybd{bottom:270.674550px;}
.y97{bottom:270.674700px;}
.yc4{bottom:270.854550px;}
.y5e{bottom:271.644750px;}
.y81{bottom:274.814700px;}
.y14{bottom:283.463601px;}
.y5d{bottom:288.654150px;}
.y111{bottom:294.434700px;}
.y5c{bottom:305.573400px;}
.ya8{bottom:306.674700px;}
.y13{bottom:310.103041px;}
.ybc{bottom:312.074550px;}
.y96{bottom:312.074700px;}
.y80{bottom:316.214700px;}
.y5b{bottom:322.582950px;}
.y110{bottom:328.814700px;}
.y12{bottom:336.922779px;}
.y5a{bottom:339.592350px;}
.ya7{bottom:349.334700px;}
.yc3{bottom:353.474550px;}
.y95{bottom:353.474700px;}
.y59{bottom:356.601750px;}
.y7f{bottom:357.614700px;}
.y10f{bottom:363.374700px;}
.y11{bottom:363.562219px;}
.y58{bottom:373.611300px;}
.y10{bottom:390.381957px;}
.y57{bottom:390.620700px;}
.yd5{bottom:394.694700px;}
.ybb{bottom:394.874550px;}
.y94{bottom:394.874700px;}
.y10e{bottom:397.934700px;}
.y7e{bottom:399.014700px;}
.y56{bottom:407.539950px;}
.yf{bottom:417.021397px;}
.y55{bottom:424.549500px;}
.y10d{bottom:432.314700px;}
.ya6{bottom:433.574700px;}
.yba{bottom:436.274550px;}
.y93{bottom:436.274700px;}
.yce{bottom:436.454550px;}
.y7d{bottom:440.414700px;}
.y54{bottom:441.558900px;}
.ye{bottom:443.660837px;}
.y53{bottom:458.568300px;}
.y10c{bottom:467.054700px;}
.ya5{bottom:474.974700px;}
.y52{bottom:475.577850px;}
.yd4{bottom:477.494700px;}
.yb9{bottom:477.674550px;}
.y92{bottom:477.674700px;}
.y7c{bottom:481.814700px;}
.y51{bottom:492.497100px;}
.yd{bottom:496.941257px;}
.y10b{bottom:505.576678px;}
.y50{bottom:509.506500px;}
.y2a{bottom:512.234700px;}
.ya4{bottom:516.374700px;}
.yd3{bottom:518.894700px;}
.yb8{bottom:519.074550px;}
.y91{bottom:519.074700px;}
.y7b{bottom:523.214700px;}
.y4f{bottom:526.516050px;}
.y10a{bottom:542.835922px;}
.y4e{bottom:543.525450px;}
.yc{bottom:550.400435px;}
.ya3{bottom:557.774700px;}
.yb7{bottom:560.474550px;}
.y90{bottom:560.474700px;}
.y4d{bottom:560.534850px;}
.y29{bottom:561.914700px;}
.y7a{bottom:564.614700px;}
.y109{bottom:577.215969px;}
.yb{bottom:577.220173px;}
.y4c{bottom:577.454100px;}
.y129{bottom:584.414700px;}
.y4b{bottom:594.463650px;}
.y28{bottom:595.034700px;}
.ya2{bottom:599.174700px;}
.yd2{bottom:601.694700px;}
.yb6{bottom:601.874550px;}
.y8f{bottom:601.874700px;}
.ya{bottom:603.859613px;}
.y79{bottom:606.014700px;}
.y4a{bottom:611.473050px;}
.y108{bottom:611.775311px;}
.y49{bottom:628.482450px;}
.ya1{bottom:640.574700px;}
.yd1{bottom:643.094700px;}
.yb5{bottom:643.274550px;}
.y8e{bottom:643.274700px;}
.y27{bottom:644.534700px;}
.y48{bottom:645.492000px;}
.y107{bottom:646.334654px;}
.y78{bottom:647.414700px;}
.y127{bottom:649.574550px;}
.yee{bottom:650.114550px;}
.yf6{bottom:656.954700px;}
.y9{bottom:657.318791px;}
.y47{bottom:662.411250px;}
.yed{bottom:670.814550px;}
.y26{bottom:677.654700px;}
.y46{bottom:679.420650px;}
.y106{bottom:680.714700px;}
.ya0{bottom:681.974700px;}
.ye2{bottom:683.234550px;}
.yd0{bottom:684.494700px;}
.yb4{bottom:684.674550px;}
.y9b{bottom:684.674700px;}
.yca{bottom:684.854700px;}
.y126{bottom:687.374700px;}
.y77{bottom:688.814700px;}
.y45{bottom:696.430050px;}
.yf5{bottom:698.354700px;}
.ye1{bottom:703.934550px;}
.y11e{bottom:709.514550px;}
.y8{bottom:710.777969px;}
.yec{bottom:712.214550px;}
.y44{bottom:713.439600px;}
.y105{bottom:715.454700px;}
.y25{bottom:719.054700px;}
.y9f{bottom:723.374700px;}
.ye0{bottom:724.634550px;}
.yb3{bottom:726.074550px;}
.y8d{bottom:726.074700px;}
.yc9{bottom:726.254700px;}
.y11d{bottom:729.134700px;}
.y76{bottom:730.214700px;}
.y43{bottom:730.449000px;}
.yf4{bottom:739.754700px;}
.ydf{bottom:745.334550px;}
.y42{bottom:747.369750px;}
.y11f{bottom:747.494550px;}
.y104{bottom:749.834700px;}
.yeb{bottom:753.614550px;}
.y11c{bottom:756.674550px;}
.yf3{bottom:760.454700px;}
.y7{bottom:764.237147px;}
.y41{bottom:764.379300px;}
.yde{bottom:766.034550px;}
.y9e{bottom:766.034700px;}
.yb2{bottom:767.474550px;}
.y8c{bottom:767.474700px;}
.yc8{bottom:767.654550px;}
.y24{bottom:768.734550px;}
.y75{bottom:771.614700px;}
.y40{bottom:781.388700px;}
.y120{bottom:784.214700px;}
.y103{bottom:784.216758px;}
.y128{bottom:789.614550px;}
.yea{bottom:795.014550px;}
.y3f{bottom:798.398100px;}
.y23{bottom:801.854700px;}
.ydd{bottom:807.434550px;}
.yb1{bottom:808.874550px;}
.y8b{bottom:808.874700px;}
.y74{bottom:814.274700px;}
.y3e{bottom:815.407650px;}
.y6{bottom:817.696325px;}
.y102{bottom:818.776101px;}
.y121{bottom:822.014550px;}
.ydc{bottom:828.134550px;}
.y3d{bottom:832.326900px;}
.ye9{bottom:836.414550px;}
.y22{bottom:843.254700px;}
.ydb{bottom:848.834550px;}
.y3c{bottom:849.336300px;}
.yb0{bottom:850.274550px;}
.y8a{bottom:850.274700px;}
.y101{bottom:853.156147px;}
.y73{bottom:857.114700px;}
.y122{bottom:859.994550px;}
.y3b{bottom:866.345700px;}
.yda{bottom:869.534550px;}
.y5{bottom:870.796447px;}
.ye8{bottom:877.814550px;}
.y11a{bottom:882.000000px;}
.y3a{bottom:883.355250px;}
.yf2{bottom:884.654700px;}
.y100{bottom:887.715490px;}
.yc2{bottom:891.674550px;}
.y89{bottom:891.674700px;}
.ycd{bottom:891.854550px;}
.ybf{bottom:891.854700px;}
.y21{bottom:892.934550px;}
.y123{bottom:897.794550px;}
.y72{bottom:898.514700px;}
.y119{bottom:900.000000px;}
.y39{bottom:900.364650px;}
.yd9{bottom:910.934700px;}
.y38{bottom:917.285400px;}
.ye7{bottom:919.214550px;}
.yff{bottom:922.274832px;}
.y4{bottom:924.255625px;}
.yf1{bottom:926.054700px;}
.yaf{bottom:933.074550px;}
.y88{bottom:933.074700px;}
.ycc{bottom:933.254550px;}
.y37{bottom:934.294950px;}
.y124{bottom:934.694700px;}
.y71{bottom:939.914700px;}
.y1c{bottom:951.076904px;}
.y36{bottom:951.304350px;}
.yd8{bottom:953.774700px;}
.yfe{bottom:956.654879px;}
.ye6{bottom:960.614550px;}
.y11b{bottom:964.214700px;}
.y20{bottom:967.454700px;}
.y35{bottom:968.313750px;}
.y125{bottom:972.494550px;}
.yfd{bottom:973.934550px;}
.yae{bottom:974.474550px;}
.y87{bottom:974.474700px;}
.y3{bottom:977.714803px;}
.y1b{bottom:977.716344px;}
.y70{bottom:981.314700px;}
.y34{bottom:985.323300px;}
.yfc{bottom:991.394550px;}
.ycf{bottom:995.174700px;}
.ye5{bottom:1002.014550px;}
.y33{bottom:1002.244050px;}
.y1a{bottom:1004.536082px;}
.y1f{bottom:1008.854550px;}
.yf0{bottom:1008.854700px;}
.yad{bottom:1015.874550px;}
.y86{bottom:1015.874700px;}
.y9d{bottom:1016.054700px;}
.y32{bottom:1019.253450px;}
.y6f{bottom:1022.714700px;}
.yfb{bottom:1025.775969px;}
.y19{bottom:1031.175522px;}
.y31{bottom:1036.262850px;}
.ye4{bottom:1043.414550px;}
.yef{bottom:1046.834700px;}
.y1e{bottom:1050.254550px;}
.y30{bottom:1053.272400px;}
.y118{bottom:1057.094700px;}
.yac{bottom:1057.274550px;}
.y85{bottom:1057.274700px;}
.y9a{bottom:1057.454550px;}
.y2{bottom:1057.995260px;}
.yfa{bottom:1060.156015px;}
.y6e{bottom:1064.114700px;}
.y2f{bottom:1070.281800px;}
.yd7{bottom:1077.974700px;}
.ye3{bottom:1081.394550px;}
.y1{bottom:1084.634700px;}
.y2e{bottom:1087.201050px;}
.yf9{bottom:1094.715357px;}
.y99{bottom:1098.674550px;}
.yd6{bottom:1098.674700px;}
.y2d{bottom:1104.210600px;}
.y2c{bottom:1121.220000px;}
.yf8{bottom:1129.274700px;}
.y1d{bottom:1137.194700px;}
.y6d{bottom:1140.074550px;}
.yf7{bottom:1181.114700px;}
.y2b{bottom:1244.835000px;}
.h11{height:15.120000px;}
.h14{height:34.928277px;}
.h6{height:35.139660px;}
.h16{height:40.300682px;}
.h15{height:40.303303px;}
.h12{height:41.497265px;}
.hd{height:43.510845px;}
.he{height:43.540028px;}
.h10{height:49.992188px;}
.hb{height:52.417969px;}
.hf{height:52.445214px;}
.h7{height:52.453125px;}
.hc{height:52.453725px;}
.h2{height:54.477111px;}
.ha{height:58.975137px;}
.h3{height:61.325092px;}
.h8{height:62.578125px;}
.h5{height:68.235508px;}
.h4{height:68.236708px;}
.h13{height:918.000000px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:7.560000px;}
.w2{width:14.940000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1188.000000px;}
.x0{left:0.000000px;}
.x3{left:7.500000px;}
.x4{left:27.000000px;}
.xb{left:33.120490px;}
.xa{left:46.620000px;}
.xc{left:73.619510px;}
.x1{left:109.440000px;}
.x2{left:127.620000px;}
.x17{left:169.920000px;}
.x14{left:181.080000px;}
.x13{left:188.460000px;}
.x18{left:220.860000px;}
.x8{left:233.820000px;}
.xf{left:245.700000px;}
.x15{left:253.980000px;}
.xd{left:260.460000px;}
.x5{left:340.020000px;}
.x16{left:349.020000px;}
.x9{left:375.660000px;}
.x6{left:393.120000px;}
.x10{left:405.180000px;}
.x11{left:487.260000px;}
.x7{left:552.420000px;}
.x12{left:566.640000px;}
.xe{left:599.400000px;}
@media print{
.v2{vertical-align:-29.439467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440533pt;}
.ls3{letter-spacing:-0.069472pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:17.344000pt;}
.ls4{letter-spacing:25.024000pt;}
.ls2{letter-spacing:26.944000pt;}
.ls5{letter-spacing:30.784000pt;}
.ls1{letter-spacing:31.201389pt;}
.ls7{letter-spacing:78.309442pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-14.768694pt;}
.wsa{word-spacing:-13.679972pt;}
.ws1{word-spacing:-11.919306pt;}
.ws8{word-spacing:-11.855551pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.384000pt;}
.ws4{word-spacing:0.576000pt;}
.ws3{word-spacing:6.082778pt;}
.ws7{word-spacing:187.157015pt;}
.ws9{word-spacing:210.185783pt;}
.wsb{word-spacing:240.578397pt;}
._5a{margin-left:-3.682285pt;}
._1{margin-left:-2.410825pt;}
._0{margin-left:-1.150621pt;}
._2{width:1.470621pt;}
._e{width:2.948138pt;}
._1f{width:3.840000pt;}
._b{width:4.800000pt;}
._19{width:5.914688pt;}
._17{width:6.881771pt;}
._f{width:8.023557pt;}
._5{width:9.070489pt;}
._4{width:10.002891pt;}
._15{width:11.342656pt;}
._7{width:12.242891pt;}
._6{width:13.312474pt;}
._9{width:14.398579pt;}
._8{width:15.974687pt;}
._1e{width:16.882626pt;}
._3{width:19.136000pt;}
._d{width:20.353379pt;}
._25{width:21.374621pt;}
._c{width:22.272000pt;}
._18{width:24.033360pt;}
._16{width:25.808885pt;}
._10{width:27.008000pt;}
._12{width:28.736000pt;}
._13{width:29.952000pt;}
._a{width:31.661583pt;}
._1c{width:32.960000pt;}
._1d{width:34.048000pt;}
._1b{width:35.454416pt;}
._1a{width:36.646717pt;}
._30{width:37.821242pt;}
._24{width:38.715862pt;}
._2c{width:39.876138pt;}
._26{width:40.832000pt;}
._23{width:42.112000pt;}
._22{width:43.392000pt;}
._11{width:45.184000pt;}
._2d{width:46.656000pt;}
._14{width:47.954417pt;}
._2f{width:49.984000pt;}
._27{width:51.456000pt;}
._21{width:52.928000pt;}
._20{width:54.464000pt;}
._2b{width:57.472000pt;}
._31{width:60.032000pt;}
._2e{width:68.800000pt;}
._2a{width:70.144000pt;}
._28{width:71.232000pt;}
._49{width:82.048000pt;}
._29{width:88.256000pt;}
._42{width:99.840000pt;}
._35{width:135.424000pt;}
._41{width:153.216000pt;}
._45{width:158.080000pt;}
._46{width:172.224000pt;}
._59{width:241.457536pt;}
._58{width:258.738660pt;}
._57{width:274.492926pt;}
._56{width:334.016000pt;}
._55{width:393.025379pt;}
._3c{width:403.456000pt;}
._39{width:407.040000pt;}
._3d{width:440.768000pt;}
._40{width:452.992000pt;}
._54{width:476.288000pt;}
._3e{width:495.552000pt;}
._47{width:531.584000pt;}
._4b{width:577.728000pt;}
._48{width:595.520000pt;}
._53{width:600.832000pt;}
._4a{width:602.496000pt;}
._44{width:613.376000pt;}
._43{width:620.288000pt;}
._3a{width:672.000000pt;}
._50{width:694.976000pt;}
._3b{width:698.688000pt;}
._33{width:730.624000pt;}
._34{width:744.768000pt;}
._4e{width:759.424000pt;}
._38{width:791.104000pt;}
._32{width:805.312000pt;}
._4f{width:812.736000pt;}
._36{width:817.664000pt;}
._52{width:856.832000pt;}
._51{width:1116.480000pt;}
._3f{width:1286.016000pt;}
._37{width:1300.864000pt;}
._4d{width:1610.560000pt;}
._4c{width:1916.736000pt;}
.fs7{font-size:42.645867pt;}
.fs3{font-size:42.875200pt;}
.fs9{font-size:49.205333pt;}
.fs8{font-size:49.208533pt;}
.fs6{font-size:53.124800pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:54.791467pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.875200pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:1.599867pt;}
.y6c{bottom:30.029333pt;}
.y6b{bottom:45.068667pt;}
.y6a{bottom:60.188133pt;}
.y69{bottom:75.307733pt;}
.y68{bottom:90.427200pt;}
.y84{bottom:103.319733pt;}
.y67{bottom:105.546667pt;}
.y116{bottom:115.479733pt;}
.y66{bottom:120.586000pt;}
.yc7{bottom:130.199600pt;}
.yc1{bottom:130.199733pt;}
.ycb{bottom:130.359733pt;}
.y115{bottom:133.879733pt;}
.y65{bottom:135.705600pt;}
.y83{bottom:140.119733pt;}
.y64{bottom:150.825067pt;}
.y114{bottom:152.279733pt;}
.y18{bottom:156.929107pt;}
.yab{bottom:162.199733pt;}
.y63{bottom:165.944667pt;}
.yc6{bottom:166.999600pt;}
.y9c{bottom:166.999733pt;}
.yc5{bottom:167.159733pt;}
.y17{bottom:180.608609pt;}
.y62{bottom:181.064133pt;}
.y113{bottom:185.079984pt;}
.y61{bottom:196.103467pt;}
.yaa{bottom:198.999733pt;}
.ybe{bottom:203.799600pt;}
.y98{bottom:203.799733pt;}
.yc0{bottom:203.959733pt;}
.y16{bottom:204.448376pt;}
.y82{bottom:207.479733pt;}
.y60{bottom:211.222933pt;}
.y5f{bottom:226.342533pt;}
.y15{bottom:228.127878pt;}
.y112{bottom:230.999733pt;}
.ya9{bottom:235.799733pt;}
.ybd{bottom:240.599600pt;}
.y97{bottom:240.599733pt;}
.yc4{bottom:240.759600pt;}
.y5e{bottom:241.462000pt;}
.y81{bottom:244.279733pt;}
.y14{bottom:251.967645pt;}
.y5d{bottom:256.581467pt;}
.y111{bottom:261.719733pt;}
.y5c{bottom:271.620800pt;}
.ya8{bottom:272.599733pt;}
.y13{bottom:275.647147pt;}
.ybc{bottom:277.399600pt;}
.y96{bottom:277.399733pt;}
.y80{bottom:281.079733pt;}
.y5b{bottom:286.740400pt;}
.y110{bottom:292.279733pt;}
.y12{bottom:299.486915pt;}
.y5a{bottom:301.859867pt;}
.ya7{bottom:310.519733pt;}
.yc3{bottom:314.199600pt;}
.y95{bottom:314.199733pt;}
.y59{bottom:316.979333pt;}
.y7f{bottom:317.879733pt;}
.y10f{bottom:322.999733pt;}
.y11{bottom:323.166417pt;}
.y58{bottom:332.098933pt;}
.y10{bottom:347.006184pt;}
.y57{bottom:347.218400pt;}
.yd5{bottom:350.839733pt;}
.ybb{bottom:350.999600pt;}
.y94{bottom:350.999733pt;}
.y10e{bottom:353.719733pt;}
.y7e{bottom:354.679733pt;}
.y56{bottom:362.257733pt;}
.yf{bottom:370.685686pt;}
.y55{bottom:377.377333pt;}
.y10d{bottom:384.279733pt;}
.ya6{bottom:385.399733pt;}
.yba{bottom:387.799600pt;}
.y93{bottom:387.799733pt;}
.yce{bottom:387.959600pt;}
.y7d{bottom:391.479733pt;}
.y54{bottom:392.496800pt;}
.ye{bottom:394.365188pt;}
.y53{bottom:407.616267pt;}
.y10c{bottom:415.159733pt;}
.ya5{bottom:422.199733pt;}
.y52{bottom:422.735867pt;}
.yd4{bottom:424.439733pt;}
.yb9{bottom:424.599600pt;}
.y92{bottom:424.599733pt;}
.y7c{bottom:428.279733pt;}
.y51{bottom:437.775200pt;}
.yd{bottom:441.725562pt;}
.y10b{bottom:449.401491pt;}
.y50{bottom:452.894667pt;}
.y2a{bottom:455.319733pt;}
.ya4{bottom:458.999733pt;}
.yd3{bottom:461.239733pt;}
.yb8{bottom:461.399600pt;}
.y91{bottom:461.399733pt;}
.y7b{bottom:465.079733pt;}
.y4f{bottom:468.014267pt;}
.y10a{bottom:482.520820pt;}
.y4e{bottom:483.133733pt;}
.yc{bottom:489.244831pt;}
.ya3{bottom:495.799733pt;}
.yb7{bottom:498.199600pt;}
.y90{bottom:498.199733pt;}
.y4d{bottom:498.253200pt;}
.y29{bottom:499.479733pt;}
.y7a{bottom:501.879733pt;}
.y109{bottom:513.080861pt;}
.yb{bottom:513.084598pt;}
.y4c{bottom:513.292533pt;}
.y129{bottom:519.479733pt;}
.y4b{bottom:528.412133pt;}
.y28{bottom:528.919733pt;}
.ya2{bottom:532.599733pt;}
.yd2{bottom:534.839733pt;}
.yb6{bottom:534.999600pt;}
.y8f{bottom:534.999733pt;}
.ya{bottom:536.764101pt;}
.y79{bottom:538.679733pt;}
.y4a{bottom:543.531600pt;}
.y108{bottom:543.800277pt;}
.y49{bottom:558.651067pt;}
.ya1{bottom:569.399733pt;}
.yd1{bottom:571.639733pt;}
.yb5{bottom:571.799600pt;}
.y8e{bottom:571.799733pt;}
.y27{bottom:572.919733pt;}
.y48{bottom:573.770667pt;}
.y107{bottom:574.519692pt;}
.y78{bottom:575.479733pt;}
.y127{bottom:577.399600pt;}
.yee{bottom:577.879600pt;}
.yf6{bottom:583.959733pt;}
.y9{bottom:584.283370pt;}
.y47{bottom:588.810000pt;}
.yed{bottom:596.279600pt;}
.y26{bottom:602.359733pt;}
.y46{bottom:603.929467pt;}
.y106{bottom:605.079733pt;}
.ya0{bottom:606.199733pt;}
.ye2{bottom:607.319600pt;}
.yd0{bottom:608.439733pt;}
.yb4{bottom:608.599600pt;}
.y9b{bottom:608.599733pt;}
.yca{bottom:608.759733pt;}
.y126{bottom:610.999733pt;}
.y77{bottom:612.279733pt;}
.y45{bottom:619.048933pt;}
.yf5{bottom:620.759733pt;}
.ye1{bottom:625.719600pt;}
.y11e{bottom:630.679600pt;}
.y8{bottom:631.802639pt;}
.yec{bottom:633.079600pt;}
.y44{bottom:634.168533pt;}
.y105{bottom:635.959733pt;}
.y25{bottom:639.159733pt;}
.y9f{bottom:642.999733pt;}
.ye0{bottom:644.119600pt;}
.yb3{bottom:645.399600pt;}
.y8d{bottom:645.399733pt;}
.yc9{bottom:645.559733pt;}
.y11d{bottom:648.119733pt;}
.y76{bottom:649.079733pt;}
.y43{bottom:649.288000pt;}
.yf4{bottom:657.559733pt;}
.ydf{bottom:662.519600pt;}
.y42{bottom:664.328667pt;}
.y11f{bottom:664.439600pt;}
.y104{bottom:666.519733pt;}
.yeb{bottom:669.879600pt;}
.y11c{bottom:672.599600pt;}
.yf3{bottom:675.959733pt;}
.y7{bottom:679.321908pt;}
.y41{bottom:679.448267pt;}
.yde{bottom:680.919600pt;}
.y9e{bottom:680.919733pt;}
.yb2{bottom:682.199600pt;}
.y8c{bottom:682.199733pt;}
.yc8{bottom:682.359600pt;}
.y24{bottom:683.319600pt;}
.y75{bottom:685.879733pt;}
.y40{bottom:694.567733pt;}
.y120{bottom:697.079733pt;}
.y103{bottom:697.081563pt;}
.y128{bottom:701.879600pt;}
.yea{bottom:706.679600pt;}
.y3f{bottom:709.687200pt;}
.y23{bottom:712.759733pt;}
.ydd{bottom:717.719600pt;}
.yb1{bottom:718.999600pt;}
.y8b{bottom:718.999733pt;}
.y74{bottom:723.799733pt;}
.y3e{bottom:724.806800pt;}
.y6{bottom:726.841178pt;}
.y102{bottom:727.800979pt;}
.y121{bottom:730.679600pt;}
.ydc{bottom:736.119600pt;}
.y3d{bottom:739.846133pt;}
.ye9{bottom:743.479600pt;}
.y22{bottom:749.559733pt;}
.ydb{bottom:754.519600pt;}
.y3c{bottom:754.965600pt;}
.yb0{bottom:755.799600pt;}
.y8a{bottom:755.799733pt;}
.y101{bottom:758.361020pt;}
.y73{bottom:761.879733pt;}
.y122{bottom:764.439600pt;}
.y3b{bottom:770.085067pt;}
.yda{bottom:772.919600pt;}
.y5{bottom:774.041287pt;}
.ye8{bottom:780.279600pt;}
.y11a{bottom:784.000000pt;}
.y3a{bottom:785.204667pt;}
.yf2{bottom:786.359733pt;}
.y100{bottom:789.080435pt;}
.yc2{bottom:792.599600pt;}
.y89{bottom:792.599733pt;}
.ycd{bottom:792.759600pt;}
.ybf{bottom:792.759733pt;}
.y21{bottom:793.719600pt;}
.y123{bottom:798.039600pt;}
.y72{bottom:798.679733pt;}
.y119{bottom:800.000000pt;}
.y39{bottom:800.324133pt;}
.yd9{bottom:809.719733pt;}
.y38{bottom:815.364800pt;}
.ye7{bottom:817.079600pt;}
.yff{bottom:819.799851pt;}
.y4{bottom:821.560556pt;}
.yf1{bottom:823.159733pt;}
.yaf{bottom:829.399600pt;}
.y88{bottom:829.399733pt;}
.ycc{bottom:829.559600pt;}
.y37{bottom:830.484400pt;}
.y124{bottom:830.839733pt;}
.y71{bottom:835.479733pt;}
.y1c{bottom:845.401693pt;}
.y36{bottom:845.603867pt;}
.yd8{bottom:847.799733pt;}
.yfe{bottom:850.359892pt;}
.ye6{bottom:853.879600pt;}
.y11b{bottom:857.079733pt;}
.y20{bottom:859.959733pt;}
.y35{bottom:860.723333pt;}
.y125{bottom:864.439600pt;}
.yfd{bottom:865.719600pt;}
.yae{bottom:866.199600pt;}
.y87{bottom:866.199733pt;}
.y3{bottom:869.079825pt;}
.y1b{bottom:869.081195pt;}
.y70{bottom:872.279733pt;}
.y34{bottom:875.842933pt;}
.yfc{bottom:881.239600pt;}
.ycf{bottom:884.599733pt;}
.ye5{bottom:890.679600pt;}
.y33{bottom:890.883600pt;}
.y1a{bottom:892.920962pt;}
.y1f{bottom:896.759600pt;}
.yf0{bottom:896.759733pt;}
.yad{bottom:902.999600pt;}
.y86{bottom:902.999733pt;}
.y9d{bottom:903.159733pt;}
.y32{bottom:906.003067pt;}
.y6f{bottom:909.079733pt;}
.yfb{bottom:911.800861pt;}
.y19{bottom:916.600464pt;}
.y31{bottom:921.122533pt;}
.ye4{bottom:927.479600pt;}
.yef{bottom:930.519733pt;}
.y1e{bottom:933.559600pt;}
.y30{bottom:936.242133pt;}
.y118{bottom:939.639733pt;}
.yac{bottom:939.799600pt;}
.y85{bottom:939.799733pt;}
.y9a{bottom:939.959600pt;}
.y2{bottom:940.440231pt;}
.yfa{bottom:942.360902pt;}
.y6e{bottom:945.879733pt;}
.y2f{bottom:951.361600pt;}
.yd7{bottom:958.199733pt;}
.ye3{bottom:961.239600pt;}
.y1{bottom:964.119733pt;}
.y2e{bottom:966.400933pt;}
.yf9{bottom:973.080318pt;}
.y99{bottom:976.599600pt;}
.yd6{bottom:976.599733pt;}
.y2d{bottom:981.520533pt;}
.y2c{bottom:996.640000pt;}
.yf8{bottom:1003.799733pt;}
.y1d{bottom:1010.839733pt;}
.y6d{bottom:1013.399600pt;}
.yf7{bottom:1049.879733pt;}
.y2b{bottom:1106.520000pt;}
.h11{height:13.440000pt;}
.h14{height:31.047357pt;}
.h6{height:31.235253pt;}
.h16{height:35.822828pt;}
.h15{height:35.825158pt;}
.h12{height:36.886458pt;}
.hd{height:38.676307pt;}
.he{height:38.702247pt;}
.h10{height:44.437500pt;}
.hb{height:46.593750pt;}
.hf{height:46.617968pt;}
.h7{height:46.625000pt;}
.hc{height:46.625533pt;}
.h2{height:48.424099pt;}
.ha{height:52.422344pt;}
.h3{height:54.511193pt;}
.h8{height:55.625000pt;}
.h5{height:60.653785pt;}
.h4{height:60.654851pt;}
.h13{height:816.000000pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.720000pt;}
.w2{width:13.280000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.666667pt;}
.x4{left:24.000000pt;}
.xb{left:29.440436pt;}
.xa{left:41.440000pt;}
.xc{left:65.439564pt;}
.x1{left:97.280000pt;}
.x2{left:113.440000pt;}
.x17{left:151.040000pt;}
.x14{left:160.960000pt;}
.x13{left:167.520000pt;}
.x18{left:196.320000pt;}
.x8{left:207.840000pt;}
.xf{left:218.400000pt;}
.x15{left:225.760000pt;}
.xd{left:231.520000pt;}
.x5{left:302.240000pt;}
.x16{left:310.240000pt;}
.x9{left:333.920000pt;}
.x6{left:349.440000pt;}
.x10{left:360.160000pt;}
.x11{left:433.120000pt;}
.x7{left:491.040000pt;}
.x12{left:503.680000pt;}
.xe{left:532.800000pt;}
}

