
    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_5c4fc917d37c79a71c3de319.woff')format("woff");}.ff1{font-family:ff1;line-height:1.066000;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_239d8ad1124f00bad1e83eec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_f2979e8c67d4637269c702da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_aafa4f1eb212d29ce5350cd0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.079000;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_c060651e17ebddcec0918ad5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.066000;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_f5653398aa5b50e132062588.woff')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_aec994d4b7b9e36389417436.woff')format("woff");}.ff7{font-family:ff7;line-height:1.079000;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_239d8ad1124f00bad1e83eec.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_ffc533744cb851569f545ce3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.087000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.079000;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_0ade1d9ef94fee414fc91197.woff')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_4bc244953600d6d342ef0437.woff')format("woff");}.ffc{font-family:ffc;line-height:0.967000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.079000;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_5f89280095b880014a222802.woff')format("woff");}.ffe{font-family:ffe;line-height:0.996000;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_fc9798a6af2ef3919ab1ff2f.woff')format("woff");}.fff{font-family:fff;line-height:1.076000;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_78b31411869f0aa4626eb8e9.woff')format("woff");}.ff10{font-family:ff10;line-height:1.079000;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_185155a5af94bee63325ff41.woff')format("woff");}.ff11{font-family:ff11;line-height:1.079000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff12{font-family:ff12;line-height:1.079000;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_f089ced832796683871a1c22.woff')format("woff");}.ff13{font-family:ff13;line-height:1.079000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff14{font-family:ff14;line-height:1.079000;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_6f45c7aeadc8708fd997cef4.woff')format("woff");}.ff15{font-family:ff15;line-height:1.079000;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_48e471858b92f210012cfa1a.woff')format("woff");}.ff16{font-family:ff16;line-height:1.079000;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_106b5ed7124f15895fcad212.woff')format("woff");}.ff17{font-family:ff17;line-height:0.995000;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_613226a0e58056e98aca49d6.woff')format("woff");}.ff18{font-family:ff18;line-height:1.083000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff19{font-family:ff19;line-height:1.079000;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_7d2bc603b84c042cd1333962.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.079000;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_6da947ae8e0d0b6fac4e174c.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.079000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.079000;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_9541f08f6c8391fc230a7cbb.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.079000;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_beda703e74a9378d1d75b4b9.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.968000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.079000;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_9cb362447a3c7bc169ee3681.woff')format("woff");}.ff20{font-family:ff20;line-height:1.079000;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_254b08f9dc41758fd462c68e.woff')format("woff");}.ff21{font-family:ff21;line-height:1.079000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff22{font-family:ff22;line-height:1.079000;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_914144e244133396776d9582.woff')format("woff");}.ff23{font-family:ff23;line-height:1.079000;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_ce94a16bb14f17239fcee71e.woff')format("woff");}.ff24{font-family:ff24;line-height:1.079000;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_081e99b7bd89a64369a539c7.woff')format("woff");}.ff25{font-family:ff25;line-height:1.079000;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:7.560000px;}
.v2{vertical-align:17.982000px;}
.ls21{letter-spacing:-2.430000px;}
.lsb{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.314130px;}
.lsf{letter-spacing:0.314730px;}
.lse{letter-spacing:0.471330px;}
.ls13{letter-spacing:0.471930px;}
.ls10{letter-spacing:0.539400px;}
.ls3{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls1d{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.810000px;}
.ls17{letter-spacing:0.815400px;}
.ls1b{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.350000px;}
.lsa{letter-spacing:1.620000px;}
.ls20{letter-spacing:4.368000px;}
.ls1f{letter-spacing:4.800000px;}
.ls1{letter-spacing:5.400000px;}
.ls1e{letter-spacing:6.720000px;}
.ls1c{letter-spacing:7.020000px;}
.ls18{letter-spacing:7.560000px;}
.ls2{letter-spacing:9.300000px;}
.ls1a{letter-spacing:11.880000px;}
.ls8{letter-spacing:15.120000px;}
.ls6{letter-spacing:19.503600px;}
.ls9{letter-spacing:20.160000px;}
.ls5{letter-spacing:23.520000px;}
.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;}
}
.wsa{word-spacing:-23.520000px;}
.ws1c{word-spacing:-22.302000px;}
.wsc{word-spacing:-20.844000px;}
.ws4{word-spacing:-20.682000px;}
.wsb{word-spacing:-20.160000px;}
.ws1f{word-spacing:-18.384000px;}
.ws1d{word-spacing:-17.952000px;}
.ws0{word-spacing:-15.282000px;}
.ws6{word-spacing:-15.000000px;}
.ws28{word-spacing:-14.040000px;}
.ws10{word-spacing:-13.770000px;}
.ws7{word-spacing:-13.500000px;}
.ws16{word-spacing:-12.960000px;}
.ws13{word-spacing:-12.690000px;}
.ws19{word-spacing:-11.448000px;}
.wse{word-spacing:-11.040000px;}
.ws3{word-spacing:-10.080000px;}
.ws5{word-spacing:-9.300000px;}
.ws18{word-spacing:-9.240000px;}
.ws26{word-spacing:-4.200000px;}
.ws15{word-spacing:-3.192000px;}
.ws2c{word-spacing:-1.620000px;}
.ws2b{word-spacing:-1.080000px;}
.wsf{word-spacing:-0.810000px;}
.ws20{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.561000px;}
.ws8{word-spacing:-0.540000px;}
.ws27{word-spacing:-0.270000px;}
.ws29{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.162000px;}
.ws17{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.270000px;}
.ws9{word-spacing:0.540000px;}
.ws25{word-spacing:0.810000px;}
.ws2a{word-spacing:2.430000px;}
.ws12{word-spacing:23.520000px;}
.ws1e{word-spacing:52.656000px;}
.ws1a{word-spacing:133.596000px;}
.ws21{word-spacing:214.218000px;}
.ws22{word-spacing:261.954000px;}
.ws23{word-spacing:314.118000px;}
.ws1b{word-spacing:415.854000px;}
.ws14{word-spacing:479.088000px;}
.ws24{word-spacing:480.497400px;}
._16{margin-left:-2413.152000px;}
._8{margin-left:-22.866600px;}
._17{margin-left:-14.520000px;}
._10{margin-left:-13.431000px;}
._d{margin-left:-10.200000px;}
._e{margin-left:-7.442400px;}
._3{margin-left:-6.216000px;}
._5{margin-left:-4.860000px;}
._0{margin-left:-3.570000px;}
._2{margin-left:-2.542200px;}
._1{margin-left:-1.355400px;}
._4{width:1.080000px;}
._c{width:2.440800px;}
._6{width:5.408400px;}
._7{width:7.553400px;}
._11{width:9.262800px;}
._f{width:12.960000px;}
._9{width:19.440000px;}
._1b{width:24.138000px;}
._12{width:25.369200px;}
._1a{width:53.838000px;}
._b{width:76.086000px;}
._15{width:88.560000px;}
._14{width:91.211400px;}
._19{width:226.224000px;}
._13{width:287.230200px;}
._1c{width:494.400000px;}
._a{width:518.243400px;}
._18{width:648.384000px;}
.fc8{color:rgb(200,93,96);}
.fc7{color:rgb(207,113,112);}
.fc5{color:rgb(65,64,66);}
.fc3{color:rgb(229,176,171);}
.fc6{color:rgb(109,110,113);}
.fc2{color:rgb(255,255,255);}
.fc4{color:transparent;}
.fc1{color:rgb(179,8,56);}
.fc0{color:rgb(149,152,152);}
.fs7{font-size:31.482000px;}
.fs9{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:33.961500px;}
.y3{bottom:43.464750px;}
.y2{bottom:58.764750px;}
.y1{bottom:74.064750px;}
.y51{bottom:77.498400px;}
.y2f{bottom:86.055900px;}
.y32{bottom:93.696900px;}
.y50{bottom:93.698400px;}
.y2e{bottom:98.655900px;}
.y56{bottom:109.898400px;}
.y2d{bottom:111.255900px;}
.y5a{bottom:126.098400px;}
.y2c{bottom:136.455900px;}
.y6f{bottom:142.298250px;}
.y4f{bottom:142.298400px;}
.ycb{bottom:145.233150px;}
.y70{bottom:146.793750px;}
.y71{bottom:146.793900px;}
.y2b{bottom:149.055900px;}
.y6e{bottom:158.498250px;}
.y4e{bottom:158.498400px;}
.yca{bottom:161.433150px;}
.y2a{bottom:161.655900px;}
.y94{bottom:162.998400px;}
.ybf{bottom:165.868500px;}
.y29{bottom:174.255900px;}
.y6d{bottom:174.698250px;}
.y4d{bottom:174.698400px;}
.y7f{bottom:177.698400px;}
.ybe{bottom:177.868500px;}
.y89{bottom:179.198400px;}
.ybd{bottom:189.868500px;}
.y4c{bottom:190.898400px;}
.y9d{bottom:195.398400px;}
.y28{bottom:199.455900px;}
.ybc{bottom:201.868500px;}
.y6c{bottom:207.098250px;}
.y4b{bottom:207.098400px;}
.y93{bottom:211.598400px;}
.ybb{bottom:213.868500px;}
.yc9{bottom:216.223500px;}
.y6b{bottom:223.298250px;}
.y4a{bottom:223.298400px;}
.y27{bottom:224.655900px;}
.yba{bottom:225.868500px;}
.y7e{bottom:226.298400px;}
.y88{bottom:227.798400px;}
.yc8{bottom:232.423500px;}
.y26{bottom:237.255900px;}
.yb9{bottom:237.868500px;}
.y6a{bottom:239.498250px;}
.y49{bottom:239.498400px;}
.y9c{bottom:243.998400px;}
.y25{bottom:249.855900px;}
.yb8{bottom:249.868500px;}
.y69{bottom:255.698250px;}
.y48{bottom:255.698400px;}
.y92{bottom:260.198400px;}
.yb7{bottom:261.868500px;}
.y24{bottom:262.455900px;}
.y68{bottom:271.898250px;}
.y55{bottom:271.898400px;}
.yb6{bottom:273.868500px;}
.y7d{bottom:274.898400px;}
.y23{bottom:275.055900px;}
.y87{bottom:276.398400px;}
.yc7{bottom:283.606350px;}
.yb5{bottom:285.868500px;}
.y22{bottom:287.655900px;}
.y67{bottom:288.098250px;}
.y47{bottom:288.098400px;}
.y9b{bottom:292.598400px;}
.yb4{bottom:297.868500px;}
.yc6{bottom:299.806350px;}
.y21{bottom:300.255900px;}
.y57{bottom:304.298400px;}
.y91{bottom:308.798400px;}
.yb3{bottom:309.868500px;}
.y20{bottom:312.855900px;}
.y66{bottom:320.498250px;}
.y46{bottom:320.498400px;}
.yb2{bottom:321.868500px;}
.y7c{bottom:323.498400px;}
.y86{bottom:324.998400px;}
.y1f{bottom:325.455900px;}
.yb1{bottom:333.868500px;}
.y65{bottom:336.698250px;}
.y45{bottom:336.698400px;}
.y1e{bottom:338.055900px;}
.y9a{bottom:341.198400px;}
.yb0{bottom:345.868500px;}
.y1d{bottom:350.655900px;}
.yc5{bottom:351.355650px;}
.y64{bottom:352.898250px;}
.y54{bottom:352.898400px;}
.y90{bottom:357.398400px;}
.yaf{bottom:357.868500px;}
.y1c{bottom:363.255900px;}
.yc4{bottom:367.555650px;}
.y63{bottom:369.098250px;}
.y44{bottom:369.098400px;}
.yae{bottom:369.868500px;}
.y7b{bottom:372.098400px;}
.y85{bottom:373.598400px;}
.y1b{bottom:375.855900px;}
.yad{bottom:381.868500px;}
.y62{bottom:385.298250px;}
.y43{bottom:385.298400px;}
.y35{bottom:386.205900px;}
.y99{bottom:389.798400px;}
.yac{bottom:393.868500px;}
.y61{bottom:401.498250px;}
.y53{bottom:401.498400px;}
.y34{bottom:401.505900px;}
.yaa{bottom:401.668500px;}
.yab{bottom:405.868500px;}
.y8f{bottom:405.998400px;}
.y1a{bottom:413.655900px;}
.y33{bottom:416.805900px;}
.y42{bottom:417.698400px;}
.ya9{bottom:417.868500px;}
.yc3{bottom:419.198400px;}
.y7a{bottom:420.698400px;}
.y84{bottom:422.198400px;}
.y19{bottom:426.255900px;}
.y59{bottom:433.898400px;}
.ya8{bottom:434.068500px;}
.yc2{bottom:435.398400px;}
.y98{bottom:438.398400px;}
.y18{bottom:438.855900px;}
.y41{bottom:450.098400px;}
.ya7{bottom:450.268500px;}
.y17{bottom:451.455900px;}
.y31{bottom:451.551150px;}
.y8e{bottom:454.598400px;}
.y16{bottom:464.055900px;}
.y40{bottom:466.298400px;}
.ya6{bottom:466.468500px;}
.y30{bottom:466.851150px;}
.y79{bottom:469.298400px;}
.y83{bottom:470.798400px;}
.y15{bottom:476.655900px;}
.y3f{bottom:482.498400px;}
.ya5{bottom:482.668500px;}
.y97{bottom:486.998400px;}
.y14{bottom:489.255900px;}
.y3e{bottom:498.698400px;}
.ya3{bottom:498.868500px;}
.yc0{bottom:501.740700px;}
.y13{bottom:501.855900px;}
.y8d{bottom:503.198400px;}
.y12{bottom:514.455900px;}
.y3d{bottom:514.898400px;}
.ya4{bottom:515.068500px;}
.y78{bottom:517.898400px;}
.y82{bottom:519.398400px;}
.y11{bottom:527.055900px;}
.y3c{bottom:531.098400px;}
.ya2{bottom:531.268500px;}
.y96{bottom:535.598400px;}
.y10{bottom:539.655900px;}
.y36{bottom:546.575550px;}
.y52{bottom:547.298400px;}
.ya1{bottom:547.468500px;}
.y8c{bottom:551.798400px;}
.yf{bottom:552.255900px;}
.y3b{bottom:563.498400px;}
.ya0{bottom:563.668500px;}
.ye{bottom:564.855900px;}
.y77{bottom:566.498400px;}
.y81{bottom:567.998400px;}
.yd{bottom:577.455900px;}
.y3a{bottom:579.698400px;}
.y9f{bottom:579.868500px;}
.y95{bottom:584.198400px;}
.yc{bottom:590.055900px;}
.y39{bottom:595.898400px;}
.y9e{bottom:596.068500px;}
.y8b{bottom:600.398400px;}
.yb{bottom:602.655900px;}
.y60{bottom:612.098400px;}
.ycc{bottom:615.095400px;}
.y76{bottom:615.098400px;}
.ya{bottom:615.255900px;}
.y80{bottom:616.598400px;}
.y9{bottom:627.855900px;}
.y5f{bottom:628.298400px;}
.y74{bottom:637.292400px;}
.y8{bottom:640.455900px;}
.y5c{bottom:644.498400px;}
.yc1{bottom:645.656700px;}
.y8a{bottom:647.540700px;}
.y7{bottom:653.055900px;}
.y5e{bottom:660.698400px;}
.y75{bottom:663.740700px;}
.y6{bottom:665.655900px;}
.y5b{bottom:676.898400px;}
.y5{bottom:678.255900px;}
.y4{bottom:690.855900px;}
.y5d{bottom:693.098400px;}
.y58{bottom:709.298400px;}
.y73{bottom:732.234900px;}
.y72{bottom:748.434900px;}
.y38{bottom:821.016750px;}
.h12{height:28.674000px;}
.h15{height:31.104000px;}
.h4{height:36.414000px;}
.h7{height:36.750000px;}
.h17{height:37.632000px;}
.h9{height:39.396000px;}
.h1b{height:40.824000px;}
.ha{height:40.878000px;}
.h16{height:41.472000px;}
.h8{height:41.616000px;}
.h18{height:42.282000px;}
.h11{height:42.336000px;}
.h14{height:43.248000px;}
.h3{height:44.064000px;}
.h5{height:44.217000px;}
.hc{height:45.300000px;}
.hb{height:46.656000px;}
.hd{height:46.818000px;}
.h19{height:47.034000px;}
.hf{height:47.250000px;}
.h2{height:48.654000px;}
.h6{height:54.060000px;}
.h1a{height:56.214000px;}
.h13{height:57.750000px;}
.h10{height:97.308000px;}
.he{height:151.368000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:41.836650px;}
.xa{left:47.454150px;}
.xc{left:55.870800px;}
.x1{left:75.605700px;}
.x56{left:90.531900px;}
.x58{left:91.537200px;}
.x48{left:93.983700px;}
.x15{left:95.669250px;}
.x79{left:103.535400px;}
.x62{left:105.823500px;}
.x4c{left:107.331300px;}
.x5f{left:108.964200px;}
.x5e{left:112.663200px;}
.x5c{left:115.538700px;}
.x5b{left:117.466500px;}
.x61{left:121.456050px;}
.x7a{left:122.669250px;}
.xb{left:123.953250px;}
.x33{left:133.019100px;}
.x4d{left:135.627300px;}
.x31{left:147.801600px;}
.x64{left:149.198700px;}
.x30{left:150.434100px;}
.x5d{left:151.880700px;}
.x2f{left:156.468600px;}
.x24{left:168.811950px;}
.x65{left:174.870150px;}
.x23{left:176.533950px;}
.x32{left:178.055100px;}
.x21{left:180.583950px;}
.x2e{left:185.520600px;}
.x25{left:186.631950px;}
.x1d{left:188.560950px;}
.x3d{left:190.337850px;}
.x20{left:192.949950px;}
.x22{left:194.137950px;}
.x3e{left:200.759850px;}
.x3c{left:203.081850px;}
.x1e{left:207.070950px;}
.x1f{left:208.245450px;}
.x26{left:210.580950px;}
.x52{left:232.989300px;}
.x51{left:238.470300px;}
.x50{left:242.169300px;}
.x60{left:244.085700px;}
.x4e{left:245.652300px;}
.x69{left:248.647650px;}
.x2{left:251.072550px;}
.x63{left:260.020500px;}
.x6a{left:265.765650px;}
.x68{left:268.762650px;}
.x4f{left:275.298300px;}
.x66{left:278.779650px;}
.x8{left:285.642750px;}
.x7{left:310.671000px;}
.x67{left:320.575650px;}
.x77{left:344.409450px;}
.x6{left:349.217400px;}
.x4a{left:374.509800px;}
.x49{left:375.859800px;}
.x4{left:383.097150px;}
.x3{left:384.542400px;}
.x4b{left:385.755300px;}
.x11{left:392.046150px;}
.x10{left:399.403650px;}
.x12{left:403.251150px;}
.x47{left:410.791800px;}
.x5{left:412.677150px;}
.x17{left:416.809650px;}
.x9{left:419.826750px;}
.x16{left:431.389650px;}
.x34{left:432.786600px;}
.x5a{left:447.918900px;}
.x27{left:451.893450px;}
.x19{left:458.153400px;}
.x6d{left:464.350650px;}
.x45{left:465.702600px;}
.x6e{left:473.517150px;}
.x18{left:477.287250px;}
.xd{left:480.646650px;}
.x46{left:485.149500px;}
.x6f{left:491.364150px;}
.x74{left:494.370150px;}
.x71{left:498.478650px;}
.x70{left:502.258650px;}
.x78{left:504.287250px;}
.x75{left:512.787300px;}
.x6b{left:514.030650px;}
.x6c{left:529.177650px;}
.x72{left:563.309550px;}
.x73{left:575.549250px;}
.x39{left:580.490100px;}
.x54{left:589.335300px;}
.x1c{left:592.181100px;}
.x53{left:597.880800px;}
.x2c{left:602.175450px;}
.x43{left:614.912850px;}
.x36{left:617.277600px;}
.x57{left:618.901200px;}
.x2d{left:622.870950px;}
.x35{left:624.108600px;}
.x3b{left:625.634100px;}
.x3f{left:628.048350px;}
.x2b{left:629.188950px;}
.x41{left:631.045350px;}
.x40{left:634.460850px;}
.x42{left:639.833850px;}
.x55{left:644.928300px;}
.x38{left:646.410600px;}
.x3a{left:648.543600px;}
.x37{left:655.374600px;}
.x2a{left:656.377950px;}
.x44{left:658.733850px;}
.x13{left:662.799750px;}
.x28{left:665.571450px;}
.x1b{left:667.659900px;}
.x76{left:679.419600px;}
.x29{left:682.689450px;}
.x14{left:708.759900px;}
.x59{left:739.984500px;}
.xe{left:782.655150px;}
.xf{left:793.860150px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:6.720000pt;}
.v2{vertical-align:15.984000pt;}
.ls21{letter-spacing:-2.160000pt;}
.lsb{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.279227pt;}
.lsf{letter-spacing:0.279760pt;}
.lse{letter-spacing:0.418960pt;}
.ls13{letter-spacing:0.419493pt;}
.ls10{letter-spacing:0.479467pt;}
.ls3{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.724800pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.200000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls20{letter-spacing:3.882667pt;}
.ls1f{letter-spacing:4.266667pt;}
.ls1{letter-spacing:4.800000pt;}
.ls1e{letter-spacing:5.973333pt;}
.ls1c{letter-spacing:6.240000pt;}
.ls18{letter-spacing:6.720000pt;}
.ls2{letter-spacing:8.266667pt;}
.ls1a{letter-spacing:10.560000pt;}
.ls8{letter-spacing:13.440000pt;}
.ls6{letter-spacing:17.336533pt;}
.ls9{letter-spacing:17.920000pt;}
.ls5{letter-spacing:20.906667pt;}
.wsa{word-spacing:-20.906667pt;}
.ws1c{word-spacing:-19.824000pt;}
.wsc{word-spacing:-18.528000pt;}
.ws4{word-spacing:-18.384000pt;}
.wsb{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-16.341333pt;}
.ws1d{word-spacing:-15.957333pt;}
.ws0{word-spacing:-13.584000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws28{word-spacing:-12.480000pt;}
.ws10{word-spacing:-12.240000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.520000pt;}
.ws13{word-spacing:-11.280000pt;}
.ws19{word-spacing:-10.176000pt;}
.wse{word-spacing:-9.813333pt;}
.ws3{word-spacing:-8.960000pt;}
.ws5{word-spacing:-8.266667pt;}
.ws18{word-spacing:-8.213333pt;}
.ws26{word-spacing:-3.733333pt;}
.ws15{word-spacing:-2.837333pt;}
.ws2c{word-spacing:-1.440000pt;}
.ws2b{word-spacing:-0.960000pt;}
.wsf{word-spacing:-0.720000pt;}
.ws20{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.498667pt;}
.ws8{word-spacing:-0.480000pt;}
.ws27{word-spacing:-0.240000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.144000pt;}
.ws17{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.240000pt;}
.ws9{word-spacing:0.480000pt;}
.ws25{word-spacing:0.720000pt;}
.ws2a{word-spacing:2.160000pt;}
.ws12{word-spacing:20.906667pt;}
.ws1e{word-spacing:46.805333pt;}
.ws1a{word-spacing:118.752000pt;}
.ws21{word-spacing:190.416000pt;}
.ws22{word-spacing:232.848000pt;}
.ws23{word-spacing:279.216000pt;}
.ws1b{word-spacing:369.648000pt;}
.ws14{word-spacing:425.856000pt;}
.ws24{word-spacing:427.108800pt;}
._16{margin-left:-2145.024000pt;}
._8{margin-left:-20.325867pt;}
._17{margin-left:-12.906667pt;}
._10{margin-left:-11.938667pt;}
._d{margin-left:-9.066667pt;}
._e{margin-left:-6.615467pt;}
._3{margin-left:-5.525333pt;}
._5{margin-left:-4.320000pt;}
._0{margin-left:-3.173333pt;}
._2{margin-left:-2.259733pt;}
._1{margin-left:-1.204800pt;}
._4{width:0.960000pt;}
._c{width:2.169600pt;}
._6{width:4.807467pt;}
._7{width:6.714133pt;}
._11{width:8.233600pt;}
._f{width:11.520000pt;}
._9{width:17.280000pt;}
._1b{width:21.456000pt;}
._12{width:22.550400pt;}
._1a{width:47.856000pt;}
._b{width:67.632000pt;}
._15{width:78.720000pt;}
._14{width:81.076800pt;}
._19{width:201.088000pt;}
._13{width:255.315733pt;}
._1c{width:439.466667pt;}
._a{width:460.660800pt;}
._18{width:576.341333pt;}
.fs7{font-size:27.984000pt;}
.fs9{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:30.188000pt;}
.y3{bottom:38.635333pt;}
.y2{bottom:52.235333pt;}
.y1{bottom:65.835333pt;}
.y51{bottom:68.887467pt;}
.y2f{bottom:76.494133pt;}
.y32{bottom:83.286133pt;}
.y50{bottom:83.287467pt;}
.y2e{bottom:87.694133pt;}
.y56{bottom:97.687467pt;}
.y2d{bottom:98.894133pt;}
.y5a{bottom:112.087467pt;}
.y2c{bottom:121.294133pt;}
.y6f{bottom:126.487333pt;}
.y4f{bottom:126.487467pt;}
.ycb{bottom:129.096133pt;}
.y70{bottom:130.483333pt;}
.y71{bottom:130.483467pt;}
.y2b{bottom:132.494133pt;}
.y6e{bottom:140.887333pt;}
.y4e{bottom:140.887467pt;}
.yca{bottom:143.496133pt;}
.y2a{bottom:143.694133pt;}
.y94{bottom:144.887467pt;}
.ybf{bottom:147.438667pt;}
.y29{bottom:154.894133pt;}
.y6d{bottom:155.287333pt;}
.y4d{bottom:155.287467pt;}
.y7f{bottom:157.954133pt;}
.ybe{bottom:158.105333pt;}
.y89{bottom:159.287467pt;}
.ybd{bottom:168.772000pt;}
.y4c{bottom:169.687467pt;}
.y9d{bottom:173.687467pt;}
.y28{bottom:177.294133pt;}
.ybc{bottom:179.438667pt;}
.y6c{bottom:184.087333pt;}
.y4b{bottom:184.087467pt;}
.y93{bottom:188.087467pt;}
.ybb{bottom:190.105333pt;}
.yc9{bottom:192.198667pt;}
.y6b{bottom:198.487333pt;}
.y4a{bottom:198.487467pt;}
.y27{bottom:199.694133pt;}
.yba{bottom:200.772000pt;}
.y7e{bottom:201.154133pt;}
.y88{bottom:202.487467pt;}
.yc8{bottom:206.598667pt;}
.y26{bottom:210.894133pt;}
.yb9{bottom:211.438667pt;}
.y6a{bottom:212.887333pt;}
.y49{bottom:212.887467pt;}
.y9c{bottom:216.887467pt;}
.y25{bottom:222.094133pt;}
.yb8{bottom:222.105333pt;}
.y69{bottom:227.287333pt;}
.y48{bottom:227.287467pt;}
.y92{bottom:231.287467pt;}
.yb7{bottom:232.772000pt;}
.y24{bottom:233.294133pt;}
.y68{bottom:241.687333pt;}
.y55{bottom:241.687467pt;}
.yb6{bottom:243.438667pt;}
.y7d{bottom:244.354133pt;}
.y23{bottom:244.494133pt;}
.y87{bottom:245.687467pt;}
.yc7{bottom:252.094533pt;}
.yb5{bottom:254.105333pt;}
.y22{bottom:255.694133pt;}
.y67{bottom:256.087333pt;}
.y47{bottom:256.087467pt;}
.y9b{bottom:260.087467pt;}
.yb4{bottom:264.772000pt;}
.yc6{bottom:266.494533pt;}
.y21{bottom:266.894133pt;}
.y57{bottom:270.487467pt;}
.y91{bottom:274.487467pt;}
.yb3{bottom:275.438667pt;}
.y20{bottom:278.094133pt;}
.y66{bottom:284.887333pt;}
.y46{bottom:284.887467pt;}
.yb2{bottom:286.105333pt;}
.y7c{bottom:287.554133pt;}
.y86{bottom:288.887467pt;}
.y1f{bottom:289.294133pt;}
.yb1{bottom:296.772000pt;}
.y65{bottom:299.287333pt;}
.y45{bottom:299.287467pt;}
.y1e{bottom:300.494133pt;}
.y9a{bottom:303.287467pt;}
.yb0{bottom:307.438667pt;}
.y1d{bottom:311.694133pt;}
.yc5{bottom:312.316133pt;}
.y64{bottom:313.687333pt;}
.y54{bottom:313.687467pt;}
.y90{bottom:317.687467pt;}
.yaf{bottom:318.105333pt;}
.y1c{bottom:322.894133pt;}
.yc4{bottom:326.716133pt;}
.y63{bottom:328.087333pt;}
.y44{bottom:328.087467pt;}
.yae{bottom:328.772000pt;}
.y7b{bottom:330.754133pt;}
.y85{bottom:332.087467pt;}
.y1b{bottom:334.094133pt;}
.yad{bottom:339.438667pt;}
.y62{bottom:342.487333pt;}
.y43{bottom:342.487467pt;}
.y35{bottom:343.294133pt;}
.y99{bottom:346.487467pt;}
.yac{bottom:350.105333pt;}
.y61{bottom:356.887333pt;}
.y53{bottom:356.887467pt;}
.y34{bottom:356.894133pt;}
.yaa{bottom:357.038667pt;}
.yab{bottom:360.772000pt;}
.y8f{bottom:360.887467pt;}
.y1a{bottom:367.694133pt;}
.y33{bottom:370.494133pt;}
.y42{bottom:371.287467pt;}
.ya9{bottom:371.438667pt;}
.yc3{bottom:372.620800pt;}
.y7a{bottom:373.954133pt;}
.y84{bottom:375.287467pt;}
.y19{bottom:378.894133pt;}
.y59{bottom:385.687467pt;}
.ya8{bottom:385.838667pt;}
.yc2{bottom:387.020800pt;}
.y98{bottom:389.687467pt;}
.y18{bottom:390.094133pt;}
.y41{bottom:400.087467pt;}
.ya7{bottom:400.238667pt;}
.y17{bottom:401.294133pt;}
.y31{bottom:401.378800pt;}
.y8e{bottom:404.087467pt;}
.y16{bottom:412.494133pt;}
.y40{bottom:414.487467pt;}
.ya6{bottom:414.638667pt;}
.y30{bottom:414.978800pt;}
.y79{bottom:417.154133pt;}
.y83{bottom:418.487467pt;}
.y15{bottom:423.694133pt;}
.y3f{bottom:428.887467pt;}
.ya5{bottom:429.038667pt;}
.y97{bottom:432.887467pt;}
.y14{bottom:434.894133pt;}
.y3e{bottom:443.287467pt;}
.ya3{bottom:443.438667pt;}
.yc0{bottom:445.991733pt;}
.y13{bottom:446.094133pt;}
.y8d{bottom:447.287467pt;}
.y12{bottom:457.294133pt;}
.y3d{bottom:457.687467pt;}
.ya4{bottom:457.838667pt;}
.y78{bottom:460.354133pt;}
.y82{bottom:461.687467pt;}
.y11{bottom:468.494133pt;}
.y3c{bottom:472.087467pt;}
.ya2{bottom:472.238667pt;}
.y96{bottom:476.087467pt;}
.y10{bottom:479.694133pt;}
.y36{bottom:485.844933pt;}
.y52{bottom:486.487467pt;}
.ya1{bottom:486.638667pt;}
.y8c{bottom:490.487467pt;}
.yf{bottom:490.894133pt;}
.y3b{bottom:500.887467pt;}
.ya0{bottom:501.038667pt;}
.ye{bottom:502.094133pt;}
.y77{bottom:503.554133pt;}
.y81{bottom:504.887467pt;}
.yd{bottom:513.294133pt;}
.y3a{bottom:515.287467pt;}
.y9f{bottom:515.438667pt;}
.y95{bottom:519.287467pt;}
.yc{bottom:524.494133pt;}
.y39{bottom:529.687467pt;}
.y9e{bottom:529.838667pt;}
.y8b{bottom:533.687467pt;}
.yb{bottom:535.694133pt;}
.y60{bottom:544.087467pt;}
.ycc{bottom:546.751467pt;}
.y76{bottom:546.754133pt;}
.ya{bottom:546.894133pt;}
.y80{bottom:548.087467pt;}
.y9{bottom:558.094133pt;}
.y5f{bottom:558.487467pt;}
.y74{bottom:566.482133pt;}
.y8{bottom:569.294133pt;}
.y5c{bottom:572.887467pt;}
.yc1{bottom:573.917067pt;}
.y8a{bottom:575.591733pt;}
.y7{bottom:580.494133pt;}
.y5e{bottom:587.287467pt;}
.y75{bottom:589.991733pt;}
.y6{bottom:591.694133pt;}
.y5b{bottom:601.687467pt;}
.y5{bottom:602.894133pt;}
.y4{bottom:614.094133pt;}
.y5d{bottom:616.087467pt;}
.y58{bottom:630.487467pt;}
.y73{bottom:650.875467pt;}
.y72{bottom:665.275467pt;}
.y38{bottom:729.792667pt;}
.h12{height:25.488000pt;}
.h15{height:27.648000pt;}
.h4{height:32.368000pt;}
.h7{height:32.666667pt;}
.h17{height:33.450667pt;}
.h9{height:35.018667pt;}
.h1b{height:36.288000pt;}
.ha{height:36.336000pt;}
.h16{height:36.864000pt;}
.h8{height:36.992000pt;}
.h18{height:37.584000pt;}
.h11{height:37.632000pt;}
.h14{height:38.442667pt;}
.h3{height:39.168000pt;}
.h5{height:39.304000pt;}
.hc{height:40.266667pt;}
.hb{height:41.472000pt;}
.hd{height:41.616000pt;}
.h19{height:41.808000pt;}
.hf{height:42.000000pt;}
.h2{height:43.248000pt;}
.h6{height:48.053333pt;}
.h1a{height:49.968000pt;}
.h13{height:51.333333pt;}
.h10{height:86.496000pt;}
.he{height:134.549333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:37.188133pt;}
.xa{left:42.181467pt;}
.xc{left:49.662933pt;}
.x1{left:67.205067pt;}
.x56{left:80.472800pt;}
.x58{left:81.366400pt;}
.x48{left:83.541067pt;}
.x15{left:85.039333pt;}
.x79{left:92.031467pt;}
.x62{left:94.065333pt;}
.x4c{left:95.405600pt;}
.x5f{left:96.857067pt;}
.x5e{left:100.145067pt;}
.x5c{left:102.701067pt;}
.x5b{left:104.414667pt;}
.x61{left:107.960933pt;}
.x7a{left:109.039333pt;}
.xb{left:110.180667pt;}
.x33{left:118.239200pt;}
.x4d{left:120.557600pt;}
.x31{left:131.379200pt;}
.x64{left:132.621067pt;}
.x30{left:133.719200pt;}
.x5d{left:135.005067pt;}
.x2f{left:139.083200pt;}
.x24{left:150.055067pt;}
.x65{left:155.440133pt;}
.x23{left:156.919067pt;}
.x32{left:158.271200pt;}
.x21{left:160.519067pt;}
.x2e{left:164.907200pt;}
.x25{left:165.895067pt;}
.x1d{left:167.609733pt;}
.x3d{left:169.189200pt;}
.x20{left:171.511067pt;}
.x22{left:172.567067pt;}
.x3e{left:178.453200pt;}
.x3c{left:180.517200pt;}
.x1e{left:184.063067pt;}
.x1f{left:185.107067pt;}
.x26{left:187.183067pt;}
.x52{left:207.101600pt;}
.x51{left:211.973600pt;}
.x50{left:215.261600pt;}
.x60{left:216.965067pt;}
.x4e{left:218.357600pt;}
.x69{left:221.020133pt;}
.x2{left:223.175600pt;}
.x63{left:231.129333pt;}
.x6a{left:236.236133pt;}
.x68{left:238.900133pt;}
.x4f{left:244.709600pt;}
.x66{left:247.804133pt;}
.x8{left:253.904667pt;}
.x7{left:276.152000pt;}
.x67{left:284.956133pt;}
.x77{left:306.141733pt;}
.x6{left:310.415467pt;}
.x4a{left:332.897600pt;}
.x49{left:334.097600pt;}
.x4{left:340.530800pt;}
.x3{left:341.815467pt;}
.x4b{left:342.893600pt;}
.x11{left:348.485467pt;}
.x10{left:355.025467pt;}
.x12{left:358.445467pt;}
.x47{left:365.148267pt;}
.x5{left:366.824133pt;}
.x17{left:370.497467pt;}
.x9{left:373.179333pt;}
.x16{left:383.457467pt;}
.x34{left:384.699200pt;}
.x5a{left:398.150133pt;}
.x27{left:401.683067pt;}
.x19{left:407.247467pt;}
.x6d{left:412.756133pt;}
.x45{left:413.957867pt;}
.x6e{left:420.904133pt;}
.x18{left:424.255333pt;}
.xd{left:427.241467pt;}
.x46{left:431.244000pt;}
.x6f{left:436.768133pt;}
.x74{left:439.440133pt;}
.x71{left:443.092133pt;}
.x70{left:446.452133pt;}
.x78{left:448.255333pt;}
.x75{left:455.810933pt;}
.x6b{left:456.916133pt;}
.x6c{left:470.380133pt;}
.x72{left:500.719600pt;}
.x73{left:511.599333pt;}
.x39{left:515.991200pt;}
.x54{left:523.853600pt;}
.x1c{left:526.383200pt;}
.x53{left:531.449600pt;}
.x2c{left:535.267067pt;}
.x43{left:546.589200pt;}
.x36{left:548.691200pt;}
.x57{left:550.134400pt;}
.x2d{left:553.663067pt;}
.x35{left:554.763200pt;}
.x3b{left:556.119200pt;}
.x3f{left:558.265200pt;}
.x2b{left:559.279067pt;}
.x41{left:560.929200pt;}
.x40{left:563.965200pt;}
.x42{left:568.741200pt;}
.x55{left:573.269600pt;}
.x38{left:574.587200pt;}
.x3a{left:576.483200pt;}
.x37{left:582.555200pt;}
.x2a{left:583.447067pt;}
.x44{left:585.541200pt;}
.x13{left:589.155333pt;}
.x28{left:591.619067pt;}
.x1b{left:593.475467pt;}
.x76{left:603.928533pt;}
.x29{left:606.835067pt;}
.x14{left:630.008800pt;}
.x59{left:657.764000pt;}
.xe{left:695.693467pt;}
.xf{left:705.653467pt;}
}

