
    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_0246ec9580b75dd51a09e1f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_b623f4eb1d5a7fcc2e90fe20.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.738000;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_16ea722f0755a07a52614ef4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_05b1ed9aa5b6692f674eeb53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_f53ebc18efdac40e4c192664.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_c96f8e9efc66e3c2be763868.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_c75306c7ae85856741a52b96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_049aedcbddf02ca7565cb258.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.431000;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_999862b24c9f6db6f0a6c09f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_83e03961a300be1ccc5ed44d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_1f10bb902e00c952ab55248a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.453000;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_b78cbe55e1183684603dfea7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_fb352e34f907294272f7115e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_f00eef40870947a2b4dbc065.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_749843d7ab075ce376e2d5ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_7e5231aac964f2e8d675f117.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_71fdd6c89bbf562101071ce1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_90d056bca41b3815caf60fbc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.872000;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_e37409b42c905e7f4703731f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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_fb352e34f907294272f7115e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d7f749cf01f639f35290a923.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2f04bed7b968d9240e88c776.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cbb36aafb376d5c6823ead0f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.922000;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;}
.m6{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);}
.m27{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);}
.m1{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);}
.mb{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);}
.m1c{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);}
.m28{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);}
.m20{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);}
.m1e{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);}
.m2{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.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);}
.m1a{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);}
.mc{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);}
.m21{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);}
.m17{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);}
.ma{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);}
.m19{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);}
.m10{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);}
.m1d{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);}
.m11{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);}
.m24{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);}
.m4{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);}
.m8{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);}
.mf{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);}
.m7{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);}
.m23{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);}
.m16{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);}
.m18{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);}
.m1f{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);}
.m15{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);}
.m25{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);}
.m5{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);}
.me{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);}
.m26{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);}
.m9{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);}
.m1b{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);}
.m13{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);}
.m12{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);}
.m22{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);}
.md{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);}
.v1{vertical-align:-22.854000px;}
.v3{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.ls12{letter-spacing:-0.142764px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001996px;}
.ls8{letter-spacing:0.017937px;}
.ls13{letter-spacing:0.074074px;}
.ls7{letter-spacing:0.107621px;}
.ls11{letter-spacing:0.142764px;}
.ls9{letter-spacing:1.090294px;}
.ls3{letter-spacing:2.985935px;}
.ls1{letter-spacing:2.988000px;}
.ls0{letter-spacing:2.988707px;}
.ls6{letter-spacing:3.557845px;}
.ls14{letter-spacing:3.584074px;}
.ls15{letter-spacing:3.584563px;}
.ls2{letter-spacing:3.584940px;}
.ls16{letter-spacing:3.590074px;}
.ls10{letter-spacing:12.338731px;}
.lse{letter-spacing:14.700551px;}
.lsc{letter-spacing:14.716531px;}
.lsf{letter-spacing:15.665141px;}
.lsd{letter-spacing:17.394553px;}
.ls5{letter-spacing:2139.916200px;}
.lsb{letter-spacing:2142.010200px;}
.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;}
}
.ws7c{word-spacing:-53.810460px;}
.wse{word-spacing:-14.944500px;}
.ws35{word-spacing:-14.943900px;}
.ws2c{word-spacing:-10.460700px;}
.ws64{word-spacing:-3.615230px;}
.ws58{word-spacing:-2.988780px;}
.wsa5{word-spacing:-2.929004px;}
.ws18{word-spacing:-2.869643px;}
.ws92{word-spacing:-2.869229px;}
.wsa0{word-spacing:-2.630126px;}
.ws9f{word-spacing:-2.570351px;}
.ws5a{word-spacing:-2.450800px;}
.ws6a{word-spacing:-2.391024px;}
.ws3b{word-spacing:-2.331248px;}
.ws17{word-spacing:-2.152008px;}
.wsb2{word-spacing:-2.032370px;}
.ws59{word-spacing:-1.972595px;}
.wsf7{word-spacing:-1.865003px;}
.ws53{word-spacing:-1.853044px;}
.wsb8{word-spacing:-1.721542px;}
.ws96{word-spacing:-1.673717px;}
.ws3d{word-spacing:-1.613941px;}
.ws7b{word-spacing:-1.554166px;}
.wsf6{word-spacing:-1.482439px;}
.wsb9{word-spacing:-1.434618px;}
.ws45{word-spacing:-1.434614px;}
.ws8a{word-spacing:-1.374839px;}
.ws7d{word-spacing:-1.255288px;}
.wsd4{word-spacing:-1.243336px;}
.ws3e{word-spacing:-1.135736px;}
.ws80{word-spacing:-1.075961px;}
.ws62{word-spacing:-1.016185px;}
.wsd3{word-spacing:-0.956412px;}
.ws33{word-spacing:-0.956410px;}
.ws52{word-spacing:-0.896634px;}
.wse4{word-spacing:-0.812950px;}
.ws75{word-spacing:-0.777083px;}
.wse3{word-spacing:-0.765130px;}
.ws71{word-spacing:-0.717307px;}
.wsad{word-spacing:-0.657532px;}
.ws79{word-spacing:-0.597756px;}
.wscb{word-spacing:-0.573847px;}
.ws2a{word-spacing:-0.537980px;}
.wsd9{word-spacing:-0.526027px;}
.ws7f{word-spacing:-0.478205px;}
.wsba{word-spacing:-0.430385px;}
.ws49{word-spacing:-0.358654px;}
.ws1c{word-spacing:-0.299129px;}
.ws32{word-spacing:-0.298878px;}
.wsdd{word-spacing:-0.286924px;}
.ws2f{word-spacing:-0.239102px;}
.ws12{word-spacing:-0.215399px;}
.wsc5{word-spacing:-0.191282px;}
.ws40{word-spacing:-0.179327px;}
.wsc1{word-spacing:-0.143462px;}
.ws23{word-spacing:-0.119735px;}
.ws31{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107377px;}
.wsb6{word-spacing:-0.095641px;}
.ws3c{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.059718px;}
.wsf{word-spacing:-0.057384px;}
.wsa2{word-spacing:-0.053537px;}
.ws26{word-spacing:-0.047820px;}
.wsdb{word-spacing:-0.002169px;}
.wsbc{word-spacing:-0.002060px;}
.wsd6{word-spacing:-0.001829px;}
.wse5{word-spacing:-0.001569px;}
.ws1f{word-spacing:-0.000299px;}
.ws28{word-spacing:-0.000143px;}
.ws8{word-spacing:0.000000px;}
.wsc7{word-spacing:0.000008px;}
.wsc4{word-spacing:0.000154px;}
.ws21{word-spacing:0.000299px;}
.wsca{word-spacing:0.047821px;}
.ws1b{word-spacing:0.059718px;}
.ws47{word-spacing:0.059776px;}
.wsa1{word-spacing:0.089228px;}
.wsd8{word-spacing:0.095641px;}
.ws2d{word-spacing:0.119551px;}
.ws1e{word-spacing:0.119676px;}
.wse0{word-spacing:0.143462px;}
.ws10{word-spacing:0.161388px;}
.ws16{word-spacing:0.179095px;}
.ws4f{word-spacing:0.179327px;}
.wsdc{word-spacing:0.191282px;}
.ws43{word-spacing:0.239102px;}
.ws20{word-spacing:0.239112px;}
.ws11{word-spacing:0.268765px;}
.wsda{word-spacing:0.286924px;}
.ws41{word-spacing:0.298878px;}
.ws61{word-spacing:0.358654px;}
.wsc0{word-spacing:0.382565px;}
.ws6c{word-spacing:0.418429px;}
.wse6{word-spacing:0.430385px;}
.ws73{word-spacing:0.478205px;}
.wsa4{word-spacing:0.537980px;}
.wscc{word-spacing:0.573847px;}
.wsa8{word-spacing:0.597756px;}
.ws4b{word-spacing:0.657532px;}
.wsf8{word-spacing:0.669488px;}
.ws4c{word-spacing:0.717307px;}
.ws24{word-spacing:0.717336px;}
.wsc6{word-spacing:0.765130px;}
.wsa7{word-spacing:0.777083px;}
.wsea{word-spacing:0.812950px;}
.ws76{word-spacing:0.896634px;}
.wsb7{word-spacing:0.956412px;}
.ws66{word-spacing:1.075961px;}
.wsee{word-spacing:1.243336px;}
.ws85{word-spacing:1.255288px;}
.ws72{word-spacing:1.315063px;}
.ws81{word-spacing:1.374839px;}
.ws25{word-spacing:1.374954px;}
.wsbd{word-spacing:1.386797px;}
.ws57{word-spacing:1.434614px;}
.wsaf{word-spacing:1.494390px;}
.wsce{word-spacing:1.530259px;}
.wsc2{word-spacing:1.578080px;}
.ws95{word-spacing:1.613941px;}
.ws2e{word-spacing:1.673717px;}
.wsef{word-spacing:1.673721px;}
.wscd{word-spacing:1.769362px;}
.ws2b{word-spacing:1.793268px;}
.ws34{word-spacing:1.853044px;}
.wsd5{word-spacing:1.865003px;}
.ws4e{word-spacing:1.912819px;}
.wscf{word-spacing:1.960645px;}
.ws74{word-spacing:1.972595px;}
.ws82{word-spacing:2.092146px;}
.wsc3{word-spacing:2.104106px;}
.ws78{word-spacing:2.151922px;}
.wsdf{word-spacing:2.151927px;}
.ws22{word-spacing:2.152008px;}
.ws13{word-spacing:2.152109px;}
.wse7{word-spacing:2.199748px;}
.ws27{word-spacing:2.247444px;}
.ws4a{word-spacing:2.271473px;}
.ws83{word-spacing:2.331248px;}
.ws65{word-spacing:2.391024px;}
.wse2{word-spacing:2.391030px;}
.ws38{word-spacing:2.450800px;}
.ws44{word-spacing:2.510575px;}
.ws5b{word-spacing:2.630126px;}
.ws1d{word-spacing:2.630232px;}
.ws67{word-spacing:2.809453px;}
.wsf0{word-spacing:2.821415px;}
.wsf3{word-spacing:2.873477px;}
.ws6f{word-spacing:2.929004px;}
.ws6d{word-spacing:2.988780px;}
.ws5c{word-spacing:3.048556px;}
.ws5d{word-spacing:3.108331px;}
.ws8e{word-spacing:3.168107px;}
.wsab{word-spacing:3.227882px;}
.wsd7{word-spacing:3.251801px;}
.ws77{word-spacing:3.287658px;}
.wsa6{word-spacing:3.347434px;}
.wsbb{word-spacing:3.347442px;}
.ws51{word-spacing:3.407209px;}
.ws46{word-spacing:3.466985px;}
.wse9{word-spacing:3.490904px;}
.ws54{word-spacing:3.586536px;}
.ws8b{word-spacing:3.646312px;}
.wsc9{word-spacing:3.682186px;}
.ws87{word-spacing:3.706087px;}
.ws56{word-spacing:3.765863px;}
.wsbf{word-spacing:3.825648px;}
.ws7a{word-spacing:3.885414px;}
.wsaa{word-spacing:3.945190px;}
.wsc8{word-spacing:3.969110px;}
.ws39{word-spacing:4.004965px;}
.ws86{word-spacing:4.064741px;}
.ws84{word-spacing:4.124516px;}
.ws42{word-spacing:4.303843px;}
.ws5e{word-spacing:4.363619px;}
.ws36{word-spacing:4.483170px;}
.ws9c{word-spacing:4.602721px;}
.wsf4{word-spacing:4.686419px;}
.ws8d{word-spacing:4.841824px;}
.wsf2{word-spacing:4.877701px;}
.ws1a{word-spacing:4.901916px;}
.wsde{word-spacing:4.973342px;}
.ws50{word-spacing:5.080926px;}
.ws8c{word-spacing:5.140702px;}
.wsac{word-spacing:5.320028px;}
.wsae{word-spacing:5.618906px;}
.ws48{word-spacing:5.738458px;}
.ws7e{word-spacing:5.917784px;}
.ws37{word-spacing:6.037336px;}
.ws70{word-spacing:6.097111px;}
.ws6b{word-spacing:6.156887px;}
.ws9b{word-spacing:6.395989px;}
.ws3f{word-spacing:6.455765px;}
.wsa3{word-spacing:6.515540px;}
.ws9a{word-spacing:6.575316px;}
.wsbe{word-spacing:6.599243px;}
.wsec{word-spacing:6.647063px;}
.wsb0{word-spacing:6.754643px;}
.wsb1{word-spacing:6.814418px;}
.ws90{word-spacing:6.874194px;}
.ws30{word-spacing:6.933970px;}
.wse8{word-spacing:6.981808px;}
.ws60{word-spacing:7.053521px;}
.wsa9{word-spacing:7.352399px;}
.wsd2{word-spacing:7.364372px;}
.ws88{word-spacing:7.531726px;}
.wsf1{word-spacing:7.555655px;}
.wsed{word-spacing:7.651296px;}
.ws55{word-spacing:7.830604px;}
.ws93{word-spacing:7.890379px;}
.wseb{word-spacing:7.986040px;}
.wsb3{word-spacing:8.129482px;}
.ws3a{word-spacing:8.368584px;}
.wsd1{word-spacing:8.368605px;}
.ws69{word-spacing:8.428360px;}
.wse1{word-spacing:8.512067px;}
.wsf5{word-spacing:9.420658px;}
.ws98{word-spacing:9.623872px;}
.wsd0{word-spacing:10.137967px;}
.ws6e{word-spacing:10.699832px;}
.ws0{word-spacing:11.907180px;}
.ws29{word-spacing:11.907329px;}
.ws97{word-spacing:13.202604px;}
.wsb5{word-spacing:14.313310px;}
.ws89{word-spacing:14.585246px;}
.ws9d{word-spacing:14.730410px;}
.wsb{word-spacing:14.875506px;}
.wsd{word-spacing:14.876790px;}
.ws5f{word-spacing:14.884124px;}
.ws8f{word-spacing:14.884441px;}
.wsa{word-spacing:14.884722px;}
.ws91{word-spacing:15.629735px;}
.ws68{word-spacing:16.019861px;}
.ws5{word-spacing:18.344382px;}
.ws6{word-spacing:18.398286px;}
.ws9{word-spacing:18.457494px;}
.ws7{word-spacing:18.458412px;}
.ws4{word-spacing:20.204844px;}
.wsb4{word-spacing:21.404456px;}
.ws99{word-spacing:21.453265px;}
.ws9e{word-spacing:21.937645px;}
.ws94{word-spacing:22.794441px;}
.ws4d{word-spacing:29.828024px;}
.ws2{word-spacing:30.870398px;}
.ws3{word-spacing:30.870522px;}
.ws1{word-spacing:31.503816px;}
.ws15{word-spacing:39.379770px;}
.ws63{word-spacing:39.380429px;}
.wsc{word-spacing:249.074142px;}
._1d{margin-left:-24.611042px;}
._2{margin-left:-6.168541px;}
._6{margin-left:-5.081010px;}
._f{margin-left:-3.874011px;}
._4{margin-left:-2.231232px;}
._8{margin-left:-1.195560px;}
._24{width:1.004781px;}
._7{width:2.429116px;}
._c{width:3.557808px;}
._14{width:5.439564px;}
._25{width:10.903096px;}
._d{width:12.427037px;}
._16{width:13.748388px;}
._3{width:14.824009px;}
._e{width:16.461415px;}
._b{width:18.508734px;}
._12{width:20.180183px;}
._11{width:21.838177px;}
._23{width:22.894055px;}
._15{width:23.910240px;}
._18{width:25.763284px;}
._1a{width:27.377225px;}
._10{width:29.370325px;}
._1e{width:31.370787px;}
._21{width:33.772043px;}
._17{width:36.104462px;}
._1c{width:37.299974px;}
._5{width:39.424632px;}
._1f{width:41.544042px;}
._22{width:43.397086px;}
._1b{width:45.150113px;}
._19{width:47.820600px;}
._20{width:62.166672px;}
._a{width:148.246794px;}
._9{width:213.629562px;}
._0{width:827.764248px;}
._1{width:851.004720px;}
._13{width:2376.347040px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.868000px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:41.844000px;}
.fs0{font-size:47.820000px;}
.fs9{font-size:47.820600px;}
.fs10{font-size:53.536680px;}
.fs6{font-size:53.796000px;}
.fse{font-size:53.810460px;}
.fs8{font-size:57.384000px;}
.fsd{font-size:57.384600px;}
.fs11{font-size:59.604170px;}
.fsa{font-size:59.775600px;}
.fs3{font-size:59.778000px;}
.fsf{font-size:59.908979px;}
.fs7{font-size:71.730000px;}
.fsc{font-size:71.731200px;}
.fs1{font-size:86.076000px;}
.fs2{font-size:123.978000px;}
.y169{bottom:-886.281892px;}
.yf5{bottom:-487.368810px;}
.y117{bottom:-10.757608px;}
.y173{bottom:-10.719233px;}
.y0{bottom:0.000000px;}
.y16d{bottom:6.067490px;}
.yf9{bottom:6.098519px;}
.y16f{bottom:6.335174px;}
.yfb{bottom:6.367571px;}
.y10a{bottom:12.735142px;}
.y16b{bottom:15.257954px;}
.yf7{bottom:15.335981px;}
.y16c{bottom:24.537645px;}
.yf8{bottom:24.663127px;}
.y110{bottom:24.932180px;}
.y102{bottom:25.829021px;}
.y116{bottom:25.918705px;}
.y109{bottom:32.286276px;}
.y10f{bottom:43.496788px;}
.y101{bottom:45.380155px;}
.y108{bottom:51.747726px;}
.y10e{bottom:62.061397px;}
.y100{bottom:64.931288px;}
.y34{bottom:65.481000px;}
.y107{bottom:71.298859px;}
.y10d{bottom:80.626006px;}
.yff{bottom:84.482422px;}
.y106{bottom:90.849993px;}
.y33{bottom:90.991500px;}
.y74{bottom:92.553000px;}
.yaa{bottom:96.415500px;}
.y10c{bottom:99.190615px;}
.yfe{bottom:103.973767px;}
.y115{bottom:104.033556px;}
.y32{bottom:105.189000px;}
.y1e1{bottom:106.608000px;}
.y31{bottom:109.408500px;}
.y105{bottom:110.401127px;}
.ycb{bottom:110.718000px;}
.y72{bottom:112.279500px;}
.y73{bottom:117.702000px;}
.y10b{bottom:117.755223px;}
.ya9{bottom:119.083500px;}
.y114{bottom:123.495006px;}
.yfd{bottom:123.524900px;}
.y1fd{bottom:124.315500px;}
.y1e0{bottom:126.280500px;}
.y25{bottom:128.575500px;}
.yca{bottom:130.444500px;}
.y1b9{bottom:131.502000px;}
.y30{bottom:131.719500px;}
.y71{bottom:132.006000px;}
.ya8{bottom:138.808500px;}
.y1fc{bottom:139.932000px;}
.y1df{bottom:141.897000px;}
.y144{bottom:142.773000px;}
.y113{bottom:143.046139px;}
.y168{bottom:143.317692px;}
.y24{bottom:148.302000px;}
.yc9{bottom:150.171000px;}
.y70{bottom:151.731000px;}
.y1fb{bottom:155.548500px;}
.y1de{bottom:157.513500px;}
.ya6{bottom:158.535000px;}
.y2f{bottom:159.810000px;}
.y143{bottom:162.499500px;}
.y112{bottom:162.597273px;}
.ya7{bottom:163.957500px;}
.y23{bottom:168.028500px;}
.yc8{bottom:169.896000px;}
.y6f{bottom:171.457500px;}
.y1b8{bottom:172.177500px;}
.y1dd{bottom:173.130000px;}
.y1fa{bottom:173.254500px;}
.ya5{bottom:178.261500px;}
.y2e{bottom:179.536500px;}
.y142{bottom:182.226000px;}
.y18f{bottom:183.684000px;}
.y22{bottom:187.755000px;}
.y1dc{bottom:188.746500px;}
.y1f9{bottom:188.872500px;}
.yc7{bottom:189.622500px;}
.y6e{bottom:191.184000px;}
.yf1{bottom:191.676000px;}
.y1b7{bottom:191.904000px;}
.ya3{bottom:197.988000px;}
.y2c{bottom:199.261500px;}
.y141{bottom:201.952500px;}
.ya4{bottom:203.410500px;}
.y1f8{bottom:204.489000px;}
.y2d{bottom:204.685500px;}
.y21{bottom:207.481500px;}
.y1db{bottom:208.417500px;}
.yc6{bottom:209.349000px;}
.y6c{bottom:210.910500px;}
.y1b6{bottom:211.630500px;}
.y6d{bottom:216.333000px;}
.ya2{bottom:217.713000px;}
.y2b{bottom:218.988000px;}
.y1f7{bottom:220.105500px;}
.y140{bottom:221.677500px;}
.y1da{bottom:224.034000px;}
.y20{bottom:227.206500px;}
.yc5{bottom:229.075500px;}
.y6a{bottom:230.635500px;}
.yf0{bottom:231.052500px;}
.y1b5{bottom:231.355500px;}
.y6b{bottom:236.059500px;}
.y18e{bottom:237.439500px;}
.y1f6{bottom:237.811500px;}
.y2a{bottom:238.714500px;}
.y1d9{bottom:239.650500px;}
.y13f{bottom:241.404000px;}
.ya1{bottom:245.803500px;}
.y1e{bottom:246.933000px;}
.yc4{bottom:248.802000px;}
.y69{bottom:250.362000px;}
.yef{bottom:250.779000px;}
.y1b4{bottom:251.082000px;}
.y119{bottom:251.793000px;}
.y118{bottom:251.794500px;}
.y1f{bottom:252.355500px;}
.y1f5{bottom:253.428000px;}
.y1d8{bottom:255.267000px;}
.y18c{bottom:257.166000px;}
.y13e{bottom:261.130500px;}
.y18d{bottom:262.588500px;}
.ya0{bottom:265.530000px;}
.y1c{bottom:266.659500px;}
.y29{bottom:266.805000px;}
.yc3{bottom:268.527000px;}
.y1f4{bottom:269.044500px;}
.yee{bottom:270.505500px;}
.y1b3{bottom:270.808500px;}
.y1d{bottom:272.082000px;}
.y68{bottom:273.969000px;}
.y1d7{bottom:274.938000px;}
.y18b{bottom:276.892500px;}
.y13d{bottom:280.857000px;}
.y1f3{bottom:284.661000px;}
.y9f{bottom:285.256500px;}
.y1b{bottom:286.386000px;}
.y28{bottom:286.531500px;}
.yc2{bottom:288.918000px;}
.yf3{bottom:289.452000px;}
.y1b2{bottom:290.535000px;}
.y1d6{bottom:290.554500px;}
.y67{bottom:293.695500px;}
.y111{bottom:293.970584px;}
.y18a{bottom:296.617500px;}
.yed{bottom:298.596000px;}
.y13c{bottom:300.583500px;}
.y1f2{bottom:302.368500px;}
.y165{bottom:302.904000px;}
.y9e{bottom:304.983000px;}
.y1d5{bottom:306.171000px;}
.y27{bottom:306.256500px;}
.y65{bottom:313.422000px;}
.y189{bottom:316.344000px;}
.y1f1{bottom:317.985000px;}
.yec{bottom:318.322500px;}
.y1b1{bottom:318.625500px;}
.y66{bottom:318.844500px;}
.y13b{bottom:320.308500px;}
.y1d4{bottom:321.787500px;}
.y164{bottom:322.630500px;}
.y9c{bottom:324.708000px;}
.y1a{bottom:324.817500px;}
.yc1{bottom:325.746000px;}
.y26{bottom:325.983000px;}
.y9d{bottom:330.132000px;}
.y64{bottom:333.148500px;}
.y1f0{bottom:333.601500px;}
.y188{bottom:336.070500px;}
.yeb{bottom:338.049000px;}
.y1b0{bottom:338.352000px;}
.y13a{bottom:340.035000px;}
.y1d3{bottom:341.458500px;}
.y9a{bottom:344.434500px;}
.yc0{bottom:345.472500px;}
.y1ef{bottom:349.218000px;}
.y9b{bottom:349.858500px;}
.y63{bottom:352.873500px;}
.y1d2{bottom:357.076500px;}
.yea{bottom:357.774000px;}
.y1af{bottom:358.077000px;}
.y139{bottom:359.761500px;}
.y163{bottom:362.547000px;}
.y99{bottom:364.161000px;}
.ybf{bottom:365.197500px;}
.y1ee{bottom:366.924000px;}
.y62{bottom:372.600000px;}
.y1d1{bottom:372.693000px;}
.ye9{bottom:377.500500px;}
.y1ae{bottom:377.803500px;}
.y138{bottom:379.488000px;}
.y162{bottom:382.272000px;}
.y1ed{bottom:382.540500px;}
.y98{bottom:383.887500px;}
.ybe{bottom:384.924000px;}
.y1d0{bottom:388.309500px;}
.y60{bottom:392.326500px;}
.y1ad{bottom:397.530000px;}
.y61{bottom:397.749000px;}
.y1ec{bottom:398.157000px;}
.y137{bottom:399.213000px;}
.y19{bottom:399.877500px;}
.y161{bottom:401.998500px;}
.y97{bottom:403.612500px;}
.y227{bottom:404.422500px;}
.ybd{bottom:404.650500px;}
.ye8{bottom:405.591000px;}
.y1cf{bottom:407.980500px;}
.y5e{bottom:412.053000px;}
.y1eb{bottom:413.773500px;}
.y1ac{bottom:417.256500px;}
.y5f{bottom:417.475500px;}
.y136{bottom:418.939500px;}
.y226{bottom:420.039000px;}
.y160{bottom:421.725000px;}
.y95{bottom:423.339000px;}
.y1ce{bottom:423.597000px;}
.ybc{bottom:424.377000px;}
.ye7{bottom:425.317500px;}
.y18{bottom:426.928500px;}
.y96{bottom:428.763000px;}
.y1ea{bottom:431.481000px;}
.y5d{bottom:431.778000px;}
.y225{bottom:435.655500px;}
.y1ab{bottom:436.981500px;}
.y1cd{bottom:439.213500px;}
.y15f{bottom:441.451500px;}
.y94{bottom:443.065500px;}
.ybb{bottom:444.102000px;}
.y17{bottom:445.011000px;}
.ye6{bottom:445.044000px;}
.y135{bottom:447.030000px;}
.y1e9{bottom:447.097500px;}
.y187{bottom:448.488000px;}
.y224{bottom:451.272000px;}
.y5b{bottom:451.504500px;}
.y1aa{bottom:456.708000px;}
.y5c{bottom:456.928500px;}
.y1cc{bottom:458.884500px;}
.y15e{bottom:461.176500px;}
.y1e8{bottom:462.714000px;}
.y93{bottom:462.792000px;}
.y16{bottom:463.093500px;}
.yba{bottom:463.828500px;}
.ye4{bottom:464.769000px;}
.y134{bottom:466.756500px;}
.y223{bottom:468.384000px;}
.y104{bottom:468.764895px;}
.ye5{bottom:470.193000px;}
.y5a{bottom:471.231000px;}
.y1cb{bottom:474.501000px;}
.y1a8{bottom:476.434500px;}
.y1e7{bottom:480.420000px;}
.y15d{bottom:480.903000px;}
.y15{bottom:481.176000px;}
.y1a9{bottom:481.857000px;}
.y92{bottom:482.517000px;}
.y222{bottom:484.000500px;}
.yb9{bottom:484.218000px;}
.y133{bottom:486.483000px;}
.y1ca{bottom:490.117500px;}
.y59{bottom:490.957500px;}
.ye3{bottom:492.859500px;}
.y1e6{bottom:496.036500px;}
.y1a7{bottom:496.161000px;}
.y14{bottom:499.258500px;}
.y221{bottom:499.617000px;}
.y91{bottom:502.243500px;}
.y132{bottom:506.208000px;}
.yb8{bottom:507.088500px;}
.y15c{bottom:508.993500px;}
.y1c9{bottom:509.788500px;}
.y1e5{bottom:511.653000px;}
.ye2{bottom:512.586000px;}
.y58{bottom:514.564500px;}
.y220{bottom:515.233500px;}
.y1a6{bottom:515.886000px;}
.y13{bottom:517.341000px;}
.y186{bottom:521.970000px;}
.y1c8{bottom:525.405000px;}
.y131{bottom:525.934500px;}
.y1e4{bottom:527.269500px;}
.y15b{bottom:528.720000px;}
.y90{bottom:530.334000px;}
.y231{bottom:530.850000px;}
.ye1{bottom:532.312500px;}
.y21f{bottom:532.344000px;}
.y57{bottom:534.291000px;}
.y12{bottom:535.423500px;}
.y1a5{bottom:535.612500px;}
.y1c7{bottom:541.021500px;}
.y184{bottom:541.696500px;}
.y1e3{bottom:544.977000px;}
.y130{bottom:545.661000px;}
.y185{bottom:547.119000px;}
.yf4{bottom:547.496020px;}
.y21e{bottom:547.960500px;}
.y15a{bottom:548.446500px;}
.y8f{bottom:550.060500px;}
.ye0{bottom:552.039000px;}
.y11{bottom:553.504500px;}
.y56{bottom:554.017500px;}
.yb7{bottom:554.281500px;}
.y1a4{bottom:555.339000px;}
.y1c6{bottom:559.428000px;}
.y1e2{bottom:560.593500px;}
.y183{bottom:561.421500px;}
.y21d{bottom:563.577000px;}
.y159{bottom:568.173000px;}
.y8e{bottom:569.787000px;}
.y10{bottom:571.587000px;}
.ydf{bottom:571.765500px;}
.y54{bottom:573.742500px;}
.y12f{bottom:573.751500px;}
.yb6{bottom:574.006500px;}
.y1a3{bottom:575.065500px;}
.y55{bottom:579.166500px;}
.y21c{bottom:579.193500px;}
.y182{bottom:581.148000px;}
.y158{bottom:587.898000px;}
.y8d{bottom:589.513500px;}
.yf{bottom:589.669500px;}
.yde{bottom:591.490500px;}
.y53{bottom:593.469000px;}
.y12e{bottom:593.478000px;}
.yb5{bottom:594.405000px;}
.y1a2{bottom:594.790500px;}
.y21b{bottom:596.304000px;}
.y103{bottom:598.717156px;}
.ye{bottom:607.752000px;}
.y8c{bottom:609.238500px;}
.y157{bottom:609.946500px;}
.ydd{bottom:611.217000px;}
.y21a{bottom:611.920500px;}
.y52{bottom:613.195500px;}
.y12d{bottom:613.203000px;}
.yb4{bottom:614.131500px;}
.yfc{bottom:617.281764px;}
.y1a1{bottom:622.881000px;}
.yd{bottom:625.834500px;}
.y219{bottom:627.537000px;}
.y8a{bottom:628.965000px;}
.ydc{bottom:630.943500px;}
.y12c{bottom:632.929500px;}
.y8b{bottom:634.387500px;}
.yb3{bottom:634.530000px;}
.y51{bottom:641.286000px;}
.y19f{bottom:642.607500px;}
.y218{bottom:643.153500px;}
.yc{bottom:643.917000px;}
.y1a0{bottom:648.031500px;}
.y89{bottom:648.691500px;}
.y156{bottom:649.861500px;}
.ydb{bottom:650.670000px;}
.y12b{bottom:652.656000px;}
.yb2{bottom:654.256500px;}
.y1bf{bottom:656.832000px;}
.y217{bottom:660.265500px;}
.y50{bottom:661.012500px;}
.y19e{bottom:662.334000px;}
.y87{bottom:668.418000px;}
.y155{bottom:669.588000px;}
.yd9{bottom:670.395000px;}
.y12a{bottom:672.382500px;}
.y88{bottom:673.840500px;}
.yb{bottom:674.847000px;}
.yda{bottom:675.819000px;}
.y216{bottom:675.882000px;}
.y1be{bottom:676.558500px;}
.y4f{bottom:680.737500px;}
.y19c{bottom:682.060500px;}
.yb1{bottom:682.698000px;}
.y19d{bottom:687.483000px;}
.y86{bottom:688.143000px;}
.y154{bottom:689.314500px;}
.yd7{bottom:690.121500px;}
.y215{bottom:691.498500px;}
.y129{bottom:692.109000px;}
.y181{bottom:693.567000px;}
.yd8{bottom:695.544000px;}
.y1bd{bottom:695.836500px;}
.y4d{bottom:700.464000px;}
.y19b{bottom:701.785500px;}
.yb0{bottom:702.424500px;}
.y4e{bottom:705.886500px;}
.y180{bottom:707.869500px;}
.y214{bottom:708.609000px;}
.y153{bottom:709.041000px;}
.y1c5{bottom:709.738500px;}
.yd6{bottom:709.848000px;}
.y128{bottom:711.834000px;}
.y85{bottom:716.233500px;}
.y4c{bottom:720.190500px;}
.ya{bottom:721.168500px;}
.y19a{bottom:721.512000px;}
.yaf{bottom:722.151000px;}
.y213{bottom:724.225500px;}
.y17e{bottom:727.596000px;}
.y152{bottom:728.766000px;}
.y1c4{bottom:729.463500px;}
.yd5{bottom:729.574500px;}
.y1bc{bottom:731.551500px;}
.y127{bottom:731.560500px;}
.y17f{bottom:733.018500px;}
.y84{bottom:735.960000px;}
.y212{bottom:739.842000px;}
.y4b{bottom:739.917000px;}
.y9{bottom:740.895000px;}
.yae{bottom:741.876000px;}
.y17d{bottom:747.322500px;}
.y151{bottom:748.492500px;}
.y199{bottom:749.602500px;}
.y1bb{bottom:751.278000px;}
.y126{bottom:751.287000px;}
.yd4{bottom:751.353000px;}
.yfa{bottom:753.003702px;}
.y230{bottom:755.458500px;}
.y83{bottom:755.686500px;}
.y211{bottom:756.952500px;}
.y4a{bottom:759.642000px;}
.yad{bottom:761.602500px;}
.y1c3{bottom:764.280000px;}
.y17c{bottom:767.047500px;}
.y150{bottom:768.219000px;}
.y198{bottom:769.329000px;}
.y1ba{bottom:771.004500px;}
.y125{bottom:771.013500px;}
.yf6{bottom:772.375468px;}
.y210{bottom:772.569000px;}
.y81{bottom:775.413000px;}
.y49{bottom:779.368500px;}
.y82{bottom:780.835500px;}
.yac{bottom:781.993500px;}
.y1c2{bottom:784.005000px;}
.y17a{bottom:786.774000px;}
.y14f{bottom:787.945500px;}
.y20f{bottom:788.185500px;}
.y197{bottom:789.055500px;}
.yd3{bottom:790.731000px;}
.y17b{bottom:792.196500px;}
.y80{bottom:795.138000px;}
.y47{bottom:799.095000px;}
.y124{bottom:799.104000px;}
.y1c1{bottom:803.731500px;}
.y20e{bottom:803.802000px;}
.y48{bottom:804.517500px;}
.y8{bottom:806.077500px;}
.y179{bottom:806.500500px;}
.y14e{bottom:807.672000px;}
.y196{bottom:808.782000px;}
.yd2{bottom:810.456000px;}
.y7f{bottom:814.864500px;}
.y46{bottom:818.821500px;}
.y123{bottom:818.829000px;}
.y20d{bottom:819.418500px;}
.y1c0{bottom:823.458000px;}
.y7{bottom:824.160000px;}
.y178{bottom:826.227000px;}
.y14d{bottom:827.397000px;}
.y195{bottom:828.507000px;}
.yd1{bottom:830.182500px;}
.y7d{bottom:834.591000px;}
.y20c{bottom:835.035000px;}
.y22f{bottom:836.529000px;}
.y45{bottom:838.546500px;}
.y122{bottom:838.555500px;}
.y7e{bottom:840.013500px;}
.y177{bottom:845.952000px;}
.y5{bottom:846.177000px;}
.y14c{bottom:847.123500px;}
.y193{bottom:848.233500px;}
.yd0{bottom:849.909000px;}
.y6{bottom:851.601000px;}
.y20b{bottom:852.147000px;}
.y194{bottom:853.656000px;}
.y7c{bottom:854.317500px;}
.y43{bottom:858.273000px;}
.y121{bottom:858.282000px;}
.y44{bottom:863.697000px;}
.y176{bottom:865.678500px;}
.y14b{bottom:866.850000px;}
.y20a{bottom:867.763500px;}
.y192{bottom:867.960000px;}
.ycf{bottom:869.635500px;}
.y7b{bottom:874.042500px;}
.y42{bottom:877.999500px;}
.y120{bottom:878.008500px;}
.y209{bottom:883.380000px;}
.yf2{bottom:883.422000px;}
.y22e{bottom:884.874000px;}
.y175{bottom:885.405000px;}
.y14a{bottom:886.576500px;}
.y191{bottom:887.686500px;}
.yce{bottom:889.360500px;}
.y79{bottom:893.769000px;}
.y41{bottom:897.726000px;}
.y11f{bottom:897.733500px;}
.y208{bottom:898.996500px;}
.y7a{bottom:899.193000px;}
.y22d{bottom:900.490500px;}
.y4{bottom:904.156500px;}
.y174{bottom:906.246000px;}
.y149{bottom:906.301500px;}
.y190{bottom:907.411500px;}
.ycd{bottom:909.087000px;}
.y78{bottom:913.495500px;}
.y207{bottom:916.107000px;}
.y3f{bottom:917.451000px;}
.y11e{bottom:917.460000px;}
.y40{bottom:922.875000px;}
.ycc{bottom:928.813500px;}
.y206{bottom:931.723500px;}
.y77{bottom:933.222000px;}
.y148{bottom:934.392000px;}
.y3e{bottom:937.177500px;}
.y11d{bottom:937.186500px;}
.y167{bottom:945.070500px;}
.y3{bottom:945.252000px;}
.y205{bottom:947.340000px;}
.y22c{bottom:948.834000px;}
.y172{bottom:949.430765px;}
.y147{bottom:954.118500px;}
.y76{bottom:955.660500px;}
.y3d{bottom:956.904000px;}
.y11c{bottom:956.913000px;}
.y204{bottom:962.956500px;}
.y22b{bottom:964.450500px;}
.y171{bottom:967.930662px;}
.y146{bottom:973.845000px;}
.y3b{bottom:976.630500px;}
.y11b{bottom:976.638000px;}
.y203{bottom:978.573000px;}
.y22a{bottom:980.067000px;}
.y3c{bottom:982.053000px;}
.y170{bottom:986.400817px;}
.y202{bottom:995.683500px;}
.y145{bottom:995.893500px;}
.y3a{bottom:996.357000px;}
.y11a{bottom:996.360000px;}
.y16e{bottom:1004.870972px;}
.y201{bottom:1011.300000px;}
.y39{bottom:1016.082000px;}
.y75{bottom:1021.506000px;}
.y16a{bottom:1024.144176px;}
.y200{bottom:1026.916500px;}
.y229{bottom:1028.410500px;}
.y38{bottom:1035.808500px;}
.yab{bottom:1041.231000px;}
.y1ff{bottom:1042.533000px;}
.y228{bottom:1044.028500px;}
.y36{bottom:1055.535000px;}
.y1fe{bottom:1059.645000px;}
.y2{bottom:1060.317000px;}
.y37{bottom:1060.957500px;}
.y166{bottom:1070.179500px;}
.y35{bottom:1075.261500px;}
.y1{bottom:1107.444000px;}
.hb{height:16.678620px;}
.h27{height:18.470155px;}
.h28{height:18.492462px;}
.h1c{height:18.564609px;}
.h16{height:26.420815px;}
.h13{height:26.540366px;}
.h6{height:32.819220px;}
.h1{height:32.900160px;}
.hd{height:32.900573px;}
.h2b{height:33.187496px;}
.h25{height:36.940309px;}
.h1a{height:37.129217px;}
.h15{height:38.017282px;}
.hf{height:38.286162px;}
.h5{height:38.287260px;}
.h12{height:41.364715px;}
.hc{height:43.755300px;}
.h2a{height:43.755849px;}
.h9{height:49.223340px;}
.h8{height:49.637160px;}
.h14{height:49.637990px;}
.h4{height:51.528636px;}
.h23{height:52.543324px;}
.h18{height:52.812024px;}
.h24{height:53.405975px;}
.h19{height:53.679087px;}
.h26{height:53.954935px;}
.h1b{height:54.230854px;}
.he{height:54.694674px;}
.h7{height:54.696870px;}
.h1e{height:55.308673px;}
.h29{height:58.498234px;}
.h21{height:58.797386px;}
.h10{height:59.976162px;}
.ha{height:59.977260px;}
.h11{height:59.982162px;}
.h2{height:61.630416px;}
.h3{height:85.792776px;}
.h22{height:119.728836px;}
.h1f{height:129.952261px;}
.h1d{height:135.714464px;}
.h20{height:174.794311px;}
.h17{height:523.989817px;}
.h0{height:1188.000000px;}
.w9{width:103.058109px;}
.w4{width:152.761917px;}
.w3{width:159.009909px;}
.w8{width:187.408123px;}
.w7{width:206.056733px;}
.w6{width:224.882311px;}
.w2{width:412.246418px;}
.w1{width:727.117129px;}
.w5{width:727.129239px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x56{left:2.502485px;}
.x5c{left:4.233859px;}
.x58{left:8.070074px;}
.x5a{left:16.500380px;}
.x17{left:85.039500px;}
.x57{left:87.543181px;}
.x79{left:90.018000px;}
.x66{left:103.081500px;}
.x1{left:106.299000px;}
.x27{left:107.416500px;}
.x60{left:113.172000px;}
.x54{left:115.219500px;}
.x68{left:117.886500px;}
.x67{left:119.760000px;}
.x20{left:122.655000px;}
.x15{left:126.723000px;}
.x4b{left:128.715000px;}
.x28{left:130.068000px;}
.x1e{left:132.636000px;}
.x64{left:134.578500px;}
.x61{left:135.841500px;}
.x74{left:138.667500px;}
.x21{left:140.226000px;}
.x4c{left:143.659500px;}
.x1f{left:150.112500px;}
.x65{left:161.979000px;}
.x2f{left:167.163000px;}
.x69{left:169.855500px;}
.x6a{left:182.626500px;}
.x30{left:183.949500px;}
.x62{left:190.566000px;}
.x10{left:203.733000px;}
.x6b{left:204.765000px;}
.x25{left:211.111500px;}
.x63{left:213.370500px;}
.x11{left:219.790500px;}
.x16{left:225.600000px;}
.x26{left:233.917500px;}
.x7a{left:237.873000px;}
.x3{left:242.002500px;}
.x78{left:250.578000px;}
.x4{left:254.850000px;}
.x49{left:269.118000px;}
.x18{left:287.925000px;}
.x4a{left:295.458000px;}
.x7b{left:301.702500px;}
.x29{left:311.061000px;}
.x5d{left:313.086424px;}
.x19{left:316.309500px;}
.x1c{left:330.990000px;}
.x2b{left:332.286000px;}
.x2a{left:339.015000px;}
.x22{left:348.523500px;}
.x2c{left:354.202500px;}
.x1d{left:359.331000px;}
.x55{left:364.527302px;}
.x5{left:368.325000px;}
.x23{left:371.655000px;}
.x6{left:374.302500px;}
.x1a{left:381.139500px;}
.x2d{left:397.183500px;}
.x31{left:403.857000px;}
.x1b{left:405.549000px;}
.x2e{left:419.100000px;}
.x24{left:422.935500px;}
.xe{left:425.518500px;}
.x4d{left:427.605000px;}
.xf{left:442.899000px;}
.x48{left:444.196500px;}
.x4e{left:447.127500px;}
.x32{left:456.054000px;}
.x7c{left:461.034000px;}
.x7{left:476.188500px;}
.x12{left:477.315000px;}
.x8{left:482.166000px;}
.x81{left:485.247000px;}
.x77{left:488.271000px;}
.x35{left:498.253500px;}
.x59{left:499.789599px;}
.x5b{left:503.466000px;}
.x75{left:509.683500px;}
.x5e{left:519.143157px;}
.x82{left:544.635000px;}
.x37{left:546.261000px;}
.x33{left:561.021000px;}
.x38{left:568.180500px;}
.x39{left:579.663000px;}
.x34{left:583.861500px;}
.x36{left:586.789500px;}
.x7e{left:595.756500px;}
.x3a{left:602.824500px;}
.x9{left:604.467000px;}
.x13{left:608.778000px;}
.xa{left:610.444500px;}
.x80{left:621.594000px;}
.x2{left:622.677000px;}
.x42{left:624.300000px;}
.x3e{left:631.675500px;}
.x14{left:636.808500px;}
.x43{left:647.103000px;}
.x6d{left:649.383000px;}
.x70{left:650.460000px;}
.x76{left:655.552500px;}
.x46{left:659.497500px;}
.x6c{left:660.942000px;}
.x71{left:672.357000px;}
.x47{left:682.270500px;}
.x83{left:692.724000px;}
.x4f{left:695.176500px;}
.x7f{left:697.804500px;}
.x72{left:701.722500px;}
.x5f{left:706.551280px;}
.x50{left:712.798500px;}
.xb{left:716.806500px;}
.xc{left:722.784000px;}
.x73{left:724.522500px;}
.x44{left:731.340000px;}
.x3b{left:742.771500px;}
.x53{left:744.673500px;}
.x45{left:751.176000px;}
.x6e{left:756.358500px;}
.x40{left:759.052500px;}
.x3c{left:765.933000px;}
.x6f{left:773.937000px;}
.x7d{left:777.195000px;}
.x41{left:781.633500px;}
.x3f{left:793.951500px;}
.x3d{left:799.182000px;}
.x52{left:815.211000px;}
.x51{left:820.441500px;}
.xd{left:828.103500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.ls12{letter-spacing:-0.126902pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001774pt;}
.ls8{letter-spacing:0.015944pt;}
.ls13{letter-spacing:0.065843pt;}
.ls7{letter-spacing:0.095663pt;}
.ls11{letter-spacing:0.126902pt;}
.ls9{letter-spacing:0.969150pt;}
.ls3{letter-spacing:2.654164pt;}
.ls1{letter-spacing:2.656000pt;}
.ls0{letter-spacing:2.656628pt;}
.ls6{letter-spacing:3.162529pt;}
.ls14{letter-spacing:3.185843pt;}
.ls15{letter-spacing:3.186278pt;}
.ls2{letter-spacing:3.186613pt;}
.ls16{letter-spacing:3.191177pt;}
.ls10{letter-spacing:10.967761pt;}
.lse{letter-spacing:13.067157pt;}
.lsc{letter-spacing:13.081361pt;}
.lsf{letter-spacing:13.924570pt;}
.lsd{letter-spacing:15.461825pt;}
.ls5{letter-spacing:1902.147733pt;}
.lsb{letter-spacing:1904.009067pt;}
.ws7c{word-spacing:-47.831520pt;}
.wse{word-spacing:-13.284000pt;}
.ws35{word-spacing:-13.283467pt;}
.ws2c{word-spacing:-9.298400pt;}
.ws64{word-spacing:-3.213538pt;}
.ws58{word-spacing:-2.656693pt;}
.wsa5{word-spacing:-2.603559pt;}
.ws18{word-spacing:-2.550794pt;}
.ws92{word-spacing:-2.550426pt;}
.wsa0{word-spacing:-2.337890pt;}
.ws9f{word-spacing:-2.284756pt;}
.ws5a{word-spacing:-2.178489pt;}
.ws6a{word-spacing:-2.125355pt;}
.ws3b{word-spacing:-2.072221pt;}
.ws17{word-spacing:-1.912896pt;}
.wsb2{word-spacing:-1.806551pt;}
.ws59{word-spacing:-1.753418pt;}
.wsf7{word-spacing:-1.657781pt;}
.ws53{word-spacing:-1.647150pt;}
.wsb8{word-spacing:-1.530259pt;}
.ws96{word-spacing:-1.487748pt;}
.ws3d{word-spacing:-1.434614pt;}
.ws7b{word-spacing:-1.381481pt;}
.wsf6{word-spacing:-1.317723pt;}
.wsb9{word-spacing:-1.275216pt;}
.ws45{word-spacing:-1.275213pt;}
.ws8a{word-spacing:-1.222079pt;}
.ws7d{word-spacing:-1.115811pt;}
.wsd4{word-spacing:-1.105187pt;}
.ws3e{word-spacing:-1.009543pt;}
.ws80{word-spacing:-0.956410pt;}
.ws62{word-spacing:-0.903276pt;}
.wsd3{word-spacing:-0.850144pt;}
.ws33{word-spacing:-0.850142pt;}
.ws52{word-spacing:-0.797008pt;}
.wse4{word-spacing:-0.722622pt;}
.ws75{word-spacing:-0.690740pt;}
.wse3{word-spacing:-0.680115pt;}
.ws71{word-spacing:-0.637606pt;}
.wsad{word-spacing:-0.584473pt;}
.ws79{word-spacing:-0.531339pt;}
.wscb{word-spacing:-0.510086pt;}
.ws2a{word-spacing:-0.478205pt;}
.wsd9{word-spacing:-0.467579pt;}
.ws7f{word-spacing:-0.425071pt;}
.wsba{word-spacing:-0.382565pt;}
.ws49{word-spacing:-0.318803pt;}
.ws1c{word-spacing:-0.265893pt;}
.ws32{word-spacing:-0.265669pt;}
.wsdd{word-spacing:-0.255043pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws12{word-spacing:-0.191466pt;}
.wsc5{word-spacing:-0.170029pt;}
.ws40{word-spacing:-0.159402pt;}
.wsc1{word-spacing:-0.127522pt;}
.ws23{word-spacing:-0.106431pt;}
.ws31{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095446pt;}
.wsb6{word-spacing:-0.085014pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.053083pt;}
.wsf{word-spacing:-0.051008pt;}
.wsa2{word-spacing:-0.047588pt;}
.ws26{word-spacing:-0.042507pt;}
.wsdb{word-spacing:-0.001928pt;}
.wsbc{word-spacing:-0.001831pt;}
.wsd6{word-spacing:-0.001626pt;}
.wse5{word-spacing:-0.001395pt;}
.ws1f{word-spacing:-0.000266pt;}
.ws28{word-spacing:-0.000128pt;}
.ws8{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.000007pt;}
.wsc4{word-spacing:0.000137pt;}
.ws21{word-spacing:0.000266pt;}
.wsca{word-spacing:0.042507pt;}
.ws1b{word-spacing:0.053083pt;}
.ws47{word-spacing:0.053134pt;}
.wsa1{word-spacing:0.079314pt;}
.wsd8{word-spacing:0.085014pt;}
.ws2d{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.106378pt;}
.wse0{word-spacing:0.127522pt;}
.ws10{word-spacing:0.143456pt;}
.ws16{word-spacing:0.159195pt;}
.ws4f{word-spacing:0.159402pt;}
.wsdc{word-spacing:0.170029pt;}
.ws43{word-spacing:0.212535pt;}
.ws20{word-spacing:0.212544pt;}
.ws11{word-spacing:0.238902pt;}
.wsda{word-spacing:0.255043pt;}
.ws41{word-spacing:0.265669pt;}
.ws61{word-spacing:0.318803pt;}
.wsc0{word-spacing:0.340058pt;}
.ws6c{word-spacing:0.371937pt;}
.wse6{word-spacing:0.382565pt;}
.ws73{word-spacing:0.425071pt;}
.wsa4{word-spacing:0.478205pt;}
.wscc{word-spacing:0.510086pt;}
.wsa8{word-spacing:0.531339pt;}
.ws4b{word-spacing:0.584473pt;}
.wsf8{word-spacing:0.595101pt;}
.ws4c{word-spacing:0.637606pt;}
.ws24{word-spacing:0.637632pt;}
.wsc6{word-spacing:0.680115pt;}
.wsa7{word-spacing:0.690740pt;}
.wsea{word-spacing:0.722622pt;}
.ws76{word-spacing:0.797008pt;}
.wsb7{word-spacing:0.850144pt;}
.ws66{word-spacing:0.956410pt;}
.wsee{word-spacing:1.105187pt;}
.ws85{word-spacing:1.115811pt;}
.ws72{word-spacing:1.168945pt;}
.ws81{word-spacing:1.222079pt;}
.ws25{word-spacing:1.222181pt;}
.wsbd{word-spacing:1.232709pt;}
.ws57{word-spacing:1.275213pt;}
.wsaf{word-spacing:1.328347pt;}
.wsce{word-spacing:1.360230pt;}
.wsc2{word-spacing:1.402738pt;}
.ws95{word-spacing:1.434614pt;}
.ws2e{word-spacing:1.487748pt;}
.wsef{word-spacing:1.487752pt;}
.wscd{word-spacing:1.572766pt;}
.ws2b{word-spacing:1.594016pt;}
.ws34{word-spacing:1.647150pt;}
.wsd5{word-spacing:1.657781pt;}
.ws4e{word-spacing:1.700284pt;}
.wscf{word-spacing:1.742795pt;}
.ws74{word-spacing:1.753418pt;}
.ws82{word-spacing:1.859685pt;}
.wsc3{word-spacing:1.870317pt;}
.ws78{word-spacing:1.912819pt;}
.wsdf{word-spacing:1.912824pt;}
.ws22{word-spacing:1.912896pt;}
.ws13{word-spacing:1.912986pt;}
.wse7{word-spacing:1.955331pt;}
.ws27{word-spacing:1.997728pt;}
.ws4a{word-spacing:2.019087pt;}
.ws83{word-spacing:2.072221pt;}
.ws65{word-spacing:2.125355pt;}
.wse2{word-spacing:2.125360pt;}
.ws38{word-spacing:2.178489pt;}
.ws44{word-spacing:2.231622pt;}
.ws5b{word-spacing:2.337890pt;}
.ws1d{word-spacing:2.337984pt;}
.ws67{word-spacing:2.497292pt;}
.wsf0{word-spacing:2.507925pt;}
.wsf3{word-spacing:2.554202pt;}
.ws6f{word-spacing:2.603559pt;}
.ws6d{word-spacing:2.656693pt;}
.ws5c{word-spacing:2.709827pt;}
.ws5d{word-spacing:2.762961pt;}
.ws8e{word-spacing:2.816095pt;}
.wsab{word-spacing:2.869229pt;}
.wsd7{word-spacing:2.890490pt;}
.ws77{word-spacing:2.922363pt;}
.wsa6{word-spacing:2.975497pt;}
.wsbb{word-spacing:2.975504pt;}
.ws51{word-spacing:3.028630pt;}
.ws46{word-spacing:3.081764pt;}
.wse9{word-spacing:3.103026pt;}
.ws54{word-spacing:3.188032pt;}
.ws8b{word-spacing:3.241166pt;}
.wsc9{word-spacing:3.273054pt;}
.ws87{word-spacing:3.294300pt;}
.ws56{word-spacing:3.347434pt;}
.wsbf{word-spacing:3.400576pt;}
.ws7a{word-spacing:3.453701pt;}
.wsaa{word-spacing:3.506835pt;}
.wsc8{word-spacing:3.528098pt;}
.ws39{word-spacing:3.559969pt;}
.ws86{word-spacing:3.613103pt;}
.ws84{word-spacing:3.666237pt;}
.ws42{word-spacing:3.825638pt;}
.ws5e{word-spacing:3.878772pt;}
.ws36{word-spacing:3.985040pt;}
.ws9c{word-spacing:4.091308pt;}
.wsf4{word-spacing:4.165706pt;}
.ws8d{word-spacing:4.303843pt;}
.wsf2{word-spacing:4.335734pt;}
.ws1a{word-spacing:4.357258pt;}
.wsde{word-spacing:4.420749pt;}
.ws50{word-spacing:4.516379pt;}
.ws8c{word-spacing:4.569513pt;}
.wsac{word-spacing:4.728914pt;}
.wsae{word-spacing:4.994583pt;}
.ws48{word-spacing:5.100851pt;}
.ws7e{word-spacing:5.260253pt;}
.ws37{word-spacing:5.366521pt;}
.ws70{word-spacing:5.419654pt;}
.ws6b{word-spacing:5.472788pt;}
.ws9b{word-spacing:5.685324pt;}
.ws3f{word-spacing:5.738458pt;}
.wsa3{word-spacing:5.791591pt;}
.ws9a{word-spacing:5.844725pt;}
.wsbe{word-spacing:5.865994pt;}
.wsec{word-spacing:5.908501pt;}
.wsb0{word-spacing:6.004127pt;}
.wsb1{word-spacing:6.057261pt;}
.ws90{word-spacing:6.110395pt;}
.ws30{word-spacing:6.163529pt;}
.wse8{word-spacing:6.206051pt;}
.ws60{word-spacing:6.269796pt;}
.wsa9{word-spacing:6.535466pt;}
.wsd2{word-spacing:6.546109pt;}
.ws88{word-spacing:6.694867pt;}
.wsf1{word-spacing:6.716138pt;}
.wsed{word-spacing:6.801152pt;}
.ws55{word-spacing:6.960537pt;}
.ws93{word-spacing:7.013670pt;}
.wseb{word-spacing:7.098702pt;}
.wsb3{word-spacing:7.226206pt;}
.ws3a{word-spacing:7.438741pt;}
.wsd1{word-spacing:7.438760pt;}
.ws69{word-spacing:7.491875pt;}
.wse1{word-spacing:7.566282pt;}
.wsf5{word-spacing:8.373918pt;}
.ws98{word-spacing:8.554553pt;}
.wsd0{word-spacing:9.011526pt;}
.ws6e{word-spacing:9.510962pt;}
.ws0{word-spacing:10.584160pt;}
.ws29{word-spacing:10.584293pt;}
.ws97{word-spacing:11.735648pt;}
.wsb5{word-spacing:12.722942pt;}
.ws89{word-spacing:12.964663pt;}
.ws9d{word-spacing:13.093697pt;}
.wsb{word-spacing:13.222672pt;}
.wsd{word-spacing:13.223813pt;}
.ws5f{word-spacing:13.230333pt;}
.ws8f{word-spacing:13.230614pt;}
.wsa{word-spacing:13.230864pt;}
.ws91{word-spacing:13.893098pt;}
.ws68{word-spacing:14.239876pt;}
.ws5{word-spacing:16.306118pt;}
.ws6{word-spacing:16.354032pt;}
.ws9{word-spacing:16.406661pt;}
.ws7{word-spacing:16.407477pt;}
.ws4{word-spacing:17.959862pt;}
.wsb4{word-spacing:19.026183pt;}
.ws99{word-spacing:19.069569pt;}
.ws9e{word-spacing:19.500129pt;}
.ws94{word-spacing:20.261726pt;}
.ws4d{word-spacing:26.513799pt;}
.ws2{word-spacing:27.440354pt;}
.ws3{word-spacing:27.440464pt;}
.ws1{word-spacing:28.003392pt;}
.ws15{word-spacing:35.004240pt;}
.ws63{word-spacing:35.004826pt;}
.wsc{word-spacing:221.399237pt;}
._1d{margin-left:-21.876482pt;}
._2{margin-left:-5.483147pt;}
._6{margin-left:-4.516454pt;}
._f{margin-left:-3.443566pt;}
._4{margin-left:-1.983317pt;}
._8{margin-left:-1.062720pt;}
._24{width:0.893139pt;}
._7{width:2.159215pt;}
._c{width:3.162496pt;}
._14{width:4.835168pt;}
._25{width:9.691641pt;}
._d{width:11.046255pt;}
._16{width:12.220789pt;}
._3{width:13.176897pt;}
._e{width:14.632369pt;}
._b{width:16.452208pt;}
._12{width:17.937941pt;}
._11{width:19.411713pt;}
._23{width:20.350271pt;}
._15{width:21.253547pt;}
._18{width:22.900697pt;}
._1a{width:24.335311pt;}
._10{width:26.106955pt;}
._1e{width:27.885144pt;}
._21{width:30.019594pt;}
._17{width:32.092855pt;}
._1c{width:33.155533pt;}
._5{width:35.044117pt;}
._1f{width:36.928037pt;}
._22{width:38.575187pt;}
._1b{width:40.133434pt;}
._19{width:42.507200pt;}
._20{width:55.259264pt;}
._a{width:131.774928pt;}
._9{width:189.892944pt;}
._0{width:735.790443pt;}
._1{width:756.448640pt;}
._13{width:2112.308480pt;}
.fs5{font-size:31.882667pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.194667pt;}
.fs0{font-size:42.506667pt;}
.fs9{font-size:42.507200pt;}
.fs10{font-size:47.588160pt;}
.fs6{font-size:47.818667pt;}
.fse{font-size:47.831520pt;}
.fs8{font-size:51.008000pt;}
.fsd{font-size:51.008533pt;}
.fs11{font-size:52.981485pt;}
.fsa{font-size:53.133867pt;}
.fs3{font-size:53.136000pt;}
.fsf{font-size:53.252426pt;}
.fs7{font-size:63.760000pt;}
.fsc{font-size:63.761067pt;}
.fs1{font-size:76.512000pt;}
.fs2{font-size:110.202667pt;}
.y169{bottom:-787.806126pt;}
.yf5{bottom:-433.216720pt;}
.y117{bottom:-9.562318pt;}
.y173{bottom:-9.528207pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:5.393325pt;}
.yf9{bottom:5.420906pt;}
.y16f{bottom:5.631266pt;}
.yfb{bottom:5.660063pt;}
.y10a{bottom:11.320126pt;}
.y16b{bottom:13.562626pt;}
.yf7{bottom:13.631983pt;}
.y16c{bottom:21.811240pt;}
.yf8{bottom:21.922780pt;}
.y110{bottom:22.161938pt;}
.y102{bottom:22.959130pt;}
.y116{bottom:23.038849pt;}
.y109{bottom:28.698912pt;}
.y10f{bottom:38.663812pt;}
.y101{bottom:40.337915pt;}
.y108{bottom:45.997978pt;}
.y10e{bottom:55.165686pt;}
.y100{bottom:57.716701pt;}
.y34{bottom:58.205333pt;}
.y107{bottom:63.376764pt;}
.y10d{bottom:71.667561pt;}
.yff{bottom:75.095486pt;}
.y106{bottom:80.755550pt;}
.y33{bottom:80.881333pt;}
.y74{bottom:82.269333pt;}
.yaa{bottom:85.702667pt;}
.y10c{bottom:88.169435pt;}
.yfe{bottom:92.421126pt;}
.y115{bottom:92.474272pt;}
.y32{bottom:93.501333pt;}
.y1e1{bottom:94.762667pt;}
.y31{bottom:97.252000pt;}
.y105{bottom:98.134335pt;}
.ycb{bottom:98.416000pt;}
.y72{bottom:99.804000pt;}
.y73{bottom:104.624000pt;}
.y10b{bottom:104.671310pt;}
.ya9{bottom:105.852000pt;}
.y114{bottom:109.773338pt;}
.yfd{bottom:109.799911pt;}
.y1fd{bottom:110.502667pt;}
.y1e0{bottom:112.249333pt;}
.y25{bottom:114.289333pt;}
.yca{bottom:115.950667pt;}
.y1b9{bottom:116.890667pt;}
.y30{bottom:117.084000pt;}
.y71{bottom:117.338667pt;}
.ya8{bottom:123.385333pt;}
.y1fc{bottom:124.384000pt;}
.y1df{bottom:126.130667pt;}
.y144{bottom:126.909333pt;}
.y113{bottom:127.152124pt;}
.y168{bottom:127.393504pt;}
.y24{bottom:131.824000pt;}
.yc9{bottom:133.485333pt;}
.y70{bottom:134.872000pt;}
.y1fb{bottom:138.265333pt;}
.y1de{bottom:140.012000pt;}
.ya6{bottom:140.920000pt;}
.y2f{bottom:142.053333pt;}
.y143{bottom:144.444000pt;}
.y112{bottom:144.530910pt;}
.ya7{bottom:145.740000pt;}
.y23{bottom:149.358667pt;}
.yc8{bottom:151.018667pt;}
.y6f{bottom:152.406667pt;}
.y1b8{bottom:153.046667pt;}
.y1dd{bottom:153.893333pt;}
.y1fa{bottom:154.004000pt;}
.ya5{bottom:158.454667pt;}
.y2e{bottom:159.588000pt;}
.y142{bottom:161.978667pt;}
.y18f{bottom:163.274667pt;}
.y22{bottom:166.893333pt;}
.y1dc{bottom:167.774667pt;}
.y1f9{bottom:167.886667pt;}
.yc7{bottom:168.553333pt;}
.y6e{bottom:169.941333pt;}
.yf1{bottom:170.378667pt;}
.y1b7{bottom:170.581333pt;}
.ya3{bottom:175.989333pt;}
.y2c{bottom:177.121333pt;}
.y141{bottom:179.513333pt;}
.ya4{bottom:180.809333pt;}
.y1f8{bottom:181.768000pt;}
.y2d{bottom:181.942667pt;}
.y21{bottom:184.428000pt;}
.y1db{bottom:185.260000pt;}
.yc6{bottom:186.088000pt;}
.y6c{bottom:187.476000pt;}
.y1b6{bottom:188.116000pt;}
.y6d{bottom:192.296000pt;}
.ya2{bottom:193.522667pt;}
.y2b{bottom:194.656000pt;}
.y1f7{bottom:195.649333pt;}
.y140{bottom:197.046667pt;}
.y1da{bottom:199.141333pt;}
.y20{bottom:201.961333pt;}
.yc5{bottom:203.622667pt;}
.y6a{bottom:205.009333pt;}
.yf0{bottom:205.380000pt;}
.y1b5{bottom:205.649333pt;}
.y6b{bottom:209.830667pt;}
.y18e{bottom:211.057333pt;}
.y1f6{bottom:211.388000pt;}
.y2a{bottom:212.190667pt;}
.y1d9{bottom:213.022667pt;}
.y13f{bottom:214.581333pt;}
.ya1{bottom:218.492000pt;}
.y1e{bottom:219.496000pt;}
.yc4{bottom:221.157333pt;}
.y69{bottom:222.544000pt;}
.yef{bottom:222.914667pt;}
.y1b4{bottom:223.184000pt;}
.y119{bottom:223.816000pt;}
.y118{bottom:223.817333pt;}
.y1f{bottom:224.316000pt;}
.y1f5{bottom:225.269333pt;}
.y1d8{bottom:226.904000pt;}
.y18c{bottom:228.592000pt;}
.y13e{bottom:232.116000pt;}
.y18d{bottom:233.412000pt;}
.ya0{bottom:236.026667pt;}
.y1c{bottom:237.030667pt;}
.y29{bottom:237.160000pt;}
.yc3{bottom:238.690667pt;}
.y1f4{bottom:239.150667pt;}
.yee{bottom:240.449333pt;}
.y1b3{bottom:240.718667pt;}
.y1d{bottom:241.850667pt;}
.y68{bottom:243.528000pt;}
.y1d7{bottom:244.389333pt;}
.y18b{bottom:246.126667pt;}
.y13d{bottom:249.650667pt;}
.y1f3{bottom:253.032000pt;}
.y9f{bottom:253.561333pt;}
.y1b{bottom:254.565333pt;}
.y28{bottom:254.694667pt;}
.yc2{bottom:256.816000pt;}
.yf3{bottom:257.290667pt;}
.y1b2{bottom:258.253333pt;}
.y1d6{bottom:258.270667pt;}
.y67{bottom:261.062667pt;}
.y111{bottom:261.307186pt;}
.y18a{bottom:263.660000pt;}
.yed{bottom:265.418667pt;}
.y13c{bottom:267.185333pt;}
.y1f2{bottom:268.772000pt;}
.y165{bottom:269.248000pt;}
.y9e{bottom:271.096000pt;}
.y1d5{bottom:272.152000pt;}
.y27{bottom:272.228000pt;}
.y65{bottom:278.597333pt;}
.y189{bottom:281.194667pt;}
.y1f1{bottom:282.653333pt;}
.yec{bottom:282.953333pt;}
.y1b1{bottom:283.222667pt;}
.y66{bottom:283.417333pt;}
.y13b{bottom:284.718667pt;}
.y1d4{bottom:286.033333pt;}
.y164{bottom:286.782667pt;}
.y9c{bottom:288.629333pt;}
.y1a{bottom:288.726667pt;}
.yc1{bottom:289.552000pt;}
.y26{bottom:289.762667pt;}
.y9d{bottom:293.450667pt;}
.y64{bottom:296.132000pt;}
.y1f0{bottom:296.534667pt;}
.y188{bottom:298.729333pt;}
.yeb{bottom:300.488000pt;}
.y1b0{bottom:300.757333pt;}
.y13a{bottom:302.253333pt;}
.y1d3{bottom:303.518667pt;}
.y9a{bottom:306.164000pt;}
.yc0{bottom:307.086667pt;}
.y1ef{bottom:310.416000pt;}
.y9b{bottom:310.985333pt;}
.y63{bottom:313.665333pt;}
.y1d2{bottom:317.401333pt;}
.yea{bottom:318.021333pt;}
.y1af{bottom:318.290667pt;}
.y139{bottom:319.788000pt;}
.y163{bottom:322.264000pt;}
.y99{bottom:323.698667pt;}
.ybf{bottom:324.620000pt;}
.y1ee{bottom:326.154667pt;}
.y62{bottom:331.200000pt;}
.y1d1{bottom:331.282667pt;}
.ye9{bottom:335.556000pt;}
.y1ae{bottom:335.825333pt;}
.y138{bottom:337.322667pt;}
.y162{bottom:339.797333pt;}
.y1ed{bottom:340.036000pt;}
.y98{bottom:341.233333pt;}
.ybe{bottom:342.154667pt;}
.y1d0{bottom:345.164000pt;}
.y60{bottom:348.734667pt;}
.y1ad{bottom:353.360000pt;}
.y61{bottom:353.554667pt;}
.y1ec{bottom:353.917333pt;}
.y137{bottom:354.856000pt;}
.y19{bottom:355.446667pt;}
.y161{bottom:357.332000pt;}
.y97{bottom:358.766667pt;}
.y227{bottom:359.486667pt;}
.ybd{bottom:359.689333pt;}
.ye8{bottom:360.525333pt;}
.y1cf{bottom:362.649333pt;}
.y5e{bottom:366.269333pt;}
.y1eb{bottom:367.798667pt;}
.y1ac{bottom:370.894667pt;}
.y5f{bottom:371.089333pt;}
.y136{bottom:372.390667pt;}
.y226{bottom:373.368000pt;}
.y160{bottom:374.866667pt;}
.y95{bottom:376.301333pt;}
.y1ce{bottom:376.530667pt;}
.ybc{bottom:377.224000pt;}
.ye7{bottom:378.060000pt;}
.y18{bottom:379.492000pt;}
.y96{bottom:381.122667pt;}
.y1ea{bottom:383.538667pt;}
.y5d{bottom:383.802667pt;}
.y225{bottom:387.249333pt;}
.y1ab{bottom:388.428000pt;}
.y1cd{bottom:390.412000pt;}
.y15f{bottom:392.401333pt;}
.y94{bottom:393.836000pt;}
.ybb{bottom:394.757333pt;}
.y17{bottom:395.565333pt;}
.ye6{bottom:395.594667pt;}
.y135{bottom:397.360000pt;}
.y1e9{bottom:397.420000pt;}
.y187{bottom:398.656000pt;}
.y224{bottom:401.130667pt;}
.y5b{bottom:401.337333pt;}
.y1aa{bottom:405.962667pt;}
.y5c{bottom:406.158667pt;}
.y1cc{bottom:407.897333pt;}
.y15e{bottom:409.934667pt;}
.y1e8{bottom:411.301333pt;}
.y93{bottom:411.370667pt;}
.y16{bottom:411.638667pt;}
.yba{bottom:412.292000pt;}
.ye4{bottom:413.128000pt;}
.y134{bottom:414.894667pt;}
.y223{bottom:416.341333pt;}
.y104{bottom:416.679906pt;}
.ye5{bottom:417.949333pt;}
.y5a{bottom:418.872000pt;}
.y1cb{bottom:421.778667pt;}
.y1a8{bottom:423.497333pt;}
.y1e7{bottom:427.040000pt;}
.y15d{bottom:427.469333pt;}
.y15{bottom:427.712000pt;}
.y1a9{bottom:428.317333pt;}
.y92{bottom:428.904000pt;}
.y222{bottom:430.222667pt;}
.yb9{bottom:430.416000pt;}
.y133{bottom:432.429333pt;}
.y1ca{bottom:435.660000pt;}
.y59{bottom:436.406667pt;}
.ye3{bottom:438.097333pt;}
.y1e6{bottom:440.921333pt;}
.y1a7{bottom:441.032000pt;}
.y14{bottom:443.785333pt;}
.y221{bottom:444.104000pt;}
.y91{bottom:446.438667pt;}
.y132{bottom:449.962667pt;}
.yb8{bottom:450.745333pt;}
.y15c{bottom:452.438667pt;}
.y1c9{bottom:453.145333pt;}
.y1e5{bottom:454.802667pt;}
.ye2{bottom:455.632000pt;}
.y58{bottom:457.390667pt;}
.y220{bottom:457.985333pt;}
.y1a6{bottom:458.565333pt;}
.y13{bottom:459.858667pt;}
.y186{bottom:463.973333pt;}
.y1c8{bottom:467.026667pt;}
.y131{bottom:467.497333pt;}
.y1e4{bottom:468.684000pt;}
.y15b{bottom:469.973333pt;}
.y90{bottom:471.408000pt;}
.y231{bottom:471.866667pt;}
.ye1{bottom:473.166667pt;}
.y21f{bottom:473.194667pt;}
.y57{bottom:474.925333pt;}
.y12{bottom:475.932000pt;}
.y1a5{bottom:476.100000pt;}
.y1c7{bottom:480.908000pt;}
.y184{bottom:481.508000pt;}
.y1e3{bottom:484.424000pt;}
.y130{bottom:485.032000pt;}
.y185{bottom:486.328000pt;}
.yf4{bottom:486.663129pt;}
.y21e{bottom:487.076000pt;}
.y15a{bottom:487.508000pt;}
.y8f{bottom:488.942667pt;}
.ye0{bottom:490.701333pt;}
.y11{bottom:492.004000pt;}
.y56{bottom:492.460000pt;}
.yb7{bottom:492.694667pt;}
.y1a4{bottom:493.634667pt;}
.y1c6{bottom:497.269333pt;}
.y1e2{bottom:498.305333pt;}
.y183{bottom:499.041333pt;}
.y21d{bottom:500.957333pt;}
.y159{bottom:505.042667pt;}
.y8e{bottom:506.477333pt;}
.y10{bottom:508.077333pt;}
.ydf{bottom:508.236000pt;}
.y54{bottom:509.993333pt;}
.y12f{bottom:510.001333pt;}
.yb6{bottom:510.228000pt;}
.y1a3{bottom:511.169333pt;}
.y55{bottom:514.814667pt;}
.y21c{bottom:514.838667pt;}
.y182{bottom:516.576000pt;}
.y158{bottom:522.576000pt;}
.y8d{bottom:524.012000pt;}
.yf{bottom:524.150667pt;}
.yde{bottom:525.769333pt;}
.y53{bottom:527.528000pt;}
.y12e{bottom:527.536000pt;}
.yb5{bottom:528.360000pt;}
.y1a2{bottom:528.702667pt;}
.y21b{bottom:530.048000pt;}
.y103{bottom:532.193027pt;}
.ye{bottom:540.224000pt;}
.y8c{bottom:541.545333pt;}
.y157{bottom:542.174667pt;}
.ydd{bottom:543.304000pt;}
.y21a{bottom:543.929333pt;}
.y52{bottom:545.062667pt;}
.y12d{bottom:545.069333pt;}
.yb4{bottom:545.894667pt;}
.yfc{bottom:548.694902pt;}
.y1a1{bottom:553.672000pt;}
.yd{bottom:556.297333pt;}
.y219{bottom:557.810667pt;}
.y8a{bottom:559.080000pt;}
.ydc{bottom:560.838667pt;}
.y12c{bottom:562.604000pt;}
.y8b{bottom:563.900000pt;}
.yb3{bottom:564.026667pt;}
.y51{bottom:570.032000pt;}
.y19f{bottom:571.206667pt;}
.y218{bottom:571.692000pt;}
.yc{bottom:572.370667pt;}
.y1a0{bottom:576.028000pt;}
.y89{bottom:576.614667pt;}
.y156{bottom:577.654667pt;}
.ydb{bottom:578.373333pt;}
.y12b{bottom:580.138667pt;}
.yb2{bottom:581.561333pt;}
.y1bf{bottom:583.850667pt;}
.y217{bottom:586.902667pt;}
.y50{bottom:587.566667pt;}
.y19e{bottom:588.741333pt;}
.y87{bottom:594.149333pt;}
.y155{bottom:595.189333pt;}
.yd9{bottom:595.906667pt;}
.y12a{bottom:597.673333pt;}
.y88{bottom:598.969333pt;}
.yb{bottom:599.864000pt;}
.yda{bottom:600.728000pt;}
.y216{bottom:600.784000pt;}
.y1be{bottom:601.385333pt;}
.y4f{bottom:605.100000pt;}
.y19c{bottom:606.276000pt;}
.yb1{bottom:606.842667pt;}
.y19d{bottom:611.096000pt;}
.y86{bottom:611.682667pt;}
.y154{bottom:612.724000pt;}
.yd7{bottom:613.441333pt;}
.y215{bottom:614.665333pt;}
.y129{bottom:615.208000pt;}
.y181{bottom:616.504000pt;}
.yd8{bottom:618.261333pt;}
.y1bd{bottom:618.521333pt;}
.y4d{bottom:622.634667pt;}
.y19b{bottom:623.809333pt;}
.yb0{bottom:624.377333pt;}
.y4e{bottom:627.454667pt;}
.y180{bottom:629.217333pt;}
.y214{bottom:629.874667pt;}
.y153{bottom:630.258667pt;}
.y1c5{bottom:630.878667pt;}
.yd6{bottom:630.976000pt;}
.y128{bottom:632.741333pt;}
.y85{bottom:636.652000pt;}
.y4c{bottom:640.169333pt;}
.ya{bottom:641.038667pt;}
.y19a{bottom:641.344000pt;}
.yaf{bottom:641.912000pt;}
.y213{bottom:643.756000pt;}
.y17e{bottom:646.752000pt;}
.y152{bottom:647.792000pt;}
.y1c4{bottom:648.412000pt;}
.yd5{bottom:648.510667pt;}
.y1bc{bottom:650.268000pt;}
.y127{bottom:650.276000pt;}
.y17f{bottom:651.572000pt;}
.y84{bottom:654.186667pt;}
.y212{bottom:657.637333pt;}
.y4b{bottom:657.704000pt;}
.y9{bottom:658.573333pt;}
.yae{bottom:659.445333pt;}
.y17d{bottom:664.286667pt;}
.y151{bottom:665.326667pt;}
.y199{bottom:666.313333pt;}
.y1bb{bottom:667.802667pt;}
.y126{bottom:667.810667pt;}
.yd4{bottom:667.869333pt;}
.yfa{bottom:669.336624pt;}
.y230{bottom:671.518667pt;}
.y83{bottom:671.721333pt;}
.y211{bottom:672.846667pt;}
.y4a{bottom:675.237333pt;}
.yad{bottom:676.980000pt;}
.y1c3{bottom:679.360000pt;}
.y17c{bottom:681.820000pt;}
.y150{bottom:682.861333pt;}
.y198{bottom:683.848000pt;}
.y1ba{bottom:685.337333pt;}
.y125{bottom:685.345333pt;}
.yf6{bottom:686.555972pt;}
.y210{bottom:686.728000pt;}
.y81{bottom:689.256000pt;}
.y49{bottom:692.772000pt;}
.y82{bottom:694.076000pt;}
.yac{bottom:695.105333pt;}
.y1c2{bottom:696.893333pt;}
.y17a{bottom:699.354667pt;}
.y14f{bottom:700.396000pt;}
.y20f{bottom:700.609333pt;}
.y197{bottom:701.382667pt;}
.yd3{bottom:702.872000pt;}
.y17b{bottom:704.174667pt;}
.y80{bottom:706.789333pt;}
.y47{bottom:710.306667pt;}
.y124{bottom:710.314667pt;}
.y1c1{bottom:714.428000pt;}
.y20e{bottom:714.490667pt;}
.y48{bottom:715.126667pt;}
.y8{bottom:716.513333pt;}
.y179{bottom:716.889333pt;}
.y14e{bottom:717.930667pt;}
.y196{bottom:718.917333pt;}
.yd2{bottom:720.405333pt;}
.y7f{bottom:724.324000pt;}
.y46{bottom:727.841333pt;}
.y123{bottom:727.848000pt;}
.y20d{bottom:728.372000pt;}
.y1c0{bottom:731.962667pt;}
.y7{bottom:732.586667pt;}
.y178{bottom:734.424000pt;}
.y14d{bottom:735.464000pt;}
.y195{bottom:736.450667pt;}
.yd1{bottom:737.940000pt;}
.y7d{bottom:741.858667pt;}
.y20c{bottom:742.253333pt;}
.y22f{bottom:743.581333pt;}
.y45{bottom:745.374667pt;}
.y122{bottom:745.382667pt;}
.y7e{bottom:746.678667pt;}
.y177{bottom:751.957333pt;}
.y5{bottom:752.157333pt;}
.y14c{bottom:752.998667pt;}
.y193{bottom:753.985333pt;}
.yd0{bottom:755.474667pt;}
.y6{bottom:756.978667pt;}
.y20b{bottom:757.464000pt;}
.y194{bottom:758.805333pt;}
.y7c{bottom:759.393333pt;}
.y43{bottom:762.909333pt;}
.y121{bottom:762.917333pt;}
.y44{bottom:767.730667pt;}
.y176{bottom:769.492000pt;}
.y14b{bottom:770.533333pt;}
.y20a{bottom:771.345333pt;}
.y192{bottom:771.520000pt;}
.ycf{bottom:773.009333pt;}
.y7b{bottom:776.926667pt;}
.y42{bottom:780.444000pt;}
.y120{bottom:780.452000pt;}
.y209{bottom:785.226667pt;}
.yf2{bottom:785.264000pt;}
.y22e{bottom:786.554667pt;}
.y175{bottom:787.026667pt;}
.y14a{bottom:788.068000pt;}
.y191{bottom:789.054667pt;}
.yce{bottom:790.542667pt;}
.y79{bottom:794.461333pt;}
.y41{bottom:797.978667pt;}
.y11f{bottom:797.985333pt;}
.y208{bottom:799.108000pt;}
.y7a{bottom:799.282667pt;}
.y22d{bottom:800.436000pt;}
.y4{bottom:803.694667pt;}
.y174{bottom:805.552000pt;}
.y149{bottom:805.601333pt;}
.y190{bottom:806.588000pt;}
.ycd{bottom:808.077333pt;}
.y78{bottom:811.996000pt;}
.y207{bottom:814.317333pt;}
.y3f{bottom:815.512000pt;}
.y11e{bottom:815.520000pt;}
.y40{bottom:820.333333pt;}
.ycc{bottom:825.612000pt;}
.y206{bottom:828.198667pt;}
.y77{bottom:829.530667pt;}
.y148{bottom:830.570667pt;}
.y3e{bottom:833.046667pt;}
.y11d{bottom:833.054667pt;}
.y167{bottom:840.062667pt;}
.y3{bottom:840.224000pt;}
.y205{bottom:842.080000pt;}
.y22c{bottom:843.408000pt;}
.y172{bottom:843.938458pt;}
.y147{bottom:848.105333pt;}
.y76{bottom:849.476000pt;}
.y3d{bottom:850.581333pt;}
.y11c{bottom:850.589333pt;}
.y204{bottom:855.961333pt;}
.y22b{bottom:857.289333pt;}
.y171{bottom:860.382811pt;}
.y146{bottom:865.640000pt;}
.y3b{bottom:868.116000pt;}
.y11b{bottom:868.122667pt;}
.y203{bottom:869.842667pt;}
.y22a{bottom:871.170667pt;}
.y3c{bottom:872.936000pt;}
.y170{bottom:876.800726pt;}
.y202{bottom:885.052000pt;}
.y145{bottom:885.238667pt;}
.y3a{bottom:885.650667pt;}
.y11a{bottom:885.653333pt;}
.y16e{bottom:893.218641pt;}
.y201{bottom:898.933333pt;}
.y39{bottom:903.184000pt;}
.y75{bottom:908.005333pt;}
.y16a{bottom:910.350379pt;}
.y200{bottom:912.814667pt;}
.y229{bottom:914.142667pt;}
.y38{bottom:920.718667pt;}
.yab{bottom:925.538667pt;}
.y1ff{bottom:926.696000pt;}
.y228{bottom:928.025333pt;}
.y36{bottom:938.253333pt;}
.y1fe{bottom:941.906667pt;}
.y2{bottom:942.504000pt;}
.y37{bottom:943.073333pt;}
.y166{bottom:951.270667pt;}
.y35{bottom:955.788000pt;}
.y1{bottom:984.394667pt;}
.hb{height:14.825440pt;}
.h27{height:16.417915pt;}
.h28{height:16.437744pt;}
.h1c{height:16.501874pt;}
.h16{height:23.485169pt;}
.h13{height:23.591437pt;}
.h6{height:29.172640pt;}
.h1{height:29.244587pt;}
.hd{height:29.244954pt;}
.h2b{height:29.499997pt;}
.h25{height:32.835830pt;}
.h1a{height:33.003749pt;}
.h15{height:33.793139pt;}
.hf{height:34.032144pt;}
.h5{height:34.033120pt;}
.h12{height:36.768636pt;}
.hc{height:38.893600pt;}
.h2a{height:38.894088pt;}
.h9{height:43.754080pt;}
.h8{height:44.121920pt;}
.h14{height:44.122658pt;}
.h4{height:45.803232pt;}
.h23{height:46.705177pt;}
.h18{height:46.944021pt;}
.h24{height:47.471978pt;}
.h19{height:47.714744pt;}
.h26{height:47.959943pt;}
.h1b{height:48.205204pt;}
.he{height:48.617488pt;}
.h7{height:48.619440pt;}
.h1e{height:49.163265pt;}
.h29{height:51.998430pt;}
.h21{height:52.264343pt;}
.h10{height:53.312144pt;}
.ha{height:53.313120pt;}
.h11{height:53.317477pt;}
.h2{height:54.782592pt;}
.h3{height:76.260245pt;}
.h22{height:106.425632pt;}
.h1f{height:115.513121pt;}
.h1d{height:120.635079pt;}
.h20{height:155.372721pt;}
.h17{height:465.768727pt;}
.h0{height:1056.000000pt;}
.w9{width:91.607208pt;}
.w4{width:135.788371pt;}
.w3{width:141.342142pt;}
.w8{width:166.584998pt;}
.w7{width:183.161540pt;}
.w6{width:199.895388pt;}
.w2{width:366.441261pt;}
.w1{width:646.326337pt;}
.w5{width:646.337102pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x56{left:2.224431pt;}
.x5c{left:3.763430pt;}
.x58{left:7.173399pt;}
.x5a{left:14.667004pt;}
.x17{left:75.590667pt;}
.x57{left:77.816161pt;}
.x79{left:80.016000pt;}
.x66{left:91.628000pt;}
.x1{left:94.488000pt;}
.x27{left:95.481333pt;}
.x60{left:100.597333pt;}
.x54{left:102.417333pt;}
.x68{left:104.788000pt;}
.x67{left:106.453333pt;}
.x20{left:109.026667pt;}
.x15{left:112.642667pt;}
.x4b{left:114.413333pt;}
.x28{left:115.616000pt;}
.x1e{left:117.898667pt;}
.x64{left:119.625333pt;}
.x61{left:120.748000pt;}
.x74{left:123.260000pt;}
.x21{left:124.645333pt;}
.x4c{left:127.697333pt;}
.x1f{left:133.433333pt;}
.x65{left:143.981333pt;}
.x2f{left:148.589333pt;}
.x69{left:150.982667pt;}
.x6a{left:162.334667pt;}
.x30{left:163.510667pt;}
.x62{left:169.392000pt;}
.x10{left:181.096000pt;}
.x6b{left:182.013333pt;}
.x25{left:187.654667pt;}
.x63{left:189.662667pt;}
.x11{left:195.369333pt;}
.x16{left:200.533333pt;}
.x26{left:207.926667pt;}
.x7a{left:211.442667pt;}
.x3{left:215.113333pt;}
.x78{left:222.736000pt;}
.x4{left:226.533333pt;}
.x49{left:239.216000pt;}
.x18{left:255.933333pt;}
.x4a{left:262.629333pt;}
.x7b{left:268.180000pt;}
.x29{left:276.498667pt;}
.x5d{left:278.299044pt;}
.x19{left:281.164000pt;}
.x1c{left:294.213333pt;}
.x2b{left:295.365333pt;}
.x2a{left:301.346667pt;}
.x22{left:309.798667pt;}
.x2c{left:314.846667pt;}
.x1d{left:319.405333pt;}
.x55{left:324.024269pt;}
.x5{left:327.400000pt;}
.x23{left:330.360000pt;}
.x6{left:332.713333pt;}
.x1a{left:338.790667pt;}
.x2d{left:353.052000pt;}
.x31{left:358.984000pt;}
.x1b{left:360.488000pt;}
.x2e{left:372.533333pt;}
.x24{left:375.942667pt;}
.xe{left:378.238667pt;}
.x4d{left:380.093333pt;}
.xf{left:393.688000pt;}
.x48{left:394.841333pt;}
.x4e{left:397.446667pt;}
.x32{left:405.381333pt;}
.x7c{left:409.808000pt;}
.x7{left:423.278667pt;}
.x12{left:424.280000pt;}
.x8{left:428.592000pt;}
.x81{left:431.330667pt;}
.x77{left:434.018667pt;}
.x35{left:442.892000pt;}
.x59{left:444.257422pt;}
.x5b{left:447.525333pt;}
.x75{left:453.052000pt;}
.x5e{left:461.460584pt;}
.x82{left:484.120000pt;}
.x37{left:485.565333pt;}
.x33{left:498.685333pt;}
.x38{left:505.049333pt;}
.x39{left:515.256000pt;}
.x34{left:518.988000pt;}
.x36{left:521.590667pt;}
.x7e{left:529.561333pt;}
.x3a{left:535.844000pt;}
.x9{left:537.304000pt;}
.x13{left:541.136000pt;}
.xa{left:542.617333pt;}
.x80{left:552.528000pt;}
.x2{left:553.490667pt;}
.x42{left:554.933333pt;}
.x3e{left:561.489333pt;}
.x14{left:566.052000pt;}
.x43{left:575.202667pt;}
.x6d{left:577.229333pt;}
.x70{left:578.186667pt;}
.x76{left:582.713333pt;}
.x46{left:586.220000pt;}
.x6c{left:587.504000pt;}
.x71{left:597.650667pt;}
.x47{left:606.462667pt;}
.x83{left:615.754667pt;}
.x4f{left:617.934667pt;}
.x7f{left:620.270667pt;}
.x72{left:623.753333pt;}
.x5f{left:628.045582pt;}
.x50{left:633.598667pt;}
.xb{left:637.161333pt;}
.xc{left:642.474667pt;}
.x73{left:644.020000pt;}
.x44{left:650.080000pt;}
.x3b{left:660.241333pt;}
.x53{left:661.932000pt;}
.x45{left:667.712000pt;}
.x6e{left:672.318667pt;}
.x40{left:674.713333pt;}
.x3c{left:680.829333pt;}
.x6f{left:687.944000pt;}
.x7d{left:690.840000pt;}
.x41{left:694.785333pt;}
.x3f{left:705.734667pt;}
.x3d{left:710.384000pt;}
.x52{left:724.632000pt;}
.x51{left:729.281333pt;}
.xd{left:736.092000pt;}
}




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