
    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_c2d6da12d7d5060ccef9ea83.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2f161857802fba0773616568.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_a70149e13798b29fae816b2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8b5dc47653f4180797601f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79e43e118dda8a392d34d719.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_765f3a5e61e6de3aabc810a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956543;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_cf9d1e55c3efd9d885cda2ce.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_44d8a8e062f846649a4b15fc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dabfd22fad971e496b29c81f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cd1f8b86337f66a7cb0dc60.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_12e53b3d7cbfb397fbb4228c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995117;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_b91c5c9f4d081e0f72f19c0a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_ff4642fb19dbe00efcf79829.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1a{transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190865,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.192072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192072,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.222694,0.000000,-0.074224,0.238728,0,0);-ms-transform:matrix(0.222694,0.000000,-0.074224,0.238728,0,0);-webkit-transform:matrix(0.222694,0.000000,-0.074224,0.238728,0,0);}
.m16{transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);-ms-transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);-webkit-transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);}
.m2d{transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);-ms-transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);-webkit-transform:matrix(0.222694,0.000000,-0.074223,0.238728,0,0);}
.m2a{transform:matrix(0.231925,0.000000,-0.077300,0.237749,0,0);-ms-transform:matrix(0.231925,0.000000,-0.077300,0.237749,0,0);-webkit-transform:matrix(0.231925,0.000000,-0.077300,0.237749,0,0);}
.m4{transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232080,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.232543,0.000000,-0.077506,0.237682,0,0);-ms-transform:matrix(0.232543,0.000000,-0.077506,0.237682,0,0);-webkit-transform:matrix(0.232543,0.000000,-0.077506,0.237682,0,0);}
.m22{transform:matrix(0.233209,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.233209,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233209,0.000001,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233209,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.233212,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.233212,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233212,0.000001,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.233212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233212,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.234456,0.000000,-0.078144,0.237473,0,0);-ms-transform:matrix(0.234456,0.000000,-0.078144,0.237473,0,0);-webkit-transform:matrix(0.234456,0.000000,-0.078144,0.237473,0,0);}
.m36{transform:matrix(0.236026,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.236026,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236026,0.000001,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.236043,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.236043,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236043,0.000001,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237154,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.237727,0.000001,-0.079234,0.237112,0,0);-ms-transform:matrix(0.237727,0.000001,-0.079234,0.237112,0,0);-webkit-transform:matrix(0.237727,0.000001,-0.079234,0.237112,0,0);}
.m1f{transform:matrix(0.238075,0.000000,-0.079350,0.237073,0,0);-ms-transform:matrix(0.238075,0.000000,-0.079350,0.237073,0,0);-webkit-transform:matrix(0.238075,0.000000,-0.079350,0.237073,0,0);}
.m18{transform:matrix(0.241159,0.000000,-0.080378,0.236726,0,0);-ms-transform:matrix(0.241159,0.000000,-0.080378,0.236726,0,0);-webkit-transform:matrix(0.241159,0.000000,-0.080378,0.236726,0,0);}
.me{transform:matrix(0.242387,0.000001,-0.080787,0.236587,0,0);-ms-transform:matrix(0.242387,0.000001,-0.080787,0.236587,0,0);-webkit-transform:matrix(0.242387,0.000001,-0.080787,0.236587,0,0);}
.m29{transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243876,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.244671,0.000000,-0.081548,0.236326,0,0);-ms-transform:matrix(0.244671,0.000000,-0.081548,0.236326,0,0);-webkit-transform:matrix(0.244671,0.000000,-0.081548,0.236326,0,0);}
.m3a{transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246142,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246196,0.000000,-0.082057,0.236150,0,0);-ms-transform:matrix(0.246196,0.000000,-0.082057,0.236150,0,0);-webkit-transform:matrix(0.246196,0.000000,-0.082057,0.236150,0,0);}
.m12{transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246823,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);-ms-transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);-webkit-transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);}
.mc{transform:matrix(0.248118,0.000000,-0.082697,0.235926,0,0);-ms-transform:matrix(0.248118,0.000000,-0.082697,0.235926,0,0);-webkit-transform:matrix(0.248118,0.000000,-0.082697,0.235926,0,0);}
.m21{transform:matrix(0.248178,0.000000,-0.082718,0.235919,0,0);-ms-transform:matrix(0.248178,0.000000,-0.082718,0.235919,0,0);-webkit-transform:matrix(0.248178,0.000000,-0.082718,0.235919,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);}
.m3b{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);}
.m7{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250796,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252451,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253078,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253952,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254681,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254687,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.255052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255052,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.255394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255394,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.256129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256129,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258822,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258828,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261933,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.262018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262018,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262241,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262919,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262990,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263175,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-40.613204px;}
.v6{vertical-align:-38.554199px;}
.v3{vertical-align:-21.027851px;}
.v4{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.v2{vertical-align:72.584076px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls43{letter-spacing:-2.445632px;}
.ls36{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.168000px;}
.ls39{letter-spacing:-0.024000px;}
.ls38{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.012000px;}
.ls3a{letter-spacing:-0.006000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls33{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.060000px;}
.ls3c{letter-spacing:0.071289px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.ls3b{letter-spacing:0.168000px;}
.ls1c{letter-spacing:0.192000px;}
.ls34{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.535624px;}
.ls4{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.792000px;}
.lsf{letter-spacing:3.600000px;}
.ls27{letter-spacing:7.200000px;}
.lse{letter-spacing:9.000000px;}
.ls28{letter-spacing:10.200000px;}
.ls10{letter-spacing:16.140000px;}
.ls32{letter-spacing:20.016000px;}
.ls24{letter-spacing:21.540000px;}
.ls3e{letter-spacing:22.860000px;}
.ls3f{letter-spacing:24.660000px;}
.ls1f{letter-spacing:29.387219px;}
.ls1d{letter-spacing:29.870914px;}
.ls23{letter-spacing:33.660000px;}
.ls11{letter-spacing:37.200000px;}
.ls1e{letter-spacing:38.148098px;}
.ls30{letter-spacing:41.417935px;}
.ls26{letter-spacing:45.000000px;}
.ls14{letter-spacing:53.340000px;}
.ls1a{letter-spacing:54.231892px;}
.ls41{letter-spacing:54.389347px;}
.ls25{letter-spacing:55.200000px;}
.ls2c{letter-spacing:63.617023px;}
.ls31{letter-spacing:63.720000px;}
.ls13{letter-spacing:65.503789px;}
.ls19{letter-spacing:76.511595px;}
.ls29{letter-spacing:80.658637px;}
.ls18{letter-spacing:81.658348px;}
.ls2d{letter-spacing:82.129681px;}
.ls40{letter-spacing:89.698288px;}
.ls3d{letter-spacing:89.822041px;}
.ls16{letter-spacing:93.618410px;}
.ls15{letter-spacing:95.621573px;}
.ls17{letter-spacing:98.979816px;}
.ls2e{letter-spacing:123.297208px;}
.ls35{letter-spacing:184.917285px;}
.ls2a{letter-spacing:256.501825px;}
.ls2b{letter-spacing:277.757874px;}
.ls1b{letter-spacing:382.500919px;}
.ls12{letter-spacing:390.724210px;}
.ls22{letter-spacing:417.357397px;}
.ls21{letter-spacing:419.733132px;}
.ls20{letter-spacing:424.900358px;}
.ls2f{letter-spacing:428.088364px;}
.ls44{letter-spacing:603.700823px;}
.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;}
}
.ws16{word-spacing:-426.667108px;}
.ws12{word-spacing:-99.062459px;}
.ws10{word-spacing:-95.704215px;}
.ws11{word-spacing:-93.701052px;}
.ws49{word-spacing:-82.642255px;}
.ws2f{word-spacing:-82.212323px;}
.ws13{word-spacing:-81.740849px;}
.ws3c{word-spacing:-72.000000px;}
.ws3e{word-spacing:-71.712000px;}
.ws32{word-spacing:-62.762703px;}
.ws19{word-spacing:-46.873113px;}
.ws29{word-spacing:-44.241366px;}
.ws3a{word-spacing:-32.940000px;}
.ws4e{word-spacing:-21.306924px;}
.wsc{word-spacing:-20.839269px;}
.ws4f{word-spacing:-20.625214px;}
.ws47{word-spacing:-18.982471px;}
.ws43{word-spacing:-18.168000px;}
.ws9{word-spacing:-18.000000px;}
.ws51{word-spacing:-17.832000px;}
.ws3f{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws42{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws40{word-spacing:-13.494000px;}
.ws4{word-spacing:-13.488000px;}
.ws41{word-spacing:-13.476000px;}
.ws33{word-spacing:-11.897885px;}
.ws27{word-spacing:-11.521813px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws3b{word-spacing:-0.045949px;}
.wsa{word-spacing:0.000000px;}
.ws3d{word-spacing:9.960000px;}
.ws35{word-spacing:17.970537px;}
.ws34{word-spacing:18.255200px;}
.ws2a{word-spacing:20.307444px;}
.ws50{word-spacing:22.413761px;}
.ws38{word-spacing:22.606010px;}
.ws1a{word-spacing:23.181933px;}
.ws28{word-spacing:25.384390px;}
.ws39{word-spacing:25.823947px;}
.ws25{word-spacing:26.239028px;}
.ws18{word-spacing:31.163363px;}
.ws1f{word-spacing:35.843544px;}
.wse{word-spacing:36.798382px;}
.ws21{word-spacing:36.843828px;}
.wsd{word-spacing:42.762181px;}
.wsf{word-spacing:44.055603px;}
.ws2b{word-spacing:45.772488px;}
.ws24{word-spacing:46.096464px;}
.ws17{word-spacing:49.636683px;}
.ws2c{word-spacing:52.138732px;}
.ws14{word-spacing:54.302692px;}
.ws2e{word-spacing:59.069074px;}
.ws37{word-spacing:61.647805px;}
.ws2d{word-spacing:72.725685px;}
.ws36{word-spacing:73.278732px;}
.ws15{word-spacing:74.299821px;}
.ws26{word-spacing:76.177822px;}
.ws20{word-spacing:80.572480px;}
.ws1b{word-spacing:89.729767px;}
.ws4a{word-spacing:90.493269px;}
.ws30{word-spacing:94.094998px;}
.ws4d{word-spacing:98.836025px;}
.ws46{word-spacing:99.001026px;}
.ws31{word-spacing:105.226550px;}
.ws22{word-spacing:117.700194px;}
.ws1e{word-spacing:119.696284px;}
.wsb{word-spacing:143.415991px;}
.ws1d{word-spacing:157.897226px;}
.ws1c{word-spacing:174.150780px;}
.ws4b{word-spacing:206.912145px;}
.ws44{word-spacing:207.170859px;}
.ws23{word-spacing:301.831671px;}
.ws4c{word-spacing:435.852018px;}
.ws45{word-spacing:436.264522px;}
.ws48{word-spacing:465.589804px;}
._80{margin-left:-1101.150540px;}
._48{margin-left:-1082.109021px;}
._7c{margin-left:-858.344342px;}
._85{margin-left:-836.249678px;}
._81{margin-left:-628.183497px;}
._71{margin-left:-609.204603px;}
._87{margin-left:-550.903036px;}
._7d{margin-left:-522.154871px;}
._86{margin-left:-489.919971px;}
._63{margin-left:-395.441535px;}
._62{margin-left:-375.237963px;}
._3a{margin-left:-350.774235px;}
._60{margin-left:-283.786158px;}
._2a{margin-left:-251.530631px;}
._3b{margin-left:-235.426842px;}
._2c{margin-left:-232.438207px;}
._3e{margin-left:-220.592540px;}
._3c{margin-left:-217.228275px;}
._3d{margin-left:-215.198653px;}
._40{margin-left:-204.331841px;}
._6e{margin-left:-194.269706px;}
._83{margin-left:-175.973152px;}
._4e{margin-left:-145.171072px;}
._67{margin-left:-141.870572px;}
._4b{margin-left:-113.945340px;}
._72{margin-left:-110.264957px;}
._64{margin-left:-73.817111px;}
._4a{margin-left:-71.764395px;}
._75{margin-left:-65.248609px;}
._78{margin-left:-13.387884px;}
._1b{margin-left:-4.374000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.286000px;}
._29{width:3.312000px;}
._19{width:4.320000px;}
._22{width:5.904000px;}
._13{width:6.912000px;}
._6{width:8.136000px;}
._a{width:9.864000px;}
._1f{width:11.160000px;}
._8{width:12.168000px;}
._12{width:13.824000px;}
._35{width:15.264000px;}
._1e{width:16.488000px;}
._6c{width:19.182000px;}
._30{width:20.592000px;}
._2f{width:21.672000px;}
._37{width:22.812000px;}
._14{width:24.192000px;}
._15{width:25.272000px;}
._1c{width:26.712000px;}
._5{width:28.296000px;}
._4{width:29.406000px;}
._1d{width:30.672000px;}
._9{width:31.722000px;}
._1a{width:32.820000px;}
._36{width:34.272000px;}
._16{width:36.072000px;}
._20{width:37.902000px;}
._26{width:39.960000px;}
._e{width:41.472000px;}
._f{width:42.480000px;}
._21{width:44.382000px;}
._6d{width:45.516000px;}
._c{width:46.584000px;}
._d{width:48.198000px;}
._2e{width:49.896000px;}
._2d{width:51.120000px;}
._41{width:52.488000px;}
._24{width:53.568000px;}
._23{width:54.720000px;}
._79{width:56.232000px;}
._4d{width:57.273011px;}
._3f{width:59.184000px;}
._27{width:61.992000px;}
._31{width:63.720000px;}
._32{width:65.028000px;}
._10{width:67.392000px;}
._11{width:68.598000px;}
._65{width:70.189854px;}
._69{width:72.000000px;}
._6a{width:73.872000px;}
._5a{width:74.880000px;}
._45{width:76.023769px;}
._4f{width:77.510231px;}
._43{width:79.322155px;}
._6b{width:80.784000px;}
._42{width:82.861886px;}
._89{width:86.472000px;}
._88{width:87.768000px;}
._7b{width:89.112000px;}
._33{width:90.432000px;}
._34{width:91.872000px;}
._28{width:94.320000px;}
._74{width:96.768000px;}
._5d{width:99.444994px;}
._17{width:100.656000px;}
._18{width:102.180000px;}
._2b{width:108.197487px;}
._82{width:109.932000px;}
._73{width:110.952000px;}
._6f{width:112.708255px;}
._b{width:113.832000px;}
._7a{width:115.488000px;}
._4c{width:117.249587px;}
._76{width:122.086830px;}
._5b{width:133.494275px;}
._61{width:136.538894px;}
._38{width:137.808000px;}
._39{width:139.464000px;}
._66{width:154.401562px;}
._68{width:157.065357px;}
._47{width:158.662512px;}
._57{width:163.160466px;}
._25{width:168.480000px;}
._54{width:179.345687px;}
._59{width:184.298321px;}
._56{width:209.171378px;}
._49{width:215.905393px;}
._53{width:226.585361px;}
._46{width:228.413364px;}
._50{width:271.141795px;}
._5e{width:277.912498px;}
._51{width:281.583386px;}
._55{width:288.459555px;}
._70{width:293.717229px;}
._8a{width:301.752000px;}
._52{width:304.460424px;}
._7f{width:306.784568px;}
._44{width:309.209340px;}
._58{width:326.320933px;}
._7e{width:335.943482px;}
._77{width:351.708000px;}
._84{width:353.784000px;}
._5f{width:355.517937px;}
._5c{width:370.024237px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:29.780654px;}
.fse{font-size:45.949178px;}
.fsc{font-size:46.087253px;}
.fs1b{font-size:47.591542px;}
.fs1f{font-size:48.450345px;}
.fs16{font-size:48.550538px;}
.fs30{font-size:48.765379px;}
.fs2e{font-size:48.843258px;}
.fs2c{font-size:49.019439px;}
.fs2a{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsf{font-size:80.448433px;}
.fsd{font-size:80.585367px;}
.fsa{font-size:80.597297px;}
.fsb{font-size:82.500855px;}
.fs9{font-size:82.642255px;}
.fs7{font-size:83.357078px;}
.fs0{font-size:84.000000px;}
.fs1e{font-size:84.642025px;}
.fs17{font-size:84.890981px;}
.fs12{font-size:85.166520px;}
.fs28{font-size:85.166777px;}
.fs14{font-size:85.227694px;}
.fs10{font-size:85.247455px;}
.fs26{font-size:85.248159px;}
.fs29{font-size:85.248224px;}
.fs27{font-size:85.362167px;}
.fs2f{font-size:85.363803px;}
.fs8{font-size:85.379076px;}
.fs21{font-size:85.395129px;}
.fs2b{font-size:85.491926px;}
.fs2d{font-size:85.712409px;}
.fs11{font-size:87.134129px;}
.fs1c{font-size:88.031037px;}
.fs1d{font-size:88.912145px;}
.fs20{font-size:89.257375px;}
.fs15{font-size:89.723452px;}
.fs23{font-size:89.778477px;}
.fs13{font-size:89.803814px;}
.fs24{font-size:93.110297px;}
.fs1a{font-size:93.110330px;}
.fs25{font-size:93.110387px;}
.fs19{font-size:93.110411px;}
.fs18{font-size:109.165063px;}
.fs6{font-size:109.286856px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y16a{bottom:2.835000px;}
.y16d{bottom:2.985000px;}
.y67{bottom:3.215330px;}
.y1a7{bottom:3.215404px;}
.y189{bottom:3.300000px;}
.y193{bottom:3.315000px;}
.y1b5{bottom:3.345599px;}
.y132{bottom:3.596944px;}
.ye1{bottom:3.596950px;}
.y15d{bottom:3.596959px;}
.y76{bottom:3.596961px;}
.yea{bottom:3.596966px;}
.y13c{bottom:3.596998px;}
.yef{bottom:3.607115px;}
.y153{bottom:3.631484px;}
.y85{bottom:3.631502px;}
.y141{bottom:3.631510px;}
.y83{bottom:3.631526px;}
.y1c{bottom:3.900000px;}
.ya4{bottom:4.392324px;}
.ya7{bottom:4.392325px;}
.yd2{bottom:4.428521px;}
.yb8{bottom:4.428539px;}
.yae{bottom:4.428558px;}
.ye5{bottom:4.428586px;}
.y6f{bottom:4.749853px;}
.y64{bottom:4.749872px;}
.y8f{bottom:4.749921px;}
.y8b{bottom:4.749923px;}
.y73{bottom:4.785645px;}
.y1ad{bottom:4.785680px;}
.y17e{bottom:4.985201px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yd8{bottom:6.108052px;}
.ydb{bottom:6.108055px;}
.ydd{bottom:6.108058px;}
.ybd{bottom:6.678641px;}
.yf0{bottom:6.678661px;}
.yc1{bottom:6.678687px;}
.yc{bottom:6.750000px;}
.y8d{bottom:7.549118px;}
.y86{bottom:8.853900px;}
.y152{bottom:8.853908px;}
.y133{bottom:8.853912px;}
.y154{bottom:8.853914px;}
.y87{bottom:8.853916px;}
.y13d{bottom:8.853919px;}
.yeb{bottom:8.853925px;}
.ye4{bottom:8.853930px;}
.yec{bottom:8.853932px;}
.y10a{bottom:8.853942px;}
.y140{bottom:8.853947px;}
.y13b{bottom:8.853956px;}
.y88{bottom:8.853958px;}
.y77{bottom:8.853962px;}
.ye2{bottom:8.853964px;}
.y84{bottom:8.853968px;}
.y142{bottom:8.853971px;}
.ye3{bottom:8.853973px;}
.y123{bottom:9.107277px;}
.y42{bottom:9.107286px;}
.yc8{bottom:9.107305px;}
.y114{bottom:9.107316px;}
.y61{bottom:9.396543px;}
.y10c{bottom:9.396598px;}
.y10d{bottom:9.396623px;}
.y9c{bottom:9.433352px;}
.y9b{bottom:9.433366px;}
.y9a{bottom:9.433368px;}
.y43{bottom:10.607317px;}
.yc9{bottom:10.607333px;}
.y167{bottom:10.650000px;}
.y18d{bottom:12.000000px;}
.ybc{bottom:12.107191px;}
.yf1{bottom:12.107227px;}
.yc0{bottom:12.107255px;}
.yc2{bottom:12.107270px;}
.y1b4{bottom:12.940895px;}
.y1c0{bottom:14.425279px;}
.ya3{bottom:17.029597px;}
.ya6{bottom:17.029611px;}
.y1b1{bottom:17.510882px;}
.yd7{bottom:18.215091px;}
.ydc{bottom:18.215139px;}
.yd9{bottom:18.215150px;}
.yde{bottom:18.215159px;}
.yda{bottom:18.215169px;}
.y168{bottom:18.450000px;}
.y124{bottom:18.500249px;}
.y113{bottom:18.500274px;}
.yaa{bottom:19.117285px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y192{bottom:20.565000px;}
.ya9{bottom:22.538347px;}
.ya8{bottom:22.538350px;}
.y1b{bottom:24.600000px;}
.y165{bottom:26.085000px;}
.y18b{bottom:29.250000px;}
.y190{bottom:29.265000px;}
.y9{bottom:33.900000px;}
.y16c{bottom:34.050000px;}
.y5{bottom:36.000000px;}
.y186{bottom:37.800000px;}
.y191{bottom:37.845000px;}
.y166{bottom:41.700000px;}
.ya2{bottom:42.231708px;}
.ya5{bottom:42.231710px;}
.y1a{bottom:45.300000px;}
.y18a{bottom:46.500000px;}
.y169{bottom:49.500000px;}
.y188{bottom:55.050000px;}
.y3{bottom:57.637500px;}
.y19{bottom:66.000000px;}
.y187{bottom:72.300000px;}
.y2{bottom:81.637500px;}
.y18{bottom:86.700000px;}
.y17{bottom:107.400000px;}
.y109{bottom:108.487500px;}
.y139{bottom:110.437500px;}
.y3b{bottom:112.687500px;}
.y1c2{bottom:114.037500px;}
.y1c1{bottom:114.075000px;}
.y71{bottom:116.587500px;}
.y72{bottom:116.625000px;}
.y1dc{bottom:117.637500px;}
.y16{bottom:128.100000px;}
.y107{bottom:132.187500px;}
.y108{bottom:132.225000px;}
.y138{bottom:134.287500px;}
.y3a{bottom:136.537500px;}
.yba{bottom:137.137500px;}
.ybb{bottom:137.175000px;}
.y16f{bottom:138.787500px;}
.y19c{bottom:141.487500px;}
.y203{bottom:142.837500px;}
.y1bf{bottom:143.587500px;}
.y1be{bottom:143.625000px;}
.y70{bottom:145.987500px;}
.y15{bottom:148.800000px;}
.y16e{bottom:156.345000px;}
.y137{bottom:157.995000px;}
.y39{bottom:160.395000px;}
.y105{bottom:161.745000px;}
.y106{bottom:161.775000px;}
.y19b{bottom:165.180000px;}
.y1db{bottom:165.330000px;}
.y202{bottom:166.695000px;}
.y6d{bottom:169.845000px;}
.y6e{bottom:169.875000px;}
.yb9{bottom:175.680000px;}
.y1bd{bottom:178.095000px;}
.y136{bottom:181.845000px;}
.y38{bottom:184.095000px;}
.y19a{bottom:189.045000px;}
.y1da{bottom:189.180000px;}
.y201{bottom:190.395000px;}
.y104{bottom:191.295000px;}
.y6c{bottom:199.380000px;}
.y6b{bottom:199.424980px;}
.y1bb{bottom:201.945000px;}
.y1bc{bottom:201.975000px;}
.y16b{bottom:203.595000px;}
.y135{bottom:205.695000px;}
.y37{bottom:207.945000px;}
.y199{bottom:212.880000px;}
.y200{bottom:214.245000px;}
.y103{bottom:214.995000px;}
.y1d9{bottom:217.395000px;}
.yb7{bottom:225.195000px;}
.y1ba{bottom:227.595000px;}
.y6a{bottom:228.795000px;}
.y134{bottom:229.380000px;}
.y36{bottom:231.795000px;}
.y198{bottom:236.580000px;}
.y1ff{bottom:238.095000px;}
.y101{bottom:238.845000px;}
.y102{bottom:238.874980px;}
.y1d8{bottom:241.245000px;}
.yb6{bottom:248.895000px;}
.y164{bottom:250.995000px;}
.y68{bottom:252.630000px;}
.y69{bottom:252.674980px;}
.y130{bottom:253.380000px;}
.y131{bottom:253.424980px;}
.y35{bottom:255.495000px;}
.y197{bottom:260.445000px;}
.y1fe{bottom:261.795000px;}
.y1d7{bottom:265.095000px;}
.y100{bottom:268.395000px;}
.yb5{bottom:272.745000px;}
.y34{bottom:279.345000px;}
.y65{bottom:282.195000px;}
.y66{bottom:282.225000px;}
.y196{bottom:284.295000px;}
.y12f{bottom:287.895000px;}
.y1d6{bottom:288.795000px;}
.y1fd{bottom:290.130000px;}
.yff{bottom:292.095000px;}
.yfe{bottom:292.125000px;}
.yb4{bottom:296.595000px;}
.y33{bottom:303.195000px;}
.y195{bottom:307.995000px;}
.y62{bottom:309.645000px;}
.y63{bottom:309.674980px;}
.y12e{bottom:311.745000px;}
.y1d5{bottom:312.645000px;}
.y1fc{bottom:313.995000px;}
.yb3{bottom:320.295000px;}
.y163{bottom:321.045000px;}
.yfd{bottom:321.645000px;}
.y32{bottom:326.880000px;}
.y194{bottom:331.845000px;}
.y12d{bottom:335.595000px;}
.y1d4{bottom:336.495000px;}
.y1fb{bottom:337.695000px;}
.y5f{bottom:339.195000px;}
.y60{bottom:339.225000px;}
.yb2{bottom:344.130000px;}
.y162{bottom:345.045000px;}
.yfc{bottom:345.495000px;}
.y18f{bottom:349.380000px;}
.y31{bottom:350.745000px;}
.y12b{bottom:359.295000px;}
.y12c{bottom:359.324959px;}
.y1d3{bottom:360.195000px;}
.y1fa{bottom:361.545000px;}
.yb1{bottom:367.995000px;}
.y161{bottom:368.895000px;}
.yfb{bottom:369.195000px;}
.y5e{bottom:373.845000px;}
.y30{bottom:374.580000px;}
.y1d2{bottom:384.075000px;}
.y12a{bottom:385.125000px;}
.y1f9{bottom:389.925000px;}
.yb0{bottom:391.725000px;}
.y160{bottom:392.775000px;}
.yfa{bottom:393.075000px;}
.y5d{bottom:397.725000px;}
.y2f{bottom:398.325000px;}
.y18e{bottom:401.925000px;}
.y129{bottom:408.825000px;}
.y1d1{bottom:412.425000px;}
.y1f8{bottom:413.625000px;}
.yaf{bottom:415.575000px;}
.y15f{bottom:416.475000px;}
.yf9{bottom:416.925000px;}
.y5c{bottom:421.425000px;}
.y2e{bottom:422.175000px;}
.y128{bottom:432.675000px;}
.y1d0{bottom:436.125000px;}
.y1f7{bottom:437.475000px;}
.yad{bottom:439.274959px;}
.yac{bottom:439.275000px;}
.y15e{bottom:440.325000px;}
.yf8{bottom:440.625000px;}
.y5b{bottom:445.275000px;}
.y2d{bottom:446.025000px;}
.y18c{bottom:454.425000px;}
.y127{bottom:456.525000px;}
.y1cf{bottom:459.975000px;}
.y1f6{bottom:461.325000px;}
.y15c{bottom:464.174959px;}
.y15b{bottom:464.175000px;}
.yf7{bottom:464.475000px;}
.yab{bottom:465.075000px;}
.y1b9{bottom:468.525000px;}
.y5a{bottom:469.125000px;}
.y2c{bottom:469.725000px;}
.y126{bottom:480.225000px;}
.y1ce{bottom:483.825000px;}
.y1f5{bottom:485.025000px;}
.yf6{bottom:488.325000px;}
.ya1{bottom:488.924959px;}
.ya0{bottom:488.925000px;}
.y1b8{bottom:492.375000px;}
.y59{bottom:492.825000px;}
.y2b{bottom:493.575000px;}
.y15a{bottom:498.825000px;}
.y122{bottom:504.074959px;}
.y125{bottom:504.075000px;}
.y185{bottom:506.925000px;}
.y1cd{bottom:507.525000px;}
.y1f4{bottom:508.875000px;}
.yf5{bottom:512.025000px;}
.y1b7{bottom:516.225000px;}
.y58{bottom:516.675000px;}
.y2a{bottom:517.425000px;}
.y159{bottom:522.525000px;}
.y1cc{bottom:531.375000px;}
.y1f3{bottom:532.725000px;}
.yf4{bottom:535.875000px;}
.y1b6{bottom:539.925000px;}
.y57{bottom:540.525000px;}
.y29{bottom:541.275000px;}
.y121{bottom:542.625000px;}
.y158{bottom:546.375000px;}
.y9f{bottom:551.775000px;}
.y1cb{bottom:555.225000px;}
.yf3{bottom:559.725000px;}
.y1f2{bottom:561.075000px;}
.y1b3{bottom:563.924959px;}
.y1b2{bottom:563.925000px;}
.y56{bottom:564.375000px;}
.y28{bottom:564.975000px;}
.y120{bottom:566.325000px;}
.y157{bottom:570.225000px;}
.y9e{bottom:575.625000px;}
.y1ca{bottom:579.075000px;}
.yf2{bottom:583.575000px;}
.y1f1{bottom:584.775000px;}
.y55{bottom:588.075000px;}
.y27{bottom:588.825000px;}
.y11f{bottom:590.175000px;}
.y1b0{bottom:593.174959px;}
.y1af{bottom:593.175000px;}
.y156{bottom:594.075000px;}
.y9d{bottom:599.475000px;}
.y184{bottom:600.975000px;}
.y1c9{bottom:602.775000px;}
.yee{bottom:607.274959px;}
.yed{bottom:607.275000px;}
.y1f0{bottom:608.625000px;}
.y54{bottom:611.925000px;}
.y26{bottom:612.675000px;}
.y11e{bottom:614.025000px;}
.y155{bottom:617.775000px;}
.y99{bottom:623.324959px;}
.y98{bottom:623.325000px;}
.y183{bottom:624.675000px;}
.y1c8{bottom:626.625000px;}
.y1ae{bottom:631.125000px;}
.y1ef{bottom:632.475000px;}
.y53{bottom:635.775000px;}
.y25{bottom:636.375000px;}
.y11d{bottom:637.725000px;}
.y151{bottom:641.624959px;}
.y150{bottom:641.625000px;}
.ye9{bottom:645.824959px;}
.ye8{bottom:645.825000px;}
.y182{bottom:648.525000px;}
.y1c7{bottom:650.475000px;}
.y1ac{bottom:650.924959px;}
.y1ab{bottom:650.925000px;}
.y1ee{bottom:656.175000px;}
.y97{bottom:657.975000px;}
.y52{bottom:659.475000px;}
.y24{bottom:660.225000px;}
.y11c{bottom:661.575000px;}
.y181{bottom:672.375000px;}
.y1c6{bottom:674.175000px;}
.y14f{bottom:676.275000px;}
.y1ed{bottom:680.025000px;}
.ye7{bottom:680.475000px;}
.y96{bottom:681.675000px;}
.y51{bottom:683.325000px;}
.y23{bottom:684.075000px;}
.y11b{bottom:685.425000px;}
.y180{bottom:696.075000px;}
.y1c5{bottom:698.025000px;}
.y14e{bottom:700.125000px;}
.y1ec{bottom:703.875000px;}
.y1a9{bottom:704.174919px;}
.y1aa{bottom:704.175000px;}
.ye6{bottom:704.325000px;}
.y95{bottom:705.525000px;}
.y50{bottom:707.175000px;}
.y22{bottom:707.775000px;}
.y11a{bottom:709.125000px;}
.y17f{bottom:719.925000px;}
.y1c4{bottom:721.875000px;}
.y14d{bottom:723.825000px;}
.ye0{bottom:728.174919px;}
.ydf{bottom:728.175000px;}
.y94{bottom:729.375000px;}
.y1a8{bottom:729.975000px;}
.y4f{bottom:730.875000px;}
.y21{bottom:731.625000px;}
.y1eb{bottom:732.075000px;}
.y119{bottom:732.975000px;}
.y17d{bottom:743.624919px;}
.y17c{bottom:743.670000px;}
.y1c3{bottom:745.620000px;}
.y14c{bottom:747.720000px;}
.y93{bottom:753.120000px;}
.y1a6{bottom:753.674919px;}
.y1a5{bottom:753.720000px;}
.y4e{bottom:754.770000px;}
.y20{bottom:755.520000px;}
.y1ea{bottom:755.970000px;}
.y118{bottom:756.870000px;}
.yd6{bottom:762.674919px;}
.yd5{bottom:762.720000px;}
.y17b{bottom:769.470000px;}
.y14b{bottom:771.570000px;}
.y92{bottom:776.970000px;}
.y4d{bottom:778.620000px;}
.y1e9{bottom:779.820000px;}
.y117{bottom:780.570000px;}
.y1a4{bottom:781.320000px;}
.y1f{bottom:788.220000px;}
.y17a{bottom:793.320000px;}
.y14a{bottom:795.270000px;}
.y91{bottom:800.775000px;}
.y90{bottom:800.820000px;}
.y4c{bottom:802.320000px;}
.y1e8{bottom:803.520000px;}
.y116{bottom:804.420000px;}
.y1e{bottom:805.020000px;}
.y1a3{bottom:805.170000px;}
.yd4{bottom:807.705000px;}
.y179{bottom:817.020000px;}
.y149{bottom:819.120000px;}
.y4b{bottom:826.170000px;}
.y112{bottom:828.224919px;}
.y115{bottom:828.270000px;}
.y1a2{bottom:829.020000px;}
.yd1{bottom:831.525000px;}
.yd3{bottom:831.570000px;}
.y1e7{bottom:831.870000px;}
.y8c{bottom:835.424919px;}
.y8e{bottom:835.470000px;}
.y178{bottom:840.870000px;}
.y148{bottom:842.970000px;}
.y1d{bottom:846.420000px;}
.y4a{bottom:850.020000px;}
.y1a1{bottom:852.705000px;}
.y1e6{bottom:855.720000px;}
.yd0{bottom:859.170000px;}
.y177{bottom:864.720000px;}
.y8a{bottom:864.824919px;}
.y89{bottom:864.870000px;}
.y111{bottom:866.820000px;}
.y14{bottom:867.120000px;}
.y49{bottom:873.705000px;}
.y1a0{bottom:876.570000px;}
.y1e5{bottom:879.420000px;}
.ycf{bottom:882.870000px;}
.y176{bottom:888.420000px;}
.y110{bottom:890.520000px;}
.y82{bottom:890.624919px;}
.y81{bottom:890.670000px;}
.y48{bottom:897.570000px;}
.y19f{bottom:900.420000px;}
.y1e4{bottom:903.270000px;}
.yce{bottom:906.720000px;}
.y175{bottom:912.270000px;}
.y10f{bottom:914.370000px;}
.y47{bottom:921.420000px;}
.y19e{bottom:924.120000px;}
.y80{bottom:925.170000px;}
.y1e3{bottom:927.120000px;}
.ycd{bottom:930.570000px;}
.y174{bottom:936.120000px;}
.y10b{bottom:938.174919px;}
.y10e{bottom:938.220000px;}
.y19d{bottom:944.070000px;}
.y46{bottom:945.270000px;}
.y7f{bottom:949.020000px;}
.y1e2{bottom:950.970000px;}
.ycc{bottom:954.270000px;}
.y173{bottom:959.970000px;}
.y147{bottom:961.920000px;}
.y45{bottom:968.970000px;}
.y7e{bottom:972.870000px;}
.ycb{bottom:978.120000px;}
.y1e1{bottom:979.170000px;}
.y172{bottom:983.670000px;}
.y146{bottom:985.770000px;}
.y44{bottom:992.820000px;}
.y7d{bottom:996.570000px;}
.yca{bottom:1001.970000px;}
.y1e0{bottom:1003.020000px;}
.y171{bottom:1007.520000px;}
.y145{bottom:1009.620000px;}
.y41{bottom:1016.624919px;}
.y40{bottom:1016.670000px;}
.y7c{bottom:1020.420000px;}
.y207{bottom:1022.370000px;}
.yc7{bottom:1025.624919px;}
.yc6{bottom:1025.670000px;}
.y1df{bottom:1026.870000px;}
.y170{bottom:1031.370000px;}
.y144{bottom:1033.320000px;}
.y13{bottom:1036.320000px;}
.y7b{bottom:1044.270000px;}
.y206{bottom:1046.070000px;}
.y1de{bottom:1050.570000px;}
.y3f{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y143{bottom:1057.170000px;}
.yc5{bottom:1064.220000px;}
.y7a{bottom:1067.970000px;}
.y205{bottom:1069.920000px;}
.y1dd{bottom:1074.420000px;}
.y11{bottom:1076.220000px;}
.y3e{bottom:1078.920000px;}
.y13f{bottom:1080.974919px;}
.y13e{bottom:1081.020000px;}
.yc4{bottom:1088.070000px;}
.y79{bottom:1091.820000px;}
.y10{bottom:1096.950000px;}
.y204{bottom:1098.300000px;}
.y3d{bottom:1102.800000px;}
.yc3{bottom:1111.800000px;}
.y13a{bottom:1115.624919px;}
.y78{bottom:1115.700000px;}
.y3c{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ybf{bottom:1135.574919px;}
.ybe{bottom:1135.650000px;}
.y75{bottom:1139.474919px;}
.y74{bottom:1139.550000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h65{height:18.749387px;}
.h41{height:18.750441px;}
.h3a{height:18.750461px;}
.h38{height:18.750481px;}
.h50{height:18.750522px;}
.h19{height:20.550033px;}
.h28{height:20.550115px;}
.h10{height:20.700000px;}
.h1b{height:22.500233px;}
.h17{height:22.500254px;}
.h6d{height:22.500274px;}
.h26{height:22.500315px;}
.h71{height:26.249031px;}
.h5a{height:27.599253px;}
.h51{height:27.599274px;}
.h1d{height:27.599314px;}
.h15{height:27.749713px;}
.h2c{height:27.749754px;}
.h54{height:27.749795px;}
.h53{height:29.213541px;}
.h6f{height:30.899655px;}
.h3c{height:31.500468px;}
.h52{height:31.500508px;}
.h12{height:31.500549px;}
.h57{height:35.252133px;}
.h48{height:35.888268px;}
.h35{height:35.962483px;}
.h43{height:37.949175px;}
.h11{height:41.400000px;}
.h69{height:42.333984px;}
.h22{height:45.074169px;}
.h20{height:45.096605px;}
.h1e{height:45.209615px;}
.h4c{height:45.232118px;}
.h6{height:45.300000px;}
.h63{height:46.500000px;}
.h62{height:46.650000px;}
.h3d{height:46.685258px;}
.h56{height:46.708496px;}
.h45{height:47.527706px;}
.h33{height:47.625992px;}
.h31{height:47.649698px;}
.h74{height:47.860553px;}
.h72{height:47.936987px;}
.h70{height:48.109898px;}
.h64{height:48.410156px;}
.h3{height:48.600000px;}
.h4a{height:48.828863px;}
.ha{height:50.800781px;}
.h6a{height:51.750000px;}
.h6c{height:51.787500px;}
.h7{height:52.998047px;}
.h6b{height:53.789062px;}
.h61{height:54.421875px;}
.h5{height:55.942383px;}
.h30{height:55.948620px;}
.h4{height:58.886719px;}
.h5e{height:59.589977px;}
.h68{height:60.468750px;}
.h40{height:61.744476px;}
.h60{height:62.100000px;}
.h49{height:62.696265px;}
.h36{height:62.880673px;}
.h29{height:63.084771px;}
.h5d{height:63.084961px;}
.h2f{height:63.130084px;}
.h24{height:63.144721px;}
.h5b{height:63.145242px;}
.h5f{height:63.145291px;}
.h5c{height:63.229691px;}
.h4e{height:63.254107px;}
.h27{height:64.542223px;}
.hf{height:64.546875px;}
.hd{height:64.775391px;}
.h3f{height:65.206584px;}
.h9{height:65.645508px;}
.h47{height:66.114960px;}
.h2e{height:66.460194px;}
.h55{height:66.500952px;}
.h2a{height:66.519719px;}
.h58{height:68.968906px;}
.h3b{height:68.968931px;}
.h59{height:68.968974px;}
.h39{height:68.968991px;}
.h75{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h23{height:78.916456px;}
.h21{height:78.955738px;}
.h1f{height:79.050782px;}
.h1a{height:79.062485px;}
.h4d{height:79.090130px;}
.h37{height:80.861035px;}
.h1c{height:80.929794px;}
.h13{height:80.951250px;}
.h6e{height:80.970078px;}
.h18{height:81.068501px;}
.h25{height:81.076936px;}
.h4f{height:81.214940px;}
.h3e{height:81.769712px;}
.h14{height:81.810413px;}
.h2{height:82.441406px;}
.h46{height:83.030189px;}
.h44{height:83.071519px;}
.h34{height:83.274405px;}
.h2d{height:83.646321px;}
.h73{height:83.738223px;}
.h16{height:83.794894px;}
.h66{height:83.863906px;}
.h4b{height:85.303291px;}
.h2b{height:86.046100px;}
.h67{height:86.250000px;}
.h42{height:89.606771px;}
.h32{height:155.899932px;}
.he{height:165.585000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w36{width:15.448857px;}
.w3e{width:15.449902px;}
.w19{width:16.049735px;}
.w1e{width:16.049745px;}
.w27{width:16.049755px;}
.w15{width:16.049775px;}
.w1a{width:16.049816px;}
.w25{width:18.750114px;}
.w1f{width:18.750129px;}
.w14{width:18.750149px;}
.w13{width:18.750190px;}
.wc{width:18.750265px;}
.wb{width:18.750275px;}
.w11{width:22.499444px;}
.w41{width:27.748934px;}
.w24{width:27.748944px;}
.w3d{width:35.250337px;}
.w29{width:40.499395px;}
.w2a{width:42.450169px;}
.w30{width:44.999886px;}
.w2c{width:44.999967px;}
.w26{width:46.950060px;}
.w10{width:49.500320px;}
.w3a{width:51.000000px;}
.wd{width:55.951675px;}
.w3b{width:57.600000px;}
.w3c{width:57.750000px;}
.wf{width:57.750329px;}
.we{width:58.499102px;}
.w38{width:61.350000px;}
.w33{width:64.650000px;}
.w42{width:64.951514px;}
.w2b{width:69.450853px;}
.w35{width:70.237500px;}
.w37{width:70.500000px;}
.w1c{width:72.600275px;}
.w32{width:77.700000px;}
.w2e{width:81.599398px;}
.w39{width:84.637500px;}
.w34{width:86.850000px;}
.w31{width:88.987500px;}
.wa{width:91.948004px;}
.w22{width:91.948014px;}
.w9{width:93.901848px;}
.w23{width:100.947453px;}
.w16{width:101.547509px;}
.w1d{width:105.449907px;}
.w2f{width:107.999956px;}
.w2d{width:121.500719px;}
.w21{width:123.455744px;}
.w44{width:126.003383px;}
.w17{width:126.003403px;}
.w45{width:146.545859px;}
.w6{width:178.350000px;}
.w20{width:178.654291px;}
.w28{width:184.492925px;}
.w43{width:217.951695px;}
.w1b{width:217.951730px;}
.w3f{width:223.043990px;}
.w5{width:262.995000px;}
.w40{width:276.892395px;}
.w12{width:279.603544px;}
.w18{width:280.955330px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:2.035673px;}
.x24{left:3.273810px;}
.x4{left:6.900000px;}
.x3c{left:9.542457px;}
.x4d{left:11.104689px;}
.x9{left:12.435000px;}
.x2c{left:13.749835px;}
.x5d{left:15.168629px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x3b{left:18.411385px;}
.x46{left:19.541416px;}
.x17{left:20.887500px;}
.x5{left:22.200000px;}
.x59{left:23.350052px;}
.x74{left:26.469695px;}
.xb{left:32.100000px;}
.x39{left:34.171579px;}
.x41{left:35.820647px;}
.x42{left:37.016995px;}
.x1c{left:38.243788px;}
.x62{left:39.974280px;}
.x3a{left:41.371119px;}
.x3{left:42.599987px;}
.x45{left:43.797640px;}
.x43{left:44.993933px;}
.x51{left:47.251182px;}
.x40{left:49.597843px;}
.x3e{left:50.831614px;}
.x32{left:52.641511px;}
.x86{left:58.049987px;}
.x1d{left:60.892122px;}
.x57{left:65.778012px;}
.x77{left:69.599987px;}
.x69{left:71.659390px;}
.x8f{left:76.042381px;}
.x75{left:81.976353px;}
.x64{left:84.975000px;}
.x58{left:87.716491px;}
.x5c{left:91.556458px;}
.x2f{left:92.730172px;}
.x61{left:93.974990px;}
.x18{left:95.699987px;}
.x44{left:96.731041px;}
.x16{left:100.200000px;}
.x3f{left:102.750119px;}
.x15{left:104.700000px;}
.xd{left:106.980000px;}
.x53{left:111.749987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x4c{left:130.134815px;}
.x65{left:131.887487px;}
.x7b{left:133.087500px;}
.x85{left:139.387487px;}
.x1f{left:148.874990px;}
.x5b{left:150.075000px;}
.x76{left:154.079987px;}
.x89{left:156.974990px;}
.x21{left:164.474990px;}
.x56{left:171.843419px;}
.x22{left:183.179987px;}
.x8a{left:184.679987px;}
.x54{left:186.674980px;}
.x90{left:189.179987px;}
.x10{left:194.444987px;}
.x31{left:197.398091px;}
.x4e{left:202.421250px;}
.x55{left:205.394987px;}
.x7c{left:211.545000px;}
.x1b{left:212.624980px;}
.x23{left:214.275000px;}
.x60{left:215.324980px;}
.x29{left:216.525000px;}
.x8c{left:229.829987px;}
.x25{left:232.994987px;}
.x20{left:240.779987px;}
.x63{left:247.124980px;}
.x30{left:251.236654px;}
.x50{left:255.029987px;}
.x78{left:256.829987px;}
.x8d{left:260.594987px;}
.x68{left:271.994987px;}
.x2a{left:274.244987px;}
.x79{left:275.775000px;}
.x7d{left:276.945000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x1e{left:306.494987px;}
.x52{left:319.079987px;}
.x7a{left:320.744987px;}
.x26{left:326.474980px;}
.x5a{left:327.494987px;}
.x5e{left:358.574959px;}
.x7e{left:364.545000px;}
.x87{left:371.894987px;}
.x5f{left:374.594987px;}
.x27{left:382.424987px;}
.x8b{left:416.774987px;}
.x66{left:419.925000px;}
.x88{left:425.774987px;}
.x8e{left:431.474987px;}
.x67{left:435.974987px;}
.x84{left:438.674987px;}
.x19{left:457.274987px;}
.x36{left:476.024987px;}
.x7f{left:484.274987px;}
.x92{left:491.324987px;}
.x6b{left:497.774987px;}
.x6c{left:499.724987px;}
.x1a{left:510.374987px;}
.x12{left:519.824987px;}
.x13{left:524.174987px;}
.x6d{left:526.724987px;}
.x80{left:529.275000px;}
.x91{left:544.424987px;}
.x11{left:556.124987px;}
.x2b{left:557.624959px;}
.x2e{left:563.474959px;}
.x2d{left:580.124987px;}
.x37{left:585.974959px;}
.x81{left:591.375000px;}
.x38{left:602.024987px;}
.xc{left:625.425000px;}
.x70{left:674.624959px;}
.x82{left:676.770000px;}
.x3d{left:689.519987px;}
.x71{left:690.704987px;}
.x72{left:699.374919px;}
.xf{left:713.655000px;}
.x83{left:728.520000px;}
.x4a{left:742.124919px;}
.x73{left:744.404987px;}
.x6a{left:748.004987px;}
.x34{left:749.774919px;}
.x4b{left:758.204987px;}
.x6e{left:759.674919px;}
.x35{left:768.569987px;}
.x6f{left:775.754987px;}
.x4f{left:781.469987px;}
.x48{left:787.725000px;}
.x49{left:803.819987px;}
.x2{left:819.119987px;}
.x33{left:843.119987px;}
.x47{left:844.454987px;}
.x14{left:850.619987px;}
@media print{
.v1{vertical-align:-36.100626pt;}
.v6{vertical-align:-34.270399pt;}
.v3{vertical-align:-18.691423pt;}
.v4{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.v2{vertical-align:64.519178pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls43{letter-spacing:-2.173895pt;}
.ls36{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.149333pt;}
.ls39{letter-spacing:-0.021333pt;}
.ls38{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls3a{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls33{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls3c{letter-spacing:0.063368pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.ls3b{letter-spacing:0.149333pt;}
.ls1c{letter-spacing:0.170667pt;}
.ls34{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.476110pt;}
.ls4{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.704000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls27{letter-spacing:6.400000pt;}
.lse{letter-spacing:8.000000pt;}
.ls28{letter-spacing:9.066667pt;}
.ls10{letter-spacing:14.346667pt;}
.ls32{letter-spacing:17.792000pt;}
.ls24{letter-spacing:19.146667pt;}
.ls3e{letter-spacing:20.320000pt;}
.ls3f{letter-spacing:21.920000pt;}
.ls1f{letter-spacing:26.121973pt;}
.ls1d{letter-spacing:26.551923pt;}
.ls23{letter-spacing:29.920000pt;}
.ls11{letter-spacing:33.066667pt;}
.ls1e{letter-spacing:33.909420pt;}
.ls30{letter-spacing:36.815942pt;}
.ls26{letter-spacing:40.000000pt;}
.ls14{letter-spacing:47.413333pt;}
.ls1a{letter-spacing:48.206126pt;}
.ls41{letter-spacing:48.346087pt;}
.ls25{letter-spacing:49.066667pt;}
.ls2c{letter-spacing:56.548465pt;}
.ls31{letter-spacing:56.640000pt;}
.ls13{letter-spacing:58.225590pt;}
.ls19{letter-spacing:68.010307pt;}
.ls29{letter-spacing:71.696566pt;}
.ls18{letter-spacing:72.585199pt;}
.ls2d{letter-spacing:73.004161pt;}
.ls40{letter-spacing:79.731812pt;}
.ls3d{letter-spacing:79.841814pt;}
.ls16{letter-spacing:83.216364pt;}
.ls15{letter-spacing:84.996953pt;}
.ls17{letter-spacing:87.982059pt;}
.ls2e{letter-spacing:109.597519pt;}
.ls35{letter-spacing:164.370920pt;}
.ls2a{letter-spacing:228.001622pt;}
.ls2b{letter-spacing:246.895888pt;}
.ls1b{letter-spacing:340.000817pt;}
.ls12{letter-spacing:347.310409pt;}
.ls22{letter-spacing:370.984352pt;}
.ls21{letter-spacing:373.096118pt;}
.ls20{letter-spacing:377.689207pt;}
.ls2f{letter-spacing:380.522990pt;}
.ls44{letter-spacing:536.622954pt;}
.ws16{word-spacing:-379.259652pt;}
.ws12{word-spacing:-88.055519pt;}
.ws10{word-spacing:-85.070413pt;}
.ws11{word-spacing:-83.289824pt;}
.ws49{word-spacing:-73.459782pt;}
.ws2f{word-spacing:-73.077621pt;}
.ws13{word-spacing:-72.658533pt;}
.ws3c{word-spacing:-64.000000pt;}
.ws3e{word-spacing:-63.744000pt;}
.ws32{word-spacing:-55.789070pt;}
.ws19{word-spacing:-41.664989pt;}
.ws29{word-spacing:-39.325659pt;}
.ws3a{word-spacing:-29.280000pt;}
.ws4e{word-spacing:-18.939488pt;}
.wsc{word-spacing:-18.523795pt;}
.ws4f{word-spacing:-18.333523pt;}
.ws47{word-spacing:-16.873307pt;}
.ws43{word-spacing:-16.149333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws51{word-spacing:-15.850667pt;}
.ws3f{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws42{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws40{word-spacing:-11.994667pt;}
.ws4{word-spacing:-11.989333pt;}
.ws41{word-spacing:-11.978667pt;}
.ws33{word-spacing:-10.575898pt;}
.ws27{word-spacing:-10.241612pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws3b{word-spacing:-0.040844pt;}
.wsa{word-spacing:0.000000pt;}
.ws3d{word-spacing:8.853333pt;}
.ws35{word-spacing:15.973810pt;}
.ws34{word-spacing:16.226845pt;}
.ws2a{word-spacing:18.051061pt;}
.ws50{word-spacing:19.923343pt;}
.ws38{word-spacing:20.094231pt;}
.ws1a{word-spacing:20.606163pt;}
.ws28{word-spacing:22.563903pt;}
.ws39{word-spacing:22.954620pt;}
.ws25{word-spacing:23.323580pt;}
.ws18{word-spacing:27.700767pt;}
.ws1f{word-spacing:31.860928pt;}
.wse{word-spacing:32.709673pt;}
.ws21{word-spacing:32.750070pt;}
.wsd{word-spacing:38.010828pt;}
.wsf{word-spacing:39.160536pt;}
.ws2b{word-spacing:40.686656pt;}
.ws24{word-spacing:40.974635pt;}
.ws17{word-spacing:44.121496pt;}
.ws2c{word-spacing:46.345540pt;}
.ws14{word-spacing:48.269060pt;}
.ws2e{word-spacing:52.505843pt;}
.ws37{word-spacing:54.798049pt;}
.ws2d{word-spacing:64.645053pt;}
.ws36{word-spacing:65.136650pt;}
.ws15{word-spacing:66.044285pt;}
.ws26{word-spacing:67.713620pt;}
.ws20{word-spacing:71.619982pt;}
.ws1b{word-spacing:79.759793pt;}
.ws4a{word-spacing:80.438461pt;}
.ws30{word-spacing:83.639998pt;}
.ws4d{word-spacing:87.854244pt;}
.ws46{word-spacing:88.000912pt;}
.ws31{word-spacing:93.534712pt;}
.ws22{word-spacing:104.622395pt;}
.ws1e{word-spacing:106.396697pt;}
.wsb{word-spacing:127.480881pt;}
.ws1d{word-spacing:140.353089pt;}
.ws1c{word-spacing:154.800693pt;}
.ws4b{word-spacing:183.921907pt;}
.ws44{word-spacing:184.151875pt;}
.ws23{word-spacing:268.294819pt;}
.ws4c{word-spacing:387.424016pt;}
.ws45{word-spacing:387.790687pt;}
.ws48{word-spacing:413.857604pt;}
._80{margin-left:-978.800480pt;}
._48{margin-left:-961.874685pt;}
._7c{margin-left:-762.972748pt;}
._85{margin-left:-743.333047pt;}
._81{margin-left:-558.385331pt;}
._71{margin-left:-541.515203pt;}
._87{margin-left:-489.691588pt;}
._7d{margin-left:-464.137663pt;}
._86{margin-left:-435.484419pt;}
._63{margin-left:-351.503587pt;}
._62{margin-left:-333.544856pt;}
._3a{margin-left:-311.799320pt;}
._60{margin-left:-252.254363pt;}
._2a{margin-left:-223.582783pt;}
._3b{margin-left:-209.268304pt;}
._2c{margin-left:-206.611740pt;}
._3e{margin-left:-196.082258pt;}
._3c{margin-left:-193.091800pt;}
._3d{margin-left:-191.287691pt;}
._40{margin-left:-181.628303pt;}
._6e{margin-left:-172.684183pt;}
._83{margin-left:-156.420579pt;}
._4e{margin-left:-129.040953pt;}
._67{margin-left:-126.107175pt;}
._4b{margin-left:-101.284747pt;}
._72{margin-left:-98.013295pt;}
._64{margin-left:-65.615210pt;}
._4a{margin-left:-63.790573pt;}
._75{margin-left:-57.998763pt;}
._78{margin-left:-11.900341pt;}
._1b{margin-left:-3.888000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:2.032000pt;}
._29{width:2.944000pt;}
._19{width:3.840000pt;}
._22{width:5.248000pt;}
._13{width:6.144000pt;}
._6{width:7.232000pt;}
._a{width:8.768000pt;}
._1f{width:9.920000pt;}
._8{width:10.816000pt;}
._12{width:12.288000pt;}
._35{width:13.568000pt;}
._1e{width:14.656000pt;}
._6c{width:17.050667pt;}
._30{width:18.304000pt;}
._2f{width:19.264000pt;}
._37{width:20.277333pt;}
._14{width:21.504000pt;}
._15{width:22.464000pt;}
._1c{width:23.744000pt;}
._5{width:25.152000pt;}
._4{width:26.138667pt;}
._1d{width:27.264000pt;}
._9{width:28.197333pt;}
._1a{width:29.173333pt;}
._36{width:30.464000pt;}
._16{width:32.064000pt;}
._20{width:33.690667pt;}
._26{width:35.520000pt;}
._e{width:36.864000pt;}
._f{width:37.760000pt;}
._21{width:39.450667pt;}
._6d{width:40.458667pt;}
._c{width:41.408000pt;}
._d{width:42.842667pt;}
._2e{width:44.352000pt;}
._2d{width:45.440000pt;}
._41{width:46.656000pt;}
._24{width:47.616000pt;}
._23{width:48.640000pt;}
._79{width:49.984000pt;}
._4d{width:50.909343pt;}
._3f{width:52.608000pt;}
._27{width:55.104000pt;}
._31{width:56.640000pt;}
._32{width:57.802667pt;}
._10{width:59.904000pt;}
._11{width:60.976000pt;}
._65{width:62.390982pt;}
._69{width:64.000000pt;}
._6a{width:65.664000pt;}
._5a{width:66.560000pt;}
._45{width:67.576684pt;}
._4f{width:68.897983pt;}
._43{width:70.508582pt;}
._6b{width:71.808000pt;}
._42{width:73.655010pt;}
._89{width:76.864000pt;}
._88{width:78.016000pt;}
._7b{width:79.210667pt;}
._33{width:80.384000pt;}
._34{width:81.664000pt;}
._28{width:83.840000pt;}
._74{width:86.016000pt;}
._5d{width:88.395550pt;}
._17{width:89.472000pt;}
._18{width:90.826667pt;}
._2b{width:96.175544pt;}
._82{width:97.717333pt;}
._73{width:98.624000pt;}
._6f{width:100.185115pt;}
._b{width:101.184000pt;}
._7a{width:102.656000pt;}
._4c{width:104.221855pt;}
._76{width:108.521627pt;}
._5b{width:118.661577pt;}
._61{width:121.367905pt;}
._38{width:122.496000pt;}
._39{width:123.968000pt;}
._66{width:137.245833pt;}
._68{width:139.613651pt;}
._47{width:141.033344pt;}
._57{width:145.031526pt;}
._25{width:149.760000pt;}
._54{width:159.418389pt;}
._59{width:163.820730pt;}
._56{width:185.930114pt;}
._49{width:191.915904pt;}
._53{width:201.409209pt;}
._46{width:203.034102pt;}
._50{width:241.014929pt;}
._5e{width:247.033331pt;}
._51{width:250.296343pt;}
._55{width:256.408493pt;}
._70{width:261.081981pt;}
._8a{width:268.224000pt;}
._52{width:270.631488pt;}
._7f{width:272.697394pt;}
._44{width:274.852747pt;}
._58{width:290.063051pt;}
._7e{width:298.616429pt;}
._77{width:312.629333pt;}
._84{width:314.474667pt;}
._5f{width:316.015944pt;}
._5c{width:328.910433pt;}
.fs22{font-size:26.471692pt;}
.fse{font-size:40.843714pt;}
.fsc{font-size:40.966447pt;}
.fs1b{font-size:42.303593pt;}
.fs1f{font-size:43.066973pt;}
.fs16{font-size:43.156034pt;}
.fs30{font-size:43.347004pt;}
.fs2e{font-size:43.416229pt;}
.fs2c{font-size:43.572834pt;}
.fs2a{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsf{font-size:71.509718pt;}
.fsd{font-size:71.631437pt;}
.fsa{font-size:71.642042pt;}
.fsb{font-size:73.334094pt;}
.fs9{font-size:73.459782pt;}
.fs7{font-size:74.095180pt;}
.fs0{font-size:74.666667pt;}
.fs1e{font-size:75.237355pt;}
.fs17{font-size:75.458650pt;}
.fs12{font-size:75.703573pt;}
.fs28{font-size:75.703802pt;}
.fs14{font-size:75.757950pt;}
.fs10{font-size:75.775515pt;}
.fs26{font-size:75.776141pt;}
.fs29{font-size:75.776199pt;}
.fs27{font-size:75.877482pt;}
.fs2f{font-size:75.878936pt;}
.fs8{font-size:75.892512pt;}
.fs21{font-size:75.906781pt;}
.fs2b{font-size:75.992823pt;}
.fs2d{font-size:76.188808pt;}
.fs11{font-size:77.452559pt;}
.fs1c{font-size:78.249811pt;}
.fs1d{font-size:79.033017pt;}
.fs20{font-size:79.339889pt;}
.fs15{font-size:79.754180pt;}
.fs23{font-size:79.803091pt;}
.fs13{font-size:79.825612pt;}
.fs24{font-size:82.764708pt;}
.fs1a{font-size:82.764738pt;}
.fs25{font-size:82.764789pt;}
.fs19{font-size:82.764810pt;}
.fs18{font-size:97.035611pt;}
.fs6{font-size:97.143872pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y16a{bottom:2.520000pt;}
.y16d{bottom:2.653333pt;}
.y67{bottom:2.858071pt;}
.y1a7{bottom:2.858137pt;}
.y189{bottom:2.933333pt;}
.y193{bottom:2.946667pt;}
.y1b5{bottom:2.973866pt;}
.y132{bottom:3.197284pt;}
.ye1{bottom:3.197289pt;}
.y15d{bottom:3.197297pt;}
.y76{bottom:3.197299pt;}
.yea{bottom:3.197303pt;}
.y13c{bottom:3.197332pt;}
.yef{bottom:3.206324pt;}
.y153{bottom:3.227986pt;}
.y85{bottom:3.228002pt;}
.y141{bottom:3.228009pt;}
.y83{bottom:3.228023pt;}
.y1c{bottom:3.466667pt;}
.ya4{bottom:3.904288pt;}
.ya7{bottom:3.904289pt;}
.yd2{bottom:3.936463pt;}
.yb8{bottom:3.936479pt;}
.yae{bottom:3.936496pt;}
.ye5{bottom:3.936521pt;}
.y6f{bottom:4.222091pt;}
.y64{bottom:4.222109pt;}
.y8f{bottom:4.222152pt;}
.y8b{bottom:4.222154pt;}
.y73{bottom:4.253906pt;}
.y1ad{bottom:4.253937pt;}
.y17e{bottom:4.431290pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yd8{bottom:5.429379pt;}
.ydb{bottom:5.429383pt;}
.ydd{bottom:5.429385pt;}
.ybd{bottom:5.936570pt;}
.yf0{bottom:5.936588pt;}
.yc1{bottom:5.936611pt;}
.yc{bottom:6.000000pt;}
.y8d{bottom:6.710328pt;}
.y86{bottom:7.870134pt;}
.y152{bottom:7.870141pt;}
.y133{bottom:7.870144pt;}
.y154{bottom:7.870146pt;}
.y87{bottom:7.870148pt;}
.y13d{bottom:7.870150pt;}
.yeb{bottom:7.870156pt;}
.ye4{bottom:7.870160pt;}
.yec{bottom:7.870162pt;}
.y10a{bottom:7.870171pt;}
.y140{bottom:7.870175pt;}
.y13b{bottom:7.870183pt;}
.y88{bottom:7.870185pt;}
.y77{bottom:7.870188pt;}
.ye2{bottom:7.870190pt;}
.y84{bottom:7.870193pt;}
.y142{bottom:7.870197pt;}
.ye3{bottom:7.870198pt;}
.y123{bottom:8.095358pt;}
.y42{bottom:8.095366pt;}
.yc8{bottom:8.095382pt;}
.y114{bottom:8.095392pt;}
.y61{bottom:8.352482pt;}
.y10c{bottom:8.352532pt;}
.y10d{bottom:8.352554pt;}
.y9c{bottom:8.385201pt;}
.y9b{bottom:8.385214pt;}
.y9a{bottom:8.385216pt;}
.y43{bottom:9.428726pt;}
.yc9{bottom:9.428741pt;}
.y167{bottom:9.466667pt;}
.y18d{bottom:10.666667pt;}
.ybc{bottom:10.761948pt;}
.yf1{bottom:10.761980pt;}
.yc0{bottom:10.762005pt;}
.yc2{bottom:10.762018pt;}
.y1b4{bottom:11.503017pt;}
.y1c0{bottom:12.822470pt;}
.ya3{bottom:15.137420pt;}
.ya6{bottom:15.137432pt;}
.y1b1{bottom:15.565228pt;}
.yd7{bottom:16.191192pt;}
.ydc{bottom:16.191235pt;}
.yd9{bottom:16.191244pt;}
.yde{bottom:16.191252pt;}
.yda{bottom:16.191261pt;}
.y168{bottom:16.400000pt;}
.y124{bottom:16.444666pt;}
.y113{bottom:16.444688pt;}
.yaa{bottom:16.993142pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y192{bottom:18.280000pt;}
.ya9{bottom:20.034086pt;}
.ya8{bottom:20.034088pt;}
.y1b{bottom:21.866667pt;}
.y165{bottom:23.186667pt;}
.y18b{bottom:26.000000pt;}
.y190{bottom:26.013333pt;}
.y9{bottom:30.133333pt;}
.y16c{bottom:30.266667pt;}
.y5{bottom:32.000000pt;}
.y186{bottom:33.600000pt;}
.y191{bottom:33.640000pt;}
.y166{bottom:37.066667pt;}
.ya2{bottom:37.539296pt;}
.ya5{bottom:37.539298pt;}
.y1a{bottom:40.266667pt;}
.y18a{bottom:41.333333pt;}
.y169{bottom:44.000000pt;}
.y188{bottom:48.933333pt;}
.y3{bottom:51.233333pt;}
.y19{bottom:58.666667pt;}
.y187{bottom:64.266667pt;}
.y2{bottom:72.566667pt;}
.y18{bottom:77.066667pt;}
.y17{bottom:95.466667pt;}
.y109{bottom:96.433333pt;}
.y139{bottom:98.166667pt;}
.y3b{bottom:100.166667pt;}
.y1c2{bottom:101.366667pt;}
.y1c1{bottom:101.400000pt;}
.y71{bottom:103.633333pt;}
.y72{bottom:103.666667pt;}
.y1dc{bottom:104.566667pt;}
.y16{bottom:113.866667pt;}
.y107{bottom:117.500000pt;}
.y108{bottom:117.533333pt;}
.y138{bottom:119.366667pt;}
.y3a{bottom:121.366667pt;}
.yba{bottom:121.900000pt;}
.ybb{bottom:121.933333pt;}
.y16f{bottom:123.366667pt;}
.y19c{bottom:125.766667pt;}
.y203{bottom:126.966667pt;}
.y1bf{bottom:127.633333pt;}
.y1be{bottom:127.666667pt;}
.y70{bottom:129.766667pt;}
.y15{bottom:132.266667pt;}
.y16e{bottom:138.973333pt;}
.y137{bottom:140.440000pt;}
.y39{bottom:142.573333pt;}
.y105{bottom:143.773333pt;}
.y106{bottom:143.800000pt;}
.y19b{bottom:146.826667pt;}
.y1db{bottom:146.960000pt;}
.y202{bottom:148.173333pt;}
.y6d{bottom:150.973333pt;}
.y6e{bottom:151.000000pt;}
.yb9{bottom:156.160000pt;}
.y1bd{bottom:158.306667pt;}
.y136{bottom:161.640000pt;}
.y38{bottom:163.640000pt;}
.y19a{bottom:168.040000pt;}
.y1da{bottom:168.160000pt;}
.y201{bottom:169.240000pt;}
.y104{bottom:170.040000pt;}
.y6c{bottom:177.226667pt;}
.y6b{bottom:177.266649pt;}
.y1bb{bottom:179.506667pt;}
.y1bc{bottom:179.533333pt;}
.y16b{bottom:180.973333pt;}
.y135{bottom:182.840000pt;}
.y37{bottom:184.840000pt;}
.y199{bottom:189.226667pt;}
.y200{bottom:190.440000pt;}
.y103{bottom:191.106667pt;}
.y1d9{bottom:193.240000pt;}
.yb7{bottom:200.173333pt;}
.y1ba{bottom:202.306667pt;}
.y6a{bottom:203.373333pt;}
.y134{bottom:203.893333pt;}
.y36{bottom:206.040000pt;}
.y198{bottom:210.293333pt;}
.y1ff{bottom:211.640000pt;}
.y101{bottom:212.306667pt;}
.y102{bottom:212.333315pt;}
.y1d8{bottom:214.440000pt;}
.yb6{bottom:221.240000pt;}
.y164{bottom:223.106667pt;}
.y68{bottom:224.560000pt;}
.y69{bottom:224.599982pt;}
.y130{bottom:225.226667pt;}
.y131{bottom:225.266649pt;}
.y35{bottom:227.106667pt;}
.y197{bottom:231.506667pt;}
.y1fe{bottom:232.706667pt;}
.y1d7{bottom:235.640000pt;}
.y100{bottom:238.573333pt;}
.yb5{bottom:242.440000pt;}
.y34{bottom:248.306667pt;}
.y65{bottom:250.840000pt;}
.y66{bottom:250.866667pt;}
.y196{bottom:252.706667pt;}
.y12f{bottom:255.906667pt;}
.y1d6{bottom:256.706667pt;}
.y1fd{bottom:257.893333pt;}
.yff{bottom:259.640000pt;}
.yfe{bottom:259.666667pt;}
.yb4{bottom:263.640000pt;}
.y33{bottom:269.506667pt;}
.y195{bottom:273.773333pt;}
.y62{bottom:275.240000pt;}
.y63{bottom:275.266649pt;}
.y12e{bottom:277.106667pt;}
.y1d5{bottom:277.906667pt;}
.y1fc{bottom:279.106667pt;}
.yb3{bottom:284.706667pt;}
.y163{bottom:285.373333pt;}
.yfd{bottom:285.906667pt;}
.y32{bottom:290.560000pt;}
.y194{bottom:294.973333pt;}
.y12d{bottom:298.306667pt;}
.y1d4{bottom:299.106667pt;}
.y1fb{bottom:300.173333pt;}
.y5f{bottom:301.506667pt;}
.y60{bottom:301.533333pt;}
.yb2{bottom:305.893333pt;}
.y162{bottom:306.706667pt;}
.yfc{bottom:307.106667pt;}
.y18f{bottom:310.560000pt;}
.y31{bottom:311.773333pt;}
.y12b{bottom:319.373333pt;}
.y12c{bottom:319.399964pt;}
.y1d3{bottom:320.173333pt;}
.y1fa{bottom:321.373333pt;}
.yb1{bottom:327.106667pt;}
.y161{bottom:327.906667pt;}
.yfb{bottom:328.173333pt;}
.y5e{bottom:332.306667pt;}
.y30{bottom:332.960000pt;}
.y1d2{bottom:341.400000pt;}
.y12a{bottom:342.333333pt;}
.y1f9{bottom:346.600000pt;}
.yb0{bottom:348.200000pt;}
.y160{bottom:349.133333pt;}
.yfa{bottom:349.400000pt;}
.y5d{bottom:353.533333pt;}
.y2f{bottom:354.066667pt;}
.y18e{bottom:357.266667pt;}
.y129{bottom:363.400000pt;}
.y1d1{bottom:366.600000pt;}
.y1f8{bottom:367.666667pt;}
.yaf{bottom:369.400000pt;}
.y15f{bottom:370.200000pt;}
.yf9{bottom:370.600000pt;}
.y5c{bottom:374.600000pt;}
.y2e{bottom:375.266667pt;}
.y128{bottom:384.600000pt;}
.y1d0{bottom:387.666667pt;}
.y1f7{bottom:388.866667pt;}
.yad{bottom:390.466630pt;}
.yac{bottom:390.466667pt;}
.y15e{bottom:391.400000pt;}
.yf8{bottom:391.666667pt;}
.y5b{bottom:395.800000pt;}
.y2d{bottom:396.466667pt;}
.y18c{bottom:403.933333pt;}
.y127{bottom:405.800000pt;}
.y1cf{bottom:408.866667pt;}
.y1f6{bottom:410.066667pt;}
.y15c{bottom:412.599964pt;}
.y15b{bottom:412.600000pt;}
.yf7{bottom:412.866667pt;}
.yab{bottom:413.400000pt;}
.y1b9{bottom:416.466667pt;}
.y5a{bottom:417.000000pt;}
.y2c{bottom:417.533333pt;}
.y126{bottom:426.866667pt;}
.y1ce{bottom:430.066667pt;}
.y1f5{bottom:431.133333pt;}
.yf6{bottom:434.066667pt;}
.ya1{bottom:434.599964pt;}
.ya0{bottom:434.600000pt;}
.y1b8{bottom:437.666667pt;}
.y59{bottom:438.066667pt;}
.y2b{bottom:438.733333pt;}
.y15a{bottom:443.400000pt;}
.y122{bottom:448.066630pt;}
.y125{bottom:448.066667pt;}
.y185{bottom:450.600000pt;}
.y1cd{bottom:451.133333pt;}
.y1f4{bottom:452.333333pt;}
.yf5{bottom:455.133333pt;}
.y1b7{bottom:458.866667pt;}
.y58{bottom:459.266667pt;}
.y2a{bottom:459.933333pt;}
.y159{bottom:464.466667pt;}
.y1cc{bottom:472.333333pt;}
.y1f3{bottom:473.533333pt;}
.yf4{bottom:476.333333pt;}
.y1b6{bottom:479.933333pt;}
.y57{bottom:480.466667pt;}
.y29{bottom:481.133333pt;}
.y121{bottom:482.333333pt;}
.y158{bottom:485.666667pt;}
.y9f{bottom:490.466667pt;}
.y1cb{bottom:493.533333pt;}
.yf3{bottom:497.533333pt;}
.y1f2{bottom:498.733333pt;}
.y1b3{bottom:501.266630pt;}
.y1b2{bottom:501.266667pt;}
.y56{bottom:501.666667pt;}
.y28{bottom:502.200000pt;}
.y120{bottom:503.400000pt;}
.y157{bottom:506.866667pt;}
.y9e{bottom:511.666667pt;}
.y1ca{bottom:514.733333pt;}
.yf2{bottom:518.733333pt;}
.y1f1{bottom:519.800000pt;}
.y55{bottom:522.733333pt;}
.y27{bottom:523.400000pt;}
.y11f{bottom:524.600000pt;}
.y1b0{bottom:527.266630pt;}
.y1af{bottom:527.266667pt;}
.y156{bottom:528.066667pt;}
.y9d{bottom:532.866667pt;}
.y184{bottom:534.200000pt;}
.y1c9{bottom:535.800000pt;}
.yee{bottom:539.799964pt;}
.yed{bottom:539.800000pt;}
.y1f0{bottom:541.000000pt;}
.y54{bottom:543.933333pt;}
.y26{bottom:544.600000pt;}
.y11e{bottom:545.800000pt;}
.y155{bottom:549.133333pt;}
.y99{bottom:554.066630pt;}
.y98{bottom:554.066667pt;}
.y183{bottom:555.266667pt;}
.y1c8{bottom:557.000000pt;}
.y1ae{bottom:561.000000pt;}
.y1ef{bottom:562.200000pt;}
.y53{bottom:565.133333pt;}
.y25{bottom:565.666667pt;}
.y11d{bottom:566.866667pt;}
.y151{bottom:570.333297pt;}
.y150{bottom:570.333333pt;}
.ye9{bottom:574.066630pt;}
.ye8{bottom:574.066667pt;}
.y182{bottom:576.466667pt;}
.y1c7{bottom:578.200000pt;}
.y1ac{bottom:578.599964pt;}
.y1ab{bottom:578.600000pt;}
.y1ee{bottom:583.266667pt;}
.y97{bottom:584.866667pt;}
.y52{bottom:586.200000pt;}
.y24{bottom:586.866667pt;}
.y11c{bottom:588.066667pt;}
.y181{bottom:597.666667pt;}
.y1c6{bottom:599.266667pt;}
.y14f{bottom:601.133333pt;}
.y1ed{bottom:604.466667pt;}
.ye7{bottom:604.866667pt;}
.y96{bottom:605.933333pt;}
.y51{bottom:607.400000pt;}
.y23{bottom:608.066667pt;}
.y11b{bottom:609.266667pt;}
.y180{bottom:618.733333pt;}
.y1c5{bottom:620.466667pt;}
.y14e{bottom:622.333333pt;}
.y1ec{bottom:625.666667pt;}
.y1a9{bottom:625.933261pt;}
.y1aa{bottom:625.933333pt;}
.ye6{bottom:626.066667pt;}
.y95{bottom:627.133333pt;}
.y50{bottom:628.600000pt;}
.y22{bottom:629.133333pt;}
.y11a{bottom:630.333333pt;}
.y17f{bottom:639.933333pt;}
.y1c4{bottom:641.666667pt;}
.y14d{bottom:643.400000pt;}
.ye0{bottom:647.266594pt;}
.ydf{bottom:647.266667pt;}
.y94{bottom:648.333333pt;}
.y1a8{bottom:648.866667pt;}
.y4f{bottom:649.666667pt;}
.y21{bottom:650.333333pt;}
.y1eb{bottom:650.733333pt;}
.y119{bottom:651.533333pt;}
.y17d{bottom:660.999928pt;}
.y17c{bottom:661.040000pt;}
.y1c3{bottom:662.773333pt;}
.y14c{bottom:664.640000pt;}
.y93{bottom:669.440000pt;}
.y1a6{bottom:669.933261pt;}
.y1a5{bottom:669.973333pt;}
.y4e{bottom:670.906667pt;}
.y20{bottom:671.573333pt;}
.y1ea{bottom:671.973333pt;}
.y118{bottom:672.773333pt;}
.yd6{bottom:677.933261pt;}
.yd5{bottom:677.973333pt;}
.y17b{bottom:683.973333pt;}
.y14b{bottom:685.840000pt;}
.y92{bottom:690.640000pt;}
.y4d{bottom:692.106667pt;}
.y1e9{bottom:693.173333pt;}
.y117{bottom:693.840000pt;}
.y1a4{bottom:694.506667pt;}
.y1f{bottom:700.640000pt;}
.y17a{bottom:705.173333pt;}
.y14a{bottom:706.906667pt;}
.y91{bottom:711.800000pt;}
.y90{bottom:711.840000pt;}
.y4c{bottom:713.173333pt;}
.y1e8{bottom:714.240000pt;}
.y116{bottom:715.040000pt;}
.y1e{bottom:715.573333pt;}
.y1a3{bottom:715.706667pt;}
.yd4{bottom:717.960000pt;}
.y179{bottom:726.240000pt;}
.y149{bottom:728.106667pt;}
.y4b{bottom:734.373333pt;}
.y112{bottom:736.199928pt;}
.y115{bottom:736.240000pt;}
.y1a2{bottom:736.906667pt;}
.yd1{bottom:739.133333pt;}
.yd3{bottom:739.173333pt;}
.y1e7{bottom:739.440000pt;}
.y8c{bottom:742.599928pt;}
.y8e{bottom:742.640000pt;}
.y178{bottom:747.440000pt;}
.y148{bottom:749.306667pt;}
.y1d{bottom:752.373333pt;}
.y4a{bottom:755.573333pt;}
.y1a1{bottom:757.960000pt;}
.y1e6{bottom:760.640000pt;}
.yd0{bottom:763.706667pt;}
.y177{bottom:768.640000pt;}
.y8a{bottom:768.733261pt;}
.y89{bottom:768.773333pt;}
.y111{bottom:770.506667pt;}
.y14{bottom:770.773333pt;}
.y49{bottom:776.626667pt;}
.y1a0{bottom:779.173333pt;}
.y1e5{bottom:781.706667pt;}
.ycf{bottom:784.773333pt;}
.y176{bottom:789.706667pt;}
.y110{bottom:791.573333pt;}
.y82{bottom:791.666594pt;}
.y81{bottom:791.706667pt;}
.y48{bottom:797.840000pt;}
.y19f{bottom:800.373333pt;}
.y1e4{bottom:802.906667pt;}
.yce{bottom:805.973333pt;}
.y175{bottom:810.906667pt;}
.y10f{bottom:812.773333pt;}
.y47{bottom:819.040000pt;}
.y19e{bottom:821.440000pt;}
.y80{bottom:822.373333pt;}
.y1e3{bottom:824.106667pt;}
.ycd{bottom:827.173333pt;}
.y174{bottom:832.106667pt;}
.y10b{bottom:833.933261pt;}
.y10e{bottom:833.973333pt;}
.y19d{bottom:839.173333pt;}
.y46{bottom:840.240000pt;}
.y7f{bottom:843.573333pt;}
.y1e2{bottom:845.306667pt;}
.ycc{bottom:848.240000pt;}
.y173{bottom:853.306667pt;}
.y147{bottom:855.040000pt;}
.y45{bottom:861.306667pt;}
.y7e{bottom:864.773333pt;}
.ycb{bottom:869.440000pt;}
.y1e1{bottom:870.373333pt;}
.y172{bottom:874.373333pt;}
.y146{bottom:876.240000pt;}
.y44{bottom:882.506667pt;}
.y7d{bottom:885.840000pt;}
.yca{bottom:890.640000pt;}
.y1e0{bottom:891.573333pt;}
.y171{bottom:895.573333pt;}
.y145{bottom:897.440000pt;}
.y41{bottom:903.666594pt;}
.y40{bottom:903.706667pt;}
.y7c{bottom:907.040000pt;}
.y207{bottom:908.773333pt;}
.yc7{bottom:911.666594pt;}
.yc6{bottom:911.706667pt;}
.y1df{bottom:912.773333pt;}
.y170{bottom:916.773333pt;}
.y144{bottom:918.506667pt;}
.y13{bottom:921.173333pt;}
.y7b{bottom:928.240000pt;}
.y206{bottom:929.840000pt;}
.y1de{bottom:933.840000pt;}
.y3f{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y143{bottom:939.706667pt;}
.yc5{bottom:945.973333pt;}
.y7a{bottom:949.306667pt;}
.y205{bottom:951.040000pt;}
.y1dd{bottom:955.040000pt;}
.y11{bottom:956.640000pt;}
.y3e{bottom:959.040000pt;}
.y13f{bottom:960.866594pt;}
.y13e{bottom:960.906667pt;}
.yc4{bottom:967.173333pt;}
.y79{bottom:970.506667pt;}
.y10{bottom:975.066667pt;}
.y204{bottom:976.266667pt;}
.y3d{bottom:980.266667pt;}
.yc3{bottom:988.266667pt;}
.y13a{bottom:991.666594pt;}
.y78{bottom:991.733333pt;}
.y3c{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ybf{bottom:1009.399928pt;}
.ybe{bottom:1009.466667pt;}
.y75{bottom:1012.866594pt;}
.y74{bottom:1012.933333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h65{height:16.666122pt;}
.h41{height:16.667058pt;}
.h3a{height:16.667076pt;}
.h38{height:16.667095pt;}
.h50{height:16.667131pt;}
.h19{height:18.266696pt;}
.h28{height:18.266769pt;}
.h10{height:18.400000pt;}
.h1b{height:20.000207pt;}
.h17{height:20.000225pt;}
.h6d{height:20.000244pt;}
.h26{height:20.000280pt;}
.h71{height:23.332472pt;}
.h5a{height:24.532669pt;}
.h51{height:24.532688pt;}
.h1d{height:24.532724pt;}
.h15{height:24.666412pt;}
.h2c{height:24.666448pt;}
.h54{height:24.666484pt;}
.h53{height:25.967592pt;}
.h6f{height:27.466360pt;}
.h3c{height:28.000416pt;}
.h52{height:28.000452pt;}
.h12{height:28.000488pt;}
.h57{height:31.335230pt;}
.h48{height:31.900683pt;}
.h35{height:31.966652pt;}
.h43{height:33.732600pt;}
.h11{height:36.800000pt;}
.h69{height:37.630208pt;}
.h22{height:40.065928pt;}
.h20{height:40.085872pt;}
.h1e{height:40.186324pt;}
.h4c{height:40.206327pt;}
.h6{height:40.266667pt;}
.h63{height:41.333333pt;}
.h62{height:41.466667pt;}
.h3d{height:41.498007pt;}
.h56{height:41.518663pt;}
.h45{height:42.246850pt;}
.h33{height:42.334215pt;}
.h31{height:42.355287pt;}
.h74{height:42.542714pt;}
.h72{height:42.610655pt;}
.h70{height:42.764354pt;}
.h64{height:43.031250pt;}
.h3{height:43.200000pt;}
.h4a{height:43.403434pt;}
.ha{height:45.156250pt;}
.h6a{height:46.000000pt;}
.h6c{height:46.033333pt;}
.h7{height:47.109375pt;}
.h6b{height:47.812500pt;}
.h61{height:48.375000pt;}
.h5{height:49.726562pt;}
.h30{height:49.732107pt;}
.h4{height:52.343750pt;}
.h5e{height:52.968868pt;}
.h68{height:53.750000pt;}
.h40{height:54.883979pt;}
.h60{height:55.200000pt;}
.h49{height:55.730014pt;}
.h36{height:55.893932pt;}
.h29{height:56.075352pt;}
.h5d{height:56.075521pt;}
.h2f{height:56.115630pt;}
.h24{height:56.128641pt;}
.h5b{height:56.129104pt;}
.h5f{height:56.129148pt;}
.h5c{height:56.204170pt;}
.h4e{height:56.225873pt;}
.h27{height:57.370865pt;}
.hf{height:57.375000pt;}
.hd{height:57.578125pt;}
.h3f{height:57.961408pt;}
.h9{height:58.351562pt;}
.h47{height:58.768853pt;}
.h2e{height:59.075728pt;}
.h55{height:59.111957pt;}
.h2a{height:59.128639pt;}
.h58{height:61.305694pt;}
.h3b{height:61.305717pt;}
.h59{height:61.305754pt;}
.h39{height:61.305770pt;}
.h75{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h23{height:70.147961pt;}
.h21{height:70.182878pt;}
.h1f{height:70.267362pt;}
.h1a{height:70.277764pt;}
.h4d{height:70.302338pt;}
.h37{height:71.876476pt;}
.h1c{height:71.937595pt;}
.h13{height:71.956667pt;}
.h6e{height:71.973402pt;}
.h18{height:72.060890pt;}
.h25{height:72.068388pt;}
.h4f{height:72.191058pt;}
.h3e{height:72.684188pt;}
.h14{height:72.720367pt;}
.h2{height:73.281250pt;}
.h46{height:73.804613pt;}
.h44{height:73.841350pt;}
.h34{height:74.021693pt;}
.h2d{height:74.352285pt;}
.h73{height:74.433976pt;}
.h16{height:74.484350pt;}
.h66{height:74.545694pt;}
.h4b{height:75.825147pt;}
.h2b{height:76.485422pt;}
.h67{height:76.666667pt;}
.h42{height:79.650463pt;}
.h32{height:138.577717pt;}
.he{height:147.186667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w36{width:13.732318pt;}
.w3e{width:13.733246pt;}
.w19{width:14.266431pt;}
.w1e{width:14.266440pt;}
.w27{width:14.266449pt;}
.w15{width:14.266467pt;}
.w1a{width:14.266503pt;}
.w25{width:16.666768pt;}
.w1f{width:16.666781pt;}
.w14{width:16.666799pt;}
.w13{width:16.666836pt;}
.wc{width:16.666902pt;}
.wb{width:16.666911pt;}
.w11{width:19.999506pt;}
.w41{width:24.665719pt;}
.w24{width:24.665728pt;}
.w3d{width:31.333633pt;}
.w29{width:35.999462pt;}
.w2a{width:37.733484pt;}
.w30{width:39.999899pt;}
.w2c{width:39.999971pt;}
.w26{width:41.733387pt;}
.w10{width:44.000285pt;}
.w3a{width:45.333333pt;}
.wd{width:49.734822pt;}
.w3b{width:51.200000pt;}
.w3c{width:51.333333pt;}
.wf{width:51.333626pt;}
.we{width:51.999201pt;}
.w38{width:54.533333pt;}
.w33{width:57.466667pt;}
.w42{width:57.734679pt;}
.w2b{width:61.734092pt;}
.w35{width:62.433333pt;}
.w37{width:62.666667pt;}
.w1c{width:64.533578pt;}
.w32{width:69.066667pt;}
.w2e{width:72.532798pt;}
.w39{width:75.233333pt;}
.w34{width:77.200000pt;}
.w31{width:79.100000pt;}
.wa{width:81.731559pt;}
.w22{width:81.731568pt;}
.w9{width:83.468309pt;}
.w23{width:89.731069pt;}
.w16{width:90.264453pt;}
.w1d{width:93.733250pt;}
.w2f{width:95.999961pt;}
.w2d{width:108.000639pt;}
.w21{width:109.738439pt;}
.w44{width:112.003007pt;}
.w17{width:112.003025pt;}
.w45{width:130.262986pt;}
.w6{width:158.533333pt;}
.w20{width:158.803814pt;}
.w28{width:163.993711pt;}
.w43{width:193.734840pt;}
.w1b{width:193.734871pt;}
.w3f{width:198.261324pt;}
.w5{width:233.773333pt;}
.w40{width:246.126574pt;}
.w12{width:248.536483pt;}
.w18{width:249.738071pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.809487pt;}
.x24{left:2.910054pt;}
.x4{left:6.133333pt;}
.x3c{left:8.482184pt;}
.x4d{left:9.870835pt;}
.x9{left:11.053333pt;}
.x2c{left:12.222075pt;}
.x5d{left:13.483226pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x3b{left:16.365675pt;}
.x46{left:17.370147pt;}
.x17{left:18.566667pt;}
.x5{left:19.733333pt;}
.x59{left:20.755602pt;}
.x74{left:23.528618pt;}
.xb{left:28.533333pt;}
.x39{left:30.374737pt;}
.x41{left:31.840576pt;}
.x42{left:32.903996pt;}
.x1c{left:33.994478pt;}
.x62{left:35.532693pt;}
.x3a{left:36.774328pt;}
.x3{left:37.866655pt;}
.x45{left:38.931236pt;}
.x43{left:39.994607pt;}
.x51{left:42.001051pt;}
.x40{left:44.086972pt;}
.x3e{left:45.183657pt;}
.x32{left:46.792454pt;}
.x86{left:51.599988pt;}
.x1d{left:54.126331pt;}
.x57{left:58.469344pt;}
.x77{left:61.866655pt;}
.x69{left:63.697236pt;}
.x8f{left:67.593228pt;}
.x75{left:72.867869pt;}
.x64{left:75.533333pt;}
.x58{left:77.970214pt;}
.x5c{left:81.383518pt;}
.x2f{left:82.426819pt;}
.x61{left:83.533324pt;}
.x18{left:85.066655pt;}
.x44{left:85.983147pt;}
.x16{left:89.066667pt;}
.x3f{left:91.333439pt;}
.x15{left:93.066667pt;}
.xd{left:95.093333pt;}
.x53{left:99.333322pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x4c{left:115.675391pt;}
.x65{left:117.233322pt;}
.x7b{left:118.300000pt;}
.x85{left:123.899988pt;}
.x1f{left:132.333324pt;}
.x5b{left:133.400000pt;}
.x76{left:136.959988pt;}
.x89{left:139.533324pt;}
.x21{left:146.199991pt;}
.x56{left:152.749706pt;}
.x22{left:162.826655pt;}
.x8a{left:164.159988pt;}
.x54{left:165.933315pt;}
.x90{left:168.159988pt;}
.x10{left:172.839988pt;}
.x31{left:175.464970pt;}
.x4e{left:179.930000pt;}
.x55{left:182.573322pt;}
.x7c{left:188.040000pt;}
.x1b{left:188.999982pt;}
.x23{left:190.466667pt;}
.x60{left:191.399982pt;}
.x29{left:192.466667pt;}
.x8c{left:204.293322pt;}
.x25{left:207.106655pt;}
.x20{left:214.026655pt;}
.x63{left:219.666649pt;}
.x30{left:223.321470pt;}
.x50{left:226.693322pt;}
.x78{left:228.293322pt;}
.x8d{left:231.639988pt;}
.x68{left:241.773322pt;}
.x2a{left:243.773322pt;}
.x79{left:245.133333pt;}
.x7d{left:246.173333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x1e{left:272.439988pt;}
.x52{left:283.626655pt;}
.x7a{left:285.106655pt;}
.x26{left:290.199982pt;}
.x5a{left:291.106655pt;}
.x5e{left:318.733297pt;}
.x7e{left:324.040000pt;}
.x87{left:330.573322pt;}
.x5f{left:332.973322pt;}
.x27{left:339.933322pt;}
.x8b{left:370.466655pt;}
.x66{left:373.266667pt;}
.x88{left:378.466655pt;}
.x8e{left:383.533322pt;}
.x67{left:387.533322pt;}
.x84{left:389.933322pt;}
.x19{left:406.466655pt;}
.x36{left:423.133322pt;}
.x7f{left:430.466655pt;}
.x92{left:436.733322pt;}
.x6b{left:442.466655pt;}
.x6c{left:444.199988pt;}
.x1a{left:453.666655pt;}
.x12{left:462.066655pt;}
.x13{left:465.933322pt;}
.x6d{left:468.199988pt;}
.x80{left:470.466667pt;}
.x91{left:483.933322pt;}
.x11{left:494.333322pt;}
.x2b{left:495.666630pt;}
.x2e{left:500.866630pt;}
.x2d{left:515.666655pt;}
.x37{left:520.866630pt;}
.x81{left:525.666667pt;}
.x38{left:535.133322pt;}
.xc{left:555.933333pt;}
.x70{left:599.666630pt;}
.x82{left:601.573333pt;}
.x3d{left:612.906655pt;}
.x71{left:613.959988pt;}
.x72{left:621.666594pt;}
.xf{left:634.360000pt;}
.x83{left:647.573333pt;}
.x4a{left:659.666594pt;}
.x73{left:661.693322pt;}
.x6a{left:664.893322pt;}
.x34{left:666.466594pt;}
.x4b{left:673.959988pt;}
.x6e{left:675.266594pt;}
.x35{left:683.173322pt;}
.x6f{left:689.559988pt;}
.x4f{left:694.639988pt;}
.x48{left:700.200000pt;}
.x49{left:714.506655pt;}
.x2{left:728.106655pt;}
.x33{left:749.439988pt;}
.x47{left:750.626655pt;}
.x14{left:756.106655pt;}
}




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