
    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_59ab11f39479f794be233de2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f1f3be29ec013d5b9a1f0f47.woff')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_36eca138fe7bc597708570b9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.078000;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_50da9cc64d138bda0b96b7a8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a11eb6b46e7235354f49c4e3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_b0c10450eb9d64857d5ac39e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_7d8bc6fbe2f7fb0000d75a10.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4182bed3d3d70d8af6c3ada3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.078000;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_acf30fc14d2be46eb90638f7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b9bc4e04db75581caf59a5b5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.075000;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_19c9db6b1fef2c13da79469c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.086000;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_c57dd31cc89b8e8515865090.woff')format("woff");}.ffc{font-family:ffc;line-height:1.085000;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_10fc3fd6cb821b6abdafd45b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.075000;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_9f9ab426af77da85610d175a.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_167a53b2c09826a3fef94738.woff')format("woff");}.fff{font-family:fff;line-height:0.895996;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_04393392d1fa5618aba3ecbb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_c8d32400f57d20c3149b834c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.002930;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_a26b2ba9aa753a75822c2296.woff')format("woff");}.ff12{font-family:ff12;line-height:0.908203;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_0b33a07c07c8b99662856ef1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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_779738fff32912837f5da628.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fbed412ad98579b7a015fe3b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.972000;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_37af6ac2b7a7907d4d3d49b0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.870605;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_2a4367d2e865f3ad7e5e2d61.woff')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b2bf4bf87e32fba63a54a24d.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b81b387580561b20d2b1f344.woff')format("woff");}.ff19{font-family:ff19;line-height:0.740000;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_9845f419c261e241c158215a.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_7c837f54ab9e4e3f4e47a439.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.742000;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_8c86a855054c6adca8d01af7.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.737000;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_b2be3174e09920ae32ca93b6.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_afac5cddd0dfa2cd9b4f4377.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.742000;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_c8fc545abdf5c881b63be6b9.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.947000;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_e9b5db939643432ff1e76c9f.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_ac293ec520639f1f81b61feb.woff')format("woff");}.ff21{font-family:ff21;line-height:0.724000;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_09ef33371af998d3779f12e4.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_02cdd5f2147f4ae16ab32e4e.woff')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,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:-24.480000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls47{letter-spacing:-6.053647px;}
.ls39{letter-spacing:-5.561313px;}
.ls37{letter-spacing:-2.346179px;}
.ls3f{letter-spacing:-1.660792px;}
.ls3a{letter-spacing:-1.564119px;}
.ls9{letter-spacing:-0.530784px;}
.ls45{letter-spacing:-0.423360px;}
.ls7{letter-spacing:-0.383040px;}
.ls10{letter-spacing:-0.366624px;}
.lsc{letter-spacing:-0.366000px;}
.ls41{letter-spacing:-0.350784px;}
.ls6{letter-spacing:-0.350208px;}
.ls8{letter-spacing:-0.344736px;}
.lsd{letter-spacing:-0.342000px;}
.ls22{letter-spacing:-0.338688px;}
.ls26{letter-spacing:-0.332640px;}
.ls43{letter-spacing:-0.326592px;}
.ls35{letter-spacing:-0.308448px;}
.ls36{letter-spacing:-0.290304px;}
.ls25{letter-spacing:-0.278208px;}
.lsb{letter-spacing:-0.276000px;}
.lsf{letter-spacing:-0.273600px;}
.ls44{letter-spacing:-0.266112px;}
.ls4d{letter-spacing:-0.254016px;}
.ls1{letter-spacing:-0.241920px;}
.ls53{letter-spacing:-0.231840px;}
.ls27{letter-spacing:-0.229824px;}
.ls23{letter-spacing:-0.223776px;}
.ls4a{letter-spacing:-0.217728px;}
.lse{letter-spacing:-0.211968px;}
.ls18{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.196992px;}
.ls42{letter-spacing:-0.193536px;}
.ls5{letter-spacing:-0.185472px;}
.ls3{letter-spacing:-0.184032px;}
.ls4b{letter-spacing:-0.181440px;}
.ls13{letter-spacing:-0.178848px;}
.ls2{letter-spacing:-0.173808px;}
.ls5a{letter-spacing:-0.172224px;}
.lsa{letter-spacing:-0.165600px;}
.ls58{letter-spacing:-0.158976px;}
.ls51{letter-spacing:-0.152352px;}
.ls57{letter-spacing:-0.145728px;}
.ls4{letter-spacing:-0.143136px;}
.ls56{letter-spacing:-0.139104px;}
.ls11{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.125856px;}
.ls34{letter-spacing:-0.119232px;}
.ls15{letter-spacing:-0.112608px;}
.ls14{letter-spacing:-0.105984px;}
.ls19{letter-spacing:-0.099360px;}
.ls1e{letter-spacing:-0.092736px;}
.ls52{letter-spacing:-0.086112px;}
.ls54{letter-spacing:-0.079488px;}
.ls4c{letter-spacing:-0.078624px;}
.ls1c{letter-spacing:-0.072864px;}
.ls17{letter-spacing:-0.066240px;}
.ls1d{letter-spacing:-0.059616px;}
.ls55{letter-spacing:-0.052992px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.007056px;}
.ls4f{letter-spacing:0.058320px;}
.ls1f{letter-spacing:0.116640px;}
.ls20{letter-spacing:0.116928px;}
.ls2d{letter-spacing:0.132192px;}
.ls30{letter-spacing:0.155520px;}
.ls50{letter-spacing:0.163296px;}
.ls1b{letter-spacing:0.171072px;}
.ls29{letter-spacing:0.178848px;}
.ls2c{letter-spacing:0.209952px;}
.ls49{letter-spacing:0.297360px;}
.ls21{letter-spacing:0.447120px;}
.ls33{letter-spacing:1.442466px;}
.ls3c{letter-spacing:1.465405px;}
.ls40{letter-spacing:1.738947px;}
.ls31{letter-spacing:2.042045px;}
.ls38{letter-spacing:2.089837px;}
.ls46{letter-spacing:2.313182px;}
.ls3b{letter-spacing:2.442341px;}
.ls3d{letter-spacing:2.881962px;}
.ls3e{letter-spacing:4.103133px;}
.ls48{letter-spacing:6.988764px;}
.ls24{letter-spacing:7.447248px;}
.ls28{letter-spacing:17.965872px;}
.ls2f{letter-spacing:27.572256px;}
.ls1a{letter-spacing:34.890768px;}
.ls2b{letter-spacing:43.877664px;}
.ls32{letter-spacing:53.165608px;}
.ls4e{letter-spacing:88.349760px;}
.ls2e{letter-spacing:141.710112px;}
.ls59{letter-spacing:847.440000px;}
.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;}
}
.ws0{word-spacing:-22.012272px;}
.ws5{word-spacing:-19.094880px;}
.ws2c{word-spacing:-17.668776px;}
.ws15{word-spacing:-17.083872px;}
.ws37{word-spacing:-17.044992px;}
.ws36{word-spacing:-17.037216px;}
.ws18{word-spacing:-17.029440px;}
.ws17{word-spacing:-16.990560px;}
.ws29{word-spacing:-16.488000px;}
.ws16{word-spacing:-16.344000px;}
.wsa{word-spacing:-15.624000px;}
.ws39{word-spacing:-15.168960px;}
.ws13{word-spacing:-15.120000px;}
.ws3e{word-spacing:-15.056352px;}
.ws3a{word-spacing:-15.036480px;}
.ws3c{word-spacing:-14.950368px;}
.wsf{word-spacing:-14.937120px;}
.ws3d{word-spacing:-14.917248px;}
.ws10{word-spacing:-14.910624px;}
.ws3b{word-spacing:-14.904000px;}
.ws14{word-spacing:-14.896224px;}
.wse{word-spacing:-14.878080px;}
.ws38{word-spacing:-14.804640px;}
.ws28{word-spacing:-14.374080px;}
.ws19{word-spacing:-14.208480px;}
.ws35{word-spacing:-13.668480px;}
.ws21{word-spacing:-13.530569px;}
.ws30{word-spacing:-13.485361px;}
.ws31{word-spacing:-13.414464px;}
.ws32{word-spacing:-12.858048px;}
.ws2a{word-spacing:-12.815712px;}
.ws33{word-spacing:-12.773376px;}
.ws6{word-spacing:-12.530880px;}
.ws3{word-spacing:-12.421440px;}
.ws9{word-spacing:-12.333888px;}
.ws7{word-spacing:-12.257280px;}
.ws1{word-spacing:-12.180672px;}
.ws8{word-spacing:-12.164256px;}
.ws4{word-spacing:-12.076704px;}
.ws2{word-spacing:-12.038400px;}
.ws1c{word-spacing:-11.904685px;}
.ws11{word-spacing:-9.596448px;}
.ws34{word-spacing:-8.884080px;}
.ws12{word-spacing:-0.486000px;}
.wsd{word-spacing:-0.162000px;}
.wsc{word-spacing:-0.012000px;}
.wsb{word-spacing:0.000000px;}
.ws1e{word-spacing:7.168880px;}
.ws1a{word-spacing:7.299223px;}
.ws27{word-spacing:7.962032px;}
.ws1d{word-spacing:16.221024px;}
.ws1b{word-spacing:39.251522px;}
.ws1f{word-spacing:39.507800px;}
.ws2e{word-spacing:115.014486px;}
.ws2d{word-spacing:115.165746px;}
.ws2f{word-spacing:141.151051px;}
.ws22{word-spacing:244.421132px;}
.ws20{word-spacing:244.809279px;}
.ws23{word-spacing:315.835184px;}
.ws26{word-spacing:325.067233px;}
.ws24{word-spacing:347.439077px;}
.ws25{word-spacing:361.848889px;}
.ws2b{word-spacing:418.576614px;}
._3f{margin-left:-7.122927px;}
._2f{margin-left:-5.561313px;}
._10{margin-left:-4.125600px;}
._b{margin-left:-2.980800px;}
._0{margin-left:-1.209600px;}
._1{width:1.059840px;}
._a{width:2.450880px;}
._9{width:3.510720px;}
._8{width:4.703040px;}
._3{width:6.027840px;}
._2{width:7.153920px;}
._17{width:8.729280px;}
._14{width:9.820800px;}
._f{width:10.915200px;}
._5{width:11.923200px;}
._4{width:13.115520px;}
._1a{width:14.146560px;}
._11{width:15.307200px;}
._59{width:16.355808px;}
._1c{width:17.373600px;}
._1e{width:18.480816px;}
._1d{width:19.601712px;}
._1b{width:20.715840px;}
._c{width:22.455360px;}
._18{width:23.479200px;}
._15{width:24.638400px;}
._e{width:26.179200px;}
._12{width:28.080000px;}
._d{width:29.275200px;}
._43{width:30.434400px;}
._55{width:31.491936px;}
._54{width:32.623200px;}
._13{width:33.696000px;}
._7{width:35.239680px;}
._6{width:36.365760px;}
._42{width:37.418400px;}
._19{width:38.656800px;}
._1f{width:47.620800px;}
._44{width:49.015386px;}
._16{width:50.572800px;}
._24{width:53.165608px;}
._3d{width:68.803746px;}
._21{width:82.885083px;}
._58{width:107.043840px;}
._40{width:121.318211px;}
._47{width:129.487789px;}
._3c{width:131.560538px;}
._39{width:150.152263px;}
._4b{width:155.473095px;}
._3e{width:215.087256px;}
._57{width:230.316480px;}
._4f{width:243.311833px;}
._4e{width:252.064063px;}
._56{width:259.738333px;}
._37{width:261.029346px;}
._4d{width:267.289590px;}
._3b{width:270.689583px;}
._38{width:301.454118px;}
._52{width:333.307630px;}
._23{width:340.919409px;}
._49{width:344.156924px;}
._53{width:373.822313px;}
._32{width:382.753451px;}
._41{width:428.918859px;}
._50{width:482.627932px;}
._29{width:485.038745px;}
._36{width:513.933030px;}
._33{width:552.732569px;}
._2a{width:562.067239px;}
._2c{width:566.217542px;}
._20{width:576.005472px;}
._28{width:599.991720px;}
._4a{width:615.862337px;}
._4c{width:641.683725px;}
._34{width:655.603480px;}
._45{width:656.915945px;}
._3a{width:663.818669px;}
._22{width:675.992471px;}
._48{width:680.916649px;}
._51{width:693.399822px;}
._35{width:739.548388px;}
._46{width:745.303628px;}
._30{width:812.371187px;}
._31{width:822.770700px;}
._2b{width:859.044741px;}
._2e{width:1000.146647px;}
._25{width:1004.075364px;}
._26{width:1006.423062px;}
._27{width:1038.787043px;}
._2d{width:1046.858722px;}
.fc5{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(0,13,26);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:43.447757px;}
.fsa{font-size:48.846821px;}
.fsb{font-size:49.216645px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:5.736379px;}
.y120{bottom:5.776044px;}
.yd4{bottom:6.479071px;}
.y12d{bottom:6.528125px;}
.yb7{bottom:21.059946px;}
.yd3{bottom:23.736689px;}
.y12c{bottom:23.886318px;}
.yb6{bottom:36.383513px;}
.yd2{bottom:40.994306px;}
.y12b{bottom:41.244511px;}
.yb5{bottom:51.707080px;}
.y1{bottom:57.240000px;}
.yd1{bottom:58.251924px;}
.y12a{bottom:58.632788px;}
.yb4{bottom:67.030647px;}
.y1b{bottom:74.160000px;}
.yd0{bottom:75.509542px;}
.y129{bottom:75.990981px;}
.yb3{bottom:82.354214px;}
.y66{bottom:90.720000px;}
.ycf{bottom:92.767159px;}
.y128{bottom:93.349174px;}
.y4e{bottom:96.120000px;}
.y14c{bottom:97.560000px;}
.yb2{bottom:97.677782px;}
.y110{bottom:101.520000px;}
.y1a{bottom:102.914640px;}
.y13a{bottom:103.320000px;}
.ye3{bottom:103.680000px;}
.yf3{bottom:104.400000px;}
.y93{bottom:105.480000px;}
.y9e{bottom:108.720000px;}
.y65{bottom:109.080000px;}
.yce{bottom:110.024777px;}
.y118{bottom:110.160000px;}
.y127{bottom:110.737451px;}
.y72{bottom:110.880000px;}
.y91{bottom:112.320000px;}
.yb1{bottom:113.006660px;}
.y16e{bottom:115.920000px;}
.y15c{bottom:117.000000px;}
.y36{bottom:117.720000px;}
.y18f{bottom:119.160000px;}
.y183{bottom:119.880000px;}
.y4d{bottom:123.120000px;}
.y14b{bottom:124.560000px;}
.y19{bottom:125.601840px;}
.ycd{bottom:127.276423px;}
.y126{bottom:128.095644px;}
.yb0{bottom:128.324916px;}
.y13d{bottom:132.120000px;}
.y64{bottom:132.840000px;}
.y10f{bottom:133.920000px;}
.y139{bottom:135.720000px;}
.ye2{bottom:136.080000px;}
.yf2{bottom:136.800000px;}
.y92{bottom:137.880000px;}
.y18e{bottom:138.960000px;}
.y117{bottom:142.560000px;}
.y16d{bottom:142.920000px;}
.y4c{bottom:143.280000px;}
.yaf{bottom:143.653794px;}
.ycc{bottom:144.534041px;}
.y90{bottom:144.720000px;}
.y125{bottom:145.447821px;}
.y18{bottom:148.289040px;}
.y15b{bottom:149.400000px;}
.y35{bottom:150.120000px;}
.y14a{bottom:151.560000px;}
.y182{bottom:152.280000px;}
.y9d{bottom:153.720000px;}
.yff{bottom:155.880000px;}
.yae{bottom:158.972050px;}
.y63{bottom:159.840000px;}
.ycb{bottom:161.803601px;}
.y124{bottom:162.836097px;}
.y16c{bottom:163.080000px;}
.y84{bottom:163.440000px;}
.y10e{bottom:166.320000px;}
.ye1{bottom:168.480000px;}
.y17{bottom:170.976240px;}
.yad{bottom:174.300929px;}
.y149{bottom:178.560000px;}
.yca{bottom:179.061219px;}
.y18d{bottom:179.640000px;}
.y62{bottom:180.000000px;}
.y123{bottom:180.200307px;}
.y15a{bottom:181.800000px;}
.y181{bottom:184.680000px;}
.y138{bottom:186.120000px;}
.yf1{bottom:187.200000px;}
.yac{bottom:189.619184px;}
.y9c{bottom:191.160000px;}
.y34{bottom:191.520000px;}
.y116{bottom:192.960000px;}
.y71{bottom:193.680000px;}
.y16{bottom:194.011200px;}
.y8f{bottom:195.120000px;}
.y83{bottom:195.840000px;}
.yc9{bottom:196.318837px;}
.y122{bottom:197.552484px;}
.y18c{bottom:199.440000px;}
.ye0{bottom:200.880000px;}
.yab{bottom:204.948063px;}
.y148{bottom:205.560000px;}
.yfe{bottom:206.280000px;}
.yc7{bottom:206.640000px;}
.y10d{bottom:207.000000px;}
.y159{bottom:214.200000px;}
.y121{bottom:214.916694px;}
.y1a3{bottom:215.280000px;}
.y9b{bottom:215.640000px;}
.y9f{bottom:215.784150px;}
.y15{bottom:216.698400px;}
.y180{bottom:217.080000px;}
.y137{bottom:218.520000px;}
.y18b{bottom:219.240000px;}
.yf0{bottom:219.600000px;}
.yaa{bottom:220.266319px;}
.y33{bottom:223.920000px;}
.y115{bottom:225.360000px;}
.y70{bottom:226.080000px;}
.y8e{bottom:227.520000px;}
.y82{bottom:228.240000px;}
.y61{bottom:231.840000px;}
.y11e{bottom:232.304970px;}
.y147{bottom:232.560000px;}
.ydf{bottom:233.280000px;}
.ya9{bottom:235.595197px;}
.yc6{bottom:239.040000px;}
.y14{bottom:239.385600px;}
.y4b{bottom:240.840000px;}
.y16b{bottom:246.240000px;}
.y158{bottom:246.600000px;}
.y17f{bottom:249.480000px;}
.y11d{bottom:249.657147px;}
.y166{bottom:250.560000px;}
.ya8{bottom:250.913453px;}
.y136{bottom:250.920000px;}
.yef{bottom:252.000000px;}
.y10c{bottom:255.960000px;}
.y32{bottom:256.320000px;}
.yfd{bottom:256.680000px;}
.y114{bottom:257.760000px;}
.y6f{bottom:258.480000px;}
.y18a{bottom:258.840000px;}
.y81{bottom:260.640000px;}
.y13{bottom:262.072800px;}
.y60{bottom:264.240000px;}
.yde{bottom:265.680000px;}
.ya7{bottom:266.242332px;}
.y11c{bottom:267.021357px;}
.y146{bottom:271.440000px;}
.y4a{bottom:273.240000px;}
.y8d{bottom:277.920000px;}
.y16a{bottom:278.640000px;}
.y157{bottom:279.000000px;}
.ya6{bottom:281.560587px;}
.y17e{bottom:281.880000px;}
.y165{bottom:282.960000px;}
.y135{bottom:283.320000px;}
.yee{bottom:284.400000px;}
.y11b{bottom:284.409634px;}
.y12{bottom:284.760000px;}
.y10b{bottom:288.360000px;}
.y31{bottom:288.720000px;}
.yc5{bottom:289.440000px;}
.y113{bottom:290.160000px;}
.y80{bottom:293.040000px;}
.y5f{bottom:296.640000px;}
.ya5{bottom:296.889466px;}
.y189{bottom:299.520000px;}
.y6e{bottom:299.880000px;}
.y11a{bottom:301.761810px;}
.y145{bottom:303.840000px;}
.y49{bottom:305.640000px;}
.ydd{bottom:306.360000px;}
.yfc{bottom:307.080000px;}
.y8c{bottom:310.320000px;}
.y169{bottom:311.040000px;}
.y156{bottom:311.400000px;}
.ya4{bottom:312.207722px;}
.y164{bottom:315.360000px;}
.y1a2{bottom:316.440000px;}
.yed{bottom:316.800000px;}
.y188{bottom:319.320000px;}
.y10a{bottom:320.760000px;}
.y30{bottom:321.120000px;}
.yc4{bottom:321.840000px;}
.y112{bottom:322.560000px;}
.y134{bottom:322.920000px;}
.y12e{bottom:325.440000px;}
.ya3{bottom:327.536600px;}
.y5e{bottom:329.040000px;}
.y17d{bottom:332.280000px;}
.y11{bottom:334.080000px;}
.y144{bottom:336.240000px;}
.y48{bottom:338.040000px;}
.ya2{bottom:342.833610px;}
.y7f{bottom:343.440000px;}
.y155{bottom:343.800000px;}
.y163{bottom:347.760000px;}
.yec{bottom:349.200000px;}
.y6d{bottom:350.280000px;}
.y133{bottom:351.000000px;}
.y109{bottom:353.160000px;}
.y2f{bottom:353.520000px;}
.yc3{bottom:354.240000px;}
.y111{bottom:354.960000px;}
.ydc{bottom:355.320000px;}
.y1a1{bottom:356.040000px;}
.yfb{bottom:357.480000px;}
.ya1{bottom:358.151866px;}
.y187{bottom:360.360000px;}
.y5d{bottom:361.440000px;}
.y17c{bottom:364.680000px;}
.y143{bottom:368.640000px;}
.ya0{bottom:373.480744px;}
.y7e{bottom:375.840000px;}
.y154{bottom:376.200000px;}
.y47{bottom:379.440000px;}
.y162{bottom:380.160000px;}
.y6c{bottom:382.680000px;}
.y2e{bottom:385.920000px;}
.yc2{bottom:386.640000px;}
.ydb{bottom:387.720000px;}
.yfa{bottom:389.880000px;}
.y13c{bottom:392.760000px;}
.y5c{bottom:393.840000px;}
.y17b{bottom:397.080000px;}
.y119{bottom:399.301050px;}
.yeb{bottom:399.600000px;}
.y186{bottom:399.960000px;}
.y142{bottom:401.040000px;}
.y10{bottom:403.200000px;}
.y108{bottom:403.560000px;}
.y7d{bottom:408.240000px;}
.y153{bottom:408.600000px;}
.y46{bottom:411.840000px;}
.y161{bottom:412.560000px;}
.y6b{bottom:415.080000px;}
.y1a0{bottom:416.880000px;}
.y2d{bottom:418.320000px;}
.yc1{bottom:419.040000px;}
.y13b{bottom:419.760000px;}
.yda{bottom:420.120000px;}
.yf9{bottom:422.280000px;}
.y5b{bottom:426.240000px;}
.y17a{bottom:429.480000px;}
.yf{bottom:431.280000px;}
.yea{bottom:432.000000px;}
.y107{bottom:435.960000px;}
.y19f{bottom:436.680000px;}
.y7c{bottom:440.640000px;}
.y152{bottom:441.000000px;}
.y45{bottom:444.240000px;}
.y160{bottom:444.960000px;}
.y6a{bottom:447.480000px;}
.y2c{bottom:450.720000px;}
.yc0{bottom:451.440000px;}
.yd9{bottom:452.520000px;}
.yf8{bottom:454.680000px;}
.y19e{bottom:456.480000px;}
.y5a{bottom:458.640000px;}
.y185{bottom:460.080000px;}
.ye{bottom:460.440000px;}
.y179{bottom:461.880000px;}
.ye9{bottom:464.400000px;}
.y106{bottom:468.360000px;}
.y7b{bottom:473.040000px;}
.y151{bottom:473.400000px;}
.y44{bottom:476.640000px;}
.y15f{bottom:477.360000px;}
.y69{bottom:479.880000px;}
.y2b{bottom:483.120000px;}
.ybf{bottom:483.840000px;}
.yd8{bottom:484.920000px;}
.y8b{bottom:491.040000px;}
.yd{bottom:491.400000px;}
.yf7{bottom:493.200000px;}
.y178{bottom:494.280000px;}
.ye8{bottom:496.800000px;}
.y19d{bottom:497.160000px;}
.y59{bottom:500.040000px;}
.y105{bottom:500.760000px;}
.y184{bottom:504.000000px;}
.y7a{bottom:505.440000px;}
.y150{bottom:505.800000px;}
.y43{bottom:509.040000px;}
.y68{bottom:512.280000px;}
.y2a{bottom:515.520000px;}
.y141{bottom:516.240000px;}
.y19c{bottom:516.960000px;}
.y15e{bottom:517.320000px;}
.yc{bottom:519.480000px;}
.yf6{bottom:521.280000px;}
.y8a{bottom:523.440000px;}
.ye7{bottom:529.200000px;}
.y58{bottom:532.440000px;}
.y104{bottom:533.160000px;}
.ybe{bottom:534.240000px;}
.y79{bottom:537.840000px;}
.y15d{bottom:540.720000px;}
.y42{bottom:541.440000px;}
.y177{bottom:544.680000px;}
.y14f{bottom:546.840000px;}
.y29{bottom:547.920000px;}
.yb{bottom:548.640000px;}
.yd7{bottom:551.520000px;}
.y67{bottom:554.400000px;}
.y89{bottom:555.840000px;}
.y19b{bottom:557.640000px;}
.ye6{bottom:561.600000px;}
.y57{bottom:564.840000px;}
.y103{bottom:565.560000px;}
.ybd{bottom:566.640000px;}
.y78{bottom:570.240000px;}
.y41{bottom:573.840000px;}
.y176{bottom:577.080000px;}
.y19a{bottom:577.440000px;}
.ya{bottom:579.600000px;}
.y132{bottom:579.960000px;}
.y28{bottom:580.320000px;}
.y140{bottom:581.040000px;}
.y88{bottom:588.240000px;}
.y14e{bottom:595.800000px;}
.y56{bottom:597.240000px;}
.y102{bottom:597.960000px;}
.ybc{bottom:599.040000px;}
.ye5{bottom:600.120000px;}
.y77{bottom:602.640000px;}
.y40{bottom:606.240000px;}
.y131{bottom:606.960000px;}
.y9{bottom:607.680000px;}
.y11f{bottom:608.441700px;}
.y175{bottom:609.480000px;}
.y9a{bottom:612.360000px;}
.y27{bottom:613.080000px;}
.y13f{bottom:613.440000px;}
.y87{bottom:620.640000px;}
.y14d{bottom:627.840000px;}
.ye4{bottom:628.200000px;}
.y55{bottom:629.640000px;}
.y76{bottom:635.040000px;}
.y101{bottom:636.480000px;}
.y8{bottom:636.840000px;}
.y199{bottom:638.280000px;}
.y3f{bottom:638.640000px;}
.y99{bottom:639.360000px;}
.y174{bottom:641.880000px;}
.yc8{bottom:643.442100px;}
.ybb{bottom:643.680000px;}
.y130{bottom:645.840000px;}
.y86{bottom:653.040000px;}
.y26{bottom:654.480000px;}
.y198{bottom:658.080000px;}
.y54{bottom:662.040000px;}
.y100{bottom:664.560000px;}
.y75{bottom:667.440000px;}
.y7{bottom:667.800000px;}
.y3e{bottom:671.040000px;}
.y173{bottom:674.280000px;}
.y197{bottom:677.880000px;}
.y98{bottom:678.240000px;}
.y85{bottom:685.440000px;}
.y25{bottom:694.080000px;}
.y53{bottom:694.440000px;}
.y6{bottom:695.880000px;}
.y3d{bottom:703.440000px;}
.y172{bottom:706.680000px;}
.y97{bottom:710.640000px;}
.y24{bottom:717.120000px;}
.y74{bottom:717.840000px;}
.y196{bottom:718.560000px;}
.y5{bottom:725.040000px;}
.y52{bottom:726.840000px;}
.yf5{bottom:734.760000px;}
.y3c{bottom:735.840000px;}
.y195{bottom:738.360000px;}
.y171{bottom:739.080000px;}
.y23{bottom:739.800000px;}
.y96{bottom:743.040000px;}
.y73{bottom:750.240000px;}
.y194{bottom:758.160000px;}
.y51{bottom:759.240000px;}
.yf4{bottom:761.760000px;}
.y22{bottom:762.480000px;}
.yd6{bottom:767.160000px;}
.y3b{bottom:768.240000px;}
.y170{bottom:771.480000px;}
.y95{bottom:775.440000px;}
.y168{bottom:782.640000px;}
.y12f{bottom:784.080000px;}
.y21{bottom:785.160000px;}
.y50{bottom:791.640000px;}
.yd5{bottom:794.160000px;}
.y193{bottom:798.840000px;}
.y3a{bottom:800.640000px;}
.y20{bottom:808.200000px;}
.y16f{bottom:813.600000px;}
.y167{bottom:815.040000px;}
.y94{bottom:816.480000px;}
.y192{bottom:818.640000px;}
.y4f{bottom:824.040000px;}
.y4{bottom:829.449360px;}
.y1f{bottom:830.880000px;}
.y39{bottom:833.040000px;}
.y191{bottom:838.440000px;}
.y1e{bottom:853.560000px;}
.y3{bottom:860.044680px;}
.y38{bottom:865.440000px;}
.yba{bottom:873.360000px;}
.y1d{bottom:876.240000px;}
.y190{bottom:879.480000px;}
.y2{bottom:890.640000px;}
.y13e{bottom:897.480000px;}
.y37{bottom:897.840000px;}
.y1c{bottom:899.280000px;}
.yb9{bottom:900.360000px;}
.h19{height:16.636185px;}
.hc{height:28.278281px;}
.h1a{height:29.704320px;}
.h10{height:30.543773px;}
.h11{height:30.934803px;}
.h13{height:34.192775px;}
.h15{height:34.339315px;}
.h17{height:34.599301px;}
.h14{height:34.778936px;}
.h18{height:35.042251px;}
.h2{height:40.310156px;}
.h5{height:44.760960px;}
.hb{height:47.545313px;}
.he{height:49.533120px;}
.hd{height:49.878281px;}
.h8{height:50.863680px;}
.h7{height:54.184320px;}
.h1b{height:54.250560px;}
.h4{height:55.177920px;}
.ha{height:58.896000px;}
.h6{height:59.976000px;}
.h9{height:65.396160px;}
.h3{height:85.983840px;}
.h12{height:207.091350px;}
.h16{height:312.628050px;}
.hf{height:383.062650px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:171.673800px;}
.w5{width:232.421850px;}
.w4{width:372.896250px;}
.w2{width:396.779850px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:1.913894px;}
.x1b{left:42.390901px;}
.xf{left:84.959850px;}
.x2{left:91.852350px;}
.x22{left:103.552148px;}
.x12{left:111.734604px;}
.x13{left:116.834832px;}
.x16{left:136.098347px;}
.x18{left:147.613542px;}
.x15{left:163.350300px;}
.x3{left:166.513110px;}
.x21{left:175.360200px;}
.x4{left:261.545190px;}
.x23{left:270.795393px;}
.x1a{left:275.552700px;}
.x11{left:300.959856px;}
.xe{left:319.226100px;}
.x1{left:332.075250px;}
.xb{left:346.528200px;}
.x6{left:359.101350px;}
.x10{left:361.372320px;}
.xd{left:372.686700px;}
.x9{left:373.959000px;}
.xa{left:402.863400px;}
.x19{left:447.952320px;}
.x1f{left:464.872320px;}
.x7{left:466.002000px;}
.x5{left:470.858400px;}
.x24{left:479.452320px;}
.x1d{left:483.052320px;}
.x8{left:500.525250px;}
.x27{left:512.392320px;}
.xc{left:520.142700px;}
.x1e{left:523.372320px;}
.x1c{left:528.052320px;}
.x20{left:548.031960px;}
.x14{left:560.092320px;}
.x26{left:566.031960px;}
.x25{left:614.452320px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls47{letter-spacing:-5.381020pt;}
.ls39{letter-spacing:-4.943389pt;}
.ls37{letter-spacing:-2.085492pt;}
.ls3f{letter-spacing:-1.476259pt;}
.ls3a{letter-spacing:-1.390328pt;}
.ls9{letter-spacing:-0.471808pt;}
.ls45{letter-spacing:-0.376320pt;}
.ls7{letter-spacing:-0.340480pt;}
.ls10{letter-spacing:-0.325888pt;}
.lsc{letter-spacing:-0.325333pt;}
.ls41{letter-spacing:-0.311808pt;}
.ls6{letter-spacing:-0.311296pt;}
.ls8{letter-spacing:-0.306432pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls22{letter-spacing:-0.301056pt;}
.ls26{letter-spacing:-0.295680pt;}
.ls43{letter-spacing:-0.290304pt;}
.ls35{letter-spacing:-0.274176pt;}
.ls36{letter-spacing:-0.258048pt;}
.ls25{letter-spacing:-0.247296pt;}
.lsb{letter-spacing:-0.245333pt;}
.lsf{letter-spacing:-0.243200pt;}
.ls44{letter-spacing:-0.236544pt;}
.ls4d{letter-spacing:-0.225792pt;}
.ls1{letter-spacing:-0.215040pt;}
.ls53{letter-spacing:-0.206080pt;}
.ls27{letter-spacing:-0.204288pt;}
.ls23{letter-spacing:-0.198912pt;}
.ls4a{letter-spacing:-0.193536pt;}
.lse{letter-spacing:-0.188416pt;}
.ls18{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.175104pt;}
.ls42{letter-spacing:-0.172032pt;}
.ls5{letter-spacing:-0.164864pt;}
.ls3{letter-spacing:-0.163584pt;}
.ls4b{letter-spacing:-0.161280pt;}
.ls13{letter-spacing:-0.158976pt;}
.ls2{letter-spacing:-0.154496pt;}
.ls5a{letter-spacing:-0.153088pt;}
.lsa{letter-spacing:-0.147200pt;}
.ls58{letter-spacing:-0.141312pt;}
.ls51{letter-spacing:-0.135424pt;}
.ls57{letter-spacing:-0.129536pt;}
.ls4{letter-spacing:-0.127232pt;}
.ls56{letter-spacing:-0.123648pt;}
.ls11{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.111872pt;}
.ls34{letter-spacing:-0.105984pt;}
.ls15{letter-spacing:-0.100096pt;}
.ls14{letter-spacing:-0.094208pt;}
.ls19{letter-spacing:-0.088320pt;}
.ls1e{letter-spacing:-0.082432pt;}
.ls52{letter-spacing:-0.076544pt;}
.ls54{letter-spacing:-0.070656pt;}
.ls4c{letter-spacing:-0.069888pt;}
.ls1c{letter-spacing:-0.064768pt;}
.ls17{letter-spacing:-0.058880pt;}
.ls1d{letter-spacing:-0.052992pt;}
.ls55{letter-spacing:-0.047104pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.006272pt;}
.ls4f{letter-spacing:0.051840pt;}
.ls1f{letter-spacing:0.103680pt;}
.ls20{letter-spacing:0.103936pt;}
.ls2d{letter-spacing:0.117504pt;}
.ls30{letter-spacing:0.138240pt;}
.ls50{letter-spacing:0.145152pt;}
.ls1b{letter-spacing:0.152064pt;}
.ls29{letter-spacing:0.158976pt;}
.ls2c{letter-spacing:0.186624pt;}
.ls49{letter-spacing:0.264320pt;}
.ls21{letter-spacing:0.397440pt;}
.ls33{letter-spacing:1.282192pt;}
.ls3c{letter-spacing:1.302582pt;}
.ls40{letter-spacing:1.545731pt;}
.ls31{letter-spacing:1.815151pt;}
.ls38{letter-spacing:1.857633pt;}
.ls46{letter-spacing:2.056162pt;}
.ls3b{letter-spacing:2.170970pt;}
.ls3d{letter-spacing:2.561744pt;}
.ls3e{letter-spacing:3.647229pt;}
.ls48{letter-spacing:6.212234pt;}
.ls24{letter-spacing:6.619776pt;}
.ls28{letter-spacing:15.969664pt;}
.ls2f{letter-spacing:24.508672pt;}
.ls1a{letter-spacing:31.014016pt;}
.ls2b{letter-spacing:39.002368pt;}
.ls32{letter-spacing:47.258318pt;}
.ls4e{letter-spacing:78.533120pt;}
.ls2e{letter-spacing:125.964544pt;}
.ls59{letter-spacing:753.280000pt;}
.ws0{word-spacing:-19.566464pt;}
.ws5{word-spacing:-16.973227pt;}
.ws2c{word-spacing:-15.705578pt;}
.ws15{word-spacing:-15.185664pt;}
.ws37{word-spacing:-15.151104pt;}
.ws36{word-spacing:-15.144192pt;}
.ws18{word-spacing:-15.137280pt;}
.ws17{word-spacing:-15.102720pt;}
.ws29{word-spacing:-14.656000pt;}
.ws16{word-spacing:-14.528000pt;}
.wsa{word-spacing:-13.888000pt;}
.ws39{word-spacing:-13.483520pt;}
.ws13{word-spacing:-13.440000pt;}
.ws3e{word-spacing:-13.383424pt;}
.ws3a{word-spacing:-13.365760pt;}
.ws3c{word-spacing:-13.289216pt;}
.wsf{word-spacing:-13.277440pt;}
.ws3d{word-spacing:-13.259776pt;}
.ws10{word-spacing:-13.253888pt;}
.ws3b{word-spacing:-13.248000pt;}
.ws14{word-spacing:-13.241088pt;}
.wse{word-spacing:-13.224960pt;}
.ws38{word-spacing:-13.159680pt;}
.ws28{word-spacing:-12.776960pt;}
.ws19{word-spacing:-12.629760pt;}
.ws35{word-spacing:-12.149760pt;}
.ws21{word-spacing:-12.027173pt;}
.ws30{word-spacing:-11.986987pt;}
.ws31{word-spacing:-11.923968pt;}
.ws32{word-spacing:-11.429376pt;}
.ws2a{word-spacing:-11.391744pt;}
.ws33{word-spacing:-11.354112pt;}
.ws6{word-spacing:-11.138560pt;}
.ws3{word-spacing:-11.041280pt;}
.ws9{word-spacing:-10.963456pt;}
.ws7{word-spacing:-10.895360pt;}
.ws1{word-spacing:-10.827264pt;}
.ws8{word-spacing:-10.812672pt;}
.ws4{word-spacing:-10.734848pt;}
.ws2{word-spacing:-10.700800pt;}
.ws1c{word-spacing:-10.581943pt;}
.ws11{word-spacing:-8.530176pt;}
.ws34{word-spacing:-7.896960pt;}
.ws12{word-spacing:-0.432000pt;}
.wsd{word-spacing:-0.144000pt;}
.wsc{word-spacing:-0.010667pt;}
.wsb{word-spacing:0.000000pt;}
.ws1e{word-spacing:6.372338pt;}
.ws1a{word-spacing:6.488198pt;}
.ws27{word-spacing:7.077362pt;}
.ws1d{word-spacing:14.418688pt;}
.ws1b{word-spacing:34.890242pt;}
.ws1f{word-spacing:35.118044pt;}
.ws2e{word-spacing:102.235098pt;}
.ws2d{word-spacing:102.369552pt;}
.ws2f{word-spacing:125.467601pt;}
.ws22{word-spacing:217.263228pt;}
.ws20{word-spacing:217.608248pt;}
.ws23{word-spacing:280.742386pt;}
.ws26{word-spacing:288.948652pt;}
.ws24{word-spacing:308.834735pt;}
.ws25{word-spacing:321.643457pt;}
.ws2b{word-spacing:372.068101pt;}
._3f{margin-left:-6.331490pt;}
._2f{margin-left:-4.943389pt;}
._10{margin-left:-3.667200pt;}
._b{margin-left:-2.649600pt;}
._0{margin-left:-1.075200pt;}
._1{width:0.942080pt;}
._a{width:2.178560pt;}
._9{width:3.120640pt;}
._8{width:4.180480pt;}
._3{width:5.358080pt;}
._2{width:6.359040pt;}
._17{width:7.759360pt;}
._14{width:8.729600pt;}
._f{width:9.702400pt;}
._5{width:10.598400pt;}
._4{width:11.658240pt;}
._1a{width:12.574720pt;}
._11{width:13.606400pt;}
._59{width:14.538496pt;}
._1c{width:15.443200pt;}
._1e{width:16.427392pt;}
._1d{width:17.423744pt;}
._1b{width:18.414080pt;}
._c{width:19.960320pt;}
._18{width:20.870400pt;}
._15{width:21.900800pt;}
._e{width:23.270400pt;}
._12{width:24.960000pt;}
._d{width:26.022400pt;}
._43{width:27.052800pt;}
._55{width:27.992832pt;}
._54{width:28.998400pt;}
._13{width:29.952000pt;}
._7{width:31.324160pt;}
._6{width:32.325120pt;}
._42{width:33.260800pt;}
._19{width:34.361600pt;}
._1f{width:42.329600pt;}
._44{width:43.569232pt;}
._16{width:44.953600pt;}
._24{width:47.258318pt;}
._3d{width:61.158885pt;}
._21{width:73.675629pt;}
._58{width:95.150080pt;}
._40{width:107.838410pt;}
._47{width:115.100257pt;}
._3c{width:116.942700pt;}
._39{width:133.468678pt;}
._4b{width:138.198306pt;}
._3e{width:191.188672pt;}
._57{width:204.725760pt;}
._4f{width:216.277185pt;}
._4e{width:224.056945pt;}
._56{width:230.878518pt;}
._37{width:232.026085pt;}
._4d{width:237.590747pt;}
._3b{width:240.612963pt;}
._38{width:267.959216pt;}
._52{width:296.273449pt;}
._23{width:303.039475pt;}
._49{width:305.917266pt;}
._53{width:332.286501pt;}
._32{width:340.225289pt;}
._41{width:381.261208pt;}
._50{width:429.002606pt;}
._29{width:431.145551pt;}
._36{width:456.829360pt;}
._33{width:491.317839pt;}
._2a{width:499.615323pt;}
._2c{width:503.304482pt;}
._20{width:512.004864pt;}
._28{width:533.325973pt;}
._4a{width:547.433189pt;}
._4c{width:570.385533pt;}
._34{width:582.758649pt;}
._45{width:583.925285pt;}
._3a{width:590.061040pt;}
._22{width:600.882196pt;}
._48{width:605.259243pt;}
._51{width:616.355397pt;}
._35{width:657.376345pt;}
._46{width:662.492114pt;}
._30{width:722.107722pt;}
._31{width:731.351733pt;}
._2b{width:763.595325pt;}
._2e{width:889.019241pt;}
._25{width:892.511435pt;}
._26{width:894.598277pt;}
._27{width:923.366260pt;}
._2d{width:930.541086pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:38.620229pt;}
.fsa{font-size:43.419396pt;}
.fsb{font-size:43.748129pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:5.099003pt;}
.y120{bottom:5.134261pt;}
.yd4{bottom:5.759174pt;}
.y12d{bottom:5.802777pt;}
.yb7{bottom:18.719952pt;}
.yd3{bottom:21.099279pt;}
.y12c{bottom:21.232283pt;}
.yb6{bottom:32.340900pt;}
.yd2{bottom:36.439383pt;}
.y12b{bottom:36.661788pt;}
.yb5{bottom:45.961849pt;}
.y1{bottom:50.880000pt;}
.yd1{bottom:51.779488pt;}
.y12a{bottom:52.118034pt;}
.yb4{bottom:59.582798pt;}
.y1b{bottom:65.920000pt;}
.yd0{bottom:67.119593pt;}
.y129{bottom:67.547539pt;}
.yb3{bottom:73.203746pt;}
.y66{bottom:80.640000pt;}
.ycf{bottom:82.459697pt;}
.y128{bottom:82.977044pt;}
.y4e{bottom:85.440000pt;}
.y14c{bottom:86.720000pt;}
.yb2{bottom:86.824695pt;}
.y110{bottom:90.240000pt;}
.y1a{bottom:91.479680pt;}
.y13a{bottom:91.840000pt;}
.ye3{bottom:92.160000pt;}
.yf3{bottom:92.800000pt;}
.y93{bottom:93.760000pt;}
.y9e{bottom:96.640000pt;}
.y65{bottom:96.960000pt;}
.yce{bottom:97.799802pt;}
.y118{bottom:97.920000pt;}
.y127{bottom:98.433290pt;}
.y72{bottom:98.560000pt;}
.y91{bottom:99.840000pt;}
.yb1{bottom:100.450365pt;}
.y16e{bottom:103.040000pt;}
.y15c{bottom:104.000000pt;}
.y36{bottom:104.640000pt;}
.y18f{bottom:105.920000pt;}
.y183{bottom:106.560000pt;}
.y4d{bottom:109.440000pt;}
.y14b{bottom:110.720000pt;}
.y19{bottom:111.646080pt;}
.ycd{bottom:113.134598pt;}
.y126{bottom:113.862795pt;}
.yb0{bottom:114.066592pt;}
.y13d{bottom:117.440000pt;}
.y64{bottom:118.080000pt;}
.y10f{bottom:119.040000pt;}
.y139{bottom:120.640000pt;}
.ye2{bottom:120.960000pt;}
.yf2{bottom:121.600000pt;}
.y92{bottom:122.560000pt;}
.y18e{bottom:123.520000pt;}
.y117{bottom:126.720000pt;}
.y16d{bottom:127.040000pt;}
.y4c{bottom:127.360000pt;}
.yaf{bottom:127.692262pt;}
.ycc{bottom:128.474703pt;}
.y90{bottom:128.640000pt;}
.y125{bottom:129.286952pt;}
.y18{bottom:131.812480pt;}
.y15b{bottom:132.800000pt;}
.y35{bottom:133.440000pt;}
.y14a{bottom:134.720000pt;}
.y182{bottom:135.360000pt;}
.y9d{bottom:136.640000pt;}
.yff{bottom:138.560000pt;}
.yae{bottom:141.308489pt;}
.y63{bottom:142.080000pt;}
.ycb{bottom:143.825423pt;}
.y124{bottom:144.743198pt;}
.y16c{bottom:144.960000pt;}
.y84{bottom:145.280000pt;}
.y10e{bottom:147.840000pt;}
.ye1{bottom:149.760000pt;}
.y17{bottom:151.978880pt;}
.yad{bottom:154.934159pt;}
.y149{bottom:158.720000pt;}
.yca{bottom:159.165528pt;}
.y18d{bottom:159.680000pt;}
.y62{bottom:160.000000pt;}
.y123{bottom:160.178051pt;}
.y15a{bottom:161.600000pt;}
.y181{bottom:164.160000pt;}
.y138{bottom:165.440000pt;}
.yf1{bottom:166.400000pt;}
.yac{bottom:168.550386pt;}
.y9c{bottom:169.920000pt;}
.y34{bottom:170.240000pt;}
.y116{bottom:171.520000pt;}
.y71{bottom:172.160000pt;}
.y16{bottom:172.454400pt;}
.y8f{bottom:173.440000pt;}
.y83{bottom:174.080000pt;}
.yc9{bottom:174.505633pt;}
.y122{bottom:175.602208pt;}
.y18c{bottom:177.280000pt;}
.ye0{bottom:178.560000pt;}
.yab{bottom:182.176056pt;}
.y148{bottom:182.720000pt;}
.yfe{bottom:183.360000pt;}
.yc7{bottom:183.680000pt;}
.y10d{bottom:184.000000pt;}
.y159{bottom:190.400000pt;}
.y121{bottom:191.037061pt;}
.y1a3{bottom:191.360000pt;}
.y9b{bottom:191.680000pt;}
.y9f{bottom:191.808133pt;}
.y15{bottom:192.620800pt;}
.y180{bottom:192.960000pt;}
.y137{bottom:194.240000pt;}
.y18b{bottom:194.880000pt;}
.yf0{bottom:195.200000pt;}
.yaa{bottom:195.792283pt;}
.y33{bottom:199.040000pt;}
.y115{bottom:200.320000pt;}
.y70{bottom:200.960000pt;}
.y8e{bottom:202.240000pt;}
.y82{bottom:202.880000pt;}
.y61{bottom:206.080000pt;}
.y11e{bottom:206.493307pt;}
.y147{bottom:206.720000pt;}
.ydf{bottom:207.360000pt;}
.ya9{bottom:209.417953pt;}
.yc6{bottom:212.480000pt;}
.y14{bottom:212.787200pt;}
.y4b{bottom:214.080000pt;}
.y16b{bottom:218.880000pt;}
.y158{bottom:219.200000pt;}
.y17f{bottom:221.760000pt;}
.y11d{bottom:221.917464pt;}
.y166{bottom:222.720000pt;}
.ya8{bottom:223.034181pt;}
.y136{bottom:223.040000pt;}
.yef{bottom:224.000000pt;}
.y10c{bottom:227.520000pt;}
.y32{bottom:227.840000pt;}
.yfd{bottom:228.160000pt;}
.y114{bottom:229.120000pt;}
.y6f{bottom:229.760000pt;}
.y18a{bottom:230.080000pt;}
.y81{bottom:231.680000pt;}
.y13{bottom:232.953600pt;}
.y60{bottom:234.880000pt;}
.yde{bottom:236.160000pt;}
.ya7{bottom:236.659850pt;}
.y11c{bottom:237.352317pt;}
.y146{bottom:241.280000pt;}
.y4a{bottom:242.880000pt;}
.y8d{bottom:247.040000pt;}
.y16a{bottom:247.680000pt;}
.y157{bottom:248.000000pt;}
.ya6{bottom:250.276078pt;}
.y17e{bottom:250.560000pt;}
.y165{bottom:251.520000pt;}
.y135{bottom:251.840000pt;}
.yee{bottom:252.800000pt;}
.y11b{bottom:252.808563pt;}
.y12{bottom:253.120000pt;}
.y10b{bottom:256.320000pt;}
.y31{bottom:256.640000pt;}
.yc5{bottom:257.280000pt;}
.y113{bottom:257.920000pt;}
.y80{bottom:260.480000pt;}
.y5f{bottom:263.680000pt;}
.ya5{bottom:263.901748pt;}
.y189{bottom:266.240000pt;}
.y6e{bottom:266.560000pt;}
.y11a{bottom:268.232720pt;}
.y145{bottom:270.080000pt;}
.y49{bottom:271.680000pt;}
.ydd{bottom:272.320000pt;}
.yfc{bottom:272.960000pt;}
.y8c{bottom:275.840000pt;}
.y169{bottom:276.480000pt;}
.y156{bottom:276.800000pt;}
.ya4{bottom:277.517975pt;}
.y164{bottom:280.320000pt;}
.y1a2{bottom:281.280000pt;}
.yed{bottom:281.600000pt;}
.y188{bottom:283.840000pt;}
.y10a{bottom:285.120000pt;}
.y30{bottom:285.440000pt;}
.yc4{bottom:286.080000pt;}
.y112{bottom:286.720000pt;}
.y134{bottom:287.040000pt;}
.y12e{bottom:289.280000pt;}
.ya3{bottom:291.143645pt;}
.y5e{bottom:292.480000pt;}
.y17d{bottom:295.360000pt;}
.y11{bottom:296.960000pt;}
.y144{bottom:298.880000pt;}
.y48{bottom:300.480000pt;}
.ya2{bottom:304.740987pt;}
.y7f{bottom:305.280000pt;}
.y155{bottom:305.600000pt;}
.y163{bottom:309.120000pt;}
.yec{bottom:310.400000pt;}
.y6d{bottom:311.360000pt;}
.y133{bottom:312.000000pt;}
.y109{bottom:313.920000pt;}
.y2f{bottom:314.240000pt;}
.yc3{bottom:314.880000pt;}
.y111{bottom:315.520000pt;}
.ydc{bottom:315.840000pt;}
.y1a1{bottom:316.480000pt;}
.yfb{bottom:317.760000pt;}
.ya1{bottom:318.357214pt;}
.y187{bottom:320.320000pt;}
.y5d{bottom:321.280000pt;}
.y17c{bottom:324.160000pt;}
.y143{bottom:327.680000pt;}
.ya0{bottom:331.982884pt;}
.y7e{bottom:334.080000pt;}
.y154{bottom:334.400000pt;}
.y47{bottom:337.280000pt;}
.y162{bottom:337.920000pt;}
.y6c{bottom:340.160000pt;}
.y2e{bottom:343.040000pt;}
.yc2{bottom:343.680000pt;}
.ydb{bottom:344.640000pt;}
.yfa{bottom:346.560000pt;}
.y13c{bottom:349.120000pt;}
.y5c{bottom:350.080000pt;}
.y17b{bottom:352.960000pt;}
.y119{bottom:354.934267pt;}
.yeb{bottom:355.200000pt;}
.y186{bottom:355.520000pt;}
.y142{bottom:356.480000pt;}
.y10{bottom:358.400000pt;}
.y108{bottom:358.720000pt;}
.y7d{bottom:362.880000pt;}
.y153{bottom:363.200000pt;}
.y46{bottom:366.080000pt;}
.y161{bottom:366.720000pt;}
.y6b{bottom:368.960000pt;}
.y1a0{bottom:370.560000pt;}
.y2d{bottom:371.840000pt;}
.yc1{bottom:372.480000pt;}
.y13b{bottom:373.120000pt;}
.yda{bottom:373.440000pt;}
.yf9{bottom:375.360000pt;}
.y5b{bottom:378.880000pt;}
.y17a{bottom:381.760000pt;}
.yf{bottom:383.360000pt;}
.yea{bottom:384.000000pt;}
.y107{bottom:387.520000pt;}
.y19f{bottom:388.160000pt;}
.y7c{bottom:391.680000pt;}
.y152{bottom:392.000000pt;}
.y45{bottom:394.880000pt;}
.y160{bottom:395.520000pt;}
.y6a{bottom:397.760000pt;}
.y2c{bottom:400.640000pt;}
.yc0{bottom:401.280000pt;}
.yd9{bottom:402.240000pt;}
.yf8{bottom:404.160000pt;}
.y19e{bottom:405.760000pt;}
.y5a{bottom:407.680000pt;}
.y185{bottom:408.960000pt;}
.ye{bottom:409.280000pt;}
.y179{bottom:410.560000pt;}
.ye9{bottom:412.800000pt;}
.y106{bottom:416.320000pt;}
.y7b{bottom:420.480000pt;}
.y151{bottom:420.800000pt;}
.y44{bottom:423.680000pt;}
.y15f{bottom:424.320000pt;}
.y69{bottom:426.560000pt;}
.y2b{bottom:429.440000pt;}
.ybf{bottom:430.080000pt;}
.yd8{bottom:431.040000pt;}
.y8b{bottom:436.480000pt;}
.yd{bottom:436.800000pt;}
.yf7{bottom:438.400000pt;}
.y178{bottom:439.360000pt;}
.ye8{bottom:441.600000pt;}
.y19d{bottom:441.920000pt;}
.y59{bottom:444.480000pt;}
.y105{bottom:445.120000pt;}
.y184{bottom:448.000000pt;}
.y7a{bottom:449.280000pt;}
.y150{bottom:449.600000pt;}
.y43{bottom:452.480000pt;}
.y68{bottom:455.360000pt;}
.y2a{bottom:458.240000pt;}
.y141{bottom:458.880000pt;}
.y19c{bottom:459.520000pt;}
.y15e{bottom:459.840000pt;}
.yc{bottom:461.760000pt;}
.yf6{bottom:463.360000pt;}
.y8a{bottom:465.280000pt;}
.ye7{bottom:470.400000pt;}
.y58{bottom:473.280000pt;}
.y104{bottom:473.920000pt;}
.ybe{bottom:474.880000pt;}
.y79{bottom:478.080000pt;}
.y15d{bottom:480.640000pt;}
.y42{bottom:481.280000pt;}
.y177{bottom:484.160000pt;}
.y14f{bottom:486.080000pt;}
.y29{bottom:487.040000pt;}
.yb{bottom:487.680000pt;}
.yd7{bottom:490.240000pt;}
.y67{bottom:492.800000pt;}
.y89{bottom:494.080000pt;}
.y19b{bottom:495.680000pt;}
.ye6{bottom:499.200000pt;}
.y57{bottom:502.080000pt;}
.y103{bottom:502.720000pt;}
.ybd{bottom:503.680000pt;}
.y78{bottom:506.880000pt;}
.y41{bottom:510.080000pt;}
.y176{bottom:512.960000pt;}
.y19a{bottom:513.280000pt;}
.ya{bottom:515.200000pt;}
.y132{bottom:515.520000pt;}
.y28{bottom:515.840000pt;}
.y140{bottom:516.480000pt;}
.y88{bottom:522.880000pt;}
.y14e{bottom:529.600000pt;}
.y56{bottom:530.880000pt;}
.y102{bottom:531.520000pt;}
.ybc{bottom:532.480000pt;}
.ye5{bottom:533.440000pt;}
.y77{bottom:535.680000pt;}
.y40{bottom:538.880000pt;}
.y131{bottom:539.520000pt;}
.y9{bottom:540.160000pt;}
.y11f{bottom:540.837067pt;}
.y175{bottom:541.760000pt;}
.y9a{bottom:544.320000pt;}
.y27{bottom:544.960000pt;}
.y13f{bottom:545.280000pt;}
.y87{bottom:551.680000pt;}
.y14d{bottom:558.080000pt;}
.ye4{bottom:558.400000pt;}
.y55{bottom:559.680000pt;}
.y76{bottom:564.480000pt;}
.y101{bottom:565.760000pt;}
.y8{bottom:566.080000pt;}
.y199{bottom:567.360000pt;}
.y3f{bottom:567.680000pt;}
.y99{bottom:568.320000pt;}
.y174{bottom:570.560000pt;}
.yc8{bottom:571.948533pt;}
.ybb{bottom:572.160000pt;}
.y130{bottom:574.080000pt;}
.y86{bottom:580.480000pt;}
.y26{bottom:581.760000pt;}
.y198{bottom:584.960000pt;}
.y54{bottom:588.480000pt;}
.y100{bottom:590.720000pt;}
.y75{bottom:593.280000pt;}
.y7{bottom:593.600000pt;}
.y3e{bottom:596.480000pt;}
.y173{bottom:599.360000pt;}
.y197{bottom:602.560000pt;}
.y98{bottom:602.880000pt;}
.y85{bottom:609.280000pt;}
.y25{bottom:616.960000pt;}
.y53{bottom:617.280000pt;}
.y6{bottom:618.560000pt;}
.y3d{bottom:625.280000pt;}
.y172{bottom:628.160000pt;}
.y97{bottom:631.680000pt;}
.y24{bottom:637.440000pt;}
.y74{bottom:638.080000pt;}
.y196{bottom:638.720000pt;}
.y5{bottom:644.480000pt;}
.y52{bottom:646.080000pt;}
.yf5{bottom:653.120000pt;}
.y3c{bottom:654.080000pt;}
.y195{bottom:656.320000pt;}
.y171{bottom:656.960000pt;}
.y23{bottom:657.600000pt;}
.y96{bottom:660.480000pt;}
.y73{bottom:666.880000pt;}
.y194{bottom:673.920000pt;}
.y51{bottom:674.880000pt;}
.yf4{bottom:677.120000pt;}
.y22{bottom:677.760000pt;}
.yd6{bottom:681.920000pt;}
.y3b{bottom:682.880000pt;}
.y170{bottom:685.760000pt;}
.y95{bottom:689.280000pt;}
.y168{bottom:695.680000pt;}
.y12f{bottom:696.960000pt;}
.y21{bottom:697.920000pt;}
.y50{bottom:703.680000pt;}
.yd5{bottom:705.920000pt;}
.y193{bottom:710.080000pt;}
.y3a{bottom:711.680000pt;}
.y20{bottom:718.400000pt;}
.y16f{bottom:723.200000pt;}
.y167{bottom:724.480000pt;}
.y94{bottom:725.760000pt;}
.y192{bottom:727.680000pt;}
.y4f{bottom:732.480000pt;}
.y4{bottom:737.288320pt;}
.y1f{bottom:738.560000pt;}
.y39{bottom:740.480000pt;}
.y191{bottom:745.280000pt;}
.y1e{bottom:758.720000pt;}
.y3{bottom:764.484160pt;}
.y38{bottom:769.280000pt;}
.yba{bottom:776.320000pt;}
.y1d{bottom:778.880000pt;}
.y190{bottom:781.760000pt;}
.y2{bottom:791.680000pt;}
.y13e{bottom:797.760000pt;}
.y37{bottom:798.080000pt;}
.y1c{bottom:799.360000pt;}
.yb9{bottom:800.320000pt;}
.h19{height:14.787720pt;}
.hc{height:25.136250pt;}
.h1a{height:26.403840pt;}
.h10{height:27.150021pt;}
.h11{height:27.497603pt;}
.h13{height:30.393577pt;}
.h15{height:30.523836pt;}
.h17{height:30.754935pt;}
.h14{height:30.914610pt;}
.h18{height:31.148668pt;}
.h2{height:35.831250pt;}
.h5{height:39.787520pt;}
.hb{height:42.262500pt;}
.he{height:44.029440pt;}
.hd{height:44.336250pt;}
.h8{height:45.212160pt;}
.h7{height:48.163840pt;}
.h1b{height:48.222720pt;}
.h4{height:49.047040pt;}
.ha{height:52.352000pt;}
.h6{height:53.312000pt;}
.h9{height:58.129920pt;}
.h3{height:76.430080pt;}
.h12{height:184.081200pt;}
.h16{height:277.891600pt;}
.hf{height:340.500133pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:152.598933pt;}
.w5{width:206.597200pt;}
.w4{width:331.463333pt;}
.w2{width:352.693200pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:1.701239pt;}
.x1b{left:37.680800pt;}
.xf{left:75.519867pt;}
.x2{left:81.646533pt;}
.x22{left:92.046353pt;}
.x12{left:99.319648pt;}
.x13{left:103.853184pt;}
.x16{left:120.976308pt;}
.x18{left:131.212037pt;}
.x15{left:145.200267pt;}
.x3{left:148.011653pt;}
.x21{left:155.875733pt;}
.x4{left:232.484613pt;}
.x23{left:240.707016pt;}
.x1a{left:244.935733pt;}
.x11{left:267.519872pt;}
.xe{left:283.756533pt;}
.x1{left:295.178000pt;}
.xb{left:308.025067pt;}
.x6{left:319.201200pt;}
.x10{left:321.219840pt;}
.xd{left:331.277067pt;}
.x9{left:332.408000pt;}
.xa{left:358.100800pt;}
.x19{left:398.179840pt;}
.x1f{left:413.219840pt;}
.x7{left:414.224000pt;}
.x5{left:418.540800pt;}
.x24{left:426.179840pt;}
.x1d{left:429.379840pt;}
.x8{left:444.911333pt;}
.x27{left:455.459840pt;}
.xc{left:462.349067pt;}
.x1e{left:465.219840pt;}
.x1c{left:469.379840pt;}
.x20{left:487.139520pt;}
.x14{left:497.859840pt;}
.x26{left:503.139520pt;}
.x25{left:546.179840pt;}
}

