
    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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;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_1dcdb53d10b33b8b76af3605.woff')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_620e9c24ff8c662ee7c69553.woff')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_c131dec6d103bca78b938493.woff')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_07b3f7d712d98dc450cdd79b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f380301881017abc2e53e1f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.117188;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_9bd727844cad5e5593755658.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_07ac945d6971ef12cd0caf5a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_e892698fa198d7ebc571674b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.123047;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_0f518e9bb5a05043f9be5502.woff')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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_e46eda56f1b94a1899382cf4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.111816;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_7c815f849e542eeb46d7fad9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.111816;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_14679d355312c83c6443e2bf.woff')format("woff");}.ffd{font-family:ffd;line-height:1.107422;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_be85361dfbcfe3f3a075e7f3.woff')format("woff");}.ffe{font-family:ffe;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.fff{font-family:fff;line-height:1.123047;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_d563d353c1de10a6ee4bffb2.woff')format("woff");}.ff10{font-family:ff10;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.123047;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_517542c233a698f9fb3d539b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff13{font-family:ff13;line-height:1.123047;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_208ff642a69353fcaa757520.woff')format("woff");}.ff14{font-family:ff14;line-height:1.117188;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_28be46aa48628d61c0cf610d.woff')format("woff");}.ff15{font-family:ff15;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.123047;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_67e6444fa3252267bedac057.woff')format("woff");}.ff17{font-family:ff17;line-height:1.117188;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_1a35aacdfd327edd4e59807e.woff')format("woff");}.ff18{font-family:ff18;line-height:1.117188;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_95825fdbaf3167177201536c.woff')format("woff");}.ff19{font-family:ff19;line-height:1.111816;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_6b8bf1a5c261aaa0af363322.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.111816;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_af2570ee01b78cf629659f78.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.107422;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_a5d75fc2b99b326eae6d9c5e.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.123047;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_558f8f0deccd11f641ef7bcc.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.123047;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_7d13a169f3a034e217beca48.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.111816;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_fce2ed0d721bc63900711ebf.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.111816;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_f8472e2639eab235d9b63e0b.woff')format("woff");}.ff20{font-family:ff20;line-height:1.107422;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_b395fe9ff027726487dfaa4d.woff')format("woff");}.ff21{font-family:ff21;line-height:1.107422;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_02c0f5636110594958daabf0.woff')format("woff");}.ff22{font-family:ff22;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff23{font-family:ff23;line-height:1.123047;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_0d78af0ad3c0f33d1275c130.woff')format("woff");}.ff24{font-family:ff24;line-height:1.123047;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_c7a9e61c003381409bf60a5a.woff')format("woff");}.ff25{font-family:ff25;line-height:1.123047;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_7c4b027d773eafdc90f09b5b.woff')format("woff");}.ff26{font-family:ff26;line-height:1.117188;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_3c2f28a538be356cea937306.woff')format("woff");}.ff27{font-family:ff27;line-height:1.111816;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_3999b2d7aa4c2103ca38c8ed.woff')format("woff");}.ff28{font-family:ff28;line-height:1.111816;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_3907647d4bb71ad018baaf92.woff')format("woff");}.ff29{font-family:ff29;line-height:1.107422;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_9fa536e0d8767efb30209b1c.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.123047;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_484c76d8628de5537c80894c.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.123047;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_bd84a50226bc5c828239585f.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.123047;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_bcfa4076479103ae4af0fb44.woff')format("woff");}.ff30{font-family:ff30;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff31{font-family:ff31;line-height:1.123047;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_83e9d549fa8218bc1e38499e.woff')format("woff");}.ff32{font-family:ff32;line-height:1.117188;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_b2a24bdcfbe7130fdcbb58af.woff')format("woff");}.ff33{font-family:ff33;line-height:1.123047;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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff34{font-family:ff34;line-height:1.123047;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:ff35;src:url('chunks/assets/font_7b733ce3cd684b9e5a97d0a7.woff')format("woff");}.ff35{font-family:ff35;line-height:1.117188;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:ff36;src:url('chunks/assets/font_952a7b5898185212fa5af601.woff')format("woff");}.ff36{font-family:ff36;line-height:1.123047;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:ff37;src:url('chunks/assets/font_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff37{font-family:ff37;line-height:1.123047;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:ff38;src:url('chunks/assets/font_9a2e9778f0d4d5455179a229.woff')format("woff");}.ff38{font-family:ff38;line-height:1.123047;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:ff39;src:url('chunks/assets/font_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff39{font-family:ff39;line-height:1.123047;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:ff3a;src:url('chunks/assets/font_be0b906f09dc3c4ae55e46f7.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.123047;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:ff3b;src:url('chunks/assets/font_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff3b{font-family:ff3b;line-height:1.123047;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.175040px;}
.ls13{letter-spacing:-1.168128px;}
.ls15{letter-spacing:-1.105920px;}
.ls14{letter-spacing:-1.036800px;}
.ls10{letter-spacing:-0.843696px;}
.ls1d{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.624960px;}
.lsf{letter-spacing:-0.570276px;}
.lsd{letter-spacing:-0.546840px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000003px;}
.ls0{letter-spacing:0.048960px;}
.ls1f{letter-spacing:0.124200px;}
.ls19{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.219960px;}
.ls1c{letter-spacing:0.224400px;}
.ls11{letter-spacing:0.239400px;}
.ls16{letter-spacing:0.284400px;}
.lsc{letter-spacing:0.287280px;}
.ls1{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.342600px;}
.ls17{letter-spacing:0.351600px;}
.lsb{letter-spacing:0.359424px;}
.lsa{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.373320px;}
.ls9{letter-spacing:0.413280px;}
.ls2{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.513360px;}
.ls6{letter-spacing:0.540000px;}
.ls1e{letter-spacing:197.850000px;}
.ls20{letter-spacing:846.840000px;}
.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;}
}
.ws5{word-spacing:-18.959724px;}
.ws4{word-spacing:-18.905040px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.639424px;}
.wsa{word-spacing:-17.280003px;}
.ws3{word-spacing:-17.280000px;}
.wsb{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.416000px;}
.wsd{word-spacing:-15.154200px;}
.wsc{word-spacing:-15.030000px;}
.ws9{word-spacing:-12.968640px;}
.ws6{word-spacing:-12.209400px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-4.844880px;}
._a{margin-left:-3.710040px;}
._7{margin-left:-2.690520px;}
._4{margin-left:-1.171800px;}
._0{width:1.142280px;}
._1{width:3.129240px;}
._2{width:4.624080px;}
._5{width:5.944320px;}
._9{width:7.843320px;}
._8{width:8.847360px;}
._b{width:10.717200px;}
._6{width:12.023280px;}
._c{width:13.372920px;}
._f{width:14.966280px;}
._e{width:16.068600px;}
._10{width:32.279040px;}
._11{width:82.519440px;}
._3{width:846.717960px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,114,196);}
.fs7{font-size:36.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2{bottom:24.929908px;}
.ye9{bottom:89.549908px;}
.y25{bottom:90.089908px;}
.ye5{bottom:91.259908px;}
.yec{bottom:92.249908px;}
.y65{bottom:92.429908px;}
.y86{bottom:103.409908px;}
.y24{bottom:105.569908px;}
.y64{bottom:108.809908px;}
.y106{bottom:110.069908px;}
.ye8{bottom:112.409908px;}
.ybc{bottom:112.589908px;}
.ye4{bottom:114.029908px;}
.yeb{bottom:115.019908px;}
.y23{bottom:121.049908px;}
.y63{bottom:125.189908px;}
.ybb{bottom:125.909908px;}
.y85{bottom:126.179908px;}
.y42{bottom:127.439908px;}
.y105{bottom:128.069908px;}
.ycd{bottom:128.969908px;}
.y9a{bottom:131.039908px;}
.ye7{bottom:135.179908px;}
.y22{bottom:136.529908px;}
.ye3{bottom:136.889908px;}
.y62{bottom:141.569908px;}
.ycc{bottom:142.289908px;}
.y61{bottom:145.349908px;}
.y84{bottom:149.039908px;}
.y41{bottom:150.329908px;}
.y21{bottom:152.039908px;}
.yea{bottom:153.119908px;}
.y99{bottom:153.839908px;}
.y104{bottom:155.099908px;}
.ye6{bottom:158.069908px;}
.y60{bottom:158.609908px;}
.ye2{bottom:159.689908px;}
.yde{bottom:162.389908px;}
.y20{bottom:167.519908px;}
.y83{bottom:171.839908px;}
.y40{bottom:173.099908px;}
.y98{bottom:176.699908px;}
.ydd{bottom:178.769908px;}
.ycb{bottom:180.839908px;}
.ye1{bottom:182.459908px;}
.ydc{bottom:182.549908px;}
.y1f{bottom:182.999908px;}
.yba{bottom:183.449908px;}
.y82{bottom:194.699908px;}
.y3f{bottom:195.869908px;}
.y1e{bottom:199.289908px;}
.y103{bottom:200.099908px;}
.yca{bottom:203.699908px;}
.yb9{bottom:206.309908px;}
.y97{bottom:208.469908px;}
.y1d{bottom:215.759908px;}
.y81{bottom:217.469908px;}
.y3e{bottom:218.729908px;}
.ye0{bottom:220.619908px;}
.yc9{bottom:226.469908px;}
.y102{bottom:227.099908px;}
.yb8{bottom:229.079908px;}
.y96{bottom:231.329908px;}
.y1c{bottom:232.139908px;}
.y5f{bottom:233.309908px;}
.y80{bottom:240.329908px;}
.y3d{bottom:241.499908px;}
.ydf{bottom:244.379908px;}
.y101{bottom:245.099908px;}
.ya8{bottom:249.329908px;}
.y95{bottom:254.099908px;}
.y5e{bottom:256.079908px;}
.yef{bottom:258.329908px;}
.y1b{bottom:260.669908px;}
.yb7{bottom:260.939908px;}
.y7f{bottom:263.099908px;}
.ya7{bottom:272.099908px;}
.y3c{bottom:273.359908px;}
.y94{bottom:276.959908px;}
.yc8{bottom:281.099908px;}
.yb6{bottom:283.709908px;}
.y7e{bottom:285.959908px;}
.y5d{bottom:287.939908px;}
.y100{bottom:290.099908px;}
.y1a{bottom:293.429908px;}
.ya6{bottom:294.959908px;}
.y3b{bottom:296.129908px;}
.ydb{bottom:299.729908px;}
.yc7{bottom:303.959908px;}
.yb5{bottom:306.569908px;}
.y7d{bottom:308.729908px;}
.y5c{bottom:310.709908px;}
.yff{bottom:317.099908px;}
.ya5{bottom:317.729908px;}
.y3a{bottom:318.989908px;}
.yda{bottom:322.499908px;}
.y19{bottom:325.109908px;}
.yc6{bottom:326.729908px;}
.yb4{bottom:329.339908px;}
.y93{bottom:331.499908px;}
.y5b{bottom:333.569908px;}
.y7c{bottom:340.499908px;}
.y39{bottom:341.759908px;}
.yfe{bottom:344.099908px;}
.yd9{bottom:345.359908px;}
.y18{bottom:347.879908px;}
.yc5{bottom:349.499908px;}
.yb3{bottom:352.199908px;}
.y92{bottom:354.359908px;}
.y5a{bottom:356.339908px;}
.y7b{bottom:363.359908px;}
.y38{bottom:364.619908px;}
.y17{bottom:367.679908px;}
.yfd{bottom:371.099908px;}
.yc4{bottom:372.359908px;}
.yb2{bottom:374.969908px;}
.y91{bottom:377.129908px;}
.y59{bottom:379.199908px;}
.y7a{bottom:386.129908px;}
.y37{bottom:387.389908px;}
.y16{bottom:387.479908px;}
.yfc{bottom:389.099908px;}
.yc3{bottom:395.129908px;}
.y90{bottom:399.989908px;}
.yb0{bottom:406.829908px;}
.y15{bottom:407.279908px;}
.y79{bottom:408.989908px;}
.y36{bottom:410.249908px;}
.y58{bottom:410.969908px;}
.yb1{bottom:413.579908px;}
.yfb{bottom:416.099908px;}
.yce{bottom:417.989908px;}
.yd8{bottom:422.759908px;}
.y14{bottom:426.989908px;}
.yaf{bottom:429.599908px;}
.y78{bottom:431.759908px;}
.y57{bottom:433.829908px;}
.yfa{bottom:434.099908px;}
.ya4{bottom:440.759908px;}
.y35{bottom:442.019908px;}
.yd7{bottom:445.619908px;}
.y13{bottom:446.789908px;}
.yc2{bottom:449.759908px;}
.yae{bottom:452.459908px;}
.y77{bottom:454.619908px;}
.y56{bottom:456.599908px;}
.yf9{bottom:461.099908px;}
.ya3{bottom:463.619908px;}
.y34{bottom:464.879908px;}
.y12{bottom:466.589908px;}
.yc1{bottom:472.619908px;}
.yad{bottom:475.229908px;}
.y8f{bottom:477.389908px;}
.yf8{bottom:479.099908px;}
.y55{bottom:479.459908px;}
.y11{bottom:486.389908px;}
.y33{bottom:487.649908px;}
.yc0{bottom:495.419908px;}
.yac{bottom:498.029908px;}
.y117{bottom:498.299908px;}
.y8e{bottom:500.279908px;}
.y54{bottom:502.259908px;}
.yf7{bottom:506.129908px;}
.y10{bottom:506.219908px;}
.y76{bottom:509.279908px;}
.y32{bottom:510.449908px;}
.ybf{bottom:518.279908px;}
.yab{bottom:520.889908px;}
.yd6{bottom:523.049908px;}
.y116{bottom:524.579908px;}
.y53{bottom:525.029908px;}
.y75{bottom:532.049908px;}
.yf6{bottom:533.129908px;}
.y31{bottom:533.309908px;}
.yf{bottom:536.009908px;}
.ybe{bottom:541.049908px;}
.y115{bottom:542.579908px;}
.yaa{bottom:543.659908px;}
.yd5{bottom:545.909908px;}
.y52{bottom:547.889908px;}
.y74{bottom:554.909908px;}
.y30{bottom:556.079908px;}
.yf5{bottom:560.129908px;}
.ya2{bottom:563.909908px;}
.ye{bottom:567.779908px;}
.yd4{bottom:568.679908px;}
.y114{bottom:569.579908px;}
.y51{bottom:570.659908px;}
.y73{bottom:577.679908px;}
.y2f{bottom:578.939908px;}
.ya9{bottom:581.729908px;}
.ya1{bottom:586.679908px;}
.yf4{bottom:587.129908px;}
.yd2{bottom:591.449908px;}
.y50{bottom:593.519908px;}
.y113{bottom:596.579908px;}
.yd3{bottom:598.199908px;}
.yd{bottom:599.639908px;}
.y72{bottom:600.449908px;}
.y2e{bottom:601.709908px;}
.ya0{bottom:609.449908px;}
.yf3{bottom:614.129908px;}
.yd1{bottom:614.309908px;}
.y112{bottom:614.579908px;}
.y4f{bottom:616.289908px;}
.y71{bottom:623.309908px;}
.yc{bottom:631.409908px;}
.yf2{bottom:632.129908px;}
.y9f{bottom:632.309908px;}
.ybd{bottom:639.059908px;}
.y2d{bottom:639.779908px;}
.y111{bottom:641.579908px;}
.y70{bottom:646.079908px;}
.y4e{bottom:648.149908px;}
.y8d{bottom:655.079908px;}
.yf1{bottom:659.129908px;}
.yb{bottom:663.179908px;}
.yee{bottom:664.079908px;}
.y110{bottom:668.579908px;}
.y6f{bottom:668.939908px;}
.y4d{bottom:670.919908px;}
.y8c{bottom:677.939908px;}
.y2c{bottom:686.849908px;}
.yed{bottom:686.939908px;}
.y6e{bottom:691.709908px;}
.y4c{bottom:693.779908px;}
.ya{bottom:695.039908px;}
.y10f{bottom:695.579908px;}
.yf0{bottom:695.849908px;}
.y8b{bottom:700.709908px;}
.y2b{bottom:704.129908px;}
.y9e{bottom:709.709908px;}
.y6d{bottom:714.569908px;}
.y4b{bottom:716.549908px;}
.y10e{bottom:722.579908px;}
.y8a{bottom:723.569908px;}
.y2a{bottom:724.379908px;}
.y9{bottom:725.909908px;}
.y9d{bottom:732.569908px;}
.yd0{bottom:737.339908px;}
.y4a{bottom:739.409908px;}
.y8{bottom:745.709908px;}
.y6c{bottom:746.339908px;}
.y10d{bottom:749.579908px;}
.y9c{bottom:755.339908px;}
.y49{bottom:762.179908px;}
.y7{bottom:765.509908px;}
.y6b{bottom:769.199908px;}
.y10c{bottom:776.579908px;}
.y9b{bottom:778.199908px;}
.y29{bottom:782.789908px;}
.y48{bottom:784.949908px;}
.y6a{bottom:791.969908px;}
.y10b{bottom:794.579908px;}
.y6{bottom:795.569908px;}
.ycf{bottom:798.719908px;}
.y89{bottom:800.969908px;}
.y47{bottom:807.809908px;}
.y28{bottom:808.439908px;}
.y69{bottom:814.829908px;}
.y5{bottom:815.459908px;}
.y10a{bottom:821.579908px;}
.y88{bottom:823.829908px;}
.y45{bottom:830.579908px;}
.y27{bottom:834.299908px;}
.y4{bottom:835.289908px;}
.y46{bottom:837.359908px;}
.y68{bottom:837.629908px;}
.y109{bottom:839.609908px;}
.y87{bottom:846.629908px;}
.y44{bottom:853.469908px;}
.y3{bottom:862.289908px;}
.y108{bottom:866.609908px;}
.y67{bottom:869.489908px;}
.y43{bottom:891.539908px;}
.y66{bottom:892.259908px;}
.y107{bottom:893.609908px;}
.y26{bottom:894.329908px;}
.he{height:32.449219px;}
.ha{height:40.070215px;}
.hd{height:40.341797px;}
.h10{height:40.561523px;}
.h6{height:48.673828px;}
.hf{height:51.269766px;}
.h8{height:53.896641px;}
.h4{height:54.190195px;}
.h3{height:61.965000px;}
.hc{height:62.302500px;}
.hb{height:64.546875px;}
.h5{height:64.898438px;}
.h9{height:70.033359px;}
.h7{height:993.419850px;}
.h2{height:993.419908px;}
.h0{height:993.420000px;}
.h1{height:993.750000px;}
.w3{width:663.389980px;}
.w2{width:663.389990px;}
.w0{width:663.390000px;}
.w1{width:663.750000px;}
.x0{left:0.000000px;}
.x3{left:85.049990px;}
.x10{left:93.329990px;}
.xd{left:108.269980px;}
.xe{left:119.609990px;}
.x19{left:138.269990px;}
.x17{left:155.729980px;}
.x6{left:161.129990px;}
.x18{left:167.069990px;}
.x8{left:169.139990px;}
.x7{left:196.499990px;}
.x2{left:217.829990px;}
.x15{left:260.489980px;}
.x16{left:271.829990px;}
.xf{left:301.079990px;}
.x4{left:302.789990px;}
.xc{left:303.869990px;}
.x11{left:318.449980px;}
.x12{left:329.789990px;}
.x1{left:331.679990px;}
.x13{left:367.139980px;}
.x14{left:378.479990px;}
.x9{left:430.529990px;}
.xa{left:440.069990px;}
.x5{left:505.859990px;}
.xb{left:578.399990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.044480pt;}
.ls13{letter-spacing:-1.038336pt;}
.ls15{letter-spacing:-0.983040pt;}
.ls14{letter-spacing:-0.921600pt;}
.ls10{letter-spacing:-0.749952pt;}
.ls1d{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.555520pt;}
.lsf{letter-spacing:-0.506912pt;}
.lsd{letter-spacing:-0.486080pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000003pt;}
.ls0{letter-spacing:0.043520pt;}
.ls1f{letter-spacing:0.110400pt;}
.ls19{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.195520pt;}
.ls1c{letter-spacing:0.199467pt;}
.ls11{letter-spacing:0.212800pt;}
.ls16{letter-spacing:0.252800pt;}
.lsc{letter-spacing:0.255360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.304533pt;}
.ls17{letter-spacing:0.312533pt;}
.lsb{letter-spacing:0.319488pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.331840pt;}
.ls9{letter-spacing:0.367360pt;}
.ls2{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.456320pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:175.866667pt;}
.ls20{letter-spacing:752.746667pt;}
.ws5{word-spacing:-16.853088pt;}
.ws4{word-spacing:-16.804480pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.679488pt;}
.wsa{word-spacing:-15.360003pt;}
.ws3{word-spacing:-15.360000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.592000pt;}
.wsd{word-spacing:-13.470400pt;}
.wsc{word-spacing:-13.360000pt;}
.ws9{word-spacing:-11.527680pt;}
.ws6{word-spacing:-10.852800pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-4.306560pt;}
._a{margin-left:-3.297813pt;}
._7{margin-left:-2.391573pt;}
._4{margin-left:-1.041600pt;}
._0{width:1.015360pt;}
._1{width:2.781547pt;}
._2{width:4.110293pt;}
._5{width:5.283840pt;}
._9{width:6.971840pt;}
._8{width:7.864320pt;}
._b{width:9.526400pt;}
._6{width:10.687360pt;}
._c{width:11.887040pt;}
._f{width:13.303360pt;}
._e{width:14.283200pt;}
._10{width:28.692480pt;}
._11{width:73.350613pt;}
._3{width:752.638187pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2{bottom:22.159919pt;}
.ye9{bottom:79.599919pt;}
.y25{bottom:80.079919pt;}
.ye5{bottom:81.119919pt;}
.yec{bottom:81.999919pt;}
.y65{bottom:82.159919pt;}
.y86{bottom:91.919919pt;}
.y24{bottom:93.839919pt;}
.y64{bottom:96.719919pt;}
.y106{bottom:97.839919pt;}
.ye8{bottom:99.919919pt;}
.ybc{bottom:100.079919pt;}
.ye4{bottom:101.359919pt;}
.yeb{bottom:102.239919pt;}
.y23{bottom:107.599919pt;}
.y63{bottom:111.279919pt;}
.ybb{bottom:111.919919pt;}
.y85{bottom:112.159919pt;}
.y42{bottom:113.279919pt;}
.y105{bottom:113.839919pt;}
.ycd{bottom:114.639919pt;}
.y9a{bottom:116.479919pt;}
.ye7{bottom:120.159919pt;}
.y22{bottom:121.359919pt;}
.ye3{bottom:121.679919pt;}
.y62{bottom:125.839919pt;}
.ycc{bottom:126.479919pt;}
.y61{bottom:129.199919pt;}
.y84{bottom:132.479919pt;}
.y41{bottom:133.626585pt;}
.y21{bottom:135.146585pt;}
.yea{bottom:136.106585pt;}
.y99{bottom:136.746585pt;}
.y104{bottom:137.866585pt;}
.ye6{bottom:140.506585pt;}
.y60{bottom:140.986585pt;}
.ye2{bottom:141.946585pt;}
.yde{bottom:144.346585pt;}
.y20{bottom:148.906585pt;}
.y83{bottom:152.746585pt;}
.y40{bottom:153.866585pt;}
.y98{bottom:157.066585pt;}
.ydd{bottom:158.906585pt;}
.ycb{bottom:160.746585pt;}
.ye1{bottom:162.186585pt;}
.ydc{bottom:162.266585pt;}
.y1f{bottom:162.666585pt;}
.yba{bottom:163.066585pt;}
.y82{bottom:173.066585pt;}
.y3f{bottom:174.106585pt;}
.y1e{bottom:177.146585pt;}
.y103{bottom:177.866585pt;}
.yca{bottom:181.066585pt;}
.yb9{bottom:183.386585pt;}
.y97{bottom:185.306585pt;}
.y1d{bottom:191.786585pt;}
.y81{bottom:193.306585pt;}
.y3e{bottom:194.426585pt;}
.ye0{bottom:196.106585pt;}
.yc9{bottom:201.306585pt;}
.y102{bottom:201.866585pt;}
.yb8{bottom:203.626585pt;}
.y96{bottom:205.626585pt;}
.y1c{bottom:206.346585pt;}
.y5f{bottom:207.386585pt;}
.y80{bottom:213.626585pt;}
.y3d{bottom:214.666585pt;}
.ydf{bottom:217.226585pt;}
.y101{bottom:217.866585pt;}
.ya8{bottom:221.626585pt;}
.y95{bottom:225.866585pt;}
.y5e{bottom:227.626585pt;}
.yef{bottom:229.626585pt;}
.y1b{bottom:231.706585pt;}
.yb7{bottom:231.946585pt;}
.y7f{bottom:233.866585pt;}
.ya7{bottom:241.866585pt;}
.y3c{bottom:242.986585pt;}
.y94{bottom:246.186585pt;}
.yc8{bottom:249.866585pt;}
.yb6{bottom:252.186585pt;}
.y7e{bottom:254.186585pt;}
.y5d{bottom:255.946585pt;}
.y100{bottom:257.866585pt;}
.y1a{bottom:260.826585pt;}
.ya6{bottom:262.186585pt;}
.y3b{bottom:263.226585pt;}
.ydb{bottom:266.426585pt;}
.yc7{bottom:270.186585pt;}
.yb5{bottom:272.506585pt;}
.y7d{bottom:274.426585pt;}
.y5c{bottom:276.186585pt;}
.yff{bottom:281.866585pt;}
.ya5{bottom:282.426585pt;}
.y3a{bottom:283.546585pt;}
.yda{bottom:286.666585pt;}
.y19{bottom:288.986585pt;}
.yc6{bottom:290.426585pt;}
.yb4{bottom:292.746585pt;}
.y93{bottom:294.666585pt;}
.y5b{bottom:296.506585pt;}
.y7c{bottom:302.666585pt;}
.y39{bottom:303.786585pt;}
.yfe{bottom:305.866585pt;}
.yd9{bottom:306.986585pt;}
.y18{bottom:309.226585pt;}
.yc5{bottom:310.666585pt;}
.yb3{bottom:313.066585pt;}
.y92{bottom:314.986585pt;}
.y5a{bottom:316.746585pt;}
.y7b{bottom:322.986585pt;}
.y38{bottom:324.106585pt;}
.y17{bottom:326.826585pt;}
.yfd{bottom:329.866585pt;}
.yc4{bottom:330.986585pt;}
.yb2{bottom:333.306585pt;}
.y91{bottom:335.226585pt;}
.y59{bottom:337.066585pt;}
.y7a{bottom:343.226585pt;}
.y37{bottom:344.346585pt;}
.y16{bottom:344.426585pt;}
.yfc{bottom:345.866585pt;}
.yc3{bottom:351.226585pt;}
.y90{bottom:355.546585pt;}
.yb0{bottom:361.626585pt;}
.y15{bottom:362.026585pt;}
.y79{bottom:363.546585pt;}
.y36{bottom:364.666585pt;}
.y58{bottom:365.306585pt;}
.yb1{bottom:367.626585pt;}
.yfb{bottom:369.866585pt;}
.yce{bottom:371.546585pt;}
.yd8{bottom:375.786585pt;}
.y14{bottom:379.546585pt;}
.yaf{bottom:381.866585pt;}
.y78{bottom:383.786585pt;}
.y57{bottom:385.626585pt;}
.yfa{bottom:385.866585pt;}
.ya4{bottom:391.786585pt;}
.y35{bottom:392.906585pt;}
.yd7{bottom:396.106585pt;}
.y13{bottom:397.146585pt;}
.yc2{bottom:399.786585pt;}
.yae{bottom:402.186585pt;}
.y77{bottom:404.106585pt;}
.y56{bottom:405.866585pt;}
.yf9{bottom:409.866585pt;}
.ya3{bottom:412.106585pt;}
.y34{bottom:413.226585pt;}
.y12{bottom:414.746585pt;}
.yc1{bottom:420.106585pt;}
.yad{bottom:422.426585pt;}
.y8f{bottom:424.346585pt;}
.yf8{bottom:425.866585pt;}
.y55{bottom:426.186585pt;}
.y11{bottom:432.346585pt;}
.y33{bottom:433.466585pt;}
.yc0{bottom:440.373252pt;}
.yac{bottom:442.693252pt;}
.y117{bottom:442.933252pt;}
.y8e{bottom:444.693252pt;}
.y54{bottom:446.453252pt;}
.yf7{bottom:449.893252pt;}
.y10{bottom:449.973252pt;}
.y76{bottom:452.693252pt;}
.y32{bottom:453.733252pt;}
.ybf{bottom:460.693252pt;}
.yab{bottom:463.013252pt;}
.yd6{bottom:464.933252pt;}
.y116{bottom:466.293252pt;}
.y53{bottom:466.693252pt;}
.y75{bottom:472.933252pt;}
.yf6{bottom:473.893252pt;}
.y31{bottom:474.053252pt;}
.yf{bottom:476.453252pt;}
.ybe{bottom:480.933252pt;}
.y115{bottom:482.293252pt;}
.yaa{bottom:483.253252pt;}
.yd5{bottom:485.253252pt;}
.y52{bottom:487.013252pt;}
.y74{bottom:493.253252pt;}
.y30{bottom:494.293252pt;}
.yf5{bottom:497.893252pt;}
.ya2{bottom:501.253252pt;}
.ye{bottom:504.693252pt;}
.yd4{bottom:505.493252pt;}
.y114{bottom:506.293252pt;}
.y51{bottom:507.253252pt;}
.y73{bottom:513.493252pt;}
.y2f{bottom:514.613252pt;}
.ya9{bottom:517.093252pt;}
.ya1{bottom:521.493252pt;}
.yf4{bottom:521.893252pt;}
.yd2{bottom:525.733252pt;}
.y50{bottom:527.573252pt;}
.y113{bottom:530.293252pt;}
.yd3{bottom:531.733252pt;}
.yd{bottom:533.013252pt;}
.y72{bottom:533.733252pt;}
.y2e{bottom:534.853252pt;}
.ya0{bottom:541.733252pt;}
.yf3{bottom:545.893252pt;}
.yd1{bottom:546.053252pt;}
.y112{bottom:546.293252pt;}
.y4f{bottom:547.813252pt;}
.y71{bottom:554.053252pt;}
.yc{bottom:561.253252pt;}
.yf2{bottom:561.893252pt;}
.y9f{bottom:562.053252pt;}
.ybd{bottom:568.053252pt;}
.y2d{bottom:568.693252pt;}
.y111{bottom:570.293252pt;}
.y70{bottom:574.293252pt;}
.y4e{bottom:576.133252pt;}
.y8d{bottom:582.293252pt;}
.yf1{bottom:585.893252pt;}
.yb{bottom:589.493252pt;}
.yee{bottom:590.293252pt;}
.y110{bottom:594.293252pt;}
.y6f{bottom:594.613252pt;}
.y4d{bottom:596.373252pt;}
.y8c{bottom:602.613252pt;}
.y2c{bottom:610.533252pt;}
.yed{bottom:610.613252pt;}
.y6e{bottom:614.853252pt;}
.y4c{bottom:616.693252pt;}
.ya{bottom:617.813252pt;}
.y10f{bottom:618.293252pt;}
.yf0{bottom:618.533252pt;}
.y8b{bottom:622.853252pt;}
.y2b{bottom:625.893252pt;}
.y9e{bottom:630.853252pt;}
.y6d{bottom:635.173252pt;}
.y4b{bottom:636.933252pt;}
.y10e{bottom:642.293252pt;}
.y8a{bottom:643.173252pt;}
.y2a{bottom:643.893252pt;}
.y9{bottom:645.253252pt;}
.y9d{bottom:651.173252pt;}
.yd0{bottom:655.413252pt;}
.y4a{bottom:657.253252pt;}
.y8{bottom:662.853252pt;}
.y6c{bottom:663.413252pt;}
.y10d{bottom:666.293252pt;}
.y9c{bottom:671.413252pt;}
.y49{bottom:677.493252pt;}
.y7{bottom:680.453252pt;}
.y6b{bottom:683.733252pt;}
.y10c{bottom:690.293252pt;}
.y9b{bottom:691.733252pt;}
.y29{bottom:695.813252pt;}
.y48{bottom:697.733252pt;}
.y6a{bottom:703.973252pt;}
.y10b{bottom:706.293252pt;}
.y6{bottom:707.173252pt;}
.ycf{bottom:709.973252pt;}
.y89{bottom:711.973252pt;}
.y47{bottom:718.053252pt;}
.y28{bottom:718.613252pt;}
.y69{bottom:724.293252pt;}
.y5{bottom:724.853252pt;}
.y10a{bottom:730.293252pt;}
.y88{bottom:732.293252pt;}
.y45{bottom:738.293252pt;}
.y27{bottom:741.599919pt;}
.y4{bottom:742.479919pt;}
.y46{bottom:744.319919pt;}
.y68{bottom:744.559919pt;}
.y109{bottom:746.319919pt;}
.y87{bottom:752.559919pt;}
.y44{bottom:758.639919pt;}
.y3{bottom:766.479919pt;}
.y108{bottom:770.319919pt;}
.y67{bottom:772.879919pt;}
.y43{bottom:792.479919pt;}
.y66{bottom:793.119919pt;}
.y107{bottom:794.319919pt;}
.y26{bottom:794.959919pt;}
.he{height:28.843750pt;}
.ha{height:35.617969pt;}
.hd{height:35.859375pt;}
.h10{height:36.054688pt;}
.h6{height:43.265625pt;}
.hf{height:45.573125pt;}
.h8{height:47.908125pt;}
.h4{height:48.169062pt;}
.h3{height:55.080000pt;}
.hc{height:55.380000pt;}
.hb{height:57.375000pt;}
.h5{height:57.687500pt;}
.h9{height:62.251875pt;}
.h7{height:883.039867pt;}
.h2{height:883.039919pt;}
.h0{height:883.040000pt;}
.h1{height:883.333333pt;}
.w3{width:589.679982pt;}
.w2{width:589.679991pt;}
.w0{width:589.680000pt;}
.w1{width:590.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.599991pt;}
.x10{left:82.959991pt;}
.xd{left:96.239982pt;}
.xe{left:106.319991pt;}
.x19{left:122.906658pt;}
.x17{left:138.426649pt;}
.x6{left:143.226658pt;}
.x18{left:148.506658pt;}
.x8{left:150.346658pt;}
.x7{left:174.666658pt;}
.x2{left:193.626658pt;}
.x15{left:231.546649pt;}
.x16{left:241.626658pt;}
.xf{left:267.626658pt;}
.x4{left:269.146658pt;}
.xc{left:270.106658pt;}
.x11{left:283.066649pt;}
.x12{left:293.146658pt;}
.x1{left:294.826658pt;}
.x13{left:326.346649pt;}
.x14{left:336.426658pt;}
.x9{left:382.693325pt;}
.xa{left:391.173325pt;}
.x5{left:449.653325pt;}
.xb{left:514.133325pt;}
}

