
    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_97da13bb43a37524b3d5863b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d3fdf078462ddfac80596f8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f50c65c868e0fd2595e0eb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_222b3a4808f286f983698fc8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9371e627d6c6c68ad53f9ce5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc79097bdeb0022cc9303351.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_3dbb81f1a9b555d4891a3636.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7185a06fb4200eb2d01550bf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3af96b689eb3fb9462be88da.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7e24ecce5d9d9e1f11d8b4a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.081055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b6f119bfba75435e2c593df9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.837891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_145bca7f17c97bea60dfb2db.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m58{transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178401,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.181746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181746,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183136,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.185549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185549,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185886,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.186204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186204,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.186211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186211,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.186351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186351,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186670,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.187509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187509,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.187593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187593,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.187709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187709,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.188063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188063,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.188222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188222,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.188367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188367,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.188571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188571,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188636,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.188913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188913,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189055,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.189101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189101,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.189243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189243,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.189343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189343,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.189376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189376,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.189782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189782,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.190152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190152,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.190507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190507,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.190674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190674,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.190701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190701,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.190853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190853,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.191013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191013,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.191172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191172,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.191197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191197,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.191379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191379,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.191392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191392,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.191409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191409,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.191856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191856,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.191873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191873,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192540,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.192693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192693,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.209031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209031,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.220387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220387,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224089,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.229817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229817,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.237343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237343,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.241217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241217,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.243642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243642,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.244159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244159,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244885,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244987,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245423,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245676,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248338,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,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);}
.m32{transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250406,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250408,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250601,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251516,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253106,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253448,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253632,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253671,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253909,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254609,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254649,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254770,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.255041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255041,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.255243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255243,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.255506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255506,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255720,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256154,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257048,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.258096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258096,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.270134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270134,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.273579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273579,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278821,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282126,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-101.173183px;}
.v5{vertical-align:-92.475570px;}
.v1{vertical-align:-69.120000px;}
.vc{vertical-align:-65.592060px;}
.v6{vertical-align:-56.385197px;}
.vb{vertical-align:-55.146367px;}
.vf{vertical-align:-46.545279px;}
.ve{vertical-align:-44.920121px;}
.v7{vertical-align:-39.717526px;}
.v13{vertical-align:-37.817881px;}
.v10{vertical-align:-34.400960px;}
.v2{vertical-align:-32.490638px;}
.v3{vertical-align:-31.224939px;}
.v11{vertical-align:-26.052485px;}
.va{vertical-align:-19.708295px;}
.v9{vertical-align:-12.320635px;}
.vd{vertical-align:-9.854796px;}
.v8{vertical-align:-5.074591px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:18.643124px;}
.ls73{letter-spacing:-7.373994px;}
.ls71{letter-spacing:-6.923077px;}
.ls74{letter-spacing:-6.905804px;}
.ls5c{letter-spacing:-1.163704px;}
.ls60{letter-spacing:-0.818192px;}
.ls4b{letter-spacing:-0.540000px;}
.ls64{letter-spacing:-0.458722px;}
.ls5f{letter-spacing:-0.458029px;}
.ls2{letter-spacing:-0.058320px;}
.ls37{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.180000px;}
.ls6c{letter-spacing:0.259800px;}
.ls92{letter-spacing:0.289605px;}
.ls88{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls99{letter-spacing:0.724012px;}
.ls6b{letter-spacing:0.900000px;}
.ls38{letter-spacing:1.156853px;}
.ls89{letter-spacing:2.106720px;}
.ls11{letter-spacing:8.820327px;}
.ls8{letter-spacing:8.842389px;}
.ls9{letter-spacing:8.964881px;}
.ls7{letter-spacing:9.108849px;}
.ls40{letter-spacing:11.924240px;}
.ls42{letter-spacing:11.942261px;}
.ls44{letter-spacing:13.293746px;}
.ls1d{letter-spacing:13.394335px;}
.ls46{letter-spacing:13.529444px;}
.ls3d{letter-spacing:13.656325px;}
.ls6{letter-spacing:14.571343px;}
.ls43{letter-spacing:14.598767px;}
.ls27{letter-spacing:15.195026px;}
.ls3a{letter-spacing:15.482276px;}
.ls84{letter-spacing:16.376200px;}
.ls56{letter-spacing:16.807542px;}
.ls3c{letter-spacing:17.117670px;}
.ls3f{letter-spacing:18.275392px;}
.ls4a{letter-spacing:26.803884px;}
.ls4e{letter-spacing:26.870927px;}
.ls87{letter-spacing:31.626720px;}
.ls80{letter-spacing:34.944862px;}
.ls7e{letter-spacing:35.045162px;}
.ls2d{letter-spacing:35.523924px;}
.ls20{letter-spacing:35.612779px;}
.ls85{letter-spacing:36.275301px;}
.ls82{letter-spacing:36.951078px;}
.ls7d{letter-spacing:39.471565px;}
.ls81{letter-spacing:39.960979px;}
.ls5{letter-spacing:43.501687px;}
.ls10{letter-spacing:43.640455px;}
.ls13{letter-spacing:52.278880px;}
.lsa{letter-spacing:52.697595px;}
.ls14{letter-spacing:52.997552px;}
.lsb{letter-spacing:53.128218px;}
.ls12{letter-spacing:54.438407px;}
.ls50{letter-spacing:55.702488px;}
.ls55{letter-spacing:56.475691px;}
.ls17{letter-spacing:58.348192px;}
.ls22{letter-spacing:58.492051px;}
.ls70{letter-spacing:58.494136px;}
.ls33{letter-spacing:59.226049px;}
.ls1c{letter-spacing:59.248379px;}
.ls2c{letter-spacing:59.437377px;}
.lsf{letter-spacing:65.479020px;}
.ls4{letter-spacing:66.631938px;}
.lse{letter-spacing:66.796816px;}
.ls68{letter-spacing:67.991503px;}
.ls6a{letter-spacing:70.657132px;}
.ls48{letter-spacing:71.699870px;}
.ls32{letter-spacing:72.510943px;}
.ls77{letter-spacing:72.555392px;}
.ls25{letter-spacing:72.689720px;}
.ls59{letter-spacing:74.722759px;}
.ls61{letter-spacing:74.814527px;}
.ls1f{letter-spacing:74.910417px;}
.ls4d{letter-spacing:75.095110px;}
.ls1b{letter-spacing:75.097787px;}
.ls30{letter-spacing:75.671226px;}
.ls62{letter-spacing:75.815194px;}
.ls29{letter-spacing:76.607606px;}
.ls83{letter-spacing:76.797198px;}
.ls72{letter-spacing:77.097373px;}
.ls2b{letter-spacing:89.307263px;}
.ls16{letter-spacing:91.648214px;}
.ls31{letter-spacing:91.765261px;}
.ls34{letter-spacing:91.882309px;}
.ls8c{letter-spacing:92.490027px;}
.ls8f{letter-spacing:92.591407px;}
.ls24{letter-spacing:92.988867px;}
.ls2f{letter-spacing:94.808497px;}
.ls96{letter-spacing:96.646109px;}
.ls75{letter-spacing:96.798305px;}
.ls78{letter-spacing:97.303566px;}
.ls36{letter-spacing:97.500590px;}
.ls93{letter-spacing:97.565573px;}
.ls28{letter-spacing:98.671065px;}
.ls58{letter-spacing:99.083784px;}
.ls98{letter-spacing:99.813854px;}
.ls54{letter-spacing:100.257574px;}
.ls7a{letter-spacing:100.531080px;}
.ls95{letter-spacing:100.801778px;}
.ls7b{letter-spacing:106.178412px;}
.ls49{letter-spacing:106.350234px;}
.ls53{letter-spacing:110.755900px;}
.lsc{letter-spacing:116.523745px;}
.ls15{letter-spacing:118.689306px;}
.ls18{letter-spacing:125.826091px;}
.ls2a{letter-spacing:127.059003px;}
.ls97{letter-spacing:127.845410px;}
.ls26{letter-spacing:129.539065px;}
.lsd{letter-spacing:132.232875px;}
.ls8b{letter-spacing:132.340083px;}
.ls8e{letter-spacing:132.624456px;}
.ls9b{letter-spacing:136.280168px;}
.ls23{letter-spacing:136.637900px;}
.ls79{letter-spacing:137.169339px;}
.ls94{letter-spacing:137.538692px;}
.ls39{letter-spacing:139.433558px;}
.ls51{letter-spacing:141.026425px;}
.ls91{letter-spacing:143.112156px;}
.ls7c{letter-spacing:146.547763px;}
.ls8a{letter-spacing:147.557712px;}
.ls8d{letter-spacing:148.086322px;}
.ls9a{letter-spacing:151.801964px;}
.ls67{letter-spacing:156.005045px;}
.ls90{letter-spacing:158.574022px;}
.ls66{letter-spacing:165.896885px;}
.ls2e{letter-spacing:167.143868px;}
.ls4c{letter-spacing:167.555965px;}
.ls21{letter-spacing:167.561937px;}
.ls1e{letter-spacing:168.138772px;}
.ls1a{letter-spacing:168.559330px;}
.ls3e{letter-spacing:170.750324px;}
.ls5b{letter-spacing:170.772131px;}
.ls76{letter-spacing:179.375335px;}
.ls5e{letter-spacing:180.230809px;}
.ls63{letter-spacing:180.503184px;}
.ls7f{letter-spacing:203.870996px;}
.ls4f{letter-spacing:218.325428px;}
.ls41{letter-spacing:218.379779px;}
.ls69{letter-spacing:224.616566px;}
.ls6f{letter-spacing:230.734416px;}
.ls45{letter-spacing:251.708598px;}
.ls3b{letter-spacing:270.446517px;}
.ls47{letter-spacing:273.526539px;}
.ls52{letter-spacing:274.440964px;}
.ls5d{letter-spacing:286.721004px;}
.ls5a{letter-spacing:297.251352px;}
.ls65{letter-spacing:351.756218px;}
.ls86{letter-spacing:412.020000px;}
.ls57{letter-spacing:504.261503px;}
.ls6e{letter-spacing:579.730969px;}
.ls6d{letter-spacing:594.750203px;}
.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;}
}
.ws60{word-spacing:-224.689884px;}
.wsc{word-spacing:-168.632116px;}
.ws14{word-spacing:-168.211377px;}
.ws18{word-spacing:-167.634723px;}
.ws46{word-spacing:-167.628748px;}
.ws30{word-spacing:-167.216473px;}
.ws94{word-spacing:-137.612010px;}
.ws81{word-spacing:-137.242460px;}
.ws1c{word-spacing:-136.710683px;}
.ws21{word-spacing:-129.611849px;}
.ws96{word-spacing:-127.918680px;}
.ws26{word-spacing:-127.129016px;}
.ws23{word-spacing:-98.743670px;}
.ws8f{word-spacing:-98.729308px;}
.ws5f{word-spacing:-97.835382px;}
.ws41{word-spacing:-97.573195px;}
.ws78{word-spacing:-96.870909px;}
.ws95{word-spacing:-96.719380px;}
.ws38{word-spacing:-94.881101px;}
.ws91{word-spacing:-94.824322px;}
.ws1f{word-spacing:-93.061651px;}
.ws3e{word-spacing:-91.954913px;}
.ws3a{word-spacing:-91.837866px;}
.ws2b{word-spacing:-89.379868px;}
.wsd{word-spacing:-75.170573px;}
.ws47{word-spacing:-75.167894px;}
.ws15{word-spacing:-74.983022px;}
.ws80{word-spacing:-72.625405px;}
.ws70{word-spacing:-42.603202px;}
.ws58{word-spacing:-41.270283px;}
.ws59{word-spacing:-38.722750px;}
.ws56{word-spacing:-38.664318px;}
.ws36{word-spacing:-24.758162px;}
.ws1d{word-spacing:-24.382502px;}
.ws5e{word-spacing:-23.790132px;}
.ws1{word-spacing:-15.300000px;}
.ws62{word-spacing:-15.199800px;}
.ws40{word-spacing:-15.046800px;}
.ws29{word-spacing:-14.940000px;}
.ws42{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws20{word-spacing:-10.868764px;}
.ws33{word-spacing:-10.826461px;}
.ws3d{word-spacing:-8.918907px;}
.ws32{word-spacing:-8.537396px;}
.ws5c{word-spacing:-6.970040px;}
.ws73{word-spacing:-4.283670px;}
.ws12{word-spacing:-3.702834px;}
.ws61{word-spacing:-0.073318px;}
.ws17{word-spacing:-0.072786px;}
.ws4{word-spacing:-0.072605px;}
.wsf{word-spacing:-0.069328px;}
.ws93{word-spacing:-0.042486px;}
.ws2{word-spacing:0.000000px;}
.ws77{word-spacing:6.224738px;}
.ws75{word-spacing:6.833200px;}
.ws6d{word-spacing:6.850291px;}
.ws72{word-spacing:7.301390px;}
.ws67{word-spacing:8.030020px;}
.ws22{word-spacing:8.132292px;}
.ws2a{word-spacing:8.326941px;}
.ws8{word-spacing:8.903100px;}
.ws53{word-spacing:8.925369px;}
.ws49{word-spacing:9.036287px;}
.ws13{word-spacing:9.097748px;}
.ws45{word-spacing:9.120179px;}
.wsb{word-spacing:9.120504px;}
.ws50{word-spacing:9.286144px;}
.ws3{word-spacing:9.479259px;}
.ws24{word-spacing:10.697181px;}
.ws57{word-spacing:10.741538px;}
.ws4d{word-spacing:11.099465px;}
.ws6f{word-spacing:11.426706px;}
.ws7{word-spacing:11.970758px;}
.ws1a{word-spacing:12.000273px;}
.ws6b{word-spacing:12.000700px;}
.ws27{word-spacing:12.812388px;}
.ws76{word-spacing:16.118217px;}
.ws6e{word-spacing:16.158533px;}
.ws6a{word-spacing:17.886538px;}
.ws52{word-spacing:22.212986px;}
.ws66{word-spacing:25.271820px;}
.ws4f{word-spacing:27.586912px;}
.ws68{word-spacing:29.573359px;}
.ws7a{word-spacing:32.913428px;}
.ws8c{word-spacing:34.026251px;}
.ws3c{word-spacing:46.684746px;}
.ws11{word-spacing:47.846419px;}
.ws2d{word-spacing:50.024556px;}
.ws39{word-spacing:52.597770px;}
.ws1e{word-spacing:52.727451px;}
.ws69{word-spacing:54.158441px;}
.ws2c{word-spacing:55.179482px;}
.ws31{word-spacing:55.283918px;}
.ws55{word-spacing:55.899789px;}
.ws79{word-spacing:55.905527px;}
.ws5{word-spacing:56.195946px;}
.ws4a{word-spacing:57.534871px;}
.ws37{word-spacing:58.538439px;}
.ws1b{word-spacing:59.268152px;}
.ws25{word-spacing:64.552033px;}
.wse{word-spacing:68.115454px;}
.ws2e{word-spacing:68.332738px;}
.ws4c{word-spacing:68.575026px;}
.ws54{word-spacing:69.001302px;}
.ws4b{word-spacing:69.398537px;}
.ws19{word-spacing:71.572095px;}
.wsa{word-spacing:74.637509px;}
.ws43{word-spacing:74.643647px;}
.ws89{word-spacing:77.246829px;}
.ws5d{word-spacing:77.772632px;}
.ws4e{word-spacing:81.581950px;}
.ws34{word-spacing:85.746010px;}
.ws83{word-spacing:91.275036px;}
.ws7c{word-spacing:91.422740px;}
.ws44{word-spacing:95.720175px;}
.ws48{word-spacing:95.959595px;}
.ws8e{word-spacing:99.113183px;}
.ws5a{word-spacing:108.775001px;}
.ws8b{word-spacing:113.806950px;}
.ws85{word-spacing:114.782063px;}
.ws7e{word-spacing:114.967808px;}
.ws3f{word-spacing:115.459079px;}
.ws2f{word-spacing:115.656063px;}
.ws16{word-spacing:115.945348px;}
.ws86{word-spacing:119.158747px;}
.ws7f{word-spacing:119.351574px;}
.ws65{word-spacing:122.264781px;}
.ws63{word-spacing:124.075043px;}
.ws87{word-spacing:124.348872px;}
.ws9{word-spacing:124.734670px;}
.ws64{word-spacing:131.088740px;}
.ws28{word-spacing:138.458732px;}
.ws6{word-spacing:145.424240px;}
.ws92{word-spacing:148.778213px;}
.ws84{word-spacing:161.301977px;}
.ws7d{word-spacing:161.563002px;}
.ws82{word-spacing:167.937595px;}
.ws7b{word-spacing:168.209357px;}
.ws88{word-spacing:172.665125px;}
.ws8a{word-spacing:174.981806px;}
.ws8d{word-spacing:179.754983px;}
.ws3b{word-spacing:182.348051px;}
.ws10{word-spacing:187.138737px;}
.ws51{word-spacing:187.632616px;}
.ws90{word-spacing:191.936908px;}
.ws71{word-spacing:208.028403px;}
.ws74{word-spacing:211.867647px;}
.ws6c{word-spacing:212.397582px;}
.ws5b{word-spacing:259.584532px;}
.ws35{word-spacing:278.148150px;}
._4d{margin-left:-1211.614414px;}
._50{margin-left:-903.848295px;}
._3b{margin-left:-580.396549px;}
._8c{margin-left:-559.652216px;}
._2d{margin-left:-457.834940px;}
._22{margin-left:-431.238950px;}
._29{margin-left:-430.163005px;}
._42{margin-left:-428.173197px;}
._1f{margin-left:-421.621438px;}
._71{margin-left:-419.579490px;}
._30{margin-left:-396.416527px;}
._38{margin-left:-381.459754px;}
._54{margin-left:-373.433112px;}
._2f{margin-left:-371.401642px;}
._18{margin-left:-369.657159px;}
._55{margin-left:-368.498388px;}
._7b{margin-left:-360.291235px;}
._31{margin-left:-343.415103px;}
._59{margin-left:-341.074153px;}
._58{margin-left:-322.351230px;}
._27{margin-left:-305.072414px;}
._67{margin-left:-286.979387px;}
._96{margin-left:-265.661446px;}
._25{margin-left:-262.113803px;}
._9f{margin-left:-255.457595px;}
._1b{margin-left:-250.546880px;}
._3e{margin-left:-247.699172px;}
._39{margin-left:-244.420867px;}
._2b{margin-left:-212.658495px;}
._8a{margin-left:-207.391831px;}
._95{margin-left:-182.380771px;}
._57{margin-left:-173.972184px;}
._26{margin-left:-167.588019px;}
._43{margin-left:-150.832125px;}
._1c{margin-left:-137.887066px;}
._3a{margin-left:-135.601634px;}
._6a{margin-left:-133.785051px;}
._78{margin-left:-128.491384px;}
._6b{margin-left:-125.499100px;}
._21{margin-left:-123.051550px;}
._44{margin-left:-102.860196px;}
._72{margin-left:-93.899673px;}
._8e{margin-left:-89.067128px;}
._88{margin-left:-80.316496px;}
._9e{margin-left:-66.386241px;}
._34{margin-left:-58.450492px;}
._5e{margin-left:-55.896632px;}
._23{margin-left:-31.030241px;}
._2a{margin-left:-7.351405px;}
._8{margin-left:-3.406320px;}
._4{margin-left:-2.151360px;}
._5{margin-left:-1.015920px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._6{width:3.863520px;}
._9{width:5.722320px;}
._a{width:7.050480px;}
._b{width:8.386800px;}
._7{width:9.442080px;}
._f{width:10.816560px;}
._e{width:11.892240px;}
._d{width:13.446000px;}
._33{width:16.912800px;}
._c{width:18.226800px;}
._16{width:19.780560px;}
._14{width:21.035520px;}
._5c{width:23.067360px;}
._5b{width:24.382080px;}
._35{width:25.398000px;}
._36{width:26.593200px;}
._13{width:28.087200px;}
._12{width:29.640960px;}
._70{width:31.254480px;}
._89{width:33.286320px;}
._10{width:36.453600px;}
._11{width:37.648800px;}
._3f{width:41.832000px;}
._5a{width:42.967440px;}
._56{width:43.983360px;}
._8f{width:46.074960px;}
._6f{width:48.663916px;}
._32{width:49.899600px;}
._a0{width:51.868560px;}
._8b{width:54.743854px;}
._2c{width:57.130560px;}
._48{width:58.772766px;}
._28{width:60.915243px;}
._68{width:63.226080px;}
._76{width:65.557440px;}
._17{width:66.990960px;}
._24{width:68.664240px;}
._52{width:70.716862px;}
._77{width:74.460960px;}
._41{width:75.476880px;}
._2e{width:77.368955px;}
._5d{width:80.676720px;}
._87{width:84.586933px;}
._4a{width:88.650193px;}
._37{width:91.227006px;}
._40{width:92.628000px;}
._4c{width:94.855370px;}
._9d{width:95.974560px;}
._9c{width:97.261011px;}
._60{width:98.667020px;}
._75{width:100.487596px;}
._3c{width:101.501204px;}
._19{width:103.243714px;}
._45{width:110.159941px;}
._8d{width:113.045333px;}
._62{width:118.251483px;}
._83{width:119.278302px;}
._63{width:121.386682px;}
._3d{width:125.025088px;}
._1a{width:126.985412px;}
._4b{width:128.504013px;}
._49{width:131.795656px;}
._20{width:134.826707px;}
._86{width:137.462674px;}
._51{width:139.795703px;}
._61{width:149.664270px;}
._84{width:151.572373px;}
._93{width:161.492296px;}
._1e{width:166.772722px;}
._7c{width:168.869713px;}
._7e{width:169.974186px;}
._69{width:172.169280px;}
._64{width:174.319920px;}
._85{width:177.971609px;}
._73{width:183.224880px;}
._74{width:184.718160px;}
._7a{width:188.197405px;}
._80{width:189.839587px;}
._6d{width:193.781962px;}
._79{width:195.677208px;}
._81{width:208.011169px;}
._1d{width:216.249600px;}
._6e{width:217.984943px;}
._53{width:221.080949px;}
._9a{width:237.596704px;}
._9b{width:238.778543px;}
._47{width:242.258440px;}
._98{width:263.945904px;}
._91{width:265.830215px;}
._65{width:267.027617px;}
._4f{width:287.005909px;}
._46{width:292.428693px;}
._66{width:298.787282px;}
._82{width:310.099027px;}
._5f{width:313.976056px;}
._4e{width:329.915216px;}
._90{width:377.074613px;}
._94{width:396.518738px;}
._92{width:399.983327px;}
._99{width:427.489097px;}
._7f{width:432.142754px;}
._97{width:450.087665px;}
._7d{width:630.301866px;}
._6c{width:689.271840px;}
._15{width:767.850240px;}
._2{width:768.960480px;}
._3{width:801.117840px;}
._a1{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.306255px;}
.fsf{font-size:40.434830px;}
.fs24{font-size:40.794137px;}
.fs2d{font-size:40.860151px;}
.fs26{font-size:41.203721px;}
.fs19{font-size:41.659109px;}
.fs35{font-size:41.831309px;}
.fs13{font-size:41.831742px;}
.fs32{font-size:41.891289px;}
.fs4{font-size:41.921157px;}
.fs28{font-size:41.927823px;}
.fs1c{font-size:42.026012px;}
.fs2c{font-size:42.065125px;}
.fs21{font-size:42.097526px;}
.fs2f{font-size:42.371878px;}
.fs2a{font-size:42.485972px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsb{font-size:69.327598px;}
.fs30{font-size:69.459953px;}
.fsa{font-size:69.790424px;}
.fs10{font-size:70.013051px;}
.fs16{font-size:70.591675px;}
.fs1e{font-size:70.705909px;}
.fs1b{font-size:71.261106px;}
.fs1f{font-size:71.368800px;}
.fs1a{font-size:71.929440px;}
.fs36{font-size:72.292621px;}
.fs14{font-size:72.307771px;}
.fs12{font-size:72.336525px;}
.fs33{font-size:72.396279px;}
.fs23{font-size:72.454061px;}
.fs29{font-size:72.525320px;}
.fs5{font-size:72.604581px;}
.fs20{font-size:72.752696px;}
.fsd{font-size:72.783589px;}
.fs8{font-size:72.786183px;}
.fs15{font-size:72.823575px;}
.fs2e{font-size:73.121119px;}
.fs37{font-size:73.270541px;}
.fs22{font-size:73.318011px;}
.fs2b{font-size:73.467836px;}
.fs17{font-size:92.582521px;}
.fs1d{font-size:92.732342px;}
.fs25{font-size:93.274029px;}
.fs18{font-size:94.275995px;}
.fs11{font-size:94.700130px;}
.fs34{font-size:94.740104px;}
.fs31{font-size:94.875949px;}
.fs27{font-size:94.889535px;}
.fs3{font-size:95.077706px;}
.fse{font-size:95.224016px;}
.fsc{font-size:95.312122px;}
.fs7{font-size:95.315519px;}
.fs6{font-size:98.390151px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:3.234013px;}
.yeb{bottom:3.270000px;}
.y18d{bottom:3.901431px;}
.y6f{bottom:3.933858px;}
.y12b{bottom:4.135057px;}
.yf3{bottom:4.366729px;}
.y184{bottom:4.373795px;}
.y105{bottom:4.470802px;}
.y121{bottom:4.477558px;}
.y154{bottom:4.506057px;}
.y1a7{bottom:4.661367px;}
.y178{bottom:4.673918px;}
.y18a{bottom:4.698125px;}
.y1ad{bottom:4.710775px;}
.y6c{bottom:4.832301px;}
.ya1{bottom:4.847716px;}
.yee{bottom:4.975077px;}
.ye7{bottom:5.290409px;}
.y181{bottom:5.929920px;}
.y10b{bottom:5.980835px;}
.y132{bottom:6.403640px;}
.y10e{bottom:6.512586px;}
.y11d{bottom:6.522429px;}
.y151{bottom:6.547841px;}
.ye6{bottom:7.971976px;}
.y19a{bottom:8.763312px;}
.y192{bottom:8.775877px;}
.y61{bottom:9.164529px;}
.y8d{bottom:9.272359px;}
.y5d{bottom:9.308205px;}
.y7b{bottom:9.331154px;}
.y68{bottom:9.331487px;}
.y1a8{bottom:9.396249px;}
.y179{bottom:9.421550px;}
.y189{bottom:9.432857px;}
.y1ac{bottom:9.458257px;}
.y19d{bottom:10.072353px;}
.y195{bottom:10.086796px;}
.yfc{bottom:10.428832px;}
.y62{bottom:10.602019px;}
.y7c{bottom:10.628158px;}
.y69{bottom:10.628537px;}
.y6b{bottom:12.613714px;}
.y98{bottom:12.653951px;}
.y10f{bottom:13.166050px;}
.y120{bottom:13.185947px;}
.y18f{bottom:13.605587px;}
.y185{bottom:13.627604px;}
.ye0{bottom:14.748030px;}
.y104{bottom:15.629749px;}
.y153{bottom:15.665577px;}
.yf5{bottom:16.853087px;}
.y113{bottom:16.880359px;}
.y15b{bottom:17.066012px;}
.yf4{bottom:18.153320px;}
.y115{bottom:18.182697px;}
.y15d{bottom:18.388321px;}
.y5e{bottom:18.724678px;}
.y14e{bottom:19.115128px;}
.ydf{bottom:19.386708px;}
.y19b{bottom:19.526824px;}
.y193{bottom:19.554823px;}
.y102{bottom:20.382018px;}
.y11f{bottom:20.412820px;}
.y150{bottom:20.417846px;}
.yf9{bottom:21.181208px;}
.y19e{bottom:24.180931px;}
.y196{bottom:24.215604px;}
.ye5{bottom:24.313782px;}
.y12f{bottom:24.553812px;}
.yf8{bottom:25.532228px;}
.y14b{bottom:26.056097px;}
.y12a{bottom:26.640930px;}
.yfb{bottom:26.863008px;}
.y14f{bottom:28.373168px;}
.yf2{bottom:29.267748px;}
.y114{bottom:29.315110px;}
.y15e{bottom:29.764666px;}
.y103{bottom:30.204712px;}
.y152{bottom:30.239107px;}
.y11e{bottom:30.250359px;}
.y101{bottom:31.612048px;}
.y11c{bottom:31.659822px;}
.y19c{bottom:35.526059px;}
.y194{bottom:35.576998px;}
.y12e{bottom:35.971140px;}
.y12c{bottom:36.154378px;}
.y15c{bottom:37.876326px;}
.yfa{bottom:38.154870px;}
.y129{bottom:40.838104px;}
.ydb{bottom:43.374477px;}
.ye1{bottom:44.678529px;}
.y12d{bottom:50.865510px;}
.y128{bottom:52.292676px;}
.yde{bottom:53.846721px;}
.ye4{bottom:55.115369px;}
.y41{bottom:56.160000px;}
.ye3{bottom:60.622186px;}
.ydd{bottom:67.941988px;}
.ye2{bottom:77.871370px;}
.ydc{bottom:79.284584px;}
.y18c{bottom:101.640000px;}
.y18b{bottom:106.020000px;}
.y40{bottom:109.800000px;}
.y91{bottom:117.180000px;}
.yd0{bottom:118.260000px;}
.y188{bottom:121.440000px;}
.y3d{bottom:127.080000px;}
.y187{bottom:130.320000px;}
.y137{bottom:133.020000px;}
.y90{bottom:134.460000px;}
.ycf{bottom:135.540000px;}
.y3c{bottom:144.360000px;}
.y183{bottom:149.115000px;}
.y136{bottom:150.300000px;}
.y8f{bottom:151.740000px;}
.yce{bottom:153.180000px;}
.y3b{bottom:161.670000px;}
.y186{bottom:162.615000px;}
.y182{bottom:167.070000px;}
.y135{bottom:167.610000px;}
.y8e{bottom:169.050000px;}
.ycd{bottom:170.490000px;}
.y3a{bottom:178.950000px;}
.y8c{bottom:182.790000px;}
.ycc{bottom:184.215000px;}
.y134{bottom:184.890000px;}
.y8b{bottom:193.170000px;}
.ycb{bottom:194.610000px;}
.y180{bottom:195.240000px;}
.y39{bottom:196.050000px;}
.y133{bottom:201.990000px;}
.y17f{bottom:205.590000px;}
.y8a{bottom:213.015000px;}
.y38{bottom:213.330000px;}
.y131{bottom:215.715000px;}
.yca{bottom:218.010000px;}
.y130{bottom:221.610000px;}
.y89{bottom:223.410000px;}
.y17e{bottom:228.990000px;}
.y37{bottom:230.610000px;}
.yc9{bottom:235.290000px;}
.y127{bottom:243.465000px;}
.y17d{bottom:246.270000px;}
.y88{bottom:246.810000px;}
.y36{bottom:247.890000px;}
.yc8{bottom:249.015000px;}
.yc7{bottom:259.410000px;}
.y17c{bottom:263.550000px;}
.y87{bottom:264.090000px;}
.y35{bottom:265.170000px;}
.y17b{bottom:280.830000px;}
.y86{bottom:281.370000px;}
.y34{bottom:282.450000px;}
.yc6{bottom:282.810000px;}
.y126{bottom:283.890000px;}
.y85{bottom:295.140000px;}
.y17a{bottom:298.110000px;}
.y33{bottom:299.550000px;}
.yc5{bottom:300.090000px;}
.y84{bottom:305.490000px;}
.y177{bottom:311.640000px;}
.y125{bottom:314.715000px;}
.y32{bottom:316.830000px;}
.yc4{bottom:317.370000px;}
.y176{bottom:320.610000px;}
.y124{bottom:325.110000px;}
.y83{bottom:328.890000px;}
.y1e4{bottom:329.970000px;}
.yc3{bottom:331.140000px;}
.y31{bottom:334.110000px;}
.yc2{bottom:341.490000px;}
.y81{bottom:342.615000px;}
.y175{bottom:342.930000px;}
.y1e3{bottom:347.430000px;}
.y123{bottom:348.510000px;}
.y30{bottom:351.390000px;}
.y82{bottom:353.010000px;}
.y174{bottom:360.210000px;}
.yc1{bottom:361.365000px;}
.y11b{bottom:362.040000px;}
.y1e2{bottom:364.710000px;}
.yc0{bottom:365.790000px;}
.y2f{bottom:368.670000px;}
.y7f{bottom:372.840000px;}
.y1cb{bottom:376.230000px;}
.y173{bottom:377.490000px;}
.y122{bottom:378.615000px;}
.y1e1{bottom:381.990000px;}
.y11a{bottom:383.070000px;}
.y80{bottom:383.250000px;}
.ybf{bottom:385.140000px;}
.y3f{bottom:385.590000px;}
.y2e{bottom:385.950000px;}
.y1ca{bottom:393.510000px;}
.y172{bottom:394.770000px;}
.ybe{bottom:395.490000px;}
.y1e0{bottom:399.270000px;}
.y2d{bottom:403.050000px;}
.y7e{bottom:406.695000px;}
.y1c9{bottom:410.835000px;}
.y171{bottom:411.915000px;}
.y119{bottom:412.290000px;}
.ybd{bottom:415.365000px;}
.y1df{bottom:416.595000px;}
.y2c{bottom:420.375000px;}
.y118{bottom:422.715000px;}
.y7d{bottom:423.975000px;}
.ybc{bottom:425.775000px;}
.y1c8{bottom:427.935000px;}
.y170{bottom:429.195000px;}
.y1de{bottom:433.695000px;}
.y7a{bottom:437.640000px;}
.y2b{bottom:437.655000px;}
.y117{bottom:442.515000px;}
.y1c7{bottom:445.215000px;}
.yba{bottom:445.590000px;}
.y16f{bottom:446.475000px;}
.y79{bottom:448.095000px;}
.y1dd{bottom:450.975000px;}
.y116{bottom:452.955000px;}
.y2a{bottom:454.935000px;}
.ybb{bottom:456.015000px;}
.y1c6{bottom:462.495000px;}
.y16e{bottom:463.395000px;}
.y78{bottom:468.090000px;}
.y1dc{bottom:468.255000px;}
.y29{bottom:472.215000px;}
.y112{bottom:472.740000px;}
.yb9{bottom:476.040000px;}
.y77{bottom:478.515000px;}
.y1c5{bottom:479.775000px;}
.y111{bottom:480.315000px;}
.y16d{bottom:481.035000px;}
.y1db{bottom:485.535000px;}
.yb8{bottom:486.435000px;}
.y28{bottom:489.315000px;}
.y110{bottom:490.755000px;}
.y1c4{bottom:497.055000px;}
.y76{bottom:498.315000px;}
.y1da{bottom:502.815000px;}
.yb7{bottom:506.265000px;}
.y27{bottom:506.595000px;}
.y75{bottom:508.755000px;}
.y1c3{bottom:514.335000px;}
.y16c{bottom:515.415000px;}
.yb6{bottom:516.675000px;}
.y10d{bottom:518.865000px;}
.y1d9{bottom:520.095000px;}
.y26{bottom:523.875000px;}
.y74{bottom:528.540000px;}
.y1c2{bottom:531.435000px;}
.y16b{bottom:532.695000px;}
.yb4{bottom:536.490000px;}
.y1d8{bottom:537.195000px;}
.y73{bottom:538.995000px;}
.y10c{bottom:539.895000px;}
.y25{bottom:541.155000px;}
.yb5{bottom:546.915000px;}
.y1c1{bottom:548.715000px;}
.y16a{bottom:549.975000px;}
.y1d7{bottom:554.475000px;}
.y24{bottom:558.435000px;}
.y72{bottom:558.990000px;}
.y1c0{bottom:565.995000px;}
.y169{bottom:567.255000px;}
.y10a{bottom:569.040000px;}
.y71{bottom:569.415000px;}
.yb3{bottom:570.315000px;}
.y1d6{bottom:571.755000px;}
.y23{bottom:575.715000px;}
.y109{bottom:579.495000px;}
.y168{bottom:580.965000px;}
.y1bf{bottom:583.275000px;}
.yb2{bottom:587.595000px;}
.y1d5{bottom:589.035000px;}
.y70{bottom:589.215000px;}
.y22{bottom:592.815000px;}
.y167{bottom:594.465000px;}
.y6e{bottom:595.140000px;}
.y166{bottom:598.935000px;}
.y108{bottom:599.340000px;}
.y6d{bottom:599.655000px;}
.y1be{bottom:600.555000px;}
.yb1{bottom:601.290000px;}
.y1d4{bottom:606.315000px;}
.y21{bottom:610.095000px;}
.yb0{bottom:611.715000px;}
.y107{bottom:614.265000px;}
.y106{bottom:617.295000px;}
.y1bd{bottom:617.835000px;}
.y67{bottom:619.440000px;}
.y1d3{bottom:623.595000px;}
.y6a{bottom:625.440000px;}
.y165{bottom:627.015000px;}
.y20{bottom:627.375000px;}
.y66{bottom:629.895000px;}
.yaf{bottom:631.740000px;}
.y164{bottom:632.940000px;}
.y1bc{bottom:634.575000px;}
.y163{bottom:637.455000px;}
.y1d2{bottom:640.695000px;}
.yae{bottom:642.135000px;}
.y1f{bottom:644.655000px;}
.y100{bottom:645.390000px;}
.y65{bottom:649.890000px;}
.y1bb{bottom:652.245000px;}
.y162{bottom:657.465000px;}
.y1d1{bottom:658.005000px;}
.y64{bottom:660.345000px;}
.y1e{bottom:661.965000px;}
.yff{bottom:666.465000px;}
.y161{bottom:667.905000px;}
.y1ba{bottom:669.525000px;}
.yad{bottom:672.405000px;}
.y1d0{bottom:675.285000px;}
.y1d{bottom:679.245000px;}
.y63{bottom:683.745000px;}
.y1b9{bottom:686.805000px;}
.y160{bottom:687.690000px;}
.yac{bottom:692.190000px;}
.y1cf{bottom:692.565000px;}
.yfe{bottom:695.415000px;}
.y1c{bottom:696.345000px;}
.y60{bottom:697.440000px;}
.y15f{bottom:698.145000px;}
.yab{bottom:702.645000px;}
.y1b8{bottom:704.085000px;}
.yfd{bottom:705.885000px;}
.y5f{bottom:707.865000px;}
.y1ce{bottom:709.845000px;}
.y1b{bottom:713.625000px;}
.y1b7{bottom:717.540000px;}
.y15a{bottom:717.915000px;}
.yaa{bottom:722.640000px;}
.y159{bottom:725.490000px;}
.yf7{bottom:725.865000px;}
.y1b6{bottom:726.585000px;}
.y1cd{bottom:726.945000px;}
.y5c{bottom:727.665000px;}
.y1a{bottom:730.545000px;}
.y3e{bottom:730.905000px;}
.ya9{bottom:733.065000px;}
.y158{bottom:735.945000px;}
.y5b{bottom:738.105000px;}
.yf6{bottom:742.440000px;}
.y1cc{bottom:744.225000px;}
.y19{bottom:747.825000px;}
.y1b5{bottom:748.905000px;}
.ya8{bottom:752.865000px;}
.y5a{bottom:761.505000px;}
.ya7{bottom:763.305000px;}
.y18{bottom:765.465000px;}
.y1b4{bottom:766.185000px;}
.y157{bottom:767.940000px;}
.y156{bottom:778.425000px;}
.y59{bottom:778.785000px;}
.yf1{bottom:781.140000px;}
.y17{bottom:782.565000px;}
.ya6{bottom:783.090000px;}
.y1b3{bottom:783.465000px;}
.ya5{bottom:793.545000px;}
.y58{bottom:796.065000px;}
.y1b1{bottom:797.115000px;}
.yf0{bottom:799.125000px;}
.y16{bottom:799.485000px;}
.y155{bottom:801.825000px;}
.y1b2{bottom:810.615000px;}
.y57{bottom:813.345000px;}
.ya4{bottom:813.540000px;}
.y1b0{bottom:815.145000px;}
.y14d{bottom:815.490000px;}
.y15{bottom:817.125000px;}
.ya3{bottom:819.465000px;}
.ya2{bottom:823.965000px;}
.y56{bottom:830.445000px;}
.yef{bottom:830.805000px;}
.y14{bottom:834.405000px;}
.y1af{bottom:843.240000px;}
.y9e{bottom:843.765000px;}
.yed{bottom:844.440000px;}
.y55{bottom:847.725000px;}
.yec{bottom:848.985000px;}
.ya0{bottom:849.690000px;}
.y13{bottom:851.685000px;}
.y1ae{bottom:852.225000px;}
.y9f{bottom:854.205000px;}
.yea{bottom:863.340000px;}
.y54{bottom:865.005000px;}
.ye9{bottom:866.445000px;}
.y12{bottom:868.965000px;}
.y14c{bottom:869.145000px;}
.y1aa{bottom:870.915000px;}
.y9d{bottom:873.990000px;}
.y1ab{bottom:879.915000px;}
.y53{bottom:882.285000px;}
.yda{bottom:882.840000px;}
.y9c{bottom:884.445000px;}
.y11{bottom:886.065000px;}
.y1a9{bottom:888.945000px;}
.y52{bottom:899.610000px;}
.y14a{bottom:900.870000px;}
.y10{bottom:903.390000px;}
.y9b{bottom:904.440000px;}
.y9a{bottom:914.910000px;}
.y51{bottom:916.890000px;}
.y1a6{bottom:917.040000px;}
.yf{bottom:920.670000px;}
.y1a5{bottom:926.070000px;}
.ye8{bottom:927.870000px;}
.y149{bottom:928.890000px;}
.y148{bottom:933.450000px;}
.y50{bottom:933.990000px;}
.y99{bottom:934.665000px;}
.ye{bottom:937.950000px;}
.y97{bottom:940.590000px;}
.y1a4{bottom:944.715000px;}
.y96{bottom:945.150000px;}
.y1a3{bottom:946.140000px;}
.y146{bottom:948.690000px;}
.y4f{bottom:951.270000px;}
.yd{bottom:955.230000px;}
.y147{bottom:956.040000px;}
.y145{bottom:959.190000px;}
.y4e{bottom:968.550000px;}
.yc{bottom:972.510000px;}
.y1a2{bottom:974.940000px;}
.y143{bottom:978.915000px;}
.y1a1{bottom:979.440000px;}
.y1a0{bottom:984.030000px;}
.yd9{bottom:985.290000px;}
.y4d{bottom:985.830000px;}
.y144{bottom:986.340000px;}
.yb{bottom:989.250000px;}
.y142{bottom:989.430000px;}
.yd8{bottom:998.940000px;}
.y4c{bottom:1003.110000px;}
.y199{bottom:1003.215000px;}
.ya{bottom:1006.890000px;}
.y140{bottom:1009.365000px;}
.yd7{bottom:1009.410000px;}
.y141{bottom:1016.715000px;}
.y13f{bottom:1019.850000px;}
.y95{bottom:1020.030000px;}
.y4b{bottom:1020.390000px;}
.y9{bottom:1024.170000px;}
.y19f{bottom:1027.230000px;}
.yd6{bottom:1029.315000px;}
.y94{bottom:1037.130000px;}
.y4a{bottom:1037.490000px;}
.y13d{bottom:1039.590000px;}
.yd5{bottom:1039.830000px;}
.y8{bottom:1041.450000px;}
.y13e{bottom:1046.940000px;}
.y13c{bottom:1050.090000px;}
.y49{bottom:1054.770000px;}
.y7{bottom:1058.730000px;}
.y198{bottom:1059.450000px;}
.yd4{bottom:1059.540000px;}
.yd3{bottom:1070.070000px;}
.y13a{bottom:1070.340000px;}
.y48{bottom:1071.690000px;}
.y93{bottom:1072.050000px;}
.y191{bottom:1073.040000px;}
.y139{bottom:1073.490000px;}
.y6{bottom:1075.650000px;}
.y47{bottom:1088.970000px;}
.y92{bottom:1089.330000px;}
.yd2{bottom:1089.840000px;}
.y197{bottom:1097.070000px;}
.yd1{bottom:1100.310000px;}
.y46{bottom:1106.610000px;}
.y5{bottom:1110.030000px;}
.y138{bottom:1123.350000px;}
.y45{bottom:1123.710000px;}
.y18e{bottom:1125.840000px;}
.y4{bottom:1127.310000px;}
.y44{bottom:1141.020000px;}
.y190{bottom:1143.900000px;}
.y3{bottom:1144.620000px;}
.y43{bottom:1158.300000px;}
.y2{bottom:1164.780000px;}
.y42{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h27{height:17.100188px;}
.h15{height:19.798998px;}
.h25{height:19.800228px;}
.h12{height:23.699351px;}
.h1c{height:23.774951px;}
.h58{height:27.674437px;}
.h46{height:27.748956px;}
.h9{height:30.224598px;}
.h17{height:30.299117px;}
.hf{height:30.300197px;}
.h13{height:39.558385px;}
.h1d{height:39.684574px;}
.h5d{height:40.017295px;}
.h49{height:40.037214px;}
.h56{height:40.082053px;}
.h72{height:40.102004px;}
.h4b{height:40.439199px;}
.h30{height:40.886138px;}
.h6a{height:41.034716px;}
.h22{height:41.035142px;}
.h68{height:41.055142px;}
.h62{height:41.093555px;}
.h60{height:41.114010px;}
.hb{height:41.143323px;}
.h4f{height:41.149865px;}
.h37{height:41.225712px;}
.h55{height:41.264081px;}
.h44{height:41.295864px;}
.h5a{height:41.564991px;}
.h70{height:41.585681px;}
.h53{height:41.676913px;}
.h6f{height:41.697658px;}
.h29{height:46.050313px;}
.h39{height:46.124834px;}
.h34{height:50.023508px;}
.h4d{height:50.025139px;}
.h3e{height:50.099107px;}
.h66{height:52.725829px;}
.h5e{height:52.801430px;}
.h7{height:52.998047px;}
.h8{height:53.573906px;}
.h2e{height:55.273467px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h75{height:61.423863px;}
.h2d{height:65.386918px;}
.h3d{height:65.492729px;}
.h36{height:66.006991px;}
.h40{height:66.106745px;}
.h33{height:66.626048px;}
.h24{height:67.003119px;}
.h65{height:67.058467px;}
.h52{height:67.177994px;}
.h41{height:67.251411px;}
.h45{height:67.388606px;}
.h16{height:68.041246px;}
.h5c{height:68.137229px;}
.h14{height:68.495485px;}
.h57{height:68.679795px;}
.h1e{height:68.713981px;}
.h2b{height:69.247400px;}
.h2a{height:69.281868px;}
.h3c{height:69.359459px;}
.h3b{height:69.393983px;}
.h4c{height:69.904083px;}
.h35{height:69.938879px;}
.h3f{height:70.044574px;}
.h32{height:70.559690px;}
.h31{height:70.594811px;}
.h6b{height:70.915955px;}
.h26{height:70.930817px;}
.h69{height:70.951254px;}
.h23{height:70.959023px;}
.h21{height:70.994343px;}
.h63{height:71.017639px;}
.h61{height:71.052988px;}
.h48{height:71.074320px;}
.h42{height:71.102070px;}
.h51{height:71.144222px;}
.h50{height:71.179635px;}
.he{height:71.221974px;}
.hd{height:71.257426px;}
.h19{height:71.397573px;}
.h38{height:71.400118px;}
.h43{height:71.402793px;}
.h1a{height:71.433112px;}
.h11{height:71.435658px;}
.h28{height:71.436798px;}
.h5b{height:71.728676px;}
.h59{height:71.764380px;}
.h71{height:71.875253px;}
.h73{height:71.921819px;}
.h47{height:71.957619px;}
.h54{height:72.068790px;}
.h3{height:81.949219px;}
.h6c{height:85.578882px;}
.h64{height:85.701591px;}
.h2c{height:85.756369px;}
.h3a{height:85.895143px;}
.h4a{height:86.396892px;}
.h6e{height:87.041545px;}
.h2f{height:87.324982px;}
.h20{height:87.717845px;}
.h67{height:87.754872px;}
.h5f{height:87.880701px;}
.h4e{height:87.893285px;}
.ha{height:88.067582px;}
.h1b{height:88.203104px;}
.h18{height:88.284715px;}
.h10{height:88.287861px;}
.h74{height:90.850559px;}
.h6d{height:91.095190px;}
.hc{height:91.135799px;}
.h1f{height:98.778980px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:11.850034px;}
.w20{width:14.399973px;}
.w1f{width:18.524748px;}
.w32{width:19.799715px;}
.w33{width:35.625757px;}
.w3a{width:35.701359px;}
.w2a{width:39.449753px;}
.w15{width:40.874651px;}
.w2c{width:42.149602px;}
.w1d{width:43.501311px;}
.w5{width:43.575833px;}
.w21{width:44.774974px;}
.w25{width:44.850575px;}
.w10{width:48.749041px;}
.w1a{width:50.024830px;}
.w9{width:50.025057px;}
.w4{width:51.300551px;}
.w35{width:51.448621px;}
.w12{width:54.000110px;}
.w29{width:57.900502px;}
.w3b{width:57.975443px;}
.w18{width:60.675326px;}
.w3e{width:63.148805px;}
.w24{width:64.426723px;}
.w19{width:65.851382px;}
.w27{width:65.926983px;}
.wb{width:67.350943px;}
.w1b{width:69.825503px;}
.wf{width:69.900023px;}
.w7{width:75.075401px;}
.we{width:76.501826px;}
.wd{width:77.775633px;}
.w17{width:80.324160px;}
.w36{width:81.674782px;}
.w14{width:81.674958px;}
.w3c{width:81.749302px;}
.w8{width:81.749478px;}
.wa{width:88.197388px;}
.wc{width:89.624044px;}
.w39{width:90.899558px;}
.w30{width:93.604439px;}
.w2f{width:100.050464px;}
.w11{width:104.024151px;}
.w1c{width:104.099750px;}
.w28{width:106.573868px;}
.w3{width:111.974498px;}
.w6{width:115.949936px;}
.w22{width:119.923143px;}
.w31{width:126.597997px;}
.w13{width:131.770302px;}
.w2d{width:139.655128px;}
.w26{width:148.878110px;}
.w23{width:160.724279px;}
.w1e{width:205.357887px;}
.w2b{width:205.574008px;}
.w34{width:234.601324px;}
.w38{width:256.652841px;}
.w37{width:283.192480px;}
.w16{width:318.905039px;}
.w2e{width:329.245529px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.624564px;}
.x82{left:3.442411px;}
.x16{left:6.153549px;}
.x69{left:7.734030px;}
.x9c{left:9.562691px;}
.xd9{left:11.001529px;}
.x3f{left:12.188715px;}
.xb1{left:15.573141px;}
.xf{left:17.283040px;}
.x14{left:18.592215px;}
.x63{left:19.599308px;}
.x1f{left:20.867935px;}
.x19{left:21.972520px;}
.xc3{left:23.128509px;}
.x37{left:24.390765px;}
.x9f{left:26.224600px;}
.x23{left:28.639183px;}
.xaf{left:29.722009px;}
.x85{left:30.986278px;}
.x2e{left:34.002747px;}
.xa0{left:35.481922px;}
.xc6{left:36.684710px;}
.x21{left:39.427680px;}
.xb3{left:40.692075px;}
.x91{left:42.283875px;}
.x80{left:44.821787px;}
.x24{left:45.945363px;}
.x8f{left:49.513039px;}
.xc4{left:50.817590px;}
.xb2{left:53.251542px;}
.xa1{left:55.536467px;}
.x7f{left:58.909926px;}
.xcd{left:61.088919px;}
.xc2{left:62.106238px;}
.x44{left:67.827087px;}
.x10{left:68.912554px;}
.x89{left:72.385023px;}
.xce{left:74.012149px;}
.x99{left:78.975290px;}
.xd0{left:80.458368px;}
.x1a{left:81.799767px;}
.xd2{left:87.361023px;}
.x88{left:89.255882px;}
.x7d{left:91.905750px;}
.x8e{left:92.933495px;}
.x7c{left:99.135070px;}
.x1{left:106.415987px;}
.xb0{left:108.151557px;}
.x7e{left:118.821414px;}
.x8d{left:122.664281px;}
.x12{left:128.640000px;}
.x1c{left:130.215000px;}
.x4{left:132.515987px;}
.x39{left:136.115987px;}
.x9d{left:138.165000px;}
.xb{left:141.695987px;}
.x9b{left:144.465000px;}
.xe3{left:148.590000px;}
.x84{left:155.940000px;}
.x31{left:158.340000px;}
.x2d{left:160.290000px;}
.xd1{left:162.787480px;}
.x9e{left:165.987172px;}
.xe0{left:167.340000px;}
.x7b{left:170.190000px;}
.xd4{left:172.365000px;}
.xdb{left:175.215000px;}
.x17{left:176.969987px;}
.x77{left:178.290000px;}
.x15{left:179.849987px;}
.x28{left:182.415000px;}
.x86{left:187.409987px;}
.x92{left:192.989987px;}
.x87{left:195.015000px;}
.xd6{left:196.589987px;}
.x93{left:202.590000px;}
.x8b{left:203.789987px;}
.x1d{left:205.229987px;}
.x97{left:206.340000px;}
.x76{left:210.989987px;}
.xcc{left:212.081160px;}
.x18{left:216.240000px;}
.xe1{left:218.729987px;}
.x78{left:221.789987px;}
.xd5{left:223.769987px;}
.x29{left:225.929987px;}
.x2f{left:227.549987px;}
.x22{left:230.490000px;}
.xdc{left:233.129987px;}
.x36{left:234.240000px;}
.xa3{left:237.315000px;}
.x8c{left:242.940000px;}
.x3a{left:245.369987px;}
.x32{left:247.889987px;}
.xe{left:252.090000px;}
.x1e{left:255.690000px;}
.x2a{left:258.149987px;}
.x83{left:264.269987px;}
.x2b{left:265.590000px;}
.x2{left:268.949987px;}
.xd7{left:270.240000px;}
.x98{left:272.189987px;}
.x96{left:282.269987px;}
.xd8{left:286.815000px;}
.xde{left:300.840000px;}
.x38{left:304.094987px;}
.xda{left:305.354987px;}
.x30{left:306.434987px;}
.x94{left:308.415000px;}
.x5{left:310.214987px;}
.x8a{left:314.894987px;}
.x25{left:318.674987px;}
.x26{left:322.290000px;}
.x33{left:329.474987px;}
.x1b{left:332.174987px;}
.x34{left:333.240000px;}
.x20{left:337.394987px;}
.x2c{left:340.634987px;}
.xa2{left:343.694987px;}
.x3c{left:350.190000px;}
.x95{left:353.234987px;}
.x9a{left:354.315000px;}
.x11{left:364.034987px;}
.x3b{left:373.214987px;}
.x81{left:375.554987px;}
.xdf{left:381.134987px;}
.xe2{left:382.590000px;}
.x79{left:384.915000px;}
.x74{left:388.740000px;}
.x3d{left:393.734987px;}
.x27{left:397.334987px;}
.xdd{left:399.674987px;}
.xcb{left:401.294987px;}
.x90{left:403.634987px;}
.x7{left:405.434987px;}
.x35{left:409.754987px;}
.xd3{left:412.454987px;}
.xcf{left:425.594987px;}
.x7a{left:428.474987px;}
.x75{left:432.254987px;}
.xc{left:457.274987px;}
.x3{left:461.414987px;}
.x5a{left:462.540000px;}
.x4e{left:464.865000px;}
.xa8{left:470.940000px;}
.x65{left:473.490000px;}
.xc1{left:482.640000px;}
.x6f{left:484.290000px;}
.xb4{left:487.004987px;}
.xd{left:492.584987px;}
.xba{left:496.890000px;}
.xa5{left:506.790000px;}
.xc8{left:509.865000px;}
.x6a{left:513.644987px;}
.x58{left:516.164987px;}
.xa6{left:521.204987px;}
.xc9{left:524.264987px;}
.x70{left:527.864987px;}
.x5c{left:529.815000px;}
.x3e{left:531.465000px;}
.x62{left:535.064987px;}
.x9{left:537.944987px;}
.x66{left:539.384987px;}
.x45{left:540.615000px;}
.xbf{left:543.165000px;}
.xa9{left:546.044987px;}
.xc7{left:551.984987px;}
.x67{left:553.590000px;}
.x8{left:554.684987px;}
.x60{left:558.615000px;}
.x49{left:562.065000px;}
.xbd{left:563.490000px;}
.xa4{left:570.315000px;}
.xca{left:573.390000px;}
.x43{left:575.340000px;}
.x46{left:584.204987px;}
.x71{left:587.640000px;}
.xbb{left:590.504987px;}
.xbc{left:597.840000px;}
.xb9{left:600.240000px;}
.x4b{left:605.265000px;}
.x5d{left:610.124987px;}
.x5e{left:613.890000px;}
.x6d{left:616.065000px;}
.x61{left:619.304987px;}
.x68{left:623.444987px;}
.xb5{left:629.190000px;}
.x47{left:633.840000px;}
.x40{left:635.504987px;}
.x55{left:639.615000px;}
.x4a{left:643.784987px;}
.xaa{left:653.340000px;}
.x4c{left:655.304987px;}
.x6b{left:659.040000px;}
.x51{left:662.640000px;}
.xab{left:667.769987px;}
.x6e{left:670.109987px;}
.xb6{left:672.809987px;}
.x4f{left:678.569987px;}
.x56{left:683.249987px;}
.xb7{left:689.340000px;}
.x5f{left:691.709987px;}
.x72{left:696.315000px;}
.x4d{left:698.490000px;}
.x52{left:706.289987px;}
.x41{left:707.490000px;}
.x50{left:711.615000px;}
.x53{left:715.740000px;}
.x6{left:717.989987px;}
.x59{left:720.149987px;}
.xac{left:722.415000px;}
.x57{left:732.690000px;}
.xad{left:736.889987px;}
.xbe{left:739.769987px;}
.xae{left:744.540000px;}
.x48{left:749.849987px;}
.xc0{left:751.649987px;}
.xb8{left:755.249987px;}
.x64{left:757.949987px;}
.x42{left:761.549987px;}
.x6c{left:763.169987px;}
.xa7{left:768.315000px;}
.x73{left:771.449987px;}
.xc5{left:772.529987px;}
.x5b{left:781.529987px;}
.x54{left:783.149987px;}
.xa{left:786.749987px;}
@media print{
.v4{vertical-align:-89.931719pt;}
.v5{vertical-align:-82.200507pt;}
.v1{vertical-align:-61.440000pt;}
.vc{vertical-align:-58.304053pt;}
.v6{vertical-align:-50.120175pt;}
.vb{vertical-align:-49.018993pt;}
.vf{vertical-align:-41.373581pt;}
.ve{vertical-align:-39.928997pt;}
.v7{vertical-align:-35.304467pt;}
.v13{vertical-align:-33.615894pt;}
.v10{vertical-align:-30.578631pt;}
.v2{vertical-align:-28.880567pt;}
.v3{vertical-align:-27.755501pt;}
.v11{vertical-align:-23.157764pt;}
.va{vertical-align:-17.518485pt;}
.v9{vertical-align:-10.951676pt;}
.vd{vertical-align:-8.759819pt;}
.v8{vertical-align:-4.510748pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:16.571666pt;}
.ls73{letter-spacing:-6.554662pt;}
.ls71{letter-spacing:-6.153846pt;}
.ls74{letter-spacing:-6.138493pt;}
.ls5c{letter-spacing:-1.034404pt;}
.ls60{letter-spacing:-0.727282pt;}
.ls4b{letter-spacing:-0.480000pt;}
.ls64{letter-spacing:-0.407752pt;}
.ls5f{letter-spacing:-0.407137pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls37{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.160000pt;}
.ls6c{letter-spacing:0.230933pt;}
.ls92{letter-spacing:0.257426pt;}
.ls88{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls99{letter-spacing:0.643566pt;}
.ls6b{letter-spacing:0.800000pt;}
.ls38{letter-spacing:1.028314pt;}
.ls89{letter-spacing:1.872640pt;}
.ls11{letter-spacing:7.840291pt;}
.ls8{letter-spacing:7.859901pt;}
.ls9{letter-spacing:7.968783pt;}
.ls7{letter-spacing:8.096755pt;}
.ls40{letter-spacing:10.599324pt;}
.ls42{letter-spacing:10.615343pt;}
.ls44{letter-spacing:11.816663pt;}
.ls1d{letter-spacing:11.906076pt;}
.ls46{letter-spacing:12.026172pt;}
.ls3d{letter-spacing:12.138955pt;}
.ls6{letter-spacing:12.952305pt;}
.ls43{letter-spacing:12.976682pt;}
.ls27{letter-spacing:13.506690pt;}
.ls3a{letter-spacing:13.762023pt;}
.ls84{letter-spacing:14.556622pt;}
.ls56{letter-spacing:14.940037pt;}
.ls3c{letter-spacing:15.215707pt;}
.ls3f{letter-spacing:16.244793pt;}
.ls4a{letter-spacing:23.825674pt;}
.ls4e{letter-spacing:23.885268pt;}
.ls87{letter-spacing:28.112640pt;}
.ls80{letter-spacing:31.062099pt;}
.ls7e{letter-spacing:31.151255pt;}
.ls2d{letter-spacing:31.576822pt;}
.ls20{letter-spacing:31.655803pt;}
.ls85{letter-spacing:32.244712pt;}
.ls82{letter-spacing:32.845402pt;}
.ls7d{letter-spacing:35.085835pt;}
.ls81{letter-spacing:35.520870pt;}
.ls5{letter-spacing:38.668166pt;}
.ls10{letter-spacing:38.791515pt;}
.ls13{letter-spacing:46.470116pt;}
.lsa{letter-spacing:46.842306pt;}
.ls14{letter-spacing:47.108935pt;}
.lsb{letter-spacing:47.225083pt;}
.ls12{letter-spacing:48.389695pt;}
.ls50{letter-spacing:49.513322pt;}
.ls55{letter-spacing:50.200614pt;}
.ls17{letter-spacing:51.865060pt;}
.ls22{letter-spacing:51.992934pt;}
.ls70{letter-spacing:51.994787pt;}
.ls33{letter-spacing:52.645377pt;}
.ls1c{letter-spacing:52.665225pt;}
.ls2c{letter-spacing:52.833224pt;}
.lsf{letter-spacing:58.203573pt;}
.ls4{letter-spacing:59.228390pt;}
.lse{letter-spacing:59.374947pt;}
.ls68{letter-spacing:60.436892pt;}
.ls6a{letter-spacing:62.806340pt;}
.ls48{letter-spacing:63.733218pt;}
.ls32{letter-spacing:64.454172pt;}
.ls77{letter-spacing:64.493682pt;}
.ls25{letter-spacing:64.613084pt;}
.ls59{letter-spacing:66.420230pt;}
.ls61{letter-spacing:66.501802pt;}
.ls1f{letter-spacing:66.587038pt;}
.ls4d{letter-spacing:66.751209pt;}
.ls1b{letter-spacing:66.753588pt;}
.ls30{letter-spacing:67.263312pt;}
.ls62{letter-spacing:67.391283pt;}
.ls29{letter-spacing:68.095650pt;}
.ls83{letter-spacing:68.264176pt;}
.ls72{letter-spacing:68.530999pt;}
.ls2b{letter-spacing:79.384234pt;}
.ls16{letter-spacing:81.465079pt;}
.ls31{letter-spacing:81.569121pt;}
.ls34{letter-spacing:81.673163pt;}
.ls8c{letter-spacing:82.213357pt;}
.ls8f{letter-spacing:82.303473pt;}
.ls24{letter-spacing:82.656771pt;}
.ls2f{letter-spacing:84.274219pt;}
.ls96{letter-spacing:85.907653pt;}
.ls75{letter-spacing:86.042938pt;}
.ls78{letter-spacing:86.492058pt;}
.ls36{letter-spacing:86.667191pt;}
.ls93{letter-spacing:86.724954pt;}
.ls28{letter-spacing:87.707614pt;}
.ls58{letter-spacing:88.074475pt;}
.ls98{letter-spacing:88.723426pt;}
.ls54{letter-spacing:89.117843pt;}
.ls7a{letter-spacing:89.360960pt;}
.ls95{letter-spacing:89.601580pt;}
.ls7b{letter-spacing:94.380811pt;}
.ls49{letter-spacing:94.533541pt;}
.ls53{letter-spacing:98.449689pt;}
.lsc{letter-spacing:103.576662pt;}
.ls15{letter-spacing:105.501605pt;}
.ls18{letter-spacing:111.845415pt;}
.ls2a{letter-spacing:112.941336pt;}
.ls97{letter-spacing:113.640364pt;}
.ls26{letter-spacing:115.145836pt;}
.lsd{letter-spacing:117.540333pt;}
.ls8b{letter-spacing:117.635629pt;}
.ls8e{letter-spacing:117.888405pt;}
.ls9b{letter-spacing:121.137927pt;}
.ls23{letter-spacing:121.455911pt;}
.ls79{letter-spacing:121.928301pt;}
.ls94{letter-spacing:122.256615pt;}
.ls39{letter-spacing:123.940941pt;}
.ls51{letter-spacing:125.356822pt;}
.ls91{letter-spacing:127.210805pt;}
.ls7c{letter-spacing:130.264678pt;}
.ls8a{letter-spacing:131.162411pt;}
.ls8d{letter-spacing:131.632286pt;}
.ls9a{letter-spacing:134.935079pt;}
.ls67{letter-spacing:138.671151pt;}
.ls90{letter-spacing:140.954686pt;}
.ls66{letter-spacing:147.463898pt;}
.ls2e{letter-spacing:148.572328pt;}
.ls4c{letter-spacing:148.938635pt;}
.ls21{letter-spacing:148.943944pt;}
.ls1e{letter-spacing:149.456687pt;}
.ls1a{letter-spacing:149.830515pt;}
.ls3e{letter-spacing:151.778066pt;}
.ls5b{letter-spacing:151.797449pt;}
.ls76{letter-spacing:159.444742pt;}
.ls5e{letter-spacing:160.205163pt;}
.ls63{letter-spacing:160.447275pt;}
.ls7f{letter-spacing:181.218664pt;}
.ls4f{letter-spacing:194.067047pt;}
.ls41{letter-spacing:194.115359pt;}
.ls69{letter-spacing:199.659169pt;}
.ls6f{letter-spacing:205.097259pt;}
.ls45{letter-spacing:223.740976pt;}
.ls3b{letter-spacing:240.396904pt;}
.ls47{letter-spacing:243.134702pt;}
.ls52{letter-spacing:243.947523pt;}
.ls5d{letter-spacing:254.863115pt;}
.ls5a{letter-spacing:264.223424pt;}
.ls65{letter-spacing:312.672194pt;}
.ls86{letter-spacing:366.240000pt;}
.ls57{letter-spacing:448.232447pt;}
.ls6e{letter-spacing:515.316417pt;}
.ls6d{letter-spacing:528.666847pt;}
.ws60{word-spacing:-199.724341pt;}
.wsc{word-spacing:-149.895214pt;}
.ws14{word-spacing:-149.521224pt;}
.ws18{word-spacing:-149.008643pt;}
.ws46{word-spacing:-149.003332pt;}
.ws30{word-spacing:-148.636865pt;}
.ws94{word-spacing:-122.321787pt;}
.ws81{word-spacing:-121.993298pt;}
.ws1c{word-spacing:-121.520608pt;}
.ws21{word-spacing:-115.210532pt;}
.ws96{word-spacing:-113.705494pt;}
.ws26{word-spacing:-113.003570pt;}
.ws23{word-spacing:-87.772151pt;}
.ws8f{word-spacing:-87.759385pt;}
.ws5f{word-spacing:-86.964784pt;}
.ws41{word-spacing:-86.731728pt;}
.ws78{word-spacing:-86.107475pt;}
.ws95{word-spacing:-85.972782pt;}
.ws38{word-spacing:-84.338757pt;}
.ws91{word-spacing:-84.288286pt;}
.ws1f{word-spacing:-82.721467pt;}
.ws3e{word-spacing:-81.737701pt;}
.ws3a{word-spacing:-81.633658pt;}
.ws2b{word-spacing:-79.448771pt;}
.wsd{word-spacing:-66.818287pt;}
.ws47{word-spacing:-66.815906pt;}
.ws15{word-spacing:-66.651575pt;}
.ws80{word-spacing:-64.555916pt;}
.ws70{word-spacing:-37.869513pt;}
.ws58{word-spacing:-36.684696pt;}
.ws59{word-spacing:-34.420222pt;}
.ws56{word-spacing:-34.368283pt;}
.ws36{word-spacing:-22.007255pt;}
.ws1d{word-spacing:-21.673335pt;}
.ws5e{word-spacing:-21.146784pt;}
.ws1{word-spacing:-13.600000pt;}
.ws62{word-spacing:-13.510933pt;}
.ws40{word-spacing:-13.374933pt;}
.ws29{word-spacing:-13.280000pt;}
.ws42{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws20{word-spacing:-9.661124pt;}
.ws33{word-spacing:-9.623521pt;}
.ws3d{word-spacing:-7.927917pt;}
.ws32{word-spacing:-7.588796pt;}
.ws5c{word-spacing:-6.195591pt;}
.ws73{word-spacing:-3.807707pt;}
.ws12{word-spacing:-3.291408pt;}
.ws61{word-spacing:-0.065172pt;}
.ws17{word-spacing:-0.064699pt;}
.ws4{word-spacing:-0.064537pt;}
.wsf{word-spacing:-0.061625pt;}
.ws93{word-spacing:-0.037765pt;}
.ws2{word-spacing:0.000000pt;}
.ws77{word-spacing:5.533100pt;}
.ws75{word-spacing:6.073955pt;}
.ws6d{word-spacing:6.089148pt;}
.ws72{word-spacing:6.490124pt;}
.ws67{word-spacing:7.137796pt;}
.ws22{word-spacing:7.228704pt;}
.ws2a{word-spacing:7.401725pt;}
.ws8{word-spacing:7.913867pt;}
.ws53{word-spacing:7.933661pt;}
.ws49{word-spacing:8.032255pt;}
.ws13{word-spacing:8.086887pt;}
.ws45{word-spacing:8.106826pt;}
.wsb{word-spacing:8.107115pt;}
.ws50{word-spacing:8.254350pt;}
.ws3{word-spacing:8.426008pt;}
.ws24{word-spacing:9.508605pt;}
.ws57{word-spacing:9.548033pt;}
.ws4d{word-spacing:9.866192pt;}
.ws6f{word-spacing:10.157072pt;}
.ws7{word-spacing:10.640674pt;}
.ws1a{word-spacing:10.666909pt;}
.ws6b{word-spacing:10.667289pt;}
.ws27{word-spacing:11.388790pt;}
.ws76{word-spacing:14.327304pt;}
.ws6e{word-spacing:14.363140pt;}
.ws6a{word-spacing:15.899145pt;}
.ws52{word-spacing:19.744876pt;}
.ws66{word-spacing:22.463840pt;}
.ws4f{word-spacing:24.521699pt;}
.ws68{word-spacing:26.287430pt;}
.ws7a{word-spacing:29.256380pt;}
.ws8c{word-spacing:30.245556pt;}
.ws3c{word-spacing:41.497552pt;}
.ws11{word-spacing:42.530150pt;}
.ws2d{word-spacing:44.466272pt;}
.ws39{word-spacing:46.753574pt;}
.ws1e{word-spacing:46.868845pt;}
.ws69{word-spacing:48.140836pt;}
.ws2c{word-spacing:49.048428pt;}
.ws31{word-spacing:49.141261pt;}
.ws55{word-spacing:49.688701pt;}
.ws79{word-spacing:49.693802pt;}
.ws5{word-spacing:49.951952pt;}
.ws4a{word-spacing:51.142107pt;}
.ws37{word-spacing:52.034168pt;}
.ws1b{word-spacing:52.682802pt;}
.ws25{word-spacing:57.379585pt;}
.wse{word-spacing:60.547070pt;}
.ws2e{word-spacing:60.740212pt;}
.ws4c{word-spacing:60.955578pt;}
.ws54{word-spacing:61.334490pt;}
.ws4b{word-spacing:61.687589pt;}
.ws19{word-spacing:63.619640pt;}
.wsa{word-spacing:66.344453pt;}
.ws43{word-spacing:66.349908pt;}
.ws89{word-spacing:68.663848pt;}
.ws5d{word-spacing:69.131229pt;}
.ws4e{word-spacing:72.517289pt;}
.ws34{word-spacing:76.218676pt;}
.ws83{word-spacing:81.133365pt;}
.ws7c{word-spacing:81.264658pt;}
.ws44{word-spacing:85.084600pt;}
.ws48{word-spacing:85.297418pt;}
.ws8e{word-spacing:88.100607pt;}
.ws5a{word-spacing:96.688890pt;}
.ws8b{word-spacing:101.161734pt;}
.ws85{word-spacing:102.028501pt;}
.ws7e{word-spacing:102.193607pt;}
.ws3f{word-spacing:102.630292pt;}
.ws2f{word-spacing:102.805389pt;}
.ws16{word-spacing:103.062531pt;}
.ws86{word-spacing:105.918886pt;}
.ws7f{word-spacing:106.090288pt;}
.ws65{word-spacing:108.679805pt;}
.ws63{word-spacing:110.288927pt;}
.ws87{word-spacing:110.532331pt;}
.ws9{word-spacing:110.875262pt;}
.ws64{word-spacing:116.523325pt;}
.ws28{word-spacing:123.074429pt;}
.ws6{word-spacing:129.265991pt;}
.ws92{word-spacing:132.247301pt;}
.ws84{word-spacing:143.379535pt;}
.ws7d{word-spacing:143.611557pt;}
.ws82{word-spacing:149.277862pt;}
.ws7b{word-spacing:149.519429pt;}
.ws88{word-spacing:153.480111pt;}
.ws8a{word-spacing:155.539383pt;}
.ws8d{word-spacing:159.782207pt;}
.ws3b{word-spacing:162.087157pt;}
.ws10{word-spacing:166.345544pt;}
.ws51{word-spacing:166.784547pt;}
.ws90{word-spacing:170.610585pt;}
.ws71{word-spacing:184.914136pt;}
.ws74{word-spacing:188.326798pt;}
.ws6c{word-spacing:188.797850pt;}
.ws5b{word-spacing:230.741807pt;}
.ws35{word-spacing:247.242800pt;}
._4d{margin-left:-1076.990591pt;}
._50{margin-left:-803.420707pt;}
._3b{margin-left:-515.908044pt;}
._8c{margin-left:-497.468636pt;}
._2d{margin-left:-406.964391pt;}
._22{margin-left:-383.323512pt;}
._29{margin-left:-382.367116pt;}
._42{margin-left:-380.598397pt;}
._1f{margin-left:-374.774612pt;}
._71{margin-left:-372.959546pt;}
._30{margin-left:-352.370246pt;}
._38{margin-left:-339.075337pt;}
._54{margin-left:-331.940544pt;}
._2f{margin-left:-330.134793pt;}
._18{margin-left:-328.584141pt;}
._55{margin-left:-327.554123pt;}
._7b{margin-left:-320.258875pt;}
._31{margin-left:-305.257869pt;}
._59{margin-left:-303.177025pt;}
._58{margin-left:-286.534427pt;}
._27{margin-left:-271.175479pt;}
._67{margin-left:-255.092789pt;}
._96{margin-left:-236.143508pt;}
._25{margin-left:-232.990047pt;}
._9f{margin-left:-227.073417pt;}
._1b{margin-left:-222.708338pt;}
._3e{margin-left:-220.177042pt;}
._39{margin-left:-217.262993pt;}
._2b{margin-left:-189.029773pt;}
._8a{margin-left:-184.348294pt;}
._95{margin-left:-162.116241pt;}
._57{margin-left:-154.641941pt;}
._26{margin-left:-148.967128pt;}
._43{margin-left:-134.073000pt;}
._1c{margin-left:-122.566281pt;}
._3a{margin-left:-120.534786pt;}
._6a{margin-left:-118.920045pt;}
._78{margin-left:-114.214563pt;}
._6b{margin-left:-111.554755pt;}
._21{margin-left:-109.379156pt;}
._44{margin-left:-91.431286pt;}
._72{margin-left:-83.466376pt;}
._8e{margin-left:-79.170781pt;}
._88{margin-left:-71.392441pt;}
._9e{margin-left:-59.009992pt;}
._34{margin-left:-51.955993pt;}
._5e{margin-left:-49.685895pt;}
._23{margin-left:-27.582437pt;}
._2a{margin-left:-6.534582pt;}
._8{margin-left:-3.027840pt;}
._4{margin-left:-1.912320pt;}
._5{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._6{width:3.434240pt;}
._9{width:5.086507pt;}
._a{width:6.267093pt;}
._b{width:7.454933pt;}
._7{width:8.392960pt;}
._f{width:9.614720pt;}
._e{width:10.570880pt;}
._d{width:11.952000pt;}
._33{width:15.033600pt;}
._c{width:16.201600pt;}
._16{width:17.582720pt;}
._14{width:18.698240pt;}
._5c{width:20.504320pt;}
._5b{width:21.672960pt;}
._35{width:22.576000pt;}
._36{width:23.638400pt;}
._13{width:24.966400pt;}
._12{width:26.347520pt;}
._70{width:27.781760pt;}
._89{width:29.587840pt;}
._10{width:32.403200pt;}
._11{width:33.465600pt;}
._3f{width:37.184000pt;}
._5a{width:38.193280pt;}
._56{width:39.096320pt;}
._8f{width:40.955520pt;}
._6f{width:43.256814pt;}
._32{width:44.355200pt;}
._a0{width:46.105387pt;}
._8b{width:48.661204pt;}
._2c{width:50.782720pt;}
._48{width:52.242458pt;}
._28{width:54.146883pt;}
._68{width:56.200960pt;}
._76{width:58.273280pt;}
._17{width:59.547520pt;}
._24{width:61.034880pt;}
._52{width:62.859433pt;}
._77{width:66.187520pt;}
._41{width:67.090560pt;}
._2e{width:68.772404pt;}
._5d{width:71.712640pt;}
._87{width:75.188385pt;}
._4a{width:78.800172pt;}
._37{width:81.090672pt;}
._40{width:82.336000pt;}
._4c{width:84.315884pt;}
._9d{width:85.310720pt;}
._9c{width:86.454232pt;}
._60{width:87.704018pt;}
._75{width:89.322307pt;}
._3c{width:90.223293pt;}
._19{width:91.772190pt;}
._45{width:97.919947pt;}
._8d{width:100.484740pt;}
._62{width:105.112429pt;}
._83{width:106.025157pt;}
._63{width:107.899273pt;}
._3d{width:111.133412pt;}
._1a{width:112.875922pt;}
._4b{width:114.225789pt;}
._49{width:117.151694pt;}
._20{width:119.845962pt;}
._86{width:122.189044pt;}
._51{width:124.262847pt;}
._61{width:133.034907pt;}
._84{width:134.730998pt;}
._93{width:143.548708pt;}
._1e{width:148.242420pt;}
._7c{width:150.106412pt;}
._7e{width:151.088165pt;}
._69{width:153.039360pt;}
._64{width:154.951040pt;}
._85{width:158.196986pt;}
._73{width:162.866560pt;}
._74{width:164.193920pt;}
._7a{width:167.286583pt;}
._80{width:168.746300pt;}
._6d{width:172.250633pt;}
._79{width:173.935296pt;}
._81{width:184.898817pt;}
._1d{width:192.221867pt;}
._6e{width:193.764394pt;}
._53{width:196.516399pt;}
._9a{width:211.197070pt;}
._9b{width:212.247594pt;}
._47{width:215.340835pt;}
._98{width:234.618581pt;}
._91{width:236.293525pt;}
._65{width:237.357882pt;}
._4f{width:255.116363pt;}
._46{width:259.936616pt;}
._66{width:265.588695pt;}
._82{width:275.643580pt;}
._5f{width:279.089827pt;}
._4e{width:293.257970pt;}
._90{width:335.177433pt;}
._94{width:352.461100pt;}
._92{width:355.540735pt;}
._99{width:379.990309pt;}
._7f{width:384.126893pt;}
._97{width:400.077925pt;}
._7d{width:560.268325pt;}
._6c{width:612.686080pt;}
._15{width:682.533547pt;}
._2{width:683.520427pt;}
._3{width:712.104747pt;}
._a1{width:754.858667pt;}
.fs9{font-size:35.827783pt;}
.fsf{font-size:35.942071pt;}
.fs24{font-size:36.261455pt;}
.fs2d{font-size:36.320135pt;}
.fs26{font-size:36.625530pt;}
.fs19{font-size:37.030319pt;}
.fs35{font-size:37.183386pt;}
.fs13{font-size:37.183771pt;}
.fs32{font-size:37.236702pt;}
.fs4{font-size:37.263251pt;}
.fs28{font-size:37.269176pt;}
.fs1c{font-size:37.356455pt;}
.fs2c{font-size:37.391223pt;}
.fs21{font-size:37.420023pt;}
.fs2f{font-size:37.663891pt;}
.fs2a{font-size:37.765308pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsb{font-size:61.624532pt;}
.fs30{font-size:61.742181pt;}
.fsa{font-size:62.035933pt;}
.fs10{font-size:62.233823pt;}
.fs16{font-size:62.748155pt;}
.fs1e{font-size:62.849697pt;}
.fs1b{font-size:63.343206pt;}
.fs1f{font-size:63.438934pt;}
.fs1a{font-size:63.937280pt;}
.fs36{font-size:64.260107pt;}
.fs14{font-size:64.273575pt;}
.fs12{font-size:64.299133pt;}
.fs33{font-size:64.352248pt;}
.fs23{font-size:64.403609pt;}
.fs29{font-size:64.466951pt;}
.fs5{font-size:64.537405pt;}
.fs20{font-size:64.669063pt;}
.fsd{font-size:64.696523pt;}
.fs8{font-size:64.698830pt;}
.fs15{font-size:64.732067pt;}
.fs2e{font-size:64.996551pt;}
.fs37{font-size:65.129370pt;}
.fs22{font-size:65.171566pt;}
.fs2b{font-size:65.304743pt;}
.fs17{font-size:82.295575pt;}
.fs1d{font-size:82.428748pt;}
.fs25{font-size:82.910248pt;}
.fs18{font-size:83.800885pt;}
.fs11{font-size:84.177893pt;}
.fs34{font-size:84.213426pt;}
.fs31{font-size:84.334177pt;}
.fs27{font-size:84.346253pt;}
.fs3{font-size:84.513517pt;}
.fse{font-size:84.643569pt;}
.fsc{font-size:84.721886pt;}
.fs7{font-size:84.724906pt;}
.fs6{font-size:87.457912pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:2.874678pt;}
.yeb{bottom:2.906667pt;}
.y18d{bottom:3.467939pt;}
.y6f{bottom:3.496763pt;}
.y12b{bottom:3.675607pt;}
.yf3{bottom:3.881537pt;}
.y184{bottom:3.887818pt;}
.y105{bottom:3.974046pt;}
.y121{bottom:3.980052pt;}
.y154{bottom:4.005384pt;}
.y1a7{bottom:4.143437pt;}
.y178{bottom:4.154594pt;}
.y18a{bottom:4.176111pt;}
.y1ad{bottom:4.187356pt;}
.y6c{bottom:4.295379pt;}
.ya1{bottom:4.309081pt;}
.yee{bottom:4.422291pt;}
.ye7{bottom:4.702585pt;}
.y181{bottom:5.271040pt;}
.y10b{bottom:5.316298pt;}
.y132{bottom:5.692124pt;}
.y10e{bottom:5.788966pt;}
.y11d{bottom:5.797714pt;}
.y151{bottom:5.820304pt;}
.ye6{bottom:7.086201pt;}
.y19a{bottom:7.789610pt;}
.y192{bottom:7.800780pt;}
.y61{bottom:8.146248pt;}
.y8d{bottom:8.242097pt;}
.y5d{bottom:8.273960pt;}
.y7b{bottom:8.294359pt;}
.y68{bottom:8.294655pt;}
.y1a8{bottom:8.352221pt;}
.y179{bottom:8.374711pt;}
.y189{bottom:8.384762pt;}
.y1ac{bottom:8.407340pt;}
.y19d{bottom:8.953203pt;}
.y195{bottom:8.966041pt;}
.yfc{bottom:9.270073pt;}
.y62{bottom:9.424017pt;}
.y7c{bottom:9.447252pt;}
.y69{bottom:9.447588pt;}
.y6b{bottom:11.212190pt;}
.y98{bottom:11.247956pt;}
.y10f{bottom:11.703155pt;}
.y120{bottom:11.720842pt;}
.y18f{bottom:12.093855pt;}
.y185{bottom:12.113426pt;}
.ye0{bottom:13.109360pt;}
.y104{bottom:13.893110pt;}
.y153{bottom:13.924957pt;}
.yf5{bottom:14.980521pt;}
.y113{bottom:15.004763pt;}
.y15b{bottom:15.169788pt;}
.yf4{bottom:16.136285pt;}
.y115{bottom:16.162397pt;}
.y15d{bottom:16.345174pt;}
.y5e{bottom:16.644158pt;}
.y14e{bottom:16.991225pt;}
.ydf{bottom:17.232629pt;}
.y19b{bottom:17.357177pt;}
.y193{bottom:17.382064pt;}
.y102{bottom:18.117349pt;}
.y11f{bottom:18.144729pt;}
.y150{bottom:18.149197pt;}
.yf9{bottom:18.827741pt;}
.y19e{bottom:21.494161pt;}
.y196{bottom:21.524981pt;}
.ye5{bottom:21.612250pt;}
.y12f{bottom:21.825610pt;}
.yf8{bottom:22.695314pt;}
.y14b{bottom:23.160975pt;}
.y12a{bottom:23.680827pt;}
.yfb{bottom:23.878229pt;}
.y14f{bottom:25.220593pt;}
.yf2{bottom:26.015776pt;}
.y114{bottom:26.057876pt;}
.y15e{bottom:26.457481pt;}
.y103{bottom:26.848632pt;}
.y152{bottom:26.879206pt;}
.y11e{bottom:26.889208pt;}
.y101{bottom:28.099598pt;}
.y11c{bottom:28.142064pt;}
.y19c{bottom:31.578719pt;}
.y194{bottom:31.623999pt;}
.y12e{bottom:31.974347pt;}
.y12c{bottom:32.137225pt;}
.y15c{bottom:33.667845pt;}
.yfa{bottom:33.915440pt;}
.y129{bottom:36.300537pt;}
.ydb{bottom:38.555090pt;}
.ye1{bottom:39.714248pt;}
.y12d{bottom:45.213787pt;}
.y128{bottom:46.482379pt;}
.yde{bottom:47.863752pt;}
.ye4{bottom:48.991439pt;}
.y41{bottom:49.920000pt;}
.ye3{bottom:53.886387pt;}
.ydd{bottom:60.392878pt;}
.ye2{bottom:69.218995pt;}
.ydc{bottom:70.475186pt;}
.y18c{bottom:90.346667pt;}
.y18b{bottom:94.240000pt;}
.y40{bottom:97.600000pt;}
.y91{bottom:104.160000pt;}
.yd0{bottom:105.120000pt;}
.y188{bottom:107.946667pt;}
.y3d{bottom:112.960000pt;}
.y187{bottom:115.840000pt;}
.y137{bottom:118.240000pt;}
.y90{bottom:119.520000pt;}
.ycf{bottom:120.480000pt;}
.y3c{bottom:128.320000pt;}
.y183{bottom:132.546667pt;}
.y136{bottom:133.600000pt;}
.y8f{bottom:134.880000pt;}
.yce{bottom:136.160000pt;}
.y3b{bottom:143.706667pt;}
.y186{bottom:144.546667pt;}
.y182{bottom:148.506667pt;}
.y135{bottom:148.986667pt;}
.y8e{bottom:150.266667pt;}
.ycd{bottom:151.546667pt;}
.y3a{bottom:159.066667pt;}
.y8c{bottom:162.480000pt;}
.ycc{bottom:163.746667pt;}
.y134{bottom:164.346667pt;}
.y8b{bottom:171.706667pt;}
.ycb{bottom:172.986667pt;}
.y180{bottom:173.546667pt;}
.y39{bottom:174.266667pt;}
.y133{bottom:179.546667pt;}
.y17f{bottom:182.746667pt;}
.y8a{bottom:189.346667pt;}
.y38{bottom:189.626667pt;}
.y131{bottom:191.746667pt;}
.yca{bottom:193.786667pt;}
.y130{bottom:196.986667pt;}
.y89{bottom:198.586667pt;}
.y17e{bottom:203.546667pt;}
.y37{bottom:204.986667pt;}
.yc9{bottom:209.146667pt;}
.y127{bottom:216.413333pt;}
.y17d{bottom:218.906667pt;}
.y88{bottom:219.386667pt;}
.y36{bottom:220.346667pt;}
.yc8{bottom:221.346667pt;}
.yc7{bottom:230.586667pt;}
.y17c{bottom:234.266667pt;}
.y87{bottom:234.746667pt;}
.y35{bottom:235.706667pt;}
.y17b{bottom:249.626667pt;}
.y86{bottom:250.106667pt;}
.y34{bottom:251.066667pt;}
.yc6{bottom:251.386667pt;}
.y126{bottom:252.346667pt;}
.y85{bottom:262.346667pt;}
.y17a{bottom:264.986667pt;}
.y33{bottom:266.266667pt;}
.yc5{bottom:266.746667pt;}
.y84{bottom:271.546667pt;}
.y177{bottom:277.013333pt;}
.y125{bottom:279.746667pt;}
.y32{bottom:281.626667pt;}
.yc4{bottom:282.106667pt;}
.y176{bottom:284.986667pt;}
.y124{bottom:288.986667pt;}
.y83{bottom:292.346667pt;}
.y1e4{bottom:293.306667pt;}
.yc3{bottom:294.346667pt;}
.y31{bottom:296.986667pt;}
.yc2{bottom:303.546667pt;}
.y81{bottom:304.546667pt;}
.y175{bottom:304.826667pt;}
.y1e3{bottom:308.826667pt;}
.y123{bottom:309.786667pt;}
.y30{bottom:312.346667pt;}
.y82{bottom:313.786667pt;}
.y174{bottom:320.186667pt;}
.yc1{bottom:321.213333pt;}
.y11b{bottom:321.813333pt;}
.y1e2{bottom:324.186667pt;}
.yc0{bottom:325.146667pt;}
.y2f{bottom:327.706667pt;}
.y7f{bottom:331.413333pt;}
.y1cb{bottom:334.426667pt;}
.y173{bottom:335.546667pt;}
.y122{bottom:336.546667pt;}
.y1e1{bottom:339.546667pt;}
.y11a{bottom:340.506667pt;}
.y80{bottom:340.666667pt;}
.ybf{bottom:342.346667pt;}
.y3f{bottom:342.746667pt;}
.y2e{bottom:343.066667pt;}
.y1ca{bottom:349.786667pt;}
.y172{bottom:350.906667pt;}
.ybe{bottom:351.546667pt;}
.y1e0{bottom:354.906667pt;}
.y2d{bottom:358.266667pt;}
.y7e{bottom:361.506667pt;}
.y1c9{bottom:365.186667pt;}
.y171{bottom:366.146667pt;}
.y119{bottom:366.480000pt;}
.ybd{bottom:369.213333pt;}
.y1df{bottom:370.306667pt;}
.y2c{bottom:373.666667pt;}
.y118{bottom:375.746667pt;}
.y7d{bottom:376.866667pt;}
.ybc{bottom:378.466667pt;}
.y1c8{bottom:380.386667pt;}
.y170{bottom:381.506667pt;}
.y1de{bottom:385.506667pt;}
.y7a{bottom:389.013333pt;}
.y2b{bottom:389.026667pt;}
.y117{bottom:393.346667pt;}
.y1c7{bottom:395.746667pt;}
.yba{bottom:396.080000pt;}
.y16f{bottom:396.866667pt;}
.y79{bottom:398.306667pt;}
.y1dd{bottom:400.866667pt;}
.y116{bottom:402.626667pt;}
.y2a{bottom:404.386667pt;}
.ybb{bottom:405.346667pt;}
.y1c6{bottom:411.106667pt;}
.y16e{bottom:411.906667pt;}
.y78{bottom:416.080000pt;}
.y1dc{bottom:416.226667pt;}
.y29{bottom:419.746667pt;}
.y112{bottom:420.213333pt;}
.yb9{bottom:423.146667pt;}
.y77{bottom:425.346667pt;}
.y1c5{bottom:426.466667pt;}
.y111{bottom:426.946667pt;}
.y16d{bottom:427.586667pt;}
.y1db{bottom:431.586667pt;}
.yb8{bottom:432.386667pt;}
.y28{bottom:434.946667pt;}
.y110{bottom:436.226667pt;}
.y1c4{bottom:441.826667pt;}
.y76{bottom:442.946667pt;}
.y1da{bottom:446.946667pt;}
.yb7{bottom:450.013333pt;}
.y27{bottom:450.306667pt;}
.y75{bottom:452.226667pt;}
.y1c3{bottom:457.186667pt;}
.y16c{bottom:458.146667pt;}
.yb6{bottom:459.266667pt;}
.y10d{bottom:461.213333pt;}
.y1d9{bottom:462.306667pt;}
.y26{bottom:465.666667pt;}
.y74{bottom:469.813333pt;}
.y1c2{bottom:472.386667pt;}
.y16b{bottom:473.506667pt;}
.yb4{bottom:476.880000pt;}
.y1d8{bottom:477.506667pt;}
.y73{bottom:479.106667pt;}
.y10c{bottom:479.906667pt;}
.y25{bottom:481.026667pt;}
.yb5{bottom:486.146667pt;}
.y1c1{bottom:487.746667pt;}
.y16a{bottom:488.866667pt;}
.y1d7{bottom:492.866667pt;}
.y24{bottom:496.386667pt;}
.y72{bottom:496.880000pt;}
.y1c0{bottom:503.106667pt;}
.y169{bottom:504.226667pt;}
.y10a{bottom:505.813333pt;}
.y71{bottom:506.146667pt;}
.yb3{bottom:506.946667pt;}
.y1d6{bottom:508.226667pt;}
.y23{bottom:511.746667pt;}
.y109{bottom:515.106667pt;}
.y168{bottom:516.413333pt;}
.y1bf{bottom:518.466667pt;}
.yb2{bottom:522.306667pt;}
.y1d5{bottom:523.586667pt;}
.y70{bottom:523.746667pt;}
.y22{bottom:526.946667pt;}
.y167{bottom:528.413333pt;}
.y6e{bottom:529.013333pt;}
.y166{bottom:532.386667pt;}
.y108{bottom:532.746667pt;}
.y6d{bottom:533.026667pt;}
.y1be{bottom:533.826667pt;}
.yb1{bottom:534.480000pt;}
.y1d4{bottom:538.946667pt;}
.y21{bottom:542.306667pt;}
.yb0{bottom:543.746667pt;}
.y107{bottom:546.013333pt;}
.y106{bottom:548.706667pt;}
.y1bd{bottom:549.186667pt;}
.y67{bottom:550.613333pt;}
.y1d3{bottom:554.306667pt;}
.y6a{bottom:555.946667pt;}
.y165{bottom:557.346667pt;}
.y20{bottom:557.666667pt;}
.y66{bottom:559.906667pt;}
.yaf{bottom:561.546667pt;}
.y164{bottom:562.613333pt;}
.y1bc{bottom:564.066667pt;}
.y163{bottom:566.626667pt;}
.y1d2{bottom:569.506667pt;}
.yae{bottom:570.786667pt;}
.y1f{bottom:573.026667pt;}
.y100{bottom:573.680000pt;}
.y65{bottom:577.680000pt;}
.y1bb{bottom:579.773333pt;}
.y162{bottom:584.413333pt;}
.y1d1{bottom:584.893333pt;}
.y64{bottom:586.973333pt;}
.y1e{bottom:588.413333pt;}
.yff{bottom:592.413333pt;}
.y161{bottom:593.693333pt;}
.y1ba{bottom:595.133333pt;}
.yad{bottom:597.693333pt;}
.y1d0{bottom:600.253333pt;}
.y1d{bottom:603.773333pt;}
.y63{bottom:607.773333pt;}
.y1b9{bottom:610.493333pt;}
.y160{bottom:611.280000pt;}
.yac{bottom:615.280000pt;}
.y1cf{bottom:615.613333pt;}
.yfe{bottom:618.146667pt;}
.y1c{bottom:618.973333pt;}
.y60{bottom:619.946667pt;}
.y15f{bottom:620.573333pt;}
.yab{bottom:624.573333pt;}
.y1b8{bottom:625.853333pt;}
.yfd{bottom:627.453333pt;}
.y5f{bottom:629.213333pt;}
.y1ce{bottom:630.973333pt;}
.y1b{bottom:634.333333pt;}
.y1b7{bottom:637.813333pt;}
.y15a{bottom:638.146667pt;}
.yaa{bottom:642.346667pt;}
.y159{bottom:644.880000pt;}
.yf7{bottom:645.213333pt;}
.y1b6{bottom:645.853333pt;}
.y1cd{bottom:646.173333pt;}
.y5c{bottom:646.813333pt;}
.y1a{bottom:649.373333pt;}
.y3e{bottom:649.693333pt;}
.ya9{bottom:651.613333pt;}
.y158{bottom:654.173333pt;}
.y5b{bottom:656.093333pt;}
.yf6{bottom:659.946667pt;}
.y1cc{bottom:661.533333pt;}
.y19{bottom:664.733333pt;}
.y1b5{bottom:665.693333pt;}
.ya8{bottom:669.213333pt;}
.y5a{bottom:676.893333pt;}
.ya7{bottom:678.493333pt;}
.y18{bottom:680.413333pt;}
.y1b4{bottom:681.053333pt;}
.y157{bottom:682.613333pt;}
.y156{bottom:691.933333pt;}
.y59{bottom:692.253333pt;}
.yf1{bottom:694.346667pt;}
.y17{bottom:695.613333pt;}
.ya6{bottom:696.080000pt;}
.y1b3{bottom:696.413333pt;}
.ya5{bottom:705.373333pt;}
.y58{bottom:707.613333pt;}
.y1b1{bottom:708.546667pt;}
.yf0{bottom:710.333333pt;}
.y16{bottom:710.653333pt;}
.y155{bottom:712.733333pt;}
.y1b2{bottom:720.546667pt;}
.y57{bottom:722.973333pt;}
.ya4{bottom:723.146667pt;}
.y1b0{bottom:724.573333pt;}
.y14d{bottom:724.880000pt;}
.y15{bottom:726.333333pt;}
.ya3{bottom:728.413333pt;}
.ya2{bottom:732.413333pt;}
.y56{bottom:738.173333pt;}
.yef{bottom:738.493333pt;}
.y14{bottom:741.693333pt;}
.y1af{bottom:749.546667pt;}
.y9e{bottom:750.013333pt;}
.yed{bottom:750.613333pt;}
.y55{bottom:753.533333pt;}
.yec{bottom:754.653333pt;}
.ya0{bottom:755.280000pt;}
.y13{bottom:757.053333pt;}
.y1ae{bottom:757.533333pt;}
.y9f{bottom:759.293333pt;}
.yea{bottom:767.413333pt;}
.y54{bottom:768.893333pt;}
.ye9{bottom:770.173333pt;}
.y12{bottom:772.413333pt;}
.y14c{bottom:772.573333pt;}
.y1aa{bottom:774.146667pt;}
.y9d{bottom:776.880000pt;}
.y1ab{bottom:782.146667pt;}
.y53{bottom:784.253333pt;}
.yda{bottom:784.746667pt;}
.y9c{bottom:786.173333pt;}
.y11{bottom:787.613333pt;}
.y1a9{bottom:790.173333pt;}
.y52{bottom:799.653333pt;}
.y14a{bottom:800.773333pt;}
.y10{bottom:803.013333pt;}
.y9b{bottom:803.946667pt;}
.y9a{bottom:813.253333pt;}
.y51{bottom:815.013333pt;}
.y1a6{bottom:815.146667pt;}
.yf{bottom:818.373333pt;}
.y1a5{bottom:823.173333pt;}
.ye8{bottom:824.773333pt;}
.y149{bottom:825.680000pt;}
.y148{bottom:829.733333pt;}
.y50{bottom:830.213333pt;}
.y99{bottom:830.813333pt;}
.ye{bottom:833.733333pt;}
.y97{bottom:836.080000pt;}
.y1a4{bottom:839.746667pt;}
.y96{bottom:840.133333pt;}
.y1a3{bottom:841.013333pt;}
.y146{bottom:843.280000pt;}
.y4f{bottom:845.573333pt;}
.yd{bottom:849.093333pt;}
.y147{bottom:849.813333pt;}
.y145{bottom:852.613333pt;}
.y4e{bottom:860.933333pt;}
.yc{bottom:864.453333pt;}
.y1a2{bottom:866.613333pt;}
.y143{bottom:870.146667pt;}
.y1a1{bottom:870.613333pt;}
.y1a0{bottom:874.693333pt;}
.yd9{bottom:875.813333pt;}
.y4d{bottom:876.293333pt;}
.y144{bottom:876.746667pt;}
.yb{bottom:879.333333pt;}
.y142{bottom:879.493333pt;}
.yd8{bottom:887.946667pt;}
.y4c{bottom:891.653333pt;}
.y199{bottom:891.746667pt;}
.ya{bottom:895.013333pt;}
.y140{bottom:897.213333pt;}
.yd7{bottom:897.253333pt;}
.y141{bottom:903.746667pt;}
.y13f{bottom:906.533333pt;}
.y95{bottom:906.693333pt;}
.y4b{bottom:907.013333pt;}
.y9{bottom:910.373333pt;}
.y19f{bottom:913.093333pt;}
.yd6{bottom:914.946667pt;}
.y94{bottom:921.893333pt;}
.y4a{bottom:922.213333pt;}
.y13d{bottom:924.080000pt;}
.yd5{bottom:924.293333pt;}
.y8{bottom:925.733333pt;}
.y13e{bottom:930.613333pt;}
.y13c{bottom:933.413333pt;}
.y49{bottom:937.573333pt;}
.y7{bottom:941.093333pt;}
.y198{bottom:941.733333pt;}
.yd4{bottom:941.813333pt;}
.yd3{bottom:951.173333pt;}
.y13a{bottom:951.413333pt;}
.y48{bottom:952.613333pt;}
.y93{bottom:952.933333pt;}
.y191{bottom:953.813333pt;}
.y139{bottom:954.213333pt;}
.y6{bottom:956.133333pt;}
.y47{bottom:967.973333pt;}
.y92{bottom:968.293333pt;}
.yd2{bottom:968.746667pt;}
.y197{bottom:975.173333pt;}
.yd1{bottom:978.053333pt;}
.y46{bottom:983.653333pt;}
.y5{bottom:986.693333pt;}
.y138{bottom:998.533333pt;}
.y45{bottom:998.853333pt;}
.y18e{bottom:1000.746667pt;}
.y4{bottom:1002.053333pt;}
.y44{bottom:1014.240000pt;}
.y190{bottom:1016.800000pt;}
.y3{bottom:1017.440000pt;}
.y43{bottom:1029.600000pt;}
.y2{bottom:1035.360000pt;}
.y42{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h27{height:15.200167pt;}
.h15{height:17.599110pt;}
.h25{height:17.600203pt;}
.h12{height:21.066090pt;}
.h1c{height:21.133290pt;}
.h58{height:24.599500pt;}
.h46{height:24.665738pt;}
.h9{height:26.866309pt;}
.h17{height:26.932548pt;}
.hf{height:26.933508pt;}
.h13{height:35.163009pt;}
.h1d{height:35.275177pt;}
.h5d{height:35.570929pt;}
.h49{height:35.588635pt;}
.h56{height:35.628491pt;}
.h72{height:35.646226pt;}
.h4b{height:35.945954pt;}
.h30{height:36.343233pt;}
.h6a{height:36.475303pt;}
.h22{height:36.475681pt;}
.h68{height:36.493459pt;}
.h62{height:36.527604pt;}
.h60{height:36.545786pt;}
.hb{height:36.571843pt;}
.h4f{height:36.577658pt;}
.h37{height:36.645078pt;}
.h55{height:36.679183pt;}
.h44{height:36.707435pt;}
.h5a{height:36.946659pt;}
.h70{height:36.965050pt;}
.h53{height:37.046145pt;}
.h6f{height:37.064585pt;}
.h29{height:40.933612pt;}
.h39{height:40.999852pt;}
.h34{height:44.465340pt;}
.h4d{height:44.466790pt;}
.h3e{height:44.532539pt;}
.h66{height:46.867403pt;}
.h5e{height:46.934605pt;}
.h7{height:47.109375pt;}
.h8{height:47.621250pt;}
.h2e{height:49.131971pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h75{height:54.598989pt;}
.h2d{height:58.121705pt;}
.h3d{height:58.215759pt;}
.h36{height:58.672881pt;}
.h40{height:58.761551pt;}
.h33{height:59.223154pt;}
.h24{height:59.558328pt;}
.h65{height:59.607526pt;}
.h52{height:59.713772pt;}
.h41{height:59.779032pt;}
.h45{height:59.900983pt;}
.h16{height:60.481108pt;}
.h5c{height:60.566426pt;}
.h14{height:60.884875pt;}
.h57{height:61.048707pt;}
.h1e{height:61.079094pt;}
.h2b{height:61.553244pt;}
.h2a{height:61.583883pt;}
.h3c{height:61.652852pt;}
.h3b{height:61.683540pt;}
.h4c{height:62.136963pt;}
.h35{height:62.167892pt;}
.h3f{height:62.261844pt;}
.h32{height:62.719724pt;}
.h31{height:62.750943pt;}
.h6b{height:63.036404pt;}
.h26{height:63.049615pt;}
.h69{height:63.067781pt;}
.h23{height:63.074687pt;}
.h21{height:63.106083pt;}
.h63{height:63.126790pt;}
.h61{height:63.158212pt;}
.h48{height:63.177173pt;}
.h42{height:63.201840pt;}
.h51{height:63.239309pt;}
.h50{height:63.270787pt;}
.he{height:63.308422pt;}
.hd{height:63.339934pt;}
.h19{height:63.464510pt;}
.h38{height:63.466772pt;}
.h43{height:63.469149pt;}
.h1a{height:63.496100pt;}
.h11{height:63.498363pt;}
.h28{height:63.499376pt;}
.h5b{height:63.758823pt;}
.h59{height:63.790560pt;}
.h71{height:63.889113pt;}
.h73{height:63.930506pt;}
.h47{height:63.962328pt;}
.h54{height:64.061147pt;}
.h3{height:72.843750pt;}
.h6c{height:76.070118pt;}
.h64{height:76.179192pt;}
.h2c{height:76.227883pt;}
.h3a{height:76.351238pt;}
.h4a{height:76.797237pt;}
.h6e{height:77.370262pt;}
.h2f{height:77.622206pt;}
.h20{height:77.971417pt;}
.h67{height:78.004331pt;}
.h5f{height:78.116178pt;}
.h4e{height:78.127364pt;}
.ha{height:78.282295pt;}
.h1b{height:78.402759pt;}
.h18{height:78.475302pt;}
.h10{height:78.478099pt;}
.h74{height:80.756052pt;}
.h6d{height:80.973503pt;}
.hc{height:81.009599pt;}
.h1f{height:87.803537pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:10.533363pt;}
.w20{width:12.799976pt;}
.w1f{width:16.466442pt;}
.w32{width:17.599747pt;}
.w33{width:31.667340pt;}
.w3a{width:31.734541pt;}
.w2a{width:35.066448pt;}
.w15{width:36.333023pt;}
.w2c{width:37.466313pt;}
.w1d{width:38.667832pt;}
.w5{width:38.734074pt;}
.w21{width:39.799977pt;}
.w25{width:39.867178pt;}
.w10{width:43.332481pt;}
.w1a{width:44.466515pt;}
.w9{width:44.466718pt;}
.w4{width:45.600490pt;}
.w35{width:45.732108pt;}
.w12{width:48.000097pt;}
.w29{width:51.467113pt;}
.w3b{width:51.533727pt;}
.w18{width:53.933623pt;}
.w3e{width:56.132271pt;}
.w24{width:57.268198pt;}
.w19{width:58.534561pt;}
.w27{width:58.601763pt;}
.wb{width:59.867505pt;}
.w1b{width:62.067114pt;}
.wf{width:62.133354pt;}
.w7{width:66.733690pt;}
.we{width:68.001623pt;}
.wd{width:69.133896pt;}
.w17{width:71.399253pt;}
.w36{width:72.599806pt;}
.w14{width:72.599963pt;}
.w3c{width:72.666046pt;}
.w8{width:72.666203pt;}
.wa{width:78.397678pt;}
.wc{width:79.665817pt;}
.w39{width:80.799607pt;}
.w30{width:83.203946pt;}
.w2f{width:88.933745pt;}
.w11{width:92.465912pt;}
.w1c{width:92.533112pt;}
.w28{width:94.732327pt;}
.w3{width:99.532887pt;}
.w6{width:103.066610pt;}
.w22{width:106.598349pt;}
.w31{width:112.531553pt;}
.w13{width:117.129157pt;}
.w2d{width:124.137892pt;}
.w26{width:132.336098pt;}
.w23{width:142.866026pt;}
.w1e{width:182.540344pt;}
.w2b{width:182.732452pt;}
.w34{width:208.534510pt;}
.w38{width:228.135859pt;}
.w37{width:251.726649pt;}
.w16{width:283.471146pt;}
.w2e{width:292.662692pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.444057pt;}
.x82{left:3.059921pt;}
.x16{left:5.469822pt;}
.x69{left:6.874693pt;}
.x9c{left:8.500170pt;}
.xd9{left:9.779137pt;}
.x3f{left:10.834414pt;}
.xb1{left:13.842792pt;}
.xf{left:15.362702pt;}
.x14{left:16.526413pt;}
.x63{left:17.421607pt;}
.x1f{left:18.549276pt;}
.x19{left:19.531129pt;}
.xc3{left:20.558674pt;}
.x37{left:21.680680pt;}
.x9f{left:23.310756pt;}
.x23{left:25.457052pt;}
.xaf{left:26.419564pt;}
.x85{left:27.543358pt;}
.x2e{left:30.224664pt;}
.xa0{left:31.539486pt;}
.xc6{left:32.608631pt;}
.x21{left:35.046826pt;}
.xb3{left:36.170734pt;}
.x91{left:37.585666pt;}
.x80{left:39.841589pt;}
.x24{left:40.840323pt;}
.x8f{left:44.011590pt;}
.xc4{left:45.171191pt;}
.xb2{left:47.334704pt;}
.xa1{left:49.365748pt;}
.x7f{left:52.364378pt;}
.xcd{left:54.301262pt;}
.xc2{left:55.205545pt;}
.x44{left:60.290744pt;}
.x10{left:61.255604pt;}
.x89{left:64.342243pt;}
.xce{left:65.788577pt;}
.x99{left:70.200257pt;}
.xd0{left:71.518550pt;}
.x1a{left:72.710904pt;}
.xd2{left:77.654243pt;}
.x88{left:79.338562pt;}
.x7d{left:81.694000pt;}
.x8e{left:82.607551pt;}
.x7c{left:88.120062pt;}
.x1{left:94.591988pt;}
.xb0{left:96.134718pt;}
.x7e{left:105.619034pt;}
.x8d{left:109.034916pt;}
.x12{left:114.346667pt;}
.x1c{left:115.746667pt;}
.x4{left:117.791988pt;}
.x39{left:120.991988pt;}
.x9d{left:122.813333pt;}
.xb{left:125.951988pt;}
.x9b{left:128.413333pt;}
.xe3{left:132.080000pt;}
.x84{left:138.613333pt;}
.x31{left:140.746667pt;}
.x2d{left:142.480000pt;}
.xd1{left:144.699982pt;}
.x9e{left:147.544153pt;}
.xe0{left:148.746667pt;}
.x7b{left:151.280000pt;}
.xd4{left:153.213333pt;}
.xdb{left:155.746667pt;}
.x17{left:157.306655pt;}
.x77{left:158.480000pt;}
.x15{left:159.866655pt;}
.x28{left:162.146667pt;}
.x86{left:166.586655pt;}
.x92{left:171.546655pt;}
.x87{left:173.346667pt;}
.xd6{left:174.746655pt;}
.x93{left:180.080000pt;}
.x8b{left:181.146655pt;}
.x1d{left:182.426655pt;}
.x97{left:183.413333pt;}
.x76{left:187.546655pt;}
.xcc{left:188.516587pt;}
.x18{left:192.213333pt;}
.xe1{left:194.426655pt;}
.x78{left:197.146655pt;}
.xd5{left:198.906655pt;}
.x29{left:200.826655pt;}
.x2f{left:202.266655pt;}
.x22{left:204.880000pt;}
.xdc{left:207.226655pt;}
.x36{left:208.213333pt;}
.xa3{left:210.946667pt;}
.x8c{left:215.946667pt;}
.x3a{left:218.106655pt;}
.x32{left:220.346655pt;}
.xe{left:224.080000pt;}
.x1e{left:227.280000pt;}
.x2a{left:229.466655pt;}
.x83{left:234.906655pt;}
.x2b{left:236.080000pt;}
.x2{left:239.066655pt;}
.xd7{left:240.213333pt;}
.x98{left:241.946655pt;}
.x96{left:250.906655pt;}
.xd8{left:254.946667pt;}
.xde{left:267.413333pt;}
.x38{left:270.306655pt;}
.xda{left:271.426655pt;}
.x30{left:272.386655pt;}
.x94{left:274.146667pt;}
.x5{left:275.746655pt;}
.x8a{left:279.906655pt;}
.x25{left:283.266655pt;}
.x26{left:286.480000pt;}
.x33{left:292.866655pt;}
.x1b{left:295.266655pt;}
.x34{left:296.213333pt;}
.x20{left:299.906655pt;}
.x2c{left:302.786655pt;}
.xa2{left:305.506655pt;}
.x3c{left:311.280000pt;}
.x95{left:313.986655pt;}
.x9a{left:314.946667pt;}
.x11{left:323.586655pt;}
.x3b{left:331.746655pt;}
.x81{left:333.826655pt;}
.xdf{left:338.786655pt;}
.xe2{left:340.080000pt;}
.x79{left:342.146667pt;}
.x74{left:345.546667pt;}
.x3d{left:349.986655pt;}
.x27{left:353.186655pt;}
.xdd{left:355.266655pt;}
.xcb{left:356.706655pt;}
.x90{left:358.786655pt;}
.x7{left:360.386655pt;}
.x35{left:364.226655pt;}
.xd3{left:366.626655pt;}
.xcf{left:378.306655pt;}
.x7a{left:380.866655pt;}
.x75{left:384.226655pt;}
.xc{left:406.466655pt;}
.x3{left:410.146655pt;}
.x5a{left:411.146667pt;}
.x4e{left:413.213333pt;}
.xa8{left:418.613333pt;}
.x65{left:420.880000pt;}
.xc1{left:429.013333pt;}
.x6f{left:430.480000pt;}
.xb4{left:432.893322pt;}
.xd{left:437.853322pt;}
.xba{left:441.680000pt;}
.xa5{left:450.480000pt;}
.xc8{left:453.213333pt;}
.x6a{left:456.573322pt;}
.x58{left:458.813322pt;}
.xa6{left:463.293322pt;}
.xc9{left:466.013322pt;}
.x70{left:469.213322pt;}
.x5c{left:470.946667pt;}
.x3e{left:472.413333pt;}
.x62{left:475.613322pt;}
.x9{left:478.173322pt;}
.x66{left:479.453322pt;}
.x45{left:480.546667pt;}
.xbf{left:482.813333pt;}
.xa9{left:485.373322pt;}
.xc7{left:490.653322pt;}
.x67{left:492.080000pt;}
.x8{left:493.053322pt;}
.x60{left:496.546667pt;}
.x49{left:499.613333pt;}
.xbd{left:500.880000pt;}
.xa4{left:506.946667pt;}
.xca{left:509.680000pt;}
.x43{left:511.413333pt;}
.x46{left:519.293322pt;}
.x71{left:522.346667pt;}
.xbb{left:524.893322pt;}
.xbc{left:531.413333pt;}
.xb9{left:533.546667pt;}
.x4b{left:538.013333pt;}
.x5d{left:542.333322pt;}
.x5e{left:545.680000pt;}
.x6d{left:547.613333pt;}
.x61{left:550.493322pt;}
.x68{left:554.173322pt;}
.xb5{left:559.280000pt;}
.x47{left:563.413333pt;}
.x40{left:564.893322pt;}
.x55{left:568.546667pt;}
.x4a{left:572.253322pt;}
.xaa{left:580.746667pt;}
.x4c{left:582.493322pt;}
.x6b{left:585.813333pt;}
.x51{left:589.013333pt;}
.xab{left:593.573322pt;}
.x6e{left:595.653322pt;}
.xb6{left:598.053322pt;}
.x4f{left:603.173322pt;}
.x56{left:607.333322pt;}
.xb7{left:612.746667pt;}
.x5f{left:614.853322pt;}
.x72{left:618.946667pt;}
.x4d{left:620.880000pt;}
.x52{left:627.813322pt;}
.x41{left:628.880000pt;}
.x50{left:632.546667pt;}
.x53{left:636.213333pt;}
.x6{left:638.213322pt;}
.x59{left:640.133322pt;}
.xac{left:642.146667pt;}
.x57{left:651.280000pt;}
.xad{left:655.013322pt;}
.xbe{left:657.573322pt;}
.xae{left:661.813333pt;}
.x48{left:666.533322pt;}
.xc0{left:668.133322pt;}
.xb8{left:671.333322pt;}
.x64{left:673.733322pt;}
.x42{left:676.933322pt;}
.x6c{left:678.373322pt;}
.xa7{left:682.946667pt;}
.x73{left:685.733322pt;}
.xc5{left:686.693322pt;}
.x5b{left:694.693322pt;}
.x54{left:696.133322pt;}
.xa{left:699.333322pt;}
}




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