
    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_5472f251ccb8ceaa1a594d63.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_b94e0fb2663b724e22284593.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_0d0013c24e2bd21cea599cf6.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_51fcb729802f74c5ff1ab4f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_83630afce8c7cdec30d53e6d.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_3d61840d5c70f7afc76281d5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ee24d3829361faf3f0578cd.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_5783ddea862bb7226bbab472.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_ad242cb1b21da19c2aaa07f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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_894521a596437c194edbf2bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27{transform:matrix(0.190319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190319,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191973,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193956,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230643,0.000000,-0.076873,0.237888,0,0);-ms-transform:matrix(0.230643,0.000000,-0.076873,0.237888,0,0);-webkit-transform:matrix(0.230643,0.000000,-0.076873,0.237888,0,0);}
.m17{transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-ms-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-webkit-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);}
.m18{transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-ms-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-webkit-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);}
.m29{transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-ms-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);-webkit-transform:matrix(0.235076,0.000000,-0.078350,0.237405,0,0);}
.m3{transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235968,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.236658,0.000000,-0.078878,0.237230,0,0);-ms-transform:matrix(0.236658,0.000000,-0.078878,0.237230,0,0);-webkit-transform:matrix(0.236658,0.000000,-0.078878,0.237230,0,0);}
.m8{transform:matrix(0.238449,0.000000,-0.079475,0.237031,0,0);-ms-transform:matrix(0.238449,0.000000,-0.079475,0.237031,0,0);-webkit-transform:matrix(0.238449,0.000000,-0.079475,0.237031,0,0);}
.m1a{transform:matrix(0.240371,0.000000,-0.080116,0.236815,0,0);-ms-transform:matrix(0.240371,0.000000,-0.080116,0.236815,0,0);-webkit-transform:matrix(0.240371,0.000000,-0.080116,0.236815,0,0);}
.m1e{transform:matrix(0.241800,0.000000,-0.080592,0.236654,0,0);-ms-transform:matrix(0.241800,0.000000,-0.080592,0.236654,0,0);-webkit-transform:matrix(0.241800,0.000000,-0.080592,0.236654,0,0);}
.md{transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m7{transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251496,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252579,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252826,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253754,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253985,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254051,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254193,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255266,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255852,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.255984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255984,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256293,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-45.430407px;}
.v5{vertical-align:-28.288786px;}
.v8{vertical-align:-23.001197px;}
.v7{vertical-align:-21.139420px;}
.v9{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.899888px;}
.v2{vertical-align:20.857534px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:37.383453px;}
.ls2e{letter-spacing:-4.200000px;}
.lse{letter-spacing:-3.000000px;}
.ls10{letter-spacing:-2.994000px;}
.lsd{letter-spacing:-2.988000px;}
.lsf{letter-spacing:-2.700000px;}
.ls49{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.012000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls24{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.213872px;}
.ls4d{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.285163px;}
.ls2{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.348000px;}
.ls2f{letter-spacing:0.356453px;}
.ls50{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.450219px;}
.ls7{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls4a{letter-spacing:0.624000px;}
.ls59{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.684000px;}
.ls31{letter-spacing:0.816000px;}
.ls36{letter-spacing:1.860000px;}
.ls2b{letter-spacing:2.400000px;}
.ls48{letter-spacing:2.922283px;}
.ls52{letter-spacing:3.000000px;}
.ls2a{letter-spacing:4.200000px;}
.ls28{letter-spacing:5.340000px;}
.ls1b{letter-spacing:5.400000px;}
.ls26{letter-spacing:6.000000px;}
.ls34{letter-spacing:6.600000px;}
.ls29{letter-spacing:7.800000px;}
.ls51{letter-spacing:9.000000px;}
.ls13{letter-spacing:10.200000px;}
.ls45{letter-spacing:11.340000px;}
.ls27{letter-spacing:12.600000px;}
.ls2c{letter-spacing:16.860000px;}
.ls3a{letter-spacing:18.000000px;}
.ls25{letter-spacing:20.400000px;}
.ls16{letter-spacing:21.000000px;}
.ls17{letter-spacing:21.060000px;}
.ls12{letter-spacing:21.540000px;}
.ls23{letter-spacing:22.200000px;}
.ls20{letter-spacing:23.400000px;}
.ls15{letter-spacing:23.460000px;}
.ls19{letter-spacing:24.600000px;}
.ls1a{letter-spacing:24.780000px;}
.ls58{letter-spacing:25.200000px;}
.ls56{letter-spacing:26.340000px;}
.ls32{letter-spacing:28.800000px;}
.ls4{letter-spacing:30.000000px;}
.ls9{letter-spacing:30.600000px;}
.ls6{letter-spacing:30.660000px;}
.ls3e{letter-spacing:32.430000px;}
.ls3d{letter-spacing:35.400000px;}
.ls3f{letter-spacing:35.460000px;}
.ls4e{letter-spacing:38.400000px;}
.ls21{letter-spacing:38.460000px;}
.ls4f{letter-spacing:39.600000px;}
.ls46{letter-spacing:43.800000px;}
.ls53{letter-spacing:44.460000px;}
.ls37{letter-spacing:45.979932px;}
.ls42{letter-spacing:46.200000px;}
.ls5a{letter-spacing:47.400000px;}
.ls35{letter-spacing:48.600000px;}
.ls38{letter-spacing:53.400000px;}
.ls47{letter-spacing:56.340000px;}
.ls54{letter-spacing:57.600000px;}
.ls55{letter-spacing:73.260000px;}
.ls4c{letter-spacing:88.200000px;}
.ls4b{letter-spacing:88.260000px;}
.ls1d{letter-spacing:90.600000px;}
.ls1e{letter-spacing:90.780000px;}
.ls39{letter-spacing:99.000000px;}
.ls30{letter-spacing:106.320000px;}
.ls57{letter-spacing:108.780000px;}
.ls40{letter-spacing:111.570000px;}
.ls41{letter-spacing:111.660000px;}
.ls3b{letter-spacing:147.570000px;}
.ls3c{letter-spacing:147.660000px;}
.ls1c{letter-spacing:155.400000px;}
.ls44{letter-spacing:156.540000px;}
.ls43{letter-spacing:156.630000px;}
.ls33{letter-spacing:160.200000px;}
.ls18{letter-spacing:198.000000px;}
.ls22{letter-spacing:697.204438px;}
.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;}
}
.ws31{word-spacing:-47.672099px;}
.ws2c{word-spacing:-46.308455px;}
.ws3f{word-spacing:-46.239283px;}
.ws13{word-spacing:-45.763036px;}
.ws40{word-spacing:-45.538519px;}
.ws32{word-spacing:-45.127113px;}
.ws20{word-spacing:-41.186262px;}
.ws33{word-spacing:-24.770762px;}
.ws39{word-spacing:-22.950666px;}
.ws3b{word-spacing:-22.634296px;}
.ws14{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws24{word-spacing:-12.430277px;}
.wsa{word-spacing:-12.000000px;}
.ws23{word-spacing:-11.980057px;}
.ws19{word-spacing:-11.897885px;}
.ws21{word-spacing:-11.772493px;}
.ws15{word-spacing:-11.737224px;}
.ws1c{word-spacing:-10.707975px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws35{word-spacing:-3.006493px;}
.ws29{word-spacing:-0.439811px;}
.wsc{word-spacing:-0.332754px;}
.wsf{word-spacing:-0.297229px;}
.ws2e{word-spacing:-0.084351px;}
.ws3e{word-spacing:-0.084225px;}
.ws34{word-spacing:-0.084210px;}
.ws10{word-spacing:-0.083357px;}
.ws3a{word-spacing:-0.083073px;}
.ws22{word-spacing:-0.082948px;}
.ws2b{word-spacing:-0.082926px;}
.ws2a{word-spacing:-0.082642px;}
.ws1a{word-spacing:-0.075021px;}
.ws2d{word-spacing:-0.048161px;}
.ws37{word-spacing:-0.048019px;}
.wsd{word-spacing:-0.047592px;}
.ws2f{word-spacing:-0.047090px;}
.ws1d{word-spacing:-0.042832px;}
.wsb{word-spacing:0.000000px;}
.ws3d{word-spacing:51.881037px;}
.wse{word-spacing:175.456256px;}
.ws3c{word-spacing:216.107408px;}
.ws30{word-spacing:313.187780px;}
.ws17{word-spacing:415.229344px;}
.ws38{word-spacing:418.648212px;}
.ws41{word-spacing:423.168275px;}
.ws11{word-spacing:423.436940px;}
.ws42{word-spacing:519.344700px;}
.ws28{word-spacing:526.740941px;}
.ws25{word-spacing:550.355935px;}
.ws18{word-spacing:593.660260px;}
.ws12{word-spacing:679.562592px;}
.ws26{word-spacing:771.516410px;}
.ws27{word-spacing:856.985563px;}
.ws36{word-spacing:959.904675px;}
.ws1e{word-spacing:1123.719233px;}
.ws1f{word-spacing:1169.947569px;}
.ws1b{word-spacing:1176.154300px;}
._60{margin-left:-760.921610px;}
._47{margin-left:-653.826489px;}
._61{margin-left:-627.710641px;}
._aa{margin-left:-597.806432px;}
._31{margin-left:-582.540798px;}
._62{margin-left:-557.895534px;}
._42{margin-left:-547.283252px;}
._63{margin-left:-522.965598px;}
._4d{margin-left:-518.116201px;}
._3b{margin-left:-503.489354px;}
._68{margin-left:-484.099117px;}
._9b{margin-left:-448.741920px;}
._46{margin-left:-438.388090px;}
._4e{margin-left:-437.202283px;}
._3a{margin-left:-431.935068px;}
._51{margin-left:-400.142553px;}
._3d{margin-left:-398.298583px;}
._3c{margin-left:-385.613288px;}
._52{margin-left:-377.711000px;}
._49{margin-left:-373.361874px;}
._a4{margin-left:-346.078574px;}
._65{margin-left:-343.740433px;}
._3f{margin-left:-331.173240px;}
._30{margin-left:-325.624209px;}
._4b{margin-left:-323.518512px;}
._9d{margin-left:-313.243171px;}
._32{margin-left:-305.956369px;}
._33{margin-left:-287.850891px;}
._44{margin-left:-285.886274px;}
._5f{margin-left:-277.849856px;}
._a6{margin-left:-258.525944px;}
._5d{margin-left:-254.919717px;}
._5e{margin-left:-253.523174px;}
._48{margin-left:-251.833831px;}
._64{margin-left:-250.797409px;}
._66{margin-left:-248.098968px;}
._8a{margin-left:-244.220301px;}
._2d{margin-left:-230.538764px;}
._4a{margin-left:-207.864576px;}
._98{margin-left:-204.354157px;}
._95{margin-left:-197.922417px;}
._4c{margin-left:-194.207491px;}
._9c{margin-left:-188.907050px;}
._99{margin-left:-181.131072px;}
._89{margin-left:-177.255963px;}
._8b{margin-left:-176.211105px;}
._43{margin-left:-168.143096px;}
._8e{margin-left:-166.798751px;}
._4f{margin-left:-156.719849px;}
._50{margin-left:-143.896703px;}
._45{margin-left:-138.141254px;}
._a8{margin-left:-131.208459px;}
._94{margin-left:-129.107497px;}
._96{margin-left:-125.386888px;}
._6a{margin-left:-119.710732px;}
._3e{margin-left:-114.304165px;}
._a7{margin-left:-108.638364px;}
._a9{margin-left:-106.152422px;}
._2e{margin-left:-104.880284px;}
._69{margin-left:-103.448090px;}
._2f{margin-left:-102.199030px;}
._6d{margin-left:-98.814119px;}
._40{margin-left:-97.358852px;}
._8f{margin-left:-95.742305px;}
._9a{margin-left:-90.971021px;}
._2b{margin-left:-86.206349px;}
._97{margin-left:-83.859241px;}
._a5{margin-left:-82.368586px;}
._6c{margin-left:-62.407832px;}
._67{margin-left:-60.596596px;}
._2c{margin-left:-37.409346px;}
._b{margin-left:-29.904000px;}
._f{margin-left:-4.584000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._34{width:2.300496px;}
._39{width:3.960000px;}
._d{width:5.472000px;}
._e{width:6.480000px;}
._1e{width:7.704000px;}
._17{width:8.712000px;}
._18{width:9.792000px;}
._1c{width:11.376000px;}
._6e{width:13.176000px;}
._6f{width:14.256000px;}
._5{width:15.912000px;}
._7a{width:16.992000px;}
._1a{width:19.008000px;}
._4{width:20.994000px;}
._88{width:22.284000px;}
._11{width:23.400000px;}
._54{width:24.624000px;}
._7{width:26.640000px;}
._8{width:27.720000px;}
._a{width:28.764000px;}
._9{width:30.294000px;}
._75{width:32.184000px;}
._76{width:33.480000px;}
._77{width:34.548000px;}
._35{width:35.568000px;}
._7e{width:36.720000px;}
._5c{width:37.800000px;}
._21{width:39.312000px;}
._10{width:41.184000px;}
._15{width:42.480000px;}
._16{width:44.064000px;}
._83{width:45.144000px;}
._37{width:46.440000px;}
._41{width:47.592000px;}
._c{width:48.600000px;}
._70{width:49.884000px;}
._14{width:51.264000px;}
._71{width:52.560000px;}
._57{width:54.288000px;}
._58{width:55.872000px;}
._1f{width:57.600000px;}
._20{width:58.968000px;}
._6{width:60.192000px;}
._1b{width:61.344000px;}
._25{width:62.712000px;}
._26{width:63.750000px;}
._78{width:65.880000px;}
._79{width:66.888000px;}
._6b{width:68.760000px;}
._22{width:70.056000px;}
._29{width:72.864000px;}
._5a{width:74.550000px;}
._a1{width:76.104000px;}
._b0{width:78.480000px;}
._7f{width:79.488000px;}
._27{width:80.784000px;}
._28{width:81.894000px;}
._7d{width:83.046000px;}
._23{width:84.240000px;}
._24{width:85.320000px;}
._74{width:86.328000px;}
._84{width:87.624000px;}
._5b{width:88.848000px;}
._55{width:90.606000px;}
._72{width:92.088000px;}
._73{width:93.528000px;}
._b6{width:96.552000px;}
._8d{width:98.784000px;}
._ab{width:100.368000px;}
._7b{width:105.480000px;}
._7c{width:106.704000px;}
._b4{width:107.928000px;}
._b1{width:108.936000px;}
._b7{width:110.376000px;}
._9f{width:111.456000px;}
._b5{width:113.112000px;}
._81{width:116.424000px;}
._82{width:117.792000px;}
._85{width:119.160000px;}
._56{width:122.688000px;}
._ae{width:125.022000px;}
._a3{width:128.256000px;}
._12{width:129.528000px;}
._87{width:131.544000px;}
._1d{width:138.096000px;}
._59{width:146.016000px;}
._9e{width:147.312000px;}
._36{width:150.744000px;}
._53{width:154.728000px;}
._a0{width:156.600000px;}
._19{width:160.056000px;}
._b3{width:163.008000px;}
._ad{width:164.736000px;}
._80{width:166.176000px;}
._13{width:172.008000px;}
._b2{width:173.160000px;}
._af{width:187.200000px;}
._8c{width:194.106000px;}
._38{width:197.856000px;}
._90{width:201.096000px;}
._2a{width:205.632000px;}
._91{width:215.208000px;}
._ac{width:221.544000px;}
._86{width:228.096000px;}
._a2{width:282.888000px;}
._92{width:319.827102px;}
._93{width:356.049756px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:42.831898px;}
.fsb{font-size:46.948894px;}
.fs12{font-size:47.089973px;}
.fs7{font-size:47.591542px;}
.fs15{font-size:47.920228px;}
.fs6{font-size:48.000000px;}
.fs22{font-size:48.018533px;}
.fs2a{font-size:48.149205px;}
.fs1c{font-size:48.160591px;}
.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;}
.fsd{font-size:75.020513px;}
.fsf{font-size:79.125163px;}
.fsc{font-size:82.198749px;}
.fs13{font-size:82.338662px;}
.fs9{font-size:82.642255px;}
.fs16{font-size:82.925678px;}
.fsa{font-size:82.948122px;}
.fs25{font-size:83.072970px;}
.fs26{font-size:83.215675px;}
.fs11{font-size:83.232943px;}
.fs8{font-size:83.357078px;}
.fs14{font-size:83.788881px;}
.fs0{font-size:84.000000px;}
.fs21{font-size:84.210068px;}
.fs29{font-size:84.224560px;}
.fs1a{font-size:84.350556px;}
.fs1f{font-size:86.834424px;}
.fs17{font-size:87.389370px;}
.fs10{font-size:87.470749px;}
.fs1b{font-size:89.046763px;}
.fs28{font-size:89.886122px;}
.fs19{font-size:89.886235px;}
.fs18{font-size:89.886239px;}
.fs1d{font-size:89.886356px;}
.fs1e{font-size:106.584378px;}
.fs27{font-size:107.576550px;}
.fs24{font-size:107.717951px;}
.fs23{font-size:108.148045px;}
.fs20{font-size:109.143743px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.yc2{bottom:3.273214px;}
.ya2{bottom:3.273249px;}
.ybb{bottom:3.273283px;}
.y62{bottom:3.309113px;}
.y1a3{bottom:3.309123px;}
.y1ac{bottom:3.309147px;}
.yb6{bottom:3.309157px;}
.y6d{bottom:3.600000px;}
.y73{bottom:3.615000px;}
.y6f{bottom:3.750000px;}
.y7c{bottom:3.765000px;}
.yab{bottom:3.851828px;}
.y1b9{bottom:3.851881px;}
.y5c{bottom:3.892893px;}
.y35{bottom:3.900000px;}
.y64{bottom:3.922513px;}
.y16a{bottom:3.922524px;}
.y16e{bottom:3.922528px;}
.y1a8{bottom:3.922537px;}
.y128{bottom:4.251493px;}
.y125{bottom:4.251531px;}
.y188{bottom:4.251570px;}
.y158{bottom:4.535729px;}
.yd1{bottom:4.749853px;}
.y60{bottom:4.749892px;}
.y12e{bottom:5.178455px;}
.y131{bottom:5.178463px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.y98{bottom:6.171398px;}
.yc{bottom:6.750000px;}
.ya6{bottom:6.857163px;}
.ycd{bottom:6.857165px;}
.y8d{bottom:6.857168px;}
.y91{bottom:6.857183px;}
.y1bd{bottom:6.857204px;}
.y165{bottom:6.892968px;}
.y1a2{bottom:6.916821px;}
.y133{bottom:7.428474px;}
.y172{bottom:7.678515px;}
.y160{bottom:7.678525px;}
.y185{bottom:7.678543px;}
.y17e{bottom:7.678545px;}
.y15f{bottom:7.714177px;}
.y17d{bottom:7.714204px;}
.y9e{bottom:7.733370px;}
.y171{bottom:7.749955px;}
.y184{bottom:7.749993px;}
.y65{bottom:9.046526px;}
.y141{bottom:9.046548px;}
.y142{bottom:9.046560px;}
.y16b{bottom:9.046562px;}
.y1a9{bottom:9.046566px;}
.y1ba{bottom:9.046606px;}
.y1b0{bottom:9.107250px;}
.y140{bottom:9.117291px;}
.ydb{bottom:9.178541px;}
.ydc{bottom:9.178573px;}
.yc5{bottom:9.843282px;}
.y97{bottom:10.896349px;}
.y99{bottom:10.896368px;}
.ya7{bottom:12.107191px;}
.y92{bottom:12.107220px;}
.y166{bottom:12.107228px;}
.y1be{bottom:12.107249px;}
.y1a1{bottom:12.176524px;}
.yc8{bottom:16.915529px;}
.y136{bottom:18.499752px;}
.y1af{bottom:18.500230px;}
.y5b{bottom:18.500231px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y15b{bottom:20.856625px;}
.y15a{bottom:20.856628px;}
.y157{bottom:20.892007px;}
.y12d{bottom:21.642927px;}
.y130{bottom:21.642935px;}
.yca{bottom:22.173945px;}
.yc7{bottom:22.173973px;}
.y6c{bottom:22.650000px;}
.y135{bottom:23.784543px;}
.y137{bottom:23.784551px;}
.y34{bottom:24.585000px;}
.y38{bottom:24.600000px;}
.y9{bottom:33.900000px;}
.y159{bottom:33.999530px;}
.y12f{bottom:35.142139px;}
.y132{bottom:35.142146px;}
.y5{bottom:36.000000px;}
.yc6{bottom:36.743045px;}
.yc9{bottom:36.743049px;}
.y134{bottom:36.964130px;}
.y6b{bottom:41.550000px;}
.y33{bottom:45.330000px;}
.y3{bottom:57.637500px;}
.y32{bottom:66.030000px;}
.y2{bottom:81.637500px;}
.y31{bottom:86.730000px;}
.y30{bottom:107.430000px;}
.y13d{bottom:113.137500px;}
.y13e{bottom:113.175000px;}
.yb3{bottom:114.487500px;}
.y210{bottom:118.387500px;}
.y3f{bottom:118.987500px;}
.yed{bottom:119.887500px;}
.y1de{bottom:120.187500px;}
.y1df{bottom:120.225000px;}
.y75{bottom:121.687500px;}
.y1f7{bottom:122.287500px;}
.y122{bottom:126.637500px;}
.y2f{bottom:128.130000px;}
.y13b{bottom:138.187500px;}
.y13c{bottom:138.225000px;}
.yb2{bottom:138.337500px;}
.y17a{bottom:139.087500px;}
.y74{bottom:141.337500px;}
.y3e{bottom:142.687500px;}
.yec{bottom:143.737500px;}
.y1f6{bottom:146.137500px;}
.y1b7{bottom:146.287500px;}
.y111{bottom:147.787500px;}
.y2e{bottom:148.830000px;}
.y121{bottom:150.495000px;}
.y1dd{bottom:158.580000px;}
.y20f{bottom:159.795000px;}
.y72{bottom:161.130000px;}
.yb1{bottom:162.180000px;}
.y179{bottom:162.795000px;}
.y3d{bottom:166.545000px;}
.yeb{bottom:167.595000px;}
.y2d{bottom:169.530000px;}
.y1f5{bottom:169.845000px;}
.y1b6{bottom:169.995000px;}
.y110{bottom:171.630000px;}
.y139{bottom:173.445000px;}
.y13a{bottom:173.475000px;}
.y120{bottom:174.345000px;}
.y20e{bottom:180.495000px;}
.y71{bottom:180.795000px;}
.y1dc{bottom:182.430000px;}
.yb0{bottom:185.880000px;}
.y178{bottom:186.645000px;}
.y2c{bottom:190.230000px;}
.y3c{bottom:190.395000px;}
.yea{bottom:191.295000px;}
.y1f4{bottom:193.695000px;}
.y1b5{bottom:193.845000px;}
.y10f{bottom:195.495000px;}
.y11f{bottom:198.195000px;}
.y70{bottom:200.595000px;}
.y20d{bottom:201.195000px;}
.y138{bottom:201.645000px;}
.y12c{bottom:201.674980px;}
.y1db{bottom:206.295000px;}
.yaf{bottom:209.745000px;}
.y177{bottom:210.495000px;}
.y2b{bottom:210.930000px;}
.y3b{bottom:214.095000px;}
.ye9{bottom:215.145000px;}
.y1f3{bottom:217.545000px;}
.y1b4{bottom:217.695000px;}
.y1b3{bottom:217.725000px;}
.y10e{bottom:219.195000px;}
.y6e{bottom:220.245000px;}
.y11e{bottom:221.895000px;}
.y1da{bottom:229.995000px;}
.yae{bottom:233.580000px;}
.y176{bottom:234.195000px;}
.y3a{bottom:237.945000px;}
.ye8{bottom:238.995000px;}
.y6a{bottom:240.045000px;}
.y1f2{bottom:241.245000px;}
.y20c{bottom:242.595000px;}
.y10d{bottom:243.045000px;}
.y11d{bottom:245.745000px;}
.y1d9{bottom:253.830000px;}
.y1b2{bottom:256.095000px;}
.yad{bottom:257.295000px;}
.y175{bottom:258.045000px;}
.ye7{bottom:262.695000px;}
.y20b{bottom:263.295000px;}
.y1f1{bottom:265.095000px;}
.y10c{bottom:266.880000px;}
.y12b{bottom:267.195000px;}
.y11c{bottom:269.595000px;}
.y39{bottom:270.645000px;}
.y1d8{bottom:277.695000px;}
.y1b1{bottom:279.945000px;}
.y1ae{bottom:279.974980px;}
.yac{bottom:281.145000px;}
.yaa{bottom:281.175000px;}
.y174{bottom:281.895000px;}
.y20a{bottom:283.995000px;}
.ye6{bottom:286.545000px;}
.y37{bottom:287.445000px;}
.y1f0{bottom:288.945000px;}
.y10b{bottom:290.580000px;}
.y12a{bottom:290.895000px;}
.y11b{bottom:293.295000px;}
.y1d7{bottom:301.395000px;}
.y69{bottom:304.695000px;}
.y173{bottom:305.595000px;}
.y170{bottom:305.624980px;}
.ye5{bottom:310.380000px;}
.y1ef{bottom:312.795000px;}
.y10a{bottom:314.445000px;}
.y129{bottom:314.745000px;}
.y235{bottom:316.095000px;}
.ya9{bottom:316.395000px;}
.y11a{bottom:317.130000px;}
.y1ad{bottom:318.495000px;}
.y1d6{bottom:325.245000px;}
.y209{bottom:325.395000px;}
.y68{bottom:328.545000px;}
.y36{bottom:328.845000px;}
.ye4{bottom:334.080000px;}
.y109{bottom:334.380000px;}
.y1ee{bottom:336.495000px;}
.y126{bottom:338.595000px;}
.y127{bottom:338.625000px;}
.y16f{bottom:339.645000px;}
.y234{bottom:339.945000px;}
.ya8{bottom:340.245000px;}
.ya5{bottom:340.275000px;}
.y119{bottom:340.995000px;}
.y1aa{bottom:342.345000px;}
.y1ab{bottom:342.374959px;}
.y208{bottom:346.095000px;}
.y1d5{bottom:349.095000px;}
.y2a{bottom:349.545000px;}
.y67{bottom:352.245000px;}
.ye3{bottom:357.945000px;}
.y1ed{bottom:360.345000px;}
.y123{bottom:363.495000px;}
.y124{bottom:363.524959px;}
.y233{bottom:363.645000px;}
.y118{bottom:364.695000px;}
.y207{bottom:366.795000px;}
.y1a6{bottom:370.545000px;}
.y1a7{bottom:370.574959px;}
.y1d4{bottom:372.795000px;}
.y66{bottom:376.095000px;}
.ya4{bottom:378.645000px;}
.ye2{bottom:381.825000px;}
.y1ec{bottom:384.225000px;}
.y232{bottom:384.375000px;}
.y206{bottom:387.525000px;}
.y117{bottom:388.575000px;}
.y1d3{bottom:396.675000px;}
.y16d{bottom:398.775000px;}
.y63{bottom:399.975000px;}
.ya1{bottom:402.674959px;}
.ya3{bottom:402.675000px;}
.y231{bottom:405.075000px;}
.ye1{bottom:405.525000px;}
.y1a5{bottom:405.825000px;}
.y1eb{bottom:407.925000px;}
.y205{bottom:408.225000px;}
.y116{bottom:412.425000px;}
.y1d2{bottom:416.625000px;}
.y169{bottom:422.624959px;}
.y16c{bottom:422.625000px;}
.y230{bottom:425.775000px;}
.y204{bottom:428.925000px;}
.ye0{bottom:429.375000px;}
.y1a4{bottom:429.525000px;}
.ya0{bottom:430.725000px;}
.y1ea{bottom:431.775000px;}
.y61{bottom:435.225000px;}
.y115{bottom:436.125000px;}
.y22f{bottom:446.475000px;}
.y203{bottom:449.625000px;}
.ydf{bottom:453.225000px;}
.y1a0{bottom:453.374959px;}
.y19f{bottom:453.375000px;}
.y9d{bottom:454.574959px;}
.y9f{bottom:454.575000px;}
.y1e9{bottom:455.625000px;}
.y168{bottom:457.875000px;}
.y114{bottom:459.975000px;}
.y5f{bottom:463.424959px;}
.y5e{bottom:463.425000px;}
.y22e{bottom:467.175000px;}
.y202{bottom:470.325000px;}
.y108{bottom:470.625000px;}
.y1e8{bottom:479.325000px;}
.y164{bottom:481.574959px;}
.y167{bottom:481.575000px;}
.y9c{bottom:482.775000px;}
.y113{bottom:483.825000px;}
.y22d{bottom:487.875000px;}
.y201{bottom:491.025000px;}
.yde{bottom:491.774959px;}
.ydd{bottom:491.775000px;}
.y5a{bottom:492.824959px;}
.y5d{bottom:492.825000px;}
.y107{bottom:494.325000px;}
.y19e{bottom:495.074959px;}
.y19d{bottom:495.075000px;}
.y1e7{bottom:503.175000px;}
.y9b{bottom:506.625000px;}
.y112{bottom:507.525000px;}
.y22c{bottom:508.575000px;}
.y200{bottom:511.725000px;}
.y1d1{bottom:514.275000px;}
.y106{bottom:518.175000px;}
.yda{bottom:519.974959px;}
.yd9{bottom:519.975000px;}
.y163{bottom:520.125000px;}
.y96{bottom:526.424959px;}
.y9a{bottom:526.425000px;}
.y1e6{bottom:527.025000px;}
.y22b{bottom:529.275000px;}
.y59{bottom:531.375000px;}
.y1ff{bottom:532.425000px;}
.y19c{bottom:533.625000px;}
.y1d0{bottom:538.125000px;}
.y105{bottom:542.025000px;}
.y162{bottom:543.975000px;}
.y22a{bottom:549.975000px;}
.y1e5{bottom:550.725000px;}
.y1fe{bottom:553.125000px;}
.yd8{bottom:553.875000px;}
.y58{bottom:555.225000px;}
.y19b{bottom:557.475000px;}
.y95{bottom:561.825000px;}
.y1cf{bottom:561.975000px;}
.y104{bottom:565.725000px;}
.y15e{bottom:567.674959px;}
.y161{bottom:567.675000px;}
.y229{bottom:570.675000px;}
.y1fd{bottom:573.825000px;}
.y1e4{bottom:574.575000px;}
.yd7{bottom:577.725000px;}
.y57{bottom:579.075000px;}
.y29{bottom:580.875000px;}
.y19a{bottom:581.175000px;}
.y94{bottom:585.525000px;}
.y1ce{bottom:585.825000px;}
.y103{bottom:589.574959px;}
.y102{bottom:589.575000px;}
.y228{bottom:591.375000px;}
.y1fc{bottom:594.525000px;}
.y1e3{bottom:598.425000px;}
.y28{bottom:600.075000px;}
.yd6{bottom:601.575000px;}
.y15d{bottom:601.725000px;}
.y56{bottom:602.775000px;}
.y199{bottom:605.025000px;}
.y93{bottom:609.375000px;}
.y1cd{bottom:609.525000px;}
.y227{bottom:612.075000px;}
.y1fb{bottom:615.225000px;}
.y101{bottom:617.775000px;}
.y27{bottom:620.775000px;}
.y1e2{bottom:622.125000px;}
.yd5{bottom:625.275000px;}
.y156{bottom:625.574959px;}
.y15c{bottom:625.575000px;}
.y55{bottom:626.625000px;}
.y198{bottom:628.875000px;}
.y226{bottom:632.775000px;}
.y90{bottom:633.224959px;}
.y8f{bottom:633.225000px;}
.y1cc{bottom:633.375000px;}
.y1fa{bottom:635.925000px;}
.y26{bottom:641.475000px;}
.y100{bottom:641.624959px;}
.yff{bottom:641.625000px;}
.y1e1{bottom:645.975000px;}
.yd4{bottom:649.125000px;}
.y54{bottom:650.475000px;}
.y197{bottom:652.575000px;}
.y225{bottom:653.475000px;}
.y1f9{bottom:656.625000px;}
.y1cb{bottom:657.225000px;}
.y25{bottom:662.175000px;}
.yfe{bottom:669.825000px;}
.y8c{bottom:671.624959px;}
.y8e{bottom:671.625000px;}
.yd3{bottom:672.975000px;}
.y53{bottom:674.175000px;}
.y196{bottom:676.425000px;}
.y1f8{bottom:677.325000px;}
.y1ca{bottom:680.925000px;}
.y24{bottom:682.875000px;}
.y155{bottom:686.625000px;}
.yfd{bottom:693.675000px;}
.y224{bottom:694.875000px;}
.yd2{bottom:696.675000px;}
.y52{bottom:698.025000px;}
.y195{bottom:700.275000px;}
.y23{bottom:703.575000px;}
.y1c9{bottom:704.775000px;}
.y8b{bottom:710.175000px;}
.y154{bottom:710.325000px;}
.y223{bottom:715.575000px;}
.yfc{bottom:717.375000px;}
.yd0{bottom:720.525000px;}
.y51{bottom:721.875000px;}
.y194{bottom:723.975000px;}
.y22{bottom:724.275000px;}
.y1c8{bottom:728.625000px;}
.y8a{bottom:734.025000px;}
.y153{bottom:734.175000px;}
.y222{bottom:736.275000px;}
.yfb{bottom:741.270000px;}
.y21{bottom:745.020000px;}
.y50{bottom:745.620000px;}
.y193{bottom:747.870000px;}
.ycf{bottom:750.120000px;}
.y1c7{bottom:752.370000px;}
.y221{bottom:757.020000px;}
.y89{bottom:757.770000px;}
.y152{bottom:758.070000px;}
.yfa{bottom:765.120000px;}
.y20{bottom:765.720000px;}
.y4f{bottom:769.470000px;}
.ycc{bottom:769.874919px;}
.yce{bottom:769.920000px;}
.y192{bottom:771.720000px;}
.y1c6{bottom:776.220000px;}
.y220{bottom:777.720000px;}
.y88{bottom:781.620000px;}
.y151{bottom:781.770000px;}
.y1f{bottom:786.420000px;}
.yf9{bottom:788.820000px;}
.y4e{bottom:793.320000px;}
.y191{bottom:795.420000px;}
.y21f{bottom:798.420000px;}
.y1c5{bottom:800.070000px;}
.y87{bottom:805.470000px;}
.y150{bottom:805.620000px;}
.y1e{bottom:807.120000px;}
.yc4{bottom:808.424919px;}
.ycb{bottom:808.470000px;}
.yf8{bottom:812.670000px;}
.y4d{bottom:817.020000px;}
.y21e{bottom:819.120000px;}
.y190{bottom:819.270000px;}
.y1c4{bottom:823.770000px;}
.y1d{bottom:827.820000px;}
.y86{bottom:829.170000px;}
.y14f{bottom:829.455000px;}
.yf7{bottom:836.520000px;}
.y21d{bottom:839.820000px;}
.y4c{bottom:840.870000px;}
.y18f{bottom:843.120000px;}
.y1c3{bottom:847.620000px;}
.y1c{bottom:848.520000px;}
.y85{bottom:853.020000px;}
.y14e{bottom:853.170000px;}
.yf6{bottom:860.205000px;}
.y21c{bottom:860.520000px;}
.y4b{bottom:864.720000px;}
.y18e{bottom:866.955000px;}
.y1b{bottom:869.220000px;}
.y1c2{bottom:871.470000px;}
.yc3{bottom:875.220000px;}
.y84{bottom:876.870000px;}
.y14d{bottom:877.020000px;}
.y21b{bottom:881.220000px;}
.yf5{bottom:884.070000px;}
.y4a{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y18d{bottom:890.670000px;}
.y1c1{bottom:895.124919px;}
.y1c0{bottom:895.170000px;}
.yc1{bottom:899.025000px;}
.yc0{bottom:899.070000px;}
.y83{bottom:900.720000px;}
.y14c{bottom:900.870000px;}
.y21a{bottom:901.920000px;}
.y1e0{bottom:907.874919px;}
.yf4{bottom:907.920000px;}
.y19{bottom:910.620000px;}
.y49{bottom:912.270000px;}
.y18c{bottom:914.520000px;}
.y219{bottom:922.620000px;}
.y82{bottom:924.420000px;}
.y14b{bottom:924.570000px;}
.ybf{bottom:927.270000px;}
.y18{bottom:931.320000px;}
.yf3{bottom:931.620000px;}
.y1bf{bottom:933.720000px;}
.y48{bottom:936.120000px;}
.y18b{bottom:938.370000px;}
.y218{bottom:943.320000px;}
.y81{bottom:948.270000px;}
.y14a{bottom:948.420000px;}
.ybe{bottom:951.120000px;}
.y17{bottom:952.020000px;}
.yf2{bottom:955.470000px;}
.y1bc{bottom:957.524919px;}
.y1bb{bottom:957.570000px;}
.y47{bottom:959.970000px;}
.y18a{bottom:962.070000px;}
.y217{bottom:964.020000px;}
.y80{bottom:972.120000px;}
.y149{bottom:972.270000px;}
.y16{bottom:972.720000px;}
.ybd{bottom:974.820000px;}
.yf1{bottom:979.320000px;}
.y46{bottom:983.670000px;}
.y216{bottom:984.720000px;}
.y189{bottom:985.920000px;}
.y7f{bottom:989.670000px;}
.y15{bottom:993.420000px;}
.y148{bottom:995.970000px;}
.ybc{bottom:998.670000px;}
.yf0{bottom:1003.020000px;}
.y215{bottom:1005.420000px;}
.y45{bottom:1007.520000px;}
.y7e{bottom:1009.320000px;}
.y187{bottom:1009.724919px;}
.y186{bottom:1009.770000px;}
.y14{bottom:1014.120000px;}
.y147{bottom:1019.820000px;}
.yba{bottom:1022.474919px;}
.yb9{bottom:1022.520000px;}
.y214{bottom:1026.120000px;}
.yef{bottom:1026.974919px;}
.yee{bottom:1027.020000px;}
.y7d{bottom:1029.120000px;}
.y44{bottom:1031.370000px;}
.y183{bottom:1034.624919px;}
.y182{bottom:1034.670000px;}
.y13{bottom:1034.820000px;}
.y1b8{bottom:1043.624919px;}
.y146{bottom:1043.670000px;}
.y213{bottom:1046.820000px;}
.y7b{bottom:1048.755000px;}
.yb8{bottom:1050.720000px;}
.y43{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y145{bottom:1067.370000px;}
.y212{bottom:1067.520000px;}
.y7a{bottom:1068.570000px;}
.y181{bottom:1068.720000px;}
.yb7{bottom:1074.570000px;}
.y11{bottom:1076.220000px;}
.y42{bottom:1078.920000px;}
.y79{bottom:1088.220000px;}
.y144{bottom:1091.220000px;}
.y180{bottom:1092.570000px;}
.y10{bottom:1096.950000px;}
.yb5{bottom:1098.374919px;}
.yb4{bottom:1098.450000px;}
.y41{bottom:1102.800000px;}
.y78{bottom:1108.050000px;}
.y211{bottom:1108.950000px;}
.y13f{bottom:1115.024919px;}
.y143{bottom:1115.100000px;}
.y17f{bottom:1116.300000px;}
.y40{bottom:1126.500000px;}
.y77{bottom:1127.700000px;}
.yf{bottom:1129.650000px;}
.y17c{bottom:1140.074919px;}
.y17b{bottom:1140.150000px;}
.y76{bottom:1147.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h3d{height:18.000898px;}
.h3b{height:18.000939px;}
.h5b{height:18.000980px;}
.h21{height:18.900000px;}
.h20{height:19.050000px;}
.h22{height:19.072500px;}
.h11{height:20.700000px;}
.h18{height:21.149427px;}
.h2a{height:21.149468px;}
.h30{height:21.149509px;}
.h37{height:22.500233px;}
.h16{height:22.500274px;}
.h57{height:27.000208px;}
.h38{height:27.000229px;}
.h5a{height:27.000270px;}
.h1a{height:28.199709px;}
.h54{height:28.199750px;}
.h47{height:28.199791px;}
.h26{height:28.350138px;}
.h2d{height:31.500468px;}
.h64{height:31.500488px;}
.h13{height:31.500508px;}
.h35{height:31.500549px;}
.h5f{height:34.800913px;}
.h63{height:35.716004px;}
.h2e{height:35.823329px;}
.h24{height:36.204894px;}
.h1b{height:38.994174px;}
.h12{height:41.400000px;}
.h6{height:45.300000px;}
.h55{height:46.054848px;}
.h45{height:46.216233px;}
.h52{height:46.685258px;}
.h14{height:46.708496px;}
.h43{height:47.266987px;}
.h3{height:48.600000px;}
.h33{height:49.322301px;}
.h7{height:52.998047px;}
.h4b{height:53.998944px;}
.h5d{height:54.773438px;}
.h5{height:55.942383px;}
.h1d{height:56.850000px;}
.h1e{height:57.073242px;}
.h3f{height:58.499550px;}
.h4{height:58.886719px;}
.h31{height:59.699586px;}
.hb{height:59.800781px;}
.hf{height:62.261719px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h1f{height:66.515625px;}
.h5e{height:70.628906px;}
.hc{height:70.664062px;}
.h10{height:71.085938px;}
.h56{height:71.109375px;}
.ha{height:72.562500px;}
.h29{height:73.291227px;}
.h27{height:73.628531px;}
.h34{height:77.611087px;}
.h4f{height:78.001220px;}
.h40{height:78.131350px;}
.h49{height:80.432081px;}
.h1c{height:80.633441px;}
.h4a{height:80.673577px;}
.h2f{height:80.770689px;}
.h3a{height:80.946111px;}
.h2b{height:81.021489px;}
.h17{height:81.068501px;}
.h59{height:81.346526px;}
.h19{height:81.368543px;}
.h39{height:81.387017px;}
.h62{height:81.409045px;}
.h51{height:81.491014px;}
.h53{height:81.631001px;}
.h2c{height:81.647940px;}
.h25{height:81.769712px;}
.h65{height:81.810413px;}
.h32{height:82.193292px;}
.h2{height:82.441406px;}
.h41{height:82.481304px;}
.h4d{height:82.606458px;}
.h4e{height:82.647577px;}
.h44{height:82.744271px;}
.h42{height:82.785458px;}
.h5c{height:83.258776px;}
.h3e{height:83.258881px;}
.h3c{height:83.258885px;}
.h46{height:83.258993px;}
.h60{height:85.128005px;}
.h28{height:92.491787px;}
.h48{height:98.725862px;}
.h58{height:99.644881px;}
.h50{height:99.775856px;}
.h4c{height:101.096523px;}
.h15{height:102.667947px;}
.h23{height:102.769827px;}
.h36{height:102.810529px;}
.h61{height:103.700705px;}
.he{height:227.730000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w16{width:16.800369px;}
.w26{width:19.200634px;}
.wb{width:19.200644px;}
.w23{width:19.200675px;}
.w24{width:19.200716px;}
.w20{width:22.499413px;}
.w1b{width:22.499423px;}
.w17{width:22.499444px;}
.w22{width:22.499484px;}
.wa{width:23.849521px;}
.w2c{width:25.800364px;}
.w2b{width:30.300668px;}
.w1a{width:32.699741px;}
.w2a{width:34.799455px;}
.w2e{width:34.799485px;}
.w2d{width:35.999862px;}
.w2f{width:35.999933px;}
.w27{width:37.349518px;}
.w1e{width:39.299506px;}
.w32{width:43.651418px;}
.w34{width:50.848649px;}
.w35{width:54.000317px;}
.w21{width:54.000327px;}
.wc{width:54.000338px;}
.w14{width:54.000358px;}
.w31{width:54.000399px;}
.w1f{width:59.700611px;}
.w18{width:64.351052px;}
.w19{width:72.000891px;}
.w28{width:89.997893px;}
.w10{width:98.100000px;}
.wd{width:98.137500px;}
.w30{width:106.645144px;}
.w12{width:115.200000px;}
.wf{width:115.237500px;}
.w25{width:147.301898px;}
.we{width:177.000000px;}
.w11{width:177.030000px;}
.w6{width:178.350000px;}
.w13{width:214.650357px;}
.w9{width:246.300885px;}
.w1c{width:250.800954px;}
.w33{width:250.800985px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w29{width:322.806058px;}
.w1d{width:338.691606px;}
.w15{width:402.311024px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:1.357162px;}
.x2f{left:3.352454px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x70{left:18.428406px;}
.x27{left:20.887500px;}
.x5{left:22.200000px;}
.x3a{left:26.392508px;}
.xb{left:32.100000px;}
.x63{left:34.962687px;}
.x7c{left:41.393371px;}
.x3{left:42.599987px;}
.x62{left:44.906104px;}
.x52{left:47.191839px;}
.x6a{left:52.543569px;}
.x69{left:65.796728px;}
.x4a{left:68.979245px;}
.x5f{left:83.195196px;}
.x4c{left:88.955031px;}
.x61{left:91.367003px;}
.x28{left:95.699987px;}
.x10{left:97.049987px;}
.x26{left:100.200000px;}
.x80{left:102.671291px;}
.x25{left:104.700000px;}
.xd{left:106.980000px;}
.x4b{left:112.478840px;}
.x60{left:118.267006px;}
.x6{left:121.687500px;}
.x49{left:125.253826px;}
.xa{left:128.130000px;}
.x6f{left:130.537487px;}
.x56{left:131.924990px;}
.x2e{left:134.474990px;}
.x2c{left:136.874990px;}
.x33{left:142.237500px;}
.x30{left:153.629987px;}
.x54{left:155.474990px;}
.x2d{left:160.679987px;}
.x31{left:172.124980px;}
.x50{left:174.029987px;}
.x55{left:177.929987px;}
.x3c{left:183.739117px;}
.x57{left:185.894987px;}
.x37{left:187.335562px;}
.x11{left:197.894987px;}
.x3d{left:202.835813px;}
.x2a{left:225.704707px;}
.x7f{left:229.551716px;}
.x51{left:241.124980px;}
.x83{left:259.124980px;}
.x86{left:261.824980px;}
.x85{left:266.775000px;}
.x6d{left:268.600303px;}
.x89{left:280.124980px;}
.x6b{left:289.302225px;}
.x46{left:294.074980px;}
.x48{left:297.674980px;}
.x53{left:300.779987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x84{left:309.944987px;}
.x6c{left:311.608129px;}
.x47{left:316.529987px;}
.x34{left:319.995000px;}
.x4e{left:329.540606px;}
.x8a{left:334.094987px;}
.x2b{left:342.029987px;}
.x4d{left:346.544987px;}
.x6e{left:365.444987px;}
.x87{left:378.374959px;}
.x3b{left:390.468918px;}
.x88{left:400.874987px;}
.x44{left:403.274959px;}
.x4f{left:414.974987px;}
.x45{left:435.974987px;}
.x23{left:453.674987px;}
.x29{left:457.274987px;}
.x1c{left:464.174987px;}
.x15{left:478.274987px;}
.x1d{left:497.024987px;}
.x14{left:503.174987px;}
.x13{left:510.374987px;}
.x19{left:513.674987px;}
.x40{left:527.174987px;}
.x41{left:532.874987px;}
.x5b{left:534.074959px;}
.x77{left:541.124959px;}
.x17{left:548.774987px;}
.x39{left:549.974959px;}
.x18{left:551.624987px;}
.x5c{left:553.274987px;}
.x35{left:556.875000px;}
.x64{left:571.874987px;}
.x42{left:574.724987px;}
.x12{left:578.624987px;}
.x43{left:582.374987px;}
.x71{left:594.824959px;}
.x1b{left:603.674987px;}
.x20{left:613.724987px;}
.x22{left:617.024987px;}
.x1a{left:618.974987px;}
.x1f{left:623.024987px;}
.xc{left:625.425000px;}
.x72{left:629.624987px;}
.x24{left:630.974987px;}
.x78{left:635.024959px;}
.x7e{left:638.819987px;}
.x1e{left:654.404987px;}
.x21{left:657.104987px;}
.x82{left:671.969987px;}
.x79{left:681.824959px;}
.x81{left:708.119987px;}
.xf{left:713.655000px;}
.x8b{left:719.174919px;}
.x38{left:725.069987px;}
.x36{left:734.655000px;}
.x8c{left:741.704987px;}
.x75{left:754.424919px;}
.x5d{left:759.974919px;}
.x3f{left:766.604987px;}
.x76{left:773.669987px;}
.x65{left:775.124919px;}
.x5e{left:779.204987px;}
.x59{left:785.024919px;}
.x7a{left:788.504987px;}
.x7b{left:796.574919px;}
.x5a{left:807.569987px;}
.x73{left:809.924919px;}
.x66{left:812.504987px;}
.x67{left:818.475000px;}
.x7d{left:822.419987px;}
.x58{left:828.074919px;}
.x2{left:829.619987px;}
.x68{left:837.704987px;}
.x74{left:845.954987px;}
.x16{left:850.619987px;}
.x3e{left:859.619987px;}
@media print{
.v6{vertical-align:-40.382584pt;}
.v5{vertical-align:-25.145588pt;}
.v8{vertical-align:-20.445508pt;}
.v7{vertical-align:-18.790595pt;}
.v9{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.799900pt;}
.v2{vertical-align:18.540030pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:33.229736pt;}
.ls2e{letter-spacing:-3.733333pt;}
.lse{letter-spacing:-2.666667pt;}
.ls10{letter-spacing:-2.661333pt;}
.lsd{letter-spacing:-2.656000pt;}
.lsf{letter-spacing:-2.400000pt;}
.ls49{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.010667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls24{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.190108pt;}
.ls4d{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.253478pt;}
.ls2{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.309333pt;}
.ls2f{letter-spacing:0.316847pt;}
.ls50{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.400195pt;}
.ls7{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls4a{letter-spacing:0.554667pt;}
.ls59{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.608000pt;}
.ls31{letter-spacing:0.725333pt;}
.ls36{letter-spacing:1.653333pt;}
.ls2b{letter-spacing:2.133333pt;}
.ls48{letter-spacing:2.597585pt;}
.ls52{letter-spacing:2.666667pt;}
.ls2a{letter-spacing:3.733333pt;}
.ls28{letter-spacing:4.746667pt;}
.ls1b{letter-spacing:4.800000pt;}
.ls26{letter-spacing:5.333333pt;}
.ls34{letter-spacing:5.866667pt;}
.ls29{letter-spacing:6.933333pt;}
.ls51{letter-spacing:8.000000pt;}
.ls13{letter-spacing:9.066667pt;}
.ls45{letter-spacing:10.080000pt;}
.ls27{letter-spacing:11.200000pt;}
.ls2c{letter-spacing:14.986667pt;}
.ls3a{letter-spacing:16.000000pt;}
.ls25{letter-spacing:18.133333pt;}
.ls16{letter-spacing:18.666667pt;}
.ls17{letter-spacing:18.720000pt;}
.ls12{letter-spacing:19.146667pt;}
.ls23{letter-spacing:19.733333pt;}
.ls20{letter-spacing:20.800000pt;}
.ls15{letter-spacing:20.853333pt;}
.ls19{letter-spacing:21.866667pt;}
.ls1a{letter-spacing:22.026667pt;}
.ls58{letter-spacing:22.400000pt;}
.ls56{letter-spacing:23.413333pt;}
.ls32{letter-spacing:25.600000pt;}
.ls4{letter-spacing:26.666667pt;}
.ls9{letter-spacing:27.200000pt;}
.ls6{letter-spacing:27.253333pt;}
.ls3e{letter-spacing:28.826667pt;}
.ls3d{letter-spacing:31.466667pt;}
.ls3f{letter-spacing:31.520000pt;}
.ls4e{letter-spacing:34.133333pt;}
.ls21{letter-spacing:34.186667pt;}
.ls4f{letter-spacing:35.200000pt;}
.ls46{letter-spacing:38.933333pt;}
.ls53{letter-spacing:39.520000pt;}
.ls37{letter-spacing:40.871051pt;}
.ls42{letter-spacing:41.066667pt;}
.ls5a{letter-spacing:42.133333pt;}
.ls35{letter-spacing:43.200000pt;}
.ls38{letter-spacing:47.466667pt;}
.ls47{letter-spacing:50.080000pt;}
.ls54{letter-spacing:51.200000pt;}
.ls55{letter-spacing:65.120000pt;}
.ls4c{letter-spacing:78.400000pt;}
.ls4b{letter-spacing:78.453333pt;}
.ls1d{letter-spacing:80.533333pt;}
.ls1e{letter-spacing:80.693333pt;}
.ls39{letter-spacing:88.000000pt;}
.ls30{letter-spacing:94.506667pt;}
.ls57{letter-spacing:96.693333pt;}
.ls40{letter-spacing:99.173333pt;}
.ls41{letter-spacing:99.253333pt;}
.ls3b{letter-spacing:131.173333pt;}
.ls3c{letter-spacing:131.253333pt;}
.ls1c{letter-spacing:138.133333pt;}
.ls44{letter-spacing:139.146667pt;}
.ls43{letter-spacing:139.226667pt;}
.ls33{letter-spacing:142.400000pt;}
.ls18{letter-spacing:176.000000pt;}
.ls22{letter-spacing:619.737278pt;}
.ws31{word-spacing:-42.375199pt;}
.ws2c{word-spacing:-41.163071pt;}
.ws3f{word-spacing:-41.101585pt;}
.ws13{word-spacing:-40.678254pt;}
.ws40{word-spacing:-40.478683pt;}
.ws32{word-spacing:-40.112990pt;}
.ws20{word-spacing:-36.610010pt;}
.ws33{word-spacing:-22.018455pt;}
.ws39{word-spacing:-20.400592pt;}
.ws3b{word-spacing:-20.119374pt;}
.ws14{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws24{word-spacing:-11.049135pt;}
.wsa{word-spacing:-10.666667pt;}
.ws23{word-spacing:-10.648940pt;}
.ws19{word-spacing:-10.575898pt;}
.ws21{word-spacing:-10.464438pt;}
.ws15{word-spacing:-10.433088pt;}
.ws1c{word-spacing:-9.518200pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws35{word-spacing:-2.672438pt;}
.ws29{word-spacing:-0.390943pt;}
.wsc{word-spacing:-0.295782pt;}
.wsf{word-spacing:-0.264204pt;}
.ws2e{word-spacing:-0.074978pt;}
.ws3e{word-spacing:-0.074866pt;}
.ws34{word-spacing:-0.074853pt;}
.ws10{word-spacing:-0.074095pt;}
.ws3a{word-spacing:-0.073843pt;}
.ws22{word-spacing:-0.073732pt;}
.ws2b{word-spacing:-0.073712pt;}
.ws2a{word-spacing:-0.073460pt;}
.ws1a{word-spacing:-0.066685pt;}
.ws2d{word-spacing:-0.042809pt;}
.ws37{word-spacing:-0.042683pt;}
.wsd{word-spacing:-0.042304pt;}
.ws2f{word-spacing:-0.041858pt;}
.ws1d{word-spacing:-0.038073pt;}
.wsb{word-spacing:0.000000pt;}
.ws3d{word-spacing:46.116477pt;}
.wse{word-spacing:155.961116pt;}
.ws3c{word-spacing:192.095473pt;}
.ws30{word-spacing:278.389138pt;}
.ws17{word-spacing:369.092750pt;}
.ws38{word-spacing:372.131744pt;}
.ws41{word-spacing:376.149578pt;}
.ws11{word-spacing:376.388392pt;}
.ws42{word-spacing:461.639734pt;}
.ws28{word-spacing:468.214169pt;}
.ws25{word-spacing:489.205276pt;}
.ws18{word-spacing:527.698009pt;}
.ws12{word-spacing:604.055637pt;}
.ws26{word-spacing:685.792364pt;}
.ws27{word-spacing:761.764945pt;}
.ws36{word-spacing:853.248600pt;}
.ws1e{word-spacing:998.861541pt;}
.ws1f{word-spacing:1039.953395pt;}
.ws1b{word-spacing:1045.470489pt;}
._60{margin-left:-676.374764pt;}
._47{margin-left:-581.179101pt;}
._61{margin-left:-557.965014pt;}
._aa{margin-left:-531.383495pt;}
._31{margin-left:-517.814042pt;}
._62{margin-left:-495.907142pt;}
._42{margin-left:-486.474002pt;}
._63{margin-left:-464.858309pt;}
._4d{margin-left:-460.547735pt;}
._3b{margin-left:-447.546093pt;}
._68{margin-left:-430.310326pt;}
._9b{margin-left:-398.881706pt;}
._46{margin-left:-389.678302pt;}
._4e{margin-left:-388.624252pt;}
._3a{margin-left:-383.942283pt;}
._51{margin-left:-355.682269pt;}
._3d{margin-left:-354.043185pt;}
._3c{margin-left:-342.767367pt;}
._52{margin-left:-335.743112pt;}
._49{margin-left:-331.877221pt;}
._a4{margin-left:-307.625399pt;}
._65{margin-left:-305.547052pt;}
._3f{margin-left:-294.376213pt;}
._30{margin-left:-289.443741pt;}
._4b{margin-left:-287.572011pt;}
._9d{margin-left:-278.438375pt;}
._32{margin-left:-271.961217pt;}
._33{margin-left:-255.867459pt;}
._44{margin-left:-254.121132pt;}
._5f{margin-left:-246.977650pt;}
._a6{margin-left:-229.800839pt;}
._5d{margin-left:-226.595304pt;}
._5e{margin-left:-225.353932pt;}
._48{margin-left:-223.852295pt;}
._64{margin-left:-222.931030pt;}
._66{margin-left:-220.532416pt;}
._8a{margin-left:-217.084712pt;}
._2d{margin-left:-204.923346pt;}
._4a{margin-left:-184.768512pt;}
._98{margin-left:-181.648139pt;}
._95{margin-left:-175.931038pt;}
._4c{margin-left:-172.628881pt;}
._9c{margin-left:-167.917378pt;}
._99{margin-left:-161.005398pt;}
._89{margin-left:-157.560856pt;}
._8b{margin-left:-156.632093pt;}
._43{margin-left:-149.460529pt;}
._8e{margin-left:-148.265557pt;}
._4f{margin-left:-139.306533pt;}
._50{margin-left:-127.908181pt;}
._45{margin-left:-122.792225pt;}
._a8{margin-left:-116.629742pt;}
._94{margin-left:-114.762219pt;}
._96{margin-left:-111.455012pt;}
._6a{margin-left:-106.409540pt;}
._3e{margin-left:-101.603702pt;}
._a7{margin-left:-96.567435pt;}
._a9{margin-left:-94.357709pt;}
._2e{margin-left:-93.226919pt;}
._69{margin-left:-91.953858pt;}
._2f{margin-left:-90.843582pt;}
._6d{margin-left:-87.834773pt;}
._40{margin-left:-86.541202pt;}
._8f{margin-left:-85.104271pt;}
._9a{margin-left:-80.863130pt;}
._2b{margin-left:-76.627866pt;}
._97{margin-left:-74.541547pt;}
._a5{margin-left:-73.216521pt;}
._6c{margin-left:-55.473629pt;}
._67{margin-left:-53.863641pt;}
._2c{margin-left:-33.252752pt;}
._b{margin-left:-26.581333pt;}
._f{margin-left:-4.074667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._34{width:2.044885pt;}
._39{width:3.520000pt;}
._d{width:4.864000pt;}
._e{width:5.760000pt;}
._1e{width:6.848000pt;}
._17{width:7.744000pt;}
._18{width:8.704000pt;}
._1c{width:10.112000pt;}
._6e{width:11.712000pt;}
._6f{width:12.672000pt;}
._5{width:14.144000pt;}
._7a{width:15.104000pt;}
._1a{width:16.896000pt;}
._4{width:18.661333pt;}
._88{width:19.808000pt;}
._11{width:20.800000pt;}
._54{width:21.888000pt;}
._7{width:23.680000pt;}
._8{width:24.640000pt;}
._a{width:25.568000pt;}
._9{width:26.928000pt;}
._75{width:28.608000pt;}
._76{width:29.760000pt;}
._77{width:30.709333pt;}
._35{width:31.616000pt;}
._7e{width:32.640000pt;}
._5c{width:33.600000pt;}
._21{width:34.944000pt;}
._10{width:36.608000pt;}
._15{width:37.760000pt;}
._16{width:39.168000pt;}
._83{width:40.128000pt;}
._37{width:41.280000pt;}
._41{width:42.304000pt;}
._c{width:43.200000pt;}
._70{width:44.341333pt;}
._14{width:45.568000pt;}
._71{width:46.720000pt;}
._57{width:48.256000pt;}
._58{width:49.664000pt;}
._1f{width:51.200000pt;}
._20{width:52.416000pt;}
._6{width:53.504000pt;}
._1b{width:54.528000pt;}
._25{width:55.744000pt;}
._26{width:56.666667pt;}
._78{width:58.560000pt;}
._79{width:59.456000pt;}
._6b{width:61.120000pt;}
._22{width:62.272000pt;}
._29{width:64.768000pt;}
._5a{width:66.266667pt;}
._a1{width:67.648000pt;}
._b0{width:69.760000pt;}
._7f{width:70.656000pt;}
._27{width:71.808000pt;}
._28{width:72.794667pt;}
._7d{width:73.818667pt;}
._23{width:74.880000pt;}
._24{width:75.840000pt;}
._74{width:76.736000pt;}
._84{width:77.888000pt;}
._5b{width:78.976000pt;}
._55{width:80.538667pt;}
._72{width:81.856000pt;}
._73{width:83.136000pt;}
._b6{width:85.824000pt;}
._8d{width:87.808000pt;}
._ab{width:89.216000pt;}
._7b{width:93.760000pt;}
._7c{width:94.848000pt;}
._b4{width:95.936000pt;}
._b1{width:96.832000pt;}
._b7{width:98.112000pt;}
._9f{width:99.072000pt;}
._b5{width:100.544000pt;}
._81{width:103.488000pt;}
._82{width:104.704000pt;}
._85{width:105.920000pt;}
._56{width:109.056000pt;}
._ae{width:111.130667pt;}
._a3{width:114.005333pt;}
._12{width:115.136000pt;}
._87{width:116.928000pt;}
._1d{width:122.752000pt;}
._59{width:129.792000pt;}
._9e{width:130.944000pt;}
._36{width:133.994667pt;}
._53{width:137.536000pt;}
._a0{width:139.200000pt;}
._19{width:142.272000pt;}
._b3{width:144.896000pt;}
._ad{width:146.432000pt;}
._80{width:147.712000pt;}
._13{width:152.896000pt;}
._b2{width:153.920000pt;}
._af{width:166.400000pt;}
._8c{width:172.538667pt;}
._38{width:175.872000pt;}
._90{width:178.752000pt;}
._2a{width:182.784000pt;}
._91{width:191.296000pt;}
._ac{width:196.928000pt;}
._86{width:202.752000pt;}
._a2{width:251.456000pt;}
._92{width:284.290758pt;}
._93{width:316.488672pt;}
.fse{font-size:38.072798pt;}
.fsb{font-size:41.732350pt;}
.fs12{font-size:41.857754pt;}
.fs7{font-size:42.303593pt;}
.fs15{font-size:42.595759pt;}
.fs6{font-size:42.666667pt;}
.fs22{font-size:42.683141pt;}
.fs2a{font-size:42.799294pt;}
.fs1c{font-size:42.809415pt;}
.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;}
.fsd{font-size:66.684900pt;}
.fsf{font-size:70.333478pt;}
.fsc{font-size:73.065555pt;}
.fs13{font-size:73.189922pt;}
.fs9{font-size:73.459782pt;}
.fs16{font-size:73.711713pt;}
.fsa{font-size:73.731664pt;}
.fs25{font-size:73.842640pt;}
.fs26{font-size:73.969489pt;}
.fs11{font-size:73.984838pt;}
.fs8{font-size:74.095180pt;}
.fs14{font-size:74.479005pt;}
.fs0{font-size:74.666667pt;}
.fs21{font-size:74.853394pt;}
.fs29{font-size:74.866275pt;}
.fs1a{font-size:74.978272pt;}
.fs1f{font-size:77.186155pt;}
.fs17{font-size:77.679440pt;}
.fs10{font-size:77.751777pt;}
.fs1b{font-size:79.152679pt;}
.fs28{font-size:79.898775pt;}
.fs19{font-size:79.898876pt;}
.fs18{font-size:79.898879pt;}
.fs1d{font-size:79.898983pt;}
.fs1e{font-size:94.741669pt;}
.fs27{font-size:95.623600pt;}
.fs24{font-size:95.749290pt;}
.fs23{font-size:96.131596pt;}
.fs20{font-size:97.016660pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.yc2{bottom:2.909524pt;}
.ya2{bottom:2.909554pt;}
.ybb{bottom:2.909585pt;}
.y62{bottom:2.941434pt;}
.y1a3{bottom:2.941442pt;}
.y1ac{bottom:2.941464pt;}
.yb6{bottom:2.941473pt;}
.y6d{bottom:3.200000pt;}
.y73{bottom:3.213333pt;}
.y6f{bottom:3.333333pt;}
.y7c{bottom:3.346667pt;}
.yab{bottom:3.423847pt;}
.y1b9{bottom:3.423894pt;}
.y5c{bottom:3.460350pt;}
.y35{bottom:3.466667pt;}
.y64{bottom:3.486678pt;}
.y16a{bottom:3.486688pt;}
.y16e{bottom:3.486692pt;}
.y1a8{bottom:3.486699pt;}
.y128{bottom:3.779105pt;}
.y125{bottom:3.779139pt;}
.y188{bottom:3.779173pt;}
.y158{bottom:4.031760pt;}
.yd1{bottom:4.222091pt;}
.y60{bottom:4.222127pt;}
.y12e{bottom:4.603071pt;}
.y131{bottom:4.603078pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.y98{bottom:5.485687pt;}
.yc{bottom:6.000000pt;}
.ya6{bottom:6.095256pt;}
.ycd{bottom:6.095258pt;}
.y8d{bottom:6.095260pt;}
.y91{bottom:6.095274pt;}
.y1bd{bottom:6.095293pt;}
.y165{bottom:6.127083pt;}
.y1a2{bottom:6.148285pt;}
.y133{bottom:6.603088pt;}
.y172{bottom:6.825346pt;}
.y160{bottom:6.825356pt;}
.y185{bottom:6.825372pt;}
.y17e{bottom:6.825374pt;}
.y15f{bottom:6.857046pt;}
.y17d{bottom:6.857070pt;}
.y9e{bottom:6.874107pt;}
.y171{bottom:6.888849pt;}
.y184{bottom:6.888883pt;}
.y65{bottom:8.041357pt;}
.y141{bottom:8.041376pt;}
.y142{bottom:8.041387pt;}
.y16b{bottom:8.041388pt;}
.y1a9{bottom:8.041392pt;}
.y1ba{bottom:8.041428pt;}
.y1b0{bottom:8.095333pt;}
.y140{bottom:8.104258pt;}
.ydb{bottom:8.158703pt;}
.ydc{bottom:8.158731pt;}
.yc5{bottom:8.749584pt;}
.y97{bottom:9.685643pt;}
.y99{bottom:9.685660pt;}
.ya7{bottom:10.761948pt;}
.y92{bottom:10.761974pt;}
.y166{bottom:10.761980pt;}
.y1be{bottom:10.762000pt;}
.y1a1{bottom:10.823577pt;}
.yc8{bottom:15.036026pt;}
.y136{bottom:16.444224pt;}
.y1af{bottom:16.444649pt;}
.y5b{bottom:16.444650pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y15b{bottom:18.539222pt;}
.y15a{bottom:18.539225pt;}
.y157{bottom:18.570673pt;}
.y12d{bottom:19.238158pt;}
.y130{bottom:19.238164pt;}
.yca{bottom:19.710173pt;}
.yc7{bottom:19.710198pt;}
.y6c{bottom:20.133333pt;}
.y135{bottom:21.141816pt;}
.y137{bottom:21.141823pt;}
.y34{bottom:21.853333pt;}
.y38{bottom:21.866667pt;}
.y9{bottom:30.133333pt;}
.y159{bottom:30.221805pt;}
.y12f{bottom:31.237457pt;}
.y132{bottom:31.237463pt;}
.y5{bottom:32.000000pt;}
.yc6{bottom:32.660484pt;}
.yc9{bottom:32.660488pt;}
.y134{bottom:32.857004pt;}
.y6b{bottom:36.933333pt;}
.y33{bottom:40.293333pt;}
.y3{bottom:51.233333pt;}
.y32{bottom:58.693333pt;}
.y2{bottom:72.566667pt;}
.y31{bottom:77.093333pt;}
.y30{bottom:95.493333pt;}
.y13d{bottom:100.566667pt;}
.y13e{bottom:100.600000pt;}
.yb3{bottom:101.766667pt;}
.y210{bottom:105.233333pt;}
.y3f{bottom:105.766667pt;}
.yed{bottom:106.566667pt;}
.y1de{bottom:106.833333pt;}
.y1df{bottom:106.866667pt;}
.y75{bottom:108.166667pt;}
.y1f7{bottom:108.700000pt;}
.y122{bottom:112.566667pt;}
.y2f{bottom:113.893333pt;}
.y13b{bottom:122.833333pt;}
.y13c{bottom:122.866667pt;}
.yb2{bottom:122.966667pt;}
.y17a{bottom:123.633333pt;}
.y74{bottom:125.633333pt;}
.y3e{bottom:126.833333pt;}
.yec{bottom:127.766667pt;}
.y1f6{bottom:129.900000pt;}
.y1b7{bottom:130.033333pt;}
.y111{bottom:131.366667pt;}
.y2e{bottom:132.293333pt;}
.y121{bottom:133.773333pt;}
.y1dd{bottom:140.960000pt;}
.y20f{bottom:142.040000pt;}
.y72{bottom:143.226667pt;}
.yb1{bottom:144.160000pt;}
.y179{bottom:144.706667pt;}
.y3d{bottom:148.040000pt;}
.yeb{bottom:148.973333pt;}
.y2d{bottom:150.693333pt;}
.y1f5{bottom:150.973333pt;}
.y1b6{bottom:151.106667pt;}
.y110{bottom:152.560000pt;}
.y139{bottom:154.173333pt;}
.y13a{bottom:154.200000pt;}
.y120{bottom:154.973333pt;}
.y20e{bottom:160.440000pt;}
.y71{bottom:160.706667pt;}
.y1dc{bottom:162.160000pt;}
.yb0{bottom:165.226667pt;}
.y178{bottom:165.906667pt;}
.y2c{bottom:169.093333pt;}
.y3c{bottom:169.240000pt;}
.yea{bottom:170.040000pt;}
.y1f4{bottom:172.173333pt;}
.y1b5{bottom:172.306667pt;}
.y10f{bottom:173.773333pt;}
.y11f{bottom:176.173333pt;}
.y70{bottom:178.306667pt;}
.y20d{bottom:178.840000pt;}
.y138{bottom:179.240000pt;}
.y12c{bottom:179.266649pt;}
.y1db{bottom:183.373333pt;}
.yaf{bottom:186.440000pt;}
.y177{bottom:187.106667pt;}
.y2b{bottom:187.493333pt;}
.y3b{bottom:190.306667pt;}
.ye9{bottom:191.240000pt;}
.y1f3{bottom:193.373333pt;}
.y1b4{bottom:193.506667pt;}
.y1b3{bottom:193.533333pt;}
.y10e{bottom:194.840000pt;}
.y6e{bottom:195.773333pt;}
.y11e{bottom:197.240000pt;}
.y1da{bottom:204.440000pt;}
.yae{bottom:207.626667pt;}
.y176{bottom:208.173333pt;}
.y3a{bottom:211.506667pt;}
.ye8{bottom:212.440000pt;}
.y6a{bottom:213.373333pt;}
.y1f2{bottom:214.440000pt;}
.y20c{bottom:215.640000pt;}
.y10d{bottom:216.040000pt;}
.y11d{bottom:218.440000pt;}
.y1d9{bottom:225.626667pt;}
.y1b2{bottom:227.640000pt;}
.yad{bottom:228.706667pt;}
.y175{bottom:229.373333pt;}
.ye7{bottom:233.506667pt;}
.y20b{bottom:234.040000pt;}
.y1f1{bottom:235.640000pt;}
.y10c{bottom:237.226667pt;}
.y12b{bottom:237.506667pt;}
.y11c{bottom:239.640000pt;}
.y39{bottom:240.573333pt;}
.y1d8{bottom:246.840000pt;}
.y1b1{bottom:248.840000pt;}
.y1ae{bottom:248.866649pt;}
.yac{bottom:249.906667pt;}
.yaa{bottom:249.933333pt;}
.y174{bottom:250.573333pt;}
.y20a{bottom:252.440000pt;}
.ye6{bottom:254.706667pt;}
.y37{bottom:255.506667pt;}
.y1f0{bottom:256.840000pt;}
.y10b{bottom:258.293333pt;}
.y12a{bottom:258.573333pt;}
.y11b{bottom:260.706667pt;}
.y1d7{bottom:267.906667pt;}
.y69{bottom:270.840000pt;}
.y173{bottom:271.640000pt;}
.y170{bottom:271.666649pt;}
.ye5{bottom:275.893333pt;}
.y1ef{bottom:278.040000pt;}
.y10a{bottom:279.506667pt;}
.y129{bottom:279.773333pt;}
.y235{bottom:280.973333pt;}
.ya9{bottom:281.240000pt;}
.y11a{bottom:281.893333pt;}
.y1ad{bottom:283.106667pt;}
.y1d6{bottom:289.106667pt;}
.y209{bottom:289.240000pt;}
.y68{bottom:292.040000pt;}
.y36{bottom:292.306667pt;}
.ye4{bottom:296.960000pt;}
.y109{bottom:297.226667pt;}
.y1ee{bottom:299.106667pt;}
.y126{bottom:300.973333pt;}
.y127{bottom:301.000000pt;}
.y16f{bottom:301.906667pt;}
.y234{bottom:302.173333pt;}
.ya8{bottom:302.440000pt;}
.ya5{bottom:302.466667pt;}
.y119{bottom:303.106667pt;}
.y1aa{bottom:304.306667pt;}
.y1ab{bottom:304.333297pt;}
.y208{bottom:307.640000pt;}
.y1d5{bottom:310.306667pt;}
.y2a{bottom:310.706667pt;}
.y67{bottom:313.106667pt;}
.ye3{bottom:318.173333pt;}
.y1ed{bottom:320.306667pt;}
.y123{bottom:323.106667pt;}
.y124{bottom:323.133297pt;}
.y233{bottom:323.240000pt;}
.y118{bottom:324.173333pt;}
.y207{bottom:326.040000pt;}
.y1a6{bottom:329.373333pt;}
.y1a7{bottom:329.399964pt;}
.y1d4{bottom:331.373333pt;}
.y66{bottom:334.306667pt;}
.ya4{bottom:336.573333pt;}
.ye2{bottom:339.400000pt;}
.y1ec{bottom:341.533333pt;}
.y232{bottom:341.666667pt;}
.y206{bottom:344.466667pt;}
.y117{bottom:345.400000pt;}
.y1d3{bottom:352.600000pt;}
.y16d{bottom:354.466667pt;}
.y63{bottom:355.533333pt;}
.ya1{bottom:357.933297pt;}
.ya3{bottom:357.933333pt;}
.y231{bottom:360.066667pt;}
.ye1{bottom:360.466667pt;}
.y1a5{bottom:360.733333pt;}
.y1eb{bottom:362.600000pt;}
.y205{bottom:362.866667pt;}
.y116{bottom:366.600000pt;}
.y1d2{bottom:370.333333pt;}
.y169{bottom:375.666630pt;}
.y16c{bottom:375.666667pt;}
.y230{bottom:378.466667pt;}
.y204{bottom:381.266667pt;}
.ye0{bottom:381.666667pt;}
.y1a4{bottom:381.800000pt;}
.ya0{bottom:382.866667pt;}
.y1ea{bottom:383.800000pt;}
.y61{bottom:386.866667pt;}
.y115{bottom:387.666667pt;}
.y22f{bottom:396.866667pt;}
.y203{bottom:399.666667pt;}
.ydf{bottom:402.866667pt;}
.y1a0{bottom:402.999964pt;}
.y19f{bottom:403.000000pt;}
.y9d{bottom:404.066630pt;}
.y9f{bottom:404.066667pt;}
.y1e9{bottom:405.000000pt;}
.y168{bottom:407.000000pt;}
.y114{bottom:408.866667pt;}
.y5f{bottom:411.933297pt;}
.y5e{bottom:411.933333pt;}
.y22e{bottom:415.266667pt;}
.y202{bottom:418.066667pt;}
.y108{bottom:418.333333pt;}
.y1e8{bottom:426.066667pt;}
.y164{bottom:428.066630pt;}
.y167{bottom:428.066667pt;}
.y9c{bottom:429.133333pt;}
.y113{bottom:430.066667pt;}
.y22d{bottom:433.666667pt;}
.y201{bottom:436.466667pt;}
.yde{bottom:437.133297pt;}
.ydd{bottom:437.133333pt;}
.y5a{bottom:438.066630pt;}
.y5d{bottom:438.066667pt;}
.y107{bottom:439.400000pt;}
.y19e{bottom:440.066630pt;}
.y19d{bottom:440.066667pt;}
.y1e7{bottom:447.266667pt;}
.y9b{bottom:450.333333pt;}
.y112{bottom:451.133333pt;}
.y22c{bottom:452.066667pt;}
.y200{bottom:454.866667pt;}
.y1d1{bottom:457.133333pt;}
.y106{bottom:460.600000pt;}
.yda{bottom:462.199964pt;}
.yd9{bottom:462.200000pt;}
.y163{bottom:462.333333pt;}
.y96{bottom:467.933297pt;}
.y9a{bottom:467.933333pt;}
.y1e6{bottom:468.466667pt;}
.y22b{bottom:470.466667pt;}
.y59{bottom:472.333333pt;}
.y1ff{bottom:473.266667pt;}
.y19c{bottom:474.333333pt;}
.y1d0{bottom:478.333333pt;}
.y105{bottom:481.800000pt;}
.y162{bottom:483.533333pt;}
.y22a{bottom:488.866667pt;}
.y1e5{bottom:489.533333pt;}
.y1fe{bottom:491.666667pt;}
.yd8{bottom:492.333333pt;}
.y58{bottom:493.533333pt;}
.y19b{bottom:495.533333pt;}
.y95{bottom:499.400000pt;}
.y1cf{bottom:499.533333pt;}
.y104{bottom:502.866667pt;}
.y15e{bottom:504.599964pt;}
.y161{bottom:504.600000pt;}
.y229{bottom:507.266667pt;}
.y1fd{bottom:510.066667pt;}
.y1e4{bottom:510.733333pt;}
.yd7{bottom:513.533333pt;}
.y57{bottom:514.733333pt;}
.y29{bottom:516.333333pt;}
.y19a{bottom:516.600000pt;}
.y94{bottom:520.466667pt;}
.y1ce{bottom:520.733333pt;}
.y103{bottom:524.066630pt;}
.y102{bottom:524.066667pt;}
.y228{bottom:525.666667pt;}
.y1fc{bottom:528.466667pt;}
.y1e3{bottom:531.933333pt;}
.y28{bottom:533.400000pt;}
.yd6{bottom:534.733333pt;}
.y15d{bottom:534.866667pt;}
.y56{bottom:535.800000pt;}
.y199{bottom:537.800000pt;}
.y93{bottom:541.666667pt;}
.y1cd{bottom:541.800000pt;}
.y227{bottom:544.066667pt;}
.y1fb{bottom:546.866667pt;}
.y101{bottom:549.133333pt;}
.y27{bottom:551.800000pt;}
.y1e2{bottom:553.000000pt;}
.yd5{bottom:555.800000pt;}
.y156{bottom:556.066630pt;}
.y15c{bottom:556.066667pt;}
.y55{bottom:557.000000pt;}
.y198{bottom:559.000000pt;}
.y226{bottom:562.466667pt;}
.y90{bottom:562.866630pt;}
.y8f{bottom:562.866667pt;}
.y1cc{bottom:563.000000pt;}
.y1fa{bottom:565.266667pt;}
.y26{bottom:570.200000pt;}
.y100{bottom:570.333297pt;}
.yff{bottom:570.333333pt;}
.y1e1{bottom:574.200000pt;}
.yd4{bottom:577.000000pt;}
.y54{bottom:578.200000pt;}
.y197{bottom:580.066667pt;}
.y225{bottom:580.866667pt;}
.y1f9{bottom:583.666667pt;}
.y1cb{bottom:584.200000pt;}
.y25{bottom:588.600000pt;}
.yfe{bottom:595.400000pt;}
.y8c{bottom:596.999964pt;}
.y8e{bottom:597.000000pt;}
.yd3{bottom:598.200000pt;}
.y53{bottom:599.266667pt;}
.y196{bottom:601.266667pt;}
.y1f8{bottom:602.066667pt;}
.y1ca{bottom:605.266667pt;}
.y24{bottom:607.000000pt;}
.y155{bottom:610.333333pt;}
.yfd{bottom:616.600000pt;}
.y224{bottom:617.666667pt;}
.yd2{bottom:619.266667pt;}
.y52{bottom:620.466667pt;}
.y195{bottom:622.466667pt;}
.y23{bottom:625.400000pt;}
.y1c9{bottom:626.466667pt;}
.y8b{bottom:631.266667pt;}
.y154{bottom:631.400000pt;}
.y223{bottom:636.066667pt;}
.yfc{bottom:637.666667pt;}
.yd0{bottom:640.466667pt;}
.y51{bottom:641.666667pt;}
.y194{bottom:643.533333pt;}
.y22{bottom:643.800000pt;}
.y1c8{bottom:647.666667pt;}
.y8a{bottom:652.466667pt;}
.y153{bottom:652.600000pt;}
.y222{bottom:654.466667pt;}
.yfb{bottom:658.906667pt;}
.y21{bottom:662.240000pt;}
.y50{bottom:662.773333pt;}
.y193{bottom:664.773333pt;}
.ycf{bottom:666.773333pt;}
.y1c7{bottom:668.773333pt;}
.y221{bottom:672.906667pt;}
.y89{bottom:673.573333pt;}
.y152{bottom:673.840000pt;}
.yfa{bottom:680.106667pt;}
.y20{bottom:680.640000pt;}
.y4f{bottom:683.973333pt;}
.ycc{bottom:684.333261pt;}
.yce{bottom:684.373333pt;}
.y192{bottom:685.973333pt;}
.y1c6{bottom:689.973333pt;}
.y220{bottom:691.306667pt;}
.y88{bottom:694.773333pt;}
.y151{bottom:694.906667pt;}
.y1f{bottom:699.040000pt;}
.yf9{bottom:701.173333pt;}
.y4e{bottom:705.173333pt;}
.y191{bottom:707.040000pt;}
.y21f{bottom:709.706667pt;}
.y1c5{bottom:711.173333pt;}
.y87{bottom:715.973333pt;}
.y150{bottom:716.106667pt;}
.y1e{bottom:717.440000pt;}
.yc4{bottom:718.599928pt;}
.ycb{bottom:718.640000pt;}
.yf8{bottom:722.373333pt;}
.y4d{bottom:726.240000pt;}
.y21e{bottom:728.106667pt;}
.y190{bottom:728.240000pt;}
.y1c4{bottom:732.240000pt;}
.y1d{bottom:735.840000pt;}
.y86{bottom:737.040000pt;}
.y14f{bottom:737.293333pt;}
.yf7{bottom:743.573333pt;}
.y21d{bottom:746.506667pt;}
.y4c{bottom:747.440000pt;}
.y18f{bottom:749.440000pt;}
.y1c3{bottom:753.440000pt;}
.y1c{bottom:754.240000pt;}
.y85{bottom:758.240000pt;}
.y14e{bottom:758.373333pt;}
.yf6{bottom:764.626667pt;}
.y21c{bottom:764.906667pt;}
.y4b{bottom:768.640000pt;}
.y18e{bottom:770.626667pt;}
.y1b{bottom:772.640000pt;}
.y1c2{bottom:774.640000pt;}
.yc3{bottom:777.973333pt;}
.y84{bottom:779.440000pt;}
.y14d{bottom:779.573333pt;}
.y21b{bottom:783.306667pt;}
.yf5{bottom:785.840000pt;}
.y4a{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y18d{bottom:791.706667pt;}
.y1c1{bottom:795.666594pt;}
.y1c0{bottom:795.706667pt;}
.yc1{bottom:799.133333pt;}
.yc0{bottom:799.173333pt;}
.y83{bottom:800.640000pt;}
.y14c{bottom:800.773333pt;}
.y21a{bottom:801.706667pt;}
.y1e0{bottom:806.999928pt;}
.yf4{bottom:807.040000pt;}
.y19{bottom:809.440000pt;}
.y49{bottom:810.906667pt;}
.y18c{bottom:812.906667pt;}
.y219{bottom:820.106667pt;}
.y82{bottom:821.706667pt;}
.y14b{bottom:821.840000pt;}
.ybf{bottom:824.240000pt;}
.y18{bottom:827.840000pt;}
.yf3{bottom:828.106667pt;}
.y1bf{bottom:829.973333pt;}
.y48{bottom:832.106667pt;}
.y18b{bottom:834.106667pt;}
.y218{bottom:838.506667pt;}
.y81{bottom:842.906667pt;}
.y14a{bottom:843.040000pt;}
.ybe{bottom:845.440000pt;}
.y17{bottom:846.240000pt;}
.yf2{bottom:849.306667pt;}
.y1bc{bottom:851.133261pt;}
.y1bb{bottom:851.173333pt;}
.y47{bottom:853.306667pt;}
.y18a{bottom:855.173333pt;}
.y217{bottom:856.906667pt;}
.y80{bottom:864.106667pt;}
.y149{bottom:864.240000pt;}
.y16{bottom:864.640000pt;}
.ybd{bottom:866.506667pt;}
.yf1{bottom:870.506667pt;}
.y46{bottom:874.373333pt;}
.y216{bottom:875.306667pt;}
.y189{bottom:876.373333pt;}
.y7f{bottom:879.706667pt;}
.y15{bottom:883.040000pt;}
.y148{bottom:885.306667pt;}
.ybc{bottom:887.706667pt;}
.yf0{bottom:891.573333pt;}
.y215{bottom:893.706667pt;}
.y45{bottom:895.573333pt;}
.y7e{bottom:897.173333pt;}
.y187{bottom:897.533261pt;}
.y186{bottom:897.573333pt;}
.y14{bottom:901.440000pt;}
.y147{bottom:906.506667pt;}
.yba{bottom:908.866594pt;}
.yb9{bottom:908.906667pt;}
.y214{bottom:912.106667pt;}
.yef{bottom:912.866594pt;}
.yee{bottom:912.906667pt;}
.y7d{bottom:914.773333pt;}
.y44{bottom:916.773333pt;}
.y183{bottom:919.666594pt;}
.y182{bottom:919.706667pt;}
.y13{bottom:919.840000pt;}
.y1b8{bottom:927.666594pt;}
.y146{bottom:927.706667pt;}
.y213{bottom:930.506667pt;}
.y7b{bottom:932.226667pt;}
.yb8{bottom:933.973333pt;}
.y43{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y145{bottom:948.773333pt;}
.y212{bottom:948.906667pt;}
.y7a{bottom:949.840000pt;}
.y181{bottom:949.973333pt;}
.yb7{bottom:955.173333pt;}
.y11{bottom:956.640000pt;}
.y42{bottom:959.040000pt;}
.y79{bottom:967.306667pt;}
.y144{bottom:969.973333pt;}
.y180{bottom:971.173333pt;}
.y10{bottom:975.066667pt;}
.yb5{bottom:976.333261pt;}
.yb4{bottom:976.400000pt;}
.y41{bottom:980.266667pt;}
.y78{bottom:984.933333pt;}
.y211{bottom:985.733333pt;}
.y13f{bottom:991.133261pt;}
.y143{bottom:991.200000pt;}
.y17f{bottom:992.266667pt;}
.y40{bottom:1001.333333pt;}
.y77{bottom:1002.400000pt;}
.yf{bottom:1004.133333pt;}
.y17c{bottom:1013.399928pt;}
.y17b{bottom:1013.466667pt;}
.y76{bottom:1020.000000pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h3d{height:16.000798pt;}
.h3b{height:16.000835pt;}
.h5b{height:16.000871pt;}
.h21{height:16.800000pt;}
.h20{height:16.933333pt;}
.h22{height:16.953333pt;}
.h11{height:18.400000pt;}
.h18{height:18.799491pt;}
.h2a{height:18.799527pt;}
.h30{height:18.799563pt;}
.h37{height:20.000207pt;}
.h16{height:20.000244pt;}
.h57{height:24.000185pt;}
.h38{height:24.000203pt;}
.h5a{height:24.000240pt;}
.h1a{height:25.066408pt;}
.h54{height:25.066444pt;}
.h47{height:25.066481pt;}
.h26{height:25.200122pt;}
.h2d{height:28.000416pt;}
.h64{height:28.000434pt;}
.h13{height:28.000452pt;}
.h35{height:28.000488pt;}
.h5f{height:30.934145pt;}
.h63{height:31.747559pt;}
.h2e{height:31.842959pt;}
.h24{height:32.182128pt;}
.h1b{height:34.661488pt;}
.h12{height:36.800000pt;}
.h6{height:40.266667pt;}
.h55{height:40.937642pt;}
.h45{height:41.081096pt;}
.h52{height:41.498007pt;}
.h14{height:41.518663pt;}
.h43{height:42.015099pt;}
.h3{height:43.200000pt;}
.h33{height:43.842045pt;}
.h7{height:47.109375pt;}
.h4b{height:47.999061pt;}
.h5d{height:48.687500pt;}
.h5{height:49.726562pt;}
.h1d{height:50.533333pt;}
.h1e{height:50.731771pt;}
.h3f{height:51.999600pt;}
.h4{height:52.343750pt;}
.h31{height:53.066298pt;}
.hb{height:53.156250pt;}
.hf{height:55.343750pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1f{height:59.125000pt;}
.h5e{height:62.781250pt;}
.hc{height:62.812500pt;}
.h10{height:63.187500pt;}
.h56{height:63.208333pt;}
.ha{height:64.500000pt;}
.h29{height:65.147758pt;}
.h27{height:65.447583pt;}
.h34{height:68.987633pt;}
.h4f{height:69.334418pt;}
.h40{height:69.450089pt;}
.h49{height:71.495183pt;}
.h1c{height:71.674170pt;}
.h4a{height:71.709846pt;}
.h2f{height:71.796168pt;}
.h3a{height:71.952098pt;}
.h2b{height:72.019102pt;}
.h17{height:72.060890pt;}
.h59{height:72.308023pt;}
.h19{height:72.327594pt;}
.h39{height:72.344016pt;}
.h62{height:72.363596pt;}
.h51{height:72.436457pt;}
.h53{height:72.560890pt;}
.h2c{height:72.575947pt;}
.h25{height:72.684188pt;}
.h65{height:72.720367pt;}
.h32{height:73.060704pt;}
.h2{height:73.281250pt;}
.h41{height:73.316715pt;}
.h4d{height:73.427963pt;}
.h4e{height:73.464513pt;}
.h44{height:73.550463pt;}
.h42{height:73.587074pt;}
.h5c{height:74.007801pt;}
.h3e{height:74.007894pt;}
.h3c{height:74.007897pt;}
.h46{height:74.007994pt;}
.h60{height:75.669338pt;}
.h28{height:82.214922pt;}
.h48{height:87.756322pt;}
.h58{height:88.573227pt;}
.h50{height:88.689650pt;}
.h4c{height:89.863576pt;}
.h15{height:91.260398pt;}
.h23{height:91.350957pt;}
.h36{height:91.387137pt;}
.h61{height:92.178404pt;}
.he{height:202.426667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w16{width:14.933661pt;}
.w26{width:17.067230pt;}
.wb{width:17.067239pt;}
.w23{width:17.067266pt;}
.w24{width:17.067303pt;}
.w20{width:19.999478pt;}
.w1b{width:19.999487pt;}
.w17{width:19.999506pt;}
.w22{width:19.999542pt;}
.wa{width:21.199574pt;}
.w2c{width:22.933657pt;}
.w2b{width:26.933927pt;}
.w1a{width:29.066437pt;}
.w2a{width:30.932849pt;}
.w2e{width:30.932876pt;}
.w2d{width:31.999877pt;}
.w2f{width:31.999940pt;}
.w27{width:33.199572pt;}
.w1e{width:34.932894pt;}
.w32{width:38.801260pt;}
.w34{width:45.198799pt;}
.w35{width:48.000282pt;}
.w21{width:48.000291pt;}
.wc{width:48.000300pt;}
.w14{width:48.000318pt;}
.w31{width:48.000354pt;}
.w1f{width:53.067210pt;}
.w18{width:57.200935pt;}
.w19{width:64.000792pt;}
.w28{width:79.998127pt;}
.w10{width:87.200000pt;}
.wd{width:87.233333pt;}
.w30{width:94.795683pt;}
.w12{width:102.400000pt;}
.wf{width:102.433333pt;}
.w25{width:130.935020pt;}
.we{width:157.333333pt;}
.w11{width:157.360000pt;}
.w6{width:158.533333pt;}
.w13{width:190.800318pt;}
.w9{width:218.934120pt;}
.w1c{width:222.934181pt;}
.w33{width:222.934209pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w29{width:286.938718pt;}
.w1d{width:301.059206pt;}
.w15{width:357.609799pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:1.206366pt;}
.x2f{left:2.979959pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x70{left:16.380805pt;}
.x27{left:18.566667pt;}
.x5{left:19.733333pt;}
.x3a{left:23.460007pt;}
.xb{left:28.533333pt;}
.x63{left:31.077944pt;}
.x7c{left:36.794108pt;}
.x3{left:37.866655pt;}
.x62{left:39.916537pt;}
.x52{left:41.948301pt;}
.x6a{left:46.705395pt;}
.x69{left:58.485981pt;}
.x4a{left:61.314885pt;}
.x5f{left:73.951285pt;}
.x4c{left:79.071139pt;}
.x61{left:81.215114pt;}
.x28{left:85.066655pt;}
.x10{left:86.266655pt;}
.x26{left:89.066667pt;}
.x80{left:91.263370pt;}
.x25{left:93.066667pt;}
.xd{left:95.093333pt;}
.x4b{left:99.981191pt;}
.x60{left:105.126227pt;}
.x6{left:108.166667pt;}
.x49{left:111.336734pt;}
.xa{left:113.893333pt;}
.x6f{left:116.033322pt;}
.x56{left:117.266658pt;}
.x2e{left:119.533324pt;}
.x2c{left:121.666658pt;}
.x33{left:126.433333pt;}
.x30{left:136.559988pt;}
.x54{left:138.199991pt;}
.x2d{left:142.826655pt;}
.x31{left:152.999982pt;}
.x50{left:154.693322pt;}
.x55{left:158.159988pt;}
.x3c{left:163.323660pt;}
.x57{left:165.239988pt;}
.x37{left:166.520499pt;}
.x11{left:175.906655pt;}
.x3d{left:180.298500pt;}
.x2a{left:200.626406pt;}
.x7f{left:204.045970pt;}
.x51{left:214.333315pt;}
.x83{left:230.333315pt;}
.x86{left:232.733315pt;}
.x85{left:237.133333pt;}
.x6d{left:238.755825pt;}
.x89{left:248.999982pt;}
.x6b{left:257.157533pt;}
.x46{left:261.399982pt;}
.x48{left:264.599982pt;}
.x53{left:267.359988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x84{left:275.506655pt;}
.x6c{left:276.985004pt;}
.x47{left:281.359988pt;}
.x34{left:284.440000pt;}
.x4e{left:292.924983pt;}
.x8a{left:296.973322pt;}
.x2b{left:304.026655pt;}
.x4d{left:308.039988pt;}
.x6e{left:324.839988pt;}
.x87{left:336.333297pt;}
.x3b{left:347.083483pt;}
.x88{left:356.333322pt;}
.x44{left:358.466630pt;}
.x4f{left:368.866655pt;}
.x45{left:387.533322pt;}
.x23{left:403.266655pt;}
.x29{left:406.466655pt;}
.x1c{left:412.599988pt;}
.x15{left:425.133322pt;}
.x1d{left:441.799988pt;}
.x14{left:447.266655pt;}
.x13{left:453.666655pt;}
.x19{left:456.599988pt;}
.x40{left:468.599988pt;}
.x41{left:473.666655pt;}
.x5b{left:474.733297pt;}
.x77{left:480.999964pt;}
.x17{left:487.799988pt;}
.x39{left:488.866630pt;}
.x18{left:490.333322pt;}
.x5c{left:491.799988pt;}
.x35{left:495.000000pt;}
.x64{left:508.333322pt;}
.x42{left:510.866655pt;}
.x12{left:514.333322pt;}
.x43{left:517.666655pt;}
.x71{left:528.733297pt;}
.x1b{left:536.599988pt;}
.x20{left:545.533322pt;}
.x22{left:548.466655pt;}
.x1a{left:550.199988pt;}
.x1f{left:553.799988pt;}
.xc{left:555.933333pt;}
.x72{left:559.666655pt;}
.x24{left:560.866655pt;}
.x78{left:564.466630pt;}
.x7e{left:567.839988pt;}
.x1e{left:581.693322pt;}
.x21{left:584.093322pt;}
.x82{left:597.306655pt;}
.x79{left:606.066630pt;}
.x81{left:629.439988pt;}
.xf{left:634.360000pt;}
.x8b{left:639.266594pt;}
.x38{left:644.506655pt;}
.x36{left:653.026667pt;}
.x8c{left:659.293322pt;}
.x75{left:670.599928pt;}
.x5d{left:675.533261pt;}
.x3f{left:681.426655pt;}
.x76{left:687.706655pt;}
.x65{left:688.999928pt;}
.x5e{left:692.626655pt;}
.x59{left:697.799928pt;}
.x7a{left:700.893322pt;}
.x7b{left:708.066594pt;}
.x5a{left:717.839988pt;}
.x73{left:719.933261pt;}
.x66{left:722.226655pt;}
.x67{left:727.533333pt;}
.x7d{left:731.039988pt;}
.x58{left:736.066594pt;}
.x2{left:737.439988pt;}
.x68{left:744.626655pt;}
.x74{left:751.959988pt;}
.x16{left:756.106655pt;}
.x3e{left:764.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; }
  