
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ed120000794f05cedabc95f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_efd59a3fccf484f253f9d6c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b9ae97f2baba297619710878.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3fdecc2eda32048d2e710f73.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_967b11424a92074df427b4eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_7172e997f9a0bb17e1ce97f7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58ee56dd5ee6b71865b8b1b6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_90518f25b618c3b67cadee0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_09d5ca82ffe74152641214fb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d51ceaa53a87ba77e6af762c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933105;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_f10b64f84943525fe1884a77.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6907f053b0f1239981815540.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f566a6bfec960258959432f2.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_08c156edfb62467d9e26f8fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ff760e764f9402ad96a32f96.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2b20e14bfa54f3cad1d7a417.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_db3e83911ec5f3c9f2bbc6d0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.752000;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;}
.m27{transform:matrix(0.000000,0.222677,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.222677,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.222677,-0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.332057,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.332057,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.332057,0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,-0.292823,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.292823,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.292823,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.308422,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.308422,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.308422,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.313316,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.313316,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.313316,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.155925,-0.195416,0.155925,0.195416,0,0);-ms-transform:matrix(0.155925,-0.195416,0.155925,0.195416,0,0);-webkit-transform:matrix(0.155925,-0.195416,0.155925,0.195416,0,0);}
.m30{transform:matrix(0.157423,-0.194211,0.157423,0.194211,0,0);-ms-transform:matrix(0.157423,-0.194211,0.157423,0.194211,0,0);-webkit-transform:matrix(0.157423,-0.194211,0.157423,0.194211,0,0);}
.m2c{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.188221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188221,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194140,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.199479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199479,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.202644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202644,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.213439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213439,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264137,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.280676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280676,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-40.650000px;}
.vc{vertical-align:-35.868000px;}
.v3{vertical-align:-22.686048px;}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-11.148000px;}
.v4{vertical-align:-8.249472px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:28.572000px;}
.vd{vertical-align:35.868000px;}
.v7{vertical-align:37.542000px;}
.ve{vertical-align:40.650000px;}
.vb{vertical-align:52.896588px;}
.v9{vertical-align:69.239550px;}
.va{vertical-align:75.725280px;}
.v6{vertical-align:84.312000px;}
.lse{letter-spacing:-0.194090px;}
.lsf{letter-spacing:-0.117727px;}
.ls2d{letter-spacing:-0.073885px;}
.ls2b{letter-spacing:-0.064113px;}
.ls2c{letter-spacing:-0.024358px;}
.lsc{letter-spacing:-0.013405px;}
.ls8{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.001613px;}
.ls10{letter-spacing:0.089929px;}
.lsd{letter-spacing:0.194090px;}
.ls26{letter-spacing:0.542815px;}
.ls13{letter-spacing:0.548815px;}
.ls12{letter-spacing:1.131943px;}
.ls25{letter-spacing:1.137943px;}
.ls7{letter-spacing:1.275394px;}
.ls14{letter-spacing:1.313675px;}
.ls18{letter-spacing:1.342200px;}
.ls1e{letter-spacing:1.348200px;}
.ls28{letter-spacing:1.414741px;}
.ls1a{letter-spacing:1.492200px;}
.ls20{letter-spacing:1.498200px;}
.ls0{letter-spacing:1.861130px;}
.ls1d{letter-spacing:2.434741px;}
.ls17{letter-spacing:2.440741px;}
.ls15{letter-spacing:3.555943px;}
.ls27{letter-spacing:3.739200px;}
.ls16{letter-spacing:4.299943px;}
.ls1c{letter-spacing:4.305943px;}
.ls22{letter-spacing:4.458783px;}
.ls36{letter-spacing:8.639764px;}
.ls1{letter-spacing:10.461300px;}
.ls1f{letter-spacing:10.706100px;}
.ls19{letter-spacing:10.712100px;}
.ls6{letter-spacing:11.960850px;}
.ls3c{letter-spacing:12.440400px;}
.ls23{letter-spacing:13.042741px;}
.ls37{letter-spacing:13.448400px;}
.ls38{letter-spacing:13.454400px;}
.ls39{letter-spacing:13.647566px;}
.ls3a{letter-spacing:13.694131px;}
.lsb{letter-spacing:14.704798px;}
.ls31{letter-spacing:14.884124px;}
.ls11{letter-spacing:15.123227px;}
.ls2f{letter-spacing:15.183002px;}
.ls33{letter-spacing:15.960085px;}
.ls24{letter-spacing:16.077483px;}
.ls3b{letter-spacing:16.085694px;}
.ls32{letter-spacing:16.318739px;}
.ls29{letter-spacing:18.072783px;}
.ls2e{letter-spacing:18.590212px;}
.ls2a{letter-spacing:18.849483px;}
.ls34{letter-spacing:18.889090px;}
.lsa{letter-spacing:19.905275px;}
.ls9{letter-spacing:22.654952px;}
.ls1b{letter-spacing:34.374300px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls21{letter-spacing:90.334741px;}
.ls35{letter-spacing:329.286941px;}
.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;}
}
.wsc3{word-spacing:-344.558768px;}
.ws9c{word-spacing:-16.536472px;}
.ws9a{word-spacing:-16.514453px;}
.ws9b{word-spacing:-16.462587px;}
.ws6e{word-spacing:-16.206548px;}
.ws6c{word-spacing:-15.081066px;}
.ws77{word-spacing:-14.943900px;}
.ws99{word-spacing:-14.511288px;}
.ws8f{word-spacing:-14.261594px;}
.wsb0{word-spacing:-13.449600px;}
.ws71{word-spacing:-12.915580px;}
.ws2e{word-spacing:-11.955150px;}
.ws72{word-spacing:-11.858616px;}
.ws11{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws6f{word-spacing:-8.762589px;}
.ws70{word-spacing:-8.739284px;}
.ws6d{word-spacing:-8.071055px;}
.wse3{word-spacing:-4.357670px;}
.ws67{word-spacing:-3.048556px;}
.ws54{word-spacing:-2.988780px;}
.ws82{word-spacing:-2.869229px;}
.ws79{word-spacing:-2.575874px;}
.ws4c{word-spacing:-2.510575px;}
.ws56{word-spacing:-2.450800px;}
.ws59{word-spacing:-2.331248px;}
.wsf9{word-spacing:-2.313331px;}
.ws4f{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.wsc9{word-spacing:-1.801175px;}
.wsc8{word-spacing:-1.797875px;}
.ws97{word-spacing:-1.793268px;}
.wsf6{word-spacing:-1.667750px;}
.ws3c{word-spacing:-1.613941px;}
.ws58{word-spacing:-1.554166px;}
.ws5a{word-spacing:-1.494390px;}
.ws7f{word-spacing:-1.434614px;}
.ws92{word-spacing:-1.388933px;}
.ws30{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws32{word-spacing:-1.315063px;}
.ws35{word-spacing:-1.255288px;}
.wsa9{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws5f{word-spacing:-1.135736px;}
.ws7{word-spacing:-1.046070px;}
.wsf1{word-spacing:-1.022170px;}
.wsf7{word-spacing:-1.014365px;}
.ws68{word-spacing:-0.896634px;}
.ws2f{word-spacing:-0.836858px;}
.wsf0{word-spacing:-0.753178px;}
.ws55{word-spacing:-0.597756px;}
.wsb9{word-spacing:-0.591782px;}
.wsfb{word-spacing:-0.537984px;}
.ws12{word-spacing:-0.478206px;}
.wsa6{word-spacing:-0.478205px;}
.ws5d{word-spacing:-0.418429px;}
.wsf2{word-spacing:-0.376589px;}
.ws4e{word-spacing:-0.358654px;}
.wsba{word-spacing:-0.322790px;}
.ws50{word-spacing:-0.298878px;}
.ws7e{word-spacing:-0.268992px;}
.ws34{word-spacing:-0.239102px;}
.wscc{word-spacing:-0.215194px;}
.ws3b{word-spacing:-0.179327px;}
.wsdd{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.wse2{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.ws1f{word-spacing:-0.053798px;}
.wse9{word-spacing:-0.007267px;}
.wse8{word-spacing:-0.006576px;}
.wse0{word-spacing:-0.006326px;}
.wsd7{word-spacing:-0.006221px;}
.wsd8{word-spacing:-0.003859px;}
.wsfe{word-spacing:-0.003610px;}
.wsdb{word-spacing:-0.003082px;}
.ws2d{word-spacing:-0.002857px;}
.ws10{word-spacing:-0.002490px;}
.wsf{word-spacing:-0.001458px;}
.wse5{word-spacing:-0.001267px;}
.wsf3{word-spacing:-0.000221px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.047821px;}
.ws1d{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.ws18{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.ws1e{word-spacing:0.161395px;}
.ws45{word-spacing:0.179327px;}
.ws1a{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.wsaa{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.wsff{word-spacing:0.322790px;}
.ws43{word-spacing:0.358654px;}
.ws48{word-spacing:0.418429px;}
.ws85{word-spacing:0.478205px;}
.wsef{word-spacing:0.484186px;}
.ws31{word-spacing:0.537980px;}
.wsec{word-spacing:0.537984px;}
.ws3d{word-spacing:0.597756px;}
.ws60{word-spacing:0.717307px;}
.ws38{word-spacing:0.777083px;}
.wsd2{word-spacing:0.860774px;}
.ws41{word-spacing:0.896634px;}
.ws49{word-spacing:0.956410px;}
.ws100{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.ws98{word-spacing:1.016185px;}
.wsd3{word-spacing:1.022170px;}
.wsa7{word-spacing:1.075961px;}
.ws26{word-spacing:1.135736px;}
.wsfd{word-spacing:1.183565px;}
.ws27{word-spacing:1.195512px;}
.ws47{word-spacing:1.255288px;}
.wsa5{word-spacing:1.315063px;}
.wse4{word-spacing:1.344960px;}
.ws4d{word-spacing:1.374839px;}
.ws96{word-spacing:1.434614px;}
.ws19{word-spacing:1.452557px;}
.ws53{word-spacing:1.494390px;}
.ws1b{word-spacing:1.506355px;}
.ws2c{word-spacing:1.673717px;}
.ws9f{word-spacing:1.733492px;}
.wsde{word-spacing:1.775347px;}
.ws89{word-spacing:1.793268px;}
.ws8c{word-spacing:1.853044px;}
.ws1c{word-spacing:1.882944px;}
.ws93{word-spacing:1.889818px;}
.ws52{word-spacing:1.912819px;}
.ws64{word-spacing:1.972595px;}
.ws66{word-spacing:2.032370px;}
.wsf4{word-spacing:2.044339px;}
.ws84{word-spacing:2.211697px;}
.ws16{word-spacing:2.259533px;}
.ws62{word-spacing:2.271473px;}
.ws73{word-spacing:2.329473px;}
.ws37{word-spacing:2.331248px;}
.ws69{word-spacing:2.391024px;}
.wsd1{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws76{word-spacing:2.570351px;}
.ws83{word-spacing:2.630126px;}
.wsf5{word-spacing:2.636122px;}
.ws65{word-spacing:2.689902px;}
.wsea{word-spacing:2.743718px;}
.ws3e{word-spacing:2.809453px;}
.wsed{word-spacing:2.851315px;}
.ws75{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.ws2b{word-spacing:2.929004px;}
.ws81{word-spacing:2.988780px;}
.ws9e{word-spacing:3.066509px;}
.ws6b{word-spacing:3.108331px;}
.ws20{word-spacing:3.219667px;}
.wsd4{word-spacing:3.224822px;}
.wsee{word-spacing:3.227904px;}
.wseb{word-spacing:3.281702px;}
.wsf8{word-spacing:3.335501px;}
.ws94{word-spacing:3.347434px;}
.ws9d{word-spacing:3.389299px;}
.ws61{word-spacing:3.407209px;}
.ws33{word-spacing:3.466985px;}
.ws21{word-spacing:3.586536px;}
.wsdc{word-spacing:3.604493px;}
.ws36{word-spacing:3.646312px;}
.wsa1{word-spacing:3.706087px;}
.ws80{word-spacing:3.825638px;}
.wsd9{word-spacing:3.873485px;}
.ws25{word-spacing:3.885414px;}
.ws6a{word-spacing:3.945190px;}
.wsfc{word-spacing:4.034880px;}
.ws17{word-spacing:4.088678px;}
.ws51{word-spacing:4.124516px;}
.ws8e{word-spacing:4.244068px;}
.ws63{word-spacing:4.303843px;}
.ws3f{word-spacing:4.363619px;}
.ws5c{word-spacing:4.423394px;}
.ws5b{word-spacing:4.483170px;}
.ws46{word-spacing:4.542946px;}
.ws8d{word-spacing:4.602721px;}
.wse6{word-spacing:4.680461px;}
.ws8a{word-spacing:4.722272px;}
.wsd{word-spacing:4.770079px;}
.ws23{word-spacing:4.782048px;}
.wse{word-spacing:4.853765px;}
.ws8b{word-spacing:4.901599px;}
.ws42{word-spacing:4.961375px;}
.wsaf{word-spacing:5.200477px;}
.wsc4{word-spacing:5.439580px;}
.wsa8{word-spacing:5.618906px;}
.ws4b{word-spacing:6.037336px;}
.ws74{word-spacing:6.216662px;}
.ws87{word-spacing:6.336214px;}
.ws15{word-spacing:6.402010px;}
.ws95{word-spacing:6.455765px;}
.wscb{word-spacing:6.515540px;}
.ws39{word-spacing:6.575316px;}
.ws44{word-spacing:6.694867px;}
.wsd5{word-spacing:7.316582px;}
.ws57{word-spacing:7.412174px;}
.wsca{word-spacing:7.471950px;}
.ws88{word-spacing:7.591501px;}
.ws40{word-spacing:7.651277px;}
.wsa0{word-spacing:7.711052px;}
.wsb{word-spacing:7.782761px;}
.ws5e{word-spacing:7.890379px;}
.ws86{word-spacing:8.009930px;}
.ws4a{word-spacing:8.129482px;}
.wse7{word-spacing:9.136627px;}
.wsdf{word-spacing:9.136790px;}
.wsda{word-spacing:9.138394px;}
.wsd6{word-spacing:9.139498px;}
.wse1{word-spacing:9.139968px;}
.wsfa{word-spacing:9.142829px;}
.wsc7{word-spacing:10.460700px;}
.wsad{word-spacing:11.955150px;}
.ws9{word-spacing:12.176255px;}
.wsb1{word-spacing:13.449600px;}
.wsb5{word-spacing:14.943900px;}
.wsa{word-spacing:16.109478px;}
.ws78{word-spacing:17.938541px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.wscd{word-spacing:56.906208px;}
.wsce{word-spacing:88.288308px;}
.wsa3{word-spacing:179.565902px;}
.wsab{word-spacing:186.356878px;}
.wsa4{word-spacing:191.828345px;}
.wsac{word-spacing:197.642540px;}
.wsc1{word-spacing:214.140647px;}
.ws7a{word-spacing:227.565709px;}
.wsc2{word-spacing:228.678109px;}
.ws90{word-spacing:236.213792px;}
.wsc0{word-spacing:237.190176px;}
.wsbf{word-spacing:241.350568px;}
.ws7b{word-spacing:270.073688px;}
.wsae{word-spacing:272.051393px;}
.ws91{word-spacing:324.279488px;}
.wscf{word-spacing:332.273675px;}
.wsbc{word-spacing:349.029728px;}
.wsd0{word-spacing:349.345537px;}
.wsb7{word-spacing:356.860332px;}
.wsbb{word-spacing:358.175395px;}
.wsb3{word-spacing:366.005999px;}
.wsbd{word-spacing:366.424428px;}
.wsbe{word-spacing:366.484204px;}
.wsb4{word-spacing:374.255032px;}
.wsc6{word-spacing:392.217362px;}
.ws7c{word-spacing:408.949098px;}
.ws7d{word-spacing:424.435978px;}
.wsb6{word-spacing:431.579832px;}
.wsb8{word-spacing:446.463956px;}
.wsc5{word-spacing:462.796746px;}
.wsa2{word-spacing:604.032438px;}
.wsb2{word-spacing:1284.582042px;}
._66{margin-left:-329.286941px;}
._67{margin-left:-10.052487px;}
._a7{margin-left:-7.645174px;}
._8{margin-left:-6.635350px;}
._9{margin-left:-5.260266px;}
._2{margin-left:-3.849538px;}
._24{margin-left:-2.400529px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._19{width:3.721222px;}
._1e{width:11.203286px;}
._3{width:12.216414px;}
._21{width:13.646999px;}
._d{width:14.662736px;}
._23{width:15.664061px;}
._c{width:16.749449px;}
._15{width:17.956579px;}
._11{width:19.135759px;}
._f{width:20.211978px;}
._a{width:21.322313px;}
._10{width:22.595177px;}
._1c{width:23.596230px;}
._b{width:24.657814px;}
._4{width:25.946136px;}
._12{width:27.974981px;}
._1b{width:29.349820px;}
._6{width:30.587087px;}
._1a{width:31.621292px;}
._e{width:33.414560px;}
._68{width:35.446931px;}
._16{width:37.897472px;}
._18{width:39.093242px;}
._8c{width:40.415873px;}
._17{width:42.336259px;}
._a8{width:44.168824px;}
._7{width:55.114570px;}
._a6{width:61.868160px;}
._9b{width:71.581723px;}
._a2{width:72.627840px;}
._6b{width:83.450033px;}
._6c{width:84.548809px;}
._6d{width:93.225758px;}
._5a{width:95.210815px;}
._a5{width:98.235878px;}
._90{width:101.050362px;}
._8f{width:116.197456px;}
._85{width:118.551237px;}
._7d{width:123.059675px;}
._a4{width:124.357954px;}
._77{width:125.946828px;}
._a3{width:128.900966px;}
._73{width:130.967964px;}
._70{width:133.520375px;}
._6e{width:142.056306px;}
._7f{width:144.357660px;}
._9c{width:148.860173px;}
._84{width:149.898272px;}
._7b{width:151.976849px;}
._74{width:154.818360px;}
._83{width:158.487473px;}
._79{width:162.977706px;}
._7e{width:164.651418px;}
._9e{width:168.980774px;}
._6f{width:171.848380px;}
._86{width:173.438406px;}
._71{width:175.112118px;}
._75{width:177.982435px;}
._81{width:179.367030px;}
._87{width:182.309080px;}
._8b{width:183.899106px;}
._89{width:185.572818px;}
._72{width:188.501814px;}
._7a{width:192.769780px;}
._a0{width:194.266022px;}
._61{width:195.538433px;}
._8e{width:197.030716px;}
._a1{width:198.300902px;}
._8d{width:201.256751px;}
._27{width:202.543632px;}
._2d{width:204.289603px;}
._80{width:205.364462px;}
._2a{width:207.010470px;}
._28{width:208.377742px;}
._35{width:209.454228px;}
._76{width:210.887712px;}
._2e{width:212.586457px;}
._2b{width:216.511483px;}
._78{width:218.544944px;}
._88{width:220.637084px;}
._9f{width:222.456384px;}
._30{width:228.199903px;}
._31{width:230.160548px;}
._9d{width:235.421798px;}
._32{width:238.050947px;}
._8a{width:247.207262px;}
._62{width:249.288788px;}
._60{width:253.305718px;}
._7c{width:255.701351px;}
._65{width:278.507174px;}
._63{width:289.171168px;}
._82{width:292.188272px;}
._9a{width:299.563190px;}
._40{width:301.030677px;}
._64{width:303.932589px;}
._91{width:308.255908px;}
._5f{width:313.990060px;}
._1f{width:317.664984px;}
._3e{width:319.871993px;}
._3f{width:321.880459px;}
._96{width:325.495141px;}
._59{width:326.662519px;}
._1d{width:328.829590px;}
._3c{width:331.253296px;}
._5c{width:340.960878px;}
._34{width:343.112805px;}
._3a{width:345.695117px;}
._43{width:357.793729px;}
._22{width:365.681956px;}
._5e{width:370.179265px;}
._92{width:376.888196px;}
._53{width:381.368328px;}
._39{width:385.338395px;}
._4f{width:389.445601px;}
._37{width:391.076867px;}
._5d{width:395.525140px;}
._97{width:402.276679px;}
._93{width:404.745404px;}
._3b{width:411.257160px;}
._42{width:420.056150px;}
._54{width:422.135287px;}
._33{width:424.264363px;}
._58{width:433.373100px;}
._41{width:434.593613px;}
._55{width:439.410436px;}
._95{width:445.835034px;}
._98{width:452.153297px;}
._56{width:454.414111px;}
._99{width:464.036652px;}
._57{width:466.548558px;}
._5b{width:469.454830px;}
._69{width:476.939724px;}
._38{width:496.951675px;}
._94{width:502.490185px;}
._3d{width:507.950413px;}
._6a{width:547.554881px;}
._36{width:600.005068px;}
._2c{width:611.625474px;}
._2f{width:617.029202px;}
._29{width:632.664950px;}
._46{width:697.887697px;}
._49{width:707.504002px;}
._51{width:790.352983px;}
._52{width:794.537275px;}
._48{width:838.711444px;}
._4e{width:850.845890px;}
._4c{width:872.365106px;}
._4b{width:878.761096px;}
._50{width:885.276636px;}
._20{width:904.556077px;}
._47{width:945.059803px;}
._13{width:1026.772490px;}
._4a{width:1028.498974px;}
._4d{width:1050.795272px;}
._44{width:1078.889804px;}
._45{width:1083.372974px;}
._25{width:1617.904066px;}
._26{width:2534.606700px;}
._14{width:2558.516700px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(54,121,123);}
.fc6{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fsd{font-size:29.113560px;}
.fse{font-size:32.219006px;}
.fs14{font-size:34.159910px;}
.fsb{font-size:35.712634px;}
.fs7{font-size:35.865600px;}
.fs10{font-size:38.669400px;}
.fsf{font-size:38.772518px;}
.fs11{font-size:38.818080px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs2b{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs15{font-size:47.337600px;}
.fs13{font-size:47.434464px;}
.fs8{font-size:47.820600px;}
.fs2a{font-size:49.442400px;}
.fs29{font-size:51.593138px;}
.fs12{font-size:51.662318px;}
.fs9{font-size:53.798400px;}
.fs27{font-size:54.934627px;}
.fs17{font-size:57.106080px;}
.fs25{font-size:59.024862px;}
.fs21{font-size:59.471257px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:60.324264px;}
.fs28{font-size:60.430699px;}
.fs16{font-size:62.286600px;}
.fs19{font-size:63.104400px;}
.fs1a{font-size:63.188539px;}
.fs18{font-size:64.113120px;}
.fs1b{font-size:64.209240px;}
.fs1c{font-size:64.294852px;}
.fsc{font-size:64.826194px;}
.fs22{font-size:66.032928px;}
.fs26{font-size:66.577248px;}
.fs1f{font-size:66.782239px;}
.fs23{font-size:66.917675px;}
.fs1d{font-size:73.072800px;}
.fs1e{font-size:73.170230px;}
.fs20{font-size:73.369003px;}
.fs24{font-size:73.973795px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y1a7{bottom:0.374358px;}
.y19b{bottom:3.204797px;}
.y3{bottom:3.425340px;}
.y1ee{bottom:6.568119px;}
.ye0{bottom:8.023793px;}
.yc4{bottom:10.318177px;}
.y1a9{bottom:12.634137px;}
.y2{bottom:14.151273px;}
.y1e{bottom:16.015847px;}
.y19c{bottom:19.012183px;}
.y19a{bottom:22.051968px;}
.y1ed{bottom:26.482419px;}
.y1a8{bottom:26.732871px;}
.y4e{bottom:31.890000px;}
.yde{bottom:37.902349px;}
.y1ef{bottom:40.731444px;}
.y12e{bottom:45.642632px;}
.yc3{bottom:54.607530px;}
.y15f{bottom:59.621214px;}
.y153{bottom:62.933331px;}
.y12d{bottom:64.594987px;}
.ydf{bottom:71.385753px;}
.y19d{bottom:74.553305px;}
.y15e{bottom:81.567412px;}
.y152{bottom:82.192536px;}
.y1aa{bottom:84.272764px;}
.y1b0{bottom:89.968471px;}
.y1a2{bottom:90.316373px;}
.y14e{bottom:91.665000px;}
.y222{bottom:91.708500px;}
.y104{bottom:93.124500px;}
.yc9{bottom:93.481019px;}
.y83{bottom:97.779000px;}
.y1f0{bottom:99.615969px;}
.ydc{bottom:101.397504px;}
.y15d{bottom:103.487222px;}
.y2b5{bottom:104.503500px;}
.y198{bottom:104.632500px;}
.y1c{bottom:104.646000px;}
.yea{bottom:106.270500px;}
.y127{bottom:106.296000px;}
.ya4{bottom:107.193000px;}
.yb8{bottom:107.641500px;}
.y14d{bottom:110.494500px;}
.y221{bottom:110.538000px;}
.y4d{bottom:111.301500px;}
.y103{bottom:111.954000px;}
.y82{bottom:116.607000px;}
.y197{bottom:118.828500px;}
.y2b4{bottom:121.762500px;}
.y1b{bottom:122.535000px;}
.y280{bottom:123.886500px;}
.yc5{bottom:124.448763px;}
.ye9{bottom:125.100000px;}
.y126{bottom:125.125500px;}
.ya3{bottom:126.022500px;}
.yb7{bottom:126.471000px;}
.y14c{bottom:129.324000px;}
.y220{bottom:129.367500px;}
.y4c{bottom:130.131000px;}
.y102{bottom:130.782000px;}
.y1ab{bottom:130.963411px;}
.y19e{bottom:131.873555px;}
.y196{bottom:133.026000px;}
.ydd{bottom:134.857277px;}
.y81{bottom:135.436500px;}
.y2b3{bottom:139.023000px;}
.y1a{bottom:140.422500px;}
.y27f{bottom:141.147000px;}
.ye8{bottom:143.929500px;}
.y125{bottom:143.955000px;}
.ya2{bottom:144.852000px;}
.yb6{bottom:145.300500px;}
.ycd{bottom:145.996212px;}
.yd7{bottom:146.694410px;}
.y195{bottom:147.222000px;}
.y14b{bottom:148.153500px;}
.y21f{bottom:148.197000px;}
.y4b{bottom:148.960500px;}
.y101{bottom:149.611500px;}
.y166{bottom:149.965500px;}
.y80{bottom:154.266000px;}
.yce{bottom:155.330576px;}
.y2b2{bottom:156.283500px;}
.y12c{bottom:158.134990px;}
.y19{bottom:158.310000px;}
.y27e{bottom:158.407500px;}
.y1f1{bottom:158.500494px;}
.yd8{bottom:159.530502px;}
.yc7{bottom:160.174992px;}
.y194{bottom:161.419500px;}
.ye7{bottom:162.759000px;}
.y124{bottom:162.784500px;}
.y1f6{bottom:162.792369px;}
.ya1{bottom:163.681500px;}
.yb5{bottom:164.130000px;}
.y14a{bottom:166.983000px;}
.y21e{bottom:167.026500px;}
.y4a{bottom:167.790000px;}
.yc8{bottom:167.984063px;}
.y100{bottom:168.441000px;}
.y165{bottom:169.197000px;}
.yca{bottom:169.691961px;}
.y24e{bottom:170.320500px;}
.y7f{bottom:173.095500px;}
.y2b1{bottom:173.544000px;}
.y193{bottom:175.615500px;}
.y27d{bottom:175.668000px;}
.y18{bottom:176.199000px;}
.y12b{bottom:177.092603px;}
.y1ac{bottom:177.653596px;}
.yd6{bottom:178.607406px;}
.ye6{bottom:181.587000px;}
.y123{bottom:181.614000px;}
.yc6{bottom:182.087652px;}
.ya0{bottom:182.511000px;}
.yb4{bottom:182.959500px;}
.y203{bottom:184.449514px;}
.y149{bottom:185.812500px;}
.y21d{bottom:185.856000px;}
.y49{bottom:186.618000px;}
.yff{bottom:187.270500px;}
.y24d{bottom:189.150000px;}
.y19f{bottom:189.193805px;}
.y192{bottom:189.813000px;}
.y2b0{bottom:190.804500px;}
.y7e{bottom:191.925000px;}
.yd5{bottom:192.786186px;}
.y27c{bottom:192.928500px;}
.yd9{bottom:192.990275px;}
.y17{bottom:194.086500px;}
.y159{bottom:194.616101px;}
.ycf{bottom:196.524228px;}
.ye5{bottom:200.416500px;}
.y122{bottom:200.443500px;}
.y9f{bottom:201.340500px;}
.y202{bottom:201.486541px;}
.yb3{bottom:201.789000px;}
.y191{bottom:204.009000px;}
.y148{bottom:204.642000px;}
.y21c{bottom:204.685500px;}
.y48{bottom:205.447500px;}
.yfe{bottom:206.100000px;}
.y24c{bottom:207.979500px;}
.y2af{bottom:208.065000px;}
.y151{bottom:209.523026px;}
.y27b{bottom:210.189000px;}
.y7d{bottom:210.754500px;}
.yd4{bottom:211.422689px;}
.y16{bottom:211.974000px;}
.y1f2{bottom:217.385019px;}
.y190{bottom:218.206500px;}
.y201{bottom:218.524941px;}
.ye4{bottom:219.246000px;}
.y121{bottom:219.273000px;}
.y9e{bottom:220.170000px;}
.yb2{bottom:220.618500px;}
.y15c{bottom:221.743370px;}
.y147{bottom:223.471500px;}
.ycb{bottom:224.033210px;}
.y47{bottom:224.277000px;}
.y1ad{bottom:224.344243px;}
.yfd{bottom:224.929500px;}
.y2ae{bottom:225.325500px;}
.y24b{bottom:226.809000px;}
.y21b{bottom:227.997000px;}
.y150{bottom:228.785798px;}
.y7c{bottom:229.584000px;}
.y15{bottom:229.863000px;}
.yd3{bottom:230.220314px;}
.y27a{bottom:231.933000px;}
.y18f{bottom:232.402500px;}
.y200{bottom:235.563342px;}
.ye3{bottom:238.075500px;}
.y120{bottom:238.102500px;}
.y9d{bottom:238.999500px;}
.yb1{bottom:239.446500px;}
.y146{bottom:242.301000px;}
.y2ad{bottom:242.586000px;}
.y46{bottom:243.106500px;}
.y15b{bottom:243.665210px;}
.yfc{bottom:243.759000px;}
.y24a{bottom:245.638500px;}
.y1a0{bottom:246.514055px;}
.y18e{bottom:246.600000px;}
.y7b{bottom:248.413500px;}
.yd1{bottom:250.768803px;}
.y1ff{bottom:252.600369px;}
.y11f{bottom:256.932000px;}
.ycc{bottom:257.492982px;}
.y9c{bottom:257.829000px;}
.yb0{bottom:258.276000px;}
.y2ac{bottom:259.846500px;}
.y18d{bottom:260.796000px;}
.y145{bottom:261.130500px;}
.ye2{bottom:261.388500px;}
.y45{bottom:261.936000px;}
.yfb{bottom:262.588500px;}
.y249{bottom:264.468000px;}
.y15a{bottom:265.587050px;}
.y7a{bottom:267.243000px;}
.y279{bottom:267.615000px;}
.y1fe{bottom:269.638769px;}
.yd2{bottom:270.146469px;}
.y12a{bottom:270.653641px;}
.y1ae{bottom:271.034428px;}
.y21a{bottom:271.965000px;}
.y18c{bottom:274.993500px;}
.y11e{bottom:275.761500px;}
.y1f3{bottom:276.269544px;}
.y9b{bottom:276.658500px;}
.yaf{bottom:277.105500px;}
.y144{bottom:279.960000px;}
.y44{bottom:280.765500px;}
.yfa{bottom:281.418000px;}
.y248{bottom:283.297500px;}
.y219{bottom:283.920000px;}
.y1b2{bottom:284.036525px;}
.y1a4{bottom:284.087478px;}
.y278{bottom:285.189000px;}
.y1fd{bottom:286.677170px;}
.yda{bottom:287.472509px;}
.y1eb{bottom:287.490000px;}
.y18b{bottom:289.189500px;}
.y129{bottom:289.584961px;}
.y79{bottom:290.556000px;}
.ye1{bottom:291.816000px;}
.y2ab{bottom:294.366000px;}
.y11d{bottom:294.591000px;}
.y9a{bottom:295.488000px;}
.y218{bottom:295.875000px;}
.yae{bottom:295.935000px;}
.y143{bottom:298.789500px;}
.y43{bottom:299.595000px;}
.y14{bottom:300.154500px;}
.yf9{bottom:300.247500px;}
.y247{bottom:302.127000px;}
.yd0{bottom:302.628765px;}
.y1c3{bottom:302.713500px;}
.y277{bottom:302.763000px;}
.y18a{bottom:303.387000px;}
.y1fc{bottom:303.715570px;}
.y1a1{bottom:303.834305px;}
.y155{bottom:305.515840px;}
.y1a3{bottom:305.811853px;}
.y1b1{bottom:305.939977px;}
.y157{bottom:306.202522px;}
.y1ea{bottom:309.187500px;}
.yf6{bottom:310.467911px;}
.y2aa{bottom:311.626500px;}
.y11c{bottom:313.420500px;}
.y99{bottom:314.317500px;}
.yad{bottom:314.764500px;}
.y217{bottom:315.331500px;}
.yc2{bottom:317.234033px;}
.y142{bottom:317.619000px;}
.y1af{bottom:317.725075px;}
.y13{bottom:318.043500px;}
.y42{bottom:318.424500px;}
.y276{bottom:320.338500px;}
.y1fb{bottom:320.752597px;}
.ydb{bottom:320.932281px;}
.y246{bottom:320.956500px;}
.y1c2{bottom:321.543000px;}
.y1e9{bottom:323.383500px;}
.yf8{bottom:323.560500px;}
.y78{bottom:324.180000px;}
.y154{bottom:324.778612px;}
.y189{bottom:325.084500px;}
.y156{bottom:325.483130px;}
.y216{bottom:327.286500px;}
.y2a9{bottom:328.887000px;}
.y11b{bottom:332.250000px;}
.y98{bottom:333.145500px;}
.yac{bottom:333.594000px;}
.y1f4{bottom:335.154069px;}
.y12{bottom:335.931000px;}
.y141{bottom:336.448500px;}
.y41{bottom:337.254000px;}
.y1e8{bottom:337.581000px;}
.y1fa{bottom:337.790997px;}
.y275{bottom:337.912500px;}
.y215{bottom:339.241500px;}
.y245{bottom:339.786000px;}
.y1c1{bottom:340.372500px;}
.y164{bottom:340.852034px;}
.y77{bottom:343.009500px;}
.y161{bottom:343.023920px;}
.y2a8{bottom:346.147500px;}
.y188{bottom:346.782000px;}
.y131{bottom:348.272053px;}
.y133{bottom:348.350933px;}
.y130{bottom:349.893485px;}
.y214{bottom:351.198000px;}
.y160{bottom:351.721613px;}
.y1e7{bottom:351.777000px;}
.y97{bottom:351.975000px;}
.yab{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.yf7{bottom:353.988000px;}
.y1f9{bottom:354.829398px;}
.y140{bottom:355.278000px;}
.y274{bottom:355.486500px;}
.y11a{bottom:355.563000px;}
.y40{bottom:356.083500px;}
.y244{bottom:358.615500px;}
.y1c0{bottom:359.202000px;}
.y76{bottom:361.839000px;}
.y163{bottom:362.773874px;}
.y213{bottom:363.153000px;}
.y2a7{bottom:363.408000px;}
.y162{bottom:364.945760px;}
.y1e6{bottom:365.974500px;}
.y132{bottom:367.282253px;}
.y12f{bottom:368.824805px;}
.yf5{bottom:369.612361px;}
.y96{bottom:370.804500px;}
.yaa{bottom:371.253000px;}
.y1f8{bottom:371.866425px;}
.y273{bottom:373.060500px;}
.y13f{bottom:374.107500px;}
.y212{bottom:375.108000px;}
.yf4{bottom:376.417103px;}
.y243{bottom:377.445000px;}
.y1bf{bottom:378.031500px;}
.y3f{bottom:379.396500px;}
.y75{bottom:380.668500px;}
.y10{bottom:380.673000px;}
.y187{bottom:381.316500px;}
.y211{bottom:387.063000px;}
.y1e5{bottom:387.672000px;}
.y119{bottom:389.187000px;}
.y95{bottom:389.634000px;}
.ya9{bottom:390.082500px;}
.y272{bottom:390.634500px;}
.y13e{bottom:392.937000px;}
.y1f5{bottom:394.038594px;}
.y242{bottom:396.274500px;}
.y1be{bottom:396.861000px;}
.y2a6{bottom:397.929000px;}
.yf{bottom:398.562000px;}
.y210{bottom:399.018000px;}
.y74{bottom:399.498000px;}
.y186{bottom:400.549500px;}
.y1f7{bottom:406.657394px;}
.y118{bottom:408.015000px;}
.y271{bottom:408.208500px;}
.y94{bottom:408.463500px;}
.ya8{bottom:408.912000px;}
.y1e4{bottom:409.371000px;}
.y13d{bottom:411.766500px;}
.y241{bottom:415.104000px;}
.y2a5{bottom:415.188000px;}
.y1bd{bottom:415.690500px;}
.ye{bottom:416.449500px;}
.y20f{bottom:418.474500px;}
.y73{bottom:422.811000px;}
.y270{bottom:425.782500px;}
.y117{bottom:426.844500px;}
.y93{bottom:427.293000px;}
.y20e{bottom:427.470000px;}
.ya7{bottom:427.741500px;}
.y13c{bottom:430.596000px;}
.y2a4{bottom:432.448500px;}
.y240{bottom:433.933500px;}
.y1bc{bottom:434.520000px;}
.y185{bottom:437.653500px;}
.y1e3{bottom:442.410000px;}
.y26f{bottom:443.356500px;}
.yd{bottom:444.798000px;}
.y116{bottom:445.674000px;}
.ya6{bottom:446.571000px;}
.y13b{bottom:449.425500px;}
.y2a3{bottom:449.709000px;}
.y92{bottom:450.606000px;}
.y23f{bottom:452.763000px;}
.y1bb{bottom:453.349500px;}
.y3e{bottom:454.546500px;}
.y72{bottom:456.433500px;}
.y184{bottom:456.483000px;}
.y26e{bottom:460.930500px;}
.y1e2{bottom:461.643000px;}
.yc{bottom:462.685500px;}
.ya5{bottom:465.400500px;}
.y2a2{bottom:466.969500px;}
.y13a{bottom:468.255000px;}
.y115{bottom:468.987000px;}
.y20d{bottom:469.102500px;}
.y23e{bottom:471.592500px;}
.y1ba{bottom:472.179000px;}
.y71{bottom:475.263000px;}
.y183{bottom:475.312500px;}
.y26d{bottom:478.504500px;}
.y91{bottom:484.230000px;}
.y139{bottom:487.084500px;}
.yb{bottom:489.540000px;}
.y23d{bottom:490.422000px;}
.y1b9{bottom:491.008500px;}
.y3d{bottom:491.935500px;}
.y70{bottom:494.092500px;}
.y182{bottom:494.142000px;}
.y26c{bottom:496.078500px;}
.y2a1{bottom:501.490500px;}
.y114{bottom:502.611000px;}
.y90{bottom:503.059500px;}
.y138{bottom:505.914000px;}
.y20c{bottom:506.206500px;}
.y1e1{bottom:506.670000px;}
.ya{bottom:507.429000px;}
.y23c{bottom:509.251500px;}
.y1b8{bottom:509.838000px;}
.y3c{bottom:511.393500px;}
.y6f{bottom:512.922000px;}
.y181{bottom:512.971500px;}
.y26b{bottom:513.652500px;}
.y2a0{bottom:518.751000px;}
.y113{bottom:521.440500px;}
.y8f{bottom:521.889000px;}
.y1e0{bottom:524.602500px;}
.y137{bottom:524.743500px;}
.y20b{bottom:525.036000px;}
.y9{bottom:525.316500px;}
.y23b{bottom:528.081000px;}
.y1b7{bottom:528.667500px;}
.y3b{bottom:530.850000px;}
.y26a{bottom:531.226500px;}
.y6e{bottom:531.751500px;}
.y180{bottom:531.801000px;}
.y29f{bottom:536.011500px;}
.y112{bottom:540.270000px;}
.y8e{bottom:540.718500px;}
.y1df{bottom:542.535000px;}
.y8{bottom:543.204000px;}
.y136{bottom:543.573000px;}
.y20a{bottom:543.865500px;}
.y23a{bottom:546.910500px;}
.y1b6{bottom:547.497000px;}
.y269{bottom:548.800500px;}
.y3a{bottom:550.308000px;}
.y6d{bottom:550.581000px;}
.y17f{bottom:550.630500px;}
.y29e{bottom:553.272000px;}
.y111{bottom:559.099500px;}
.y8d{bottom:559.548000px;}
.y1db{bottom:560.467500px;}
.y7{bottom:561.093000px;}
.y135{bottom:562.401000px;}
.y209{bottom:562.695000px;}
.y239{bottom:565.740000px;}
.y1b5{bottom:566.326500px;}
.y268{bottom:566.376000px;}
.y17e{bottom:569.460000px;}
.y39{bottom:569.764500px;}
.y29d{bottom:570.531000px;}
.y6c{bottom:573.894000px;}
.y110{bottom:577.929000px;}
.y8c{bottom:578.377500px;}
.y1de{bottom:578.400000px;}
.y6{bottom:578.980500px;}
.y208{bottom:581.524500px;}
.y267{bottom:583.950000px;}
.y29c{bottom:587.791500px;}
.y17d{bottom:588.288000px;}
.y238{bottom:589.051500px;}
.y38{bottom:589.221000px;}
.y6b{bottom:592.723500px;}
.y158{bottom:593.539500px;}
.y134{bottom:593.818500px;}
.y1dd{bottom:596.332500px;}
.y10f{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y8b{bottom:597.207000px;}
.y1b4{bottom:599.892000px;}
.y207{bottom:600.354000px;}
.y266{bottom:601.524000px;}
.y29b{bottom:605.052000px;}
.y17c{bottom:607.117500px;}
.y37{bottom:608.679000px;}
.y6a{bottom:611.553000px;}
.y1dc{bottom:614.266500px;}
.y4{bottom:614.757000px;}
.y10e{bottom:615.588000px;}
.y8a{bottom:616.036500px;}
.y128{bottom:616.248254px;}
.y14f{bottom:618.958250px;}
.y265{bottom:619.098000px;}
.y1b3{bottom:619.125000px;}
.y206{bottom:619.183500px;}
.y29a{bottom:622.312500px;}
.y36{bottom:628.135500px;}
.y69{bottom:630.382500px;}
.y17b{bottom:630.430500px;}
.y1{bottom:632.644464px;}
.y237{bottom:633.019500px;}
.y10d{bottom:634.417500px;}
.y89{bottom:634.866000px;}
.y264{bottom:636.672000px;}
.y299{bottom:639.573000px;}
.y1da{bottom:639.700500px;}
.y205{bottom:642.495000px;}
.y35{bottom:647.593500px;}
.y68{bottom:649.212000px;}
.y236{bottom:652.476000px;}
.y10c{bottom:653.247000px;}
.y88{bottom:653.695500px;}
.y263{bottom:654.246000px;}
.y1a5{bottom:654.519000px;}
.y298{bottom:656.833500px;}
.y1d9{bottom:657.633000px;}
.y235{bottom:664.431000px;}
.y34{bottom:667.050000px;}
.y67{bottom:668.041500px;}
.y262{bottom:671.820000px;}
.yc1{bottom:672.076500px;}
.y199{bottom:672.452352px;}
.y1a6{bottom:672.452471px;}
.y87{bottom:672.525000px;}
.y204{bottom:672.922500px;}
.y297{bottom:674.094000px;}
.y234{bottom:676.386000px;}
.y17a{bottom:682.170000px;}
.y33{bottom:686.506500px;}
.y66{bottom:686.871000px;}
.y233{bottom:688.341000px;}
.y261{bottom:689.394000px;}
.y1d8{bottom:690.298500px;}
.yc0{bottom:690.906000px;}
.y86{bottom:691.354500px;}
.y1ec{bottom:695.352853px;}
.y179{bottom:698.338500px;}
.y232{bottom:700.296000px;}
.y65{bottom:705.700500px;}
.y32{bottom:705.964500px;}
.y260{bottom:706.968000px;}
.y296{bottom:708.613500px;}
.ybf{bottom:709.735500px;}
.y85{bottom:710.184000px;}
.y231{bottom:712.252500px;}
.y178{bottom:723.772500px;}
.y230{bottom:724.207500px;}
.y64{bottom:724.530000px;}
.y25f{bottom:724.542000px;}
.y31{bottom:725.421000px;}
.y295{bottom:725.874000px;}
.ybe{bottom:728.565000px;}
.y84{bottom:729.013500px;}
.y1d7{bottom:735.325500px;}
.y22f{bottom:736.162500px;}
.y25e{bottom:742.116000px;}
.y294{bottom:743.134500px;}
.y30{bottom:744.877500px;}
.ybd{bottom:747.394500px;}
.y63{bottom:747.843000px;}
.y22e{bottom:748.117500px;}
.y177{bottom:748.906500px;}
.y25d{bottom:759.690000px;}
.y22d{bottom:760.072500px;}
.y293{bottom:760.395000px;}
.y1d6{bottom:760.759500px;}
.ybc{bottom:766.224000px;}
.y62{bottom:766.671000px;}
.y22c{bottom:772.027500px;}
.yf3{bottom:773.763000px;}
.y25c{bottom:777.264000px;}
.y292{bottom:777.655500px;}
.y1d5{bottom:778.692000px;}
.y176{bottom:781.572000px;}
.y2f{bottom:783.463500px;}
.y22b{bottom:783.982500px;}
.ybb{bottom:785.053500px;}
.y61{bottom:785.500500px;}
.yf2{bottom:792.592500px;}
.y25b{bottom:794.838000px;}
.y291{bottom:794.916000px;}
.y22a{bottom:795.937500px;}
.y1d4{bottom:796.624500px;}
.y2e{bottom:799.603500px;}
.yba{bottom:803.883000px;}
.y60{bottom:804.330000px;}
.y229{bottom:807.892500px;}
.yf1{bottom:811.422000px;}
.y290{bottom:812.176500px;}
.y1d3{bottom:814.557000px;}
.y2d{bottom:815.742000px;}
.y175{bottom:818.677500px;}
.y10b{bottom:822.712500px;}
.y5f{bottom:823.159500px;}
.y25a{bottom:826.209000px;}
.yb9{bottom:827.194500px;}
.y228{bottom:827.349000px;}
.y28f{bottom:829.437000px;}
.yf0{bottom:830.251500px;}
.y1d2{bottom:832.489500px;}
.y2c{bottom:836.221500px;}
.y174{bottom:837.507000px;}
.y10a{bottom:841.540500px;}
.y5e{bottom:841.989000px;}
.y225{bottom:844.743000px;}
.y227{bottom:846.507000px;}
.y28e{bottom:846.697500px;}
.y259{bottom:848.266500px;}
.yef{bottom:849.081000px;}
.y1d1{bottom:850.423500px;}
.y2b{bottom:852.361500px;}
.y173{bottom:856.335000px;}
.y109{bottom:860.370000px;}
.y5d{bottom:860.818500px;}
.y28d{bottom:863.956500px;}
.y2a{bottom:864.160500px;}
.y226{bottom:865.665000px;}
.yee{bottom:867.910500px;}
.y1d0{bottom:868.356000px;}
.y172{bottom:875.164500px;}
.y108{bottom:879.199500px;}
.y5c{bottom:879.648000px;}
.y29{bottom:880.300500px;}
.y28c{bottom:881.217000px;}
.y28{bottom:884.640000px;}
.y258{bottom:885.028500px;}
.y1cf{bottom:886.288500px;}
.yed{bottom:886.740000px;}
.y171{bottom:893.994000px;}
.y27{bottom:896.440500px;}
.y107{bottom:898.029000px;}
.y5b{bottom:898.477500px;}
.y224{bottom:898.629000px;}
.y1ce{bottom:904.221000px;}
.y257{bottom:911.569500px;}
.y26{bottom:912.580500px;}
.y170{bottom:912.823500px;}
.y28b{bottom:915.738000px;}
.y106{bottom:916.858500px;}
.y5a{bottom:917.307000px;}
.y223{bottom:917.862000px;}
.yec{bottom:920.386500px;}
.y1cd{bottom:922.153500px;}
.y25{bottom:928.719000px;}
.yeb{bottom:929.830500px;}
.y16f{bottom:931.653000px;}
.y28a{bottom:932.998500px;}
.y24{bottom:933.058500px;}
.y59{bottom:936.136500px;}
.y256{bottom:938.109000px;}
.y1cc{bottom:940.086000px;}
.y105{bottom:940.171500px;}
.y289{bottom:950.259000px;}
.y16e{bottom:950.482500px;}
.y58{bottom:954.966000px;}
.y1cb{bottom:958.020000px;}
.y255{bottom:964.650000px;}
.y288{bottom:967.519500px;}
.y16d{bottom:969.312000px;}
.y57{bottom:973.795500px;}
.y1ca{bottom:975.952500px;}
.y23{bottom:977.736000px;}
.y287{bottom:984.780000px;}
.y16c{bottom:988.141500px;}
.y254{bottom:991.191000px;}
.y56{bottom:992.625000px;}
.y1c9{bottom:993.885000px;}
.y22{bottom:996.565500px;}
.y2b6{bottom:1002.039000px;}
.y286{bottom:1002.040500px;}
.y16b{bottom:1006.971000px;}
.y55{bottom:1011.454500px;}
.y1c8{bottom:1011.817500px;}
.y253{bottom:1017.730500px;}
.y285{bottom:1019.299500px;}
.y16a{bottom:1025.800500px;}
.y54{bottom:1030.284000px;}
.y252{bottom:1035.304500px;}
.y21{bottom:1036.485000px;}
.y284{bottom:1036.560000px;}
.y1c7{bottom:1037.251500px;}
.y169{bottom:1044.630000px;}
.y1c6{bottom:1046.218500px;}
.y53{bottom:1049.113500px;}
.y251{bottom:1052.880000px;}
.y283{bottom:1053.820500px;}
.y168{bottom:1063.459500px;}
.y20{bottom:1064.728500px;}
.y52{bottom:1067.943000px;}
.y250{bottom:1070.454000px;}
.y282{bottom:1071.081000px;}
.y167{bottom:1082.289000px;}
.y51{bottom:1086.772500px;}
.y1c5{bottom:1087.849500px;}
.y24f{bottom:1088.028000px;}
.y281{bottom:1088.341500px;}
.y1f{bottom:1092.972000px;}
.y50{bottom:1105.602000px;}
.y1c4{bottom:1107.082500px;}
.y1d{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h15{height:20.541550px;}
.h16{height:22.732649px;}
.h1d{height:24.102085px;}
.h2{height:25.508090px;}
.h19{height:27.388733px;}
.h43{height:30.252344px;}
.hb{height:32.565965px;}
.h4{height:33.112997px;}
.h1c{height:33.468164px;}
.h3{height:34.199443px;}
.h30{height:34.574294px;}
.h1a{height:36.451196px;}
.h13{height:36.567086px;}
.h41{height:36.636818px;}
.h5{height:37.993262px;}
.h3f{height:38.230515px;}
.hd{height:38.896243px;}
.h18{height:39.594596px;}
.h17{height:39.700181px;}
.h3d{height:40.706558px;}
.h12{height:42.562774px;}
.h21{height:43.164166px;}
.hf{height:43.217759px;}
.hc{height:43.421105px;}
.h39{height:43.737423px;}
.h8{height:43.815515px;}
.h40{height:44.053979px;}
.h34{height:44.068201px;}
.h3e{height:44.779148px;}
.h14{height:45.739184px;}
.h28{height:46.714950px;}
.h22{height:48.460550px;}
.h1b{height:48.569371px;}
.he{height:48.848947px;}
.h35{height:48.930400px;}
.h3a{height:49.333741px;}
.h32{height:49.485639px;}
.h37{height:49.585997px;}
.h6{height:50.930649px;}
.h10{height:54.276245px;}
.h33{height:54.366431px;}
.ha{height:54.541601px;}
.h38{height:54.814582px;}
.h24{height:64.614222px;}
.h25{height:64.700374px;}
.h2a{height:65.745496px;}
.h2b{height:65.833157px;}
.h42{height:70.902344px;}
.h2d{height:74.821124px;}
.h2e{height:74.920885px;}
.h9{height:77.792486px;}
.h3b{height:79.079759px;}
.h1e{height:91.818245px;}
.h1f{height:92.052245px;}
.h7{height:94.491000px;}
.h2f{height:127.717712px;}
.h26{height:133.853772px;}
.h27{height:140.339502px;}
.h31{height:340.157001px;}
.h29{height:340.164751px;}
.h36{height:340.169467px;}
.h11{height:340.170308px;}
.h20{height:382.669825px;}
.h23{height:382.677974px;}
.h2c{height:382.691286px;}
.h3c{height:425.192800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:174.085494px;}
.wa{width:340.158169px;}
.w9{width:340.165901px;}
.w5{width:425.200972px;}
.wb{width:510.246858px;}
.w6{width:586.780404px;}
.w7{width:637.785030px;}
.w8{width:637.793651px;}
.w4{width:765.362012px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x85{left:1.265421px;}
.x69{left:2.782012px;}
.x84{left:5.848100px;}
.x83{left:7.001459px;}
.x8e{left:8.227526px;}
.x8c{left:10.119038px;}
.x6a{left:12.227314px;}
.x68{left:13.783011px;}
.x9f{left:15.057567px;}
.x8f{left:16.644754px;}
.x9e{left:21.330005px;}
.xb1{left:22.374599px;}
.x8d{left:26.007738px;}
.x2{left:29.274117px;}
.xaf{left:32.341274px;}
.x48{left:38.978690px;}
.x1{left:53.574073px;}
.x3{left:58.555600px;}
.xb4{left:61.993500px;}
.x47{left:63.564323px;}
.xae{left:65.683500px;}
.x52{left:77.020408px;}
.x9b{left:78.363000px;}
.xa1{left:82.073344px;}
.xb8{left:85.848000px;}
.x86{left:88.273542px;}
.x9c{left:100.476000px;}
.x54{left:103.319657px;}
.x6b{left:107.234088px;}
.x53{left:112.053725px;}
.x55{left:124.629166px;}
.x82{left:127.352430px;}
.x90{left:129.244887px;}
.x56{left:139.072727px;}
.x9d{left:160.134648px;}
.xa2{left:178.155352px;}
.xb6{left:192.340500px;}
.xb7{left:199.609500px;}
.xb0{left:201.188474px;}
.xb5{left:209.911500px;}
.x87{left:218.468551px;}
.x6c{left:231.782433px;}
.xa4{left:234.805774px;}
.xa0{left:235.940292px;}
.xa3{left:241.955882px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x93{left:260.381838px;}
.x66{left:267.882000px;}
.x5{left:269.587500px;}
.x99{left:275.436000px;}
.x79{left:279.231000px;}
.x8{left:281.479500px;}
.x11{left:288.010500px;}
.x94{left:289.984001px;}
.x7a{left:294.432000px;}
.x12{left:295.482000px;}
.x13{left:299.232000px;}
.x72{left:301.065000px;}
.x14{left:306.705000px;}
.x95{left:310.213500px;}
.x7{left:311.536500px;}
.x73{left:316.468500px;}
.x45{left:317.688000px;}
.x4a{left:321.768403px;}
.x76{left:329.895000px;}
.x46{left:332.632500px;}
.x88{left:333.663484px;}
.x2e{left:339.130500px;}
.x34{left:341.577000px;}
.x67{left:343.564500px;}
.x77{left:345.087000px;}
.x19{left:348.073500px;}
.x4b{left:350.008556px;}
.x3a{left:351.229500px;}
.x2f{left:354.075000px;}
.x2a{left:356.070000px;}
.x1a{left:363.016500px;}
.x3b{left:366.172500px;}
.x2b{left:371.014500px;}
.x61{left:372.211500px;}
.x32{left:374.998500px;}
.x1b{left:377.086500px;}
.xb2{left:383.079000px;}
.x40{left:385.867500px;}
.x98{left:388.683000px;}
.x33{left:389.943000px;}
.x92{left:393.812247px;}
.xb3{left:398.023500px;}
.x41{left:400.812000px;}
.x63{left:410.600990px;}
.x57{left:415.805201px;}
.x58{left:419.978145px;}
.x8b{left:431.622109px;}
.x36{left:436.531500px;}
.x22{left:443.323500px;}
.x20{left:448.981500px;}
.x37{left:451.476000px;}
.x23{left:458.266500px;}
.x62{left:462.154500px;}
.x21{left:463.924500px;}
.xaa{left:466.909500px;}
.xac{left:469.726500px;}
.x97{left:470.830500px;}
.x35{left:472.561500px;}
.x5b{left:473.758500px;}
.xab{left:474.979500px;}
.x64{left:478.135500px;}
.x43{left:481.602000px;}
.x5c{left:483.360000px;}
.xad{left:485.083500px;}
.xf{left:491.208000px;}
.x65{left:493.080000px;}
.x6d{left:494.852614px;}
.x44{left:496.546500px;}
.x10{left:498.679500px;}
.x59{left:504.423643px;}
.x49{left:508.887722px;}
.x9a{left:520.528500px;}
.x96{left:522.201000px;}
.x91{left:527.676127px;}
.x17{left:534.558000px;}
.x4c{left:545.109843px;}
.x89{left:546.605594px;}
.x18{left:549.502500px;}
.x6e{left:557.187000px;}
.x8a{left:564.367322px;}
.x74{left:569.437500px;}
.x3c{left:570.856500px;}
.x6f{left:572.130000px;}
.x30{left:579.322500px;}
.x4d{left:581.323877px;}
.x75{left:584.382000px;}
.x3d{left:585.801000px;}
.x4e{left:591.343794px;}
.x31{left:594.267000px;}
.xa5{left:611.833500px;}
.x7e{left:613.113000px;}
.xa8{left:625.108500px;}
.x5a{left:628.156273px;}
.x4f{left:629.749432px;}
.xd{left:636.795000px;}
.x5d{left:640.932000px;}
.xa9{left:642.736500px;}
.xe{left:644.266500px;}
.x5e{left:654.256500px;}
.x80{left:656.067000px;}
.x15{left:660.699000px;}
.x24{left:662.794500px;}
.x1e{left:663.936000px;}
.x81{left:672.079500px;}
.x16{left:675.642000px;}
.x25{left:677.737500px;}
.x1f{left:678.879000px;}
.x1c{left:681.253500px;}
.x50{left:684.757886px;}
.x1d{left:696.198000px;}
.x7b{left:699.738000px;}
.x7f{left:706.324500px;}
.x51{left:722.063678px;}
.x2c{left:735.582000px;}
.xba{left:737.863500px;}
.x9{left:740.229000px;}
.x38{left:743.953500px;}
.xa{left:747.702000px;}
.x42{left:748.771500px;}
.x2d{left:750.526500px;}
.xb{left:755.233500px;}
.x39{left:758.898000px;}
.x70{left:760.707000px;}
.xc{left:762.705000px;}
.xbb{left:764.763000px;}
.x71{left:775.519500px;}
.xa6{left:779.682000px;}
.xbd{left:781.620000px;}
.xa7{left:786.408000px;}
.x3e{left:788.832000px;}
.xbc{left:790.546500px;}
.x78{left:797.344500px;}
.x7c{left:800.424000px;}
.x3f{left:803.776500px;}
.xb9{left:810.379500px;}
.x5f{left:812.340000px;}
.x7d{left:815.152500px;}
.x26{left:817.776000px;}
.x28{left:818.893500px;}
.x27{left:832.720500px;}
.x29{left:833.838000px;}
.x60{left:837.105000px;}
@media print{
.vf{vertical-align:-36.133333pt;}
.vc{vertical-align:-31.882667pt;}
.v3{vertical-align:-20.165376pt;}
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-9.909333pt;}
.v4{vertical-align:-7.332864pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:25.397333pt;}
.vd{vertical-align:31.882667pt;}
.v7{vertical-align:33.370667pt;}
.ve{vertical-align:36.133333pt;}
.vb{vertical-align:47.019189pt;}
.v9{vertical-align:61.546267pt;}
.va{vertical-align:67.311360pt;}
.v6{vertical-align:74.944000pt;}
.lse{letter-spacing:-0.172525pt;}
.lsf{letter-spacing:-0.104646pt;}
.ls2d{letter-spacing:-0.065675pt;}
.ls2b{letter-spacing:-0.056989pt;}
.ls2c{letter-spacing:-0.021651pt;}
.lsc{letter-spacing:-0.011916pt;}
.ls8{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.001434pt;}
.ls10{letter-spacing:0.079936pt;}
.lsd{letter-spacing:0.172525pt;}
.ls26{letter-spacing:0.482502pt;}
.ls13{letter-spacing:0.487835pt;}
.ls12{letter-spacing:1.006172pt;}
.ls25{letter-spacing:1.011505pt;}
.ls7{letter-spacing:1.133683pt;}
.ls14{letter-spacing:1.167711pt;}
.ls18{letter-spacing:1.193067pt;}
.ls1e{letter-spacing:1.198400pt;}
.ls28{letter-spacing:1.257548pt;}
.ls1a{letter-spacing:1.326400pt;}
.ls20{letter-spacing:1.331733pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1d{letter-spacing:2.164214pt;}
.ls17{letter-spacing:2.169548pt;}
.ls15{letter-spacing:3.160838pt;}
.ls27{letter-spacing:3.323733pt;}
.ls16{letter-spacing:3.822172pt;}
.ls1c{letter-spacing:3.827505pt;}
.ls22{letter-spacing:3.963362pt;}
.ls36{letter-spacing:7.679791pt;}
.ls1{letter-spacing:9.298933pt;}
.ls1f{letter-spacing:9.516533pt;}
.ls19{letter-spacing:9.521867pt;}
.ls6{letter-spacing:10.631867pt;}
.ls3c{letter-spacing:11.058133pt;}
.ls23{letter-spacing:11.593548pt;}
.ls37{letter-spacing:11.954133pt;}
.ls38{letter-spacing:11.959467pt;}
.ls39{letter-spacing:12.131170pt;}
.ls3a{letter-spacing:12.172561pt;}
.lsb{letter-spacing:13.070931pt;}
.ls31{letter-spacing:13.230333pt;}
.ls11{letter-spacing:13.442868pt;}
.ls2f{letter-spacing:13.496002pt;}
.ls33{letter-spacing:14.186742pt;}
.ls24{letter-spacing:14.291096pt;}
.ls3b{letter-spacing:14.298395pt;}
.ls32{letter-spacing:14.505546pt;}
.ls29{letter-spacing:16.064696pt;}
.ls2e{letter-spacing:16.524633pt;}
.ls2a{letter-spacing:16.755096pt;}
.ls34{letter-spacing:16.790302pt;}
.lsa{letter-spacing:17.693578pt;}
.ls9{letter-spacing:20.137735pt;}
.ls1b{letter-spacing:30.554933pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls21{letter-spacing:80.297548pt;}
.ls35{letter-spacing:292.699503pt;}
.wsc3{word-spacing:-306.274460pt;}
.ws9c{word-spacing:-14.699086pt;}
.ws9a{word-spacing:-14.679514pt;}
.ws9b{word-spacing:-14.633411pt;}
.ws6e{word-spacing:-14.405821pt;}
.ws6c{word-spacing:-13.405392pt;}
.ws77{word-spacing:-13.283467pt;}
.ws99{word-spacing:-12.898923pt;}
.ws8f{word-spacing:-12.676973pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws71{word-spacing:-11.480515pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws72{word-spacing:-10.540992pt;}
.ws11{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-7.788968pt;}
.ws70{word-spacing:-7.768253pt;}
.ws6d{word-spacing:-7.174271pt;}
.wse3{word-spacing:-3.873485pt;}
.ws67{word-spacing:-2.709827pt;}
.ws54{word-spacing:-2.656693pt;}
.ws82{word-spacing:-2.550426pt;}
.ws79{word-spacing:-2.289666pt;}
.ws4c{word-spacing:-2.231622pt;}
.ws56{word-spacing:-2.178489pt;}
.ws59{word-spacing:-2.072221pt;}
.wsf9{word-spacing:-2.056294pt;}
.ws4f{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.wsc9{word-spacing:-1.601044pt;}
.wsc8{word-spacing:-1.598111pt;}
.ws97{word-spacing:-1.594016pt;}
.wsf6{word-spacing:-1.482445pt;}
.ws3c{word-spacing:-1.434614pt;}
.ws58{word-spacing:-1.381481pt;}
.ws5a{word-spacing:-1.328347pt;}
.ws7f{word-spacing:-1.275213pt;}
.ws92{word-spacing:-1.234607pt;}
.ws30{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws32{word-spacing:-1.168945pt;}
.ws35{word-spacing:-1.115811pt;}
.wsa9{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws5f{word-spacing:-1.009543pt;}
.ws7{word-spacing:-0.929840pt;}
.wsf1{word-spacing:-0.908595pt;}
.wsf7{word-spacing:-0.901658pt;}
.ws68{word-spacing:-0.797008pt;}
.ws2f{word-spacing:-0.743874pt;}
.wsf0{word-spacing:-0.669491pt;}
.ws55{word-spacing:-0.531339pt;}
.wsb9{word-spacing:-0.526029pt;}
.wsfb{word-spacing:-0.478208pt;}
.ws12{word-spacing:-0.425072pt;}
.wsa6{word-spacing:-0.425071pt;}
.ws5d{word-spacing:-0.371937pt;}
.wsf2{word-spacing:-0.334746pt;}
.ws4e{word-spacing:-0.318803pt;}
.wsba{word-spacing:-0.286925pt;}
.ws50{word-spacing:-0.265669pt;}
.ws7e{word-spacing:-0.239104pt;}
.ws34{word-spacing:-0.212535pt;}
.wscc{word-spacing:-0.191283pt;}
.ws3b{word-spacing:-0.159402pt;}
.wsdd{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.wse2{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.ws1f{word-spacing:-0.047821pt;}
.wse9{word-spacing:-0.006460pt;}
.wse8{word-spacing:-0.005845pt;}
.wse0{word-spacing:-0.005623pt;}
.wsd7{word-spacing:-0.005530pt;}
.wsd8{word-spacing:-0.003430pt;}
.wsfe{word-spacing:-0.003209pt;}
.wsdb{word-spacing:-0.002739pt;}
.ws2d{word-spacing:-0.002540pt;}
.ws10{word-spacing:-0.002213pt;}
.wsf{word-spacing:-0.001296pt;}
.wse5{word-spacing:-0.001126pt;}
.wsf3{word-spacing:-0.000196pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.042507pt;}
.ws1d{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.ws18{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.143462pt;}
.ws45{word-spacing:0.159402pt;}
.ws1a{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.wsaa{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.wsff{word-spacing:0.286925pt;}
.ws43{word-spacing:0.318803pt;}
.ws48{word-spacing:0.371937pt;}
.ws85{word-spacing:0.425071pt;}
.wsef{word-spacing:0.430387pt;}
.ws31{word-spacing:0.478205pt;}
.wsec{word-spacing:0.478208pt;}
.ws3d{word-spacing:0.531339pt;}
.ws60{word-spacing:0.637606pt;}
.ws38{word-spacing:0.690740pt;}
.wsd2{word-spacing:0.765133pt;}
.ws41{word-spacing:0.797008pt;}
.ws49{word-spacing:0.850142pt;}
.ws100{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.ws98{word-spacing:0.903276pt;}
.wsd3{word-spacing:0.908595pt;}
.wsa7{word-spacing:0.956410pt;}
.ws26{word-spacing:1.009543pt;}
.wsfd{word-spacing:1.052058pt;}
.ws27{word-spacing:1.062677pt;}
.ws47{word-spacing:1.115811pt;}
.wsa5{word-spacing:1.168945pt;}
.wse4{word-spacing:1.195520pt;}
.ws4d{word-spacing:1.222079pt;}
.ws96{word-spacing:1.275213pt;}
.ws19{word-spacing:1.291162pt;}
.ws53{word-spacing:1.328347pt;}
.ws1b{word-spacing:1.338982pt;}
.ws2c{word-spacing:1.487748pt;}
.ws9f{word-spacing:1.540882pt;}
.wsde{word-spacing:1.578086pt;}
.ws89{word-spacing:1.594016pt;}
.ws8c{word-spacing:1.647150pt;}
.ws1c{word-spacing:1.673728pt;}
.ws93{word-spacing:1.679838pt;}
.ws52{word-spacing:1.700284pt;}
.ws64{word-spacing:1.753418pt;}
.ws66{word-spacing:1.806551pt;}
.wsf4{word-spacing:1.817190pt;}
.ws84{word-spacing:1.965953pt;}
.ws16{word-spacing:2.008474pt;}
.ws62{word-spacing:2.019087pt;}
.ws73{word-spacing:2.070643pt;}
.ws37{word-spacing:2.072221pt;}
.ws69{word-spacing:2.125355pt;}
.wsd1{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws76{word-spacing:2.284756pt;}
.ws83{word-spacing:2.337890pt;}
.wsf5{word-spacing:2.343219pt;}
.ws65{word-spacing:2.391024pt;}
.wsea{word-spacing:2.438861pt;}
.ws3e{word-spacing:2.497292pt;}
.wsed{word-spacing:2.534502pt;}
.ws75{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.ws2b{word-spacing:2.603559pt;}
.ws81{word-spacing:2.656693pt;}
.ws9e{word-spacing:2.725786pt;}
.ws6b{word-spacing:2.762961pt;}
.ws20{word-spacing:2.861926pt;}
.wsd4{word-spacing:2.866509pt;}
.wsee{word-spacing:2.869248pt;}
.wseb{word-spacing:2.917069pt;}
.wsf8{word-spacing:2.964890pt;}
.ws94{word-spacing:2.975497pt;}
.ws9d{word-spacing:3.012710pt;}
.ws61{word-spacing:3.028630pt;}
.ws33{word-spacing:3.081764pt;}
.ws21{word-spacing:3.188032pt;}
.wsdc{word-spacing:3.203994pt;}
.ws36{word-spacing:3.241166pt;}
.wsa1{word-spacing:3.294300pt;}
.ws80{word-spacing:3.400567pt;}
.wsd9{word-spacing:3.443098pt;}
.ws25{word-spacing:3.453701pt;}
.ws6a{word-spacing:3.506835pt;}
.wsfc{word-spacing:3.586560pt;}
.ws17{word-spacing:3.634381pt;}
.ws51{word-spacing:3.666237pt;}
.ws8e{word-spacing:3.772505pt;}
.ws63{word-spacing:3.825638pt;}
.ws3f{word-spacing:3.878772pt;}
.ws5c{word-spacing:3.931906pt;}
.ws5b{word-spacing:3.985040pt;}
.ws46{word-spacing:4.038174pt;}
.ws8d{word-spacing:4.091308pt;}
.wse6{word-spacing:4.160410pt;}
.ws8a{word-spacing:4.197575pt;}
.wsd{word-spacing:4.240070pt;}
.ws23{word-spacing:4.250709pt;}
.wse{word-spacing:4.314458pt;}
.ws8b{word-spacing:4.356977pt;}
.ws42{word-spacing:4.410111pt;}
.wsaf{word-spacing:4.622646pt;}
.wsc4{word-spacing:4.835182pt;}
.wsa8{word-spacing:4.994583pt;}
.ws4b{word-spacing:5.366521pt;}
.ws74{word-spacing:5.525922pt;}
.ws87{word-spacing:5.632190pt;}
.ws15{word-spacing:5.690675pt;}
.ws95{word-spacing:5.738458pt;}
.wscb{word-spacing:5.791591pt;}
.ws39{word-spacing:5.844725pt;}
.ws44{word-spacing:5.950993pt;}
.wsd5{word-spacing:6.503629pt;}
.ws57{word-spacing:6.588599pt;}
.wsca{word-spacing:6.641733pt;}
.ws88{word-spacing:6.748001pt;}
.ws40{word-spacing:6.801135pt;}
.wsa0{word-spacing:6.854269pt;}
.wsb{word-spacing:6.918010pt;}
.ws5e{word-spacing:7.013670pt;}
.ws86{word-spacing:7.119938pt;}
.ws4a{word-spacing:7.226206pt;}
.wse7{word-spacing:8.121446pt;}
.wsdf{word-spacing:8.121591pt;}
.wsda{word-spacing:8.123017pt;}
.wsd6{word-spacing:8.123998pt;}
.wse1{word-spacing:8.124416pt;}
.wsfa{word-spacing:8.126959pt;}
.wsc7{word-spacing:9.298400pt;}
.wsad{word-spacing:10.626800pt;}
.ws9{word-spacing:10.823338pt;}
.wsb1{word-spacing:11.955200pt;}
.wsb5{word-spacing:13.283467pt;}
.wsa{word-spacing:14.319536pt;}
.ws78{word-spacing:15.945370pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.wscd{word-spacing:50.583296pt;}
.wsce{word-spacing:78.478496pt;}
.wsa3{word-spacing:159.614135pt;}
.wsab{word-spacing:165.650558pt;}
.wsa4{word-spacing:170.514084pt;}
.wsac{word-spacing:175.682258pt;}
.wsc1{word-spacing:190.347242pt;}
.ws7a{word-spacing:202.280630pt;}
.wsc2{word-spacing:203.269430pt;}
.ws90{word-spacing:209.967815pt;}
.wsc0{word-spacing:210.835712pt;}
.wsbf{word-spacing:214.533838pt;}
.ws7b{word-spacing:240.065500pt;}
.wsae{word-spacing:241.823461pt;}
.ws91{word-spacing:288.248434pt;}
.wscf{word-spacing:295.354378pt;}
.wsbc{word-spacing:310.248647pt;}
.wsd0{word-spacing:310.529366pt;}
.wsb7{word-spacing:317.209184pt;}
.wsbb{word-spacing:318.378129pt;}
.wsb3{word-spacing:325.338666pt;}
.wsbd{word-spacing:325.710603pt;}
.wsbe{word-spacing:325.763737pt;}
.wsb4{word-spacing:332.671139pt;}
.wsc6{word-spacing:348.637655pt;}
.ws7c{word-spacing:363.510309pt;}
.ws7d{word-spacing:377.276425pt;}
.wsb6{word-spacing:383.626517pt;}
.wsb8{word-spacing:396.856850pt;}
.wsc5{word-spacing:411.374885pt;}
.wsa2{word-spacing:536.917723pt;}
.wsb2{word-spacing:1141.850704pt;}
._66{margin-left:-292.699503pt;}
._67{margin-left:-8.935544pt;}
._a7{margin-left:-6.795710pt;}
._8{margin-left:-5.898089pt;}
._9{margin-left:-4.675792pt;}
._2{margin-left:-3.421811pt;}
._24{margin-left:-2.133804pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._19{width:3.307753pt;}
._1e{width:9.958477pt;}
._3{width:10.859035pt;}
._21{width:12.130666pt;}
._d{width:13.033543pt;}
._23{width:13.923610pt;}
._c{width:14.888399pt;}
._15{width:15.961404pt;}
._11{width:17.009564pt;}
._f{width:17.966203pt;}
._a{width:18.953167pt;}
._10{width:20.084602pt;}
._1c{width:20.974427pt;}
._b{width:21.918057pt;}
._4{width:23.063232pt;}
._12{width:24.866650pt;}
._1b{width:26.088729pt;}
._6{width:27.188522pt;}
._1a{width:28.107815pt;}
._e{width:29.701831pt;}
._68{width:31.508383pt;}
._16{width:33.686642pt;}
._18{width:34.749549pt;}
._8c{width:35.925220pt;}
._17{width:37.632230pt;}
._a8{width:39.261177pt;}
._7{width:48.990729pt;}
._a6{width:54.993920pt;}
._9b{width:63.628198pt;}
._a2{width:64.558080pt;}
._6b{width:74.177807pt;}
._6c{width:75.154497pt;}
._6d{width:82.867341pt;}
._5a{width:84.631835pt;}
._a5{width:87.320781pt;}
._90{width:89.822544pt;}
._8f{width:103.286627pt;}
._85{width:105.378877pt;}
._7d{width:109.386378pt;}
._a4{width:110.540403pt;}
._77{width:111.952736pt;}
._a3{width:114.578637pt;}
._73{width:116.415968pt;}
._70{width:118.684778pt;}
._6e{width:126.272272pt;}
._7f{width:128.317920pt;}
._9c{width:132.320154pt;}
._84{width:133.242909pt;}
._7b{width:135.090533pt;}
._74{width:137.616320pt;}
._83{width:140.877754pt;}
._79{width:144.869072pt;}
._7e{width:146.356816pt;}
._9e{width:150.205133pt;}
._6f{width:152.754115pt;}
._86{width:154.167472pt;}
._71{width:155.655216pt;}
._75{width:158.206609pt;}
._81{width:159.437360pt;}
._87{width:162.052515pt;}
._8b{width:163.465872pt;}
._89{width:164.953616pt;}
._72{width:167.557168pt;}
._7a{width:171.350915pt;}
._a0{width:172.680909pt;}
._61{width:173.811941pt;}
._8e{width:175.138414pt;}
._a1{width:176.267469pt;}
._8d{width:178.894890pt;}
._27{width:180.038784pt;}
._2d{width:181.590758pt;}
._80{width:182.546189pt;}
._2a{width:184.009307pt;}
._28{width:185.224659pt;}
._35{width:186.181536pt;}
._76{width:187.455744pt;}
._2e{width:188.965739pt;}
._2b{width:192.454652pt;}
._78{width:194.262173pt;}
._88{width:196.121853pt;}
._9f{width:197.739008pt;}
._30{width:202.844358pt;}
._31{width:204.587154pt;}
._9d{width:209.263821pt;}
._32{width:211.600842pt;}
._8a{width:219.739789pt;}
._62{width:221.590034pt;}
._60{width:225.160638pt;}
._7c{width:227.290090pt;}
._65{width:247.561933pt;}
._63{width:257.041038pt;}
._82{width:259.722909pt;}
._9a{width:266.278391pt;}
._40{width:267.582824pt;}
._64{width:270.162301pt;}
._91{width:274.005251pt;}
._5f{width:279.102275pt;}
._1f{width:282.368875pt;}
._3e{width:284.330661pt;}
._3f{width:286.115963pt;}
._96{width:289.329014pt;}
._59{width:290.366683pt;}
._1d{width:292.292969pt;}
._3c{width:294.447374pt;}
._5c{width:303.076336pt;}
._34{width:304.989160pt;}
._3a{width:307.284549pt;}
._43{width:318.038870pt;}
._22{width:325.050627pt;}
._5e{width:329.048235pt;}
._92{width:335.011730pt;}
._53{width:338.994069pt;}
._39{width:342.523018pt;}
._4f{width:346.173868pt;}
._37{width:347.623882pt;}
._5d{width:351.577902pt;}
._97{width:357.579270pt;}
._93{width:359.773693pt;}
._3b{width:365.561920pt;}
._42{width:373.383245pt;}
._54{width:375.231366pt;}
._33{width:377.123878pt;}
._58{width:385.220533pt;}
._41{width:386.305434pt;}
._55{width:390.587054pt;}
._95{width:396.297808pt;}
._98{width:401.914042pt;}
._56{width:403.923654pt;}
._99{width:412.477024pt;}
._57{width:414.709829pt;}
._5b{width:417.293182pt;}
._69{width:423.946421pt;}
._38{width:441.734822pt;}
._94{width:446.657942pt;}
._3d{width:451.511478pt;}
._6a{width:486.715450pt;}
._36{width:533.337838pt;}
._2c{width:543.667088pt;}
._2f{width:548.470402pt;}
._29{width:562.368845pt;}
._46{width:620.344620pt;}
._49{width:628.892446pt;}
._51{width:702.535985pt;}
._52{width:706.255356pt;}
._48{width:745.521283pt;}
._4e{width:756.307458pt;}
._4c{width:775.435650pt;}
._4b{width:781.120974pt;}
._50{width:786.912565pt;}
._20{width:804.049846pt;}
._47{width:840.053158pt;}
._13{width:912.686658pt;}
._4a{width:914.221310pt;}
._4d{width:934.040242pt;}
._44{width:959.013159pt;}
._45{width:962.998199pt;}
._25{width:1438.136947pt;}
._26{width:2252.983733pt;}
._14{width:2274.237067pt;}
.fsd{font-size:25.878720pt;}
.fse{font-size:28.639117pt;}
.fs14{font-size:30.364365pt;}
.fsb{font-size:31.744563pt;}
.fs7{font-size:31.880533pt;}
.fs10{font-size:34.372800pt;}
.fsf{font-size:34.464461pt;}
.fs11{font-size:34.504960pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs2b{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs15{font-size:42.077867pt;}
.fs13{font-size:42.163968pt;}
.fs8{font-size:42.507200pt;}
.fs2a{font-size:43.948800pt;}
.fs29{font-size:45.860567pt;}
.fs12{font-size:45.922061pt;}
.fs9{font-size:47.820800pt;}
.fs27{font-size:48.830779pt;}
.fs17{font-size:50.760960pt;}
.fs25{font-size:52.466544pt;}
.fs21{font-size:52.863339pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:53.621568pt;}
.fs28{font-size:53.716177pt;}
.fs16{font-size:55.365867pt;}
.fs19{font-size:56.092800pt;}
.fs1a{font-size:56.167590pt;}
.fs18{font-size:56.989440pt;}
.fs1b{font-size:57.074880pt;}
.fs1c{font-size:57.150980pt;}
.fsc{font-size:57.623283pt;}
.fs22{font-size:58.695936pt;}
.fs26{font-size:59.179776pt;}
.fs1f{font-size:59.361990pt;}
.fs23{font-size:59.482377pt;}
.fs1d{font-size:64.953600pt;}
.fs1e{font-size:65.040205pt;}
.fs20{font-size:65.216891pt;}
.fs24{font-size:65.754485pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y1a7{bottom:0.332763pt;}
.y19b{bottom:2.848709pt;}
.y3{bottom:3.044747pt;}
.y1ee{bottom:5.838328pt;}
.ye0{bottom:7.132261pt;}
.yc4{bottom:9.171713pt;}
.y1a9{bottom:11.230344pt;}
.y2{bottom:12.578910pt;}
.y1e{bottom:14.236308pt;}
.y19c{bottom:16.899718pt;}
.y19a{bottom:19.601749pt;}
.y1ed{bottom:23.539928pt;}
.y1a8{bottom:23.762552pt;}
.y4e{bottom:28.346667pt;}
.yde{bottom:33.690977pt;}
.y1ef{bottom:36.205728pt;}
.y12e{bottom:40.571229pt;}
.yc3{bottom:48.540027pt;}
.y15f{bottom:52.996635pt;}
.y153{bottom:55.940739pt;}
.y12d{bottom:57.417766pt;}
.ydf{bottom:63.454003pt;}
.y19d{bottom:66.269604pt;}
.y15e{bottom:72.504366pt;}
.y152{bottom:73.060032pt;}
.y1aa{bottom:74.909123pt;}
.y1b0{bottom:79.971974pt;}
.y1a2{bottom:80.281221pt;}
.y14e{bottom:81.480000pt;}
.y222{bottom:81.518667pt;}
.y104{bottom:82.777333pt;}
.yc9{bottom:83.094239pt;}
.y83{bottom:86.914667pt;}
.y1f0{bottom:88.547528pt;}
.ydc{bottom:90.131115pt;}
.y15d{bottom:91.988642pt;}
.y2b5{bottom:92.892000pt;}
.y198{bottom:93.006667pt;}
.y1c{bottom:93.018667pt;}
.yea{bottom:94.462667pt;}
.y127{bottom:94.485333pt;}
.ya4{bottom:95.282667pt;}
.yb8{bottom:95.681333pt;}
.y14d{bottom:98.217333pt;}
.y221{bottom:98.256000pt;}
.y4d{bottom:98.934667pt;}
.y103{bottom:99.514667pt;}
.y82{bottom:103.650667pt;}
.y197{bottom:105.625333pt;}
.y2b4{bottom:108.233333pt;}
.y1b{bottom:108.920000pt;}
.y280{bottom:110.121333pt;}
.yc5{bottom:110.621123pt;}
.ye9{bottom:111.200000pt;}
.y126{bottom:111.222667pt;}
.ya3{bottom:112.020000pt;}
.yb7{bottom:112.418667pt;}
.y14c{bottom:114.954667pt;}
.y220{bottom:114.993333pt;}
.y4c{bottom:115.672000pt;}
.y102{bottom:116.250667pt;}
.y1ab{bottom:116.411921pt;}
.y19e{bottom:117.220937pt;}
.y196{bottom:118.245333pt;}
.ydd{bottom:119.873135pt;}
.y81{bottom:120.388000pt;}
.y2b3{bottom:123.576000pt;}
.y1a{bottom:124.820000pt;}
.y27f{bottom:125.464000pt;}
.ye8{bottom:127.937333pt;}
.y125{bottom:127.960000pt;}
.ya2{bottom:128.757333pt;}
.yb6{bottom:129.156000pt;}
.ycd{bottom:129.774411pt;}
.yd7{bottom:130.395031pt;}
.y195{bottom:130.864000pt;}
.y14b{bottom:131.692000pt;}
.y21f{bottom:131.730667pt;}
.y4b{bottom:132.409333pt;}
.y101{bottom:132.988000pt;}
.y166{bottom:133.302667pt;}
.y80{bottom:137.125333pt;}
.yce{bottom:138.071623pt;}
.y2b2{bottom:138.918667pt;}
.y12c{bottom:140.564436pt;}
.y19{bottom:140.720000pt;}
.y27e{bottom:140.806667pt;}
.y1f1{bottom:140.889328pt;}
.yd8{bottom:141.804891pt;}
.yc7{bottom:142.377771pt;}
.y194{bottom:143.484000pt;}
.ye7{bottom:144.674667pt;}
.y124{bottom:144.697333pt;}
.y1f6{bottom:144.704328pt;}
.ya1{bottom:145.494667pt;}
.yb5{bottom:145.893333pt;}
.y14a{bottom:148.429333pt;}
.y21e{bottom:148.468000pt;}
.y4a{bottom:149.146667pt;}
.yc8{bottom:149.319167pt;}
.y100{bottom:149.725333pt;}
.y165{bottom:150.397333pt;}
.yca{bottom:150.837299pt;}
.y24e{bottom:151.396000pt;}
.y7f{bottom:153.862667pt;}
.y2b1{bottom:154.261333pt;}
.y193{bottom:156.102667pt;}
.y27d{bottom:156.149333pt;}
.y18{bottom:156.621333pt;}
.y12b{bottom:157.415648pt;}
.y1ac{bottom:157.914307pt;}
.yd6{bottom:158.762139pt;}
.ye6{bottom:161.410667pt;}
.y123{bottom:161.434667pt;}
.yc6{bottom:161.855691pt;}
.ya0{bottom:162.232000pt;}
.yb4{bottom:162.630667pt;}
.y203{bottom:163.955123pt;}
.y149{bottom:165.166667pt;}
.y21d{bottom:165.205333pt;}
.y49{bottom:165.882667pt;}
.yff{bottom:166.462667pt;}
.y24d{bottom:168.133333pt;}
.y19f{bottom:168.172271pt;}
.y192{bottom:168.722667pt;}
.y2b0{bottom:169.604000pt;}
.y7e{bottom:170.600000pt;}
.yd5{bottom:171.365499pt;}
.y27c{bottom:171.492000pt;}
.yd9{bottom:171.546911pt;}
.y17{bottom:172.521333pt;}
.y159{bottom:172.992090pt;}
.ycf{bottom:174.688203pt;}
.ye5{bottom:178.148000pt;}
.y122{bottom:178.172000pt;}
.y9f{bottom:178.969333pt;}
.y202{bottom:179.099147pt;}
.yb3{bottom:179.368000pt;}
.y191{bottom:181.341333pt;}
.y148{bottom:181.904000pt;}
.y21c{bottom:181.942667pt;}
.y48{bottom:182.620000pt;}
.yfe{bottom:183.200000pt;}
.y24c{bottom:184.870667pt;}
.y2af{bottom:184.946667pt;}
.y151{bottom:186.242690pt;}
.y27b{bottom:186.834667pt;}
.y7d{bottom:187.337333pt;}
.yd4{bottom:187.931279pt;}
.y16{bottom:188.421333pt;}
.y1f2{bottom:193.231128pt;}
.y190{bottom:193.961333pt;}
.y201{bottom:194.244392pt;}
.ye4{bottom:194.885333pt;}
.y121{bottom:194.909333pt;}
.y9e{bottom:195.706667pt;}
.yb2{bottom:196.105333pt;}
.y15c{bottom:197.105218pt;}
.y147{bottom:198.641333pt;}
.ycb{bottom:199.140631pt;}
.y47{bottom:199.357333pt;}
.y1ad{bottom:199.417105pt;}
.yfd{bottom:199.937333pt;}
.y2ae{bottom:200.289333pt;}
.y24b{bottom:201.608000pt;}
.y21b{bottom:202.664000pt;}
.y150{bottom:203.365154pt;}
.y7c{bottom:204.074667pt;}
.y15{bottom:204.322667pt;}
.yd3{bottom:204.640279pt;}
.y27a{bottom:206.162667pt;}
.y18f{bottom:206.580000pt;}
.y200{bottom:209.389637pt;}
.ye3{bottom:211.622667pt;}
.y120{bottom:211.646667pt;}
.y9d{bottom:212.444000pt;}
.yb1{bottom:212.841333pt;}
.y146{bottom:215.378667pt;}
.y2ad{bottom:215.632000pt;}
.y46{bottom:216.094667pt;}
.y15b{bottom:216.591298pt;}
.yfc{bottom:216.674667pt;}
.y24a{bottom:218.345333pt;}
.y1a0{bottom:219.123604pt;}
.y18e{bottom:219.200000pt;}
.y7b{bottom:220.812000pt;}
.yd1{bottom:222.905603pt;}
.y1ff{bottom:224.533661pt;}
.y11f{bottom:228.384000pt;}
.ycc{bottom:228.882651pt;}
.y9c{bottom:229.181333pt;}
.yb0{bottom:229.578667pt;}
.y2ac{bottom:230.974667pt;}
.y18d{bottom:231.818667pt;}
.y145{bottom:232.116000pt;}
.ye2{bottom:232.345333pt;}
.y45{bottom:232.832000pt;}
.yfb{bottom:233.412000pt;}
.y249{bottom:235.082667pt;}
.y15a{bottom:236.077378pt;}
.y7a{bottom:237.549333pt;}
.y279{bottom:237.880000pt;}
.y1fe{bottom:239.678906pt;}
.yd2{bottom:240.130195pt;}
.y12a{bottom:240.581014pt;}
.y1ae{bottom:240.919491pt;}
.y21a{bottom:241.746667pt;}
.y18c{bottom:244.438667pt;}
.y11e{bottom:245.121333pt;}
.y1f3{bottom:245.572928pt;}
.y9b{bottom:245.918667pt;}
.yaf{bottom:246.316000pt;}
.y144{bottom:248.853333pt;}
.y44{bottom:249.569333pt;}
.yfa{bottom:250.149333pt;}
.y248{bottom:251.820000pt;}
.y219{bottom:252.373333pt;}
.y1b2{bottom:252.476911pt;}
.y1a4{bottom:252.522203pt;}
.y278{bottom:253.501333pt;}
.y1fd{bottom:254.824151pt;}
.yda{bottom:255.531119pt;}
.y1eb{bottom:255.546667pt;}
.y18b{bottom:257.057333pt;}
.y129{bottom:257.408854pt;}
.y79{bottom:258.272000pt;}
.ye1{bottom:259.392000pt;}
.y2ab{bottom:261.658667pt;}
.y11d{bottom:261.858667pt;}
.y9a{bottom:262.656000pt;}
.y218{bottom:263.000000pt;}
.yae{bottom:263.053333pt;}
.y143{bottom:265.590667pt;}
.y43{bottom:266.306667pt;}
.y14{bottom:266.804000pt;}
.yf9{bottom:266.886667pt;}
.y247{bottom:268.557333pt;}
.yd0{bottom:269.003347pt;}
.y1c3{bottom:269.078667pt;}
.y277{bottom:269.122667pt;}
.y18a{bottom:269.677333pt;}
.y1fc{bottom:269.969395pt;}
.y1a1{bottom:270.074937pt;}
.y155{bottom:271.569635pt;}
.y1a3{bottom:271.832758pt;}
.y1b1{bottom:271.946647pt;}
.y157{bottom:272.180019pt;}
.y1ea{bottom:274.833333pt;}
.yf6{bottom:275.971477pt;}
.y2aa{bottom:277.001333pt;}
.y11c{bottom:278.596000pt;}
.y99{bottom:279.393333pt;}
.yad{bottom:279.790667pt;}
.y217{bottom:280.294667pt;}
.yc2{bottom:281.985807pt;}
.y142{bottom:282.328000pt;}
.y1af{bottom:282.422289pt;}
.y13{bottom:282.705333pt;}
.y42{bottom:283.044000pt;}
.y276{bottom:284.745333pt;}
.y1fb{bottom:285.113419pt;}
.ydb{bottom:285.273139pt;}
.y246{bottom:285.294667pt;}
.y1c2{bottom:285.816000pt;}
.y1e9{bottom:287.452000pt;}
.yf8{bottom:287.609333pt;}
.y78{bottom:288.160000pt;}
.y154{bottom:288.692099pt;}
.y189{bottom:288.964000pt;}
.y156{bottom:289.318338pt;}
.y216{bottom:290.921333pt;}
.y2a9{bottom:292.344000pt;}
.y11b{bottom:295.333333pt;}
.y98{bottom:296.129333pt;}
.yac{bottom:296.528000pt;}
.y1f4{bottom:297.914728pt;}
.y12{bottom:298.605333pt;}
.y141{bottom:299.065333pt;}
.y41{bottom:299.781333pt;}
.y1e8{bottom:300.072000pt;}
.y1fa{bottom:300.258664pt;}
.y275{bottom:300.366667pt;}
.y215{bottom:301.548000pt;}
.y245{bottom:302.032000pt;}
.y1c1{bottom:302.553333pt;}
.y164{bottom:302.979586pt;}
.y77{bottom:304.897333pt;}
.y161{bottom:304.910151pt;}
.y2a8{bottom:307.686667pt;}
.y188{bottom:308.250667pt;}
.y131{bottom:309.575158pt;}
.y133{bottom:309.645274pt;}
.y130{bottom:311.016432pt;}
.y214{bottom:312.176000pt;}
.y160{bottom:312.641434pt;}
.y1e7{bottom:312.690667pt;}
.y97{bottom:312.866667pt;}
.yab{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.yf7{bottom:314.656000pt;}
.y1f9{bottom:315.403909pt;}
.y140{bottom:315.802667pt;}
.y274{bottom:315.988000pt;}
.y11a{bottom:316.056000pt;}
.y40{bottom:316.518667pt;}
.y244{bottom:318.769333pt;}
.y1c0{bottom:319.290667pt;}
.y76{bottom:321.634667pt;}
.y163{bottom:322.465666pt;}
.y213{bottom:322.802667pt;}
.y2a7{bottom:323.029333pt;}
.y162{bottom:324.396231pt;}
.y1e6{bottom:325.310667pt;}
.y132{bottom:326.473114pt;}
.y12f{bottom:327.844272pt;}
.yf5{bottom:328.544321pt;}
.y96{bottom:329.604000pt;}
.yaa{bottom:330.002667pt;}
.y1f8{bottom:330.547933pt;}
.y273{bottom:331.609333pt;}
.y13f{bottom:332.540000pt;}
.y212{bottom:333.429333pt;}
.yf4{bottom:334.592981pt;}
.y243{bottom:335.506667pt;}
.y1bf{bottom:336.028000pt;}
.y3f{bottom:337.241333pt;}
.y75{bottom:338.372000pt;}
.y10{bottom:338.376000pt;}
.y187{bottom:338.948000pt;}
.y211{bottom:344.056000pt;}
.y1e5{bottom:344.597333pt;}
.y119{bottom:345.944000pt;}
.y95{bottom:346.341333pt;}
.ya9{bottom:346.740000pt;}
.y272{bottom:347.230667pt;}
.y13e{bottom:349.277333pt;}
.y1f5{bottom:350.256528pt;}
.y242{bottom:352.244000pt;}
.y1be{bottom:352.765333pt;}
.y2a6{bottom:353.714667pt;}
.yf{bottom:354.277333pt;}
.y210{bottom:354.682667pt;}
.y74{bottom:355.109333pt;}
.y186{bottom:356.044000pt;}
.y1f7{bottom:361.473239pt;}
.y118{bottom:362.680000pt;}
.y271{bottom:362.852000pt;}
.y94{bottom:363.078667pt;}
.ya8{bottom:363.477333pt;}
.y1e4{bottom:363.885333pt;}
.y13d{bottom:366.014667pt;}
.y241{bottom:368.981333pt;}
.y2a5{bottom:369.056000pt;}
.y1bd{bottom:369.502667pt;}
.ye{bottom:370.177333pt;}
.y20f{bottom:371.977333pt;}
.y73{bottom:375.832000pt;}
.y270{bottom:378.473333pt;}
.y117{bottom:379.417333pt;}
.y93{bottom:379.816000pt;}
.y20e{bottom:379.973333pt;}
.ya7{bottom:380.214667pt;}
.y13c{bottom:382.752000pt;}
.y2a4{bottom:384.398667pt;}
.y240{bottom:385.718667pt;}
.y1bc{bottom:386.240000pt;}
.y185{bottom:389.025333pt;}
.y1e3{bottom:393.253333pt;}
.y26f{bottom:394.094667pt;}
.yd{bottom:395.376000pt;}
.y116{bottom:396.154667pt;}
.ya6{bottom:396.952000pt;}
.y13b{bottom:399.489333pt;}
.y2a3{bottom:399.741333pt;}
.y92{bottom:400.538667pt;}
.y23f{bottom:402.456000pt;}
.y1bb{bottom:402.977333pt;}
.y3e{bottom:404.041333pt;}
.y72{bottom:405.718667pt;}
.y184{bottom:405.762667pt;}
.y26e{bottom:409.716000pt;}
.y1e2{bottom:410.349333pt;}
.yc{bottom:411.276000pt;}
.ya5{bottom:413.689333pt;}
.y2a2{bottom:415.084000pt;}
.y13a{bottom:416.226667pt;}
.y115{bottom:416.877333pt;}
.y20d{bottom:416.980000pt;}
.y23e{bottom:419.193333pt;}
.y1ba{bottom:419.714667pt;}
.y71{bottom:422.456000pt;}
.y183{bottom:422.500000pt;}
.y26d{bottom:425.337333pt;}
.y91{bottom:430.426667pt;}
.y139{bottom:432.964000pt;}
.yb{bottom:435.146667pt;}
.y23d{bottom:435.930667pt;}
.y1b9{bottom:436.452000pt;}
.y3d{bottom:437.276000pt;}
.y70{bottom:439.193333pt;}
.y182{bottom:439.237333pt;}
.y26c{bottom:440.958667pt;}
.y2a1{bottom:445.769333pt;}
.y114{bottom:446.765333pt;}
.y90{bottom:447.164000pt;}
.y138{bottom:449.701333pt;}
.y20c{bottom:449.961333pt;}
.y1e1{bottom:450.373333pt;}
.ya{bottom:451.048000pt;}
.y23c{bottom:452.668000pt;}
.y1b8{bottom:453.189333pt;}
.y3c{bottom:454.572000pt;}
.y6f{bottom:455.930667pt;}
.y181{bottom:455.974667pt;}
.y26b{bottom:456.580000pt;}
.y2a0{bottom:461.112000pt;}
.y113{bottom:463.502667pt;}
.y8f{bottom:463.901333pt;}
.y1e0{bottom:466.313333pt;}
.y137{bottom:466.438667pt;}
.y20b{bottom:466.698667pt;}
.y9{bottom:466.948000pt;}
.y23b{bottom:469.405333pt;}
.y1b7{bottom:469.926667pt;}
.y3b{bottom:471.866667pt;}
.y26a{bottom:472.201333pt;}
.y6e{bottom:472.668000pt;}
.y180{bottom:472.712000pt;}
.y29f{bottom:476.454667pt;}
.y112{bottom:480.240000pt;}
.y8e{bottom:480.638667pt;}
.y1df{bottom:482.253333pt;}
.y8{bottom:482.848000pt;}
.y136{bottom:483.176000pt;}
.y20a{bottom:483.436000pt;}
.y23a{bottom:486.142667pt;}
.y1b6{bottom:486.664000pt;}
.y269{bottom:487.822667pt;}
.y3a{bottom:489.162667pt;}
.y6d{bottom:489.405333pt;}
.y17f{bottom:489.449333pt;}
.y29e{bottom:491.797333pt;}
.y111{bottom:496.977333pt;}
.y8d{bottom:497.376000pt;}
.y1db{bottom:498.193333pt;}
.y7{bottom:498.749333pt;}
.y135{bottom:499.912000pt;}
.y209{bottom:500.173333pt;}
.y239{bottom:502.880000pt;}
.y1b5{bottom:503.401333pt;}
.y268{bottom:503.445333pt;}
.y17e{bottom:506.186667pt;}
.y39{bottom:506.457333pt;}
.y29d{bottom:507.138667pt;}
.y6c{bottom:510.128000pt;}
.y110{bottom:513.714667pt;}
.y8c{bottom:514.113333pt;}
.y1de{bottom:514.133333pt;}
.y6{bottom:514.649333pt;}
.y208{bottom:516.910667pt;}
.y267{bottom:519.066667pt;}
.y29c{bottom:522.481333pt;}
.y17d{bottom:522.922667pt;}
.y238{bottom:523.601333pt;}
.y38{bottom:523.752000pt;}
.y6b{bottom:526.865333pt;}
.y158{bottom:527.590667pt;}
.y134{bottom:527.838667pt;}
.y1dd{bottom:530.073333pt;}
.y10f{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y8b{bottom:530.850667pt;}
.y1b4{bottom:533.237333pt;}
.y207{bottom:533.648000pt;}
.y266{bottom:534.688000pt;}
.y29b{bottom:537.824000pt;}
.y17c{bottom:539.660000pt;}
.y37{bottom:541.048000pt;}
.y6a{bottom:543.602667pt;}
.y1dc{bottom:546.014667pt;}
.y4{bottom:546.450667pt;}
.y10e{bottom:547.189333pt;}
.y8a{bottom:547.588000pt;}
.y128{bottom:547.776226pt;}
.y14f{bottom:550.185111pt;}
.y265{bottom:550.309333pt;}
.y1b3{bottom:550.333333pt;}
.y206{bottom:550.385333pt;}
.y29a{bottom:553.166667pt;}
.y36{bottom:558.342667pt;}
.y69{bottom:560.340000pt;}
.y17b{bottom:560.382667pt;}
.y1{bottom:562.350634pt;}
.y237{bottom:562.684000pt;}
.y10d{bottom:563.926667pt;}
.y89{bottom:564.325333pt;}
.y264{bottom:565.930667pt;}
.y299{bottom:568.509333pt;}
.y1da{bottom:568.622667pt;}
.y205{bottom:571.106667pt;}
.y35{bottom:575.638667pt;}
.y68{bottom:577.077333pt;}
.y236{bottom:579.978667pt;}
.y10c{bottom:580.664000pt;}
.y88{bottom:581.062667pt;}
.y263{bottom:581.552000pt;}
.y1a5{bottom:581.794667pt;}
.y298{bottom:583.852000pt;}
.y1d9{bottom:584.562667pt;}
.y235{bottom:590.605333pt;}
.y34{bottom:592.933333pt;}
.y67{bottom:593.814667pt;}
.y262{bottom:597.173333pt;}
.yc1{bottom:597.401333pt;}
.y199{bottom:597.735424pt;}
.y1a6{bottom:597.735530pt;}
.y87{bottom:597.800000pt;}
.y204{bottom:598.153333pt;}
.y297{bottom:599.194667pt;}
.y234{bottom:601.232000pt;}
.y17a{bottom:606.373333pt;}
.y33{bottom:610.228000pt;}
.y66{bottom:610.552000pt;}
.y233{bottom:611.858667pt;}
.y261{bottom:612.794667pt;}
.y1d8{bottom:613.598667pt;}
.yc0{bottom:614.138667pt;}
.y86{bottom:614.537333pt;}
.y1ec{bottom:618.091425pt;}
.y179{bottom:620.745333pt;}
.y232{bottom:622.485333pt;}
.y65{bottom:627.289333pt;}
.y32{bottom:627.524000pt;}
.y260{bottom:628.416000pt;}
.y296{bottom:629.878667pt;}
.ybf{bottom:630.876000pt;}
.y85{bottom:631.274667pt;}
.y231{bottom:633.113333pt;}
.y178{bottom:643.353333pt;}
.y230{bottom:643.740000pt;}
.y64{bottom:644.026667pt;}
.y25f{bottom:644.037333pt;}
.y31{bottom:644.818667pt;}
.y295{bottom:645.221333pt;}
.ybe{bottom:647.613333pt;}
.y84{bottom:648.012000pt;}
.y1d7{bottom:653.622667pt;}
.y22f{bottom:654.366667pt;}
.y25e{bottom:659.658667pt;}
.y294{bottom:660.564000pt;}
.y30{bottom:662.113333pt;}
.ybd{bottom:664.350667pt;}
.y63{bottom:664.749333pt;}
.y22e{bottom:664.993333pt;}
.y177{bottom:665.694667pt;}
.y25d{bottom:675.280000pt;}
.y22d{bottom:675.620000pt;}
.y293{bottom:675.906667pt;}
.y1d6{bottom:676.230667pt;}
.ybc{bottom:681.088000pt;}
.y62{bottom:681.485333pt;}
.y22c{bottom:686.246667pt;}
.yf3{bottom:687.789333pt;}
.y25c{bottom:690.901333pt;}
.y292{bottom:691.249333pt;}
.y1d5{bottom:692.170667pt;}
.y176{bottom:694.730667pt;}
.y2f{bottom:696.412000pt;}
.y22b{bottom:696.873333pt;}
.ybb{bottom:697.825333pt;}
.y61{bottom:698.222667pt;}
.yf2{bottom:704.526667pt;}
.y25b{bottom:706.522667pt;}
.y291{bottom:706.592000pt;}
.y22a{bottom:707.500000pt;}
.y1d4{bottom:708.110667pt;}
.y2e{bottom:710.758667pt;}
.yba{bottom:714.562667pt;}
.y60{bottom:714.960000pt;}
.y229{bottom:718.126667pt;}
.yf1{bottom:721.264000pt;}
.y290{bottom:721.934667pt;}
.y1d3{bottom:724.050667pt;}
.y2d{bottom:725.104000pt;}
.y175{bottom:727.713333pt;}
.y10b{bottom:731.300000pt;}
.y5f{bottom:731.697333pt;}
.y25a{bottom:734.408000pt;}
.yb9{bottom:735.284000pt;}
.y228{bottom:735.421333pt;}
.y28f{bottom:737.277333pt;}
.yf0{bottom:738.001333pt;}
.y1d2{bottom:739.990667pt;}
.y2c{bottom:743.308000pt;}
.y174{bottom:744.450667pt;}
.y10a{bottom:748.036000pt;}
.y5e{bottom:748.434667pt;}
.y225{bottom:750.882667pt;}
.y227{bottom:752.450667pt;}
.y28e{bottom:752.620000pt;}
.y259{bottom:754.014667pt;}
.yef{bottom:754.738667pt;}
.y1d1{bottom:755.932000pt;}
.y2b{bottom:757.654667pt;}
.y173{bottom:761.186667pt;}
.y109{bottom:764.773333pt;}
.y5d{bottom:765.172000pt;}
.y28d{bottom:767.961333pt;}
.y2a{bottom:768.142667pt;}
.y226{bottom:769.480000pt;}
.yee{bottom:771.476000pt;}
.y1d0{bottom:771.872000pt;}
.y172{bottom:777.924000pt;}
.y108{bottom:781.510667pt;}
.y5c{bottom:781.909333pt;}
.y29{bottom:782.489333pt;}
.y28c{bottom:783.304000pt;}
.y28{bottom:786.346667pt;}
.y258{bottom:786.692000pt;}
.y1cf{bottom:787.812000pt;}
.yed{bottom:788.213333pt;}
.y171{bottom:794.661333pt;}
.y27{bottom:796.836000pt;}
.y107{bottom:798.248000pt;}
.y5b{bottom:798.646667pt;}
.y224{bottom:798.781333pt;}
.y1ce{bottom:803.752000pt;}
.y257{bottom:810.284000pt;}
.y26{bottom:811.182667pt;}
.y170{bottom:811.398667pt;}
.y28b{bottom:813.989333pt;}
.y106{bottom:814.985333pt;}
.y5a{bottom:815.384000pt;}
.y223{bottom:815.877333pt;}
.yec{bottom:818.121333pt;}
.y1cd{bottom:819.692000pt;}
.y25{bottom:825.528000pt;}
.yeb{bottom:826.516000pt;}
.y16f{bottom:828.136000pt;}
.y28a{bottom:829.332000pt;}
.y24{bottom:829.385333pt;}
.y59{bottom:832.121333pt;}
.y256{bottom:833.874667pt;}
.y1cc{bottom:835.632000pt;}
.y105{bottom:835.708000pt;}
.y289{bottom:844.674667pt;}
.y16e{bottom:844.873333pt;}
.y58{bottom:848.858667pt;}
.y1cb{bottom:851.573333pt;}
.y255{bottom:857.466667pt;}
.y288{bottom:860.017333pt;}
.y16d{bottom:861.610667pt;}
.y57{bottom:865.596000pt;}
.y1ca{bottom:867.513333pt;}
.y23{bottom:869.098667pt;}
.y287{bottom:875.360000pt;}
.y16c{bottom:878.348000pt;}
.y254{bottom:881.058667pt;}
.y56{bottom:882.333333pt;}
.y1c9{bottom:883.453333pt;}
.y22{bottom:885.836000pt;}
.y2b6{bottom:890.701333pt;}
.y286{bottom:890.702667pt;}
.y16b{bottom:895.085333pt;}
.y55{bottom:899.070667pt;}
.y1c8{bottom:899.393333pt;}
.y253{bottom:904.649333pt;}
.y285{bottom:906.044000pt;}
.y16a{bottom:911.822667pt;}
.y54{bottom:915.808000pt;}
.y252{bottom:920.270667pt;}
.y21{bottom:921.320000pt;}
.y284{bottom:921.386667pt;}
.y1c7{bottom:922.001333pt;}
.y169{bottom:928.560000pt;}
.y1c6{bottom:929.972000pt;}
.y53{bottom:932.545333pt;}
.y251{bottom:935.893333pt;}
.y283{bottom:936.729333pt;}
.y168{bottom:945.297333pt;}
.y20{bottom:946.425333pt;}
.y52{bottom:949.282667pt;}
.y250{bottom:951.514667pt;}
.y282{bottom:952.072000pt;}
.y167{bottom:962.034667pt;}
.y51{bottom:966.020000pt;}
.y1c5{bottom:966.977333pt;}
.y24f{bottom:967.136000pt;}
.y281{bottom:967.414667pt;}
.y1f{bottom:971.530667pt;}
.y50{bottom:982.757333pt;}
.y1c4{bottom:984.073333pt;}
.y1d{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h15{height:18.259155pt;}
.h16{height:20.206799pt;}
.h1d{height:21.424076pt;}
.h2{height:22.673858pt;}
.h19{height:24.345541pt;}
.h43{height:26.890973pt;}
.hb{height:28.947524pt;}
.h4{height:29.433775pt;}
.h1c{height:29.749479pt;}
.h3{height:30.399505pt;}
.h30{height:30.732706pt;}
.h1a{height:32.401063pt;}
.h13{height:32.504077pt;}
.h41{height:32.566061pt;}
.h5{height:33.771789pt;}
.h3f{height:33.982680pt;}
.hd{height:34.574438pt;}
.h18{height:35.195196pt;}
.h17{height:35.289050pt;}
.h3d{height:36.183607pt;}
.h12{height:37.833577pt;}
.h21{height:38.368147pt;}
.hf{height:38.415786pt;}
.hc{height:38.596538pt;}
.h39{height:38.877709pt;}
.h8{height:38.947124pt;}
.h40{height:39.159093pt;}
.h34{height:39.171734pt;}
.h3e{height:39.803687pt;}
.h14{height:40.657053pt;}
.h28{height:41.524400pt;}
.h22{height:43.076044pt;}
.h1b{height:43.172774pt;}
.he{height:43.421286pt;}
.h35{height:43.493689pt;}
.h3a{height:43.852214pt;}
.h32{height:43.987235pt;}
.h37{height:44.076442pt;}
.h6{height:45.271688pt;}
.h10{height:48.245551pt;}
.h33{height:48.325717pt;}
.ha{height:48.481423pt;}
.h38{height:48.724073pt;}
.h24{height:57.434864pt;}
.h25{height:57.511444pt;}
.h2a{height:58.440441pt;}
.h2b{height:58.518362pt;}
.h42{height:63.024306pt;}
.h2d{height:66.507666pt;}
.h2e{height:66.596343pt;}
.h9{height:69.148877pt;}
.h3b{height:70.293119pt;}
.h1e{height:81.616218pt;}
.h1f{height:81.824218pt;}
.h7{height:83.992000pt;}
.h2f{height:113.526855pt;}
.h26{height:118.981131pt;}
.h27{height:124.746224pt;}
.h31{height:302.361778pt;}
.h29{height:302.368667pt;}
.h36{height:302.372860pt;}
.h11{height:302.373607pt;}
.h20{height:340.150955pt;}
.h23{height:340.158199pt;}
.h2c{height:340.170032pt;}
.h3c{height:377.949155pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.742661pt;}
.wa{width:302.362817pt;}
.w9{width:302.369690pt;}
.w5{width:377.956420pt;}
.wb{width:453.552763pt;}
.w6{width:521.582582pt;}
.w7{width:566.920027pt;}
.w8{width:566.927690pt;}
.w4{width:680.321788pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x85{left:1.124818pt;}
.x69{left:2.472899pt;}
.x84{left:5.198311pt;}
.x83{left:6.223519pt;}
.x8e{left:7.313356pt;}
.x8c{left:8.994700pt;}
.x6a{left:10.868723pt;}
.x68{left:12.251565pt;}
.x9f{left:13.384504pt;}
.x8f{left:14.795337pt;}
.x9e{left:18.960004pt;}
.xb1{left:19.888533pt;}
.x8d{left:23.117990pt;}
.x2{left:26.021437pt;}
.xaf{left:28.747799pt;}
.x48{left:34.647724pt;}
.x1{left:47.621398pt;}
.x3{left:52.049422pt;}
.xb4{left:55.105333pt;}
.x47{left:56.501621pt;}
.xae{left:58.385333pt;}
.x52{left:68.462585pt;}
.x9b{left:69.656000pt;}
.xa1{left:72.954084pt;}
.xb8{left:76.309333pt;}
.x86{left:78.465371pt;}
.x9c{left:89.312000pt;}
.x54{left:91.839695pt;}
.x6b{left:95.319189pt;}
.x53{left:99.603311pt;}
.x55{left:110.781481pt;}
.x82{left:113.202160pt;}
.x90{left:114.884344pt;}
.x56{left:123.620201pt;}
.x9d{left:142.341910pt;}
.xa2{left:158.360313pt;}
.xb6{left:170.969333pt;}
.xb7{left:177.430667pt;}
.xb0{left:178.834199pt;}
.xb5{left:186.588000pt;}
.x87{left:194.194267pt;}
.x6c{left:206.028829pt;}
.xa4{left:208.716243pt;}
.xa0{left:209.724704pt;}
.xa3{left:215.071895pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x93{left:231.450522pt;}
.x66{left:238.117333pt;}
.x5{left:239.633333pt;}
.x99{left:244.832000pt;}
.x79{left:248.205333pt;}
.x8{left:250.204000pt;}
.x11{left:256.009333pt;}
.x94{left:257.763556pt;}
.x7a{left:261.717333pt;}
.x12{left:262.650667pt;}
.x13{left:265.984000pt;}
.x72{left:267.613333pt;}
.x14{left:272.626667pt;}
.x95{left:275.745333pt;}
.x7{left:276.921333pt;}
.x73{left:281.305333pt;}
.x45{left:282.389333pt;}
.x4a{left:286.016358pt;}
.x76{left:293.240000pt;}
.x46{left:295.673333pt;}
.x88{left:296.589764pt;}
.x2e{left:301.449333pt;}
.x34{left:303.624000pt;}
.x67{left:305.390667pt;}
.x77{left:306.744000pt;}
.x19{left:309.398667pt;}
.x4b{left:311.118716pt;}
.x3a{left:312.204000pt;}
.x2f{left:314.733333pt;}
.x2a{left:316.506667pt;}
.x1a{left:322.681333pt;}
.x3b{left:325.486667pt;}
.x2b{left:329.790667pt;}
.x61{left:330.854667pt;}
.x32{left:333.332000pt;}
.x1b{left:335.188000pt;}
.xb2{left:340.514667pt;}
.x40{left:342.993333pt;}
.x98{left:345.496000pt;}
.x33{left:346.616000pt;}
.x92{left:350.055330pt;}
.xb3{left:353.798667pt;}
.x41{left:356.277333pt;}
.x63{left:364.978658pt;}
.x57{left:369.604623pt;}
.x58{left:373.313907pt;}
.x8b{left:383.664097pt;}
.x36{left:388.028000pt;}
.x22{left:394.065333pt;}
.x20{left:399.094667pt;}
.x37{left:401.312000pt;}
.x23{left:407.348000pt;}
.x62{left:410.804000pt;}
.x21{left:412.377333pt;}
.xaa{left:415.030667pt;}
.xac{left:417.534667pt;}
.x97{left:418.516000pt;}
.x35{left:420.054667pt;}
.x5b{left:421.118667pt;}
.xab{left:422.204000pt;}
.x64{left:425.009333pt;}
.x43{left:428.090667pt;}
.x5c{left:429.653333pt;}
.xad{left:431.185333pt;}
.xf{left:436.629333pt;}
.x65{left:438.293333pt;}
.x6d{left:439.868990pt;}
.x44{left:441.374667pt;}
.x10{left:443.270667pt;}
.x59{left:448.376572pt;}
.x49{left:452.344642pt;}
.x9a{left:462.692000pt;}
.x96{left:464.178667pt;}
.x91{left:469.045446pt;}
.x17{left:475.162667pt;}
.x4c{left:484.542083pt;}
.x89{left:485.871639pt;}
.x18{left:488.446667pt;}
.x6e{left:495.277333pt;}
.x8a{left:501.659842pt;}
.x74{left:506.166667pt;}
.x3c{left:507.428000pt;}
.x6f{left:508.560000pt;}
.x30{left:514.953333pt;}
.x4d{left:516.732335pt;}
.x75{left:519.450667pt;}
.x3d{left:520.712000pt;}
.x4e{left:525.638928pt;}
.x31{left:528.237333pt;}
.xa5{left:543.852000pt;}
.x7e{left:544.989333pt;}
.xa8{left:555.652000pt;}
.x5a{left:558.361132pt;}
.x4f{left:559.777273pt;}
.xd{left:566.040000pt;}
.x5d{left:569.717333pt;}
.xa9{left:571.321333pt;}
.xe{left:572.681333pt;}
.x5e{left:581.561333pt;}
.x80{left:583.170667pt;}
.x15{left:587.288000pt;}
.x24{left:589.150667pt;}
.x1e{left:590.165333pt;}
.x81{left:597.404000pt;}
.x16{left:600.570667pt;}
.x25{left:602.433333pt;}
.x1f{left:603.448000pt;}
.x1c{left:605.558667pt;}
.x50{left:608.673677pt;}
.x1d{left:618.842667pt;}
.x7b{left:621.989333pt;}
.x7f{left:627.844000pt;}
.x51{left:641.834381pt;}
.x2c{left:653.850667pt;}
.xba{left:655.878667pt;}
.x9{left:657.981333pt;}
.x38{left:661.292000pt;}
.xa{left:664.624000pt;}
.x42{left:665.574667pt;}
.x2d{left:667.134667pt;}
.xb{left:671.318667pt;}
.x39{left:674.576000pt;}
.x70{left:676.184000pt;}
.xc{left:677.960000pt;}
.xbb{left:679.789333pt;}
.x71{left:689.350667pt;}
.xa6{left:693.050667pt;}
.xbd{left:694.773333pt;}
.xa7{left:699.029333pt;}
.x3e{left:701.184000pt;}
.xbc{left:702.708000pt;}
.x78{left:708.750667pt;}
.x7c{left:711.488000pt;}
.x3f{left:714.468000pt;}
.xb9{left:720.337333pt;}
.x5f{left:722.080000pt;}
.x7d{left:724.580000pt;}
.x26{left:726.912000pt;}
.x28{left:727.905333pt;}
.x27{left:740.196000pt;}
.x29{left:741.189333pt;}
.x60{left:744.093333pt;}
}




    .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; }
  