
    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_e5d3beb01de0d9fa9cbdb534.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_c5a99e8cf14de681a87ff027.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_29d31d9f42576c6db6755279.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1102ab1510849dea2f0dc6a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e98e074607fc4c65375438dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.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:ff6;src:url('chunks/assets/font_fbda4e5657ff7bc4d7ecdbd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dff9d21228c974d72dac4bb9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4bab962a618dd66f5d9e5f61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.628000;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_120994c90a21a6485e72bc09.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.111000;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_1496ad36d6782503ec6b5677.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_1496ad36d6782503ec6b5677.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_9324e3522f4fe7269d010353.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.830000;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_9cc4b414d0a860f6d6797a94.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2a8c2d024b2ba228491e72d1.woff2')format("woff");}.fff{font-family:fff;line-height:0.840000;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_67173ffd8ce34abce0114a33.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;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_ea0d4875d15a3ed7876eea5b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.294000;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_7732303b1716bccca1f85ca1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.427000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_60954a6388db3638b5e842d2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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_5e08f7c85313dccaa0a57445.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.750000;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_c39fa789f7b4521174c9d2be.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_5c6de011288af613ae7e3375.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.705000;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_df078f9e153503e0ec85cfa0.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_1496ad36d6782503ec6b5677.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_1102ab1510849dea2f0dc6a1.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_cb45da7947d885cf066d1999.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_1d08b004bbd303d8c6811fa8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_2a491c598e6b3f409d3c4c49.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.850000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_92ca674400a1b18f48d5ae67.woff2')format("woff");}.ff20{font-family:ff20;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;}
@font-face{font-family:ff21;src:url('chunks/assets/font_cd691c01988326250ba0336c.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_1102ab1510849dea2f0dc6a1.woff2')format("woff");}.ff22{font-family:ff22;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-ms-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-webkit-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);}
.m21{transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-ms-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-webkit-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);}
.md{transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-ms-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-webkit-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);}
.m6{transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-ms-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-webkit-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);}
.m23{transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-ms-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-webkit-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);}
.m1c{transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-ms-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-webkit-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);}
.m20{transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-ms-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-webkit-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);}
.m9{transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-ms-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-webkit-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);}
.m14{transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-ms-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-webkit-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);}
.m11{transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-ms-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-webkit-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);}
.m1e{transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-ms-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-webkit-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);}
.m17{transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-ms-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-webkit-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);}
.m4{transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-ms-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-webkit-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);}
.m7{transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-ms-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-webkit-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);}
.m1d{transform:matrix(0.156645,-0.194839,0.194839,0.156645,0,0);-ms-transform:matrix(0.156645,-0.194839,0.194839,0.156645,0,0);-webkit-transform:matrix(0.156645,-0.194839,0.194839,0.156645,0,0);}
.m1a{transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-ms-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-webkit-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);}
.m22{transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-ms-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-webkit-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);}
.mb{transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-ms-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-webkit-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);}
.mc{transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-ms-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-webkit-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);}
.m24{transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-ms-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-webkit-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);}
.m8{transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-ms-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-webkit-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);}
.me{transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-ms-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-webkit-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);}
.m13{transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-ms-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-webkit-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);}
.m15{transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-ms-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-webkit-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);}
.ma{transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-ms-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-webkit-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);}
.m19{transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-ms-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-webkit-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-ms-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-webkit-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);}
.m10{transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-ms-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-webkit-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);}
.m1b{transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-ms-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-webkit-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);}
.mf{transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-ms-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-webkit-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);}
.m1f{transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-ms-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-webkit-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);}
.m5{transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-ms-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-webkit-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);}
.m12{transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-ms-transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-webkit-transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-8.981986px;}
.v1{vertical-align:-7.469988px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.415998px;}
.v4{vertical-align:16.886373px;}
.v5{vertical-align:18.989970px;}
.v7{vertical-align:21.903743px;}
.v6{vertical-align:25.565959px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000324px;}
.ls7{letter-spacing:0.000423px;}
.ls11{letter-spacing:0.000623px;}
.ls17{letter-spacing:0.000828px;}
.ls1c{letter-spacing:0.001166px;}
.ls12{letter-spacing:0.001235px;}
.ls13{letter-spacing:0.001368px;}
.ls14{letter-spacing:0.001440px;}
.ls1b{letter-spacing:0.001766px;}
.ls15{letter-spacing:0.002304px;}
.ls1a{letter-spacing:0.003735px;}
.ls21{letter-spacing:0.003810px;}
.lsc{letter-spacing:0.004335px;}
.lsa{letter-spacing:0.004935px;}
.ls20{letter-spacing:0.005010px;}
.lsd{letter-spacing:0.005115px;}
.ls1d{letter-spacing:0.005366px;}
.ls23{letter-spacing:0.009810px;}
.ls18{letter-spacing:0.010335px;}
.ls1f{letter-spacing:0.011366px;}
.ls1e{letter-spacing:0.047366px;}
.ls10{letter-spacing:6.007462px;}
.ls8{letter-spacing:11.293523px;}
.ls9{letter-spacing:11.340405px;}
.ls6{letter-spacing:14.128942px;}
.lsf{letter-spacing:18.184892px;}
.lse{letter-spacing:20.604170px;}
.ls22{letter-spacing:31.377760px;}
.ls3{letter-spacing:32.715370px;}
.ls5{letter-spacing:32.720648px;}
.ls4{letter-spacing:32.725448px;}
.ls2{letter-spacing:32.729948px;}
.ls1{letter-spacing:32.736248px;}
.lsb{letter-spacing:34.360280px;}
.ls19{letter-spacing:34.366280px;}
.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;}
}
.ws57{word-spacing:-25.775030px;}
.ws6a{word-spacing:-20.084704px;}
.ws43{word-spacing:-18.327259px;}
.wsae{word-spacing:-16.737141px;}
.ws89{word-spacing:-10.042352px;}
.ws1a{word-spacing:-7.303668px;}
.ws35{word-spacing:-4.459041px;}
.ws56{word-spacing:-3.519981px;}
.ws38{word-spacing:-2.997741px;}
.ws19{word-spacing:-2.435394px;}
.ws1b{word-spacing:-2.433699px;}
.ws1c{word-spacing:-2.430632px;}
.ws1d{word-spacing:-2.430003px;}
.ws66{word-spacing:-2.141308px;}
.ws98{word-spacing:-0.086077px;}
.ws18{word-spacing:-0.071731px;}
.ws6{word-spacing:-0.065454px;}
.ws7{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.047821px;}
.wse{word-spacing:0.000000px;}
.ws96{word-spacing:3.169945px;}
.wsac{word-spacing:3.448008px;}
.ws62{word-spacing:3.463523px;}
.ws79{word-spacing:3.463525px;}
.ws7e{word-spacing:3.466274px;}
.ws7b{word-spacing:3.469416px;}
.ws78{word-spacing:3.470266px;}
.ws68{word-spacing:3.470397px;}
.ws69{word-spacing:3.471183px;}
.ws81{word-spacing:3.472165px;}
.ws7c{word-spacing:3.474652px;}
.ws7f{word-spacing:3.535852px;}
.ws82{word-spacing:3.577440px;}
.ws8f{word-spacing:3.615798px;}
.ws39{word-spacing:6.309287px;}
.ws93{word-spacing:6.311403px;}
.ws4{word-spacing:6.314738px;}
.wsa1{word-spacing:8.998414px;}
.wsaa{word-spacing:8.998449px;}
.wsa6{word-spacing:8.998978px;}
.ws9e{word-spacing:9.004116px;}
.wsa2{word-spacing:9.107924px;}
.ws8{word-spacing:9.145498px;}
.ws9a{word-spacing:9.320426px;}
.wsa{word-spacing:9.862062px;}
.wsc3{word-spacing:10.866232px;}
.ws3{word-spacing:12.654977px;}
.ws95{word-spacing:12.655695px;}
.ws94{word-spacing:12.660178px;}
.ws86{word-spacing:12.660967px;}
.ws92{word-spacing:12.662366px;}
.ws80{word-spacing:14.395714px;}
.wsb4{word-spacing:14.641099px;}
.wsb2{word-spacing:14.641879px;}
.wsb0{word-spacing:14.642719px;}
.wsb5{word-spacing:14.647969px;}
.ws48{word-spacing:16.030984px;}
.ws45{word-spacing:16.032361px;}
.ws6f{word-spacing:16.033144px;}
.ws42{word-spacing:16.033561px;}
.ws4a{word-spacing:16.034626px;}
.ws46{word-spacing:16.035304px;}
.ws6b{word-spacing:16.035479px;}
.ws41{word-spacing:16.035766px;}
.ws6c{word-spacing:16.036696px;}
.ws40{word-spacing:16.037896px;}
.ws4b{word-spacing:16.038361px;}
.ws44{word-spacing:16.039021px;}
.ws49{word-spacing:16.039426px;}
.ws47{word-spacing:16.040026px;}
.ws6e{word-spacing:16.040344px;}
.ws6d{word-spacing:16.043356px;}
.ws30{word-spacing:16.875385px;}
.ws3b{word-spacing:16.875671px;}
.ws31{word-spacing:16.877441px;}
.ws20{word-spacing:16.880884px;}
.wsb8{word-spacing:19.840207px;}
.wsc{word-spacing:19.841941px;}
.wsbb{word-spacing:19.844929px;}
.ws9{word-spacing:19.845527px;}
.wsb{word-spacing:19.847081px;}
.wsba{word-spacing:19.848456px;}
.wsd{word-spacing:19.850608px;}
.wsb9{word-spacing:19.902374px;}
.ws32{word-spacing:19.912835px;}
.ws4d{word-spacing:21.725263px;}
.wsc0{word-spacing:21.725329px;}
.wsc4{word-spacing:21.725852px;}
.ws13{word-spacing:21.725918px;}
.ws2a{word-spacing:21.726114px;}
.wsbe{word-spacing:21.726180px;}
.ws15{word-spacing:21.726442px;}
.ws5b{word-spacing:21.726638px;}
.ws2e{word-spacing:21.726703px;}
.ws2c{word-spacing:21.726900px;}
.wsc2{word-spacing:21.727096px;}
.wsf{word-spacing:21.727162px;}
.wsc1{word-spacing:21.727358px;}
.ws5a{word-spacing:21.727554px;}
.ws10{word-spacing:21.728078px;}
.ws21{word-spacing:21.728209px;}
.ws23{word-spacing:21.728405px;}
.ws2b{word-spacing:21.728732px;}
.ws22{word-spacing:21.729452px;}
.ws58{word-spacing:21.730172px;}
.ws59{word-spacing:21.730500px;}
.wsbc{word-spacing:21.730892px;}
.ws25{word-spacing:21.731940px;}
.wsc5{word-spacing:21.732202px;}
.ws4c{word-spacing:21.732594px;}
.ws2d{word-spacing:21.733511px;}
.ws4e{word-spacing:21.733707px;}
.ws2{word-spacing:21.734100px;}
.ws26{word-spacing:21.735278px;}
.ws27{word-spacing:21.735540px;}
.ws24{word-spacing:21.736129px;}
.wsbd{word-spacing:21.796740px;}
.ws1{word-spacing:21.798114px;}
.ws64{word-spacing:23.307151px;}
.ws5d{word-spacing:23.308227px;}
.ws34{word-spacing:23.310379px;}
.ws36{word-spacing:23.310809px;}
.ws3d{word-spacing:23.312603px;}
.ws67{word-spacing:23.312746px;}
.ws60{word-spacing:23.380460px;}
.ws5f{word-spacing:23.380532px;}
.ws61{word-spacing:23.392798px;}
.ws4f{word-spacing:27.965232px;}
.ws3c{word-spacing:27.965663px;}
.ws2f{word-spacing:27.966093px;}
.ws83{word-spacing:27.968934px;}
.ws97{word-spacing:27.969967px;}
.ws65{word-spacing:27.970139px;}
.wsad{word-spacing:27.970225px;}
.ws0{word-spacing:27.970569px;}
.ws3a{word-spacing:27.970655px;}
.ws5{word-spacing:27.970741px;}
.ws37{word-spacing:27.971172px;}
.ws14{word-spacing:27.971430px;}
.ws11{word-spacing:27.971516px;}
.ws63{word-spacing:27.972979px;}
.ws29{word-spacing:27.973065px;}
.ws33{word-spacing:27.974701px;}
.ws17{word-spacing:27.975045px;}
.ws55{word-spacing:27.975648px;}
.ws76{word-spacing:27.978660px;}
.ws90{word-spacing:27.978747px;}
.ws5c{word-spacing:27.982190px;}
.ws9f{word-spacing:28.039107px;}
.wsa3{word-spacing:28.052547px;}
.wsbf{word-spacing:28.057507px;}
.ws5e{word-spacing:28.063963px;}
.wsa7{word-spacing:28.077627px;}
.wsab{word-spacing:28.077987px;}
.ws77{word-spacing:36.196004px;}
.ws7a{word-spacing:36.197009px;}
.ws7d{word-spacing:36.200339px;}
.wsb1{word-spacing:46.022878px;}
.wsb3{word-spacing:46.025998px;}
.wsa4{word-spacing:47.127957px;}
.ws9b{word-spacing:47.132517px;}
.ws52{word-spacing:52.023723px;}
.ws51{word-spacing:52.025860px;}
.ws53{word-spacing:52.035052px;}
.ws50{word-spacing:52.668321px;}
.ws8e{word-spacing:62.012258px;}
.ws54{word-spacing:62.118407px;}
.ws1e{word-spacing:65.242031px;}
.wsa5{word-spacing:66.167366px;}
.ws1f{word-spacing:66.335208px;}
.wsb7{word-spacing:71.667841px;}
.ws3e{word-spacing:71.671363px;}
.ws3f{word-spacing:71.674636px;}
.ws87{word-spacing:71.690916px;}
.ws88{word-spacing:71.723616px;}
.ws8d{word-spacing:71.737670px;}
.ws8b{word-spacing:72.017292px;}
.ws73{word-spacing:87.773332px;}
.ws16{word-spacing:94.976396px;}
.wsa8{word-spacing:104.256505px;}
.ws99{word-spacing:104.256745px;}
.ws9d{word-spacing:123.338155px;}
.ws9c{word-spacing:142.389564px;}
.wsb6{word-spacing:158.763740px;}
.wsa0{word-spacing:161.434974px;}
.ws8a{word-spacing:183.125338px;}
.wsa9{word-spacing:199.559513px;}
.ws28{word-spacing:212.727110px;}
.ws85{word-spacing:217.770554px;}
.ws8c{word-spacing:271.537697px;}
.ws91{word-spacing:296.244002px;}
.ws84{word-spacing:320.926310px;}
.wsaf{word-spacing:453.995346px;}
.ws75{word-spacing:632.678105px;}
.ws72{word-spacing:673.594364px;}
.ws74{word-spacing:737.408597px;}
.ws71{word-spacing:914.139634px;}
.ws70{word-spacing:1823.562238px;}
._f{margin-left:-151.138291px;}
._10{margin-left:-112.333865px;}
._11{margin-left:-5.440421px;}
._9{margin-left:-3.808939px;}
._0{margin-left:-2.326990px;}
._2{margin-left:-1.033308px;}
._1{width:1.834800px;}
._1d{width:3.187686px;}
._3{width:12.688583px;}
._8{width:17.633804px;}
._7{width:19.219494px;}
._39{width:21.789951px;}
._1c{width:23.015308px;}
._a{width:24.612348px;}
._16{width:29.061918px;}
._25{width:37.447654px;}
._22{width:64.461078px;}
._17{width:71.732560px;}
._14{width:79.564248px;}
._18{width:85.813251px;}
._e{width:88.292407px;}
._2f{width:99.552087px;}
._d{width:101.656111px;}
._21{width:107.017378px;}
._28{width:121.937824px;}
._30{width:125.694833px;}
._15{width:142.232382px;}
._19{width:163.571680px;}
._36{width:166.727524px;}
._2e{width:171.496653px;}
._2d{width:192.308696px;}
._37{width:208.747745px;}
._12{width:218.024906px;}
._1f{width:222.613509px;}
._1e{width:232.777761px;}
._6{width:251.823799px;}
._32{width:271.543044px;}
._31{width:296.214305px;}
._2c{width:326.052572px;}
._20{width:340.096321px;}
._13{width:346.517256px;}
._1b{width:351.482542px;}
._4{width:374.002808px;}
._5{width:379.294141px;}
._24{width:381.550587px;}
._23{width:451.975460px;}
._35{width:455.597114px;}
._c{width:478.272628px;}
._38{width:491.288589px;}
._34{width:500.156633px;}
._b{width:568.986559px;}
._1a{width:603.285733px;}
._33{width:616.521476px;}
._2b{width:699.661419px;}
._29{width:754.458021px;}
._2a{width:766.222812px;}
._27{width:779.845567px;}
._26{width:920.525017px;}
.fcd{color:rgb(117,117,0);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(38,38,38);}
.fca{color:rgb(102,102,102);}
.fc2{color:rgb(0,117,101);}
.fc3{color:rgb(51,51,178);}
.fcc{color:rgb(17,102,86);}
.fc8{color:rgb(26,23,125);}
.fc6{color:rgb(0,128,0);}
.fc9{color:rgb(176,0,64);}
.fc5{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fcb{color:rgb(186,33,33);}
.fs35{font-size:7.702548px;}
.fse{font-size:10.783243px;}
.fs31{font-size:10.844377px;}
.fs2c{font-size:10.844379px;}
.fs2e{font-size:10.844381px;}
.fs2f{font-size:10.844382px;}
.fs2d{font-size:10.844383px;}
.fs32{font-size:10.844386px;}
.fs2b{font-size:10.844387px;}
.fs30{font-size:10.844388px;}
.fs1e{font-size:11.305776px;}
.fs18{font-size:11.305778px;}
.fs1a{font-size:11.305780px;}
.fs1c{font-size:11.305782px;}
.fs19{font-size:11.305783px;}
.fs1b{font-size:11.305784px;}
.fs1f{font-size:11.305785px;}
.fs17{font-size:11.305786px;}
.fs1d{font-size:11.305788px;}
.fs27{font-size:11.345977px;}
.fs23{font-size:11.345978px;}
.fs29{font-size:11.345981px;}
.fs28{font-size:11.345982px;}
.fs22{font-size:11.345984px;}
.fs24{font-size:11.345985px;}
.fs25{font-size:11.345986px;}
.fs21{font-size:11.345987px;}
.fs26{font-size:11.345988px;}
.fs34{font-size:12.837579px;}
.fsa{font-size:14.607337px;}
.fsc{font-size:16.039714px;}
.fsd{font-size:17.972071px;}
.fs6{font-size:20.993246px;}
.fsf{font-size:21.377006px;}
.fs33{font-size:21.688765px;}
.fs7{font-size:22.492764px;}
.fs20{font-size:22.611564px;}
.fs2a{font-size:22.691964px;}
.fs11{font-size:22.782864px;}
.fs10{font-size:23.320403px;}
.fs8{font-size:23.992282px;}
.fs12{font-size:26.580017px;}
.fsb{font-size:26.732897px;}
.fs14{font-size:34.165445px;}
.fs16{font-size:34.174325px;}
.fs2{font-size:35.865543px;}
.fs13{font-size:40.461415px;}
.fs15{font-size:40.463155px;}
.fs5{font-size:47.820523px;}
.fs4{font-size:53.798314px;}
.fs3{font-size:59.775504px;}
.fs1{font-size:65.454495px;}
.fs9{font-size:71.731085px;}
.fs0{font-size:86.077062px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.290594px;}
.y1c{bottom:2.297703px;}
.ycd{bottom:2.474431px;}
.ycb{bottom:2.477431px;}
.yd1{bottom:2.812445px;}
.y14d{bottom:3.983026px;}
.y5{bottom:3.985299px;}
.y167{bottom:4.030943px;}
.y104{bottom:4.150517px;}
.y11f{bottom:4.341836px;}
.y14e{bottom:5.124899px;}
.y105{bottom:5.340203px;}
.y165{bottom:7.211988px;}
.y11d{bottom:7.525580px;}
.ya6{bottom:7.655477px;}
.y1b{bottom:9.157492px;}
.y139{bottom:13.612275px;}
.yf0{bottom:14.253642px;}
.ya5{bottom:14.492661px;}
.y1d{bottom:16.579630px;}
.y40{bottom:17.231819px;}
.y70{bottom:18.362821px;}
.y29{bottom:20.269625px;}
.y3f{bottom:22.072161px;}
.y168{bottom:22.466813px;}
.y14b{bottom:22.702996px;}
.y120{bottom:22.780556px;}
.yc1{bottom:23.554446px;}
.y102{bottom:23.666386px;}
.y3d{bottom:24.122508px;}
.y57{bottom:24.164961px;}
.y146{bottom:25.557641px;}
.y14f{bottom:26.224315px;}
.yfd{bottom:26.644826px;}
.y137{bottom:26.749254px;}
.y106{bottom:27.339468px;}
.yee{bottom:27.950420px;}
.y28{bottom:27.973012px;}
.yaf{bottom:28.493188px;}
.y138{bottom:28.982751px;}
.y189{bottom:29.092303px;}
.y5a{bottom:29.292192px;}
.ya7{bottom:29.711036px;}
.yb4{bottom:30.065486px;}
.yef{bottom:30.279166px;}
.y7a{bottom:30.597101px;}
.yba{bottom:30.605485px;}
.y1e{bottom:31.672006px;}
.yc7{bottom:31.680000px;}
.y36{bottom:34.089992px;}
.y12f{bottom:34.658742px;}
.y179{bottom:35.256868px;}
.y27{bottom:35.677000px;}
.ye6{bottom:36.196657px;}
.y169{bottom:39.774986px;}
.y14{bottom:39.900836px;}
.y121{bottom:40.085878px;}
.yc2{bottom:40.904768px;}
.y34{bottom:42.024079px;}
.ybb{bottom:42.687965px;}
.yd0{bottom:43.152030px;}
.y26{bottom:43.376488px;}
.y134{bottom:43.967727px;}
.y17c{bottom:44.364229px;}
.y3c{bottom:44.479425px;}
.y15a{bottom:44.555733px;}
.yb5{bottom:44.614562px;}
.y149{bottom:44.716360px;}
.y112{bottom:44.870376px;}
.ya8{bottom:44.870462px;}
.y143{bottom:45.582534px;}
.y144{bottom:45.768159px;}
.yeb{bottom:45.899841px;}
.y100{bottom:46.616349px;}
.y1f{bottom:46.763482px;}
.y16b{bottom:46.764074px;}
.y123{bottom:47.074967px;}
.yfa{bottom:47.519280px;}
.yfb{bottom:47.713342px;}
.y18{bottom:48.237073px;}
.yb0{bottom:48.566006px;}
.y6f{bottom:49.359237px;}
.y188{bottom:49.418171px;}
.y1c3{bottom:49.859920px;}
.y133{bottom:50.635216px;}
.y140{bottom:51.691274px;}
.y12e{bottom:52.255214px;}
.y132{bottom:52.325714px;}
.yea{bottom:52.855180px;}
.y16d{bottom:53.240465px;}
.ydc{bottom:53.280000px;}
.y65{bottom:53.476848px;}
.yf1{bottom:53.552808px;}
.yf7{bottom:53.886770px;}
.y24{bottom:54.374470px;}
.ye5{bottom:54.542677px;}
.ye9{bottom:54.615727px;}
.ybc{bottom:54.767596px;}
.y7b{bottom:56.016510px;}
.y158{bottom:56.641214px;}
.yad{bottom:56.876893px;}
.y110{bottom:56.952856px;}
.y13{bottom:57.833307px;}
.y33{bottom:58.241453px;}
.yc3{bottom:58.252241px;}
.y64{bottom:58.466068px;}
.yb6{bottom:59.166339px;}
.y1c2{bottom:59.948304px;}
.ya9{bottom:60.026888px;}
.y130{bottom:60.586200px;}
.yd2{bottom:61.663951px;}
.y20{bottom:61.851958px;}
.y135{bottom:61.942198px;}
.ye7{bottom:63.227664px;}
.y15c{bottom:64.028702px;}
.y109{bottom:64.080000px;}
.y114{bottom:64.341395px;}
.yec{bottom:64.642311px;}
.y15b{bottom:65.792699px;}
.y113{bottom:66.107642px;}
.y81{bottom:66.405960px;}
.ybd{bottom:66.850077px;}
.y79{bottom:67.477392px;}
.y131{bottom:68.210688px;}
.y35{bottom:68.241937px;}
.y13f{bottom:68.501597px;}
.yb1{bottom:68.638824px;}
.y3e{bottom:68.826936px;}
.y17b{bottom:69.170439px;}
.y147{bottom:69.646320px;}
.y187{bottom:69.741338px;}
.y1c1{bottom:70.033988px;}
.ycf{bottom:70.208237px;}
.ye8{bottom:71.175701px;}
.yf6{bottom:71.414242px;}
.yfe{bottom:72.606553px;}
.y14c{bottom:73.204165px;}
.y136{bottom:73.462180px;}
.yb7{bottom:73.715416px;}
.y32{bottom:73.745428px;}
.y15e{bottom:74.525685px;}
.y116{bottom:74.837628px;}
.y39{bottom:75.081926px;}
.yaa{bottom:75.186313px;}
.yc4{bottom:75.599713px;}
.y43{bottom:75.605429px;}
.y12{bottom:75.765779px;}
.y193{bottom:76.311328px;}
.y103{bottom:76.316302px;}
.yed{bottom:76.651742px;}
.yd5{bottom:76.851426px;}
.y21{bottom:76.943434px;}
.ybe{bottom:78.929707px;}
.y178{bottom:80.189296px;}
.y148{bottom:82.133801px;}
.y37{bottom:83.396413px;}
.y162{bottom:83.697315px;}
.y38{bottom:83.730912px;}
.y11a{bottom:84.012258px;}
.yff{bottom:85.625587px;}
.y16c{bottom:86.762711px;}
.y16{bottom:86.917361px;}
.y78{bottom:87.429160px;}
.yb8{bottom:88.267793px;}
.y155{bottom:88.576162px;}
.yb2{bottom:88.708792px;}
.y10d{bottom:88.888255px;}
.y2d{bottom:89.963402px;}
.y186{bottom:90.064506px;}
.y1c0{bottom:90.210756px;}
.yab{bottom:90.345289px;}
.ybf{bottom:91.012788px;}
.y166{bottom:91.089003px;}
.y1a5{bottom:91.372294px;}
.y11e{bottom:91.399896px;}
.y22{bottom:92.036410px;}
.y17a{bottom:92.553602px;}
.yc5{bottom:92.947785px;}
.y159{bottom:93.602654px;}
.y111{bottom:93.917747px;}
.y17{bottom:95.084848px;}
.y129{bottom:95.557144px;}
.y1de{bottom:95.771097px;}
.y2e{bottom:95.862893px;}
.y2b{bottom:96.004800px;}
.y11{bottom:96.313946px;}
.y192{bottom:96.634495px;}
.y3b{bottom:97.286391px;}
.y15f{bottom:99.323645px;}
.y117{bottom:99.635738px;}
.ye0{bottom:99.685255px;}
.y49{bottom:99.868790px;}
.y1bf{bottom:100.296440px;}
.y4{bottom:100.853239px;}
.y1a4{bottom:101.831957px;}
.yb9{bottom:102.816269px;}
.yc0{bottom:103.092269px;}
.y176{bottom:103.136994px;}
.y175{bottom:105.381366px;}
.y2f{bottom:105.470378px;}
.yac{bottom:105.502765px;}
.y61{bottom:106.249646px;}
.y23{bottom:107.124886px;}
.y15{bottom:107.243228px;}
.y77{bottom:107.378228px;}
.y174{bottom:107.788862px;}
.y63{bottom:108.590437px;}
.yb3{bottom:108.781760px;}
.y173{bottom:110.036053px;}
.yc6{bottom:110.296757px;}
.y1be{bottom:110.381973px;}
.y185{bottom:110.387673px;}
.y2c{bottom:110.390370px;}
.y1d3{bottom:110.468973px;}
.y60{bottom:110.929639px;}
.y6e{bottom:112.260887px;}
.y172{bottom:112.283245px;}
.y1a3{bottom:112.291620px;}
.y55{bottom:113.039819px;}
.y1ca{bottom:113.326619px;}
.y153{bottom:114.068622px;}
.y10b{bottom:114.383714px;}
.y171{bottom:114.690741px;}
.y152{bottom:115.649619px;}
.y5f{bottom:115.941506px;}
.y10a{bottom:115.964712px;}
.yae{bottom:116.688247px;}
.y191{bottom:116.960363px;}
.ycc{bottom:117.559411px;}
.y10{bottom:119.103559px;}
.y80{bottom:119.137309px;}
.yda{bottom:119.860158px;}
.y14a{bottom:120.018190px;}
.y1bd{bottom:120.470357px;}
.y1dd{bottom:120.580157px;}
.y5e{bottom:120.618693px;}
.y30{bottom:120.978853px;}
.y48{bottom:122.059455px;}
.y151{bottom:122.400000px;}
.y1a2{bottom:122.754104px;}
.y25{bottom:123.876859px;}
.y177{bottom:125.118724px;}
.y101{bottom:125.121574px;}
.y5d{bottom:125.298686px;}
.y125{bottom:126.720000px;}
.y1a{bottom:126.894240px;}
.y13a{bottom:126.919440px;}
.y1d2{bottom:128.401445px;}
.y82{bottom:129.048227px;}
.y5c{bottom:130.310553px;}
.y1bc{bottom:130.558891px;}
.y1c9{bottom:130.887841px;}
.y184{bottom:131.310390px;}
.y3{bottom:131.449590px;}
.y160{bottom:131.914843px;}
.y118{bottom:132.226936px;}
.y99{bottom:132.825221px;}
.y157{bottom:133.045091px;}
.y8b{bottom:133.357720px;}
.y10f{bottom:133.360184px;}
.y1a1{bottom:133.812746px;}
.y4f{bottom:133.902386px;}
.y91{bottom:134.467719px;}
.y154{bottom:134.761089px;}
.y16f{bottom:134.865360px;}
.y15d{bottom:135.044588px;}
.y10c{bottom:135.076181px;}
.y115{bottom:135.359681px;}
.y1b0{bottom:136.023202px;}
.y31{bottom:136.445328px;}
.yf{bottom:137.036031px;}
.y54{bottom:137.846029px;}
.y9e{bottom:137.938713px;}
.y12d{bottom:138.295076px;}
.y13d{bottom:140.734882px;}
.y127{bottom:140.959072px;}
.y3a{bottom:141.735820px;}
.y190{bottom:141.766873px;}
.y83{bottom:141.969207px;}
.y7f{bottom:142.075573px;}
.y13b{bottom:143.378628px;}
.ye4{bottom:144.244184px;}
.y1a0{bottom:144.272409px;}
.y6c{bottom:144.387655px;}
.yd9{bottom:144.666369px;}
.y47{bottom:144.997568px;}
.y1d1{bottom:146.333916px;}
.y92{bottom:146.407699px;}
.y1af{bottom:146.485686px;}
.yf4{bottom:146.718772px;}
.yde{bottom:147.020680px;}
.y76{bottom:147.279214px;}
.y6b{bottom:147.532025px;}
.y1dc{bottom:148.002063px;}
.y12c{bottom:148.175560px;}
.y8c{bottom:148.368196px;}
.yf2{bottom:149.477867px;}
.y62{bottom:150.695520px;}
.y1bb{bottom:150.733259px;}
.y6a{bottom:150.901395px;}
.y9f{bottom:151.236192px;}
.y9a{bottom:151.612691px;}
.y41{bottom:151.973303px;}
.y156{bottom:153.632558px;}
.y10e{bottom:153.944651px;}
.y69{bottom:154.045765px;}
.y4e{bottom:154.225553px;}
.ye3{bottom:154.543167px;}
.y19f{bottom:154.734892px;}
.y12a{bottom:154.765050px;}
.y126{bottom:154.811550px;}
.y84{bottom:154.890186px;}
.y128{bottom:156.152547px;}
.y1ae{bottom:156.945349px;}
.y68{bottom:157.192940px;}
.ye{bottom:157.583748px;}
.y93{bottom:158.346180px;}
.y53{bottom:160.543243px;}
.y67{bottom:160.562310px;}
.y1ba{bottom:160.817743px;}
.ye1{bottom:161.414656px;}
.ydd{bottom:161.462656px;}
.y18f{bottom:162.092741px;}
.y89{bottom:162.666173px;}
.ydf{bottom:162.860654px;}
.y8d{bottom:163.377172px;}
.y141{bottom:164.011095px;}
.y7e{bottom:164.266237px;}
.y1d0{bottom:164.266387px;}
.ya0{bottom:164.533670px;}
.y145{bottom:164.593319px;}
.y161{bottom:164.837885px;}
.y119{bottom:165.149978px;}
.y19e{bottom:165.194556px;}
.yca{bottom:165.844800px;}
.y1c8{bottom:166.004734px;}
.y75{bottom:166.853733px;}
.y46{bottom:167.188232px;}
.y1ad{bottom:167.405012px;}
.y85{bottom:167.809665px;}
.y183{bottom:168.601230px;}
.y1d6{bottom:168.839730px;}
.yd8{bottom:169.472729px;}
.y12b{bottom:169.556526px;}
.y170{bottom:170.051152px;}
.y1db{bottom:170.192728px;}
.y94{bottom:170.284661px;}
.y9b{bottom:170.400161px;}
.y1b9{bottom:170.906727px;}
.yf8{bottom:170.984983px;}
.yfc{bottom:171.592444px;}
.y4d{bottom:174.548721px;}
.y6d{bottom:175.164756px;}
.y19d{bottom:175.657039px;}
.ye2{bottom:176.836132px;}
.ya1{bottom:177.834149px;}
.y1ac{bottom:177.867495px;}
.y8e{bottom:178.387648px;}
.y164{bottom:179.642712px;}
.y11c{bottom:179.954805px;}
.y86{bottom:180.730645px;}
.y1b8{bottom:180.995710px;}
.y1cf{bottom:182.198858px;}
.y95{bottom:182.224642px;}
.y13c{bottom:182.826764px;}
.yd4{bottom:183.172156px;}
.y1c7{bottom:183.563706px;}
.y16a{bottom:185.428502px;}
.yd3{bottom:185.545902px;}
.y122{bottom:185.742245px;}
.y19c{bottom:186.116702px;}
.yd{bottom:186.350702px;}
.y142{bottom:186.890708px;}
.y18e{bottom:186.898801px;}
.y1ab{bottom:188.327159px;}
.y182{bottom:188.549698px;}
.y7d{bottom:189.076197px;}
.y9c{bottom:189.187631px;}
.y13e{bottom:190.156053px;}
.yf3{bottom:190.602101px;}
.y1b7{bottom:191.080194px;}
.ya2{bottom:191.131628px;}
.y45{bottom:191.998193px;}
.y8f{bottom:193.401124px;}
.y2{bottom:193.622690px;}
.y1d5{bottom:193.645190px;}
.y87{bottom:193.651624px;}
.y96{bottom:194.163123px;}
.yd7{bottom:194.278189px;}
.yf9{bottom:194.837795px;}
.y1da{bottom:194.998188px;}
.y4c{bottom:195.471287px;}
.y19b{bottom:197.175465px;}
.yf5{bottom:198.243689px;}
.y1aa{bottom:198.786822px;}
.y163{bottom:198.973031px;}
.y11b{bottom:199.287974px;}
.y1ce{bottom:200.134180px;}
.y74{bottom:200.378679px;}
.y1b6{bottom:201.166178px;}
.yc{bottom:204.286173px;}
.ya3{bottom:204.429107px;}
.y97{bottom:206.101604px;}
.y88{bottom:206.572603px;}
.y52{bottom:206.645669px;}
.y18d{bottom:207.221968px;}
.y5b{bottom:207.503429px;}
.y19a{bottom:207.635128px;}
.yce{bottom:207.854617px;}
.y9d{bottom:207.975101px;}
.y90{bottom:208.411600px;}
.y181{bottom:208.499216px;}
.y1a9{bottom:209.249305px;}
.y1b5{bottom:211.255162px;}
.y7c{bottom:213.881658px;}
.y4b{bottom:215.797155px;}
.y44{bottom:216.803653px;}
.ya4{bottom:217.729585px;}
.y98{bottom:218.038585px;}
.y1cd{bottom:218.066651px;}
.y199{bottom:218.097611px;}
.y1d4{bottom:218.455150px;}
.y1c6{bottom:218.683150px;}
.yd6{bottom:219.088149px;}
.y1a8{bottom:219.708968px;}
.y1d9{bottom:219.808148px;}
.yc8{bottom:220.195097px;}
.y1b4{bottom:221.344146px;}
.y8a{bottom:222.477078px;}
.yb{bottom:225.205140px;}
.y18c{bottom:227.545136px;}
.y180{bottom:228.451134px;}
.y198{bottom:228.557274px;}
.y1a7{bottom:230.168632px;}
.y1b3{bottom:231.428630px;}
.y51{bottom:231.451130px;}
.y107{bottom:233.870626px;}
.y1cc{bottom:235.999122px;}
.y1c5{bottom:236.240622px;}
.y66{bottom:238.065686px;}
.y197{bottom:239.016938px;}
.yc9{bottom:239.180567px;}
.y1a6{bottom:241.231114px;}
.y1b2{bottom:241.517614px;}
.y73{bottom:242.136213px;}
.y4a{bottom:243.221611px;}
.y1d8{bottom:244.613609px;}
.ya{bottom:244.633109px;}
.y17f{bottom:248.399603px;}
.y196{bottom:249.479421px;}
.y1b1{bottom:251.228598px;}
.y18b{bottom:252.350896px;}
.y1c4{bottom:253.426095px;}
.y1cb{bottom:254.531593px;}
.y50{bottom:256.261090px;}
.y1{bottom:258.881586px;}
.y59{bottom:259.610585px;}
.y195{bottom:259.939084px;}
.y72{bottom:262.462080px;}
.y9{bottom:264.059578px;}
.ydb{bottom:269.408569px;}
.y1d7{bottom:269.420569px;}
.y194{bottom:270.998566px;}
.y19{bottom:271.400566px;}
.y18a{bottom:272.674064px;}
.y108{bottom:280.999050px;}
.y71{bottom:283.381047px;}
.y8{bottom:283.489046px;}
.y2a{bottom:287.833039px;}
.y17e{bottom:287.926039px;}
.y7{bottom:302.540516px;}
.y16e{bottom:303.985014px;}
.y56{bottom:311.306502px;}
.y17d{bottom:311.428002px;}
.y58{bottom:325.687729px;}
.y124{bottom:334.506965px;}
.y150{bottom:339.000958px;}
.y6{bottom:352.586436px;}
.h5a{height:5.607665px;}
.h1c{height:7.850496px;}
.h59{height:9.346109px;}
.h52{height:10.302158px;}
.h4b{height:10.302160px;}
.h4f{height:10.302162px;}
.h4e{height:10.302163px;}
.h4c{height:10.302164px;}
.h53{height:10.302167px;}
.h4a{height:10.302168px;}
.h51{height:10.302169px;}
.h4d{height:10.305490px;}
.h50{height:10.305589px;}
.h54{height:10.307539px;}
.h35{height:10.740489px;}
.h31{height:10.740491px;}
.h32{height:10.740493px;}
.h2f{height:10.740494px;}
.h39{height:10.740496px;}
.h30{height:10.740497px;}
.h37{height:10.740498px;}
.h2e{height:10.744133px;}
.h38{height:10.744343px;}
.h33{height:10.745179px;}
.h34{height:10.745550px;}
.h36{height:10.747090px;}
.h2d{height:10.758086px;}
.h44{height:10.778678px;}
.h3f{height:10.778679px;}
.h46{height:10.778682px;}
.h45{height:10.778683px;}
.h3e{height:10.778684px;}
.h40{height:10.778685px;}
.h43{height:10.778687px;}
.h57{height:10.778688px;}
.h42{height:10.782413px;}
.h41{height:10.782569px;}
.h3d{height:10.792358px;}
.h14{height:10.955502px;}
.h19{height:11.677351px;}
.h15{height:12.371500px;}
.h1b{height:13.084159px;}
.h25{height:16.586548px;}
.h26{height:19.350980px;}
.h18{height:19.462280px;}
.hf{height:19.943584px;}
.h1f{height:20.308156px;}
.h56{height:20.604327px;}
.h10{height:21.368126px;}
.h3b{height:21.480986px;}
.h47{height:21.557366px;}
.h20{height:22.154383px;}
.h11{height:22.792668px;}
.h29{height:24.873378px;}
.h2b{height:24.879843px;}
.h5d{height:24.890687px;}
.h4{height:26.899157px;}
.h28{height:30.346061px;}
.h2a{height:30.347366px;}
.h9{height:31.378750px;}
.h7{height:31.384750px;}
.h6{height:35.849643px;}
.ha{height:35.861643px;}
.hb{height:35.865243px;}
.hd{height:35.865393px;}
.hc{height:35.865843px;}
.h8{height:35.867643px;}
.h21{height:39.908354px;}
.h22{height:41.144352px;}
.h5e{height:41.484200px;}
.h5{height:41.620883px;}
.h5b{height:41.621483px;}
.h48{height:43.461109px;}
.h16{height:43.785530px;}
.h5f{height:44.831628px;}
.h1d{height:45.425420px;}
.h27{height:47.466576px;}
.h23{height:47.720342px;}
.h3{height:49.090871px;}
.h5c{height:49.781373px;}
.h12{height:53.798314px;}
.h2{height:64.557797px;}
.he{height:129.560400px;}
.h13{height:163.684800px;}
.h58{height:181.926720px;}
.h55{height:194.385600px;}
.h49{height:195.120000px;}
.h3a{height:202.657680px;}
.h2c{height:203.040000px;}
.h3c{height:203.760000px;}
.h17{height:218.362320px;}
.h1e{height:233.204400px;}
.h1a{height:254.691360px;}
.h24{height:280.080000px;}
.h1{height:382.500000px;}
.h0{height:382.680000px;}
.w8{width:47.466576px;}
.w2{width:194.335200px;}
.w3{width:219.023280px;}
.wb{width:238.320000px;}
.w4{width:244.110960px;}
.wc{width:274.320000px;}
.w7{width:285.840000px;}
.wd{width:293.760000px;}
.we{width:304.455600px;}
.w9{width:306.720000px;}
.wa{width:317.410560px;}
.wf{width:329.779440px;}
.w5{width:461.680560px;}
.w6{width:583.011360px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x0{left:0.000000px;}
.x6c{left:1.779941px;}
.x13{left:5.392773px;}
.x57{left:6.868394px;}
.x12{left:8.062768px;}
.x17{left:9.483716px;}
.x11{left:11.403263px;}
.x5{left:12.754660px;}
.x2b{left:15.156576px;}
.x16{left:16.259074px;}
.x2d{left:18.508904px;}
.x34{left:20.415483px;}
.x10{left:21.418747px;}
.xd{left:24.322461px;}
.x35{left:27.157072px;}
.x36{left:29.407068px;}
.x30{left:30.954234px;}
.x6{left:32.622098px;}
.x87{left:34.492407px;}
.x86{left:35.510605px;}
.x28{left:36.545492px;}
.x14{left:37.801721px;}
.x3f{left:40.010492px;}
.x7e{left:41.289471px;}
.x78{left:42.816694px;}
.x44{left:44.915484px;}
.x6a{left:46.729019px;}
.x3e{left:48.650616px;}
.x64{left:50.502864px;}
.x2c{left:51.699384px;}
.x18{left:53.586345px;}
.x62{left:54.848357px;}
.x9{left:57.436708px;}
.x54{left:59.172006px;}
.x43{left:62.977255px;}
.x4{left:65.058646px;}
.x7{left:66.059894px;}
.x63{left:69.890333px;}
.x77{left:70.938799px;}
.x4f{left:72.815534px;}
.x75{left:74.435284px;}
.x7c{left:76.887264px;}
.x8d{left:79.022724px;}
.x1c{left:81.534151px;}
.x19{left:82.853248px;}
.x1d{left:85.285945px;}
.x1a{left:86.793142px;}
.x1b{left:89.737637px;}
.xa{left:90.874505px;}
.x52{left:94.154400px;}
.x73{left:95.927250px;}
.x8{left:99.348591px;}
.x71{left:100.892242px;}
.x55{left:101.952837px;}
.xf{left:103.287116px;}
.x60{left:105.894775px;}
.x25{left:106.981629px;}
.x33{left:109.240560px;}
.x69{left:113.174113px;}
.x3b{left:114.412317px;}
.x74{left:118.346214px;}
.x7d{left:120.652544px;}
.x7f{left:123.343990px;}
.x1f{left:126.319579px;}
.x8b{left:129.706566px;}
.x45{left:131.622096px;}
.x40{left:135.022590px;}
.x51{left:136.810232px;}
.x2a{left:138.838878px;}
.x68{left:141.737817px;}
.x2e{left:143.613803px;}
.x38{left:145.507267px;}
.x72{left:146.753168px;}
.x24{left:149.293542px;}
.x23{left:150.637540px;}
.x1{left:153.170755px;}
.x79{left:155.142214px;}
.x1e{left:157.854028px;}
.x2f{left:159.530278px;}
.x7a{left:161.796579px;}
.x31{left:162.876773px;}
.x15{left:165.618016px;}
.x53{left:167.854782px;}
.x6e{left:169.409173px;}
.x3a{left:170.896227px;}
.x61{left:174.303666px;}
.x21{left:176.612998px;}
.x20{left:178.271996px;}
.x83{left:181.616671px;}
.x6d{left:182.653551px;}
.x5b{left:190.002641px;}
.x80{left:192.207980px;}
.x88{left:193.221385px;}
.x39{left:194.461189px;}
.x84{left:195.850149px;}
.x7b{left:197.726171px;}
.x65{left:201.444321px;}
.x5c{left:204.845117px;}
.x22{left:209.825945px;}
.x5d{left:214.250102px;}
.x50{left:218.036160px;}
.x82{left:220.111110px;}
.x85{left:222.080607px;}
.x56{left:224.321742px;}
.x81{left:227.713098px;}
.x5a{left:230.135077px;}
.x5f{left:232.187073px;}
.x89{left:236.038816px;}
.x58{left:238.059564px;}
.x67{left:239.128911px;}
.x59{left:240.479060px;}
.x5e{left:242.025557px;}
.x66{left:246.081400px;}
.x37{left:248.312603px;}
.x8a{left:250.326023px;}
.x2{left:257.158089px;}
.x6b{left:260.976676px;}
.x46{left:262.970885px;}
.x48{left:268.901876px;}
.x8c{left:274.665866px;}
.xc{left:280.583551px;}
.x3{left:282.566248px;}
.x47{left:289.540493px;}
.x29{left:316.338544px;}
.x32{left:347.733944px;}
.x6f{left:352.053937px;}
.x41{left:356.483736px;}
.xb{left:360.693923px;}
.x26{left:364.100417px;}
.x76{left:367.200000px;}
.x70{left:372.960000px;}
.x49{left:376.252204px;}
.x27{left:380.462391px;}
.x4b{left:394.795174px;}
.x4a{left:402.821812px;}
.x3c{left:428.880814px;}
.x3d{left:445.242788px;}
.xe{left:461.652480px;}
.x4e{left:469.768055px;}
.x42{left:471.467552px;}
.x4c{left:489.535023px;}
.x4d{left:516.104630px;}
@media print{
.v2{vertical-align:-7.983987pt;}
.v1{vertical-align:-6.639989pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.258665pt;}
.v4{vertical-align:15.010109pt;}
.v5{vertical-align:16.879973pt;}
.v7{vertical-align:19.469994pt;}
.v6{vertical-align:22.725297pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000288pt;}
.ls7{letter-spacing:0.000376pt;}
.ls11{letter-spacing:0.000554pt;}
.ls17{letter-spacing:0.000736pt;}
.ls1c{letter-spacing:0.001037pt;}
.ls12{letter-spacing:0.001098pt;}
.ls13{letter-spacing:0.001216pt;}
.ls14{letter-spacing:0.001280pt;}
.ls1b{letter-spacing:0.001570pt;}
.ls15{letter-spacing:0.002048pt;}
.ls1a{letter-spacing:0.003320pt;}
.ls21{letter-spacing:0.003387pt;}
.lsc{letter-spacing:0.003853pt;}
.lsa{letter-spacing:0.004387pt;}
.ls20{letter-spacing:0.004453pt;}
.lsd{letter-spacing:0.004547pt;}
.ls1d{letter-spacing:0.004770pt;}
.ls23{letter-spacing:0.008720pt;}
.ls18{letter-spacing:0.009187pt;}
.ls1f{letter-spacing:0.010103pt;}
.ls1e{letter-spacing:0.042103pt;}
.ls10{letter-spacing:5.339966pt;}
.ls8{letter-spacing:10.038687pt;}
.ls9{letter-spacing:10.080360pt;}
.ls6{letter-spacing:12.559059pt;}
.lsf{letter-spacing:16.164349pt;}
.lse{letter-spacing:18.314817pt;}
.ls22{letter-spacing:27.891342pt;}
.ls3{letter-spacing:29.080329pt;}
.ls5{letter-spacing:29.085020pt;}
.ls4{letter-spacing:29.089287pt;}
.ls2{letter-spacing:29.093287pt;}
.ls1{letter-spacing:29.098887pt;}
.lsb{letter-spacing:30.542471pt;}
.ls19{letter-spacing:30.547804pt;}
.ws57{word-spacing:-22.911138pt;}
.ws6a{word-spacing:-17.853070pt;}
.ws43{word-spacing:-16.290897pt;}
.wsae{word-spacing:-14.877459pt;}
.ws89{word-spacing:-8.926535pt;}
.ws1a{word-spacing:-6.492150pt;}
.ws35{word-spacing:-3.963592pt;}
.ws56{word-spacing:-3.128872pt;}
.ws38{word-spacing:-2.664659pt;}
.ws19{word-spacing:-2.164794pt;}
.ws1b{word-spacing:-2.163288pt;}
.ws1c{word-spacing:-2.160561pt;}
.ws1d{word-spacing:-2.160003pt;}
.ws66{word-spacing:-1.903385pt;}
.ws98{word-spacing:-0.076513pt;}
.ws18{word-spacing:-0.063761pt;}
.ws6{word-spacing:-0.058182pt;}
.ws7{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.042507pt;}
.wse{word-spacing:0.000000pt;}
.ws96{word-spacing:2.817729pt;}
.wsac{word-spacing:3.064896pt;}
.ws62{word-spacing:3.078687pt;}
.ws79{word-spacing:3.078689pt;}
.ws7e{word-spacing:3.081132pt;}
.ws7b{word-spacing:3.083925pt;}
.ws78{word-spacing:3.084681pt;}
.ws68{word-spacing:3.084798pt;}
.ws69{word-spacing:3.085496pt;}
.ws81{word-spacing:3.086369pt;}
.ws7c{word-spacing:3.088579pt;}
.ws7f{word-spacing:3.142979pt;}
.ws82{word-spacing:3.179947pt;}
.ws8f{word-spacing:3.214043pt;}
.ws39{word-spacing:5.608255pt;}
.ws93{word-spacing:5.610136pt;}
.ws4{word-spacing:5.613101pt;}
.wsa1{word-spacing:7.998590pt;}
.wsaa{word-spacing:7.998622pt;}
.wsa6{word-spacing:7.999091pt;}
.ws9e{word-spacing:8.003659pt;}
.wsa2{word-spacing:8.095932pt;}
.ws8{word-spacing:8.129332pt;}
.ws9a{word-spacing:8.284823pt;}
.wsa{word-spacing:8.766277pt;}
.wsc3{word-spacing:9.658873pt;}
.ws3{word-spacing:11.248869pt;}
.ws95{word-spacing:11.249506pt;}
.ws94{word-spacing:11.253491pt;}
.ws86{word-spacing:11.254193pt;}
.ws92{word-spacing:11.255436pt;}
.ws80{word-spacing:12.796190pt;}
.wsb4{word-spacing:13.014310pt;}
.wsb2{word-spacing:13.015003pt;}
.wsb0{word-spacing:13.015750pt;}
.wsb5{word-spacing:13.020417pt;}
.ws48{word-spacing:14.249764pt;}
.ws45{word-spacing:14.250988pt;}
.ws6f{word-spacing:14.251684pt;}
.ws42{word-spacing:14.252055pt;}
.ws4a{word-spacing:14.253001pt;}
.ws46{word-spacing:14.253604pt;}
.ws6b{word-spacing:14.253759pt;}
.ws41{word-spacing:14.254015pt;}
.ws6c{word-spacing:14.254841pt;}
.ws40{word-spacing:14.255908pt;}
.ws4b{word-spacing:14.256321pt;}
.ws44{word-spacing:14.256908pt;}
.ws49{word-spacing:14.257268pt;}
.ws47{word-spacing:14.257801pt;}
.ws6e{word-spacing:14.258084pt;}
.ws6d{word-spacing:14.260761pt;}
.ws30{word-spacing:15.000342pt;}
.ws3b{word-spacing:15.000597pt;}
.ws31{word-spacing:15.002170pt;}
.ws20{word-spacing:15.005230pt;}
.wsb8{word-spacing:17.635740pt;}
.wsc{word-spacing:17.637281pt;}
.wsbb{word-spacing:17.639937pt;}
.ws9{word-spacing:17.640469pt;}
.wsb{word-spacing:17.641850pt;}
.wsba{word-spacing:17.643072pt;}
.wsd{word-spacing:17.644985pt;}
.wsb9{word-spacing:17.690999pt;}
.ws32{word-spacing:17.700298pt;}
.ws4d{word-spacing:19.311345pt;}
.wsc0{word-spacing:19.311403pt;}
.wsc4{word-spacing:19.311869pt;}
.ws13{word-spacing:19.311927pt;}
.ws2a{word-spacing:19.312102pt;}
.wsbe{word-spacing:19.312160pt;}
.ws15{word-spacing:19.312392pt;}
.ws5b{word-spacing:19.312567pt;}
.ws2e{word-spacing:19.312625pt;}
.ws2c{word-spacing:19.312800pt;}
.wsc2{word-spacing:19.312974pt;}
.wsf{word-spacing:19.313032pt;}
.wsc1{word-spacing:19.313207pt;}
.ws5a{word-spacing:19.313382pt;}
.ws10{word-spacing:19.313847pt;}
.ws21{word-spacing:19.313963pt;}
.ws23{word-spacing:19.314138pt;}
.ws2b{word-spacing:19.314429pt;}
.ws22{word-spacing:19.315069pt;}
.ws58{word-spacing:19.315709pt;}
.ws59{word-spacing:19.316000pt;}
.wsbc{word-spacing:19.316349pt;}
.ws25{word-spacing:19.317280pt;}
.wsc5{word-spacing:19.317512pt;}
.ws4c{word-spacing:19.317862pt;}
.ws2d{word-spacing:19.318676pt;}
.ws4e{word-spacing:19.318851pt;}
.ws2{word-spacing:19.319200pt;}
.ws26{word-spacing:19.320247pt;}
.ws27{word-spacing:19.320480pt;}
.ws24{word-spacing:19.321003pt;}
.wsbd{word-spacing:19.374880pt;}
.ws1{word-spacing:19.376102pt;}
.ws64{word-spacing:20.717468pt;}
.ws5d{word-spacing:20.718424pt;}
.ws34{word-spacing:20.720337pt;}
.ws36{word-spacing:20.720719pt;}
.ws3d{word-spacing:20.722314pt;}
.ws67{word-spacing:20.722441pt;}
.ws60{word-spacing:20.782631pt;}
.ws5f{word-spacing:20.782695pt;}
.ws61{word-spacing:20.793598pt;}
.ws4f{word-spacing:24.857984pt;}
.ws3c{word-spacing:24.858367pt;}
.ws2f{word-spacing:24.858750pt;}
.ws83{word-spacing:24.861274pt;}
.ws97{word-spacing:24.862193pt;}
.ws65{word-spacing:24.862346pt;}
.wsad{word-spacing:24.862422pt;}
.ws0{word-spacing:24.862728pt;}
.ws3a{word-spacing:24.862805pt;}
.ws5{word-spacing:24.862881pt;}
.ws37{word-spacing:24.863264pt;}
.ws14{word-spacing:24.863493pt;}
.ws11{word-spacing:24.863570pt;}
.ws63{word-spacing:24.864871pt;}
.ws29{word-spacing:24.864947pt;}
.ws33{word-spacing:24.866401pt;}
.ws17{word-spacing:24.866707pt;}
.ws55{word-spacing:24.867242pt;}
.ws76{word-spacing:24.869920pt;}
.ws90{word-spacing:24.869997pt;}
.ws5c{word-spacing:24.873057pt;}
.ws9f{word-spacing:24.923651pt;}
.wsa3{word-spacing:24.935597pt;}
.wsbf{word-spacing:24.940006pt;}
.ws5e{word-spacing:24.945745pt;}
.wsa7{word-spacing:24.957891pt;}
.wsab{word-spacing:24.958211pt;}
.ws77{word-spacing:32.174226pt;}
.ws7a{word-spacing:32.175119pt;}
.ws7d{word-spacing:32.178079pt;}
.wsb1{word-spacing:40.909225pt;}
.wsb3{word-spacing:40.911999pt;}
.wsa4{word-spacing:41.891517pt;}
.ws9b{word-spacing:41.895570pt;}
.ws52{word-spacing:46.243309pt;}
.ws51{word-spacing:46.245209pt;}
.ws53{word-spacing:46.253380pt;}
.ws50{word-spacing:46.816285pt;}
.ws8e{word-spacing:55.122007pt;}
.ws54{word-spacing:55.216362pt;}
.ws1e{word-spacing:57.992916pt;}
.wsa5{word-spacing:58.815437pt;}
.ws1f{word-spacing:58.964629pt;}
.wsb7{word-spacing:63.704748pt;}
.ws3e{word-spacing:63.707878pt;}
.ws3f{word-spacing:63.710788pt;}
.ws87{word-spacing:63.725259pt;}
.ws88{word-spacing:63.754326pt;}
.ws8d{word-spacing:63.766818pt;}
.ws8b{word-spacing:64.015371pt;}
.ws73{word-spacing:78.020739pt;}
.ws16{word-spacing:84.423463pt;}
.wsa8{word-spacing:92.672449pt;}
.ws99{word-spacing:92.672662pt;}
.ws9d{word-spacing:109.633915pt;}
.ws9c{word-spacing:126.568501pt;}
.wsb6{word-spacing:141.123324pt;}
.wsa0{word-spacing:143.497754pt;}
.ws8a{word-spacing:162.778078pt;}
.wsa9{word-spacing:177.386234pt;}
.ws28{word-spacing:189.090764pt;}
.ws85{word-spacing:193.573825pt;}
.ws8c{word-spacing:241.366842pt;}
.ws91{word-spacing:263.328002pt;}
.ws84{word-spacing:285.267831pt;}
.wsaf{word-spacing:403.551418pt;}
.ws75{word-spacing:562.380538pt;}
.ws72{word-spacing:598.750546pt;}
.ws74{word-spacing:655.474309pt;}
.ws71{word-spacing:812.568564pt;}
.ws70{word-spacing:1620.944212pt;}
._f{margin-left:-134.345148pt;}
._10{margin-left:-99.852325pt;}
._11{margin-left:-4.835929pt;}
._9{margin-left:-3.385724pt;}
._0{margin-left:-2.068436pt;}
._2{margin-left:-0.918496pt;}
._1{width:1.630933pt;}
._1d{width:2.833499pt;}
._3{width:11.278741pt;}
._8{width:15.674492pt;}
._7{width:17.083995pt;}
._39{width:19.368845pt;}
._1c{width:20.458051pt;}
._a{width:21.877642pt;}
._16{width:25.832816pt;}
._25{width:33.286803pt;}
._22{width:57.298736pt;}
._17{width:63.762275pt;}
._14{width:70.723776pt;}
._18{width:76.278445pt;}
._e{width:78.482139pt;}
._2f{width:88.490744pt;}
._d{width:90.360988pt;}
._21{width:95.126558pt;}
._28{width:108.389177pt;}
._30{width:111.728740pt;}
._15{width:126.428784pt;}
._19{width:145.397049pt;}
._36{width:148.202244pt;}
._2e{width:152.441470pt;}
._2d{width:170.941063pt;}
._37{width:185.553551pt;}
._12{width:193.799916pt;}
._1f{width:197.878675pt;}
._1e{width:206.913565pt;}
._6{width:223.843377pt;}
._32{width:241.371595pt;}
._31{width:263.301605pt;}
._2c{width:289.824508pt;}
._20{width:302.307841pt;}
._13{width:308.015338pt;}
._1b{width:312.428926pt;}
._4{width:332.446940pt;}
._5{width:337.150347pt;}
._24{width:339.156078pt;}
._23{width:401.755964pt;}
._35{width:404.975212pt;}
._c{width:425.131225pt;}
._38{width:436.700968pt;}
._34{width:444.583674pt;}
._b{width:505.765830pt;}
._1a{width:536.253985pt;}
._33{width:548.019090pt;}
._2b{width:621.921261pt;}
._29{width:670.629352pt;}
._2a{width:681.086944pt;}
._27{width:693.196059pt;}
._26{width:818.244459pt;}
.fs35{font-size:6.846709pt;}
.fse{font-size:9.585105pt;}
.fs31{font-size:9.639446pt;}
.fs2c{font-size:9.639448pt;}
.fs2e{font-size:9.639449pt;}
.fs2f{font-size:9.639451pt;}
.fs2d{font-size:9.639452pt;}
.fs32{font-size:9.639454pt;}
.fs2b{font-size:9.639455pt;}
.fs30{font-size:9.639456pt;}
.fs1e{font-size:10.049578pt;}
.fs18{font-size:10.049580pt;}
.fs1a{font-size:10.049582pt;}
.fs1c{font-size:10.049584pt;}
.fs19{font-size:10.049585pt;}
.fs1b{font-size:10.049586pt;}
.fs1f{font-size:10.049587pt;}
.fs17{font-size:10.049588pt;}
.fs1d{font-size:10.049589pt;}
.fs27{font-size:10.085313pt;}
.fs23{font-size:10.085314pt;}
.fs29{font-size:10.085316pt;}
.fs28{font-size:10.085317pt;}
.fs22{font-size:10.085319pt;}
.fs24{font-size:10.085320pt;}
.fs25{font-size:10.085321pt;}
.fs21{font-size:10.085322pt;}
.fs26{font-size:10.085322pt;}
.fs34{font-size:11.411182pt;}
.fsa{font-size:12.984299pt;}
.fsc{font-size:14.257524pt;}
.fsd{font-size:15.975174pt;}
.fs6{font-size:18.660663pt;}
.fsf{font-size:19.001783pt;}
.fs33{font-size:19.278902pt;}
.fs7{font-size:19.993568pt;}
.fs20{font-size:20.099168pt;}
.fs2a{font-size:20.170634pt;}
.fs11{font-size:20.251434pt;}
.fs10{font-size:20.729247pt;}
.fs8{font-size:21.326473pt;}
.fs12{font-size:23.626682pt;}
.fsb{font-size:23.762575pt;}
.fs14{font-size:30.369285pt;}
.fs16{font-size:30.377178pt;}
.fs2{font-size:31.880482pt;}
.fs13{font-size:35.965702pt;}
.fs15{font-size:35.967249pt;}
.fs5{font-size:42.507132pt;}
.fs4{font-size:47.820723pt;}
.fs3{font-size:53.133782pt;}
.fs1{font-size:58.181774pt;}
.fs9{font-size:63.760965pt;}
.fs0{font-size:76.512944pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.147195pt;}
.y1c{bottom:2.042403pt;}
.ycd{bottom:2.199494pt;}
.ycb{bottom:2.202161pt;}
.yd1{bottom:2.499951pt;}
.y14d{bottom:3.540467pt;}
.y5{bottom:3.542488pt;}
.y167{bottom:3.583060pt;}
.y104{bottom:3.689349pt;}
.y11f{bottom:3.859409pt;}
.y14e{bottom:4.555466pt;}
.y105{bottom:4.746847pt;}
.y165{bottom:6.410656pt;}
.y11d{bottom:6.689405pt;}
.ya6{bottom:6.804868pt;}
.y1b{bottom:8.139993pt;}
.y139{bottom:12.099800pt;}
.yf0{bottom:12.669904pt;}
.ya5{bottom:12.882365pt;}
.y1d{bottom:14.737449pt;}
.y40{bottom:15.317172pt;}
.y70{bottom:16.322507pt;}
.y29{bottom:18.017444pt;}
.y3f{bottom:19.619699pt;}
.y168{bottom:19.970501pt;}
.y14b{bottom:20.180441pt;}
.y120{bottom:20.249383pt;}
.yc1{bottom:20.937285pt;}
.y102{bottom:21.036788pt;}
.y3d{bottom:21.442229pt;}
.y57{bottom:21.479966pt;}
.y146{bottom:22.717903pt;}
.y14f{bottom:23.310502pt;}
.yfd{bottom:23.684290pt;}
.y137{bottom:23.777115pt;}
.y106{bottom:24.301749pt;}
.yee{bottom:24.844818pt;}
.y28{bottom:24.864900pt;}
.yaf{bottom:25.327278pt;}
.y138{bottom:25.762445pt;}
.y189{bottom:25.859825pt;}
.y5a{bottom:26.037504pt;}
.ya7{bottom:26.409810pt;}
.yb4{bottom:26.724876pt;}
.yef{bottom:26.914814pt;}
.y7a{bottom:27.197423pt;}
.yba{bottom:27.204875pt;}
.y1e{bottom:28.152894pt;}
.yc7{bottom:28.160000pt;}
.y36{bottom:30.302215pt;}
.y12f{bottom:30.807770pt;}
.y179{bottom:31.339438pt;}
.y27{bottom:31.712889pt;}
.ye6{bottom:32.174806pt;}
.y169{bottom:35.355543pt;}
.y14{bottom:35.467410pt;}
.y121{bottom:35.631892pt;}
.yc2{bottom:36.359794pt;}
.y34{bottom:37.354737pt;}
.ybb{bottom:37.944858pt;}
.yd0{bottom:38.357360pt;}
.y26{bottom:38.556878pt;}
.y134{bottom:39.082424pt;}
.y17c{bottom:39.434870pt;}
.y3c{bottom:39.537267pt;}
.y15a{bottom:39.605096pt;}
.yb5{bottom:39.657389pt;}
.y149{bottom:39.747876pt;}
.y112{bottom:39.884778pt;}
.ya8{bottom:39.884855pt;}
.y143{bottom:40.517808pt;}
.y144{bottom:40.682808pt;}
.yeb{bottom:40.799859pt;}
.y100{bottom:41.436755pt;}
.y1f{bottom:41.567540pt;}
.y16b{bottom:41.568066pt;}
.y123{bottom:41.844415pt;}
.yfa{bottom:42.239360pt;}
.yfb{bottom:42.411860pt;}
.y18{bottom:42.877398pt;}
.yb0{bottom:43.169783pt;}
.y6f{bottom:43.874878pt;}
.y188{bottom:43.927263pt;}
.y1c3{bottom:44.319929pt;}
.y133{bottom:45.009081pt;}
.y140{bottom:45.947799pt;}
.y12e{bottom:46.449079pt;}
.y132{bottom:46.511745pt;}
.yea{bottom:46.982382pt;}
.y16d{bottom:47.324858pt;}
.ydc{bottom:47.360000pt;}
.y65{bottom:47.534976pt;}
.yf1{bottom:47.602496pt;}
.yf7{bottom:47.899351pt;}
.y24{bottom:48.332862pt;}
.ye5{bottom:48.482380pt;}
.ye9{bottom:48.547313pt;}
.ybc{bottom:48.682308pt;}
.y7b{bottom:49.792454pt;}
.y158{bottom:50.347745pt;}
.yad{bottom:50.557238pt;}
.y110{bottom:50.624761pt;}
.y13{bottom:51.407384pt;}
.y33{bottom:51.770181pt;}
.yc3{bottom:51.779769pt;}
.y64{bottom:51.969838pt;}
.yb6{bottom:52.592301pt;}
.y1c2{bottom:53.287381pt;}
.ya9{bottom:53.357234pt;}
.y130{bottom:53.854400pt;}
.yd2{bottom:54.812401pt;}
.y20{bottom:54.979518pt;}
.y135{bottom:55.059732pt;}
.ye7{bottom:56.202368pt;}
.y15c{bottom:56.914402pt;}
.y109{bottom:56.960000pt;}
.y114{bottom:57.192351pt;}
.yec{bottom:57.459832pt;}
.y15b{bottom:58.482399pt;}
.y113{bottom:58.762348pt;}
.y81{bottom:59.027520pt;}
.ybd{bottom:59.422290pt;}
.y79{bottom:59.979904pt;}
.y131{bottom:60.631723pt;}
.y35{bottom:60.659500pt;}
.y13f{bottom:60.890309pt;}
.yb1{bottom:61.012288pt;}
.y3e{bottom:61.179499pt;}
.y17b{bottom:61.484835pt;}
.y147{bottom:61.907840pt;}
.y187{bottom:61.992301pt;}
.y1c1{bottom:62.252434pt;}
.ycf{bottom:62.407322pt;}
.ye8{bottom:63.267290pt;}
.yf6{bottom:63.479326pt;}
.yfe{bottom:64.539158pt;}
.y14c{bottom:65.070369pt;}
.y136{bottom:65.299715pt;}
.yb7{bottom:65.524814pt;}
.y32{bottom:65.551492pt;}
.y15e{bottom:66.245053pt;}
.y116{bottom:66.522336pt;}
.y39{bottom:66.739490pt;}
.yaa{bottom:66.832279pt;}
.yc4{bottom:67.199745pt;}
.y43{bottom:67.204826pt;}
.y12{bottom:67.347359pt;}
.y193{bottom:67.832291pt;}
.y103{bottom:67.836713pt;}
.yed{bottom:68.134882pt;}
.yd5{bottom:68.312379pt;}
.y21{bottom:68.394163pt;}
.ybe{bottom:70.159740pt;}
.y178{bottom:71.279374pt;}
.y148{bottom:73.007823pt;}
.y37{bottom:74.130145pt;}
.y162{bottom:74.397614pt;}
.y38{bottom:74.427478pt;}
.y11a{bottom:74.677563pt;}
.yff{bottom:76.111633pt;}
.y16c{bottom:77.122410pt;}
.y16{bottom:77.259876pt;}
.y78{bottom:77.714809pt;}
.yb8{bottom:78.460260pt;}
.y155{bottom:78.734367pt;}
.yb2{bottom:78.852259pt;}
.y10d{bottom:79.011782pt;}
.y2d{bottom:79.967469pt;}
.y186{bottom:80.057339pt;}
.y1c0{bottom:80.187338pt;}
.yab{bottom:80.306924pt;}
.ybf{bottom:80.900256pt;}
.y166{bottom:80.968003pt;}
.y1a5{bottom:81.219817pt;}
.y11e{bottom:81.244352pt;}
.y22{bottom:81.810142pt;}
.y17a{bottom:82.269868pt;}
.yc5{bottom:82.620253pt;}
.y159{bottom:83.202359pt;}
.y111{bottom:83.482442pt;}
.y17{bottom:84.519865pt;}
.y129{bottom:84.939684pt;}
.y1de{bottom:85.129864pt;}
.y2e{bottom:85.211460pt;}
.y2b{bottom:85.337600pt;}
.y11{bottom:85.612396pt;}
.y192{bottom:85.897329pt;}
.y3b{bottom:86.476792pt;}
.y15f{bottom:88.287685pt;}
.y117{bottom:88.565100pt;}
.ye0{bottom:88.609116pt;}
.y49{bottom:88.772258pt;}
.y1bf{bottom:89.152391pt;}
.y4{bottom:89.647323pt;}
.y1a4{bottom:90.517295pt;}
.yb9{bottom:91.392239pt;}
.yc0{bottom:91.637572pt;}
.y176{bottom:91.677328pt;}
.y175{bottom:93.672325pt;}
.y2f{bottom:93.751447pt;}
.yac{bottom:93.780236pt;}
.y61{bottom:94.444130pt;}
.y23{bottom:95.222121pt;}
.y15{bottom:95.327314pt;}
.y77{bottom:95.447314pt;}
.y174{bottom:95.812322pt;}
.y63{bottom:96.524833pt;}
.yb3{bottom:96.694898pt;}
.y173{bottom:97.809825pt;}
.yc6{bottom:98.041562pt;}
.y1be{bottom:98.117310pt;}
.y185{bottom:98.122376pt;}
.y2c{bottom:98.124773pt;}
.y1d3{bottom:98.194643pt;}
.y60{bottom:98.604123pt;}
.y6e{bottom:99.787455pt;}
.y172{bottom:99.807328pt;}
.y1a3{bottom:99.814774pt;}
.y55{bottom:100.479839pt;}
.y1ca{bottom:100.734772pt;}
.y153{bottom:101.394330pt;}
.y10b{bottom:101.674413pt;}
.y171{bottom:101.947325pt;}
.y152{bottom:102.799661pt;}
.y5f{bottom:103.059116pt;}
.y10a{bottom:103.079744pt;}
.yae{bottom:103.722886pt;}
.y191{bottom:103.964767pt;}
.ycc{bottom:104.497254pt;}
.y10{bottom:105.869831pt;}
.y80{bottom:105.899831pt;}
.yda{bottom:106.542363pt;}
.y14a{bottom:106.682835pt;}
.y1bd{bottom:107.084762pt;}
.y1dd{bottom:107.182362pt;}
.y5e{bottom:107.216616pt;}
.y30{bottom:107.536758pt;}
.y48{bottom:108.497293pt;}
.y151{bottom:108.800000pt;}
.y1a2{bottom:109.114759pt;}
.y25{bottom:110.112763pt;}
.y177{bottom:111.216644pt;}
.y101{bottom:111.219177pt;}
.y5d{bottom:111.376609pt;}
.y125{bottom:112.640000pt;}
.y1a{bottom:112.794880pt;}
.y13a{bottom:112.817280pt;}
.y1d2{bottom:114.134617pt;}
.y82{bottom:114.709535pt;}
.y5c{bottom:115.831602pt;}
.y1bc{bottom:116.052348pt;}
.y1c9{bottom:116.344747pt;}
.y184{bottom:116.720347pt;}
.y3{bottom:116.844080pt;}
.y160{bottom:117.257638pt;}
.y118{bottom:117.535054pt;}
.y99{bottom:118.066863pt;}
.y157{bottom:118.262303pt;}
.y8b{bottom:118.540196pt;}
.y10f{bottom:118.542386pt;}
.y1a1{bottom:118.944663pt;}
.y4f{bottom:119.024343pt;}
.y91{bottom:119.526861pt;}
.y154{bottom:119.787634pt;}
.y16f{bottom:119.880320pt;}
.y15d{bottom:120.039634pt;}
.y10c{bottom:120.067717pt;}
.y115{bottom:120.319716pt;}
.y1b0{bottom:120.909513pt;}
.y31{bottom:121.284736pt;}
.yf{bottom:121.809805pt;}
.y54{bottom:122.529804pt;}
.y9e{bottom:122.612189pt;}
.y12d{bottom:122.928956pt;}
.y13d{bottom:125.097673pt;}
.y127{bottom:125.296953pt;}
.y3a{bottom:125.987395pt;}
.y190{bottom:126.014998pt;}
.y83{bottom:126.194850pt;}
.y7f{bottom:126.289398pt;}
.y13b{bottom:127.447669pt;}
.ye4{bottom:128.217052pt;}
.y1a0{bottom:128.242141pt;}
.y6c{bottom:128.344583pt;}
.yd9{bottom:128.592328pt;}
.y47{bottom:128.886727pt;}
.y1d1{bottom:130.074592pt;}
.y92{bottom:130.140177pt;}
.y1af{bottom:130.209498pt;}
.yf4{bottom:130.416686pt;}
.yde{bottom:130.685048pt;}
.y76{bottom:130.914857pt;}
.y6b{bottom:131.139578pt;}
.y1dc{bottom:131.557390pt;}
.y12c{bottom:131.711609pt;}
.y8c{bottom:131.882841pt;}
.yf2{bottom:132.869215pt;}
.y62{bottom:133.951573pt;}
.y1bb{bottom:133.985119pt;}
.y6a{bottom:134.134573pt;}
.y9f{bottom:134.432170pt;}
.y9a{bottom:134.766837pt;}
.y41{bottom:135.087381pt;}
.y156{bottom:136.562274pt;}
.y10e{bottom:136.839690pt;}
.y69{bottom:136.929569pt;}
.y4e{bottom:137.089381pt;}
.ye3{bottom:137.371704pt;}
.y19f{bottom:137.542127pt;}
.y12a{bottom:137.568933pt;}
.y126{bottom:137.610266pt;}
.y84{bottom:137.680165pt;}
.y128{bottom:138.802264pt;}
.y1ae{bottom:139.506977pt;}
.y68{bottom:139.727058pt;}
.ye{bottom:140.074443pt;}
.y93{bottom:140.752160pt;}
.y53{bottom:142.705105pt;}
.y67{bottom:142.722053pt;}
.y1ba{bottom:142.949105pt;}
.ye1{bottom:143.479695pt;}
.ydd{bottom:143.522361pt;}
.y18f{bottom:144.082436pt;}
.y89{bottom:144.592154pt;}
.ydf{bottom:144.765026pt;}
.y8d{bottom:145.224153pt;}
.y141{bottom:145.787640pt;}
.y7e{bottom:146.014433pt;}
.y1d0{bottom:146.014566pt;}
.ya0{bottom:146.252152pt;}
.y145{bottom:146.305172pt;}
.y161{bottom:146.522565pt;}
.y119{bottom:146.799981pt;}
.y19e{bottom:146.839605pt;}
.yca{bottom:147.417600pt;}
.y1c8{bottom:147.559764pt;}
.y75{bottom:148.314429pt;}
.y46{bottom:148.611762pt;}
.y1ad{bottom:148.804455pt;}
.y85{bottom:149.164147pt;}
.y183{bottom:149.867760pt;}
.y1d6{bottom:150.079760pt;}
.yd8{bottom:150.642426pt;}
.y12b{bottom:150.716912pt;}
.y170{bottom:151.156580pt;}
.y1db{bottom:151.282425pt;}
.y94{bottom:151.364143pt;}
.y9b{bottom:151.466810pt;}
.y1b9{bottom:151.917090pt;}
.yf8{bottom:151.986651pt;}
.yfc{bottom:152.526617pt;}
.y4d{bottom:155.154418pt;}
.y6d{bottom:155.702005pt;}
.y19d{bottom:156.139590pt;}
.ye2{bottom:157.187673pt;}
.ya1{bottom:158.074799pt;}
.y1ac{bottom:158.104440pt;}
.y8e{bottom:158.566799pt;}
.y164{bottom:159.682410pt;}
.y11c{bottom:159.959826pt;}
.y86{bottom:160.649462pt;}
.y1b8{bottom:160.885076pt;}
.y1cf{bottom:161.954541pt;}
.y95{bottom:161.977460pt;}
.y13c{bottom:162.512679pt;}
.yd4{bottom:162.819694pt;}
.y1c7{bottom:163.167739pt;}
.y16a{bottom:164.825336pt;}
.yd3{bottom:164.929691pt;}
.y122{bottom:165.104218pt;}
.y19c{bottom:165.437069pt;}
.yd{bottom:165.645068pt;}
.y142{bottom:166.125074pt;}
.y18e{bottom:166.132268pt;}
.y1ab{bottom:167.401919pt;}
.y182{bottom:167.599732pt;}
.y7d{bottom:168.067731pt;}
.y9c{bottom:168.166783pt;}
.y13e{bottom:169.027602pt;}
.yf3{bottom:169.424090pt;}
.y1b7{bottom:169.849062pt;}
.ya2{bottom:169.894780pt;}
.y45{bottom:170.665060pt;}
.y8f{bottom:171.912110pt;}
.y2{bottom:172.109058pt;}
.y1d5{bottom:172.129058pt;}
.y87{bottom:172.134777pt;}
.y96{bottom:172.589443pt;}
.yd7{bottom:172.691724pt;}
.yf9{bottom:173.189151pt;}
.y1da{bottom:173.331723pt;}
.y4c{bottom:173.752255pt;}
.y19b{bottom:175.267080pt;}
.yf5{bottom:176.216613pt;}
.y1aa{bottom:176.699397pt;}
.y163{bottom:176.864916pt;}
.y11b{bottom:177.144865pt;}
.y1ce{bottom:177.897049pt;}
.y74{bottom:178.114382pt;}
.y1b6{bottom:178.814381pt;}
.yc{bottom:181.587709pt;}
.ya3{bottom:181.714761pt;}
.y97{bottom:183.201426pt;}
.y88{bottom:183.620092pt;}
.y52{bottom:183.685039pt;}
.y18d{bottom:184.197305pt;}
.y5b{bottom:184.447493pt;}
.y19a{bottom:184.564558pt;}
.yce{bottom:184.759659pt;}
.y9d{bottom:184.866756pt;}
.y90{bottom:185.254756pt;}
.y181{bottom:185.332637pt;}
.y1a9{bottom:185.999382pt;}
.y1b5{bottom:187.782366pt;}
.y7c{bottom:190.117029pt;}
.y4b{bottom:191.819693pt;}
.y44{bottom:192.714358pt;}
.ya4{bottom:193.537409pt;}
.y98{bottom:193.812075pt;}
.y1cd{bottom:193.837023pt;}
.y199{bottom:193.864543pt;}
.y1d4{bottom:194.182356pt;}
.y1c6{bottom:194.385022pt;}
.yd6{bottom:194.745022pt;}
.y1a8{bottom:195.296861pt;}
.y1d9{bottom:195.385021pt;}
.yc8{bottom:195.728975pt;}
.y1b4{bottom:196.750352pt;}
.y8a{bottom:197.757402pt;}
.yb{bottom:200.182346pt;}
.y18c{bottom:202.262343pt;}
.y180{bottom:203.067675pt;}
.y198{bottom:203.162022pt;}
.y1a7{bottom:204.594339pt;}
.y1b3{bottom:205.714338pt;}
.y51{bottom:205.734337pt;}
.y107{bottom:207.885001pt;}
.y1cc{bottom:209.776998pt;}
.y1c5{bottom:209.991664pt;}
.y66{bottom:211.613943pt;}
.y197{bottom:212.459500pt;}
.yc9{bottom:212.604948pt;}
.y1a6{bottom:214.427657pt;}
.y1b2{bottom:214.682323pt;}
.y73{bottom:215.232189pt;}
.y4a{bottom:216.196987pt;}
.y1d8{bottom:217.434319pt;}
.ya{bottom:217.451652pt;}
.y17f{bottom:220.799647pt;}
.y196{bottom:221.759485pt;}
.y1b1{bottom:223.314309pt;}
.y18b{bottom:224.311908pt;}
.y1c4{bottom:225.267640pt;}
.y1cb{bottom:226.250305pt;}
.y50{bottom:227.787636pt;}
.y1{bottom:230.116965pt;}
.y59{bottom:230.764964pt;}
.y195{bottom:231.056964pt;}
.y72{bottom:233.299627pt;}
.y9{bottom:234.719624pt;}
.ydb{bottom:239.474284pt;}
.y1d7{bottom:239.484950pt;}
.y194{bottom:240.887615pt;}
.y19{bottom:241.244947pt;}
.y18a{bottom:242.376946pt;}
.y108{bottom:249.776934pt;}
.y71{bottom:251.894264pt;}
.y8{bottom:251.990263pt;}
.y2a{bottom:255.851591pt;}
.y17e{bottom:255.934257pt;}
.y7{bottom:268.924903pt;}
.y16e{bottom:270.208901pt;}
.y56{bottom:276.716891pt;}
.y17d{bottom:276.824890pt;}
.y58{bottom:289.500203pt;}
.y124{bottom:297.339524pt;}
.y150{bottom:301.334185pt;}
.y6{bottom:313.410165pt;}
.h5a{height:4.984591pt;}
.h1c{height:6.978218pt;}
.h59{height:8.307652pt;}
.h52{height:9.157474pt;}
.h4b{height:9.157475pt;}
.h4f{height:9.157477pt;}
.h4e{height:9.157478pt;}
.h4c{height:9.157479pt;}
.h53{height:9.157481pt;}
.h4a{height:9.157482pt;}
.h51{height:9.157483pt;}
.h4d{height:9.160436pt;}
.h50{height:9.160523pt;}
.h54{height:9.162257pt;}
.h35{height:9.547102pt;}
.h31{height:9.547103pt;}
.h32{height:9.547104pt;}
.h2f{height:9.547105pt;}
.h39{height:9.547108pt;}
.h30{height:9.547109pt;}
.h37{height:9.547110pt;}
.h2e{height:9.550341pt;}
.h38{height:9.550527pt;}
.h33{height:9.551270pt;}
.h34{height:9.551600pt;}
.h36{height:9.552969pt;}
.h2d{height:9.562743pt;}
.h44{height:9.581047pt;}
.h3f{height:9.581048pt;}
.h46{height:9.581050pt;}
.h45{height:9.581051pt;}
.h3e{height:9.581053pt;}
.h40{height:9.581054pt;}
.h43{height:9.581055pt;}
.h57{height:9.581056pt;}
.h42{height:9.584367pt;}
.h41{height:9.584506pt;}
.h3d{height:9.593207pt;}
.h14{height:9.738224pt;}
.h19{height:10.379867pt;}
.h15{height:10.996889pt;}
.h1b{height:11.630364pt;}
.h25{height:14.743598pt;}
.h26{height:17.200871pt;}
.h18{height:17.299805pt;}
.hf{height:17.727630pt;}
.h1f{height:18.051694pt;}
.h56{height:18.314957pt;}
.h10{height:18.993890pt;}
.h3b{height:19.094209pt;}
.h47{height:19.162103pt;}
.h20{height:19.692784pt;}
.h11{height:20.260149pt;}
.h29{height:22.109670pt;}
.h2b{height:22.115416pt;}
.h5d{height:22.125055pt;}
.h4{height:23.910362pt;}
.h28{height:26.974277pt;}
.h2a{height:26.975437pt;}
.h9{height:27.892222pt;}
.h7{height:27.897555pt;}
.h6{height:31.866349pt;}
.ha{height:31.877016pt;}
.hb{height:31.880216pt;}
.hd{height:31.880349pt;}
.hc{height:31.880749pt;}
.h8{height:31.882349pt;}
.h21{height:35.474093pt;}
.h22{height:36.572757pt;}
.h5e{height:36.874844pt;}
.h5{height:36.996341pt;}
.h5b{height:36.996874pt;}
.h48{height:38.632096pt;}
.h16{height:38.920471pt;}
.h5f{height:39.850336pt;}
.h1d{height:40.378151pt;}
.h27{height:42.192512pt;}
.h23{height:42.418081pt;}
.h3{height:43.636330pt;}
.h5c{height:44.250109pt;}
.h12{height:47.820723pt;}
.h2{height:57.384708pt;}
.he{height:115.164800pt;}
.h13{height:145.497600pt;}
.h58{height:161.712640pt;}
.h55{height:172.787200pt;}
.h49{height:173.440000pt;}
.h3a{height:180.140160pt;}
.h2c{height:180.480000pt;}
.h3c{height:181.120000pt;}
.h17{height:194.099840pt;}
.h1e{height:207.292800pt;}
.h1a{height:226.392320pt;}
.h24{height:248.960000pt;}
.h1{height:340.000000pt;}
.h0{height:340.160000pt;}
.w8{width:42.192512pt;}
.w2{width:172.742400pt;}
.w3{width:194.687360pt;}
.wb{width:211.840000pt;}
.w4{width:216.987520pt;}
.wc{width:243.840000pt;}
.w7{width:254.080000pt;}
.wd{width:261.120000pt;}
.we{width:270.627200pt;}
.w9{width:272.640000pt;}
.wa{width:282.142720pt;}
.wf{width:293.137280pt;}
.w5{width:410.382720pt;}
.w6{width:518.232320pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x0{left:0.000000pt;}
.x6c{left:1.582170pt;}
.x13{left:4.793576pt;}
.x57{left:6.105240pt;}
.x12{left:7.166905pt;}
.x17{left:8.429970pt;}
.x11{left:10.136234pt;}
.x5{left:11.337475pt;}
.x2b{left:13.472512pt;}
.x16{left:14.452510pt;}
.x2d{left:16.452359pt;}
.x34{left:18.147096pt;}
.x10{left:19.038886pt;}
.xd{left:21.619965pt;}
.x35{left:24.139619pt;}
.x36{left:26.139616pt;}
.x30{left:27.514874pt;}
.x6{left:28.997420pt;}
.x87{left:30.659917pt;}
.x86{left:31.564982pt;}
.x28{left:32.484881pt;}
.x14{left:33.601530pt;}
.x3f{left:35.564882pt;}
.x7e{left:36.701752pt;}
.x78{left:38.059284pt;}
.x44{left:39.924875pt;}
.x6a{left:41.536906pt;}
.x3e{left:43.244992pt;}
.x64{left:44.891435pt;}
.x2c{left:45.955008pt;}
.x18{left:47.632307pt;}
.x62{left:48.754095pt;}
.x9{left:51.054852pt;}
.x54{left:52.597338pt;}
.x43{left:55.979783pt;}
.x4{left:57.829907pt;}
.x7{left:58.719906pt;}
.x63{left:62.124740pt;}
.x77{left:63.056710pt;}
.x4f{left:64.724919pt;}
.x75{left:66.164697pt;}
.x7c{left:68.344235pt;}
.x8d{left:70.242421pt;}
.x1c{left:72.474801pt;}
.x19{left:73.647332pt;}
.x1d{left:75.809729pt;}
.x1a{left:77.149460pt;}
.x1b{left:79.766789pt;}
.xa{left:80.777337pt;}
.x52{left:83.692800pt;}
.x73{left:85.268666pt;}
.x8{left:88.309859pt;}
.x71{left:89.681993pt;}
.x55{left:90.624744pt;}
.xf{left:91.810770pt;}
.x60{left:94.128689pt;}
.x25{left:95.094781pt;}
.x33{left:97.102720pt;}
.x69{left:100.599211pt;}
.x3b{left:101.699837pt;}
.x74{left:105.196635pt;}
.x7d{left:107.246706pt;}
.x7f{left:109.639102pt;}
.x1f{left:112.284070pt;}
.x8b{left:115.294726pt;}
.x45{left:116.997418pt;}
.x40{left:120.020080pt;}
.x51{left:121.609095pt;}
.x2a{left:123.412336pt;}
.x68{left:125.989171pt;}
.x2e{left:127.656714pt;}
.x38{left:129.339793pt;}
.x72{left:130.447261pt;}
.x24{left:132.705371pt;}
.x23{left:133.900036pt;}
.x1{left:136.151782pt;}
.x79{left:137.904190pt;}
.x1e{left:140.314692pt;}
.x2f{left:141.804692pt;}
.x7a{left:143.819181pt;}
.x31{left:144.779353pt;}
.x15{left:147.216015pt;}
.x53{left:149.204251pt;}
.x6e{left:150.585931pt;}
.x3a{left:151.907757pt;}
.x61{left:154.936592pt;}
.x21{left:156.989332pt;}
.x20{left:158.463996pt;}
.x83{left:161.437041pt;}
.x6d{left:162.358712pt;}
.x5b{left:168.891236pt;}
.x80{left:170.851538pt;}
.x88{left:171.752342pt;}
.x39{left:172.854390pt;}
.x84{left:174.089021pt;}
.x7b{left:175.756597pt;}
.x65{left:179.061619pt;}
.x5c{left:182.084548pt;}
.x22{left:186.511951pt;}
.x5d{left:190.444535pt;}
.x50{left:193.809920pt;}
.x82{left:195.654320pt;}
.x85{left:197.404984pt;}
.x56{left:199.397104pt;}
.x81{left:202.411642pt;}
.x5a{left:204.564512pt;}
.x5f{left:206.388510pt;}
.x89{left:209.812281pt;}
.x58{left:211.608501pt;}
.x67{left:212.559032pt;}
.x59{left:213.759164pt;}
.x5e{left:215.133829pt;}
.x66{left:218.739022pt;}
.x37{left:220.722314pt;}
.x8a{left:222.512021pt;}
.x2{left:228.584968pt;}
.x6b{left:231.979268pt;}
.x46{left:233.751898pt;}
.x48{left:239.023890pt;}
.x8c{left:244.147436pt;}
.xc{left:249.407601pt;}
.x3{left:251.169998pt;}
.x47{left:257.369327pt;}
.x29{left:281.189817pt;}
.x32{left:309.096839pt;}
.x6f{left:312.936833pt;}
.x41{left:316.874432pt;}
.xb{left:320.616820pt;}
.x26{left:323.644816pt;}
.x76{left:326.400000pt;}
.x70{left:331.520000pt;}
.x49{left:334.446404pt;}
.x27{left:338.188792pt;}
.x4b{left:350.929044pt;}
.x4a{left:358.063833pt;}
.x3c{left:381.227390pt;}
.x3d{left:395.771367pt;}
.xe{left:410.357760pt;}
.x4e{left:417.571604pt;}
.x42{left:419.082268pt;}
.x4c{left:435.142243pt;}
.x4d{left:458.759671pt;}
}




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