
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9897b1b8a81b0655da6e88bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_65f8242162f442a508da02ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034668;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_88462ba85de51994b8c66e9e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6d619c95271e17b86bf33043.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.025391;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_1f77caf5db85b7bf3a0e399b.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff17;src:url('chunks/assets/font_eb4b15637d008ac834ff8d62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871582;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_2c4b0be6821d3d63e019e2b9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.868164;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_67acbf4466ac9cecf1971773.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.872559;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_e487205054090235d7f47193.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.869629;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;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_eb51f3886b59cee2d69ed237.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.975586;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;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff24;src:url('chunks/assets/font_96b7ed043b6e2e354ac4132e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.872559;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_84ac51dc958085a2789e19b7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.868164;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_39617b75edfe87ba7c2cc3eb.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.873535;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_165e350c7dcdf68874f4d349.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.871094;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;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_811198edc619ea0b2d8486cb.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.975586;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_602292be328fbc9c7245d5f9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.025391;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_4005eccdc2585c29236f30cf.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.692871;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_ae5a2597878e3ff7655bd382.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.910000;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_c61c9c33a322ee6310f19ddb.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.999000;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_a930d4cb5a00a2cdfd644a0b.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.921000;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_9eecd145c05cad69a2e5ba46.woff2')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_9fbab789ab75d5529b28f8be.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_2a546f524c71607ca8daa47d.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_64f845ed6246d18bbabb698b.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_81eaf1718f52e006ebfb7bc5.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_1674c9882a97d7aba527922b.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_1a71f024588233eb05196f6d.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_61523c5d5f39d580a71f3035.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.898200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_2dfba1b65bb4e9e7c3e0f93f.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_4ddc530c37e8838d37192c03.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.704000;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:ff3c;src:url('chunks/assets/font_6e9eeb209918149da78ad640.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.603000;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;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.mb{transform:matrix(0.000000,-0.255043,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255043,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255043,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.255445,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255445,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255445,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.043104,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(0.043104,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(0.043104,0.000000,0.000000,-0.250000,0,0);}
.m7{transform:matrix(0.244671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244671,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244674,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244682,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247304,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247334,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,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);}
.v7{vertical-align:-15.306000px;}
.v6{vertical-align:-8.970000px;}
.v5{vertical-align:-5.976000px;}
.v2{vertical-align:-3.847637px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.648804px;}
.v1{vertical-align:6.595262px;}
.v8{vertical-align:8.964000px;}
.v4{vertical-align:51.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000767px;}
.ls3{letter-spacing:0.000780px;}
.ls10{letter-spacing:0.002245px;}
.ls5{letter-spacing:0.002289px;}
.ls2f{letter-spacing:0.002338px;}
.ls2a{letter-spacing:0.002481px;}
.ls11{letter-spacing:0.002525px;}
.ls13{letter-spacing:0.002847px;}
.lsf{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.004379px;}
.lsa{letter-spacing:0.004893px;}
.ls2{letter-spacing:0.275177px;}
.ls1{letter-spacing:0.396156px;}
.ls33{letter-spacing:1.916133px;}
.ls1c{letter-spacing:2.148767px;}
.ls16{letter-spacing:2.984525px;}
.ls6{letter-spacing:2.990289px;}
.ls15{letter-spacing:2.990525px;}
.ls4{letter-spacing:4.111534px;}
.ls23{letter-spacing:4.488538px;}
.ls30{letter-spacing:4.865607px;}
.ls19{letter-spacing:5.279276px;}
.ls12{letter-spacing:5.402908px;}
.ls7{letter-spacing:5.853358px;}
.ls22{letter-spacing:9.896908px;}
.ls1a{letter-spacing:9.962338px;}
.lse{letter-spacing:13.277607px;}
.ls1b{letter-spacing:13.280847px;}
.ls31{letter-spacing:13.282200px;}
.lsc{letter-spacing:13.283607px;}
.ls25{letter-spacing:14.219607px;}
.ls35{letter-spacing:15.355336px;}
.ls28{letter-spacing:15.647607px;}
.ls1f{letter-spacing:16.490086px;}
.ls18{letter-spacing:16.601607px;}
.ls9{letter-spacing:16.602538px;}
.ls1d{letter-spacing:16.610481px;}
.ls34{letter-spacing:18.350289px;}
.lsb{letter-spacing:18.557276px;}
.ls21{letter-spacing:18.570444px;}
.ls17{letter-spacing:18.750767px;}
.ls24{letter-spacing:19.212538px;}
.ls2b{letter-spacing:19.586525px;}
.ls32{letter-spacing:19.591140px;}
.ls2e{letter-spacing:19.592525px;}
.ls26{letter-spacing:19.622908px;}
.ls1e{letter-spacing:20.884379px;}
.ls8{letter-spacing:21.293915px;}
.ls27{letter-spacing:22.512538px;}
.lsd{letter-spacing:26.570847px;}
.ls2c{letter-spacing:33.194525px;}
.ls2d{letter-spacing:33.200525px;}
.ls29{letter-spacing:45.026400px;}
.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;}
}
.wsf9{word-spacing:-59.775600px;}
.wsfb{word-spacing:-43.157983px;}
.wsd4{word-spacing:-21.804311px;}
.ws9d{word-spacing:-11.947163px;}
.wsb6{word-spacing:-9.232162px;}
.wsaf{word-spacing:-8.836005px;}
.ws85{word-spacing:-8.181377px;}
.wscf{word-spacing:-6.923718px;}
.wsdf{word-spacing:-6.380049px;}
.wsde{word-spacing:-6.104872px;}
.wsf0{word-spacing:-0.059776px;}
.wse9{word-spacing:-0.053798px;}
.wsd3{word-spacing:-0.043332px;}
.wsd7{word-spacing:-0.043262px;}
.wsf7{word-spacing:-0.041843px;}
.wsb0{word-spacing:-0.040347px;}
.wse7{word-spacing:-0.035866px;}
.wsd2{word-spacing:-0.029647px;}
.wsd6{word-spacing:-0.029601px;}
.wsd1{word-spacing:-0.029015px;}
.wse1{word-spacing:-0.027876px;}
.ws3{word-spacing:0.000000px;}
.wse8{word-spacing:5.774362px;}
.wse5{word-spacing:7.639373px;}
.wsfe{word-spacing:8.429121px;}
.wsff{word-spacing:8.941124px;}
.wsfc{word-spacing:9.862974px;}
.wsf1{word-spacing:9.922750px;}
.ws86{word-spacing:10.598285px;}
.ws11{word-spacing:12.750221px;}
.ws5d{word-spacing:13.270183px;}
.ws98{word-spacing:13.329959px;}
.wsdb{word-spacing:13.748388px;}
.ws133{word-spacing:13.772390px;}
.ws5e{word-spacing:13.808164px;}
.ws82{word-spacing:14.166817px;}
.ws4{word-spacing:14.202778px;}
.ws8e{word-spacing:14.226593px;}
.ws8d{word-spacing:14.286368px;}
.ws11d{word-spacing:14.310374px;}
.ws97{word-spacing:14.346144px;}
.ws134{word-spacing:14.364173px;}
.wsc6{word-spacing:14.405920px;}
.wscc{word-spacing:14.465695px;}
.ws122{word-spacing:14.579366px;}
.wsa2{word-spacing:14.645022px;}
.wsc3{word-spacing:14.704798px;}
.ws11a{word-spacing:14.764573px;}
.ws119{word-spacing:15.003676px;}
.ws48{word-spacing:15.063451px;}
.ws13{word-spacing:15.117350px;}
.wsd9{word-spacing:15.123227px;}
.ws96{word-spacing:15.242778px;}
.ws47{word-spacing:15.302554px;}
.wse6{word-spacing:15.332544px;}
.ws9c{word-spacing:15.422105px;}
.wsc1{word-spacing:15.481880px;}
.ws5c{word-spacing:15.541656px;}
.ws107{word-spacing:15.584624px;}
.ws10c{word-spacing:15.720983px;}
.ws11b{word-spacing:15.762931px;}
.ws73{word-spacing:15.780758px;}
.ws11e{word-spacing:15.816730px;}
.ws7c{word-spacing:15.900310px;}
.ws9b{word-spacing:15.960085px;}
.wsc9{word-spacing:16.079636px;}
.wscd{word-spacing:16.139412px;}
.ws18{word-spacing:16.199188px;}
.ws79{word-spacing:16.258963px;}
.wsf4{word-spacing:16.318739px;}
.ws120{word-spacing:16.354714px;}
.wsb7{word-spacing:16.378514px;}
.ws12b{word-spacing:16.462310px;}
.wsc5{word-spacing:16.498066px;}
.ws101{word-spacing:16.557841px;}
.wsf{word-spacing:16.569907px;}
.wsbd{word-spacing:16.617617px;}
.ws11f{word-spacing:16.623706px;}
.ws135{word-spacing:16.677504px;}
.wsd8{word-spacing:16.737168px;}
.ws78{word-spacing:16.796944px;}
.ws99{word-spacing:16.856719px;}
.wsc{word-spacing:16.892698px;}
.wsa1{word-spacing:16.916495px;}
.wsf3{word-spacing:16.976270px;}
.wsd{word-spacing:17.000294px;}
.wsc4{word-spacing:17.036046px;}
.wsef{word-spacing:17.095822px;}
.ws103{word-spacing:17.151231px;}
.ws104{word-spacing:17.157686px;}
.ws105{word-spacing:17.158995px;}
.ws124{word-spacing:17.161690px;}
.ws71{word-spacing:17.215373px;}
.ws56{word-spacing:17.275148px;}
.wsce{word-spacing:17.334924px;}
.ws19{word-spacing:17.454475px;}
.ws129{word-spacing:17.484480px;}
.ws35{word-spacing:17.514251px;}
.ws53{word-spacing:17.574026px;}
.ws7b{word-spacing:17.633802px;}
.ws72{word-spacing:17.693578px;}
.wsbe{word-spacing:17.753353px;}
.ws80{word-spacing:17.813129px;}
.ws125{word-spacing:17.861069px;}
.wsa3{word-spacing:17.872904px;}
.ws12a{word-spacing:17.914867px;}
.wsa0{word-spacing:17.932680px;}
.ws8{word-spacing:17.968666px;}
.ws2b{word-spacing:17.992456px;}
.ws126{word-spacing:18.022464px;}
.ws4d{word-spacing:18.052231px;}
.ws3d{word-spacing:18.171782px;}
.ws6a{word-spacing:18.231558px;}
.ws4c{word-spacing:18.291334px;}
.wsb8{word-spacing:18.351109px;}
.ws2{word-spacing:18.399053px;}
.ws7d{word-spacing:18.410885px;}
.ws16{word-spacing:18.452851px;}
.ws2f{word-spacing:18.470660px;}
.ws14{word-spacing:18.506650px;}
.ws3e{word-spacing:18.530436px;}
.ws7e{word-spacing:18.649987px;}
.ws65{word-spacing:18.709763px;}
.ws114{word-spacing:18.829314px;}
.wsa7{word-spacing:18.889090px;}
.ws89{word-spacing:18.948865px;}
.ws44{word-spacing:19.008641px;}
.ws12{word-spacing:19.044634px;}
.ws116{word-spacing:19.068416px;}
.ws7f{word-spacing:19.128192px;}
.ws46{word-spacing:19.187968px;}
.ws83{word-spacing:19.247743px;}
.ws6e{word-spacing:19.307519px;}
.ws5{word-spacing:19.313626px;}
.wsee{word-spacing:19.367294px;}
.wsb{word-spacing:19.367424px;}
.ws67{word-spacing:19.427070px;}
.ws9{word-spacing:19.475021px;}
.wseb{word-spacing:19.486846px;}
.ws12e{word-spacing:19.528819px;}
.ws100{word-spacing:19.544730px;}
.ws4e{word-spacing:19.546621px;}
.ws51{word-spacing:19.606397px;}
.ws12f{word-spacing:19.690214px;}
.wsb9{word-spacing:19.725948px;}
.wse{word-spacing:19.744013px;}
.wsa9{word-spacing:19.785724px;}
.ws5a{word-spacing:19.845499px;}
.ws1{word-spacing:19.905275px;}
.ws23{word-spacing:19.965050px;}
.wsa{word-spacing:20.013005px;}
.ws31{word-spacing:20.024826px;}
.ws52{word-spacing:20.084602px;}
.ws12d{word-spacing:20.120602px;}
.ws30{word-spacing:20.144377px;}
.ws121{word-spacing:20.174400px;}
.ws69{word-spacing:20.204153px;}
.wsca{word-spacing:20.263928px;}
.ws4a{word-spacing:20.323704px;}
.ws81{word-spacing:20.383480px;}
.ws66{word-spacing:20.443255px;}
.ws132{word-spacing:20.443392px;}
.ws8f{word-spacing:20.503031px;}
.wsa6{word-spacing:20.562806px;}
.ws24{word-spacing:20.622582px;}
.ws93{word-spacing:20.682358px;}
.ws10d{word-spacing:20.742133px;}
.ws4f{word-spacing:20.801909px;}
.ws94{word-spacing:20.861684px;}
.ws12c{word-spacing:20.873779px;}
.ws76{word-spacing:20.921460px;}
.ws92{word-spacing:20.981236px;}
.ws15{word-spacing:20.981376px;}
.wsfa{word-spacing:21.034238px;}
.ws10{word-spacing:21.035174px;}
.ws6c{word-spacing:21.041011px;}
.ws3f{word-spacing:21.100787px;}
.ws43{word-spacing:21.160562px;}
.wsc7{word-spacing:21.220338px;}
.wsbf{word-spacing:21.280114px;}
.wsba{word-spacing:21.339889px;}
.ws2e{word-spacing:21.399665px;}
.ws4b{word-spacing:21.459440px;}
.ws61{word-spacing:21.519216px;}
.ws45{word-spacing:21.578992px;}
.ws22{word-spacing:21.638767px;}
.ws68{word-spacing:21.698543px;}
.ws28{word-spacing:21.758318px;}
.wsf2{word-spacing:21.818094px;}
.ws34{word-spacing:21.877870px;}
.ws27{word-spacing:21.937645px;}
.ws87{word-spacing:21.997421px;}
.ws95{word-spacing:22.116972px;}
.ws102{word-spacing:22.158099px;}
.ws41{word-spacing:22.176748px;}
.ws128{word-spacing:22.218739px;}
.ws110{word-spacing:22.236523px;}
.wsdd{word-spacing:22.296299px;}
.ws2c{word-spacing:22.415850px;}
.ws2a{word-spacing:22.475626px;}
.wsc2{word-spacing:22.535401px;}
.ws54{word-spacing:22.595177px;}
.ws1c{word-spacing:22.654952px;}
.ws10e{word-spacing:22.714728px;}
.wscb{word-spacing:22.774504px;}
.ws7{word-spacing:22.864320px;}
.ws1f{word-spacing:22.894055px;}
.ws7a{word-spacing:22.953830px;}
.ws36{word-spacing:23.013606px;}
.ws64{word-spacing:23.073382px;}
.ws26{word-spacing:23.133157px;}
.ws123{word-spacing:23.187110px;}
.ws6f{word-spacing:23.192933px;}
.ws6d{word-spacing:23.312484px;}
.ws2d{word-spacing:23.372260px;}
.wsa5{word-spacing:23.432035px;}
.wsc0{word-spacing:23.491811px;}
.wse4{word-spacing:23.551586px;}
.ws127{word-spacing:23.563699px;}
.wsf8{word-spacing:23.614452px;}
.wsbb{word-spacing:23.790689px;}
.ws113{word-spacing:23.850464px;}
.wse3{word-spacing:23.891713px;}
.ws50{word-spacing:23.910240px;}
.ws1e{word-spacing:24.029791px;}
.ws49{word-spacing:24.089567px;}
.wsfd{word-spacing:24.149342px;}
.ws3b{word-spacing:24.209118px;}
.ws39{word-spacing:24.268894px;}
.ws1b{word-spacing:24.328669px;}
.ws131{word-spacing:24.370675px;}
.wsf5{word-spacing:24.388445px;}
.ws3a{word-spacing:24.448220px;}
.ws33{word-spacing:24.507996px;}
.ws74{word-spacing:24.567772px;}
.ws62{word-spacing:24.627547px;}
.ws5f{word-spacing:24.687323px;}
.wsed{word-spacing:24.747098px;}
.ws59{word-spacing:24.926425px;}
.ws42{word-spacing:24.986201px;}
.ws32{word-spacing:25.045976px;}
.wsec{word-spacing:25.165528px;}
.ws10f{word-spacing:25.285079px;}
.ws38{word-spacing:25.344854px;}
.ws75{word-spacing:25.404630px;}
.ws130{word-spacing:25.446643px;}
.ws106{word-spacing:25.450995px;}
.ws108{word-spacing:25.456995px;}
.ws40{word-spacing:25.583957px;}
.ws60{word-spacing:25.643732px;}
.ws63{word-spacing:25.703508px;}
.ws37{word-spacing:25.763284px;}
.wsf6{word-spacing:25.823059px;}
.ws57{word-spacing:25.942610px;}
.ws90{word-spacing:26.002386px;}
.ws115{word-spacing:26.121937px;}
.ws25{word-spacing:26.181713px;}
.ws58{word-spacing:26.241488px;}
.wsdc{word-spacing:26.420815px;}
.ws91{word-spacing:26.480591px;}
.wsda{word-spacing:26.540366px;}
.ws3c{word-spacing:26.600142px;}
.wsac{word-spacing:26.659918px;}
.wsae{word-spacing:26.719693px;}
.wsad{word-spacing:26.779469px;}
.wsc8{word-spacing:26.839244px;}
.ws5b{word-spacing:26.899200px;}
.wsea{word-spacing:26.958796px;}
.ws6{word-spacing:27.006797px;}
.ws77{word-spacing:27.018571px;}
.wsaa{word-spacing:27.078347px;}
.ws55{word-spacing:27.138122px;}
.wsab{word-spacing:27.197898px;}
.ws118{word-spacing:27.257674px;}
.ws9a{word-spacing:27.735878px;}
.ws29{word-spacing:27.855430px;}
.ws1d{word-spacing:27.974981px;}
.wsa8{word-spacing:28.034756px;}
.ws10b{word-spacing:28.094532px;}
.ws8a{word-spacing:28.154308px;}
.ws8c{word-spacing:28.333634px;}
.ws1a{word-spacing:28.393410px;}
.ws21{word-spacing:28.572737px;}
.ws70{word-spacing:28.931390px;}
.ws6b{word-spacing:28.991166px;}
.ws8b{word-spacing:29.050942px;}
.ws88{word-spacing:29.290044px;}
.ws20{word-spacing:29.349820px;}
.wsbc{word-spacing:29.469371px;}
.ws10a{word-spacing:30.126902px;}
.ws117{word-spacing:31.322414px;}
.wsa4{word-spacing:31.382190px;}
.wse0{word-spacing:31.428680px;}
.ws0{word-spacing:31.590332px;}
.ws11c{word-spacing:31.741056px;}
.wsb5{word-spacing:34.579959px;}
.wse2{word-spacing:34.761840px;}
.ws109{word-spacing:44.951251px;}
.wsb2{word-spacing:51.116010px;}
.wsb1{word-spacing:61.153770px;}
.wsb4{word-spacing:61.164527px;}
.ws112{word-spacing:68.682164px;}
.ws17{word-spacing:80.697600px;}
.ws111{word-spacing:82.849536px;}
.wsd0{word-spacing:213.789374px;}
.ws84{word-spacing:310.837104px;}
.ws9f{word-spacing:436.605870px;}
.wsd5{word-spacing:498.666487px;}
.ws9e{word-spacing:501.248078px;}
.wsb3{word-spacing:1193.523998px;}
._17{margin-left:-1345.666274px;}
._13{margin-left:-1017.253920px;}
._14{margin-left:-437.060705px;}
._25{margin-left:-25.911297px;}
._27{margin-left:-9.400165px;}
._1{margin-left:-7.919102px;}
._d{margin-left:-6.742733px;}
._3{margin-left:-4.961375px;}
._9{margin-left:-3.808880px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.613941px;}
._4{width:1.560154px;}
._5{width:2.668393px;}
._e{width:4.447334px;}
._24{width:5.864026px;}
._6{width:9.982525px;}
._28{width:15.306386px;}
._12{width:17.911171px;}
._26{width:19.286010px;}
._8{width:21.079278px;}
._b{width:22.513892px;}
._10{width:24.127834px;}
._a{width:26.040653px;}
._18{width:27.295940px;}
._7{width:29.627189px;}
._19{width:48.074261px;}
._15{width:54.100496px;}
._16{width:55.226108px;}
._1a{width:57.936013px;}
._23{width:64.340231px;}
._f{width:68.682164px;}
._c{width:80.697600px;}
._21{width:124.936092px;}
._20{width:195.677485px;}
._1b{width:234.846715px;}
._1c{width:247.870422px;}
._1d{width:265.175337px;}
._1e{width:268.370169px;}
._11{width:331.594831px;}
._1f{width:534.031290px;}
._22{width:564.530461px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.594468px;}
.fs12{font-size:26.436223px;}
.fse{font-size:26.439263px;}
.fsf{font-size:27.323698px;}
.fsa{font-size:27.366476px;}
.fs13{font-size:27.876129px;}
.fsb{font-size:29.015483px;}
.fs10{font-size:29.600908px;}
.fsc{font-size:29.647378px;}
.fs8{font-size:29.887800px;}
.fs14{font-size:35.865600px;}
.fs4{font-size:37.357887px;}
.fs6{font-size:40.347057px;}
.fs7{font-size:41.842800px;}
.fs11{font-size:43.262432px;}
.fsd{font-size:43.331919px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:54.553256px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1b0{bottom:0.369148px;}
.y16c{bottom:0.434292px;}
.y1c0{bottom:0.716582px;}
.y17b{bottom:0.846869px;}
.y19b{bottom:1.259610px;}
.y152{bottom:1.519913px;}
.y1ba{bottom:1.672024px;}
.y176{bottom:1.802312px;}
.y1b5{bottom:2.562323px;}
.y171{bottom:2.692610px;}
.y1af{bottom:3.517765px;}
.y16b{bottom:3.582909px;}
.y1bf{bottom:3.865199px;}
.y17a{bottom:3.995486px;}
.y19a{bottom:4.408227px;}
.y151{bottom:4.668530px;}
.y1b9{bottom:4.820641px;}
.y175{bottom:4.950929px;}
.y1ec{bottom:5.532856px;}
.y1b4{bottom:5.710940px;}
.y170{bottom:5.841227px;}
.y1ae{bottom:6.666382px;}
.y16a{bottom:6.731526px;}
.y9a{bottom:6.935947px;}
.y1be{bottom:7.013816px;}
.y199{bottom:7.556844px;}
.y150{bottom:7.817147px;}
.y198{bottom:10.705461px;}
.y14f{bottom:10.965764px;}
.y1a9{bottom:11.075912px;}
.y165{bottom:11.519758px;}
.yee{bottom:12.927525px;}
.y1dc{bottom:12.953367px;}
.y8c{bottom:13.747238px;}
.y197{bottom:13.854078px;}
.y14e{bottom:14.114381px;}
.ydb{bottom:14.120939px;}
.ye9{bottom:15.910647px;}
.y196{bottom:17.002695px;}
.y14d{bottom:17.262998px;}
.y99{bottom:18.166357px;}
.y195{bottom:20.151312px;}
.y14c{bottom:20.411615px;}
.y1e8{bottom:22.434929px;}
.y1a7{bottom:22.866885px;}
.y163{bottom:23.245588px;}
.y194{bottom:23.299929px;}
.y14b{bottom:23.560232px;}
.yde{bottom:23.666847px;}
.y193{bottom:26.448546px;}
.y1e0{bottom:26.557397px;}
.y14a{bottom:26.708849px;}
.y1d9{bottom:27.244475px;}
.y1db{bottom:27.382005px;}
.y98{bottom:29.396767px;}
.y192{bottom:29.597163px;}
.y1f0{bottom:29.855486px;}
.y149{bottom:29.857466px;}
.y1a0{bottom:31.726659px;}
.y15a{bottom:32.170288px;}
.y191{bottom:32.745780px;}
.y148{bottom:33.006083px;}
.y1d6{bottom:33.359526px;}
.ydd{bottom:35.201585px;}
.yda{bottom:35.599335px;}
.y190{bottom:35.894397px;}
.y147{bottom:36.154700px;}
.ye7{bottom:37.389374px;}
.y1ee{bottom:37.894184px;}
.y1ef{bottom:38.512611px;}
.y1e5{bottom:38.924801px;}
.y18f{bottom:39.043014px;}
.y146{bottom:39.303317px;}
.ye8{bottom:39.477476px;}
.y1dd{bottom:40.573845px;}
.y97{bottom:40.627178px;}
.y1df{bottom:41.398453px;}
.y18e{bottom:42.191631px;}
.y145{bottom:42.451934px;}
.y1d7{bottom:43.047269px;}
.y18d{bottom:45.340248px;}
.y144{bottom:45.600551px;}
.y15b{bottom:45.654947px;}
.y1da{bottom:45.864460px;}
.y18c{bottom:48.488865px;}
.y143{bottom:48.749168px;}
.ye4{bottom:49.122821px;}
.y1a1{bottom:49.706294px;}
.ye6{bottom:49.918403px;}
.yd9{bottom:50.415590px;}
.ydf{bottom:51.111569px;}
.y18b{bottom:51.637482px;}
.y96{bottom:51.765611px;}
.y142{bottom:51.897785px;}
.ye0{bottom:52.304984px;}
.y1a8{bottom:53.614922px;}
.y164{bottom:54.058551px;}
.y18a{bottom:54.786099px;}
.y141{bottom:55.046402px;}
.y1e4{bottom:56.101522px;}
.y1ed{bottom:56.788829px;}
.y1e6{bottom:57.407085px;}
.y1d5{bottom:57.682030px;}
.y189{bottom:57.934716px;}
.y1e2{bottom:58.094163px;}
.y140{bottom:58.195019px;}
.y15c{bottom:59.204965px;}
.y1d8{bottom:59.468319px;}
.y1ea{bottom:59.880565px;}
.y1de{bottom:60.980463px;}
.y188{bottom:61.083333px;}
.y13f{bottom:61.343636px;}
.y8b{bottom:62.627729px;}
.y95{bottom:62.996021px;}
.yea{bottom:63.839639px;}
.y187{bottom:64.231950px;}
.y1e3{bottom:64.483988px;}
.y13e{bottom:64.492253px;}
.y1d4{bottom:66.064267px;}
.y186{bottom:67.380567px;}
.y13d{bottom:67.640870px;}
.y1a2{bottom:67.751018px;}
.y185{bottom:70.529184px;}
.y13c{bottom:70.789487px;}
.y15d{bottom:72.754984px;}
.y184{bottom:73.677801px;}
.y13b{bottom:73.938104px;}
.y94{bottom:74.226431px;}
.ye2{bottom:75.473732px;}
.ye3{bottom:76.567461px;}
.y1e1{bottom:76.645269px;}
.y183{bottom:76.826418px;}
.y13a{bottom:77.086721px;}
.ye5{bottom:77.263688px;}
.y1eb{bottom:77.607178px;}
.yd8{bottom:77.760875px;}
.y17d{bottom:78.161703px;}
.y1e9{bottom:78.431671px;}
.y182{bottom:79.975035px;}
.y153{bottom:80.235338px;}
.y181{bottom:83.123652px;}
.y158{bottom:83.383955px;}
.y1a3{bottom:85.730869px;}
.y15e{bottom:86.239642px;}
.y19c{bottom:86.272269px;}
.y157{bottom:86.532572px;}
.y1c1{bottom:87.815471px;}
.y17c{bottom:88.389279px;}
.yb6{bottom:89.061428px;}
.y19e{bottom:89.420886px;}
.y156{bottom:89.681189px;}
.yed{bottom:91.483071px;}
.y19d{bottom:92.569503px;}
.y155{bottom:92.829806px;}
.y1bc{bottom:95.241864px;}
.y178{bottom:95.815673px;}
.y154{bottom:95.978423px;}
.y15f{bottom:99.789661px;}
.y93{bottom:101.106984px;}
.y1d3{bottom:101.448784px;}
.ye1{bottom:102.321913px;}
.y1bb{bottom:102.668257px;}
.y177{bottom:103.242066px;}
.yec{bottom:103.614599px;}
.y1a4{bottom:103.710504px;}
.yef{bottom:104.708411px;}
.y1b7{bottom:110.094651px;}
.y173{bottom:110.668459px;}
.y92{bottom:112.245417px;}
.y160{bottom:113.274319px;}
.y1b6{bottom:117.521044px;}
.y172{bottom:118.094852px;}
.y1a5{bottom:121.755228px;}
.y91{bottom:123.475828px;}
.y1b2{bottom:124.947437px;}
.y16e{bottom:125.521245px;}
.y1e7{bottom:126.321008px;}
.y161{bottom:126.824338px;}
.y1b1{bottom:132.373830px;}
.y16d{bottom:133.012782px;}
.y90{bottom:134.706238px;}
.y17e{bottom:137.637992px;}
.y1a6{bottom:139.734862px;}
.y1ac{bottom:139.800223px;}
.y162{bottom:140.308996px;}
.y168{bottom:140.439176px;}
.ydc{bottom:141.897998px;}
.yeb{bottom:142.096873px;}
.y1c2{bottom:142.145400px;}
.yf2{bottom:142.792935px;}
.yb9{bottom:144.202751px;}
.y8f{bottom:145.936648px;}
.y1ab{bottom:153.545619px;}
.y167{bottom:154.184572px;}
.y8e{bottom:157.075081px;}
.yd7{bottom:161.288291px;}
.y1aa{bottom:166.639469px;}
.y166{bottom:167.278421px;}
.y8d{bottom:168.305798px;}
.y89{bottom:179.514000px;}
.yb8{bottom:179.977730px;}
.yd6{bottom:188.136389px;}
.y56{bottom:193.615500px;}
.y2a{bottom:193.617000px;}
.y88{bottom:197.446500px;}
.y138{bottom:198.126000px;}
.y137{bottom:206.527500px;}
.yf1{bottom:206.532308px;}
.y29a{bottom:207.808500px;}
.y26a{bottom:210.054000px;}
.y136{bottom:211.036500px;}
.y29{bottom:211.549500px;}
.yb7{bottom:214.677890px;}
.y87{bottom:215.379000px;}
.y253{bottom:217.800000px;}
.y135{bottom:219.438000px;}
.y134{bottom:223.947000px;}
.y299{bottom:224.247000px;}
.y269{bottom:226.492500px;}
.y28{bottom:229.482000px;}
.y55{bottom:230.964000px;}
.y133{bottom:232.348500px;}
.y86{bottom:233.311500px;}
.yf0{bottom:233.380406px;}
.y252{bottom:235.734000px;}
.y132{bottom:236.857500px;}
.y298{bottom:239.863500px;}
.y268{bottom:242.256000px;}
.y131{bottom:245.259000px;}
.y27{bottom:247.414500px;}
.y54{bottom:248.896500px;}
.y130{bottom:249.768000px;}
.y215{bottom:251.244000px;}
.y251{bottom:253.666500px;}
.y85{bottom:254.190000px;}
.y297{bottom:256.300500px;}
.y12f{bottom:258.169500px;}
.y267{bottom:258.694500px;}
.y12e{bottom:262.678500px;}
.y26{bottom:265.347000px;}
.yd4{bottom:265.437000px;}
.y53{bottom:266.829000px;}
.y214{bottom:269.178000px;}
.y12d{bottom:271.080000px;}
.y250{bottom:271.599000px;}
.y84{bottom:272.122500px;}
.y296{bottom:272.739000px;}
.y266{bottom:274.458000px;}
.y12c{bottom:283.035000px;}
.y25{bottom:283.279500px;}
.yd3{bottom:283.371000px;}
.y52{bottom:284.761500px;}
.y213{bottom:287.110500px;}
.y12b{bottom:287.544000px;}
.y295{bottom:288.355500px;}
.y24f{bottom:289.531500px;}
.y83{bottom:290.055000px;}
.y265{bottom:290.896500px;}
.y69{bottom:301.212000px;}
.y24{bottom:301.213500px;}
.yd2{bottom:301.303500px;}
.y51{bottom:302.695500px;}
.y294{bottom:304.794000px;}
.y212{bottom:305.043000px;}
.y264{bottom:306.660000px;}
.y12a{bottom:307.218000px;}
.y24e{bottom:307.464000px;}
.y82{bottom:307.987500px;}
.y23{bottom:319.146000px;}
.yd1{bottom:319.236000px;}
.y50{bottom:320.628000px;}
.y293{bottom:321.232500px;}
.y211{bottom:322.975500px;}
.y263{bottom:323.098500px;}
.y128{bottom:325.150500px;}
.y24d{bottom:325.396500px;}
.y81{bottom:325.920000px;}
.y129{bottom:330.574500px;}
.y292{bottom:336.847500px;}
.y22{bottom:337.078500px;}
.yd0{bottom:337.168500px;}
.y4f{bottom:338.560500px;}
.y210{bottom:340.908000px;}
.y127{bottom:343.084500px;}
.y24c{bottom:343.330500px;}
.y80{bottom:343.854000px;}
.y291{bottom:353.286000px;}
.y262{bottom:354.094500px;}
.y21{bottom:355.011000px;}
.ycf{bottom:355.101000px;}
.y1d1{bottom:355.308000px;}
.yb4{bottom:355.471500px;}
.y4e{bottom:356.493000px;}
.y20f{bottom:358.840500px;}
.y126{bottom:361.017000px;}
.y24b{bottom:361.263000px;}
.y7f{bottom:361.786500px;}
.y290{bottom:369.724500px;}
.y20{bottom:372.943500px;}
.yce{bottom:373.033500px;}
.y1d0{bottom:373.240500px;}
.yb3{bottom:373.404000px;}
.y4d{bottom:374.425500px;}
.y20e{bottom:376.774500px;}
.y125{bottom:378.949500px;}
.y24a{bottom:379.195500px;}
.y7e{bottom:379.719000px;}
.y261{bottom:382.207500px;}
.y28f{bottom:385.339500px;}
.y68{bottom:390.876000px;}
.y1f{bottom:390.877500px;}
.ycd{bottom:390.967500px;}
.y1cf{bottom:391.173000px;}
.yb2{bottom:391.338000px;}
.y4c{bottom:392.358000px;}
.y20d{bottom:394.707000px;}
.y124{bottom:396.882000px;}
.y249{bottom:397.128000px;}
.y7d{bottom:397.651500px;}
.y260{bottom:400.140000px;}
.y28e{bottom:401.778000px;}
.y1e{bottom:408.810000px;}
.ycc{bottom:408.900000px;}
.y1ce{bottom:409.105500px;}
.yb1{bottom:409.270500px;}
.y4b{bottom:410.292000px;}
.y20c{bottom:412.639500px;}
.y123{bottom:414.814500px;}
.y248{bottom:415.060500px;}
.y28d{bottom:417.394500px;}
.y7c{bottom:418.528500px;}
.y25f{bottom:424.801500px;}
.y1d{bottom:426.742500px;}
.ycb{bottom:426.832500px;}
.y1cd{bottom:427.039500px;}
.yb0{bottom:427.203000px;}
.y4a{bottom:428.224500px;}
.y20b{bottom:430.572000px;}
.y122{bottom:432.747000px;}
.y247{bottom:432.993000px;}
.y28c{bottom:433.833000px;}
.y7b{bottom:436.462500px;}
.y1c{bottom:444.675000px;}
.yca{bottom:444.855000px;}
.y1cc{bottom:444.972000px;}
.yaf{bottom:445.135500px;}
.y49{bottom:446.157000px;}
.y20a{bottom:448.504500px;}
.y28b{bottom:450.270000px;}
.y121{bottom:450.681000px;}
.y246{bottom:450.927000px;}
.y25e{bottom:452.914500px;}
.y7a{bottom:454.395000px;}
.y1b{bottom:462.607500px;}
.yc9{bottom:462.787500px;}
.y1cb{bottom:462.904500px;}
.yae{bottom:463.068000px;}
.y48{bottom:464.089500px;}
.y28a{bottom:465.886500px;}
.y209{bottom:466.438500px;}
.y120{bottom:468.613500px;}
.y245{bottom:468.859500px;}
.y25d{bottom:470.847000px;}
.y79{bottom:472.327500px;}
.y1a{bottom:480.127500px;}
.y67{bottom:480.540000px;}
.yc8{bottom:480.721500px;}
.y1ca{bottom:480.837000px;}
.yad{bottom:481.000500px;}
.y47{bottom:482.022000px;}
.y289{bottom:482.325000px;}
.y208{bottom:484.371000px;}
.y101{bottom:486.310500px;}
.y11f{bottom:486.546000px;}
.y244{bottom:486.792000px;}
.y25c{bottom:488.779500px;}
.y78{bottom:490.260000px;}
.y288{bottom:497.940000px;}
.y66{bottom:498.472500px;}
.y22e{bottom:498.474000px;}
.y1c9{bottom:498.769500px;}
.yac{bottom:498.934500px;}
.y46{bottom:499.956000px;}
.y207{bottom:502.303500px;}
.y100{bottom:504.243000px;}
.y11e{bottom:504.478500px;}
.y243{bottom:504.724500px;}
.y25b{bottom:506.713500px;}
.y77{bottom:508.192500px;}
.yc7{bottom:508.533000px;}
.y19{bottom:512.245500px;}
.y287{bottom:514.378500px;}
.y65{bottom:516.406500px;}
.yab{bottom:516.867000px;}
.y45{bottom:517.888500px;}
.y206{bottom:520.236000px;}
.y1c8{bottom:521.637000px;}
.yff{bottom:522.175500px;}
.y11d{bottom:522.411000px;}
.y242{bottom:522.657000px;}
.y25a{bottom:524.646000px;}
.y76{bottom:526.125000px;}
.y18{bottom:528.684000px;}
.y286{bottom:530.817000px;}
.y64{bottom:534.339000px;}
.yaa{bottom:534.799500px;}
.y44{bottom:535.821000px;}
.y205{bottom:538.168500px;}
.yc6{bottom:539.797500px;}
.yfe{bottom:540.108000px;}
.y11c{bottom:540.343500px;}
.y241{bottom:540.589500px;}
.y259{bottom:542.578500px;}
.y75{bottom:544.059000px;}
.y285{bottom:547.255500px;}
.y17{bottom:548.470500px;}
.y1c7{bottom:550.945500px;}
.y63{bottom:552.271500px;}
.ya9{bottom:552.732000px;}
.y43{bottom:553.753500px;}
.y204{bottom:556.101000px;}
.yc5{bottom:557.730000px;}
.yfd{bottom:558.042000px;}
.y11a{bottom:558.277500px;}
.y240{bottom:558.523500px;}
.y258{bottom:560.511000px;}
.y74{bottom:561.991500px;}
.y284{bottom:562.870500px;}
.y11b{bottom:563.700000px;}
.y16{bottom:564.909000px;}
.y1c6{bottom:568.878000px;}
.y22d{bottom:570.204000px;}
.ya8{bottom:570.664500px;}
.y42{bottom:571.686000px;}
.y203{bottom:574.035000px;}
.y62{bottom:575.424000px;}
.yc4{bottom:575.754000px;}
.yfc{bottom:575.974500px;}
.y118{bottom:576.210000px;}
.y23f{bottom:576.456000px;}
.y257{bottom:578.443500px;}
.y283{bottom:579.309000px;}
.y15{bottom:581.347500px;}
.y119{bottom:581.632500px;}
.y1c5{bottom:586.810500px;}
.y22c{bottom:588.136500px;}
.ya7{bottom:589.059000px;}
.y41{bottom:589.618500px;}
.yc3{bottom:593.686500px;}
.yfb{bottom:593.907000px;}
.y116{bottom:594.142500px;}
.y23e{bottom:594.388500px;}
.y282{bottom:595.747500px;}
.y256{bottom:596.376000px;}
.y14{bottom:597.784500px;}
.y73{bottom:598.099500px;}
.y1ff{bottom:599.151000px;}
.y202{bottom:599.437500px;}
.y117{bottom:599.565000px;}
.y1c4{bottom:604.743000px;}
.y61{bottom:605.017500px;}
.y22b{bottom:606.070500px;}
.ya6{bottom:606.991500px;}
.y40{bottom:607.552500px;}
.y281{bottom:611.364000px;}
.yc2{bottom:611.619000px;}
.yfa{bottom:611.839500px;}
.y115{bottom:612.075000px;}
.y255{bottom:612.534000px;}
.y23d{bottom:613.912500px;}
.y13{bottom:614.223000px;}
.y1fe{bottom:615.016500px;}
.y60{bottom:622.950000px;}
.y22a{bottom:624.003000px;}
.ya5{bottom:624.924000px;}
.y3f{bottom:625.485000px;}
.y201{bottom:627.793500px;}
.y280{bottom:627.802500px;}
.yc1{bottom:629.551500px;}
.yf9{bottom:629.772000px;}
.y114{bottom:630.007500px;}
.y12{bottom:630.661500px;}
.y1c3{bottom:631.399500px;}
.y200{bottom:631.828500px;}
.y23c{bottom:631.845000px;}
.y19f{bottom:637.269000px;}
.y72{bottom:640.647000px;}
.y5f{bottom:640.882500px;}
.y229{bottom:641.935500px;}
.ya4{bottom:642.856500px;}
.y3e{bottom:643.417500px;}
.y1fd{bottom:643.458000px;}
.y11{bottom:647.100000px;}
.yc0{bottom:647.484000px;}
.yf8{bottom:647.706000px;}
.y113{bottom:647.941500px;}
.y71{bottom:658.579500px;}
.y5e{bottom:658.816500px;}
.y27f{bottom:659.856000px;}
.y228{bottom:659.868000px;}
.y23b{bottom:660.462000px;}
.ya3{bottom:660.789000px;}
.y3d{bottom:661.350000px;}
.y1fc{bottom:661.390500px;}
.y10{bottom:663.538500px;}
.ybf{bottom:665.416500px;}
.yf7{bottom:665.638500px;}
.y111{bottom:665.874000px;}
.y180{bottom:671.145242px;}
.y112{bottom:671.296500px;}
.y27e{bottom:676.294500px;}
.y70{bottom:676.513500px;}
.y227{bottom:677.800500px;}
.ya2{bottom:678.721500px;}
.y3c{bottom:679.282500px;}
.y1fb{bottom:679.323000px;}
.y5d{bottom:679.443000px;}
.yf{bottom:679.977000px;}
.ybe{bottom:683.350500px;}
.yf6{bottom:683.571000px;}
.y110{bottom:683.806500px;}
.y23a{bottom:689.733000px;}
.y27d{bottom:692.733000px;}
.y6f{bottom:694.446000px;}
.y226{bottom:695.733000px;}
.ye{bottom:696.415500px;}
.ya1{bottom:696.655500px;}
.y3b{bottom:697.215000px;}
.y1fa{bottom:697.255500px;}
.ybd{bottom:701.283000px;}
.yf5{bottom:701.503500px;}
.y10f{bottom:701.739000px;}
.y237{bottom:705.313500px;}
.y27c{bottom:709.171500px;}
.y5c{bottom:712.024500px;}
.y6e{bottom:712.378500px;}
.yd{bottom:712.854000px;}
.y225{bottom:713.667000px;}
.ya0{bottom:714.588000px;}
.y3a{bottom:715.149000px;}
.y1f9{bottom:715.189500px;}
.y239{bottom:718.090500px;}
.ybc{bottom:719.215500px;}
.yf4{bottom:719.436000px;}
.y10e{bottom:719.671500px;}
.y238{bottom:723.171000px;}
.y27b{bottom:724.786500px;}
.y1bd{bottom:725.214759px;}
.yc{bottom:729.292500px;}
.y5b{bottom:729.957000px;}
.y6d{bottom:730.311000px;}
.y224{bottom:731.599500px;}
.y9f{bottom:732.520500px;}
.y39{bottom:733.081500px;}
.y1f8{bottom:733.122000px;}
.ybb{bottom:737.148000px;}
.y10d{bottom:737.604000px;}
.y1b8{bottom:740.002401px;}
.y27a{bottom:741.225000px;}
.yb{bottom:745.731000px;}
.y236{bottom:746.653500px;}
.y5a{bottom:747.889500px;}
.y6c{bottom:748.243500px;}
.yf3{bottom:748.534500px;}
.y223{bottom:749.532000px;}
.y9e{bottom:750.453000px;}
.y38{bottom:751.014000px;}
.y1f7{bottom:751.054500px;}
.y1b3{bottom:754.855188px;}
.y10c{bottom:755.538000px;}
.y279{bottom:756.840000px;}
.ya{bottom:762.168000px;}
.yd5{bottom:762.339000px;}
.yba{bottom:763.390500px;}
.y235{bottom:764.586000px;}
.y59{bottom:765.823500px;}
.y6b{bottom:766.176000px;}
.y254{bottom:766.177500px;}
.y222{bottom:767.464500px;}
.y9d{bottom:768.385500px;}
.y37{bottom:768.946500px;}
.y1f6{bottom:768.987000px;}
.y1ad{bottom:769.642830px;}
.y278{bottom:773.278500px;}
.y10b{bottom:773.470500px;}
.yb5{bottom:777.765000px;}
.y9{bottom:778.606500px;}
.y234{bottom:782.518500px;}
.y58{bottom:783.756000px;}
.y6a{bottom:784.110000px;}
.y221{bottom:785.397000px;}
.y36{bottom:786.879000px;}
.y1f5{bottom:786.919500px;}
.y9c{bottom:789.547500px;}
.y277{bottom:789.717000px;}
.y10a{bottom:791.403000px;}
.y8{bottom:795.045000px;}
.y233{bottom:800.451000px;}
.y57{bottom:801.688500px;}
.y35{bottom:802.042500px;}
.y220{bottom:803.329500px;}
.y1f4{bottom:804.852000px;}
.y276{bottom:805.333500px;}
.y109{bottom:811.017000px;}
.y7{bottom:811.483500px;}
.y9b{bottom:816.531000px;}
.y231{bottom:818.383500px;}
.y34{bottom:819.975000px;}
.y21f{bottom:821.263500px;}
.y275{bottom:821.772000px;}
.y1f3{bottom:822.786000px;}
.y232{bottom:823.807500px;}
.y17f{bottom:824.346000px;}
.y6{bottom:827.922000px;}
.y159{bottom:830.217000px;}
.y8a{bottom:830.905500px;}
.y230{bottom:836.316000px;}
.y108{bottom:837.072000px;}
.y33{bottom:837.907500px;}
.y274{bottom:838.210500px;}
.y21e{bottom:839.196000px;}
.y1f2{bottom:840.718500px;}
.y273{bottom:853.825500px;}
.y22f{bottom:854.250000px;}
.y107{bottom:855.004500px;}
.y32{bottom:855.840000px;}
.y21d{bottom:857.128500px;}
.y1f1{bottom:864.171000px;}
.y139{bottom:864.602178px;}
.y272{bottom:870.264000px;}
.y5{bottom:872.695500px;}
.y106{bottom:872.937000px;}
.y31{bottom:873.774000px;}
.y21c{bottom:875.061000px;}
.y1d2{bottom:877.975500px;}
.y271{bottom:886.702500px;}
.y4{bottom:889.134000px;}
.y105{bottom:890.869500px;}
.y30{bottom:891.706500px;}
.y21b{bottom:892.993500px;}
.y270{bottom:902.317500px;}
.y104{bottom:908.802000px;}
.y2f{bottom:909.639000px;}
.y21a{bottom:910.926000px;}
.y26f{bottom:918.756000px;}
.y179{bottom:918.801711px;}
.y3{bottom:920.455500px;}
.y103{bottom:926.734500px;}
.y2e{bottom:927.571500px;}
.y219{bottom:928.860000px;}
.y174{bottom:933.589353px;}
.y26e{bottom:934.372500px;}
.y2d{bottom:945.504000px;}
.y218{bottom:946.792500px;}
.y16f{bottom:948.442140px;}
.y26d{bottom:950.809500px;}
.y102{bottom:952.327500px;}
.y169{bottom:963.294926px;}
.y2c{bottom:963.436500px;}
.y217{bottom:964.725000px;}
.y26c{bottom:967.248000px;}
.y2{bottom:972.403500px;}
.y2b{bottom:981.370500px;}
.y216{bottom:982.657500px;}
.y26b{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.h30{height:0.000000px;}
.h1b{height:3.387602px;}
.h19{height:3.973728px;}
.h25{height:3.973940px;}
.h1a{height:4.038829px;}
.h10{height:11.964745px;}
.h22{height:18.958484px;}
.h15{height:18.961440px;}
.h29{height:19.192061px;}
.h16{height:20.047318px;}
.h26{height:20.059517px;}
.h1c{height:20.061823px;}
.h23{height:20.567428px;}
.h17{height:20.570764px;}
.h28{height:22.540463px;}
.h2b{height:24.189267px;}
.h2f{height:25.608038px;}
.h2e{height:26.899200px;}
.hc{height:27.758302px;}
.h6{height:28.346756px;}
.he{height:28.393410px;}
.h2a{height:29.135725px;}
.h18{height:29.959959px;}
.h24{height:29.975288px;}
.h7{height:30.189113px;}
.hb{height:32.624378px;}
.h34{height:38.519654px;}
.hd{height:39.750660px;}
.h31{height:40.348800px;}
.h33{height:40.946286px;}
.h2c{height:42.141798px;}
.h9{height:44.111422px;}
.h32{height:44.831700px;}
.h2d{height:51.108000px;}
.h3{height:51.108480px;}
.h2{height:56.786820px;}
.h13{height:67.293437px;}
.h4{height:68.144640px;}
.h20{height:74.003520px;}
.hf{height:76.999863px;}
.h11{height:78.693602px;}
.h1{height:81.773340px;}
.h1d{height:82.537357px;}
.h1e{height:84.231096px;}
.h1f{height:91.657489px;}
.h12{height:94.132682px;}
.h27{height:136.270470px;}
.h21{height:182.945505px;}
.h5{height:183.340485px;}
.h14{height:184.031235px;}
.h8{height:236.482470px;}
.ha{height:251.908080px;}
.h0{height:1188.000000px;}
.wd{width:3.322290px;}
.w9{width:3.908628px;}
.wa{width:292.951669px;}
.wc{width:293.472819px;}
.wb{width:293.537963px;}
.w7{width:361.026940px;}
.w4{width:361.026994px;}
.w5{width:361.548090px;}
.w6{width:361.613234px;}
.w2{width:363.129480px;}
.w1{width:415.009215px;}
.w8{width:466.863900px;}
.w3{width:518.731770px;}
.we{width:518.743890px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8d{left:6.527241px;}
.x1f{left:12.887532px;}
.x8e{left:14.153783px;}
.x7c{left:16.937388px;}
.x7a{left:21.041534px;}
.x4e{left:22.572124px;}
.x79{left:24.428925px;}
.x4c{left:26.748743px;}
.x53{left:31.124048px;}
.x1c{left:40.411695px;}
.x3f{left:42.559373px;}
.x7f{left:51.007704px;}
.x7b{left:60.127775px;}
.x4d{left:62.148375px;}
.x92{left:64.516624px;}
.x93{left:73.517346px;}
.x1d{left:84.045119px;}
.x8f{left:101.069174px;}
.x32{left:104.097230px;}
.x88{left:107.291586px;}
.x41{left:111.966512px;}
.x51{left:113.855823px;}
.x91{left:125.185612px;}
.x43{left:136.925300px;}
.x9f{left:141.744191px;}
.x90{left:144.011549px;}
.x80{left:151.850198px;}
.x4a{left:154.824032px;}
.x30{left:156.952631px;}
.x94{left:161.806869px;}
.x31{left:167.981008px;}
.x95{left:182.213086px;}
.x1e{left:184.199654px;}
.x2f{left:186.002989px;}
.x3c{left:188.334436px;}
.x7d{left:189.894177px;}
.x54{left:200.962985px;}
.xb{left:202.147500px;}
.x76{left:207.234000px;}
.xe3{left:209.056500px;}
.x89{left:211.261343px;}
.x7e{left:213.932256px;}
.x4f{left:214.983659px;}
.x77{left:217.090500px;}
.x82{left:220.177500px;}
.x8b{left:221.664000px;}
.xe{left:223.149000px;}
.xc{left:224.563500px;}
.x55{left:225.623461px;}
.x12{left:227.956500px;}
.x56{left:236.163825px;}
.xce{left:237.658500px;}
.x37{left:239.052000px;}
.x9a{left:240.408592px;}
.x8{left:244.666500px;}
.x21{left:246.727500px;}
.x4b{left:250.184498px;}
.x1b{left:251.716500px;}
.x33{left:254.103000px;}
.x64{left:257.053500px;}
.x16{left:258.082500px;}
.x20{left:260.604308px;}
.x6f{left:263.035500px;}
.xd9{left:264.286500px;}
.x50{left:268.580417px;}
.x5{left:270.223500px;}
.x72{left:271.929000px;}
.x6d{left:273.285000px;}
.x3b{left:276.025500px;}
.x2e{left:277.656000px;}
.x42{left:282.799966px;}
.x83{left:285.324000px;}
.x8c{left:286.812000px;}
.x2{left:288.118500px;}
.x8a{left:290.867067px;}
.x85{left:292.293320px;}
.x5a{left:294.282000px;}
.x3{left:296.613000px;}
.xa4{left:298.539000px;}
.xbc{left:300.738000px;}
.x1{left:302.445000px;}
.xe0{left:303.463500px;}
.xb1{left:304.591500px;}
.xb7{left:306.052500px;}
.x97{left:307.123866px;}
.x99{left:308.154483px;}
.x96{left:309.597347px;}
.x22{left:311.875500px;}
.xbd{left:313.525500px;}
.x9{left:315.879000px;}
.x78{left:317.373683px;}
.x4{left:319.614000px;}
.x73{left:321.160500px;}
.x38{left:322.264500px;}
.xa{left:324.828000px;}
.xc4{left:327.390000px;}
.xbe{left:329.959500px;}
.x5c{left:331.362000px;}
.x98{left:333.507661px;}
.x29{left:334.669500px;}
.xb8{left:336.039000px;}
.xaa{left:337.339500px;}
.x3d{left:338.783222px;}
.x3e{left:340.970845px;}
.xc2{left:344.689500px;}
.xab{left:346.264500px;}
.x68{left:347.746500px;}
.xb6{left:349.422000px;}
.x86{left:350.857596px;}
.x57{left:352.666500px;}
.xc7{left:353.881500px;}
.x81{left:361.938953px;}
.x9c{left:363.120723px;}
.xc8{left:364.675500px;}
.xac{left:366.298500px;}
.x2b{left:367.393500px;}
.xd4{left:368.746500px;}
.xf{left:371.763000px;}
.x39{left:373.731000px;}
.xb4{left:374.947500px;}
.x5d{left:376.972500px;}
.xb9{left:378.313500px;}
.x87{left:379.911731px;}
.x40{left:383.530052px;}
.x2a{left:386.412000px;}
.xc3{left:387.561000px;}
.x13{left:388.573500px;}
.x65{left:390.394500px;}
.x45{left:395.064790px;}
.x69{left:397.491000px;}
.xd{left:399.078000px;}
.xba{left:401.794500px;}
.xd7{left:403.017000px;}
.x70{left:405.936000px;}
.x46{left:407.196153px;}
.xa0{left:409.017533px;}
.xb3{left:411.282000px;}
.xb0{left:413.056500px;}
.xb2{left:414.526500px;}
.x6b{left:417.876000px;}
.xbb{left:419.410500px;}
.xa1{left:420.491736px;}
.xcc{left:421.558500px;}
.x6c{left:423.687000px;}
.x48{left:425.592072px;}
.xa2{left:429.492458px;}
.x74{left:430.945500px;}
.x5e{left:434.550000px;}
.x27{left:436.137000px;}
.x17{left:438.076500px;}
.x9b{left:439.455089px;}
.x49{left:441.899806px;}
.xcb{left:444.576000px;}
.x34{left:445.662000px;}
.xd1{left:446.887500px;}
.x44{left:448.363237px;}
.xbf{left:450.897000px;}
.x52{left:451.942983px;}
.x66{left:456.423000px;}
.x19{left:459.093000px;}
.x2c{left:460.659000px;}
.xa3{left:465.151806px;}
.xdc{left:468.201000px;}
.xde{left:469.254000px;}
.x9e{left:470.304891px;}
.xdb{left:472.984500px;}
.x6{left:474.942000px;}
.x47{left:478.691644px;}
.x84{left:481.125000px;}
.x7{left:483.388500px;}
.xad{left:485.881500px;}
.x5f{left:489.456000px;}
.xc9{left:490.932000px;}
.x9d{left:491.947848px;}
.x10{left:493.758000px;}
.x71{left:495.690000px;}
.x1a{left:497.826000px;}
.x18{left:500.493000px;}
.xa7{left:502.738500px;}
.xe1{left:510.505500px;}
.x28{left:511.750500px;}
.xc5{left:515.025000px;}
.xdf{left:519.895500px;}
.x67{left:523.737000px;}
.x62{left:525.840000px;}
.xd3{left:540.177000px;}
.xd5{left:543.846000px;}
.xa8{left:549.799500px;}
.x3a{left:558.264000px;}
.x58{left:566.317500px;}
.x63{left:572.901000px;}
.x6e{left:574.854000px;}
.xa5{left:579.736500px;}
.xd6{left:581.127000px;}
.xe2{left:582.354000px;}
.x60{left:583.395000px;}
.xcf{left:585.391500px;}
.xc6{left:588.189000px;}
.xdd{left:589.345500px;}
.x35{left:591.313500px;}
.x25{left:598.381500px;}
.xd8{left:601.783500px;}
.x14{left:605.311500px;}
.xae{left:608.877000px;}
.xd0{left:611.172000px;}
.xda{left:613.066500px;}
.x36{left:618.919500px;}
.xa6{left:620.656500px;}
.xca{left:624.936000px;}
.x23{left:631.546500px;}
.xcd{left:636.271500px;}
.xd2{left:644.827500px;}
.x26{left:647.560500px;}
.xb5{left:649.317000px;}
.xc1{left:655.372500px;}
.x59{left:660.132000px;}
.x15{left:661.246500px;}
.x5b{left:665.982000px;}
.x24{left:672.466500px;}
.x2d{left:676.597500px;}
.xa9{left:688.875000px;}
.x6a{left:691.072500px;}
.x11{left:694.024500px;}
.xaf{left:703.228500px;}
.xc0{left:708.781500px;}
.x75{left:710.034000px;}
.x61{left:716.737500px;}
@media print{
.v7{vertical-align:-13.605333pt;}
.v6{vertical-align:-7.973333pt;}
.v5{vertical-align:-5.312000pt;}
.v2{vertical-align:-3.420122pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.465604pt;}
.v1{vertical-align:5.862455pt;}
.v8{vertical-align:7.968000pt;}
.v4{vertical-align:45.429333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000681pt;}
.ls3{letter-spacing:0.000693pt;}
.ls10{letter-spacing:0.001995pt;}
.ls5{letter-spacing:0.002034pt;}
.ls2f{letter-spacing:0.002079pt;}
.ls2a{letter-spacing:0.002205pt;}
.ls11{letter-spacing:0.002245pt;}
.ls13{letter-spacing:0.002531pt;}
.lsf{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.003892pt;}
.lsa{letter-spacing:0.004349pt;}
.ls2{letter-spacing:0.244602pt;}
.ls1{letter-spacing:0.352139pt;}
.ls33{letter-spacing:1.703229pt;}
.ls1c{letter-spacing:1.910015pt;}
.ls16{letter-spacing:2.652911pt;}
.ls6{letter-spacing:2.658034pt;}
.ls15{letter-spacing:2.658245pt;}
.ls4{letter-spacing:3.654697pt;}
.ls23{letter-spacing:3.989812pt;}
.ls30{letter-spacing:4.324984pt;}
.ls19{letter-spacing:4.692690pt;}
.ls12{letter-spacing:4.802585pt;}
.ls7{letter-spacing:5.202985pt;}
.ls22{letter-spacing:8.797252pt;}
.ls1a{letter-spacing:8.855412pt;}
.lse{letter-spacing:11.802318pt;}
.ls1b{letter-spacing:11.805197pt;}
.ls31{letter-spacing:11.806400pt;}
.lsc{letter-spacing:11.807651pt;}
.ls25{letter-spacing:12.639651pt;}
.ls35{letter-spacing:13.649188pt;}
.ls28{letter-spacing:13.908984pt;}
.ls1f{letter-spacing:14.657855pt;}
.ls18{letter-spacing:14.756984pt;}
.ls9{letter-spacing:14.757812pt;}
.ls1d{letter-spacing:14.764872pt;}
.ls34{letter-spacing:16.311368pt;}
.lsb{letter-spacing:16.495356pt;}
.ls21{letter-spacing:16.507061pt;}
.ls17{letter-spacing:16.667348pt;}
.ls24{letter-spacing:17.077812pt;}
.ls2b{letter-spacing:17.410245pt;}
.ls32{letter-spacing:17.414347pt;}
.ls2e{letter-spacing:17.415578pt;}
.ls26{letter-spacing:17.442585pt;}
.ls1e{letter-spacing:18.563892pt;}
.ls8{letter-spacing:18.927925pt;}
.ls27{letter-spacing:20.011145pt;}
.lsd{letter-spacing:23.618531pt;}
.ls2c{letter-spacing:29.506245pt;}
.ls2d{letter-spacing:29.511578pt;}
.ls29{letter-spacing:40.023467pt;}
.wsf9{word-spacing:-53.133867pt;}
.wsfb{word-spacing:-38.362652pt;}
.wsd4{word-spacing:-19.381610pt;}
.ws9d{word-spacing:-10.619700pt;}
.wsb6{word-spacing:-8.206366pt;}
.wsaf{word-spacing:-7.854227pt;}
.ws85{word-spacing:-7.272335pt;}
.wscf{word-spacing:-6.154416pt;}
.wsdf{word-spacing:-5.671155pt;}
.wsde{word-spacing:-5.426553pt;}
.wsf0{word-spacing:-0.053134pt;}
.wse9{word-spacing:-0.047821pt;}
.wsd3{word-spacing:-0.038517pt;}
.wsd7{word-spacing:-0.038455pt;}
.wsf7{word-spacing:-0.037194pt;}
.wsb0{word-spacing:-0.035864pt;}
.wse7{word-spacing:-0.031881pt;}
.wsd2{word-spacing:-0.026353pt;}
.wsd6{word-spacing:-0.026312pt;}
.wsd1{word-spacing:-0.025792pt;}
.wse1{word-spacing:-0.024779pt;}
.ws3{word-spacing:0.000000pt;}
.wse8{word-spacing:5.132766pt;}
.wse5{word-spacing:6.790554pt;}
.wsfe{word-spacing:7.492552pt;}
.wsff{word-spacing:7.947666pt;}
.wsfc{word-spacing:8.767088pt;}
.wsf1{word-spacing:8.820222pt;}
.ws86{word-spacing:9.420698pt;}
.ws11{word-spacing:11.333530pt;}
.ws5d{word-spacing:11.795718pt;}
.ws98{word-spacing:11.848852pt;}
.wsdb{word-spacing:12.220789pt;}
.ws133{word-spacing:12.242125pt;}
.ws5e{word-spacing:12.273923pt;}
.ws82{word-spacing:12.592726pt;}
.ws4{word-spacing:12.624691pt;}
.ws8e{word-spacing:12.645860pt;}
.ws8d{word-spacing:12.698994pt;}
.ws11d{word-spacing:12.720333pt;}
.ws97{word-spacing:12.752128pt;}
.ws134{word-spacing:12.768154pt;}
.wsc6{word-spacing:12.805262pt;}
.wscc{word-spacing:12.858396pt;}
.ws122{word-spacing:12.959437pt;}
.wsa2{word-spacing:13.017797pt;}
.wsc3{word-spacing:13.070931pt;}
.ws11a{word-spacing:13.124065pt;}
.ws119{word-spacing:13.336601pt;}
.ws48{word-spacing:13.389734pt;}
.ws13{word-spacing:13.437645pt;}
.wsd9{word-spacing:13.442868pt;}
.ws96{word-spacing:13.549136pt;}
.ws47{word-spacing:13.602270pt;}
.wse6{word-spacing:13.628928pt;}
.ws9c{word-spacing:13.708538pt;}
.wsc1{word-spacing:13.761671pt;}
.ws5c{word-spacing:13.814805pt;}
.ws107{word-spacing:13.852999pt;}
.ws10c{word-spacing:13.974207pt;}
.ws11b{word-spacing:14.011494pt;}
.ws73{word-spacing:14.027341pt;}
.ws11e{word-spacing:14.059315pt;}
.ws7c{word-spacing:14.133609pt;}
.ws9b{word-spacing:14.186742pt;}
.wsc9{word-spacing:14.293010pt;}
.wscd{word-spacing:14.346144pt;}
.ws18{word-spacing:14.399278pt;}
.ws79{word-spacing:14.452412pt;}
.wsf4{word-spacing:14.505546pt;}
.ws120{word-spacing:14.537523pt;}
.wsb7{word-spacing:14.558679pt;}
.ws12b{word-spacing:14.633165pt;}
.wsc5{word-spacing:14.664947pt;}
.ws101{word-spacing:14.718081pt;}
.wsf{word-spacing:14.728806pt;}
.wsbd{word-spacing:14.771215pt;}
.ws11f{word-spacing:14.776627pt;}
.ws135{word-spacing:14.824448pt;}
.wsd8{word-spacing:14.877483pt;}
.ws78{word-spacing:14.930617pt;}
.ws99{word-spacing:14.983750pt;}
.wsc{word-spacing:15.015731pt;}
.wsa1{word-spacing:15.036884pt;}
.wsf3{word-spacing:15.090018pt;}
.wsd{word-spacing:15.111373pt;}
.wsc4{word-spacing:15.143152pt;}
.wsef{word-spacing:15.196286pt;}
.ws103{word-spacing:15.245539pt;}
.ws104{word-spacing:15.251277pt;}
.ws105{word-spacing:15.252440pt;}
.ws124{word-spacing:15.254835pt;}
.ws71{word-spacing:15.302554pt;}
.ws56{word-spacing:15.355687pt;}
.wsce{word-spacing:15.408821pt;}
.ws19{word-spacing:15.515089pt;}
.ws129{word-spacing:15.541760pt;}
.ws35{word-spacing:15.568223pt;}
.ws53{word-spacing:15.621357pt;}
.ws7b{word-spacing:15.674491pt;}
.ws72{word-spacing:15.727625pt;}
.wsbe{word-spacing:15.780758pt;}
.ws80{word-spacing:15.833892pt;}
.ws125{word-spacing:15.876506pt;}
.wsa3{word-spacing:15.887026pt;}
.ws12a{word-spacing:15.924326pt;}
.wsa0{word-spacing:15.940160pt;}
.ws8{word-spacing:15.972147pt;}
.ws2b{word-spacing:15.993294pt;}
.ws126{word-spacing:16.019968pt;}
.ws4d{word-spacing:16.046428pt;}
.ws3d{word-spacing:16.152695pt;}
.ws6a{word-spacing:16.205829pt;}
.ws4c{word-spacing:16.258963pt;}
.wsb8{word-spacing:16.312097pt;}
.ws2{word-spacing:16.354714pt;}
.ws7d{word-spacing:16.365231pt;}
.ws16{word-spacing:16.402534pt;}
.ws2f{word-spacing:16.418365pt;}
.ws14{word-spacing:16.450355pt;}
.ws3e{word-spacing:16.471499pt;}
.ws7e{word-spacing:16.577766pt;}
.ws65{word-spacing:16.630900pt;}
.ws114{word-spacing:16.737168pt;}
.wsa7{word-spacing:16.790302pt;}
.ws89{word-spacing:16.843436pt;}
.ws44{word-spacing:16.896570pt;}
.ws12{word-spacing:16.928563pt;}
.ws116{word-spacing:16.949703pt;}
.ws7f{word-spacing:17.002837pt;}
.ws46{word-spacing:17.055971pt;}
.ws83{word-spacing:17.109105pt;}
.ws6e{word-spacing:17.162239pt;}
.ws5{word-spacing:17.167667pt;}
.wsee{word-spacing:17.215373pt;}
.wsb{word-spacing:17.215488pt;}
.ws67{word-spacing:17.268507pt;}
.ws9{word-spacing:17.311130pt;}
.wseb{word-spacing:17.321641pt;}
.ws12e{word-spacing:17.358950pt;}
.ws100{word-spacing:17.373094pt;}
.ws4e{word-spacing:17.374774pt;}
.ws51{word-spacing:17.427908pt;}
.ws12f{word-spacing:17.502413pt;}
.wsb9{word-spacing:17.534176pt;}
.wse{word-spacing:17.550234pt;}
.wsa9{word-spacing:17.587310pt;}
.ws5a{word-spacing:17.640444pt;}
.ws1{word-spacing:17.693578pt;}
.ws23{word-spacing:17.746711pt;}
.wsa{word-spacing:17.789338pt;}
.ws31{word-spacing:17.799845pt;}
.ws52{word-spacing:17.852979pt;}
.ws12d{word-spacing:17.884979pt;}
.ws30{word-spacing:17.906113pt;}
.ws121{word-spacing:17.932800pt;}
.ws69{word-spacing:17.959247pt;}
.wsca{word-spacing:18.012381pt;}
.ws4a{word-spacing:18.065515pt;}
.ws81{word-spacing:18.118649pt;}
.ws66{word-spacing:18.171782pt;}
.ws132{word-spacing:18.171904pt;}
.ws8f{word-spacing:18.224916pt;}
.wsa6{word-spacing:18.278050pt;}
.ws24{word-spacing:18.331184pt;}
.ws93{word-spacing:18.384318pt;}
.ws10d{word-spacing:18.437452pt;}
.ws4f{word-spacing:18.490586pt;}
.ws94{word-spacing:18.543719pt;}
.ws12c{word-spacing:18.554470pt;}
.ws76{word-spacing:18.596853pt;}
.ws92{word-spacing:18.649987pt;}
.ws15{word-spacing:18.650112pt;}
.wsfa{word-spacing:18.697100pt;}
.ws10{word-spacing:18.697933pt;}
.ws6c{word-spacing:18.703121pt;}
.ws3f{word-spacing:18.756255pt;}
.ws43{word-spacing:18.809389pt;}
.wsc7{word-spacing:18.862523pt;}
.wsbf{word-spacing:18.915657pt;}
.wsba{word-spacing:18.968790pt;}
.ws2e{word-spacing:19.021924pt;}
.ws4b{word-spacing:19.075058pt;}
.ws61{word-spacing:19.128192pt;}
.ws45{word-spacing:19.181326pt;}
.ws22{word-spacing:19.234460pt;}
.ws68{word-spacing:19.287594pt;}
.ws28{word-spacing:19.340727pt;}
.wsf2{word-spacing:19.393861pt;}
.ws34{word-spacing:19.446995pt;}
.ws27{word-spacing:19.500129pt;}
.ws87{word-spacing:19.553263pt;}
.ws95{word-spacing:19.659531pt;}
.ws102{word-spacing:19.696088pt;}
.ws41{word-spacing:19.712665pt;}
.ws128{word-spacing:19.749990pt;}
.ws110{word-spacing:19.765798pt;}
.wsdd{word-spacing:19.818932pt;}
.ws2c{word-spacing:19.925200pt;}
.ws2a{word-spacing:19.978334pt;}
.wsc2{word-spacing:20.031468pt;}
.ws54{word-spacing:20.084602pt;}
.ws1c{word-spacing:20.137735pt;}
.ws10e{word-spacing:20.190869pt;}
.wscb{word-spacing:20.244003pt;}
.ws7{word-spacing:20.323840pt;}
.ws1f{word-spacing:20.350271pt;}
.ws7a{word-spacing:20.403405pt;}
.ws36{word-spacing:20.456539pt;}
.ws64{word-spacing:20.509673pt;}
.ws26{word-spacing:20.562806pt;}
.ws123{word-spacing:20.610765pt;}
.ws6f{word-spacing:20.615940pt;}
.ws6d{word-spacing:20.722208pt;}
.ws2d{word-spacing:20.775342pt;}
.wsa5{word-spacing:20.828476pt;}
.wsc0{word-spacing:20.881610pt;}
.wse4{word-spacing:20.934743pt;}
.ws127{word-spacing:20.945510pt;}
.wsf8{word-spacing:20.990624pt;}
.wsbb{word-spacing:21.147279pt;}
.ws113{word-spacing:21.200413pt;}
.wse3{word-spacing:21.237078pt;}
.ws50{word-spacing:21.253547pt;}
.ws1e{word-spacing:21.359814pt;}
.ws49{word-spacing:21.412948pt;}
.wsfd{word-spacing:21.466082pt;}
.ws3b{word-spacing:21.519216pt;}
.ws39{word-spacing:21.572350pt;}
.ws1b{word-spacing:21.625484pt;}
.ws131{word-spacing:21.662822pt;}
.wsf5{word-spacing:21.678618pt;}
.ws3a{word-spacing:21.731751pt;}
.ws33{word-spacing:21.784885pt;}
.ws74{word-spacing:21.838019pt;}
.ws62{word-spacing:21.891153pt;}
.ws5f{word-spacing:21.944287pt;}
.wsed{word-spacing:21.997421pt;}
.ws59{word-spacing:22.156822pt;}
.ws42{word-spacing:22.209956pt;}
.ws32{word-spacing:22.263090pt;}
.wsec{word-spacing:22.369358pt;}
.ws10f{word-spacing:22.475626pt;}
.ws38{word-spacing:22.528759pt;}
.ws75{word-spacing:22.581893pt;}
.ws130{word-spacing:22.619238pt;}
.ws106{word-spacing:22.623107pt;}
.ws108{word-spacing:22.628440pt;}
.ws40{word-spacing:22.741295pt;}
.ws60{word-spacing:22.794429pt;}
.ws63{word-spacing:22.847563pt;}
.ws37{word-spacing:22.900697pt;}
.wsf6{word-spacing:22.953830pt;}
.ws57{word-spacing:23.060098pt;}
.ws90{word-spacing:23.113232pt;}
.ws115{word-spacing:23.219500pt;}
.ws25{word-spacing:23.272634pt;}
.ws58{word-spacing:23.325767pt;}
.wsdc{word-spacing:23.485169pt;}
.ws91{word-spacing:23.538303pt;}
.wsda{word-spacing:23.591437pt;}
.ws3c{word-spacing:23.644571pt;}
.wsac{word-spacing:23.697705pt;}
.wsae{word-spacing:23.750838pt;}
.wsad{word-spacing:23.803972pt;}
.wsc8{word-spacing:23.857106pt;}
.ws5b{word-spacing:23.910400pt;}
.wsea{word-spacing:23.963374pt;}
.ws6{word-spacing:24.006042pt;}
.ws77{word-spacing:24.016508pt;}
.wsaa{word-spacing:24.069642pt;}
.ws55{word-spacing:24.122775pt;}
.wsab{word-spacing:24.175909pt;}
.ws118{word-spacing:24.229043pt;}
.ws9a{word-spacing:24.654114pt;}
.ws29{word-spacing:24.760382pt;}
.ws1d{word-spacing:24.866650pt;}
.wsa8{word-spacing:24.919783pt;}
.ws10b{word-spacing:24.972917pt;}
.ws8a{word-spacing:25.026051pt;}
.ws8c{word-spacing:25.185453pt;}
.ws1a{word-spacing:25.238587pt;}
.ws21{word-spacing:25.397988pt;}
.ws70{word-spacing:25.716791pt;}
.ws6b{word-spacing:25.769925pt;}
.ws8b{word-spacing:25.823059pt;}
.ws88{word-spacing:26.035595pt;}
.ws20{word-spacing:26.088729pt;}
.wsbc{word-spacing:26.194996pt;}
.ws10a{word-spacing:26.779469pt;}
.ws117{word-spacing:27.842146pt;}
.wsa4{word-spacing:27.895280pt;}
.wse0{word-spacing:27.936605pt;}
.ws0{word-spacing:28.080295pt;}
.ws11c{word-spacing:28.214272pt;}
.wsb5{word-spacing:30.737742pt;}
.wse2{word-spacing:30.899413pt;}
.ws109{word-spacing:39.956668pt;}
.wsb2{word-spacing:45.436453pt;}
.wsb1{word-spacing:54.358906pt;}
.wsb4{word-spacing:54.368468pt;}
.ws112{word-spacing:61.050813pt;}
.ws17{word-spacing:71.731200pt;}
.ws111{word-spacing:73.644032pt;}
.wsd0{word-spacing:190.034999pt;}
.ws84{word-spacing:276.299648pt;}
.ws9f{word-spacing:388.094107pt;}
.wsd5{word-spacing:443.259100pt;}
.ws9e{word-spacing:445.553847pt;}
.wsb3{word-spacing:1060.910220pt;}
._17{margin-left:-1196.147799pt;}
._13{margin-left:-904.225707pt;}
._14{margin-left:-388.498404pt;}
._25{margin-left:-23.032264pt;}
._27{margin-left:-8.355702pt;}
._1{margin-left:-7.039202pt;}
._d{margin-left:-5.993540pt;}
._3{margin-left:-4.410111pt;}
._9{margin-left:-3.385671pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-1.434614pt;}
._4{width:1.386803pt;}
._5{width:2.371905pt;}
._e{width:3.953186pt;}
._24{width:5.212467pt;}
._6{width:8.873356pt;}
._28{width:13.605677pt;}
._12{width:15.921041pt;}
._26{width:17.143120pt;}
._8{width:18.737136pt;}
._b{width:20.012349pt;}
._10{width:21.446963pt;}
._a{width:23.147247pt;}
._18{width:24.263058pt;}
._7{width:26.335279pt;}
._19{width:42.732676pt;}
._15{width:48.089330pt;}
._16{width:49.089874pt;}
._1a{width:51.498678pt;}
._23{width:57.191316pt;}
._f{width:61.050813pt;}
._c{width:71.731200pt;}
._21{width:111.054304pt;}
._20{width:173.935542pt;}
._1b{width:208.752636pt;}
._1c{width:220.329264pt;}
._1d{width:235.711411pt;}
._1e{width:238.551261pt;}
._11{width:294.750961pt;}
._1f{width:474.694480pt;}
._22{width:501.804854pt;}
.fs9{font-size:11.195083pt;}
.fs12{font-size:23.498865pt;}
.fse{font-size:23.501567pt;}
.fsf{font-size:24.287732pt;}
.fsa{font-size:24.325757pt;}
.fs13{font-size:24.778781pt;}
.fsb{font-size:25.791540pt;}
.fs10{font-size:26.311919pt;}
.fsc{font-size:26.353225pt;}
.fs8{font-size:26.566933pt;}
.fs14{font-size:31.880533pt;}
.fs4{font-size:33.207010pt;}
.fs6{font-size:35.864050pt;}
.fs7{font-size:37.193600pt;}
.fs11{font-size:38.455495pt;}
.fsd{font-size:38.517261pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:48.491783pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1b0{bottom:0.328132pt;}
.y16c{bottom:0.386037pt;}
.y1c0{bottom:0.636962pt;}
.y17b{bottom:0.752773pt;}
.y19b{bottom:1.119653pt;}
.y152{bottom:1.351034pt;}
.y1ba{bottom:1.486244pt;}
.y176{bottom:1.602055pt;}
.y1b5{bottom:2.277620pt;}
.y171{bottom:2.393431pt;}
.y1af{bottom:3.126902pt;}
.y16b{bottom:3.184808pt;}
.y1bf{bottom:3.435732pt;}
.y17a{bottom:3.551543pt;}
.y19a{bottom:3.918424pt;}
.y151{bottom:4.149805pt;}
.y1b9{bottom:4.285014pt;}
.y175{bottom:4.400826pt;}
.y1ec{bottom:4.918094pt;}
.y1b4{bottom:5.076391pt;}
.y170{bottom:5.192202pt;}
.y1ae{bottom:5.925673pt;}
.y16a{bottom:5.983579pt;}
.y9a{bottom:6.165286pt;}
.y1be{bottom:6.234503pt;}
.y199{bottom:6.717194pt;}
.y150{bottom:6.948575pt;}
.y198{bottom:9.515965pt;}
.y14f{bottom:9.747346pt;}
.y1a9{bottom:9.845255pt;}
.y165{bottom:10.239785pt;}
.yee{bottom:11.491133pt;}
.y1dc{bottom:11.514104pt;}
.y8c{bottom:12.219767pt;}
.y197{bottom:12.314736pt;}
.y14e{bottom:12.546117pt;}
.ydb{bottom:12.551946pt;}
.ye9{bottom:14.142797pt;}
.y196{bottom:15.113506pt;}
.y14d{bottom:15.344887pt;}
.y99{bottom:16.147873pt;}
.y195{bottom:17.912277pt;}
.y14c{bottom:18.143658pt;}
.y1e8{bottom:19.942159pt;}
.y1a7{bottom:20.326120pt;}
.y163{bottom:20.662745pt;}
.y194{bottom:20.711048pt;}
.y14b{bottom:20.942429pt;}
.yde{bottom:21.037197pt;}
.y193{bottom:23.509818pt;}
.y1e0{bottom:23.606575pt;}
.y14a{bottom:23.741199pt;}
.y1d9{bottom:24.217311pt;}
.y1db{bottom:24.339560pt;}
.y98{bottom:26.130460pt;}
.y192{bottom:26.308589pt;}
.y1f0{bottom:26.538210pt;}
.y149{bottom:26.539970pt;}
.y1a0{bottom:28.201475pt;}
.y15a{bottom:28.595812pt;}
.y191{bottom:29.107360pt;}
.y148{bottom:29.338741pt;}
.y1d6{bottom:29.652912pt;}
.ydd{bottom:31.290298pt;}
.yda{bottom:31.643853pt;}
.y190{bottom:31.906130pt;}
.y147{bottom:32.137511pt;}
.ye7{bottom:33.234999pt;}
.y1ee{bottom:33.683719pt;}
.y1ef{bottom:34.233432pt;}
.y1e5{bottom:34.599823pt;}
.y18f{bottom:34.704901pt;}
.y146{bottom:34.936282pt;}
.ye8{bottom:35.091090pt;}
.y1dd{bottom:36.065640pt;}
.y97{bottom:36.113047pt;}
.y1df{bottom:36.798625pt;}
.y18e{bottom:37.503672pt;}
.y145{bottom:37.735053pt;}
.y1d7{bottom:38.264239pt;}
.y18d{bottom:40.302442pt;}
.y144{bottom:40.533823pt;}
.y15b{bottom:40.582175pt;}
.y1da{bottom:40.768409pt;}
.y18c{bottom:43.101213pt;}
.y143{bottom:43.332594pt;}
.ye4{bottom:43.664730pt;}
.y1a1{bottom:44.183372pt;}
.ye6{bottom:44.371914pt;}
.yd9{bottom:44.813858pt;}
.ydf{bottom:45.432506pt;}
.y18b{bottom:45.899984pt;}
.y96{bottom:46.013876pt;}
.y142{bottom:46.131365pt;}
.ye0{bottom:46.493319pt;}
.y1a8{bottom:47.657708pt;}
.y164{bottom:48.052045pt;}
.y18a{bottom:48.698754pt;}
.y141{bottom:48.930135pt;}
.y1e4{bottom:49.868019pt;}
.y1ed{bottom:50.478959pt;}
.y1e6{bottom:51.028520pt;}
.y1d5{bottom:51.272916pt;}
.y189{bottom:51.497525pt;}
.y1e2{bottom:51.639256pt;}
.y140{bottom:51.728906pt;}
.y15c{bottom:52.626636pt;}
.y1d8{bottom:52.860728pt;}
.y1ea{bottom:53.227169pt;}
.y1de{bottom:54.204856pt;}
.y188{bottom:54.296296pt;}
.y13f{bottom:54.527677pt;}
.y8b{bottom:55.669092pt;}
.y95{bottom:55.996463pt;}
.yea{bottom:56.746346pt;}
.y187{bottom:57.095066pt;}
.y1e3{bottom:57.319100pt;}
.y13e{bottom:57.326447pt;}
.y1d4{bottom:58.723793pt;}
.y186{bottom:59.893837pt;}
.y13d{bottom:60.125218pt;}
.y1a2{bottom:60.223127pt;}
.y185{bottom:62.692608pt;}
.y13c{bottom:62.923989pt;}
.y15d{bottom:64.671097pt;}
.y184{bottom:65.491378pt;}
.y13b{bottom:65.722759pt;}
.y94{bottom:65.979050pt;}
.ye2{bottom:67.087762pt;}
.ye3{bottom:68.059965pt;}
.y1e1{bottom:68.129128pt;}
.y183{bottom:68.290149pt;}
.y13a{bottom:68.521530pt;}
.ye5{bottom:68.678834pt;}
.y1eb{bottom:68.984158pt;}
.yd8{bottom:69.120778pt;}
.y17d{bottom:69.477069pt;}
.y1e9{bottom:69.717041pt;}
.y182{bottom:71.088920pt;}
.y153{bottom:71.320301pt;}
.y181{bottom:73.887690pt;}
.y158{bottom:74.119071pt;}
.y1a3{bottom:76.205217pt;}
.y15e{bottom:76.657460pt;}
.y19c{bottom:76.686461pt;}
.y157{bottom:76.917842pt;}
.y1c1{bottom:78.058196pt;}
.y17c{bottom:78.568248pt;}
.yb6{bottom:79.165713pt;}
.y19e{bottom:79.485232pt;}
.y156{bottom:79.716613pt;}
.yed{bottom:81.318285pt;}
.y19d{bottom:82.284002pt;}
.y155{bottom:82.515383pt;}
.y1bc{bottom:84.659435pt;}
.y178{bottom:85.169487pt;}
.y154{bottom:85.314154pt;}
.y15f{bottom:88.701921pt;}
.y93{bottom:89.872875pt;}
.y1d3{bottom:90.176697pt;}
.ye1{bottom:90.952812pt;}
.y1bb{bottom:91.260673pt;}
.y177{bottom:91.770725pt;}
.yec{bottom:92.101866pt;}
.y1a4{bottom:92.187115pt;}
.yef{bottom:93.074143pt;}
.y1b7{bottom:97.861912pt;}
.y173{bottom:98.371963pt;}
.y92{bottom:99.773704pt;}
.y160{bottom:100.688284pt;}
.y1b6{bottom:104.463150pt;}
.y172{bottom:104.973202pt;}
.y1a5{bottom:108.226869pt;}
.y91{bottom:109.756291pt;}
.y1b2{bottom:111.064388pt;}
.y16e{bottom:111.574440pt;}
.y1e7{bottom:112.285340pt;}
.y161{bottom:112.732745pt;}
.y1b1{bottom:117.665627pt;}
.y16d{bottom:118.233584pt;}
.y90{bottom:119.738878pt;}
.y17e{bottom:122.344882pt;}
.y1a6{bottom:124.208767pt;}
.y1ac{bottom:124.266865pt;}
.y162{bottom:124.719108pt;}
.y168{bottom:124.834823pt;}
.ydc{bottom:126.131554pt;}
.yeb{bottom:126.308332pt;}
.y1c2{bottom:126.351467pt;}
.yf2{bottom:126.927053pt;}
.yb9{bottom:128.180223pt;}
.y8f{bottom:129.721465pt;}
.y1ab{bottom:136.484995pt;}
.y167{bottom:137.052953pt;}
.y8e{bottom:139.622294pt;}
.yd7{bottom:143.367370pt;}
.y1aa{bottom:148.123972pt;}
.y166{bottom:148.691930pt;}
.y8d{bottom:149.605154pt;}
.y89{bottom:159.568000pt;}
.yb8{bottom:159.980204pt;}
.yd6{bottom:167.232346pt;}
.y56{bottom:172.102667pt;}
.y2a{bottom:172.104000pt;}
.y88{bottom:175.508000pt;}
.y138{bottom:176.112000pt;}
.y137{bottom:183.580000pt;}
.yf1{bottom:183.584274pt;}
.y29a{bottom:184.718667pt;}
.y26a{bottom:186.714667pt;}
.y136{bottom:187.588000pt;}
.y29{bottom:188.044000pt;}
.yb7{bottom:190.824791pt;}
.y87{bottom:191.448000pt;}
.y253{bottom:193.600000pt;}
.y135{bottom:195.056000pt;}
.y134{bottom:199.064000pt;}
.y299{bottom:199.330667pt;}
.y269{bottom:201.326667pt;}
.y28{bottom:203.984000pt;}
.y55{bottom:205.301333pt;}
.y133{bottom:206.532000pt;}
.y86{bottom:207.388000pt;}
.yf0{bottom:207.449250pt;}
.y252{bottom:209.541333pt;}
.y132{bottom:210.540000pt;}
.y298{bottom:213.212000pt;}
.y268{bottom:215.338667pt;}
.y131{bottom:218.008000pt;}
.y27{bottom:219.924000pt;}
.y54{bottom:221.241333pt;}
.y130{bottom:222.016000pt;}
.y215{bottom:223.328000pt;}
.y251{bottom:225.481333pt;}
.y85{bottom:225.946667pt;}
.y297{bottom:227.822667pt;}
.y12f{bottom:229.484000pt;}
.y267{bottom:229.950667pt;}
.y12e{bottom:233.492000pt;}
.y26{bottom:235.864000pt;}
.yd4{bottom:235.944000pt;}
.y53{bottom:237.181333pt;}
.y214{bottom:239.269333pt;}
.y12d{bottom:240.960000pt;}
.y250{bottom:241.421333pt;}
.y84{bottom:241.886667pt;}
.y296{bottom:242.434667pt;}
.y266{bottom:243.962667pt;}
.y12c{bottom:251.586667pt;}
.y25{bottom:251.804000pt;}
.yd3{bottom:251.885333pt;}
.y52{bottom:253.121333pt;}
.y213{bottom:255.209333pt;}
.y12b{bottom:255.594667pt;}
.y295{bottom:256.316000pt;}
.y24f{bottom:257.361333pt;}
.y83{bottom:257.826667pt;}
.y265{bottom:258.574667pt;}
.y69{bottom:267.744000pt;}
.y24{bottom:267.745333pt;}
.yd2{bottom:267.825333pt;}
.y51{bottom:269.062667pt;}
.y294{bottom:270.928000pt;}
.y212{bottom:271.149333pt;}
.y264{bottom:272.586667pt;}
.y12a{bottom:273.082667pt;}
.y24e{bottom:273.301333pt;}
.y82{bottom:273.766667pt;}
.y23{bottom:283.685333pt;}
.yd1{bottom:283.765333pt;}
.y50{bottom:285.002667pt;}
.y293{bottom:285.540000pt;}
.y211{bottom:287.089333pt;}
.y263{bottom:287.198667pt;}
.y128{bottom:289.022667pt;}
.y24d{bottom:289.241333pt;}
.y81{bottom:289.706667pt;}
.y129{bottom:293.844000pt;}
.y292{bottom:299.420000pt;}
.y22{bottom:299.625333pt;}
.yd0{bottom:299.705333pt;}
.y4f{bottom:300.942667pt;}
.y210{bottom:303.029333pt;}
.y127{bottom:304.964000pt;}
.y24c{bottom:305.182667pt;}
.y80{bottom:305.648000pt;}
.y291{bottom:314.032000pt;}
.y262{bottom:314.750667pt;}
.y21{bottom:315.565333pt;}
.ycf{bottom:315.645333pt;}
.y1d1{bottom:315.829333pt;}
.yb4{bottom:315.974667pt;}
.y4e{bottom:316.882667pt;}
.y20f{bottom:318.969333pt;}
.y126{bottom:320.904000pt;}
.y24b{bottom:321.122667pt;}
.y7f{bottom:321.588000pt;}
.y290{bottom:328.644000pt;}
.y20{bottom:331.505333pt;}
.yce{bottom:331.585333pt;}
.y1d0{bottom:331.769333pt;}
.yb3{bottom:331.914667pt;}
.y4d{bottom:332.822667pt;}
.y20e{bottom:334.910667pt;}
.y125{bottom:336.844000pt;}
.y24a{bottom:337.062667pt;}
.y7e{bottom:337.528000pt;}
.y261{bottom:339.740000pt;}
.y28f{bottom:342.524000pt;}
.y68{bottom:347.445333pt;}
.y1f{bottom:347.446667pt;}
.ycd{bottom:347.526667pt;}
.y1cf{bottom:347.709333pt;}
.yb2{bottom:347.856000pt;}
.y4c{bottom:348.762667pt;}
.y20d{bottom:350.850667pt;}
.y124{bottom:352.784000pt;}
.y249{bottom:353.002667pt;}
.y7d{bottom:353.468000pt;}
.y260{bottom:355.680000pt;}
.y28e{bottom:357.136000pt;}
.y1e{bottom:363.386667pt;}
.ycc{bottom:363.466667pt;}
.y1ce{bottom:363.649333pt;}
.yb1{bottom:363.796000pt;}
.y4b{bottom:364.704000pt;}
.y20c{bottom:366.790667pt;}
.y123{bottom:368.724000pt;}
.y248{bottom:368.942667pt;}
.y28d{bottom:371.017333pt;}
.y7c{bottom:372.025333pt;}
.y25f{bottom:377.601333pt;}
.y1d{bottom:379.326667pt;}
.ycb{bottom:379.406667pt;}
.y1cd{bottom:379.590667pt;}
.yb0{bottom:379.736000pt;}
.y4a{bottom:380.644000pt;}
.y20b{bottom:382.730667pt;}
.y122{bottom:384.664000pt;}
.y247{bottom:384.882667pt;}
.y28c{bottom:385.629333pt;}
.y7b{bottom:387.966667pt;}
.y1c{bottom:395.266667pt;}
.yca{bottom:395.426667pt;}
.y1cc{bottom:395.530667pt;}
.yaf{bottom:395.676000pt;}
.y49{bottom:396.584000pt;}
.y20a{bottom:398.670667pt;}
.y28b{bottom:400.240000pt;}
.y121{bottom:400.605333pt;}
.y246{bottom:400.824000pt;}
.y25e{bottom:402.590667pt;}
.y7a{bottom:403.906667pt;}
.y1b{bottom:411.206667pt;}
.yc9{bottom:411.366667pt;}
.y1cb{bottom:411.470667pt;}
.yae{bottom:411.616000pt;}
.y48{bottom:412.524000pt;}
.y28a{bottom:414.121333pt;}
.y209{bottom:414.612000pt;}
.y120{bottom:416.545333pt;}
.y245{bottom:416.764000pt;}
.y25d{bottom:418.530667pt;}
.y79{bottom:419.846667pt;}
.y1a{bottom:426.780000pt;}
.y67{bottom:427.146667pt;}
.yc8{bottom:427.308000pt;}
.y1ca{bottom:427.410667pt;}
.yad{bottom:427.556000pt;}
.y47{bottom:428.464000pt;}
.y289{bottom:428.733333pt;}
.y208{bottom:430.552000pt;}
.y101{bottom:432.276000pt;}
.y11f{bottom:432.485333pt;}
.y244{bottom:432.704000pt;}
.y25c{bottom:434.470667pt;}
.y78{bottom:435.786667pt;}
.y288{bottom:442.613333pt;}
.y66{bottom:443.086667pt;}
.y22e{bottom:443.088000pt;}
.y1c9{bottom:443.350667pt;}
.yac{bottom:443.497333pt;}
.y46{bottom:444.405333pt;}
.y207{bottom:446.492000pt;}
.y100{bottom:448.216000pt;}
.y11e{bottom:448.425333pt;}
.y243{bottom:448.644000pt;}
.y25b{bottom:450.412000pt;}
.y77{bottom:451.726667pt;}
.yc7{bottom:452.029333pt;}
.y19{bottom:455.329333pt;}
.y287{bottom:457.225333pt;}
.y65{bottom:459.028000pt;}
.yab{bottom:459.437333pt;}
.y45{bottom:460.345333pt;}
.y206{bottom:462.432000pt;}
.y1c8{bottom:463.677333pt;}
.yff{bottom:464.156000pt;}
.y11d{bottom:464.365333pt;}
.y242{bottom:464.584000pt;}
.y25a{bottom:466.352000pt;}
.y76{bottom:467.666667pt;}
.y18{bottom:469.941333pt;}
.y286{bottom:471.837333pt;}
.y64{bottom:474.968000pt;}
.yaa{bottom:475.377333pt;}
.y44{bottom:476.285333pt;}
.y205{bottom:478.372000pt;}
.yc6{bottom:479.820000pt;}
.yfe{bottom:480.096000pt;}
.y11c{bottom:480.305333pt;}
.y241{bottom:480.524000pt;}
.y259{bottom:482.292000pt;}
.y75{bottom:483.608000pt;}
.y285{bottom:486.449333pt;}
.y17{bottom:487.529333pt;}
.y1c7{bottom:489.729333pt;}
.y63{bottom:490.908000pt;}
.ya9{bottom:491.317333pt;}
.y43{bottom:492.225333pt;}
.y204{bottom:494.312000pt;}
.yc5{bottom:495.760000pt;}
.yfd{bottom:496.037333pt;}
.y11a{bottom:496.246667pt;}
.y240{bottom:496.465333pt;}
.y258{bottom:498.232000pt;}
.y74{bottom:499.548000pt;}
.y284{bottom:500.329333pt;}
.y11b{bottom:501.066667pt;}
.y16{bottom:502.141333pt;}
.y1c6{bottom:505.669333pt;}
.y22d{bottom:506.848000pt;}
.ya8{bottom:507.257333pt;}
.y42{bottom:508.165333pt;}
.y203{bottom:510.253333pt;}
.y62{bottom:511.488000pt;}
.yc4{bottom:511.781333pt;}
.yfc{bottom:511.977333pt;}
.y118{bottom:512.186667pt;}
.y23f{bottom:512.405333pt;}
.y257{bottom:514.172000pt;}
.y283{bottom:514.941333pt;}
.y15{bottom:516.753333pt;}
.y119{bottom:517.006667pt;}
.y1c5{bottom:521.609333pt;}
.y22c{bottom:522.788000pt;}
.ya7{bottom:523.608000pt;}
.y41{bottom:524.105333pt;}
.yc3{bottom:527.721333pt;}
.yfb{bottom:527.917333pt;}
.y116{bottom:528.126667pt;}
.y23e{bottom:528.345333pt;}
.y282{bottom:529.553333pt;}
.y256{bottom:530.112000pt;}
.y14{bottom:531.364000pt;}
.y73{bottom:531.644000pt;}
.y1ff{bottom:532.578667pt;}
.y202{bottom:532.833333pt;}
.y117{bottom:532.946667pt;}
.y1c4{bottom:537.549333pt;}
.y61{bottom:537.793333pt;}
.y22b{bottom:538.729333pt;}
.ya6{bottom:539.548000pt;}
.y40{bottom:540.046667pt;}
.y281{bottom:543.434667pt;}
.yc2{bottom:543.661333pt;}
.yfa{bottom:543.857333pt;}
.y115{bottom:544.066667pt;}
.y255{bottom:544.474667pt;}
.y23d{bottom:545.700000pt;}
.y13{bottom:545.976000pt;}
.y1fe{bottom:546.681333pt;}
.y60{bottom:553.733333pt;}
.y22a{bottom:554.669333pt;}
.ya5{bottom:555.488000pt;}
.y3f{bottom:555.986667pt;}
.y201{bottom:558.038667pt;}
.y280{bottom:558.046667pt;}
.yc1{bottom:559.601333pt;}
.yf9{bottom:559.797333pt;}
.y114{bottom:560.006667pt;}
.y12{bottom:560.588000pt;}
.y1c3{bottom:561.244000pt;}
.y200{bottom:561.625333pt;}
.y23c{bottom:561.640000pt;}
.y19f{bottom:566.461333pt;}
.y72{bottom:569.464000pt;}
.y5f{bottom:569.673333pt;}
.y229{bottom:570.609333pt;}
.ya4{bottom:571.428000pt;}
.y3e{bottom:571.926667pt;}
.y1fd{bottom:571.962667pt;}
.y11{bottom:575.200000pt;}
.yc0{bottom:575.541333pt;}
.yf8{bottom:575.738667pt;}
.y113{bottom:575.948000pt;}
.y71{bottom:585.404000pt;}
.y5e{bottom:585.614667pt;}
.y27f{bottom:586.538667pt;}
.y228{bottom:586.549333pt;}
.y23b{bottom:587.077333pt;}
.ya3{bottom:587.368000pt;}
.y3d{bottom:587.866667pt;}
.y1fc{bottom:587.902667pt;}
.y10{bottom:589.812000pt;}
.ybf{bottom:591.481333pt;}
.yf7{bottom:591.678667pt;}
.y111{bottom:591.888000pt;}
.y180{bottom:596.573548pt;}
.y112{bottom:596.708000pt;}
.y27e{bottom:601.150667pt;}
.y70{bottom:601.345333pt;}
.y227{bottom:602.489333pt;}
.ya2{bottom:603.308000pt;}
.y3c{bottom:603.806667pt;}
.y1fb{bottom:603.842667pt;}
.y5d{bottom:603.949333pt;}
.yf{bottom:604.424000pt;}
.ybe{bottom:607.422667pt;}
.yf6{bottom:607.618667pt;}
.y110{bottom:607.828000pt;}
.y23a{bottom:613.096000pt;}
.y27d{bottom:615.762667pt;}
.y6f{bottom:617.285333pt;}
.y226{bottom:618.429333pt;}
.ye{bottom:619.036000pt;}
.ya1{bottom:619.249333pt;}
.y3b{bottom:619.746667pt;}
.y1fa{bottom:619.782667pt;}
.ybd{bottom:623.362667pt;}
.yf5{bottom:623.558667pt;}
.y10f{bottom:623.768000pt;}
.y237{bottom:626.945333pt;}
.y27c{bottom:630.374667pt;}
.y5c{bottom:632.910667pt;}
.y6e{bottom:633.225333pt;}
.yd{bottom:633.648000pt;}
.y225{bottom:634.370667pt;}
.ya0{bottom:635.189333pt;}
.y3a{bottom:635.688000pt;}
.y1f9{bottom:635.724000pt;}
.y239{bottom:638.302667pt;}
.ybc{bottom:639.302667pt;}
.yf4{bottom:639.498667pt;}
.y10e{bottom:639.708000pt;}
.y238{bottom:642.818667pt;}
.y27b{bottom:644.254667pt;}
.y1bd{bottom:644.635341pt;}
.yc{bottom:648.260000pt;}
.y5b{bottom:648.850667pt;}
.y6d{bottom:649.165333pt;}
.y224{bottom:650.310667pt;}
.y9f{bottom:651.129333pt;}
.y39{bottom:651.628000pt;}
.y1f8{bottom:651.664000pt;}
.ybb{bottom:655.242667pt;}
.y10d{bottom:655.648000pt;}
.y1b8{bottom:657.779912pt;}
.y27a{bottom:658.866667pt;}
.yb{bottom:662.872000pt;}
.y236{bottom:663.692000pt;}
.y5a{bottom:664.790667pt;}
.y6c{bottom:665.105333pt;}
.yf3{bottom:665.364000pt;}
.y223{bottom:666.250667pt;}
.y9e{bottom:667.069333pt;}
.y38{bottom:667.568000pt;}
.y1f7{bottom:667.604000pt;}
.y1b3{bottom:670.982389pt;}
.y10c{bottom:671.589333pt;}
.y279{bottom:672.746667pt;}
.ya{bottom:677.482667pt;}
.yd5{bottom:677.634667pt;}
.yba{bottom:678.569333pt;}
.y235{bottom:679.632000pt;}
.y59{bottom:680.732000pt;}
.y6b{bottom:681.045333pt;}
.y254{bottom:681.046667pt;}
.y222{bottom:682.190667pt;}
.y9d{bottom:683.009333pt;}
.y37{bottom:683.508000pt;}
.y1f6{bottom:683.544000pt;}
.y1ad{bottom:684.126960pt;}
.y278{bottom:687.358667pt;}
.y10b{bottom:687.529333pt;}
.yb5{bottom:691.346667pt;}
.y9{bottom:692.094667pt;}
.y234{bottom:695.572000pt;}
.y58{bottom:696.672000pt;}
.y6a{bottom:696.986667pt;}
.y221{bottom:698.130667pt;}
.y36{bottom:699.448000pt;}
.y1f5{bottom:699.484000pt;}
.y9c{bottom:701.820000pt;}
.y277{bottom:701.970667pt;}
.y10a{bottom:703.469333pt;}
.y8{bottom:706.706667pt;}
.y233{bottom:711.512000pt;}
.y57{bottom:712.612000pt;}
.y35{bottom:712.926667pt;}
.y220{bottom:714.070667pt;}
.y1f4{bottom:715.424000pt;}
.y276{bottom:715.852000pt;}
.y109{bottom:720.904000pt;}
.y7{bottom:721.318667pt;}
.y9b{bottom:725.805333pt;}
.y231{bottom:727.452000pt;}
.y34{bottom:728.866667pt;}
.y21f{bottom:730.012000pt;}
.y275{bottom:730.464000pt;}
.y1f3{bottom:731.365333pt;}
.y232{bottom:732.273333pt;}
.y17f{bottom:732.752000pt;}
.y6{bottom:735.930667pt;}
.y159{bottom:737.970667pt;}
.y8a{bottom:738.582667pt;}
.y230{bottom:743.392000pt;}
.y108{bottom:744.064000pt;}
.y33{bottom:744.806667pt;}
.y274{bottom:745.076000pt;}
.y21e{bottom:745.952000pt;}
.y1f2{bottom:747.305333pt;}
.y273{bottom:758.956000pt;}
.y22f{bottom:759.333333pt;}
.y107{bottom:760.004000pt;}
.y32{bottom:760.746667pt;}
.y21d{bottom:761.892000pt;}
.y1f1{bottom:768.152000pt;}
.y139{bottom:768.535269pt;}
.y272{bottom:773.568000pt;}
.y5{bottom:775.729333pt;}
.y106{bottom:775.944000pt;}
.y31{bottom:776.688000pt;}
.y21c{bottom:777.832000pt;}
.y1d2{bottom:780.422667pt;}
.y271{bottom:788.180000pt;}
.y4{bottom:790.341333pt;}
.y105{bottom:791.884000pt;}
.y30{bottom:792.628000pt;}
.y21b{bottom:793.772000pt;}
.y270{bottom:802.060000pt;}
.y104{bottom:807.824000pt;}
.y2f{bottom:808.568000pt;}
.y21a{bottom:809.712000pt;}
.y26f{bottom:816.672000pt;}
.y179{bottom:816.712632pt;}
.y3{bottom:818.182667pt;}
.y103{bottom:823.764000pt;}
.y2e{bottom:824.508000pt;}
.y219{bottom:825.653333pt;}
.y174{bottom:829.857203pt;}
.y26e{bottom:830.553333pt;}
.y2d{bottom:840.448000pt;}
.y218{bottom:841.593333pt;}
.y16f{bottom:843.059680pt;}
.y26d{bottom:845.164000pt;}
.y102{bottom:846.513333pt;}
.y169{bottom:856.262157pt;}
.y2c{bottom:856.388000pt;}
.y217{bottom:857.533333pt;}
.y26c{bottom:859.776000pt;}
.y2{bottom:864.358667pt;}
.y2b{bottom:872.329333pt;}
.y216{bottom:873.473333pt;}
.y26b{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.h30{height:0.000000pt;}
.h1b{height:3.011202pt;}
.h19{height:3.532203pt;}
.h25{height:3.532391pt;}
.h1a{height:3.590070pt;}
.h10{height:10.635329pt;}
.h22{height:16.851986pt;}
.h15{height:16.854614pt;}
.h29{height:17.059610pt;}
.h16{height:17.819839pt;}
.h26{height:17.830681pt;}
.h1c{height:17.832732pt;}
.h23{height:18.282158pt;}
.h17{height:18.285123pt;}
.h28{height:20.035967pt;}
.h2b{height:21.501571pt;}
.h2f{height:22.762701pt;}
.h2e{height:23.910400pt;}
.hc{height:24.674046pt;}
.h6{height:25.197116pt;}
.he{height:25.238587pt;}
.h2a{height:25.898422pt;}
.h18{height:26.631075pt;}
.h24{height:26.644701pt;}
.h7{height:26.834767pt;}
.hb{height:28.999447pt;}
.h34{height:34.239693pt;}
.hd{height:35.333920pt;}
.h31{height:35.865600pt;}
.h33{height:36.396699pt;}
.h2c{height:37.459376pt;}
.h9{height:39.210152pt;}
.h32{height:39.850400pt;}
.h2d{height:45.429333pt;}
.h3{height:45.429760pt;}
.h2{height:50.477173pt;}
.h13{height:59.816388pt;}
.h4{height:60.573013pt;}
.h20{height:65.780906pt;}
.hf{height:68.444323pt;}
.h11{height:69.949868pt;}
.h1{height:72.687413pt;}
.h1d{height:73.366540pt;}
.h1e{height:74.872086pt;}
.h1f{height:81.473324pt;}
.h12{height:83.673495pt;}
.h27{height:121.129307pt;}
.h21{height:162.618227pt;}
.h5{height:162.969320pt;}
.h14{height:163.583320pt;}
.h8{height:210.206640pt;}
.ha{height:223.918293pt;}
.h0{height:1056.000000pt;}
.wd{width:2.953147pt;}
.w9{width:3.474336pt;}
.wa{width:260.401483pt;}
.wc{width:260.864728pt;}
.wb{width:260.922634pt;}
.w7{width:320.912835pt;}
.w4{width:320.912883pt;}
.w5{width:321.376080pt;}
.w6{width:321.433986pt;}
.w2{width:322.781760pt;}
.w1{width:368.897080pt;}
.w8{width:414.990133pt;}
.w3{width:461.094907pt;}
.we{width:461.105680pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8d{left:5.801992pt;}
.x1f{left:11.455584pt;}
.x8e{left:12.581141pt;}
.x7c{left:15.055456pt;}
.x7a{left:18.703585pt;}
.x4e{left:20.064110pt;}
.x79{left:21.714600pt;}
.x4c{left:23.776661pt;}
.x53{left:27.665821pt;}
.x1c{left:35.921507pt;}
.x3f{left:37.830554pt;}
.x7f{left:45.340181pt;}
.x7b{left:53.446911pt;}
.x4d{left:55.243000pt;}
.x92{left:57.348110pt;}
.x93{left:65.348752pt;}
.x1d{left:74.706773pt;}
.x8f{left:89.839266pt;}
.x32{left:92.530871pt;}
.x88{left:95.370299pt;}
.x41{left:99.525789pt;}
.x51{left:101.205176pt;}
.x91{left:111.276099pt;}
.x43{left:121.711378pt;}
.x9f{left:125.994837pt;}
.x90{left:128.010266pt;}
.x80{left:134.977954pt;}
.x4a{left:137.621362pt;}
.x30{left:139.513450pt;}
.x94{left:143.828328pt;}
.x31{left:149.316451pt;}
.x95{left:161.967187pt;}
.x1e{left:163.733026pt;}
.x2f{left:165.335990pt;}
.x3c{left:167.408387pt;}
.x7d{left:168.794824pt;}
.x54{left:178.633765pt;}
.xb{left:179.686667pt;}
.x76{left:184.208000pt;}
.xe3{left:185.828000pt;}
.x89{left:187.787861pt;}
.x7e{left:190.162006pt;}
.x4f{left:191.096586pt;}
.x77{left:192.969333pt;}
.x82{left:195.713333pt;}
.x8b{left:197.034667pt;}
.xe{left:198.354667pt;}
.xc{left:199.612000pt;}
.x55{left:200.554187pt;}
.x12{left:202.628000pt;}
.x56{left:209.923400pt;}
.xce{left:211.252000pt;}
.x37{left:212.490667pt;}
.x9a{left:213.696526pt;}
.x8{left:217.481333pt;}
.x21{left:219.313333pt;}
.x4b{left:222.386221pt;}
.x1b{left:223.748000pt;}
.x33{left:225.869333pt;}
.x64{left:228.492000pt;}
.x16{left:229.406667pt;}
.x20{left:231.648274pt;}
.x6f{left:233.809333pt;}
.xd9{left:234.921333pt;}
.x50{left:238.738149pt;}
.x5{left:240.198667pt;}
.x72{left:241.714667pt;}
.x6d{left:242.920000pt;}
.x3b{left:245.356000pt;}
.x2e{left:246.805333pt;}
.x42{left:251.377747pt;}
.x83{left:253.621333pt;}
.x8c{left:254.944000pt;}
.x2{left:256.105333pt;}
.x8a{left:258.548504pt;}
.x85{left:259.816284pt;}
.x5a{left:261.584000pt;}
.x3{left:263.656000pt;}
.xa4{left:265.368000pt;}
.xbc{left:267.322667pt;}
.x1{left:268.840000pt;}
.xe0{left:269.745333pt;}
.xb1{left:270.748000pt;}
.xb7{left:272.046667pt;}
.x97{left:272.998992pt;}
.x99{left:273.915096pt;}
.x96{left:275.197642pt;}
.x22{left:277.222667pt;}
.xbd{left:278.689333pt;}
.x9{left:280.781333pt;}
.x78{left:282.109940pt;}
.x4{left:284.101333pt;}
.x73{left:285.476000pt;}
.x38{left:286.457333pt;}
.xa{left:288.736000pt;}
.xc4{left:291.013333pt;}
.xbe{left:293.297333pt;}
.x5c{left:294.544000pt;}
.x98{left:296.451254pt;}
.x29{left:297.484000pt;}
.xb8{left:298.701333pt;}
.xaa{left:299.857333pt;}
.x3d{left:301.140642pt;}
.x3e{left:303.085195pt;}
.xc2{left:306.390667pt;}
.xab{left:307.790667pt;}
.x68{left:309.108000pt;}
.xb6{left:310.597333pt;}
.x86{left:311.873419pt;}
.x57{left:313.481333pt;}
.xc7{left:314.561333pt;}
.x81{left:321.723514pt;}
.x9c{left:322.773976pt;}
.xc8{left:324.156000pt;}
.xac{left:325.598667pt;}
.x2b{left:326.572000pt;}
.xd4{left:327.774667pt;}
.xf{left:330.456000pt;}
.x39{left:332.205333pt;}
.xb4{left:333.286667pt;}
.x5d{left:335.086667pt;}
.xb9{left:336.278667pt;}
.x87{left:337.699316pt;}
.x40{left:340.915602pt;}
.x2a{left:343.477333pt;}
.xc3{left:344.498667pt;}
.x13{left:345.398667pt;}
.x65{left:347.017333pt;}
.x45{left:351.168702pt;}
.x69{left:353.325333pt;}
.xd{left:354.736000pt;}
.xba{left:357.150667pt;}
.xd7{left:358.237333pt;}
.x70{left:360.832000pt;}
.x46{left:361.952136pt;}
.xa0{left:363.571141pt;}
.xb3{left:365.584000pt;}
.xb0{left:367.161333pt;}
.xb2{left:368.468000pt;}
.x6b{left:371.445333pt;}
.xbb{left:372.809333pt;}
.xa1{left:373.770432pt;}
.xcc{left:374.718667pt;}
.x6c{left:376.610667pt;}
.x48{left:378.304064pt;}
.xa2{left:381.771074pt;}
.x74{left:383.062667pt;}
.x5e{left:386.266667pt;}
.x27{left:387.677333pt;}
.x17{left:389.401333pt;}
.x9b{left:390.626746pt;}
.x49{left:392.799827pt;}
.xcb{left:395.178667pt;}
.x34{left:396.144000pt;}
.xd1{left:397.233333pt;}
.x44{left:398.545099pt;}
.xbf{left:400.797333pt;}
.x52{left:401.727096pt;}
.x66{left:405.709333pt;}
.x19{left:408.082667pt;}
.x2c{left:409.474667pt;}
.xa3{left:413.468272pt;}
.xdc{left:416.178667pt;}
.xde{left:417.114667pt;}
.x9e{left:418.048792pt;}
.xdb{left:420.430667pt;}
.x6{left:422.170667pt;}
.x47{left:425.503683pt;}
.x84{left:427.666667pt;}
.x7{left:429.678667pt;}
.xad{left:431.894667pt;}
.x5f{left:435.072000pt;}
.xc9{left:436.384000pt;}
.x9d{left:437.286976pt;}
.x10{left:438.896000pt;}
.x71{left:440.613333pt;}
.x1a{left:442.512000pt;}
.x18{left:444.882667pt;}
.xa7{left:446.878667pt;}
.xe1{left:453.782667pt;}
.x28{left:454.889333pt;}
.xc5{left:457.800000pt;}
.xdf{left:462.129333pt;}
.x67{left:465.544000pt;}
.x62{left:467.413333pt;}
.xd3{left:480.157333pt;}
.xd5{left:483.418667pt;}
.xa8{left:488.710667pt;}
.x3a{left:496.234667pt;}
.x58{left:503.393333pt;}
.x63{left:509.245333pt;}
.x6e{left:510.981333pt;}
.xa5{left:515.321333pt;}
.xd6{left:516.557333pt;}
.xe2{left:517.648000pt;}
.x60{left:518.573333pt;}
.xcf{left:520.348000pt;}
.xc6{left:522.834667pt;}
.xdd{left:523.862667pt;}
.x35{left:525.612000pt;}
.x25{left:531.894667pt;}
.xd8{left:534.918667pt;}
.x14{left:538.054667pt;}
.xae{left:541.224000pt;}
.xd0{left:543.264000pt;}
.xda{left:544.948000pt;}
.x36{left:550.150667pt;}
.xa6{left:551.694667pt;}
.xca{left:555.498667pt;}
.x23{left:561.374667pt;}
.xcd{left:565.574667pt;}
.xd2{left:573.180000pt;}
.x26{left:575.609333pt;}
.xb5{left:577.170667pt;}
.xc1{left:582.553333pt;}
.x59{left:586.784000pt;}
.x15{left:587.774667pt;}
.x5b{left:591.984000pt;}
.x24{left:597.748000pt;}
.x2d{left:601.420000pt;}
.xa9{left:612.333333pt;}
.x6a{left:614.286667pt;}
.x11{left:616.910667pt;}
.xaf{left:625.092000pt;}
.xc0{left:630.028000pt;}
.x75{left:631.141333pt;}
.x61{left:637.100000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  