
    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_479101df20a21fc3fd1e1013.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_1bcfab86673efb3e91762eb4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_09a033326c38f0b89533b438.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_8452808adcd9fc5ab301a07d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_84044cf3408a44f9ffcc940c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_9254d430970efcb1ba1a3898.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_23c9394e284c57a32441e3a8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_c42411997870d6574e408a74.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_80a621170a037c8d2540b696.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_0cfacdc2bbfbe9eb75289f2b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_4b4efd0b02864abb1dd1ce35.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_5864ae125025eeec9e954abd.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff11{font-family:ff11;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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_a5034111f1b7f9908ce5e41b.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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_87db246fea32b4aa8f53b4b2.woff')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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_1d87d34d3195fab7992bae92.woff')format("woff");}.ff17{font-family:ff17;line-height:1.400000;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_261ab2545a0d4b47a1086dfb.woff')format("woff");}.ff18{font-family:ff18;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff19{font-family:ff19;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.400000;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_0c4d2f959a7f09585d918109.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff20{font-family:ff20;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff21{font-family:ff21;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff22{font-family:ff22;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff23{font-family:ff23;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff24{font-family:ff24;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff25{font-family:ff25;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff26{font-family:ff26;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff27{font-family:ff27;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff28{font-family:ff28;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff29{font-family:ff29;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.400000;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_7785197fa8d3eb95211112de.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.400000;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_3c5d4a12103d0c4fa81e5679.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.400000;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_e3da4d32e488815706ca0f6b.woff')format("woff");}.ff30{font-family:ff30;line-height:1.400000;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_e88f2aac62b5b2c9e40ad296.woff')format("woff");}.ff31{font-family:ff31;line-height:1.400000;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_b9b4312395be73f2e4f48860.woff')format("woff");}.ff32{font-family:ff32;line-height:1.400000;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_71c92c12cbc49f42f9efdcbf.woff')format("woff");}.ff33{font-family:ff33;line-height:0.713867;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.972000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.862000px;}
.v1{vertical-align:27.912000px;}
.ls6{letter-spacing:-15.000000px;}
.lsb{letter-spacing:-13.200000px;}
.ls20{letter-spacing:-7.800000px;}
.ls7{letter-spacing:-6.000000px;}
.ls18{letter-spacing:-5.208000px;}
.ls1e{letter-spacing:-4.116000px;}
.lsa{letter-spacing:-1.848000px;}
.ls1f{letter-spacing:-1.764000px;}
.lsd{letter-spacing:-1.680000px;}
.ls22{letter-spacing:-1.560000px;}
.ls21{letter-spacing:-1.512000px;}
.ls11{letter-spacing:-1.260000px;}
.ls19{letter-spacing:-1.092000px;}
.ls14{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.672000px;}
.ls12{letter-spacing:-0.420000px;}
.ls23{letter-spacing:-0.390000px;}
.ls15{letter-spacing:-0.336000px;}
.ls10{letter-spacing:-0.252000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.538188px;}
.ls1d{letter-spacing:0.538788px;}
.lsf{letter-spacing:0.588000px;}
.ls16{letter-spacing:0.672000px;}
.ls1{letter-spacing:0.840000px;}
.ls1b{letter-spacing:0.924000px;}
.ls4{letter-spacing:1.350000px;}
.ls3{letter-spacing:1.680000px;}
.lse{letter-spacing:2.250000px;}
.ls9{letter-spacing:2.610000px;}
.ls13{letter-spacing:3.150000px;}
.ls8{letter-spacing:9.900000px;}
.ls0{letter-spacing:11.250000px;}
.ls2{letter-spacing:19.272000px;}
.ls1a{letter-spacing:35.028000px;}
.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:-55.350000px;}
.ws3{word-spacing:-38.160000px;}
.ws30{word-spacing:-24.108000px;}
.ws0{word-spacing:-23.868000px;}
.ws28{word-spacing:-23.436000px;}
.ws14{word-spacing:-23.184000px;}
.ws2e{word-spacing:-22.596000px;}
.ws19{word-spacing:-22.512000px;}
.ws21{word-spacing:-21.924000px;}
.ws37{word-spacing:-21.762000px;}
.ws36{word-spacing:-21.528000px;}
.ws3d{word-spacing:-21.138000px;}
.ws2f{word-spacing:-19.320000px;}
.ws13{word-spacing:-16.920000px;}
.ws12{word-spacing:-15.180000px;}
.ws4{word-spacing:-14.586000px;}
.ws20{word-spacing:-13.663188px;}
.ws3e{word-spacing:-12.687246px;}
.ws1{word-spacing:-11.400000px;}
.wsf{word-spacing:-10.032000px;}
.ws3c{word-spacing:-4.134000px;}
.ws1a{word-spacing:-2.940000px;}
.ws1b{word-spacing:-2.610000px;}
.ws35{word-spacing:-2.352000px;}
.ws27{word-spacing:-2.250000px;}
.ws23{word-spacing:-1.932000px;}
.ws32{word-spacing:-1.848000px;}
.wsb{word-spacing:-1.716000px;}
.ws34{word-spacing:-0.924000px;}
.ws29{word-spacing:-0.672000px;}
.ws1d{word-spacing:-0.588000px;}
.ws2a{word-spacing:-0.504000px;}
.ws17{word-spacing:-0.450000px;}
.ws7{word-spacing:-0.420000px;}
.wsd{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.132000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.198000px;}
.ws1e{word-spacing:0.252000px;}
.ws26{word-spacing:0.336000px;}
.ws24{word-spacing:0.420000px;}
.ws41{word-spacing:0.546000px;}
.ws18{word-spacing:0.672000px;}
.ws25{word-spacing:0.840000px;}
.wsa{word-spacing:1.056000px;}
.ws2c{word-spacing:1.092000px;}
.ws9{word-spacing:1.188000px;}
.ws22{word-spacing:1.260000px;}
.ws8{word-spacing:1.320000px;}
.ws3f{word-spacing:1.512000px;}
.ws40{word-spacing:1.560000px;}
.ws1c{word-spacing:1.680000px;}
.ws38{word-spacing:1.764000px;}
.ws15{word-spacing:1.848000px;}
.ws33{word-spacing:2.436000px;}
.ws31{word-spacing:3.696000px;}
.ws2b{word-spacing:5.208000px;}
.wse{word-spacing:6.000000px;}
.ws3b{word-spacing:6.162000px;}
.ws2d{word-spacing:6.972000px;}
.ws3a{word-spacing:12.012000px;}
.ws10{word-spacing:13.068000px;}
.ws39{word-spacing:14.274000px;}
.ws2{word-spacing:14.850000px;}
.ws1f{word-spacing:23.850000px;}
.ws16{word-spacing:25.200000px;}
._1c{margin-left:-107.436000px;}
._15{margin-left:-21.510000px;}
._19{margin-left:-15.192000px;}
._16{margin-left:-13.657200px;}
._18{margin-left:-12.387000px;}
._3{margin-left:-9.000000px;}
._5{margin-left:-7.206000px;}
._b{margin-left:-5.574000px;}
._1{margin-left:-4.464000px;}
._11{margin-left:-3.458400px;}
._2{margin-left:-2.448000px;}
._0{margin-left:-1.080000px;}
._9{width:1.554600px;}
._a{width:2.843400px;}
._12{width:4.094400px;}
._c{width:5.448000px;}
._10{width:7.426800px;}
._f{width:9.134400px;}
._13{width:10.462800px;}
._d{width:11.826000px;}
._e{width:13.200000px;}
._4{width:14.250000px;}
._1a{width:15.949200px;}
._1d{width:17.290800px;}
._8{width:18.876000px;}
._1e{width:23.360400px;}
._17{width:24.660000px;}
._14{width:26.298000px;}
._1b{width:27.450000px;}
._7{width:48.621000px;}
._6{width:166.353600px;}
.fc3{color:rgb(254,124,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(254,80,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:45.474000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:48.972000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fsa{font-size:90.000000px;}
.fs0{font-size:108.000000px;}
.fs5{font-size:132.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:18.101100px;}
.y6{bottom:39.101100px;}
.y3b{bottom:63.779550px;}
.y84{bottom:64.925100px;}
.y1e7{bottom:64.929300px;}
.y67{bottom:64.947300px;}
.y1b3{bottom:65.757150px;}
.y209{bottom:66.194250px;}
.y11b{bottom:66.685050px;}
.y16c{bottom:66.888900px;}
.yfe{bottom:69.602400px;}
.yab{bottom:71.366700px;}
.y175{bottom:73.665300px;}
.yb2{bottom:75.918750px;}
.y1b4{bottom:79.523550px;}
.y23e{bottom:80.904300px;}
.y24d{bottom:81.126300px;}
.yd2{bottom:83.636400px;}
.y198{bottom:83.643150px;}
.y1b5{bottom:83.658900px;}
.y144{bottom:85.322550px;}
.y208{bottom:91.700250px;}
.y1e6{bottom:93.426300px;}
.y66{bottom:93.444300px;}
.y16b{bottom:95.385900px;}
.y1a5{bottom:100.724550px;}
.y34{bottom:104.740500px;}
.y23d{bottom:106.410300px;}
.y24c{bottom:106.632300px;}
.y207{bottom:117.206250px;}
.y1e5{bottom:121.923300px;}
.y65{bottom:121.941300px;}
.y33{bottom:122.740500px;}
.y16a{bottom:123.882900px;}
.y23c{bottom:131.916300px;}
.y24b{bottom:132.138300px;}
.y206{bottom:142.712250px;}
.y1e4{bottom:150.420300px;}
.y64{bottom:150.438300px;}
.y1d6{bottom:151.897800px;}
.y23b{bottom:157.422300px;}
.y24a{bottom:157.644300px;}
.y169{bottom:160.886850px;}
.y205{bottom:168.218250px;}
.y1e3{bottom:178.917300px;}
.y63{bottom:178.935300px;}
.y1d5{bottom:180.394800px;}
.y23a{bottom:182.928300px;}
.y249{bottom:183.150300px;}
.y204{bottom:193.724250px;}
.y1e2{bottom:207.414300px;}
.y62{bottom:207.432300px;}
.y239{bottom:208.434300px;}
.y248{bottom:208.656300px;}
.y1d4{bottom:208.891800px;}
.y203{bottom:219.230250px;}
.y238{bottom:233.940300px;}
.y247{bottom:234.162300px;}
.y61{bottom:235.929300px;}
.y1e1{bottom:236.028300px;}
.y1d3{bottom:237.388800px;}
.y168{bottom:241.904850px;}
.y202{bottom:244.736250px;}
.y237{bottom:259.446300px;}
.y246{bottom:259.668300px;}
.y60{bottom:264.426300px;}
.y1e0{bottom:264.525300px;}
.y1d2{bottom:265.885800px;}
.y201{bottom:270.242250px;}
.y167{bottom:270.401850px;}
.y236{bottom:284.952300px;}
.y245{bottom:285.174300px;}
.y5f{bottom:292.923300px;}
.y1df{bottom:293.022300px;}
.y1d1{bottom:294.382800px;}
.y200{bottom:295.748250px;}
.y166{bottom:298.898850px;}
.y235{bottom:310.458300px;}
.y244{bottom:310.680300px;}
.y1ff{bottom:321.254250px;}
.y5e{bottom:321.420300px;}
.y1de{bottom:321.519300px;}
.y1d0{bottom:322.879800px;}
.y165{bottom:327.395850px;}
.y2e{bottom:335.943600px;}
.y234{bottom:335.964300px;}
.y243{bottom:336.186300px;}
.y1fe{bottom:346.760250px;}
.y5d{bottom:349.917300px;}
.y1dd{bottom:350.016300px;}
.y1cf{bottom:351.376800px;}
.y164{bottom:355.892850px;}
.y2d{bottom:358.449600px;}
.y233{bottom:361.470300px;}
.y242{bottom:361.692300px;}
.y1fd{bottom:372.266250px;}
.y5c{bottom:378.414300px;}
.y1dc{bottom:378.513300px;}
.y1ce{bottom:379.873800px;}
.y2c{bottom:380.955600px;}
.y163{bottom:384.389850px;}
.y232{bottom:386.976300px;}
.y241{bottom:387.198300px;}
.y1fc{bottom:397.772250px;}
.y2b{bottom:403.461600px;}
.y5b{bottom:406.911300px;}
.y1db{bottom:407.010300px;}
.y1cd{bottom:408.370800px;}
.y231{bottom:412.482300px;}
.y240{bottom:412.704300px;}
.y162{bottom:412.886850px;}
.y1fb{bottom:423.278250px;}
.y2a{bottom:425.967600px;}
.y1da{bottom:435.507300px;}
.y1cc{bottom:436.867800px;}
.y230{bottom:437.988300px;}
.y23f{bottom:438.210300px;}
.y29{bottom:448.473600px;}
.y1fa{bottom:448.784250px;}
.y22f{bottom:463.494300px;}
.y5a{bottom:463.911300px;}
.y1d9{bottom:464.004300px;}
.y1cb{bottom:465.364800px;}
.y161{bottom:469.886850px;}
.y28{bottom:470.979600px;}
.y1f9{bottom:474.290250px;}
.y22e{bottom:489.000300px;}
.y1d8{bottom:492.501300px;}
.y1ca{bottom:493.861800px;}
.y27{bottom:501.983100px;}
.y22d{bottom:514.506300px;}
.y1d7{bottom:520.998300px;}
.y1c9{bottom:522.358800px;}
.y26{bottom:524.489100px;}
.y1f8{bottom:528.290250px;}
.y22c{bottom:540.012300px;}
.y25{bottom:546.995100px;}
.y160{bottom:549.488400px;}
.y59{bottom:549.495300px;}
.y1c8{bottom:550.855800px;}
.y22b{bottom:565.518300px;}
.y24{bottom:569.501100px;}
.y15f{bottom:577.985400px;}
.y58{bottom:577.992300px;}
.y1c7{bottom:579.352800px;}
.y22a{bottom:591.024300px;}
.y23{bottom:592.007100px;}
.y15e{bottom:606.482400px;}
.y57{bottom:606.489300px;}
.y1f7{bottom:607.834800px;}
.y1c6{bottom:607.849800px;}
.y22{bottom:614.513100px;}
.y229{bottom:616.530300px;}
.y15d{bottom:634.979400px;}
.y56{bottom:634.986300px;}
.y1f6{bottom:636.331800px;}
.y1c5{bottom:636.346800px;}
.y21{bottom:637.019100px;}
.y228{bottom:642.036300px;}
.y15c{bottom:663.476400px;}
.y55{bottom:663.483300px;}
.y1f5{bottom:664.828800px;}
.y1c4{bottom:664.843800px;}
.y227{bottom:667.542300px;}
.y15b{bottom:691.973400px;}
.y54{bottom:691.980300px;}
.y226{bottom:693.048300px;}
.y1f4{bottom:693.325800px;}
.y1c3{bottom:693.340800px;}
.y225{bottom:718.554300px;}
.y20{bottom:719.523000px;}
.y15a{bottom:720.470400px;}
.y53{bottom:720.477300px;}
.y1f3{bottom:721.822800px;}
.y1c2{bottom:721.837800px;}
.y35{bottom:734.796600px;}
.y1f{bottom:740.523000px;}
.y224{bottom:744.060300px;}
.y159{bottom:748.967400px;}
.y52{bottom:748.974300px;}
.y1f2{bottom:750.319800px;}
.y1c1{bottom:750.334800px;}
.y1e{bottom:761.523000px;}
.y223{bottom:769.566300px;}
.y158{bottom:777.464400px;}
.y51{bottom:777.471300px;}
.y1f1{bottom:778.816800px;}
.y1c0{bottom:778.831800px;}
.y1d{bottom:782.523000px;}
.y222{bottom:795.072300px;}
.y1c{bottom:803.523000px;}
.y157{bottom:805.961400px;}
.y50{bottom:805.968300px;}
.y1f0{bottom:807.313800px;}
.y1bf{bottom:807.328800px;}
.y221{bottom:820.578300px;}
.y1b{bottom:831.826950px;}
.y156{bottom:834.458400px;}
.y4f{bottom:834.465300px;}
.y1be{bottom:835.825800px;}
.y220{bottom:846.084300px;}
.y1a{bottom:852.826950px;}
.y155{bottom:862.955400px;}
.y4e{bottom:862.962300px;}
.y1ef{bottom:864.313800px;}
.y1bd{bottom:864.322800px;}
.y21f{bottom:871.590300px;}
.y19{bottom:873.826950px;}
.y154{bottom:891.452400px;}
.y4d{bottom:891.459300px;}
.y18{bottom:894.826950px;}
.y21e{bottom:897.096300px;}
.y17{bottom:915.826950px;}
.y153{bottom:919.949400px;}
.y4c{bottom:919.956300px;}
.y1bc{bottom:921.316800px;}
.y21d{bottom:922.602300px;}
.y16{bottom:944.130750px;}
.y21c{bottom:948.108300px;}
.y152{bottom:948.446400px;}
.y4b{bottom:948.453300px;}
.y1bb{bottom:949.813800px;}
.y1ee{bottom:949.828800px;}
.y15{bottom:965.130750px;}
.y21b{bottom:973.614300px;}
.y151{bottom:976.943400px;}
.y4a{bottom:976.950300px;}
.y1ed{bottom:978.325800px;}
.y14{bottom:986.130750px;}
.y21a{bottom:999.120300px;}
.y150{bottom:1005.440400px;}
.y49{bottom:1005.447300px;}
.y1ba{bottom:1006.813800px;}
.y1ec{bottom:1006.822800px;}
.y13{bottom:1007.130750px;}
.y219{bottom:1024.626300px;}
.y12{bottom:1028.130750px;}
.y14f{bottom:1033.937400px;}
.y48{bottom:1033.944300px;}
.y1eb{bottom:1035.319800px;}
.y11{bottom:1049.130750px;}
.y218{bottom:1050.132300px;}
.y14e{bottom:1062.434400px;}
.y47{bottom:1062.441300px;}
.y1ea{bottom:1063.816800px;}
.y217{bottom:1075.638300px;}
.y10{bottom:1077.434850px;}
.y14d{bottom:1090.931400px;}
.y46{bottom:1090.938300px;}
.y1e9{bottom:1092.313800px;}
.y1b9{bottom:1092.346800px;}
.yf{bottom:1098.434850px;}
.y216{bottom:1101.144300px;}
.y32{bottom:1115.679300px;}
.y14c{bottom:1119.428400px;}
.ye{bottom:1119.434850px;}
.y45{bottom:1119.435300px;}
.y1b8{bottom:1120.843800px;}
.y215{bottom:1126.650300px;}
.y31{bottom:1132.179300px;}
.yd{bottom:1140.434850px;}
.y83{bottom:1141.725300px;}
.y14b{bottom:1147.925400px;}
.y44{bottom:1147.932300px;}
.y1e8{bottom:1149.313800px;}
.y1b7{bottom:1149.340800px;}
.y214{bottom:1152.156300px;}
.y68{bottom:1154.702250px;}
.y30{bottom:1155.083250px;}
.yac{bottom:1157.347800px;}
.yc{bottom:1161.434850px;}
.y197{bottom:1164.418200px;}
.y82{bottom:1170.222300px;}
.y2f{bottom:1171.583250px;}
.y14a{bottom:1176.422400px;}
.y43{bottom:1176.429300px;}
.y213{bottom:1177.662300px;}
.y1b6{bottom:1177.837800px;}
.yb{bottom:1182.434850px;}
.y196{bottom:1192.915200px;}
.y81{bottom:1198.719300px;}
.y212{bottom:1203.168300px;}
.y149{bottom:1204.919400px;}
.y42{bottom:1204.926300px;}
.y174{bottom:1206.334800px;}
.y3{bottom:1216.143600px;}
.y195{bottom:1221.412200px;}
.yaa{bottom:1224.067800px;}
.y211{bottom:1228.674300px;}
.y148{bottom:1233.416400px;}
.y41{bottom:1233.423300px;}
.y173{bottom:1234.831800px;}
.y2{bottom:1237.149600px;}
.yd3{bottom:1242.387300px;}
.y194{bottom:1249.909200px;}
.y11a{bottom:1252.097700px;}
.ya9{bottom:1252.564800px;}
.y210{bottom:1254.180300px;}
.y80{bottom:1255.711800px;}
.y38{bottom:1258.204800px;}
.y147{bottom:1261.913400px;}
.y40{bottom:1261.920300px;}
.y172{bottom:1263.328800px;}
.y1{bottom:1264.824000px;}
.y37{bottom:1276.204800px;}
.y193{bottom:1278.406200px;}
.y20f{bottom:1279.686300px;}
.y143{bottom:1279.706250px;}
.y119{bottom:1280.594700px;}
.ya8{bottom:1281.061800px;}
.ya{bottom:1283.022150px;}
.y7f{bottom:1284.219300px;}
.y146{bottom:1290.410400px;}
.y3f{bottom:1290.417300px;}
.y171{bottom:1291.825800px;}
.y5{bottom:1302.021150px;}
.y20e{bottom:1305.192300px;}
.y192{bottom:1306.903200px;}
.y36{bottom:1307.648850px;}
.y142{bottom:1308.203250px;}
.y118{bottom:1309.091700px;}
.ya7{bottom:1309.558800px;}
.y9{bottom:1316.726100px;}
.y3e{bottom:1318.914300px;}
.y170{bottom:1320.322800px;}
.y20d{bottom:1330.698300px;}
.y191{bottom:1335.400200px;}
.y141{bottom:1336.700250px;}
.y117{bottom:1337.588700px;}
.ya6{bottom:1338.055800px;}
.y4{bottom:1345.221150px;}
.y3d{bottom:1347.411300px;}
.y145{bottom:1347.418800px;}
.y16f{bottom:1348.819800px;}
.y3a{bottom:1354.993950px;}
.y20c{bottom:1356.204300px;}
.y8{bottom:1356.326100px;}
.y190{bottom:1363.897200px;}
.y140{bottom:1365.197250px;}
.yfd{bottom:1365.197700px;}
.y116{bottom:1366.085700px;}
.yd1{bottom:1366.100700px;}
.ya5{bottom:1366.552800px;}
.y7e{bottom:1369.767300px;}
.y16e{bottom:1377.316800px;}
.y20b{bottom:1381.710300px;}
.y18f{bottom:1392.394200px;}
.y13f{bottom:1393.694250px;}
.yfc{bottom:1393.694700px;}
.y115{bottom:1394.582700px;}
.y39{bottom:1394.593950px;}
.yd0{bottom:1394.597700px;}
.ya4{bottom:1395.049800px;}
.y7d{bottom:1398.264300px;}
.y3c{bottom:1404.411300px;}
.y16d{bottom:1405.813800px;}
.y20a{bottom:1407.216300px;}
.y18e{bottom:1420.891200px;}
.y13e{bottom:1422.191250px;}
.yfb{bottom:1422.191700px;}
.y114{bottom:1423.079700px;}
.ycf{bottom:1423.094700px;}
.ya3{bottom:1423.546800px;}
.y7c{bottom:1426.761300px;}
.y18d{bottom:1449.388200px;}
.y13d{bottom:1450.688250px;}
.yfa{bottom:1450.688700px;}
.y113{bottom:1451.576700px;}
.yce{bottom:1451.591700px;}
.ya2{bottom:1452.043800px;}
.y7b{bottom:1455.258300px;}
.y1b2{bottom:1473.845850px;}
.y18c{bottom:1477.885200px;}
.y13c{bottom:1479.185250px;}
.yf9{bottom:1479.185700px;}
.y112{bottom:1480.073700px;}
.ycd{bottom:1480.088700px;}
.ya1{bottom:1480.540800px;}
.y7a{bottom:1483.755300px;}
.y1b1{bottom:1502.342850px;}
.y18b{bottom:1506.382200px;}
.y13b{bottom:1507.682250px;}
.yf8{bottom:1507.682700px;}
.y111{bottom:1508.570700px;}
.ycc{bottom:1508.585700px;}
.ya0{bottom:1509.037800px;}
.y79{bottom:1512.252300px;}
.y1b0{bottom:1530.839850px;}
.y18a{bottom:1534.879200px;}
.y13a{bottom:1536.179250px;}
.yf7{bottom:1536.179700px;}
.y110{bottom:1537.067700px;}
.ycb{bottom:1537.082700px;}
.y9f{bottom:1537.534800px;}
.y78{bottom:1540.749300px;}
.y1af{bottom:1559.336850px;}
.y189{bottom:1563.376200px;}
.y139{bottom:1564.676250px;}
.yf6{bottom:1564.676700px;}
.y10f{bottom:1565.564700px;}
.yca{bottom:1565.579700px;}
.y9e{bottom:1566.031800px;}
.y77{bottom:1569.246300px;}
.y1ae{bottom:1587.833850px;}
.y188{bottom:1591.873200px;}
.y138{bottom:1593.173250px;}
.yf5{bottom:1593.173700px;}
.y10e{bottom:1594.061700px;}
.yc9{bottom:1594.076700px;}
.y9d{bottom:1594.528800px;}
.y76{bottom:1597.743300px;}
.y1ad{bottom:1616.330850px;}
.y137{bottom:1621.670250px;}
.yf4{bottom:1621.670700px;}
.y10d{bottom:1622.558700px;}
.yc8{bottom:1622.573700px;}
.y9c{bottom:1623.025800px;}
.y75{bottom:1626.240300px;}
.y187{bottom:1628.877150px;}
.y1ac{bottom:1644.827850px;}
.y136{bottom:1650.167250px;}
.yf3{bottom:1650.167700px;}
.y10c{bottom:1651.055700px;}
.yc7{bottom:1651.070700px;}
.y9b{bottom:1651.522800px;}
.y74{bottom:1654.737300px;}
.y1ab{bottom:1673.324850px;}
.y6b{bottom:1678.110150px;}
.y135{bottom:1678.664250px;}
.yf2{bottom:1678.664700px;}
.y10b{bottom:1679.552700px;}
.yc6{bottom:1679.567700px;}
.y9a{bottom:1680.019800px;}
.y73{bottom:1683.234300px;}
.y6a{bottom:1696.110150px;}
.y1aa{bottom:1701.821850px;}
.y134{bottom:1707.161250px;}
.yf1{bottom:1707.161700px;}
.y10a{bottom:1708.049700px;}
.yc5{bottom:1708.064700px;}
.y99{bottom:1708.516800px;}
.y186{bottom:1709.925150px;}
.y72{bottom:1711.731300px;}
.y69{bottom:1727.554350px;}
.y1a9{bottom:1730.318850px;}
.y133{bottom:1735.658250px;}
.yf0{bottom:1735.658700px;}
.y109{bottom:1736.546700px;}
.yc4{bottom:1736.561700px;}
.y98{bottom:1737.013800px;}
.y185{bottom:1738.422150px;}
.y71{bottom:1740.228300px;}
.y1a8{bottom:1758.815850px;}
.y132{bottom:1764.155250px;}
.yef{bottom:1764.155700px;}
.y108{bottom:1765.043700px;}
.yc3{bottom:1765.058700px;}
.y97{bottom:1765.510800px;}
.y184{bottom:1766.919150px;}
.y70{bottom:1768.725300px;}
.y6d{bottom:1774.899450px;}
.y1a7{bottom:1787.312850px;}
.y131{bottom:1792.652250px;}
.yee{bottom:1792.652700px;}
.y107{bottom:1793.540700px;}
.yc2{bottom:1793.555700px;}
.y96{bottom:1794.007800px;}
.y183{bottom:1795.416150px;}
.y6f{bottom:1797.222300px;}
.y6c{bottom:1814.499450px;}
.y1a4{bottom:1814.906850px;}
.y130{bottom:1821.149250px;}
.yed{bottom:1821.149700px;}
.y106{bottom:1822.037700px;}
.yc1{bottom:1822.052700px;}
.y95{bottom:1822.504800px;}
.y182{bottom:1823.913150px;}
.y1a6{bottom:1824.316800px;}
.y6e{bottom:1825.719300px;}
.y1a3{bottom:1843.403850px;}
.y19b{bottom:1845.354300px;}
.y12f{bottom:1849.646250px;}
.yec{bottom:1849.646700px;}
.y105{bottom:1850.534700px;}
.yc0{bottom:1850.549700px;}
.y94{bottom:1851.001800px;}
.y181{bottom:1852.410150px;}
.y19a{bottom:1863.354300px;}
.y1a2{bottom:1871.900850px;}
.y12e{bottom:1878.143250px;}
.yeb{bottom:1878.143700px;}
.y104{bottom:1879.031700px;}
.ybf{bottom:1879.046700px;}
.y93{bottom:1879.498800px;}
.y180{bottom:1880.907150px;}
.y199{bottom:1894.798350px;}
.y1a1{bottom:1900.397850px;}
.y12d{bottom:1906.640250px;}
.yea{bottom:1906.640700px;}
.y103{bottom:1907.528700px;}
.ybe{bottom:1907.543700px;}
.y92{bottom:1907.995800px;}
.y17f{bottom:1909.404150px;}
.y1a0{bottom:1928.894850px;}
.y12c{bottom:1935.137250px;}
.ye9{bottom:1935.137700px;}
.y102{bottom:1936.025700px;}
.ybd{bottom:1936.040700px;}
.y91{bottom:1936.492800px;}
.y17e{bottom:1937.901150px;}
.y19d{bottom:1942.143300px;}
.y19f{bottom:1957.391850px;}
.y12b{bottom:1963.634250px;}
.ye8{bottom:1963.634700px;}
.y101{bottom:1964.522700px;}
.ybc{bottom:1964.537700px;}
.y90{bottom:1964.989800px;}
.y17d{bottom:1966.398150px;}
.y19c{bottom:1981.743300px;}
.y12a{bottom:1992.131250px;}
.ye7{bottom:1992.131700px;}
.y100{bottom:1993.019700px;}
.ybb{bottom:1993.034700px;}
.y8f{bottom:1993.486800px;}
.y19e{bottom:1994.395800px;}
.y17c{bottom:1994.895150px;}
.y87{bottom:1995.544800px;}
.y86{bottom:2013.544800px;}
.y129{bottom:2020.628250px;}
.ye6{bottom:2020.628700px;}
.yff{bottom:2021.516700px;}
.yba{bottom:2021.531700px;}
.y8e{bottom:2021.983800px;}
.y17b{bottom:2023.392150px;}
.y85{bottom:2047.051950px;}
.y128{bottom:2049.125250px;}
.ye5{bottom:2049.125700px;}
.yb9{bottom:2050.028700px;}
.y8d{bottom:2050.480800px;}
.y17a{bottom:2051.889150px;}
.y127{bottom:2077.622250px;}
.ye4{bottom:2077.622700px;}
.yb8{bottom:2078.525700px;}
.y8c{bottom:2078.977800px;}
.y179{bottom:2080.386150px;}
.y89{bottom:2103.151350px;}
.yaf{bottom:2103.307050px;}
.y126{bottom:2106.119250px;}
.ye3{bottom:2106.119700px;}
.yb7{bottom:2107.022700px;}
.y8b{bottom:2107.474800px;}
.y178{bottom:2108.883150px;}
.yae{bottom:2121.307050px;}
.y125{bottom:2134.616250px;}
.ye2{bottom:2134.616700px;}
.yb6{bottom:2135.519700px;}
.y177{bottom:2137.380150px;}
.y88{bottom:2142.751350px;}
.yad{bottom:2152.751100px;}
.y124{bottom:2163.113250px;}
.ye1{bottom:2163.113700px;}
.yb5{bottom:2164.016700px;}
.y8a{bottom:2164.474800px;}
.y176{bottom:2165.877150px;}
.y123{bottom:2191.610250px;}
.ye0{bottom:2191.610700px;}
.yb4{bottom:2192.513700px;}
.yb1{bottom:2200.096350px;}
.y122{bottom:2220.107250px;}
.ydf{bottom:2220.107700px;}
.yb0{bottom:2239.696350px;}
.y121{bottom:2248.604250px;}
.yde{bottom:2248.604700px;}
.yb3{bottom:2249.513700px;}
.yd6{bottom:2273.385750px;}
.y120{bottom:2277.101250px;}
.ydd{bottom:2277.101700px;}
.yd5{bottom:2291.385750px;}
.y11f{bottom:2305.598250px;}
.ydc{bottom:2305.598700px;}
.yd4{bottom:2322.829800px;}
.y11e{bottom:2334.095250px;}
.ydb{bottom:2334.095700px;}
.y11d{bottom:2362.592250px;}
.yda{bottom:2362.592700px;}
.yd8{bottom:2370.174900px;}
.yd7{bottom:2409.774900px;}
.y11c{bottom:2419.592250px;}
.yd9{bottom:2419.592700px;}
.h9{height:50.400000px;}
.ha{height:56.700000px;}
.h5{height:63.000000px;}
.h8{height:69.300000px;}
.h2{height:75.600000px;}
.h16{height:81.900000px;}
.h17{height:82.788000px;}
.h7{height:88.200000px;}
.hb{height:94.500000px;}
.h1{height:113.400000px;}
.h6{height:138.600000px;}
.h4{height:151.200000px;}
.h3{height:157.500000px;}
.h0{height:1536.000000px;}
.hc{height:1955.910000px;}
.hd{height:1956.000000px;}
.h14{height:2125.980000px;}
.h15{height:2126.250000px;}
.hf{height:2295.750000px;}
.he{height:2296.065000px;}
.h10{height:2381.100000px;}
.h11{height:2381.250000px;}
.h12{height:2551.185000px;}
.h13{height:2551.500000px;}
.w0{width:1152.000000px;}
.x0{left:0.000000px;}
.xb{left:29.763750px;}
.xa{left:34.015800px;}
.x1{left:36.000000px;}
.xc{left:130.663050px;}
.xd{left:150.463050px;}
.xe{left:172.063050px;}
.x7{left:233.858250px;}
.x8{left:242.362200px;}
.xf{left:250.582650px;}
.x4{left:265.334850px;}
.x6{left:279.115800px;}
.x10{left:280.339650px;}
.x2{left:300.222000px;}
.x1d{left:301.339650px;}
.x1e{left:310.096650px;}
.x1a{left:319.978800px;}
.x5{left:325.163850px;}
.x3{left:362.232000px;}
.x18{left:395.174550px;}
.x11{left:425.430000px;}
.x19{left:431.180850px;}
.x1b{left:435.410700px;}
.x1c{left:436.670550px;}
.x15{left:487.808400px;}
.x12{left:489.113400px;}
.x14{left:525.805950px;}
.x17{left:531.666600px;}
.x16{left:533.761350px;}
.x13{left:1101.951450px;}
.x9{left:1103.106450px;}
@media print{
.v2{vertical-align:-24.864000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.877333pt;}
.v1{vertical-align:24.810667pt;}
.ls6{letter-spacing:-13.333333pt;}
.lsb{letter-spacing:-11.733333pt;}
.ls20{letter-spacing:-6.933333pt;}
.ls7{letter-spacing:-5.333333pt;}
.ls18{letter-spacing:-4.629333pt;}
.ls1e{letter-spacing:-3.658667pt;}
.lsa{letter-spacing:-1.642667pt;}
.ls1f{letter-spacing:-1.568000pt;}
.lsd{letter-spacing:-1.493333pt;}
.ls22{letter-spacing:-1.386667pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls19{letter-spacing:-0.970667pt;}
.ls14{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls23{letter-spacing:-0.346667pt;}
.ls15{letter-spacing:-0.298667pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.478389pt;}
.ls1d{letter-spacing:0.478923pt;}
.lsf{letter-spacing:0.522667pt;}
.ls16{letter-spacing:0.597333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls1b{letter-spacing:0.821333pt;}
.ls4{letter-spacing:1.200000pt;}
.ls3{letter-spacing:1.493333pt;}
.lse{letter-spacing:2.000000pt;}
.ls9{letter-spacing:2.320000pt;}
.ls13{letter-spacing:2.800000pt;}
.ls8{letter-spacing:8.800000pt;}
.ls0{letter-spacing:10.000000pt;}
.ls2{letter-spacing:17.130667pt;}
.ls1a{letter-spacing:31.136000pt;}
.ws5{word-spacing:-49.200000pt;}
.ws3{word-spacing:-33.920000pt;}
.ws30{word-spacing:-21.429333pt;}
.ws0{word-spacing:-21.216000pt;}
.ws28{word-spacing:-20.832000pt;}
.ws14{word-spacing:-20.608000pt;}
.ws2e{word-spacing:-20.085333pt;}
.ws19{word-spacing:-20.010667pt;}
.ws21{word-spacing:-19.488000pt;}
.ws37{word-spacing:-19.344000pt;}
.ws36{word-spacing:-19.136000pt;}
.ws3d{word-spacing:-18.789333pt;}
.ws2f{word-spacing:-17.173333pt;}
.ws13{word-spacing:-15.040000pt;}
.ws12{word-spacing:-13.493333pt;}
.ws4{word-spacing:-12.965333pt;}
.ws20{word-spacing:-12.145056pt;}
.ws3e{word-spacing:-11.277552pt;}
.ws1{word-spacing:-10.133333pt;}
.wsf{word-spacing:-8.917333pt;}
.ws3c{word-spacing:-3.674667pt;}
.ws1a{word-spacing:-2.613333pt;}
.ws1b{word-spacing:-2.320000pt;}
.ws35{word-spacing:-2.090667pt;}
.ws27{word-spacing:-2.000000pt;}
.ws23{word-spacing:-1.717333pt;}
.ws32{word-spacing:-1.642667pt;}
.wsb{word-spacing:-1.525333pt;}
.ws34{word-spacing:-0.821333pt;}
.ws29{word-spacing:-0.597333pt;}
.ws1d{word-spacing:-0.522667pt;}
.ws2a{word-spacing:-0.448000pt;}
.ws17{word-spacing:-0.400000pt;}
.ws7{word-spacing:-0.373333pt;}
.wsd{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.117333pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.176000pt;}
.ws1e{word-spacing:0.224000pt;}
.ws26{word-spacing:0.298667pt;}
.ws24{word-spacing:0.373333pt;}
.ws41{word-spacing:0.485333pt;}
.ws18{word-spacing:0.597333pt;}
.ws25{word-spacing:0.746667pt;}
.wsa{word-spacing:0.938667pt;}
.ws2c{word-spacing:0.970667pt;}
.ws9{word-spacing:1.056000pt;}
.ws22{word-spacing:1.120000pt;}
.ws8{word-spacing:1.173333pt;}
.ws3f{word-spacing:1.344000pt;}
.ws40{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.493333pt;}
.ws38{word-spacing:1.568000pt;}
.ws15{word-spacing:1.642667pt;}
.ws33{word-spacing:2.165333pt;}
.ws31{word-spacing:3.285333pt;}
.ws2b{word-spacing:4.629333pt;}
.wse{word-spacing:5.333333pt;}
.ws3b{word-spacing:5.477333pt;}
.ws2d{word-spacing:6.197333pt;}
.ws3a{word-spacing:10.677333pt;}
.ws10{word-spacing:11.616000pt;}
.ws39{word-spacing:12.688000pt;}
.ws2{word-spacing:13.200000pt;}
.ws1f{word-spacing:21.200000pt;}
.ws16{word-spacing:22.400000pt;}
._1c{margin-left:-95.498667pt;}
._15{margin-left:-19.120000pt;}
._19{margin-left:-13.504000pt;}
._16{margin-left:-12.139733pt;}
._18{margin-left:-11.010667pt;}
._3{margin-left:-8.000000pt;}
._5{margin-left:-6.405333pt;}
._b{margin-left:-4.954667pt;}
._1{margin-left:-3.968000pt;}
._11{margin-left:-3.074133pt;}
._2{margin-left:-2.176000pt;}
._0{margin-left:-0.960000pt;}
._9{width:1.381867pt;}
._a{width:2.527467pt;}
._12{width:3.639467pt;}
._c{width:4.842667pt;}
._10{width:6.601600pt;}
._f{width:8.119467pt;}
._13{width:9.300267pt;}
._d{width:10.512000pt;}
._e{width:11.733333pt;}
._4{width:12.666667pt;}
._1a{width:14.177067pt;}
._1d{width:15.369600pt;}
._8{width:16.778667pt;}
._1e{width:20.764800pt;}
._17{width:21.920000pt;}
._14{width:23.376000pt;}
._1b{width:24.400000pt;}
._7{width:43.218667pt;}
._6{width:147.869867pt;}
.fsd{font-size:40.421333pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:43.530667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fsa{font-size:80.000000pt;}
.fs0{font-size:96.000000pt;}
.fs5{font-size:117.333333pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:16.089867pt;}
.y6{bottom:34.756533pt;}
.y3b{bottom:56.692933pt;}
.y84{bottom:57.711200pt;}
.y1e7{bottom:57.714933pt;}
.y67{bottom:57.730933pt;}
.y1b3{bottom:58.450800pt;}
.y209{bottom:58.839333pt;}
.y11b{bottom:59.275600pt;}
.y16c{bottom:59.456800pt;}
.yfe{bottom:61.868800pt;}
.yab{bottom:63.437067pt;}
.y175{bottom:65.480267pt;}
.yb2{bottom:67.483333pt;}
.y1b4{bottom:70.687600pt;}
.y23e{bottom:71.914933pt;}
.y24d{bottom:72.112267pt;}
.yd2{bottom:74.343467pt;}
.y198{bottom:74.349467pt;}
.y1b5{bottom:74.363467pt;}
.y144{bottom:75.842267pt;}
.y208{bottom:81.511333pt;}
.y1e6{bottom:83.045600pt;}
.y66{bottom:83.061600pt;}
.y16b{bottom:84.787467pt;}
.y1a5{bottom:89.532933pt;}
.y34{bottom:93.102667pt;}
.y23d{bottom:94.586933pt;}
.y24c{bottom:94.784267pt;}
.y207{bottom:104.183333pt;}
.y1e5{bottom:108.376267pt;}
.y65{bottom:108.392267pt;}
.y33{bottom:109.102667pt;}
.y16a{bottom:110.118133pt;}
.y23c{bottom:117.258933pt;}
.y24b{bottom:117.456267pt;}
.y206{bottom:126.855333pt;}
.y1e4{bottom:133.706933pt;}
.y64{bottom:133.722933pt;}
.y1d6{bottom:135.020267pt;}
.y23b{bottom:139.930933pt;}
.y24a{bottom:140.128267pt;}
.y169{bottom:143.010533pt;}
.y205{bottom:149.527333pt;}
.y1e3{bottom:159.037600pt;}
.y63{bottom:159.053600pt;}
.y1d5{bottom:160.350933pt;}
.y23a{bottom:162.602933pt;}
.y249{bottom:162.800267pt;}
.y204{bottom:172.199333pt;}
.y1e2{bottom:184.368267pt;}
.y62{bottom:184.384267pt;}
.y239{bottom:185.274933pt;}
.y248{bottom:185.472267pt;}
.y1d4{bottom:185.681600pt;}
.y203{bottom:194.871333pt;}
.y238{bottom:207.946933pt;}
.y247{bottom:208.144267pt;}
.y61{bottom:209.714933pt;}
.y1e1{bottom:209.802933pt;}
.y1d3{bottom:211.012267pt;}
.y168{bottom:215.026533pt;}
.y202{bottom:217.543333pt;}
.y237{bottom:230.618933pt;}
.y246{bottom:230.816267pt;}
.y60{bottom:235.045600pt;}
.y1e0{bottom:235.133600pt;}
.y1d2{bottom:236.342933pt;}
.y201{bottom:240.215333pt;}
.y167{bottom:240.357200pt;}
.y236{bottom:253.290933pt;}
.y245{bottom:253.488267pt;}
.y5f{bottom:260.376267pt;}
.y1df{bottom:260.464267pt;}
.y1d1{bottom:261.673600pt;}
.y200{bottom:262.887333pt;}
.y166{bottom:265.687867pt;}
.y235{bottom:275.962933pt;}
.y244{bottom:276.160267pt;}
.y1ff{bottom:285.559333pt;}
.y5e{bottom:285.706933pt;}
.y1de{bottom:285.794933pt;}
.y1d0{bottom:287.004267pt;}
.y165{bottom:291.018533pt;}
.y2e{bottom:298.616533pt;}
.y234{bottom:298.634933pt;}
.y243{bottom:298.832267pt;}
.y1fe{bottom:308.231333pt;}
.y5d{bottom:311.037600pt;}
.y1dd{bottom:311.125600pt;}
.y1cf{bottom:312.334933pt;}
.y164{bottom:316.349200pt;}
.y2d{bottom:318.621867pt;}
.y233{bottom:321.306933pt;}
.y242{bottom:321.504267pt;}
.y1fd{bottom:330.903333pt;}
.y5c{bottom:336.368267pt;}
.y1dc{bottom:336.456267pt;}
.y1ce{bottom:337.665600pt;}
.y2c{bottom:338.627200pt;}
.y163{bottom:341.679867pt;}
.y232{bottom:343.978933pt;}
.y241{bottom:344.176267pt;}
.y1fc{bottom:353.575333pt;}
.y2b{bottom:358.632533pt;}
.y5b{bottom:361.698933pt;}
.y1db{bottom:361.786933pt;}
.y1cd{bottom:362.996267pt;}
.y231{bottom:366.650933pt;}
.y240{bottom:366.848267pt;}
.y162{bottom:367.010533pt;}
.y1fb{bottom:376.247333pt;}
.y2a{bottom:378.637867pt;}
.y1da{bottom:387.117600pt;}
.y1cc{bottom:388.326933pt;}
.y230{bottom:389.322933pt;}
.y23f{bottom:389.520267pt;}
.y29{bottom:398.643200pt;}
.y1fa{bottom:398.919333pt;}
.y22f{bottom:411.994933pt;}
.y5a{bottom:412.365600pt;}
.y1d9{bottom:412.448267pt;}
.y1cb{bottom:413.657600pt;}
.y161{bottom:417.677200pt;}
.y28{bottom:418.648533pt;}
.y1f9{bottom:421.591333pt;}
.y22e{bottom:434.666933pt;}
.y1d8{bottom:437.778933pt;}
.y1ca{bottom:438.988267pt;}
.y27{bottom:446.207200pt;}
.y22d{bottom:457.338933pt;}
.y1d7{bottom:463.109600pt;}
.y1c9{bottom:464.318933pt;}
.y26{bottom:466.212533pt;}
.y1f8{bottom:469.591333pt;}
.y22c{bottom:480.010933pt;}
.y25{bottom:486.217867pt;}
.y160{bottom:488.434133pt;}
.y59{bottom:488.440267pt;}
.y1c8{bottom:489.649600pt;}
.y22b{bottom:502.682933pt;}
.y24{bottom:506.223200pt;}
.y15f{bottom:513.764800pt;}
.y58{bottom:513.770933pt;}
.y1c7{bottom:514.980267pt;}
.y22a{bottom:525.354933pt;}
.y23{bottom:526.228533pt;}
.y15e{bottom:539.095467pt;}
.y57{bottom:539.101600pt;}
.y1f7{bottom:540.297600pt;}
.y1c6{bottom:540.310933pt;}
.y22{bottom:546.233867pt;}
.y229{bottom:548.026933pt;}
.y15d{bottom:564.426133pt;}
.y56{bottom:564.432267pt;}
.y1f6{bottom:565.628267pt;}
.y1c5{bottom:565.641600pt;}
.y21{bottom:566.239200pt;}
.y228{bottom:570.698933pt;}
.y15c{bottom:589.756800pt;}
.y55{bottom:589.762933pt;}
.y1f5{bottom:590.958933pt;}
.y1c4{bottom:590.972267pt;}
.y227{bottom:593.370933pt;}
.y15b{bottom:615.087467pt;}
.y54{bottom:615.093600pt;}
.y226{bottom:616.042933pt;}
.y1f4{bottom:616.289600pt;}
.y1c3{bottom:616.302933pt;}
.y225{bottom:638.714933pt;}
.y20{bottom:639.576000pt;}
.y15a{bottom:640.418133pt;}
.y53{bottom:640.424267pt;}
.y1f3{bottom:641.620267pt;}
.y1c2{bottom:641.633600pt;}
.y35{bottom:653.152533pt;}
.y1f{bottom:658.242667pt;}
.y224{bottom:661.386933pt;}
.y159{bottom:665.748800pt;}
.y52{bottom:665.754933pt;}
.y1f2{bottom:666.950933pt;}
.y1c1{bottom:666.964267pt;}
.y1e{bottom:676.909333pt;}
.y223{bottom:684.058933pt;}
.y158{bottom:691.079467pt;}
.y51{bottom:691.085600pt;}
.y1f1{bottom:692.281600pt;}
.y1c0{bottom:692.294933pt;}
.y1d{bottom:695.576000pt;}
.y222{bottom:706.730933pt;}
.y1c{bottom:714.242667pt;}
.y157{bottom:716.410133pt;}
.y50{bottom:716.416267pt;}
.y1f0{bottom:717.612267pt;}
.y1bf{bottom:717.625600pt;}
.y221{bottom:729.402933pt;}
.y1b{bottom:739.401733pt;}
.y156{bottom:741.740800pt;}
.y4f{bottom:741.746933pt;}
.y1be{bottom:742.956267pt;}
.y220{bottom:752.074933pt;}
.y1a{bottom:758.068400pt;}
.y155{bottom:767.071467pt;}
.y4e{bottom:767.077600pt;}
.y1ef{bottom:768.278933pt;}
.y1bd{bottom:768.286933pt;}
.y21f{bottom:774.746933pt;}
.y19{bottom:776.735067pt;}
.y154{bottom:792.402133pt;}
.y4d{bottom:792.408267pt;}
.y18{bottom:795.401733pt;}
.y21e{bottom:797.418933pt;}
.y17{bottom:814.068400pt;}
.y153{bottom:817.732800pt;}
.y4c{bottom:817.738933pt;}
.y1bc{bottom:818.948267pt;}
.y21d{bottom:820.090933pt;}
.y16{bottom:839.227333pt;}
.y21c{bottom:842.762933pt;}
.y152{bottom:843.063467pt;}
.y4b{bottom:843.069600pt;}
.y1bb{bottom:844.278933pt;}
.y1ee{bottom:844.292267pt;}
.y15{bottom:857.894000pt;}
.y21b{bottom:865.434933pt;}
.y151{bottom:868.394133pt;}
.y4a{bottom:868.400267pt;}
.y1ed{bottom:869.622933pt;}
.y14{bottom:876.560667pt;}
.y21a{bottom:888.106933pt;}
.y150{bottom:893.724800pt;}
.y49{bottom:893.730933pt;}
.y1ba{bottom:894.945600pt;}
.y1ec{bottom:894.953600pt;}
.y13{bottom:895.227333pt;}
.y219{bottom:910.778933pt;}
.y12{bottom:913.894000pt;}
.y14f{bottom:919.055467pt;}
.y48{bottom:919.061600pt;}
.y1eb{bottom:920.284267pt;}
.y11{bottom:932.560667pt;}
.y218{bottom:933.450933pt;}
.y14e{bottom:944.386133pt;}
.y47{bottom:944.392267pt;}
.y1ea{bottom:945.614933pt;}
.y217{bottom:956.122933pt;}
.y10{bottom:957.719867pt;}
.y14d{bottom:969.716800pt;}
.y46{bottom:969.722933pt;}
.y1e9{bottom:970.945600pt;}
.y1b9{bottom:970.974933pt;}
.yf{bottom:976.386533pt;}
.y216{bottom:978.794933pt;}
.y32{bottom:991.714933pt;}
.y14c{bottom:995.047467pt;}
.ye{bottom:995.053200pt;}
.y45{bottom:995.053600pt;}
.y1b8{bottom:996.305600pt;}
.y215{bottom:1001.466933pt;}
.y31{bottom:1006.381600pt;}
.yd{bottom:1013.719867pt;}
.y83{bottom:1014.866933pt;}
.y14b{bottom:1020.378133pt;}
.y44{bottom:1020.384267pt;}
.y1e8{bottom:1021.612267pt;}
.y1b7{bottom:1021.636267pt;}
.y214{bottom:1024.138933pt;}
.y68{bottom:1026.402000pt;}
.y30{bottom:1026.740667pt;}
.yac{bottom:1028.753600pt;}
.yc{bottom:1032.386533pt;}
.y197{bottom:1035.038400pt;}
.y82{bottom:1040.197600pt;}
.y2f{bottom:1041.407333pt;}
.y14a{bottom:1045.708800pt;}
.y43{bottom:1045.714933pt;}
.y213{bottom:1046.810933pt;}
.y1b6{bottom:1046.966933pt;}
.yb{bottom:1051.053200pt;}
.y196{bottom:1060.369067pt;}
.y81{bottom:1065.528267pt;}
.y212{bottom:1069.482933pt;}
.y149{bottom:1071.039467pt;}
.y42{bottom:1071.045600pt;}
.y174{bottom:1072.297600pt;}
.y3{bottom:1081.016533pt;}
.y195{bottom:1085.699733pt;}
.yaa{bottom:1088.060267pt;}
.y211{bottom:1092.154933pt;}
.y148{bottom:1096.370133pt;}
.y41{bottom:1096.376267pt;}
.y173{bottom:1097.628267pt;}
.y2{bottom:1099.688533pt;}
.yd3{bottom:1104.344267pt;}
.y194{bottom:1111.030400pt;}
.y11a{bottom:1112.975733pt;}
.ya9{bottom:1113.390933pt;}
.y210{bottom:1114.826933pt;}
.y80{bottom:1116.188267pt;}
.y38{bottom:1118.404267pt;}
.y147{bottom:1121.700800pt;}
.y40{bottom:1121.706933pt;}
.y172{bottom:1122.958933pt;}
.y1{bottom:1124.288000pt;}
.y37{bottom:1134.404267pt;}
.y193{bottom:1136.361067pt;}
.y20f{bottom:1137.498933pt;}
.y143{bottom:1137.516667pt;}
.y119{bottom:1138.306400pt;}
.ya8{bottom:1138.721600pt;}
.ya{bottom:1140.464133pt;}
.y7f{bottom:1141.528267pt;}
.y146{bottom:1147.031467pt;}
.y3f{bottom:1147.037600pt;}
.y171{bottom:1148.289600pt;}
.y5{bottom:1157.352133pt;}
.y20e{bottom:1160.170933pt;}
.y192{bottom:1161.691733pt;}
.y36{bottom:1162.354533pt;}
.y142{bottom:1162.847333pt;}
.y118{bottom:1163.637067pt;}
.ya7{bottom:1164.052267pt;}
.y9{bottom:1170.423200pt;}
.y3e{bottom:1172.368267pt;}
.y170{bottom:1173.620267pt;}
.y20d{bottom:1182.842933pt;}
.y191{bottom:1187.022400pt;}
.y141{bottom:1188.178000pt;}
.y117{bottom:1188.967733pt;}
.ya6{bottom:1189.382933pt;}
.y4{bottom:1195.752133pt;}
.y3d{bottom:1197.698933pt;}
.y145{bottom:1197.705600pt;}
.y16f{bottom:1198.950933pt;}
.y3a{bottom:1204.439067pt;}
.y20c{bottom:1205.514933pt;}
.y8{bottom:1205.623200pt;}
.y190{bottom:1212.353067pt;}
.y140{bottom:1213.508667pt;}
.yfd{bottom:1213.509067pt;}
.y116{bottom:1214.298400pt;}
.yd1{bottom:1214.311733pt;}
.ya5{bottom:1214.713600pt;}
.y7e{bottom:1217.570933pt;}
.y16e{bottom:1224.281600pt;}
.y20b{bottom:1228.186933pt;}
.y18f{bottom:1237.683733pt;}
.y13f{bottom:1238.839333pt;}
.yfc{bottom:1238.839733pt;}
.y115{bottom:1239.629067pt;}
.y39{bottom:1239.639067pt;}
.yd0{bottom:1239.642400pt;}
.ya4{bottom:1240.044267pt;}
.y7d{bottom:1242.901600pt;}
.y3c{bottom:1248.365600pt;}
.y16d{bottom:1249.612267pt;}
.y20a{bottom:1250.858933pt;}
.y18e{bottom:1263.014400pt;}
.y13e{bottom:1264.170000pt;}
.yfb{bottom:1264.170400pt;}
.y114{bottom:1264.959733pt;}
.ycf{bottom:1264.973067pt;}
.ya3{bottom:1265.374933pt;}
.y7c{bottom:1268.232267pt;}
.y18d{bottom:1288.345067pt;}
.y13d{bottom:1289.500667pt;}
.yfa{bottom:1289.501067pt;}
.y113{bottom:1290.290400pt;}
.yce{bottom:1290.303733pt;}
.ya2{bottom:1290.705600pt;}
.y7b{bottom:1293.562933pt;}
.y1b2{bottom:1310.085200pt;}
.y18c{bottom:1313.675733pt;}
.y13c{bottom:1314.831333pt;}
.yf9{bottom:1314.831733pt;}
.y112{bottom:1315.621067pt;}
.ycd{bottom:1315.634400pt;}
.ya1{bottom:1316.036267pt;}
.y7a{bottom:1318.893600pt;}
.y1b1{bottom:1335.415867pt;}
.y18b{bottom:1339.006400pt;}
.y13b{bottom:1340.162000pt;}
.yf8{bottom:1340.162400pt;}
.y111{bottom:1340.951733pt;}
.ycc{bottom:1340.965067pt;}
.ya0{bottom:1341.366933pt;}
.y79{bottom:1344.224267pt;}
.y1b0{bottom:1360.746533pt;}
.y18a{bottom:1364.337067pt;}
.y13a{bottom:1365.492667pt;}
.yf7{bottom:1365.493067pt;}
.y110{bottom:1366.282400pt;}
.ycb{bottom:1366.295733pt;}
.y9f{bottom:1366.697600pt;}
.y78{bottom:1369.554933pt;}
.y1af{bottom:1386.077200pt;}
.y189{bottom:1389.667733pt;}
.y139{bottom:1390.823333pt;}
.yf6{bottom:1390.823733pt;}
.y10f{bottom:1391.613067pt;}
.yca{bottom:1391.626400pt;}
.y9e{bottom:1392.028267pt;}
.y77{bottom:1394.885600pt;}
.y1ae{bottom:1411.407867pt;}
.y188{bottom:1414.998400pt;}
.y138{bottom:1416.154000pt;}
.yf5{bottom:1416.154400pt;}
.y10e{bottom:1416.943733pt;}
.yc9{bottom:1416.957067pt;}
.y9d{bottom:1417.358933pt;}
.y76{bottom:1420.216267pt;}
.y1ad{bottom:1436.738533pt;}
.y137{bottom:1441.484667pt;}
.yf4{bottom:1441.485067pt;}
.y10d{bottom:1442.274400pt;}
.yc8{bottom:1442.287733pt;}
.y9c{bottom:1442.689600pt;}
.y75{bottom:1445.546933pt;}
.y187{bottom:1447.890800pt;}
.y1ac{bottom:1462.069200pt;}
.y136{bottom:1466.815333pt;}
.yf3{bottom:1466.815733pt;}
.y10c{bottom:1467.605067pt;}
.yc7{bottom:1467.618400pt;}
.y9b{bottom:1468.020267pt;}
.y74{bottom:1470.877600pt;}
.y1ab{bottom:1487.399867pt;}
.y6b{bottom:1491.653467pt;}
.y135{bottom:1492.146000pt;}
.yf2{bottom:1492.146400pt;}
.y10b{bottom:1492.935733pt;}
.yc6{bottom:1492.949067pt;}
.y9a{bottom:1493.350933pt;}
.y73{bottom:1496.208267pt;}
.y6a{bottom:1507.653467pt;}
.y1aa{bottom:1512.730533pt;}
.y134{bottom:1517.476667pt;}
.yf1{bottom:1517.477067pt;}
.y10a{bottom:1518.266400pt;}
.yc5{bottom:1518.279733pt;}
.y99{bottom:1518.681600pt;}
.y186{bottom:1519.933467pt;}
.y72{bottom:1521.538933pt;}
.y69{bottom:1535.603867pt;}
.y1a9{bottom:1538.061200pt;}
.y133{bottom:1542.807333pt;}
.yf0{bottom:1542.807733pt;}
.y109{bottom:1543.597067pt;}
.yc4{bottom:1543.610400pt;}
.y98{bottom:1544.012267pt;}
.y185{bottom:1545.264133pt;}
.y71{bottom:1546.869600pt;}
.y1a8{bottom:1563.391867pt;}
.y132{bottom:1568.138000pt;}
.yef{bottom:1568.138400pt;}
.y108{bottom:1568.927733pt;}
.yc3{bottom:1568.941067pt;}
.y97{bottom:1569.342933pt;}
.y184{bottom:1570.594800pt;}
.y70{bottom:1572.200267pt;}
.y6d{bottom:1577.688400pt;}
.y1a7{bottom:1588.722533pt;}
.y131{bottom:1593.468667pt;}
.yee{bottom:1593.469067pt;}
.y107{bottom:1594.258400pt;}
.yc2{bottom:1594.271733pt;}
.y96{bottom:1594.673600pt;}
.y183{bottom:1595.925467pt;}
.y6f{bottom:1597.530933pt;}
.y6c{bottom:1612.888400pt;}
.y1a4{bottom:1613.250533pt;}
.y130{bottom:1618.799333pt;}
.yed{bottom:1618.799733pt;}
.y106{bottom:1619.589067pt;}
.yc1{bottom:1619.602400pt;}
.y95{bottom:1620.004267pt;}
.y182{bottom:1621.256133pt;}
.y1a6{bottom:1621.614933pt;}
.y6e{bottom:1622.861600pt;}
.y1a3{bottom:1638.581200pt;}
.y19b{bottom:1640.314933pt;}
.y12f{bottom:1644.130000pt;}
.yec{bottom:1644.130400pt;}
.y105{bottom:1644.919733pt;}
.yc0{bottom:1644.933067pt;}
.y94{bottom:1645.334933pt;}
.y181{bottom:1646.586800pt;}
.y19a{bottom:1656.314933pt;}
.y1a2{bottom:1663.911867pt;}
.y12e{bottom:1669.460667pt;}
.yeb{bottom:1669.461067pt;}
.y104{bottom:1670.250400pt;}
.ybf{bottom:1670.263733pt;}
.y93{bottom:1670.665600pt;}
.y180{bottom:1671.917467pt;}
.y199{bottom:1684.265200pt;}
.y1a1{bottom:1689.242533pt;}
.y12d{bottom:1694.791333pt;}
.yea{bottom:1694.791733pt;}
.y103{bottom:1695.581067pt;}
.ybe{bottom:1695.594400pt;}
.y92{bottom:1695.996267pt;}
.y17f{bottom:1697.248133pt;}
.y1a0{bottom:1714.573200pt;}
.y12c{bottom:1720.122000pt;}
.ye9{bottom:1720.122400pt;}
.y102{bottom:1720.911733pt;}
.ybd{bottom:1720.925067pt;}
.y91{bottom:1721.326933pt;}
.y17e{bottom:1722.578800pt;}
.y19d{bottom:1726.349600pt;}
.y19f{bottom:1739.903867pt;}
.y12b{bottom:1745.452667pt;}
.ye8{bottom:1745.453067pt;}
.y101{bottom:1746.242400pt;}
.ybc{bottom:1746.255733pt;}
.y90{bottom:1746.657600pt;}
.y17d{bottom:1747.909467pt;}
.y19c{bottom:1761.549600pt;}
.y12a{bottom:1770.783333pt;}
.ye7{bottom:1770.783733pt;}
.y100{bottom:1771.573067pt;}
.ybb{bottom:1771.586400pt;}
.y8f{bottom:1771.988267pt;}
.y19e{bottom:1772.796267pt;}
.y17c{bottom:1773.240133pt;}
.y87{bottom:1773.817600pt;}
.y86{bottom:1789.817600pt;}
.y129{bottom:1796.114000pt;}
.ye6{bottom:1796.114400pt;}
.yff{bottom:1796.903733pt;}
.yba{bottom:1796.917067pt;}
.y8e{bottom:1797.318933pt;}
.y17b{bottom:1798.570800pt;}
.y85{bottom:1819.601733pt;}
.y128{bottom:1821.444667pt;}
.ye5{bottom:1821.445067pt;}
.yb9{bottom:1822.247733pt;}
.y8d{bottom:1822.649600pt;}
.y17a{bottom:1823.901467pt;}
.y127{bottom:1846.775333pt;}
.ye4{bottom:1846.775733pt;}
.yb8{bottom:1847.578400pt;}
.y8c{bottom:1847.980267pt;}
.y179{bottom:1849.232133pt;}
.y89{bottom:1869.467867pt;}
.yaf{bottom:1869.606267pt;}
.y126{bottom:1872.106000pt;}
.ye3{bottom:1872.106400pt;}
.yb7{bottom:1872.909067pt;}
.y8b{bottom:1873.310933pt;}
.y178{bottom:1874.562800pt;}
.yae{bottom:1885.606267pt;}
.y125{bottom:1897.436667pt;}
.ye2{bottom:1897.437067pt;}
.yb6{bottom:1898.239733pt;}
.y177{bottom:1899.893467pt;}
.y88{bottom:1904.667867pt;}
.yad{bottom:1913.556533pt;}
.y124{bottom:1922.767333pt;}
.ye1{bottom:1922.767733pt;}
.yb5{bottom:1923.570400pt;}
.y8a{bottom:1923.977600pt;}
.y176{bottom:1925.224133pt;}
.y123{bottom:1948.098000pt;}
.ye0{bottom:1948.098400pt;}
.yb4{bottom:1948.901067pt;}
.yb1{bottom:1955.641200pt;}
.y122{bottom:1973.428667pt;}
.ydf{bottom:1973.429067pt;}
.yb0{bottom:1990.841200pt;}
.y121{bottom:1998.759333pt;}
.yde{bottom:1998.759733pt;}
.yb3{bottom:1999.567733pt;}
.yd6{bottom:2020.787333pt;}
.y120{bottom:2024.090000pt;}
.ydd{bottom:2024.090400pt;}
.yd5{bottom:2036.787333pt;}
.y11f{bottom:2049.420667pt;}
.ydc{bottom:2049.421067pt;}
.yd4{bottom:2064.737600pt;}
.y11e{bottom:2074.751333pt;}
.ydb{bottom:2074.751733pt;}
.y11d{bottom:2100.082000pt;}
.yda{bottom:2100.082400pt;}
.yd8{bottom:2106.822133pt;}
.yd7{bottom:2142.022133pt;}
.y11c{bottom:2150.748667pt;}
.yd9{bottom:2150.749067pt;}
.h9{height:44.800000pt;}
.ha{height:50.400000pt;}
.h5{height:56.000000pt;}
.h8{height:61.600000pt;}
.h2{height:67.200000pt;}
.h16{height:72.800000pt;}
.h17{height:73.589333pt;}
.h7{height:78.400000pt;}
.hb{height:84.000000pt;}
.h1{height:100.800000pt;}
.h6{height:123.200000pt;}
.h4{height:134.400000pt;}
.h3{height:140.000000pt;}
.h0{height:1365.333333pt;}
.hc{height:1738.586667pt;}
.hd{height:1738.666667pt;}
.h14{height:1889.760000pt;}
.h15{height:1890.000000pt;}
.hf{height:2040.666667pt;}
.he{height:2040.946667pt;}
.h10{height:2116.533333pt;}
.h11{height:2116.666667pt;}
.h12{height:2267.720000pt;}
.h13{height:2268.000000pt;}
.w0{width:1024.000000pt;}
.x0{left:0.000000pt;}
.xb{left:26.456667pt;}
.xa{left:30.236267pt;}
.x1{left:32.000000pt;}
.xc{left:116.144933pt;}
.xd{left:133.744933pt;}
.xe{left:152.944933pt;}
.x7{left:207.874000pt;}
.x8{left:215.433067pt;}
.xf{left:222.740133pt;}
.x4{left:235.853200pt;}
.x6{left:248.102933pt;}
.x10{left:249.190800pt;}
.x2{left:266.864000pt;}
.x1d{left:267.857467pt;}
.x1e{left:275.641467pt;}
.x1a{left:284.425600pt;}
.x5{left:289.034533pt;}
.x3{left:321.984000pt;}
.x18{left:351.266267pt;}
.x11{left:378.160000pt;}
.x19{left:383.271867pt;}
.x1b{left:387.031733pt;}
.x1c{left:388.151600pt;}
.x15{left:433.607467pt;}
.x12{left:434.767467pt;}
.x14{left:467.383067pt;}
.x17{left:472.592533pt;}
.x16{left:474.454533pt;}
.x13{left:979.512400pt;}
.x9{left:980.539067pt;}
}

