
    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_efbfa78bd3d779fbbb70a9e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c7949f0c429f30aebc6d42c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_92ce392560c4d83250be2563.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e8452b2e3a515bf69f10cc2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_877c628f140f52ac700bdba3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_da5ab5babbd1a72b9829daf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_c04b5f5bfb6c5088400ca2b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;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_a5cf6aed460519a65753dbe6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.045000;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_3416d9e5f97b4fb8c84efc6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025000;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_c7949f0c429f30aebc6d42c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1dc29c2b697c7a7c556d25ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_50c01596a7781ca84df4f07a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8245c39aa1c4e0704bb5e41d.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_91163e1d7bf9db52b83ad499.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ddb8f754ac0615a49513f41f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.649414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_af04c18ad63fbaafbd4d542e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_15a0a30a0929cd7591f30bd3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_75e1d481bd66ad59380a1a13.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_da5ab5babbd1a72b9829daf3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_c04b5f5bfb6c5088400ca2b5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a45ef63644fb14152573b554.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.045000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3416d9e5f97b4fb8c84efc6b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.025000;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;}
.m2b{transform:matrix(0.000000,-0.250278,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250278,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250278,0.250000,0.000000,0,0);}
.m1c{transform:matrix(0.000000,-0.250290,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250290,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250290,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250303,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250303,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250303,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250314,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250314,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250314,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250377,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250377,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250377,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.000000,-0.250379,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250379,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250379,0.250000,0.000000,0,0);}
.m40{transform:matrix(0.000000,-0.250391,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250391,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250391,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.250400,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250400,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250400,0.250000,0.000000,0,0);}
.m2e{transform:matrix(0.000000,-0.250404,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250404,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250404,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250406,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250406,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250406,0.250000,0.000000,0,0);}
.m3c{transform:matrix(0.000000,-0.250412,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250412,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250412,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.250413,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250413,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250413,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250419,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250419,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250419,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250422,0.250000,0.000000,0,0);}
.m39{transform:matrix(0.000000,-0.250436,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250436,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250436,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.250439,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250439,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250439,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250443,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250443,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250443,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250467,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250467,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250467,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250480,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250480,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250480,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250486,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250486,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250486,0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.000000,-0.250491,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250491,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250491,0.250000,0.000000,0,0);}
.m35{transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250518,0.250000,0.000000,0,0);}
.m43{transform:matrix(0.000000,-0.250542,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250542,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250542,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.252717,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252717,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252717,0.250000,0.000000,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);}
.m2d{transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250377,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m31{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250426,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250548,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,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);}
.v2{vertical-align:-18.000000px;}
.v9{vertical-align:-14.400054px;}
.vb{vertical-align:-12.240139px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:14.400059px;}
.v1{vertical-align:23.759923px;}
.v3{vertical-align:26.640059px;}
.v6{vertical-align:36.000000px;}
.v4{vertical-align:42.480014px;}
.v5{vertical-align:61.200027px;}
.v8{vertical-align:97.200027px;}
.v7{vertical-align:108.000000px;}
.ls1{letter-spacing:-3.120000px;}
.ls2{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-1.500000px;}
.ls4{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.010948px;}
.ls5{letter-spacing:0.012071px;}
.ls8{letter-spacing:0.023666px;}
.ls20{letter-spacing:0.041866px;}
.ls22{letter-spacing:0.041934px;}
.lsb{letter-spacing:0.066798px;}
.ls19{letter-spacing:0.068175px;}
.ls24{letter-spacing:0.134553px;}
.ls1c{letter-spacing:0.253751px;}
.ls2c{letter-spacing:0.253818px;}
.lsd{letter-spacing:0.255346px;}
.lsc{letter-spacing:0.255350px;}
.ls2b{letter-spacing:0.444250px;}
.ls2d{letter-spacing:0.444389px;}
.ls7{letter-spacing:1.463666px;}
.ls6{letter-spacing:2.029391px;}
.ls29{letter-spacing:2.413868px;}
.ls9{letter-spacing:2.749342px;}
.ls1d{letter-spacing:3.133751px;}
.ls1a{letter-spacing:3.741926px;}
.ls1e{letter-spacing:3.742195px;}
.ls21{letter-spacing:3.980435px;}
.ls23{letter-spacing:3.980507px;}
.ls11{letter-spacing:4.461822px;}
.ls1b{letter-spacing:4.461890px;}
.ls18{letter-spacing:4.461939px;}
.ls10{letter-spacing:5.901997px;}
.ls12{letter-spacing:7.223662px;}
.ls28{letter-spacing:7.606068px;}
.ls1f{letter-spacing:12.381844px;}
.ls14{letter-spacing:12.829432px;}
.ls17{letter-spacing:20.029779px;}
.lsf{letter-spacing:20.301912px;}
.ls16{letter-spacing:21.021930px;}
.ls2a{letter-spacing:21.853625px;}
.ls25{letter-spacing:54.973800px;}
.lse{letter-spacing:62.173791px;}
.ls15{letter-spacing:490.573778px;}
.lsa{letter-spacing:660.493823px;}
.ls26{letter-spacing:1170.757739px;}
.ls27{letter-spacing:1185.877946px;}
.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;}
}
.ws4{word-spacing:-19.918302px;}
.wsf{word-spacing:-19.917179px;}
.ws5{word-spacing:-19.906231px;}
.ws54{word-spacing:-18.313703px;}
.ws15{word-spacing:-16.522108px;}
.ws7{word-spacing:-15.810003px;}
.ws6a{word-spacing:-14.929704px;}
.ws6{word-spacing:-13.337176px;}
.ws43{word-spacing:-12.863005px;}
.ws80{word-spacing:-12.778456px;}
.ws47{word-spacing:-12.721681px;}
.ws4b{word-spacing:-12.712286px;}
.ws36{word-spacing:-12.693497px;}
.ws52{word-spacing:-12.665314px;}
.ws2e{word-spacing:-12.627736px;}
.ws79{word-spacing:-12.486412px;}
.ws2a{word-spacing:-12.458228px;}
.ws32{word-spacing:-12.401862px;}
.ws26{word-spacing:-12.373270px;}
.ws4f{word-spacing:-12.288720px;}
.ws7b{word-spacing:-12.260537px;}
.ws3f{word-spacing:-12.175579px;}
.ws3b{word-spacing:-12.119212px;}
.ws69{word-spacing:-11.545607px;}
.ws8{word-spacing:-11.225115px;}
.ws1{word-spacing:-11.178000px;}
.ws16{word-spacing:-10.749367px;}
.ws3{word-spacing:-9.936000px;}
.ws22{word-spacing:-9.560254px;}
.ws64{word-spacing:-9.515324px;}
.ws1f{word-spacing:-9.444253px;}
.ws42{word-spacing:-9.314773px;}
.ws1c{word-spacing:-9.253097px;}
.ws46{word-spacing:-9.212251px;}
.ws4a{word-spacing:-9.205716px;}
.ws35{word-spacing:-9.191829px;}
.ws19{word-spacing:-9.171406px;}
.wsa{word-spacing:-9.169796px;}
.ws2d{word-spacing:-9.144040px;}
.ws6d{word-spacing:-9.130561px;}
.ws78{word-spacing:-9.041927px;}
.ws29{word-spacing:-9.021504px;}
.ws31{word-spacing:-8.980659px;}
.ws25{word-spacing:-8.960236px;}
.ws72{word-spacing:-8.939405px;}
.ws4e{word-spacing:-8.898559px;}
.ws75{word-spacing:-8.878137px;}
.ws3e{word-spacing:-8.816869px;}
.ws3a{word-spacing:-8.776024px;}
.ws61{word-spacing:-6.703941px;}
.ws5c{word-spacing:-6.673715px;}
.ws57{word-spacing:-6.578137px;}
.ws2{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:2.976808px;}
.wsc{word-spacing:3.804015px;}
.ws12{word-spacing:3.947886px;}
.wse{word-spacing:4.524173px;}
.ws14{word-spacing:7.716242px;}
.ws10{word-spacing:8.454521px;}
.ws13{word-spacing:8.804664px;}
.ws11{word-spacing:11.605757px;}
.wsd{word-spacing:12.516576px;}
.wsb{word-spacing:13.956747px;}
.ws1d{word-spacing:76.042695px;}
.ws17{word-spacing:76.347623px;}
.ws56{word-spacing:77.251480px;}
.ws59{word-spacing:77.258770px;}
.ws5e{word-spacing:78.403141px;}
.ws5b{word-spacing:78.410752px;}
.ws60{word-spacing:78.987417px;}
.ws63{word-spacing:78.987453px;}
.ws68{word-spacing:78.987597px;}
.ws66{word-spacing:78.994810px;}
.ws70{word-spacing:81.595314px;}
.ws4c{word-spacing:86.879153px;}
.ws48{word-spacing:88.737835px;}
.ws50{word-spacing:89.590561px;}
.ws67{word-spacing:93.451783px;}
.ws20{word-spacing:94.225046px;}
.ws5a{word-spacing:97.707374px;}
.ws58{word-spacing:99.536703px;}
.ws65{word-spacing:100.462993px;}
.ws6b{word-spacing:101.049027px;}
.ws2b{word-spacing:109.046927px;}
.ws76{word-spacing:117.928288px;}
.ws53{word-spacing:118.944406px;}
.ws38{word-spacing:123.173911px;}
.ws3c{word-spacing:123.795376px;}
.ws44{word-spacing:124.835189px;}
.ws5f{word-spacing:127.128409px;}
.ws55{word-spacing:127.516420px;}
.ws33{word-spacing:127.632252px;}
.ws7a{word-spacing:129.284213px;}
.ws7c{word-spacing:129.732593px;}
.ws7e{word-spacing:130.267184px;}
.ws40{word-spacing:130.827511px;}
.ws27{word-spacing:132.275102px;}
.ws62{word-spacing:133.533905px;}
.ws6e{word-spacing:137.601222px;}
.ws1a{word-spacing:159.652460px;}
.ws23{word-spacing:169.255569px;}
.ws2f{word-spacing:182.838248px;}
.ws73{word-spacing:184.508732px;}
.ws5d{word-spacing:186.184107px;}
.ws37{word-spacing:186.580513px;}
.ws3d{word-spacing:189.955538px;}
.ws39{word-spacing:190.052045px;}
.ws4d{word-spacing:192.509588px;}
.ws74{word-spacing:192.556828px;}
.ws30{word-spacing:193.632727px;}
.ws24{word-spacing:193.685975px;}
.ws71{word-spacing:193.728121px;}
.ws28{word-spacing:194.960658px;}
.ws77{word-spacing:195.517576px;}
.ws6c{word-spacing:196.794348px;}
.ws2c{word-spacing:197.437460px;}
.ws51{word-spacing:197.523138px;}
.ws18{word-spacing:198.174260px;}
.ws7d{word-spacing:198.747933px;}
.ws34{word-spacing:198.793395px;}
.ws6f{word-spacing:198.856925px;}
.ws49{word-spacing:199.448714px;}
.ws45{word-spacing:199.458284px;}
.ws1b{word-spacing:199.949672px;}
.ws41{word-spacing:200.549278px;}
.ws7f{word-spacing:200.689289px;}
.ws1e{word-spacing:204.500353px;}
.ws21{word-spacing:206.921649px;}
._7{margin-left:-12.795600px;}
._6{margin-left:-10.296000px;}
._5{margin-left:-7.815600px;}
._8{margin-left:-6.600000px;}
._2{margin-left:-5.460000px;}
._4{margin-left:-3.612000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._3{width:1.392000px;}
._a{width:2.809526px;}
._9{width:4.002600px;}
._14{width:5.108002px;}
._c{width:6.240173px;}
._b{width:7.314653px;}
._f{width:8.735722px;}
._10{width:10.075228px;}
._11{width:11.117657px;}
._17{width:12.339165px;}
._16{width:13.940425px;}
._15{width:15.051785px;}
._1e{width:16.303766px;}
._1a{width:17.396695px;}
._1b{width:18.494939px;}
._2d{width:19.699881px;}
._43{width:20.701891px;}
._18{width:21.950696px;}
._19{width:23.771990px;}
._1c{width:25.064210px;}
._1d{width:26.336827px;}
._22{width:27.438807px;}
._13{width:28.468953px;}
._d{width:29.853248px;}
._e{width:31.609948px;}
._1f{width:32.708873px;}
._2a{width:34.355083px;}
._29{width:35.421839px;}
._27{width:36.838542px;}
._28{width:37.850053px;}
._24{width:39.031419px;}
._23{width:40.204063px;}
._25{width:41.273315px;}
._26{width:42.466964px;}
._21{width:46.935772px;}
._20{width:48.528737px;}
._82{width:61.020177px;}
._83{width:63.462026px;}
._84{width:65.123940px;}
._86{width:77.226475px;}
._85{width:78.402681px;}
._59{width:85.298035px;}
._3d{width:86.487553px;}
._34{width:93.415572px;}
._3c{width:96.100770px;}
._3a{width:98.856134px;}
._7b{width:100.313009px;}
._5c{width:101.356133px;}
._33{width:102.670677px;}
._7a{width:104.187758px;}
._3b{width:105.454613px;}
._5a{width:107.579294px;}
._57{width:108.825811px;}
._56{width:110.547810px;}
._5d{width:111.561450px;}
._41{width:113.080195px;}
._3f{width:118.123110px;}
._74{width:119.275776px;}
._40{width:122.422617px;}
._75{width:124.717768px;}
._80{width:128.059018px;}
._76{width:129.745850px;}
._58{width:131.396569px;}
._7f{width:134.881749px;}
._50{width:136.350512px;}
._4f{width:137.942537px;}
._51{width:141.238086px;}
._49{width:142.312567px;}
._81{width:143.568928px;}
._48{width:145.768541px;}
._4e{width:147.438015px;}
._54{width:149.491254px;}
._78{width:151.331232px;}
._77{width:153.295131px;}
._6b{width:160.659596px;}
._38{width:176.882191px;}
._37{width:186.220330px;}
._46{width:188.542301px;}
._5b{width:194.441486px;}
._2e{width:195.604382px;}
._7c{width:197.845150px;}
._7d{width:199.022163px;}
._4d{width:200.123347px;}
._4c{width:201.178734px;}
._47{width:204.083481px;}
._4a{width:205.493029px;}
._79{width:206.563208px;}
._35{width:208.458173px;}
._36{width:209.464593px;}
._39{width:210.523457px;}
._55{width:212.059535px;}
._3e{width:215.410536px;}
._42{width:217.957301px;}
._6c{width:249.733372px;}
._70{width:265.023939px;}
._71{width:280.115337px;}
._2f{width:287.664762px;}
._6f{width:339.671620px;}
._73{width:350.190753px;}
._6d{width:365.489532px;}
._72{width:386.023771px;}
._6e{width:401.654147px;}
._30{width:449.135856px;}
._45{width:744.656272px;}
._66{width:746.452857px;}
._2b{width:751.692921px;}
._60{width:768.872735px;}
._5e{width:772.023750px;}
._63{width:783.782535px;}
._65{width:785.299886px;}
._68{width:787.115148px;}
._62{width:798.451382px;}
._64{width:802.881436px;}
._6a{width:811.817207px;}
._2c{width:814.616938px;}
._61{width:821.518399px;}
._5f{width:836.025973px;}
._44{width:843.894842px;}
._12{width:845.793874px;}
._7e{width:847.757126px;}
._53{width:849.173996px;}
._69{width:865.661580px;}
._4b{width:909.262233px;}
._52{width:932.524407px;}
._67{width:956.309553px;}
._32{width:1127.960344px;}
._31{width:1129.282633px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs2f{font-size:23.747788px;}
.fs32{font-size:24.092835px;}
.fs35{font-size:24.201953px;}
.fs22{font-size:31.682395px;}
.fs24{font-size:31.829851px;}
.fs3d{font-size:32.051035px;}
.fs2c{font-size:32.124763px;}
.fs3b{font-size:32.272219px;}
.fs18{font-size:32.347422px;}
.fs1e{font-size:32.421150px;}
.fs1a{font-size:32.568606px;}
.fs3f{font-size:32.642334px;}
.fs39{font-size:32.962314px;}
.fs1c{font-size:33.010974px;}
.fs14{font-size:33.109770px;}
.fs20{font-size:33.183498px;}
.fs2a{font-size:33.233633px;}
.fs28{font-size:33.257226px;}
.fs15{font-size:33.404682px;}
.fs26{font-size:33.627340px;}
.fs30{font-size:33.706966px;}
.fs16{font-size:34.094776px;}
.fs33{font-size:34.196520px;}
.fs36{font-size:34.351349px;}
.fs17{font-size:34.513551px;}
.fs11{font-size:38.806380px;}
.fs13{font-size:41.680890px;}
.fs4{font-size:42.000000px;}
.fs23{font-size:43.751669px;}
.fs25{font-size:43.955158px;}
.fs3e{font-size:44.261867px;}
.fs2d{font-size:44.363611px;}
.fs31{font-size:44.431441px;}
.fs3c{font-size:44.567100px;}
.fs19{font-size:44.668845px;}
.fs1f{font-size:44.772064px;}
.fs1b{font-size:44.975554px;}
.fs34{font-size:45.077298px;}
.fs37{font-size:45.280788px;}
.fs3a{font-size:45.519666px;}
.fs1d{font-size:45.587496px;}
.fs2e{font-size:45.723156px;}
.fs21{font-size:45.824900px;}
.fs2b{font-size:45.892730px;}
.fs29{font-size:45.926645px;}
.fs40{font-size:46.131609px;}
.fs27{font-size:46.436843px;}
.fsb{font-size:48.000000px;}
.fs10{font-size:48.148650px;}
.fs12{font-size:51.023250px;}
.fs38{font-size:53.897850px;}
.fs6{font-size:54.000000px;}
.fsf{font-size:59.646600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.114450px;}
.fs5{font-size:69.000000px;}
.fsc{font-size:71.863650px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsd{font-size:84.080250px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:0.902605px;}
.y103{bottom:1.440033px;}
.y241{bottom:1.620002px;}
.y23c{bottom:1.980011px;}
.y15d{bottom:2.159981px;}
.y17c{bottom:2.699993px;}
.y227{bottom:2.879997px;}
.y1b8{bottom:2.879998px;}
.y22a{bottom:2.880014px;}
.y223{bottom:2.880015px;}
.y22d{bottom:3.060001px;}
.y221{bottom:3.060002px;}
.y15b{bottom:3.239937px;}
.y157{bottom:3.239971px;}
.y194{bottom:3.239998px;}
.y1b6{bottom:3.599980px;}
.y239{bottom:3.779983px;}
.y23e{bottom:3.780052px;}
.y133{bottom:3.959988px;}
.y6{bottom:35.925007px;}
.y28{bottom:40.500000px;}
.ybe{bottom:44.279983px;}
.y24{bottom:53.320350px;}
.y27{bottom:57.000000px;}
.y8e{bottom:57.240006px;}
.y83{bottom:58.500000px;}
.y5{bottom:66.525004px;}
.y26{bottom:73.500000px;}
.y174{bottom:88.379998px;}
.y192{bottom:88.559967px;}
.y25{bottom:90.000000px;}
.y4{bottom:97.125005px;}
.y95{bottom:111.240006px;}
.y1aa{bottom:114.659981px;}
.y113{bottom:115.379998px;}
.y1e2{bottom:115.740006px;}
.y297{bottom:118.080025px;}
.y12d{bottom:118.259994px;}
.y15e{bottom:122.399986px;}
.y21c{bottom:124.559967px;}
.yd5{bottom:128.519989px;}
.y1e1{bottom:129.779983px;}
.y2bd{bottom:130.500000px;}
.y2be{bottom:131.580025px;}
.y94{bottom:133.019989px;}
.y15c{bottom:136.440033px;}
.y296{bottom:138.779983px;}
.y23{bottom:139.264499px;}
.y246{bottom:141.480011px;}
.ya9{bottom:143.279983px;}
.y93{bottom:145.799973px;}
.yd2{bottom:147.059967px;}
.y21b{bottom:147.600013px;}
.yc6{bottom:150.299973px;}
.y2bc{bottom:151.200027px;}
.y172{bottom:151.560352px;}
.y8f{bottom:152.279983px;}
.y16e{bottom:152.450788px;}
.y147{bottom:154.799973px;}
.y1a9{bottom:156.059967px;}
.y112{bottom:158.749802px;}
.y245{bottom:158.759994px;}
.y171{bottom:159.120058px;}
.y295{bottom:159.480011px;}
.y12c{bottom:159.659981px;}
.y16d{bottom:160.193018px;}
.y10e{bottom:160.375699px;}
.y21a{bottom:161.639992px;}
.y92{bottom:162.899986px;}
.yc5{bottom:164.159981px;}
.y111{bottom:166.670413px;}
.yf1{bottom:167.399986px;}
.y10d{bottom:169.375938px;}
.y2bb{bottom:171.899986px;}
.y16c{bottom:172.459454px;}
.y2a8{bottom:172.980011px;}
.y170{bottom:174.064557px;}
.y244{bottom:176.039977px;}
.yf0{bottom:180.179970px;}
.yf7{bottom:181.440033px;}
.y10c{bottom:183.435287px;}
.y91{bottom:184.679970px;}
.y2ba{bottom:192.600013px;}
.y243{bottom:193.320030px;}
.y8b{bottom:193.679970px;}
.y110{bottom:193.842276px;}
.y146{bottom:196.200027px;}
.y1a{bottom:196.933500px;}
.yef{bottom:197.460022px;}
.y90{bottom:198.720017px;}
.y294{bottom:200.879998px;}
.y12b{bottom:201.059967px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y242{bottom:210.600013px;}
.y2b9{bottom:213.299973px;}
.y2a7{bottom:214.379998px;}
.yee{bottom:214.740006px;}
.y2ce{bottom:216.720017px;}
.yd1{bottom:217.080025px;}
.y293{bottom:221.580025px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y240{bottom:224.639992px;}
.y1e0{bottom:225.539977px;}
.ya8{bottom:226.080025px;}
.yed{bottom:232.019989px;}
.y2b8{bottom:234.000000px;}
.y2cd{bottom:234.539977px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y8a{bottom:235.080025px;}
.y145{bottom:237.600013px;}
.y1a8{bottom:238.860008px;}
.y251{bottom:239.062943px;}
.yc2{bottom:239.580025px;}
.y255{bottom:240.490284px;}
.y292{bottom:242.279983px;}
.y12a{bottom:242.460022px;}
.y250{bottom:246.983837px;}
.y254{bottom:248.410573px;}
.yc4{bottom:248.940033px;}
.yec{bottom:249.299973px;}
.y2b7{bottom:254.700027px;}
.y2cc{bottom:255.240006px;}
.y2a6{bottom:255.779983px;}
.yd0{bottom:258.480011px;}
.y24f{bottom:259.369660px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y253{bottom:260.636331px;}
.y291{bottom:262.980011px;}
.yeb{bottom:266.399986px;}
.y219{bottom:267.299973px;}
.ya7{bottom:267.480011px;}
.y1ee{bottom:271.980011px;}
.ybd{bottom:272.340019px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y2b6{bottom:275.399986px;}
.y2cb{bottom:275.940033px;}
.y89{bottom:276.480011px;}
.yc3{bottom:276.840019px;}
.y144{bottom:279.000000px;}
.y1a7{bottom:280.259994px;}
.yc0{bottom:280.440033px;}
.y1df{bottom:281.879998px;}
.y290{bottom:283.679970px;}
.yc1{bottom:283.860008px;}
.yd4{bottom:284.940033px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y218{bottom:285.840019px;}
.yea{bottom:288.179970px;}
.y2b5{bottom:296.100013px;}
.y2ca{bottom:296.639992px;}
.y2a5{bottom:297.179970px;}
.ycf{bottom:299.879998px;}
.ye9{bottom:300.960022px;}
.y217{bottom:303.120002px;}
.y28f{bottom:304.379998px;}
.yf6{bottom:307.799973px;}
.ya6{bottom:308.879998px;}
.ybf{bottom:309.059967px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ybb{bottom:312.659981px;}
.y1ed{bottom:313.379998px;}
.ybc{bottom:316.620002px;}
.y2b4{bottom:317.340019px;}
.yd3{bottom:317.700027px;}
.y88{bottom:317.879998px;}
.ye8{bottom:318.240006px;}
.y143{bottom:320.399986px;}
.y216{bottom:320.759994px;}
.y1a6{bottom:321.659981px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1de{bottom:323.279983px;}
.y180{bottom:323.460022px;}
.y12f{bottom:325.080025px;}
.y129{bottom:325.259994px;}
.y181{bottom:330.480011px;}
.ye7{bottom:335.700027px;}
.y215{bottom:336.419975px;}
.y2b3{bottom:338.039977px;}
.y18c{bottom:338.206119px;}
.y2a4{bottom:338.580025px;}
.yce{bottom:341.279983px;}
.y48{bottom:341.550150px;}
.y28e{bottom:345.779983px;}
.y190{bottom:345.796014px;}
.y18b{bottom:346.307121px;}
.y11{bottom:348.133500px;}
.yf5{bottom:349.200027px;}
.y16f{bottom:349.557650px;}
.y173{bottom:349.568232px;}
.ya5{bottom:350.279983px;}
.y214{bottom:351.899986px;}
.ye6{bottom:352.980011px;}
.y18f{bottom:353.712502px;}
.y1ec{bottom:354.600013px;}
.yba{bottom:355.139992px;}
.y1c6{bottom:356.220017px;}
.y47{bottom:357.750150px;}
.y2b2{bottom:358.740006px;}
.y87{bottom:359.279983px;}
.y142{bottom:361.799973px;}
.y213{bottom:364.500000px;}
.y1dd{bottom:364.679970px;}
.y105{bottom:365.759994px;}
.y18e{bottom:366.113726px;}
.y28d{bottom:366.480011px;}
.y128{bottom:366.659981px;}
.y212{bottom:367.379998px;}
.y15a{bottom:370.440033px;}
.y159{bottom:373.679970px;}
.y46{bottom:373.950150px;}
.y18a{bottom:374.405528px;}
.ye5{bottom:374.940033px;}
.y1a5{bottom:375.120002px;}
.y2b1{bottom:379.440033px;}
.y2a3{bottom:379.980011px;}
.ycd{bottom:382.679970px;}
.y211{bottom:382.860008px;}
.y10{bottom:386.785499px;}
.y28c{bottom:387.179970px;}
.y158{bottom:387.539977px;}
.ye4{bottom:389.159981px;}
.y45{bottom:390.150150px;}
.yf4{bottom:390.600013px;}
.ya4{bottom:391.679970px;}
.y104{bottom:393.659981px;}
.y1eb{bottom:396.000000px;}
.y210{bottom:396.360008px;}
.yb9{bottom:397.259994px;}
.y1c5{bottom:397.620002px;}
.y2b0{bottom:400.139992px;}
.y86{bottom:400.679970px;}
.y169{bottom:402.489441px;}
.y141{bottom:403.200027px;}
.y1dc{bottom:406.080025px;}
.y44{bottom:406.350150px;}
.y28b{bottom:407.879998px;}
.yf{bottom:408.044999px;}
.y127{bottom:408.059967px;}
.y168{bottom:410.408618px;}
.y20f{bottom:415.440033px;}
.y1a4{bottom:416.519989px;}
.y2a{bottom:417.900300px;}
.y2af{bottom:420.840019px;}
.y2a2{bottom:421.379998px;}
.y43{bottom:422.550150px;}
.y2c{bottom:423.411150px;}
.ycc{bottom:424.080025px;}
.y16b{bottom:425.867659px;}
.y102{bottom:427.139992px;}
.y167{bottom:427.665515px;}
.y20e{bottom:428.039977px;}
.y28a{bottom:428.580025px;}
.y10b{bottom:428.957908px;}
.y108{bottom:430.743351px;}
.y20d{bottom:430.919975px;}
.yf3{bottom:432.000000px;}
.ya3{bottom:433.080025px;}
.y10a{bottom:437.054711px;}
.y1ea{bottom:437.399986px;}
.y107{bottom:438.483254px;}
.y42{bottom:438.750150px;}
.yb8{bottom:438.840019px;}
.y1c4{bottom:439.019989px;}
.y252{bottom:439.745214px;}
.y256{bottom:439.912574px;}
.y2ae{bottom:441.539977px;}
.y85{bottom:442.080025px;}
.y140{bottom:444.600013px;}
.y20c{bottom:446.580025px;}
.y25e{bottom:447.299973px;}
.y1db{bottom:447.480011px;}
.y289{bottom:449.279983px;}
.y126{bottom:449.460022px;}
.y109{bottom:452.712476px;}
.y106{bottom:454.152674px;}
.y41{bottom:454.950150px;}
.y54{bottom:457.200150px;}
.y1a3{bottom:457.919975px;}
.y23d{bottom:460.799973px;}
.y20b{bottom:462.059967px;}
.y2ad{bottom:462.240006px;}
.y2a1{bottom:462.779983px;}
.y23f{bottom:464.580025px;}
.ycb{bottom:465.480011px;}
.y29{bottom:468.900300px;}
.y1f1{bottom:469.980011px;}
.y2b{bottom:470.475150px;}
.yf2{bottom:473.220017px;}
.ya2{bottom:474.480011px;}
.y53{bottom:475.200150px;}
.y20a{bottom:477.539977px;}
.y1e9{bottom:478.799973px;}
.yb7{bottom:480.240006px;}
.y1c3{bottom:480.419975px;}
.y23b{bottom:481.500000px;}
.y25d{bottom:481.679970px;}
.y2ac{bottom:482.940033px;}
.y125{bottom:483.299973px;}
.y84{bottom:483.480011px;}
.ye{bottom:484.864502px;}
.y13f{bottom:486.000000px;}
.y1da{bottom:488.879998px;}
.y288{bottom:490.679970px;}
.y52{bottom:493.200150px;}
.y209{bottom:493.919975px;}
.y24d{bottom:496.982070px;}
.y249{bottom:497.879219px;}
.y25c{bottom:498.960022px;}
.y1a2{bottom:499.320030px;}
.yd{bottom:502.864502px;}
.y2c9{bottom:503.639992px;}
.y1f0{bottom:504.179970px;}
.y24c{bottom:504.903831px;}
.y248{bottom:505.798412px;}
.yca{bottom:506.879998px;}
.y208{bottom:510.120002px;}
.y287{bottom:511.200027px;}
.y51{bottom:511.200150px;}
.y124{bottom:515.340019px;}
.ya1{bottom:515.879998px;}
.y25b{bottom:516.240006px;}
.ye3{bottom:517.860008px;}
.y24b{bottom:518.931818px;}
.yc{bottom:520.864502px;}
.yb6{bottom:521.639992px;}
.y1c2{bottom:521.820030px;}
.y2c8{bottom:524.340019px;}
.y2ab{bottom:524.700027px;}
.y82{bottom:524.879998px;}
.y72{bottom:525.019950px;}
.y207{bottom:525.600013px;}
.y13e{bottom:527.399986px;}
.y247{bottom:528.119987px;}
.y50{bottom:529.200150px;}
.y1d9{bottom:530.279983px;}
.y286{bottom:531.899986px;}
.y4c{bottom:533.244300px;}
.y123{bottom:533.879998px;}
.y1ef{bottom:535.320030px;}
.yb{bottom:538.864499px;}
.y1a1{bottom:540.720017px;}
.y206{bottom:541.080025px;}
.y2c7{bottom:545.039977px;}
.y18d{bottom:545.049395px;}
.y2aa{bottom:545.399986px;}
.y191{bottom:545.578505px;}
.y81{bottom:545.580025px;}
.y26d{bottom:545.774381px;}
.y269{bottom:546.848401px;}
.y4f{bottom:547.200150px;}
.yc9{bottom:548.279983px;}
.y285{bottom:552.600013px;}
.y71{bottom:552.775950px;}
.y26c{bottom:553.873773px;}
.y268{bottom:554.947572px;}
.y205{bottom:556.740006px;}
.ya{bottom:556.864499px;}
.ya0{bottom:557.279983px;}
.ye2{bottom:559.440033px;}
.yb5{bottom:563.039977px;}
.y1c1{bottom:563.220017px;}
.y4b{bottom:564.000150px;}
.y122{bottom:564.659981px;}
.y4e{bottom:565.200150px;}
.y2c6{bottom:565.740006px;}
.y2a9{bottom:566.100013px;}
.y80{bottom:566.279983px;}
.y17f{bottom:566.820030px;}
.y26b{bottom:566.832052px;}
.y267{bottom:567.730696px;}
.y70{bottom:567.775950px;}
.y13d{bottom:568.799973px;}
.y17e{bottom:570.059967px;}
.y1d8{bottom:571.679970px;}
.y204{bottom:572.220017px;}
.y284{bottom:573.299973px;}
.y4a{bottom:582.000150px;}
.y1a0{bottom:582.120002px;}
.y6f{bottom:582.775950px;}
.y121{bottom:583.200027px;}
.y4d{bottom:583.200150px;}
.y203{bottom:585.539977px;}
.y2c5{bottom:586.440033px;}
.y7f{bottom:586.980011px;}
.yc8{bottom:589.679970px;}
.y283{bottom:594.000000px;}
.y9f{bottom:598.679970px;}
.ye1{bottom:601.559967px;}
.y202{bottom:601.919975px;}
.y1d7{bottom:602.820030px;}
.y13c{bottom:603.000000px;}
.yb4{bottom:604.440033px;}
.y1c0{bottom:604.620002px;}
.y17d{bottom:606.600013px;}
.y2c4{bottom:607.139992px;}
.y7e{bottom:607.679970px;}
.y40{bottom:607.920300px;}
.y16a{bottom:608.944603px;}
.y6e{bottom:610.531800px;}
.y120{bottom:613.800007px;}
.y282{bottom:614.699993px;}
.y17b{bottom:622.259994px;}
.y13b{bottom:623.160015px;}
.y19f{bottom:623.519989px;}
.y6d{bottom:625.531800px;}
.y2c3{bottom:627.839985px;}
.y2a0{bottom:628.379998px;}
.y156{bottom:630.540012px;}
.yc7{bottom:631.079990px;}
.y11f{bottom:632.339985px;}
.y155{bottom:633.779983px;}
.y281{bottom:635.399986px;}
.y1bf{bottom:635.759994px;}
.y184{bottom:637.012081px;}
.y101{bottom:638.459988px;}
.y188{bottom:639.547042px;}
.y9e{bottom:640.079990px;}
.y13a{bottom:640.439999px;}
.y6c{bottom:640.531800px;}
.ye0{bottom:643.139992px;}
.y183{bottom:645.114147px;}
.y9{bottom:645.510000px;}
.y201{bottom:646.019989px;}
.yb3{bottom:646.379998px;}
.y187{bottom:647.646213px;}
.y153{bottom:647.819995px;}
.y2c2{bottom:648.540012px;}
.y7d{bottom:649.079990px;}
.y11e{bottom:651.060001px;}
.y154{bottom:652.319995px;}
.y1d6{bottom:653.939999px;}
.y1be{bottom:655.920010px;}
.y3f{bottom:655.920300px;}
.y280{bottom:656.100013px;}
.y139{bottom:657.720017px;}
.y186{bottom:661.148433px;}
.y182{bottom:661.499556px;}
.y161{bottom:662.406409px;}
.y19e{bottom:664.920010px;}
.y165{bottom:666.531288px;}
.y100{bottom:666.540012px;}
.y8{bottom:666.771000px;}
.y6b{bottom:668.287650px;}
.y2c1{bottom:669.240006px;}
.y11d{bottom:669.600013px;}
.y29f{bottom:669.779983px;}
.y160{bottom:670.329718px;}
.y1d5{bottom:671.220017px;}
.y1bd{bottom:673.019989px;}
.y164{bottom:674.454048px;}
.y138{bottom:675.000000px;}
.y57{bottom:675.264000px;}
.y27f{bottom:676.800007px;}
.y200{bottom:679.860008px;}
.y9d{bottom:681.480011px;}
.y6a{bottom:683.287650px;}
.y15f{bottom:684.349480px;}
.ydf{bottom:684.540012px;}
.y19d{bottom:685.079990px;}
.y3e{bottom:685.920300px;}
.yb2{bottom:688.500000px;}
.y163{bottom:689.409258px;}
.y2c0{bottom:689.939999px;}
.y1bc{bottom:690.300007px;}
.y7c{bottom:690.480011px;}
.y137{bottom:692.279983px;}
.y27e{bottom:697.500000px;}
.y69{bottom:698.287650px;}
.y1ff{bottom:699.120002px;}
.yff{bottom:699.300007px;}
.y11c{bottom:700.199993px;}
.y19c{bottom:702.180004px;}
.y24e{bottom:702.899621px;}
.y24a{bottom:703.075511px;}
.y1d4{bottom:705.779983px;}
.y1bb{bottom:707.579990px;}
.y56{bottom:707.664000px;}
.y136{bottom:709.379998px;}
.y2bf{bottom:710.639992px;}
.y29e{bottom:711.180004px;}
.y68{bottom:713.287650px;}
.y12e{bottom:713.879998px;}
.y1fe{bottom:718.019989px;}
.y27d{bottom:718.199993px;}
.y19b{bottom:719.459988px;}
.yb1{bottom:719.819995px;}
.yfe{bottom:721.620002px;}
.y9c{bottom:722.879998px;}
.y238{bottom:724.500000px;}
.y1ba{bottom:724.860008px;}
.yde{bottom:725.939999px;}
.y7{bottom:726.298500px;}
.y135{bottom:726.660015px;}
.y11b{bottom:727.740006px;}
.y23a{bottom:728.279983px;}
.y3d{bottom:729.420300px;}
.y7b{bottom:731.879998px;}
.y19a{bottom:736.740006px;}
.y27c{bottom:738.899986px;}
.y55{bottom:740.064000px;}
.y1d3{bottom:740.160015px;}
.y67{bottom:741.043650px;}
.y39{bottom:741.600150px;}
.y1b9{bottom:742.139992px;}
.y134{bottom:747.180004px;}
.yb0{bottom:747.899986px;}
.y132{bottom:748.980011px;}
.y1fd{bottom:751.860008px;}
.y29d{bottom:752.579990px;}
.y3{bottom:752.599495px;}
.y26e{bottom:753.657838px;}
.y26a{bottom:753.842683px;}
.y199{bottom:754.019989px;}
.y1d2{bottom:754.199993px;}
.y1b7{bottom:756.000000px;}
.y66{bottom:756.043650px;}
.yaf{bottom:756.899986px;}
.y1b5{bottom:757.800007px;}
.y237{bottom:759.420010px;}
.y27b{bottom:759.600013px;}
.y38{bottom:759.600150px;}
.y9b{bottom:764.279983px;}
.y14e{bottom:765.538904px;}
.y14a{bottom:767.151798px;}
.ydd{bottom:767.339985px;}
.y1fc{bottom:770.939999px;}
.y198{bottom:771.300007px;}
.yfd{bottom:772.019989px;}
.y7a{bottom:773.279983px;}
.y14d{bottom:773.636836px;}
.y1e5{bottom:774.543796px;}
.y149{bottom:775.073797px;}
.y1ce{bottom:775.624874px;}
.y3c{bottom:777.420300px;}
.y37{bottom:777.600150px;}
.y25a{bottom:778.680004px;}
.y1c9{bottom:778.680770px;}
.y27a{bottom:780.300007px;}
.y1e4{bottom:780.482048px;}
.y1cd{bottom:781.565755px;}
.y65{bottom:783.799500px;}
.y1c8{bottom:784.621674px;}
.y197{bottom:788.579990px;}
.y14c{bottom:788.585749px;}
.y1fb{bottom:789.839985px;}
.y148{bottom:790.014963px;}
.y1e3{bottom:790.019819px;}
.y258{bottom:792.720017px;}
.y1cc{bottom:792.894885px;}
.y236{bottom:792.899986px;}
.y1d0{bottom:793.977510px;}
.y29c{bottom:793.980011px;}
.yae{bottom:795.060001px;}
.y36{bottom:795.600150px;}
.y1e8{bottom:795.961084px;}
.y1c7{bottom:795.969524px;}
.y259{bottom:797.220017px;}
.y64{bottom:798.799500px;}
.y279{bottom:801.000000px;}
.yad{bottom:804.060001px;}
.y9a{bottom:805.680004px;}
.y261{bottom:807.298108px;}
.ydc{bottom:808.740006px;}
.y1fa{bottom:808.920010px;}
.y265{bottom:811.262420px;}
.y235{bottom:811.439999px;}
.yfc{bottom:813.420010px;}
.y63{bottom:813.799500px;}
.y79{bottom:814.680004px;}
.y260{bottom:815.399414px;}
.y264{bottom:819.185192px;}
.y195{bottom:819.720017px;}
.y278{bottom:821.699993px;}
.y196{bottom:824.220017px;}
.y3b{bottom:825.420300px;}
.y1f9{bottom:827.819995px;}
.y234{bottom:828.720017px;}
.y35{bottom:831.600150px;}
.y263{bottom:833.939805px;}
.y1ad{bottom:835.203308px;}
.y29b{bottom:835.379998px;}
.y1b1{bottom:838.797914px;}
.y25f{bottom:840.063776px;}
.y62{bottom:841.555350px;}
.y277{bottom:842.399986px;}
.y1ac{bottom:843.125094px;}
.y232{bottom:843.480011px;}
.y185{bottom:846.180158px;}
.y233{bottom:846.360008px;}
.y189{bottom:846.543912px;}
.y1b0{bottom:846.895822px;}
.y1f8{bottom:846.899986px;}
.y99{bottom:847.079990px;}
.ydb{bottom:852.120002px;}
.yfb{bottom:854.819995px;}
.yac{bottom:855.360008px;}
.y1ab{bottom:855.893849px;}
.y78{bottom:856.079990px;}
.y61{bottom:856.555350px;}
.y230{bottom:859.860008px;}
.y231{bottom:862.740006px;}
.y276{bottom:863.100013px;}
.y1f7{bottom:865.800007px;}
.y1af{bottom:867.064821px;}
.y162{bottom:867.958194px;}
.y166{bottom:868.135506px;}
.y17a{bottom:871.560001px;}
.y3a{bottom:873.420300px;}
.y22e{bottom:876.060001px;}
.y29a{bottom:876.779983px;}
.y22f{bottom:878.939999px;}
.y2{bottom:879.369000px;}
.y275{bottom:883.800007px;}
.y60{bottom:884.311350px;}
.y1f6{bottom:884.879998px;}
.y98{bottom:888.480011px;}
.y22c{bottom:892.259994px;}
.y152{bottom:892.800007px;}
.yda{bottom:895.680004px;}
.yfa{bottom:896.220017px;}
.yab{bottom:896.759994px;}
.y77{bottom:897.480011px;}
.y5f{bottom:899.311350px;}
.y49{bottom:901.200300px;}
.y179{bottom:902.879998px;}
.y1f5{bottom:903.780001px;}
.y274{bottom:904.500000px;}
.y229{bottom:908.639992px;}
.y22b{bottom:911.520006px;}
.y5e{bottom:914.311350px;}
.y299{bottom:918.180004px;}
.y34{bottom:921.600150px;}
.y1f4{bottom:922.680004px;}
.y226{bottom:924.840002px;}
.y178{bottom:925.199993px;}
.y228{bottom:927.719999px;}
.y151{bottom:928.620002px;}
.y97{bottom:929.879998px;}
.yd9{bottom:937.259994px;}
.yf9{bottom:937.620002px;}
.yaa{bottom:938.699993px;}
.y76{bottom:938.879998px;}
.y33{bottom:939.600150px;}
.y11a{bottom:940.860008px;}
.y224{bottom:941.219999px;}
.y1f3{bottom:941.759994px;}
.y5d{bottom:942.067200px;}
.y225{bottom:944.099997px;}
.y273{bottom:945.900003px;}
.y150{bottom:949.319996px;}
.y222{bottom:957.419992px;}
.y32{bottom:957.600150px;}
.y177{bottom:959.580008px;}
.y1f2{bottom:960.659998px;}
.y1e6{bottom:961.558683px;}
.y119{bottom:961.560001px;}
.y1cf{bottom:961.740247px;}
.y1ca{bottom:962.276050px;}
.y272{bottom:966.599997px;}
.y1{bottom:966.726000px;}
.y14f{bottom:968.217110px;}
.y14b{bottom:968.401796px;}
.y5c{bottom:969.823200px;}
.y96{bottom:971.280001px;}
.y220{bottom:973.620002px;}
.y31{bottom:975.600150px;}
.yf8{bottom:979.020006px;}
.yd8{bottom:979.379998px;}
.y1e7{bottom:979.383352px;}
.y1cb{bottom:979.559481px;}
.y1d1{bottom:979.561519px;}
.y176{bottom:979.740006px;}
.y75{bottom:980.280001px;}
.y5b{bottom:984.823200px;}
.y271{bottom:987.300007px;}
.y21f{bottom:992.159998px;}
.y30{bottom:993.600150px;}
.y118{bottom:995.580008px;}
.y175{bottom:997.020006px;}
.y5a{bottom:999.823200px;}
.y298{bottom:1000.979994px;}
.y131{bottom:1003.680004px;}
.y1b4{bottom:1004.219999px;}
.y21e{bottom:1007.639992px;}
.y270{bottom:1008.000000px;}
.y262{bottom:1010.343064px;}
.y266{bottom:1010.698589px;}
.y2f{bottom:1011.600150px;}
.y117{bottom:1014.300007px;}
.y59{bottom:1014.823200px;}
.yd7{bottom:1020.960004px;}
.y74{bottom:1021.680004px;}
.y1b3{bottom:1023.120002px;}
.y26f{bottom:1028.699993px;}
.y116{bottom:1031.580008px;}
.y257{bottom:1035.000000px;}
.y1ae{bottom:1041.118823px;}
.y1b2{bottom:1041.478073px;}
.y130{bottom:1042.379998px;}
.y58{bottom:1044.823200px;}
.y2e{bottom:1047.600150px;}
.y115{bottom:1048.680004px;}
.y193{bottom:1062.719999px;}
.yd6{bottom:1062.900003px;}
.y73{bottom:1063.079999px;}
.y21d{bottom:1064.519998px;}
.y2d{bottom:1065.600150px;}
.y114{bottom:1065.959997px;}
.y8d{bottom:1101.060001px;}
.y8c{bottom:1119.960000px;}
.h2c{height:8.638607px;}
.h3c{height:13.319962px;}
.h52{height:13.319996px;}
.h6c{height:13.320030px;}
.h66{height:14.939965px;}
.h37{height:14.939999px;}
.h68{height:14.940016px;}
.h28{height:14.940033px;}
.h63{height:14.940034px;}
.h6b{height:15.299973px;}
.h74{height:15.300042px;}
.h3b{height:15.479943px;}
.h48{height:15.480010px;}
.h39{height:15.480011px;}
.h69{height:15.659998px;}
.h67{height:15.659999px;}
.h47{height:16.019989px;}
.h27{height:16.379997px;}
.h3a{height:17.099945px;}
.h38{height:17.279983px;}
.h51{height:17.280001px;}
.h5c{height:17.639992px;}
.h55{height:17.819996px;}
.h54{height:18.539979px;}
.h6d{height:19.980010px;}
.h6a{height:19.980011px;}
.h32{height:20.699993px;}
.h56{height:21.301117px;}
.h59{height:21.610614px;}
.h5e{height:21.708490px;}
.h43{height:28.418242px;}
.h45{height:28.550506px;}
.h72{height:28.748902px;}
.h4f{height:28.815034px;}
.h70{height:28.947298px;}
.h33{height:29.014753px;}
.h3f{height:29.080885px;}
.h35{height:29.213149px;}
.h75{height:29.279281px;}
.h6e{height:29.566294px;}
.h3d{height:29.609941px;}
.h29{height:29.698558px;}
.h41{height:29.764690px;}
.h4d{height:29.809660px;}
.h4b{height:29.830822px;}
.h2a{height:29.963086px;}
.h49{height:30.162805px;}
.h57{height:30.234227px;}
.h2b{height:30.582081px;}
.h5a{height:30.673344px;}
.h5f{height:30.812221px;}
.h2d{height:30.957711px;}
.h7{height:32.130000px;}
.h19{height:35.501369px;}
.h11{height:38.400000px;}
.h44{height:39.244051px;}
.h46{height:39.426575px;}
.h73{height:39.701684px;}
.h64{height:39.765455px;}
.h50{height:39.792946px;}
.h58{height:39.853788px;}
.h71{height:39.975471px;}
.h34{height:40.066733px;}
.h40{height:40.159317px;}
.h36{height:40.341842px;}
.h5b{height:40.433104px;}
.h62{height:40.528657px;}
.h60{height:40.615628px;}
.h6f{height:40.829896px;}
.h3e{height:40.890737px;}
.h53{height:41.012420px;}
.h42{height:41.103682px;}
.h4e{height:41.164524px;}
.h4c{height:41.194945px;}
.h76{height:41.378792px;}
.h30{height:41.457018px;}
.h4a{height:41.652578px;}
.ha{height:43.200000px;}
.h2e{height:44.006842px;}
.h6{height:45.900000px;}
.he{height:48.000000px;}
.h3{height:48.195000px;}
.h23{height:48.257820px;}
.h65{height:48.344898px;}
.h25{height:48.778776px;}
.h2f{height:49.714967px;}
.h31{height:53.020496px;}
.h16{height:53.501369px;}
.h15{height:54.038096px;}
.h2{height:55.080000px;}
.h9{height:55.200000px;}
.hd{height:57.600000px;}
.h26{height:59.302854px;}
.h61{height:61.146614px;}
.h12{height:63.224407px;}
.h13{height:64.459729px;}
.h14{height:65.759343px;}
.h24{height:66.257820px;}
.h5d{height:66.947878px;}
.h17{height:66.947946px;}
.h1a{height:66.948013px;}
.h1c{height:66.948018px;}
.h18{height:66.948153px;}
.h22{height:66.948157px;}
.h10{height:67.200000px;}
.hf{height:76.800000px;}
.h5{height:78.030000px;}
.h1f{height:79.829006px;}
.h1b{height:83.318718px;}
.hc{height:86.400000px;}
.h21{height:94.229060px;}
.h20{height:100.439964px;}
.h1d{height:107.500820px;}
.h4{height:119.055004px;}
.hb{height:124.800000px;}
.h1e{height:164.678659px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w24{width:3.599945px;}
.w4{width:5.939998px;}
.w5{width:5.939999px;}
.w19{width:7.559966px;}
.w21{width:7.559967px;}
.w29{width:7.559984px;}
.w14{width:7.560001px;}
.w1b{width:7.560002px;}
.w27{width:7.560010px;}
.w1f{width:7.560036px;}
.w12{width:7.920009px;}
.wf{width:8.099945px;}
.w9{width:8.099980px;}
.we{width:8.100013px;}
.wa{width:8.279983px;}
.w2d{width:8.279984px;}
.w11{width:8.280018px;}
.w6{width:8.459988px;}
.w7{width:8.460022px;}
.w13{width:9.179970px;}
.w10{width:9.179971px;}
.wc{width:9.180003px;}
.wb{width:9.180004px;}
.wd{width:9.180039px;}
.w23{width:16.560035px;}
.w8{width:16.918010px;}
.w26{width:26.459995px;}
.w1a{width:45.719999px;}
.w25{width:45.720008px;}
.w1d{width:54.360008px;}
.w18{width:68.759994px;}
.w16{width:69.120003px;}
.w1c{width:82.620002px;}
.w28{width:82.620011px;}
.w1e{width:92.699992px;}
.w20{width:92.700027px;}
.w15{width:119.339984px;}
.w17{width:124.019990px;}
.w2b{width:143.099980px;}
.w2c{width:150.120002px;}
.w22{width:264.959988px;}
.w2a{width:282.059967px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x6{left:-864.000000px;}
.x1a{left:-1.800007px;}
.x0{left:0.000000px;}
.x8{left:33.653250px;}
.xa{left:43.581300px;}
.x5{left:44.644200px;}
.xc0{left:54.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:108.000000px;}
.x2a{left:113.040003px;}
.x47{left:114.840002px;}
.x96{left:116.099997px;}
.xaf{left:121.860000px;}
.xb{left:128.250000px;}
.xb7{left:133.379998px;}
.x12{left:135.000000px;}
.x32{left:136.258508px;}
.x6a{left:137.701317px;}
.x2b{left:140.040003px;}
.x5a{left:142.381274px;}
.x15{left:145.259994px;}
.x53{left:146.343638px;}
.x6b{left:147.596918px;}
.x82{left:150.660771px;}
.x5b{left:151.737645px;}
.x75{left:154.075573px;}
.x10{left:162.000000px;}
.x8e{left:164.520006px;}
.x3b{left:167.400003px;}
.x9{left:170.802000px;}
.x3f{left:178.199993px;}
.x62{left:181.080008px;}
.x60{left:186.300007px;}
.x99{left:199.259994px;}
.x98{left:201.960005px;}
.x4{left:203.484001px;}
.x9a{left:205.379998px;}
.x41{left:207.000000px;}
.xe{left:208.505250px;}
.x76{left:211.133827px;}
.xb2{left:212.583329px;}
.x8f{left:216.180005px;}
.x5f{left:218.340002px;}
.x9c{left:225.000000px;}
.x9d{left:226.080008px;}
.x9b{left:227.159998px;}
.x7{left:229.500000px;}
.x49{left:233.460005px;}
.x61{left:235.800007px;}
.x3e{left:237.599997px;}
.x5c{left:240.118827px;}
.x66{left:242.103136px;}
.x31{left:244.080008px;}
.x2e{left:245.340002px;}
.x73{left:249.840002px;}
.x40{left:255.419992px;}
.x4f{left:258.120002px;}
.x6d{left:260.280001px;}
.x7f{left:263.340002px;}
.x43{left:277.924173px;}
.xbb{left:279.535996px;}
.x54{left:281.883708px;}
.x33{left:283.313599px;}
.x37{left:286.556787px;}
.x80{left:290.879998px;}
.x48{left:293.399987px;}
.x74{left:299.879998px;}
.x9e{left:303.120002px;}
.x50{left:305.639992px;}
.x83{left:306.722159px;}
.x6e{left:307.800007px;}
.x2d{left:310.500000px;}
.x30{left:312.660015px;}
.xa0{left:317.879998px;}
.x13{left:324.000000px;}
.x9f{left:327.779983px;}
.x97{left:332.639992px;}
.x8d{left:333.899987px;}
.x78{left:335.335680px;}
.x84{left:346.860623px;}
.x90{left:351.720017px;}
.x77{left:364.312168px;}
.xa1{left:372.240006px;}
.x26{left:381.240006px;}
.x4b{left:384.839985px;}
.x63{left:387.000000px;}
.x27{left:388.800007px;}
.x3c{left:390.959988px;}
.x18{left:392.579990px;}
.x28{left:394.560001px;}
.xbe{left:397.439999px;}
.x19{left:400.139992px;}
.x1b{left:405.899987px;}
.xa2{left:407.519989px;}
.xf{left:409.500000px;}
.x1c{left:411.660015px;}
.x2c{left:413.819996px;}
.x1d{left:417.420010px;}
.xa3{left:421.920010px;}
.x1e{left:423.180005px;}
.x8c{left:426.420010px;}
.x1f{left:428.939999px;}
.x20{left:434.699993px;}
.x16{left:438.480011px;}
.x21{left:440.459988px;}
.xb8{left:442.980011px;}
.x22{left:446.220017px;}
.x4d{left:448.379998px;}
.x14{left:450.540012px;}
.x23{left:451.980011px;}
.x3{left:454.959000px;}
.x24{left:457.740006px;}
.x17{left:459.000000px;}
.x25{left:462.779983px;}
.x91{left:471.060001px;}
.x29{left:472.500000px;}
.x44{left:475.921299px;}
.xb4{left:482.394122px;}
.x55{left:484.026746px;}
.xd{left:486.000000px;}
.x34{left:487.251850px;}
.x38{left:488.350242px;}
.x35{left:490.128676px;}
.x71{left:491.943179px;}
.x56{left:493.729024px;}
.x85{left:495.358970px;}
.x67{left:498.952271px;}
.x5d{left:500.037460px;}
.x72{left:501.657838px;}
.xa4{left:514.620002px;}
.x7a{left:517.859766px;}
.x87{left:526.495344px;}
.x4c{left:528.120002px;}
.xb1{left:529.740006px;}
.x64{left:532.439999px;}
.x92{left:540.180005px;}
.xb6{left:549.538487px;}
.x79{left:550.805913px;}
.x86{left:553.498689px;}
.xa6{left:554.759994px;}
.xa5{left:561.420010px;}
.xad{left:569.879998px;}
.x46{left:574.389157px;}
.x51{left:576.360008px;}
.xa7{left:579.059967px;}
.x6f{left:580.679970px;}
.x59{left:582.118452px;}
.x69{left:584.829011px;}
.x6c{left:585.902555px;}
.xae{left:588.419975px;}
.x5e{left:590.400894px;}
.x93{left:592.200027px;}
.x45{left:619.196023px;}
.xb5{left:623.522734px;}
.xbc{left:625.682843px;}
.x57{left:626.749023px;}
.xb3{left:628.748847px;}
.x58{left:630.554800px;}
.xbd{left:632.510686px;}
.x36{left:634.308378px;}
.x68{left:635.389146px;}
.x39{left:637.031231px;}
.x7b{left:640.793114px;}
.x88{left:644.036888px;}
.x7c{left:648.187529px;}
.x89{left:651.419589px;}
.x7e{left:676.800995px;}
.xaa{left:679.860008px;}
.xab{left:682.379998px;}
.xa8{left:684.000000px;}
.x3a{left:686.340019px;}
.x70{left:689.940033px;}
.x8b{left:691.557246px;}
.xa9{left:700.200027px;}
.x7d{left:706.147718px;}
.x8a{left:709.559381px;}
.x94{left:716.220017px;}
.x3d{left:734.399987px;}
.x65{left:738.360008px;}
.xac{left:775.080025px;}
.x42{left:782.460023px;}
.x95{left:784.980011px;}
.xb9{left:786.960023px;}
.x4a{left:789.120002px;}
.x52{left:790.740006px;}
.xb0{left:794.340019px;}
.x81{left:795.600014px;}
.x4e{left:797.580025px;}
.xba{left:800.460023px;}
.x2f{left:801.539978px;}
.x11{left:810.000000px;}
.xc2{left:951.653250px;}
.xbf{left:962.644200px;}
.xc3{left:1088.802000px;}
.xc1{left:1147.500000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v9{vertical-align:-12.800048pt;}
.vb{vertical-align:-10.880124pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:12.800052pt;}
.v1{vertical-align:21.119932pt;}
.v3{vertical-align:23.680052pt;}
.v6{vertical-align:32.000000pt;}
.v4{vertical-align:37.760012pt;}
.v5{vertical-align:54.400024pt;}
.v8{vertical-align:86.400024pt;}
.v7{vertical-align:96.000000pt;}
.ls1{letter-spacing:-2.773333pt;}
.ls2{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-1.333333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.009732pt;}
.ls5{letter-spacing:0.010730pt;}
.ls8{letter-spacing:0.021037pt;}
.ls20{letter-spacing:0.037214pt;}
.ls22{letter-spacing:0.037274pt;}
.lsb{letter-spacing:0.059376pt;}
.ls19{letter-spacing:0.060600pt;}
.ls24{letter-spacing:0.119603pt;}
.ls1c{letter-spacing:0.225556pt;}
.ls2c{letter-spacing:0.225616pt;}
.lsd{letter-spacing:0.226974pt;}
.lsc{letter-spacing:0.226978pt;}
.ls2b{letter-spacing:0.394889pt;}
.ls2d{letter-spacing:0.395013pt;}
.ls7{letter-spacing:1.301037pt;}
.ls6{letter-spacing:1.803903pt;}
.ls29{letter-spacing:2.145660pt;}
.ls9{letter-spacing:2.443859pt;}
.ls1d{letter-spacing:2.785556pt;}
.ls1a{letter-spacing:3.326156pt;}
.ls1e{letter-spacing:3.326396pt;}
.ls21{letter-spacing:3.538165pt;}
.ls23{letter-spacing:3.538229pt;}
.ls11{letter-spacing:3.966064pt;}
.ls1b{letter-spacing:3.966124pt;}
.ls18{letter-spacing:3.966168pt;}
.ls10{letter-spacing:5.246220pt;}
.ls12{letter-spacing:6.421033pt;}
.ls28{letter-spacing:6.760949pt;}
.ls1f{letter-spacing:11.006084pt;}
.ls14{letter-spacing:11.403939pt;}
.ls17{letter-spacing:17.804248pt;}
.lsf{letter-spacing:18.046144pt;}
.ls16{letter-spacing:18.686160pt;}
.ls2a{letter-spacing:19.425444pt;}
.ls25{letter-spacing:48.865600pt;}
.lse{letter-spacing:55.265592pt;}
.ls15{letter-spacing:436.065580pt;}
.lsa{letter-spacing:587.105620pt;}
.ls26{letter-spacing:1040.673546pt;}
.ls27{letter-spacing:1054.113730pt;}
.ws4{word-spacing:-17.705157pt;}
.wsf{word-spacing:-17.704159pt;}
.ws5{word-spacing:-17.694428pt;}
.ws54{word-spacing:-16.278847pt;}
.ws15{word-spacing:-14.686318pt;}
.ws7{word-spacing:-14.053336pt;}
.ws6a{word-spacing:-13.270848pt;}
.ws6{word-spacing:-11.855268pt;}
.ws43{word-spacing:-11.433783pt;}
.ws80{word-spacing:-11.358627pt;}
.ws47{word-spacing:-11.308161pt;}
.ws4b{word-spacing:-11.299810pt;}
.ws36{word-spacing:-11.283109pt;}
.ws52{word-spacing:-11.258057pt;}
.ws2e{word-spacing:-11.224655pt;}
.ws79{word-spacing:-11.099033pt;}
.ws2a{word-spacing:-11.073981pt;}
.ws32{word-spacing:-11.023877pt;}
.ws26{word-spacing:-10.998462pt;}
.ws4f{word-spacing:-10.923307pt;}
.ws7b{word-spacing:-10.898255pt;}
.ws3f{word-spacing:-10.822737pt;}
.ws3b{word-spacing:-10.772633pt;}
.ws69{word-spacing:-10.262761pt;}
.ws8{word-spacing:-9.977880pt;}
.ws1{word-spacing:-9.936000pt;}
.ws16{word-spacing:-9.554993pt;}
.ws3{word-spacing:-8.832000pt;}
.ws22{word-spacing:-8.498003pt;}
.ws64{word-spacing:-8.458065pt;}
.ws1f{word-spacing:-8.394891pt;}
.ws42{word-spacing:-8.279798pt;}
.ws1c{word-spacing:-8.224975pt;}
.ws46{word-spacing:-8.188668pt;}
.ws4a{word-spacing:-8.182859pt;}
.ws35{word-spacing:-8.170515pt;}
.ws19{word-spacing:-8.152361pt;}
.wsa{word-spacing:-8.150930pt;}
.ws2d{word-spacing:-8.128035pt;}
.ws6d{word-spacing:-8.116054pt;}
.ws78{word-spacing:-8.037268pt;}
.ws29{word-spacing:-8.019115pt;}
.ws31{word-spacing:-7.982808pt;}
.ws25{word-spacing:-7.964654pt;}
.ws72{word-spacing:-7.946138pt;}
.ws4e{word-spacing:-7.909831pt;}
.ws75{word-spacing:-7.891677pt;}
.ws3e{word-spacing:-7.837217pt;}
.ws3a{word-spacing:-7.800910pt;}
.ws61{word-spacing:-5.959059pt;}
.ws5c{word-spacing:-5.932191pt;}
.ws57{word-spacing:-5.847233pt;}
.ws2{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:2.646052pt;}
.wsc{word-spacing:3.381347pt;}
.ws12{word-spacing:3.509232pt;}
.wse{word-spacing:4.021487pt;}
.ws14{word-spacing:6.858882pt;}
.ws10{word-spacing:7.515129pt;}
.ws13{word-spacing:7.826368pt;}
.ws11{word-spacing:10.316228pt;}
.wsd{word-spacing:11.125845pt;}
.wsb{word-spacing:12.405997pt;}
.ws1d{word-spacing:67.593507pt;}
.ws17{word-spacing:67.864554pt;}
.ws56{word-spacing:68.667982pt;}
.ws59{word-spacing:68.674462pt;}
.ws5e{word-spacing:69.691680pt;}
.ws5b{word-spacing:69.698446pt;}
.ws60{word-spacing:70.211037pt;}
.ws63{word-spacing:70.211069pt;}
.ws68{word-spacing:70.211197pt;}
.ws66{word-spacing:70.217609pt;}
.ws70{word-spacing:72.529168pt;}
.ws4c{word-spacing:77.225914pt;}
.ws48{word-spacing:78.878076pt;}
.ws50{word-spacing:79.636054pt;}
.ws67{word-spacing:83.068252pt;}
.ws20{word-spacing:83.755597pt;}
.ws5a{word-spacing:86.850999pt;}
.ws58{word-spacing:88.477069pt;}
.ws65{word-spacing:89.300438pt;}
.ws6b{word-spacing:89.821357pt;}
.ws2b{word-spacing:96.930602pt;}
.ws76{word-spacing:104.825145pt;}
.ws53{word-spacing:105.728361pt;}
.ws38{word-spacing:109.487921pt;}
.ws3c{word-spacing:110.040334pt;}
.ws44{word-spacing:110.964613pt;}
.ws5f{word-spacing:113.003030pt;}
.ws55{word-spacing:113.347929pt;}
.ws33{word-spacing:113.450891pt;}
.ws7a{word-spacing:114.919301pt;}
.ws7c{word-spacing:115.317861pt;}
.ws7e{word-spacing:115.793053pt;}
.ws40{word-spacing:116.291121pt;}
.ws27{word-spacing:117.577869pt;}
.ws62{word-spacing:118.696804pt;}
.ws6e{word-spacing:122.312198pt;}
.ws1a{word-spacing:141.913298pt;}
.ws23{word-spacing:150.449395pt;}
.ws2f{word-spacing:162.522887pt;}
.ws73{word-spacing:164.007762pt;}
.ws5d{word-spacing:165.496984pt;}
.ws37{word-spacing:165.849345pt;}
.ws3d{word-spacing:168.849367pt;}
.ws39{word-spacing:168.935151pt;}
.ws4d{word-spacing:171.119634pt;}
.ws74{word-spacing:171.161625pt;}
.ws30{word-spacing:172.117980pt;}
.ws24{word-spacing:172.165311pt;}
.ws71{word-spacing:172.202774pt;}
.ws28{word-spacing:173.298363pt;}
.ws77{word-spacing:173.793401pt;}
.ws6c{word-spacing:174.928309pt;}
.ws2c{word-spacing:175.499965pt;}
.ws51{word-spacing:175.576122pt;}
.ws18{word-spacing:176.154898pt;}
.ws7d{word-spacing:176.664829pt;}
.ws34{word-spacing:176.705240pt;}
.ws6f{word-spacing:176.761711pt;}
.ws49{word-spacing:177.287745pt;}
.ws45{word-spacing:177.296253pt;}
.ws1b{word-spacing:177.733041pt;}
.ws41{word-spacing:178.266025pt;}
.ws7f{word-spacing:178.390479pt;}
.ws1e{word-spacing:181.778092pt;}
.ws21{word-spacing:183.930355pt;}
._7{margin-left:-11.373867pt;}
._6{margin-left:-9.152000pt;}
._5{margin-left:-6.947200pt;}
._8{margin-left:-5.866667pt;}
._2{margin-left:-4.853333pt;}
._4{margin-left:-3.210667pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._3{width:1.237333pt;}
._a{width:2.497357pt;}
._9{width:3.557867pt;}
._14{width:4.540447pt;}
._c{width:5.546820pt;}
._b{width:6.501914pt;}
._f{width:7.765086pt;}
._10{width:8.955758pt;}
._11{width:9.882362pt;}
._17{width:10.968147pt;}
._16{width:12.391489pt;}
._15{width:13.379365pt;}
._1e{width:14.492236pt;}
._1a{width:15.463729pt;}
._1b{width:16.439945pt;}
._2d{width:17.511006pt;}
._43{width:18.401681pt;}
._18{width:19.511730pt;}
._19{width:21.130658pt;}
._1c{width:22.279298pt;}
._1d{width:23.410513pt;}
._22{width:24.390051pt;}
._13{width:25.305736pt;}
._d{width:26.536221pt;}
._e{width:28.097732pt;}
._1f{width:29.074554pt;}
._2a{width:30.537852pt;}
._29{width:31.486079pt;}
._27{width:32.745371pt;}
._28{width:33.644492pt;}
._24{width:34.694595pt;}
._23{width:35.736945pt;}
._25{width:36.687391pt;}
._26{width:37.748413pt;}
._21{width:41.720686pt;}
._20{width:43.136655pt;}
._82{width:54.240157pt;}
._83{width:56.410690pt;}
._84{width:57.887947pt;}
._86{width:68.645755pt;}
._85{width:69.691272pt;}
._59{width:75.820475pt;}
._3d{width:76.877825pt;}
._34{width:83.036064pt;}
._3c{width:85.422907pt;}
._3a{width:87.872119pt;}
._7b{width:89.167119pt;}
._5c{width:90.094341pt;}
._33{width:91.262824pt;}
._7a{width:92.611340pt;}
._3b{width:93.737434pt;}
._5a{width:95.626039pt;}
._57{width:96.734054pt;}
._56{width:98.264720pt;}
._5d{width:99.165733pt;}
._41{width:100.515729pt;}
._3f{width:104.998320pt;}
._74{width:106.022912pt;}
._40{width:108.820104pt;}
._75{width:110.860239pt;}
._80{width:113.830238pt;}
._76{width:115.329644pt;}
._58{width:116.796950pt;}
._7f{width:119.894888pt;}
._50{width:121.200456pt;}
._4f{width:122.615589pt;}
._51{width:125.544965pt;}
._49{width:126.500060pt;}
._81{width:127.616825pt;}
._48{width:129.572036pt;}
._4e{width:131.056013pt;}
._54{width:132.881115pt;}
._78{width:134.516651pt;}
._77{width:136.262338pt;}
._6b{width:142.808529pt;}
._38{width:157.228615pt;}
._37{width:165.529182pt;}
._46{width:167.593156pt;}
._5b{width:172.836876pt;}
._2e{width:173.870561pt;}
._7c{width:175.862356pt;}
._7d{width:176.908590pt;}
._4d{width:177.887420pt;}
._4c{width:178.825541pt;}
._47{width:181.407538pt;}
._4a{width:182.660470pt;}
._79{width:183.611740pt;}
._35{width:185.296153pt;}
._36{width:186.190749pt;}
._39{width:187.131961pt;}
._55{width:188.497365pt;}
._3e{width:191.476032pt;}
._42{width:193.739823pt;}
._6c{width:221.985220pt;}
._70{width:235.576835pt;}
._71{width:248.991411pt;}
._2f{width:255.702011pt;}
._6f{width:301.930328pt;}
._73{width:311.280670pt;}
._6d{width:324.879584pt;}
._72{width:343.132240pt;}
._6e{width:357.025908pt;}
._30{width:399.231872pt;}
._45{width:661.916686pt;}
._66{width:663.513651pt;}
._2b{width:668.171486pt;}
._60{width:683.442431pt;}
._5e{width:686.243334pt;}
._63{width:696.695586pt;}
._65{width:698.044343pt;}
._68{width:699.657910pt;}
._62{width:709.734562pt;}
._64{width:713.672388pt;}
._6a{width:721.615295pt;}
._2c{width:724.103945pt;}
._61{width:730.238576pt;}
._5f{width:743.134199pt;}
._44{width:750.128748pt;}
._12{width:751.816777pt;}
._7e{width:753.561890pt;}
._53{width:754.821330pt;}
._69{width:769.476960pt;}
._4b{width:808.233096pt;}
._52{width:828.910584pt;}
._67{width:850.052936pt;}
._32{width:1002.631417pt;}
._31{width:1003.806785pt;}
.fs2f{font-size:21.109145pt;}
.fs32{font-size:21.415854pt;}
.fs35{font-size:21.512847pt;}
.fs22{font-size:28.162129pt;}
.fs24{font-size:28.293201pt;}
.fs3d{font-size:28.489809pt;}
.fs2c{font-size:28.555345pt;}
.fs3b{font-size:28.686417pt;}
.fs18{font-size:28.753264pt;}
.fs1e{font-size:28.818800pt;}
.fs1a{font-size:28.949872pt;}
.fs3f{font-size:29.015408pt;}
.fs39{font-size:29.299834pt;}
.fs1c{font-size:29.343088pt;}
.fs14{font-size:29.430906pt;}
.fs20{font-size:29.496442pt;}
.fs2a{font-size:29.541007pt;}
.fs28{font-size:29.561978pt;}
.fs15{font-size:29.693050pt;}
.fs26{font-size:29.890969pt;}
.fs30{font-size:29.961748pt;}
.fs16{font-size:30.306467pt;}
.fs33{font-size:30.396907pt;}
.fs36{font-size:30.534532pt;}
.fs17{font-size:30.678712pt;}
.fs11{font-size:34.494560pt;}
.fs13{font-size:37.049680pt;}
.fs4{font-size:37.333333pt;}
.fs23{font-size:38.890372pt;}
.fs25{font-size:39.071252pt;}
.fs3e{font-size:39.343881pt;}
.fs2d{font-size:39.434321pt;}
.fs31{font-size:39.494614pt;}
.fs3c{font-size:39.615200pt;}
.fs19{font-size:39.705640pt;}
.fs1f{font-size:39.797391pt;}
.fs1b{font-size:39.978270pt;}
.fs34{font-size:40.068710pt;}
.fs37{font-size:40.249589pt;}
.fs3a{font-size:40.461926pt;}
.fs1d{font-size:40.522219pt;}
.fs2e{font-size:40.642805pt;}
.fs21{font-size:40.733245pt;}
.fs2b{font-size:40.793538pt;}
.fs29{font-size:40.823684pt;}
.fs40{font-size:41.005874pt;}
.fs27{font-size:41.277193pt;}
.fsb{font-size:42.666667pt;}
.fs10{font-size:42.798800pt;}
.fs12{font-size:45.354000pt;}
.fs38{font-size:47.909200pt;}
.fs6{font-size:48.000000pt;}
.fsf{font-size:53.019200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.768400pt;}
.fs5{font-size:61.333333pt;}
.fsc{font-size:63.878800pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsd{font-size:74.738000pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:0.802315pt;}
.y103{bottom:1.280029pt;}
.y241{bottom:1.440002pt;}
.y23c{bottom:1.760010pt;}
.y15d{bottom:1.919983pt;}
.y17c{bottom:2.399994pt;}
.y227{bottom:2.559997pt;}
.y1b8{bottom:2.559998pt;}
.y22a{bottom:2.560012pt;}
.y223{bottom:2.560013pt;}
.y22d{bottom:2.720001pt;}
.y221{bottom:2.720002pt;}
.y15b{bottom:2.879944pt;}
.y157{bottom:2.879974pt;}
.y194{bottom:2.879998pt;}
.y1b6{bottom:3.199982pt;}
.y239{bottom:3.359985pt;}
.y23e{bottom:3.360046pt;}
.y133{bottom:3.519989pt;}
.y6{bottom:31.933340pt;}
.y28{bottom:36.000000pt;}
.ybe{bottom:39.359985pt;}
.y24{bottom:47.395867pt;}
.y27{bottom:50.666667pt;}
.y8e{bottom:50.880005pt;}
.y83{bottom:52.000000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:65.333333pt;}
.y174{bottom:78.559998pt;}
.y192{bottom:78.719971pt;}
.y25{bottom:80.000000pt;}
.y4{bottom:86.333337pt;}
.y95{bottom:98.880005pt;}
.y1aa{bottom:101.919983pt;}
.y113{bottom:102.559998pt;}
.y1e2{bottom:102.880005pt;}
.y297{bottom:104.960022pt;}
.y12d{bottom:105.119995pt;}
.y15e{bottom:108.799988pt;}
.y21c{bottom:110.719971pt;}
.yd5{bottom:114.239990pt;}
.y1e1{bottom:115.359985pt;}
.y2bd{bottom:116.000000pt;}
.y2be{bottom:116.960022pt;}
.y94{bottom:118.239990pt;}
.y15c{bottom:121.280029pt;}
.y296{bottom:123.359985pt;}
.y23{bottom:123.790666pt;}
.y246{bottom:125.760010pt;}
.ya9{bottom:127.359985pt;}
.y93{bottom:129.599976pt;}
.yd2{bottom:130.719971pt;}
.y21b{bottom:131.200012pt;}
.yc6{bottom:133.599976pt;}
.y2bc{bottom:134.400024pt;}
.y172{bottom:134.720313pt;}
.y8f{bottom:135.359985pt;}
.y16e{bottom:135.511811pt;}
.y147{bottom:137.599976pt;}
.y1a9{bottom:138.719971pt;}
.y112{bottom:141.110935pt;}
.y245{bottom:141.119995pt;}
.y171{bottom:141.440052pt;}
.y295{bottom:141.760010pt;}
.y12c{bottom:141.919983pt;}
.y16d{bottom:142.393794pt;}
.y10e{bottom:142.556177pt;}
.y21a{bottom:143.679993pt;}
.y92{bottom:144.799988pt;}
.yc5{bottom:145.919983pt;}
.y111{bottom:148.151478pt;}
.yf1{bottom:148.799988pt;}
.y10d{bottom:150.556389pt;}
.y2bb{bottom:152.799988pt;}
.y16c{bottom:153.297293pt;}
.y2a8{bottom:153.760010pt;}
.y170{bottom:154.724050pt;}
.y244{bottom:156.479980pt;}
.yf0{bottom:160.159973pt;}
.yf7{bottom:161.280029pt;}
.y10c{bottom:163.053588pt;}
.y91{bottom:164.159973pt;}
.y2ba{bottom:171.200012pt;}
.y243{bottom:171.840027pt;}
.y8b{bottom:172.159973pt;}
.y110{bottom:172.304245pt;}
.y146{bottom:174.400024pt;}
.y1a{bottom:175.052000pt;}
.yef{bottom:175.520020pt;}
.y90{bottom:176.640015pt;}
.y294{bottom:178.559998pt;}
.y12b{bottom:178.719971pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y242{bottom:187.200012pt;}
.y2b9{bottom:189.599976pt;}
.y2a7{bottom:190.559998pt;}
.yee{bottom:190.880005pt;}
.y2ce{bottom:192.640015pt;}
.yd1{bottom:192.960022pt;}
.y293{bottom:196.960022pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y240{bottom:199.679993pt;}
.y1e0{bottom:200.479980pt;}
.ya8{bottom:200.960022pt;}
.yed{bottom:206.239990pt;}
.y2b8{bottom:208.000000pt;}
.y2cd{bottom:208.479980pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y8a{bottom:208.960022pt;}
.y145{bottom:211.200012pt;}
.y1a8{bottom:212.320007pt;}
.y251{bottom:212.500394pt;}
.yc2{bottom:212.960022pt;}
.y255{bottom:213.769142pt;}
.y292{bottom:215.359985pt;}
.y12a{bottom:215.520020pt;}
.y250{bottom:219.541189pt;}
.y254{bottom:220.809398pt;}
.yc4{bottom:221.280029pt;}
.yec{bottom:221.599976pt;}
.y2b7{bottom:226.400024pt;}
.y2cc{bottom:226.880005pt;}
.y2a6{bottom:227.359985pt;}
.yd0{bottom:229.760010pt;}
.y24f{bottom:230.550809pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y253{bottom:231.676739pt;}
.y291{bottom:233.760010pt;}
.yeb{bottom:236.799988pt;}
.y219{bottom:237.599976pt;}
.ya7{bottom:237.760010pt;}
.y1ee{bottom:241.760010pt;}
.ybd{bottom:242.080017pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y2b6{bottom:244.799988pt;}
.y2cb{bottom:245.280029pt;}
.y89{bottom:245.760010pt;}
.yc3{bottom:246.080017pt;}
.y144{bottom:248.000000pt;}
.y1a7{bottom:249.119995pt;}
.yc0{bottom:249.280029pt;}
.y1df{bottom:250.559998pt;}
.y290{bottom:252.159973pt;}
.yc1{bottom:252.320007pt;}
.yd4{bottom:253.280029pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y218{bottom:254.080017pt;}
.yea{bottom:256.159973pt;}
.y2b5{bottom:263.200012pt;}
.y2ca{bottom:263.679993pt;}
.y2a5{bottom:264.159973pt;}
.ycf{bottom:266.559998pt;}
.ye9{bottom:267.520020pt;}
.y217{bottom:269.440002pt;}
.y28f{bottom:270.559998pt;}
.yf6{bottom:273.599976pt;}
.ya6{bottom:274.559998pt;}
.ybf{bottom:274.719971pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ybb{bottom:277.919983pt;}
.y1ed{bottom:278.559998pt;}
.ybc{bottom:281.440002pt;}
.y2b4{bottom:282.080017pt;}
.yd3{bottom:282.400024pt;}
.y88{bottom:282.559998pt;}
.ye8{bottom:282.880005pt;}
.y143{bottom:284.799988pt;}
.y216{bottom:285.119995pt;}
.y1a6{bottom:285.919983pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1de{bottom:287.359985pt;}
.y180{bottom:287.520020pt;}
.y12f{bottom:288.960022pt;}
.y129{bottom:289.119995pt;}
.y181{bottom:293.760010pt;}
.ye7{bottom:298.400024pt;}
.y215{bottom:299.039978pt;}
.y2b3{bottom:300.479980pt;}
.y18c{bottom:300.627661pt;}
.y2a4{bottom:300.960022pt;}
.yce{bottom:303.359985pt;}
.y48{bottom:303.600133pt;}
.y28e{bottom:307.359985pt;}
.y190{bottom:307.374235pt;}
.y18b{bottom:307.828552pt;}
.y11{bottom:309.452000pt;}
.yf5{bottom:310.400024pt;}
.y16f{bottom:310.717911pt;}
.y173{bottom:310.727317pt;}
.ya5{bottom:311.359985pt;}
.y214{bottom:312.799988pt;}
.ye6{bottom:313.760010pt;}
.y18f{bottom:314.411113pt;}
.y1ec{bottom:315.200012pt;}
.yba{bottom:315.679993pt;}
.y1c6{bottom:316.640015pt;}
.y47{bottom:318.000133pt;}
.y2b2{bottom:318.880005pt;}
.y87{bottom:319.359985pt;}
.y142{bottom:321.599976pt;}
.y213{bottom:324.000000pt;}
.y1dd{bottom:324.159973pt;}
.y105{bottom:325.119995pt;}
.y18e{bottom:325.434423pt;}
.y28d{bottom:325.760010pt;}
.y128{bottom:325.919983pt;}
.y212{bottom:326.559998pt;}
.y15a{bottom:329.280029pt;}
.y159{bottom:332.159973pt;}
.y46{bottom:332.400133pt;}
.y18a{bottom:332.804914pt;}
.ye5{bottom:333.280029pt;}
.y1a5{bottom:333.440002pt;}
.y2b1{bottom:337.280029pt;}
.y2a3{bottom:337.760010pt;}
.ycd{bottom:340.159973pt;}
.y211{bottom:340.320007pt;}
.y10{bottom:343.809333pt;}
.y28c{bottom:344.159973pt;}
.y158{bottom:344.479980pt;}
.ye4{bottom:345.919983pt;}
.y45{bottom:346.800133pt;}
.yf4{bottom:347.200012pt;}
.ya4{bottom:348.159973pt;}
.y104{bottom:349.919983pt;}
.y1eb{bottom:352.000000pt;}
.y210{bottom:352.320007pt;}
.yb9{bottom:353.119995pt;}
.y1c5{bottom:353.440002pt;}
.y2b0{bottom:355.679993pt;}
.y86{bottom:356.159973pt;}
.y169{bottom:357.768392pt;}
.y141{bottom:358.400024pt;}
.y1dc{bottom:360.960022pt;}
.y44{bottom:361.200133pt;}
.y28b{bottom:362.559998pt;}
.yf{bottom:362.706666pt;}
.y127{bottom:362.719971pt;}
.y168{bottom:364.807661pt;}
.y20f{bottom:369.280029pt;}
.y1a4{bottom:370.239990pt;}
.y2a{bottom:371.466933pt;}
.y2af{bottom:374.080017pt;}
.y2a2{bottom:374.559998pt;}
.y43{bottom:375.600133pt;}
.y2c{bottom:376.365467pt;}
.ycc{bottom:376.960022pt;}
.y16b{bottom:378.549030pt;}
.y102{bottom:379.679993pt;}
.y167{bottom:380.147125pt;}
.y20e{bottom:380.479980pt;}
.y28a{bottom:380.960022pt;}
.y10b{bottom:381.295918pt;}
.y108{bottom:382.882978pt;}
.y20d{bottom:383.039978pt;}
.yf3{bottom:384.000000pt;}
.ya3{bottom:384.960022pt;}
.y10a{bottom:388.493076pt;}
.y1ea{bottom:388.799988pt;}
.y107{bottom:389.762893pt;}
.y42{bottom:390.000133pt;}
.yb8{bottom:390.080017pt;}
.y1c4{bottom:390.239990pt;}
.y252{bottom:390.884635pt;}
.y256{bottom:391.033399pt;}
.y2ae{bottom:392.479980pt;}
.y85{bottom:392.960022pt;}
.y140{bottom:395.200012pt;}
.y20c{bottom:396.960022pt;}
.y25e{bottom:397.599976pt;}
.y1db{bottom:397.760010pt;}
.y289{bottom:399.359985pt;}
.y126{bottom:399.520020pt;}
.y109{bottom:402.411090pt;}
.y106{bottom:403.691266pt;}
.y41{bottom:404.400133pt;}
.y54{bottom:406.400133pt;}
.y1a3{bottom:407.039978pt;}
.y23d{bottom:409.599976pt;}
.y20b{bottom:410.719971pt;}
.y2ad{bottom:410.880005pt;}
.y2a1{bottom:411.359985pt;}
.y23f{bottom:412.960022pt;}
.ycb{bottom:413.760010pt;}
.y29{bottom:416.800267pt;}
.y1f1{bottom:417.760010pt;}
.y2b{bottom:418.200133pt;}
.yf2{bottom:420.640015pt;}
.ya2{bottom:421.760010pt;}
.y53{bottom:422.400133pt;}
.y20a{bottom:424.479980pt;}
.y1e9{bottom:425.599976pt;}
.yb7{bottom:426.880005pt;}
.y1c3{bottom:427.039978pt;}
.y23b{bottom:428.000000pt;}
.y25d{bottom:428.159973pt;}
.y2ac{bottom:429.280029pt;}
.y125{bottom:429.599976pt;}
.y84{bottom:429.760010pt;}
.ye{bottom:430.990669pt;}
.y13f{bottom:432.000000pt;}
.y1da{bottom:434.559998pt;}
.y288{bottom:436.159973pt;}
.y52{bottom:438.400133pt;}
.y209{bottom:439.039978pt;}
.y24d{bottom:441.761840pt;}
.y249{bottom:442.559305pt;}
.y25c{bottom:443.520020pt;}
.y1a2{bottom:443.840027pt;}
.yd{bottom:446.990669pt;}
.y2c9{bottom:447.679993pt;}
.y1f0{bottom:448.159973pt;}
.y24c{bottom:448.803405pt;}
.y248{bottom:449.598589pt;}
.yca{bottom:450.559998pt;}
.y208{bottom:453.440002pt;}
.y287{bottom:454.400024pt;}
.y51{bottom:454.400133pt;}
.y124{bottom:458.080017pt;}
.ya1{bottom:458.559998pt;}
.y25b{bottom:458.880005pt;}
.ye3{bottom:460.320007pt;}
.y24b{bottom:461.272727pt;}
.yc{bottom:462.990669pt;}
.yb6{bottom:463.679993pt;}
.y1c2{bottom:463.840027pt;}
.y2c8{bottom:466.080017pt;}
.y2ab{bottom:466.400024pt;}
.y82{bottom:466.559998pt;}
.y72{bottom:466.684400pt;}
.y207{bottom:467.200012pt;}
.y13e{bottom:468.799988pt;}
.y247{bottom:469.439989pt;}
.y50{bottom:470.400133pt;}
.y1d9{bottom:471.359985pt;}
.y286{bottom:472.799988pt;}
.y4c{bottom:473.994933pt;}
.y123{bottom:474.559998pt;}
.y1ef{bottom:475.840027pt;}
.yb{bottom:478.990666pt;}
.y1a1{bottom:480.640015pt;}
.y206{bottom:480.960022pt;}
.y2c7{bottom:484.479980pt;}
.y18d{bottom:484.488351pt;}
.y2aa{bottom:484.799988pt;}
.y191{bottom:484.958671pt;}
.y81{bottom:484.960022pt;}
.y26d{bottom:485.132784pt;}
.y269{bottom:486.087467pt;}
.y4f{bottom:486.400133pt;}
.yc9{bottom:487.359985pt;}
.y285{bottom:491.200012pt;}
.y71{bottom:491.356400pt;}
.y26c{bottom:492.332242pt;}
.y268{bottom:493.286730pt;}
.y205{bottom:494.880005pt;}
.ya{bottom:494.990666pt;}
.ya0{bottom:495.359985pt;}
.ye2{bottom:497.280029pt;}
.yb5{bottom:500.479980pt;}
.y1c1{bottom:500.640015pt;}
.y4b{bottom:501.333467pt;}
.y122{bottom:501.919983pt;}
.y4e{bottom:502.400133pt;}
.y2c6{bottom:502.880005pt;}
.y2a9{bottom:503.200012pt;}
.y80{bottom:503.359985pt;}
.y17f{bottom:503.840027pt;}
.y26b{bottom:503.850713pt;}
.y267{bottom:504.649508pt;}
.y70{bottom:504.689733pt;}
.y13d{bottom:505.599976pt;}
.y17e{bottom:506.719971pt;}
.y1d8{bottom:508.159973pt;}
.y204{bottom:508.640015pt;}
.y284{bottom:509.599976pt;}
.y4a{bottom:517.333467pt;}
.y1a0{bottom:517.440002pt;}
.y6f{bottom:518.023067pt;}
.y121{bottom:518.400024pt;}
.y4d{bottom:518.400133pt;}
.y203{bottom:520.479980pt;}
.y2c5{bottom:521.280029pt;}
.y7f{bottom:521.760010pt;}
.yc8{bottom:524.159973pt;}
.y283{bottom:528.000000pt;}
.y9f{bottom:532.159973pt;}
.ye1{bottom:534.719971pt;}
.y202{bottom:535.039978pt;}
.y1d7{bottom:535.840027pt;}
.y13c{bottom:536.000000pt;}
.yb4{bottom:537.280029pt;}
.y1c0{bottom:537.440002pt;}
.y17d{bottom:539.200012pt;}
.y2c4{bottom:539.679993pt;}
.y7e{bottom:540.159973pt;}
.y40{bottom:540.373600pt;}
.y16a{bottom:541.284092pt;}
.y6e{bottom:542.694933pt;}
.y120{bottom:545.600006pt;}
.y282{bottom:546.399994pt;}
.y17b{bottom:553.119995pt;}
.y13b{bottom:553.920013pt;}
.y19f{bottom:554.239990pt;}
.y6d{bottom:556.028267pt;}
.y2c3{bottom:558.079987pt;}
.y2a0{bottom:558.559998pt;}
.y156{bottom:560.480011pt;}
.yc7{bottom:560.959991pt;}
.y11f{bottom:562.079987pt;}
.y155{bottom:563.359985pt;}
.y281{bottom:564.799988pt;}
.y1bf{bottom:565.119995pt;}
.y184{bottom:566.232961pt;}
.y101{bottom:567.519989pt;}
.y188{bottom:568.486260pt;}
.y9e{bottom:568.959991pt;}
.y13a{bottom:569.279999pt;}
.y6c{bottom:569.361600pt;}
.ye0{bottom:571.679993pt;}
.y183{bottom:573.434797pt;}
.y9{bottom:573.786667pt;}
.y201{bottom:574.239990pt;}
.yb3{bottom:574.559998pt;}
.y187{bottom:575.685523pt;}
.y153{bottom:575.839996pt;}
.y2c2{bottom:576.480011pt;}
.y7d{bottom:576.959991pt;}
.y11e{bottom:578.720001pt;}
.y154{bottom:579.839996pt;}
.y1d6{bottom:581.279999pt;}
.y1be{bottom:583.040009pt;}
.y3f{bottom:583.040267pt;}
.y280{bottom:583.200012pt;}
.y139{bottom:584.640015pt;}
.y186{bottom:587.687496pt;}
.y182{bottom:587.999606pt;}
.y161{bottom:588.805697pt;}
.y19e{bottom:591.040009pt;}
.y165{bottom:592.472256pt;}
.y100{bottom:592.480011pt;}
.y8{bottom:592.685334pt;}
.y6b{bottom:594.033467pt;}
.y2c1{bottom:594.880005pt;}
.y11d{bottom:595.200012pt;}
.y29f{bottom:595.359985pt;}
.y160{bottom:595.848638pt;}
.y1d5{bottom:596.640015pt;}
.y1bd{bottom:598.239990pt;}
.y164{bottom:599.514709pt;}
.y138{bottom:600.000000pt;}
.y57{bottom:600.234667pt;}
.y27f{bottom:601.600006pt;}
.y200{bottom:604.320007pt;}
.y9d{bottom:605.760010pt;}
.y6a{bottom:607.366800pt;}
.y15f{bottom:608.310649pt;}
.ydf{bottom:608.480011pt;}
.y19d{bottom:608.959991pt;}
.y3e{bottom:609.706933pt;}
.yb2{bottom:612.000000pt;}
.y163{bottom:612.808229pt;}
.y2c0{bottom:613.279999pt;}
.y1bc{bottom:613.600006pt;}
.y7c{bottom:613.760010pt;}
.y137{bottom:615.359985pt;}
.y27e{bottom:620.000000pt;}
.y69{bottom:620.700133pt;}
.y1ff{bottom:621.440002pt;}
.yff{bottom:621.600006pt;}
.y11c{bottom:622.399994pt;}
.y19c{bottom:624.160004pt;}
.y24e{bottom:624.799663pt;}
.y24a{bottom:624.956010pt;}
.y1d4{bottom:627.359985pt;}
.y1bb{bottom:628.959991pt;}
.y56{bottom:629.034667pt;}
.y136{bottom:630.559998pt;}
.y2bf{bottom:631.679993pt;}
.y29e{bottom:632.160004pt;}
.y68{bottom:634.033467pt;}
.y12e{bottom:634.559998pt;}
.y1fe{bottom:638.239990pt;}
.y27d{bottom:638.399994pt;}
.y19b{bottom:639.519989pt;}
.yb1{bottom:639.839996pt;}
.yfe{bottom:641.440002pt;}
.y9c{bottom:642.559998pt;}
.y238{bottom:644.000000pt;}
.y1ba{bottom:644.320007pt;}
.yde{bottom:645.279999pt;}
.y7{bottom:645.598667pt;}
.y135{bottom:645.920013pt;}
.y11b{bottom:646.880005pt;}
.y23a{bottom:647.359985pt;}
.y3d{bottom:648.373600pt;}
.y7b{bottom:650.559998pt;}
.y19a{bottom:654.880005pt;}
.y27c{bottom:656.799988pt;}
.y55{bottom:657.834667pt;}
.y1d3{bottom:657.920013pt;}
.y67{bottom:658.705467pt;}
.y39{bottom:659.200133pt;}
.y1b9{bottom:659.679993pt;}
.y134{bottom:664.160004pt;}
.yb0{bottom:664.799988pt;}
.y132{bottom:665.760010pt;}
.y1fd{bottom:668.320007pt;}
.y29d{bottom:668.959991pt;}
.y3{bottom:668.977329pt;}
.y26e{bottom:669.918078pt;}
.y26a{bottom:670.082385pt;}
.y199{bottom:670.239990pt;}
.y1d2{bottom:670.399994pt;}
.y1b7{bottom:672.000000pt;}
.y66{bottom:672.038800pt;}
.yaf{bottom:672.799988pt;}
.y1b5{bottom:673.600006pt;}
.y237{bottom:675.040009pt;}
.y27b{bottom:675.200012pt;}
.y38{bottom:675.200133pt;}
.y9b{bottom:679.359985pt;}
.y14e{bottom:680.479026pt;}
.y14a{bottom:681.912709pt;}
.ydd{bottom:682.079987pt;}
.y1fc{bottom:685.279999pt;}
.y198{bottom:685.600006pt;}
.yfd{bottom:686.239990pt;}
.y7a{bottom:687.359985pt;}
.y14d{bottom:687.677188pt;}
.y1e5{bottom:688.483374pt;}
.y149{bottom:688.954486pt;}
.y1ce{bottom:689.444332pt;}
.y3c{bottom:691.040267pt;}
.y37{bottom:691.200133pt;}
.y25a{bottom:692.160004pt;}
.y1c9{bottom:692.160684pt;}
.y27a{bottom:693.600006pt;}
.y1e4{bottom:693.761820pt;}
.y1cd{bottom:694.725116pt;}
.y65{bottom:696.710667pt;}
.y1c8{bottom:697.441488pt;}
.y197{bottom:700.959991pt;}
.y14c{bottom:700.965110pt;}
.y1fb{bottom:702.079987pt;}
.y148{bottom:702.235523pt;}
.y1e3{bottom:702.239839pt;}
.y258{bottom:704.640015pt;}
.y1cc{bottom:704.795453pt;}
.y236{bottom:704.799988pt;}
.y1d0{bottom:705.757787pt;}
.y29c{bottom:705.760010pt;}
.yae{bottom:706.720001pt;}
.y36{bottom:707.200133pt;}
.y1e8{bottom:707.520964pt;}
.y1c7{bottom:707.528466pt;}
.y259{bottom:708.640015pt;}
.y64{bottom:710.044000pt;}
.y279{bottom:712.000000pt;}
.yad{bottom:714.720001pt;}
.y9a{bottom:716.160004pt;}
.y261{bottom:717.598318pt;}
.ydc{bottom:718.880005pt;}
.y1fa{bottom:719.040009pt;}
.y265{bottom:721.122151pt;}
.y235{bottom:721.279999pt;}
.yfc{bottom:723.040009pt;}
.y63{bottom:723.377333pt;}
.y79{bottom:724.160004pt;}
.y260{bottom:724.799480pt;}
.y264{bottom:728.164615pt;}
.y195{bottom:728.640015pt;}
.y278{bottom:730.399994pt;}
.y196{bottom:732.640015pt;}
.y3b{bottom:733.706933pt;}
.y1f9{bottom:735.839996pt;}
.y234{bottom:736.640015pt;}
.y35{bottom:739.200133pt;}
.y263{bottom:741.279827pt;}
.y1ad{bottom:742.402941pt;}
.y29b{bottom:742.559998pt;}
.y1b1{bottom:745.598145pt;}
.y25f{bottom:746.723356pt;}
.y62{bottom:748.049200pt;}
.y277{bottom:748.799988pt;}
.y1ac{bottom:749.444528pt;}
.y232{bottom:749.760010pt;}
.y185{bottom:752.160140pt;}
.y233{bottom:752.320007pt;}
.y189{bottom:752.483477pt;}
.y1b0{bottom:752.796286pt;}
.y1f8{bottom:752.799988pt;}
.y99{bottom:752.959991pt;}
.ydb{bottom:757.440002pt;}
.yfb{bottom:759.839996pt;}
.yac{bottom:760.320007pt;}
.y1ab{bottom:760.794532pt;}
.y78{bottom:760.959991pt;}
.y61{bottom:761.382533pt;}
.y230{bottom:764.320007pt;}
.y231{bottom:766.880005pt;}
.y276{bottom:767.200012pt;}
.y1f7{bottom:769.600006pt;}
.y1af{bottom:770.724286pt;}
.y162{bottom:771.518395pt;}
.y166{bottom:771.676005pt;}
.y17a{bottom:774.720001pt;}
.y3a{bottom:776.373600pt;}
.y22e{bottom:778.720001pt;}
.y29a{bottom:779.359985pt;}
.y22f{bottom:781.279999pt;}
.y2{bottom:781.661334pt;}
.y275{bottom:785.600006pt;}
.y60{bottom:786.054533pt;}
.y1f6{bottom:786.559998pt;}
.y98{bottom:789.760010pt;}
.y22c{bottom:793.119995pt;}
.y152{bottom:793.600006pt;}
.yda{bottom:796.160004pt;}
.yfa{bottom:796.640015pt;}
.yab{bottom:797.119995pt;}
.y77{bottom:797.760010pt;}
.y5f{bottom:799.387867pt;}
.y49{bottom:801.066933pt;}
.y179{bottom:802.559998pt;}
.y1f5{bottom:803.360001pt;}
.y274{bottom:804.000000pt;}
.y229{bottom:807.679993pt;}
.y22b{bottom:810.240005pt;}
.y5e{bottom:812.721200pt;}
.y299{bottom:816.160004pt;}
.y34{bottom:819.200133pt;}
.y1f4{bottom:820.160004pt;}
.y226{bottom:822.080002pt;}
.y178{bottom:822.399994pt;}
.y228{bottom:824.639999pt;}
.y151{bottom:825.440002pt;}
.y97{bottom:826.559998pt;}
.yd9{bottom:833.119995pt;}
.yf9{bottom:833.440002pt;}
.yaa{bottom:834.399994pt;}
.y76{bottom:834.559998pt;}
.y33{bottom:835.200133pt;}
.y11a{bottom:836.320007pt;}
.y224{bottom:836.639999pt;}
.y1f3{bottom:837.119995pt;}
.y5d{bottom:837.393067pt;}
.y225{bottom:839.199997pt;}
.y273{bottom:840.800003pt;}
.y150{bottom:843.839996pt;}
.y222{bottom:851.039993pt;}
.y32{bottom:851.200133pt;}
.y177{bottom:852.960007pt;}
.y1f2{bottom:853.919998pt;}
.y1e6{bottom:854.718829pt;}
.y119{bottom:854.720001pt;}
.y1cf{bottom:854.880220pt;}
.y1ca{bottom:855.356489pt;}
.y272{bottom:859.199997pt;}
.y1{bottom:859.312000pt;}
.y14f{bottom:860.637431pt;}
.y14b{bottom:860.801596pt;}
.y5c{bottom:862.065067pt;}
.y96{bottom:863.360001pt;}
.y220{bottom:865.440002pt;}
.y31{bottom:867.200133pt;}
.yf8{bottom:870.240005pt;}
.yd8{bottom:870.559998pt;}
.y1e7{bottom:870.562980pt;}
.y1cb{bottom:870.719538pt;}
.y1d1{bottom:870.721350pt;}
.y176{bottom:870.880005pt;}
.y75{bottom:871.360001pt;}
.y5b{bottom:875.398400pt;}
.y271{bottom:877.600006pt;}
.y21f{bottom:881.919998pt;}
.y30{bottom:883.200133pt;}
.y118{bottom:884.960007pt;}
.y175{bottom:886.240005pt;}
.y5a{bottom:888.731733pt;}
.y298{bottom:889.759995pt;}
.y131{bottom:892.160004pt;}
.y1b4{bottom:892.639999pt;}
.y21e{bottom:895.679993pt;}
.y270{bottom:896.000000pt;}
.y262{bottom:898.082724pt;}
.y266{bottom:898.398746pt;}
.y2f{bottom:899.200133pt;}
.y117{bottom:901.600006pt;}
.y59{bottom:902.065067pt;}
.yd7{bottom:907.520004pt;}
.y74{bottom:908.160004pt;}
.y1b3{bottom:909.440002pt;}
.y26f{bottom:914.399994pt;}
.y116{bottom:916.960007pt;}
.y257{bottom:920.000000pt;}
.y1ae{bottom:925.438954pt;}
.y1b2{bottom:925.758288pt;}
.y130{bottom:926.559998pt;}
.y58{bottom:928.731733pt;}
.y2e{bottom:931.200133pt;}
.y115{bottom:932.160004pt;}
.y193{bottom:944.639999pt;}
.yd6{bottom:944.800003pt;}
.y73{bottom:944.959999pt;}
.y21d{bottom:946.239998pt;}
.y2d{bottom:947.200133pt;}
.y114{bottom:947.519997pt;}
.y8d{bottom:978.720001pt;}
.y8c{bottom:995.520000pt;}
.h2c{height:7.678762pt;}
.h3c{height:11.839966pt;}
.h52{height:11.839996pt;}
.h6c{height:11.840027pt;}
.h66{height:13.279969pt;}
.h37{height:13.279999pt;}
.h68{height:13.280014pt;}
.h28{height:13.280029pt;}
.h63{height:13.280030pt;}
.h6b{height:13.599976pt;}
.h74{height:13.600037pt;}
.h3b{height:13.759949pt;}
.h48{height:13.760009pt;}
.h39{height:13.760010pt;}
.h69{height:13.919998pt;}
.h67{height:13.919999pt;}
.h47{height:14.239990pt;}
.h27{height:14.559997pt;}
.h3a{height:15.199951pt;}
.h38{height:15.359985pt;}
.h51{height:15.360001pt;}
.h5c{height:15.679993pt;}
.h55{height:15.839996pt;}
.h54{height:16.479981pt;}
.h6d{height:17.760009pt;}
.h6a{height:17.760010pt;}
.h32{height:18.399994pt;}
.h56{height:18.934326pt;}
.h59{height:19.209435pt;}
.h5e{height:19.296435pt;}
.h43{height:25.260660pt;}
.h45{height:25.378228pt;}
.h72{height:25.554580pt;}
.h4f{height:25.613364pt;}
.h70{height:25.730932pt;}
.h33{height:25.790892pt;}
.h3f{height:25.849676pt;}
.h35{height:25.967244pt;}
.h75{height:26.026028pt;}
.h6e{height:26.281150pt;}
.h3d{height:26.319948pt;}
.h29{height:26.398718pt;}
.h41{height:26.457502pt;}
.h4d{height:26.497475pt;}
.h4b{height:26.516286pt;}
.h2a{height:26.633854pt;}
.h49{height:26.811382pt;}
.h57{height:26.874869pt;}
.h2b{height:27.184072pt;}
.h5a{height:27.265194pt;}
.h5f{height:27.388641pt;}
.h2d{height:27.517965pt;}
.h7{height:28.560000pt;}
.h19{height:31.556773pt;}
.h11{height:34.133333pt;}
.h44{height:34.883601pt;}
.h46{height:35.045844pt;}
.h73{height:35.290386pt;}
.h64{height:35.347071pt;}
.h50{height:35.371508pt;}
.h58{height:35.425589pt;}
.h71{height:35.533752pt;}
.h34{height:35.614873pt;}
.h40{height:35.697171pt;}
.h36{height:35.859415pt;}
.h5b{height:35.940537pt;}
.h62{height:36.025473pt;}
.h60{height:36.102781pt;}
.h6f{height:36.293241pt;}
.h3e{height:36.347322pt;}
.h53{height:36.455485pt;}
.h42{height:36.536607pt;}
.h4e{height:36.590688pt;}
.h4c{height:36.617728pt;}
.h76{height:36.781148pt;}
.h30{height:36.850683pt;}
.h4a{height:37.024514pt;}
.ha{height:38.400000pt;}
.h2e{height:39.117193pt;}
.h6{height:40.800000pt;}
.he{height:42.666667pt;}
.h3{height:42.840000pt;}
.h23{height:42.895840pt;}
.h65{height:42.973242pt;}
.h25{height:43.358912pt;}
.h2f{height:44.191082pt;}
.h31{height:47.129329pt;}
.h16{height:47.556773pt;}
.h15{height:48.033863pt;}
.h2{height:48.960000pt;}
.h9{height:49.066667pt;}
.hd{height:51.200000pt;}
.h26{height:52.713648pt;}
.h61{height:54.352546pt;}
.h12{height:56.199473pt;}
.h13{height:57.297537pt;}
.h14{height:58.452749pt;}
.h24{height:58.895840pt;}
.h5d{height:59.509225pt;}
.h17{height:59.509285pt;}
.h1a{height:59.509345pt;}
.h1c{height:59.509349pt;}
.h18{height:59.509469pt;}
.h22{height:59.509473pt;}
.h10{height:59.733333pt;}
.hf{height:68.266667pt;}
.h5{height:69.360000pt;}
.h1f{height:70.959116pt;}
.h1b{height:74.061082pt;}
.hc{height:76.800000pt;}
.h21{height:83.759164pt;}
.h20{height:89.279968pt;}
.h1d{height:95.556285pt;}
.h4{height:105.826671pt;}
.hb{height:110.933333pt;}
.h1e{height:146.381030pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w24{width:3.199951pt;}
.w4{width:5.279998pt;}
.w5{width:5.279999pt;}
.w19{width:6.719970pt;}
.w21{width:6.719971pt;}
.w29{width:6.719986pt;}
.w14{width:6.720001pt;}
.w1b{width:6.720002pt;}
.w27{width:6.720009pt;}
.w1f{width:6.720032pt;}
.w12{width:7.040008pt;}
.wf{width:7.199951pt;}
.w9{width:7.199982pt;}
.we{width:7.200012pt;}
.wa{width:7.359985pt;}
.w2d{width:7.359986pt;}
.w11{width:7.360016pt;}
.w6{width:7.519989pt;}
.w7{width:7.520020pt;}
.w13{width:8.159973pt;}
.w10{width:8.159974pt;}
.wc{width:8.160003pt;}
.wb{width:8.160004pt;}
.wd{width:8.160035pt;}
.w23{width:14.720031pt;}
.w8{width:15.038231pt;}
.w26{width:23.519996pt;}
.w1a{width:40.639999pt;}
.w25{width:40.640007pt;}
.w1d{width:48.320007pt;}
.w18{width:61.119995pt;}
.w16{width:61.440003pt;}
.w1c{width:73.440002pt;}
.w28{width:73.440010pt;}
.w1e{width:82.399993pt;}
.w20{width:82.400024pt;}
.w15{width:106.079986pt;}
.w17{width:110.239991pt;}
.w2b{width:127.199982pt;}
.w2c{width:133.440002pt;}
.w22{width:235.519989pt;}
.w2a{width:250.719971pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x6{left:-768.000000pt;}
.x1a{left:-1.600006pt;}
.x0{left:0.000000pt;}
.x8{left:29.914000pt;}
.xa{left:38.738933pt;}
.x5{left:39.683733pt;}
.xc0{left:48.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:96.000000pt;}
.x2a{left:100.480003pt;}
.x47{left:102.080002pt;}
.x96{left:103.199997pt;}
.xaf{left:108.320000pt;}
.xb{left:114.000000pt;}
.xb7{left:118.559998pt;}
.x12{left:120.000000pt;}
.x32{left:121.118674pt;}
.x6a{left:122.401171pt;}
.x2b{left:124.480003pt;}
.x5a{left:126.561132pt;}
.x15{left:129.119995pt;}
.x53{left:130.083234pt;}
.x6b{left:131.197260pt;}
.x82{left:133.920685pt;}
.x5b{left:134.877907pt;}
.x75{left:136.956065pt;}
.x10{left:144.000000pt;}
.x8e{left:146.240005pt;}
.x3b{left:148.800003pt;}
.x9{left:151.824000pt;}
.x3f{left:158.399994pt;}
.x62{left:160.960007pt;}
.x60{left:165.600006pt;}
.x99{left:177.119995pt;}
.x98{left:179.520004pt;}
.x4{left:180.874667pt;}
.x9a{left:182.559998pt;}
.x41{left:184.000000pt;}
.xe{left:185.338000pt;}
.x76{left:187.674513pt;}
.xb2{left:188.962959pt;}
.x8f{left:192.160004pt;}
.x5f{left:194.080002pt;}
.x9c{left:200.000000pt;}
.x9d{left:200.960007pt;}
.x9b{left:201.919998pt;}
.x7{left:204.000000pt;}
.x49{left:207.520004pt;}
.x61{left:209.600006pt;}
.x3e{left:211.199997pt;}
.x5c{left:213.438958pt;}
.x66{left:215.202787pt;}
.x31{left:216.960007pt;}
.x2e{left:218.080002pt;}
.x73{left:222.080002pt;}
.x40{left:227.039993pt;}
.x4f{left:229.440002pt;}
.x6d{left:231.360001pt;}
.x7f{left:234.080002pt;}
.x43{left:247.043709pt;}
.xbb{left:248.476441pt;}
.x54{left:250.563296pt;}
.x33{left:251.834310pt;}
.x37{left:254.717144pt;}
.x80{left:258.559998pt;}
.x48{left:260.799988pt;}
.x74{left:266.559998pt;}
.x9e{left:269.440002pt;}
.x50{left:271.679993pt;}
.x83{left:272.641919pt;}
.x6e{left:273.600006pt;}
.x2d{left:276.000000pt;}
.x30{left:277.920013pt;}
.xa0{left:282.559998pt;}
.x13{left:288.000000pt;}
.x9f{left:291.359985pt;}
.x97{left:295.679993pt;}
.x8d{left:296.799988pt;}
.x78{left:298.076160pt;}
.x84{left:308.320553pt;}
.x90{left:312.640015pt;}
.x77{left:323.833039pt;}
.xa1{left:330.880005pt;}
.x26{left:338.880005pt;}
.x4b{left:342.079987pt;}
.x63{left:344.000000pt;}
.x27{left:345.600006pt;}
.x3c{left:347.519989pt;}
.x18{left:348.959991pt;}
.x28{left:350.720001pt;}
.xbe{left:353.279999pt;}
.x19{left:355.679993pt;}
.x1b{left:360.799988pt;}
.xa2{left:362.239990pt;}
.xf{left:364.000000pt;}
.x1c{left:365.920013pt;}
.x2c{left:367.839996pt;}
.x1d{left:371.040009pt;}
.xa3{left:375.040009pt;}
.x1e{left:376.160004pt;}
.x8c{left:379.040009pt;}
.x1f{left:381.279999pt;}
.x20{left:386.399994pt;}
.x16{left:389.760010pt;}
.x21{left:391.519989pt;}
.xb8{left:393.760010pt;}
.x22{left:396.640015pt;}
.x4d{left:398.559998pt;}
.x14{left:400.480011pt;}
.x23{left:401.760010pt;}
.x3{left:404.408000pt;}
.x24{left:406.880005pt;}
.x17{left:408.000000pt;}
.x25{left:411.359985pt;}
.x91{left:418.720001pt;}
.x29{left:420.000000pt;}
.x44{left:423.041154pt;}
.xb4{left:428.794775pt;}
.x55{left:430.245996pt;}
.xd{left:432.000000pt;}
.x34{left:433.112756pt;}
.x38{left:434.089104pt;}
.x35{left:435.669934pt;}
.x71{left:437.282826pt;}
.x56{left:438.870244pt;}
.x85{left:440.319084pt;}
.x67{left:443.513130pt;}
.x5d{left:444.477742pt;}
.x72{left:445.918078pt;}
.xa4{left:457.440002pt;}
.x7a{left:460.319792pt;}
.x87{left:467.995861pt;}
.x4c{left:469.440002pt;}
.xb1{left:470.880005pt;}
.x64{left:473.279999pt;}
.x92{left:480.160004pt;}
.xb6{left:488.478656pt;}
.x79{left:489.605256pt;}
.x86{left:491.998835pt;}
.xa6{left:493.119995pt;}
.xa5{left:499.040009pt;}
.xad{left:506.559998pt;}
.x46{left:510.568140pt;}
.x51{left:512.320007pt;}
.xa7{left:514.719971pt;}
.x6f{left:516.159973pt;}
.x59{left:517.438624pt;}
.x69{left:519.848010pt;}
.x6c{left:520.802271pt;}
.xae{left:523.039978pt;}
.x5e{left:524.800795pt;}
.x93{left:526.400024pt;}
.x45{left:550.396464pt;}
.xb5{left:554.242430pt;}
.xbc{left:556.162527pt;}
.x57{left:557.110243pt;}
.xb3{left:558.887864pt;}
.x58{left:560.493155pt;}
.xbd{left:562.231721pt;}
.x36{left:563.829669pt;}
.x68{left:564.790352pt;}
.x39{left:566.249984pt;}
.x7b{left:569.593879pt;}
.x88{left:572.477234pt;}
.x7c{left:576.166692pt;}
.x89{left:579.039635pt;}
.x7e{left:601.600884pt;}
.xaa{left:604.320007pt;}
.xab{left:606.559998pt;}
.xa8{left:608.000000pt;}
.x3a{left:610.080017pt;}
.x70{left:613.280029pt;}
.x8b{left:614.717552pt;}
.xa9{left:622.400024pt;}
.x7d{left:627.686860pt;}
.x8a{left:630.719450pt;}
.x94{left:636.640015pt;}
.x3d{left:652.799988pt;}
.x65{left:656.320007pt;}
.xac{left:688.960022pt;}
.x42{left:695.520020pt;}
.x95{left:697.760010pt;}
.xb9{left:699.520020pt;}
.x4a{left:701.440002pt;}
.x52{left:702.880005pt;}
.xb0{left:706.080017pt;}
.x81{left:707.200012pt;}
.x4e{left:708.960022pt;}
.xba{left:711.520020pt;}
.x2f{left:712.479980pt;}
.x11{left:720.000000pt;}
.xc2{left:845.914000pt;}
.xbf{left:855.683733pt;}
.xc3{left:967.824000pt;}
.xc1{left:1020.000000pt;}
}




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