
    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_9c5f2b87c55eeee99598dd4d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_e1f0d72cc05bd39b64346a3c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d26e231d7f9e5327770a078a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_da76b6d43400f42eac20cf64.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_402389af85f4add83985dd7e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_56cc46ef4241de9b20f097d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e097a5d45fcd4c2ac2f05405.woff')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_012e616149f4b41fae7f2381.woff')format("woff");}.ff8{font-family:ff8;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b200d966962813d5e8e3a84.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e11dfb30bebfee92e6270128.woff')format("woff");}.ffa{font-family:ffa;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;}
.ma7{transform:matrix(0.000000,-0.249508,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249508,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249508,0.250000,0.000000,0,0);}
.m99{transform:matrix(0.176808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176808,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.178702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178702,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.178768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178768,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.179489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179489,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181705,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.184543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184543,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.185052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185052,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.185357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185357,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186685,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.186894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186894,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186918,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.186952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186952,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187070,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.187508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187508,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.187742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187742,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187768,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.187776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187776,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.187894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187894,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.187901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187901,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.190283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190283,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.190568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190568,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.190829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190829,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.191002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191002,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.191027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191027,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.191122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191122,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.191726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191726,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.191928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191928,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192135,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.192154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192154,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.192186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192186,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.192777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192777,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192982,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.193533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193533,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193627,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.193876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193876,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.194386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194386,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.194666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194666,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.195038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195038,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195898,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.195937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195937,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.197516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197516,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.197922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197922,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.198386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198386,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.198746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198746,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.200537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200537,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201219,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.203574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203574,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.218069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218069,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.221342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221342,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224210,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.224897,0.000000,-0.074958,0.238498,0,0);-ms-transform:matrix(0.224897,0.000000,-0.074958,0.238498,0,0);-webkit-transform:matrix(0.224897,0.000000,-0.074958,0.238498,0,0);}
.m7{transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.227163,0.000000,-0.075713,0.238259,0,0);-ms-transform:matrix(0.227163,0.000000,-0.075713,0.238259,0,0);-webkit-transform:matrix(0.227163,0.000000,-0.075713,0.238259,0,0);}
.m21{transform:matrix(0.227996,0.000000,-0.075991,0.238171,0,0);-ms-transform:matrix(0.227996,0.000000,-0.075991,0.238171,0,0);-webkit-transform:matrix(0.227996,0.000000,-0.075991,0.238171,0,0);}
.m40{transform:matrix(0.228482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228482,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229080,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.229504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229504,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.230568,0.000000,-0.076848,0.237896,0,0);-ms-transform:matrix(0.230568,0.000000,-0.076848,0.237896,0,0);-webkit-transform:matrix(0.230568,0.000000,-0.076848,0.237896,0,0);}
.m95{transform:matrix(0.230972,0.000000,-0.076983,0.237852,0,0);-ms-transform:matrix(0.230972,0.000000,-0.076983,0.237852,0,0);-webkit-transform:matrix(0.230972,0.000000,-0.076983,0.237852,0,0);}
.m6a{transform:matrix(0.231102,0.000000,-0.077026,0.237838,0,0);-ms-transform:matrix(0.231102,0.000000,-0.077026,0.237838,0,0);-webkit-transform:matrix(0.231102,0.000000,-0.077026,0.237838,0,0);}
.m30{transform:matrix(0.231464,0.000000,-0.077147,0.237799,0,0);-ms-transform:matrix(0.231464,0.000000,-0.077147,0.237799,0,0);-webkit-transform:matrix(0.231464,0.000000,-0.077147,0.237799,0,0);}
.ma5{transform:matrix(0.232181,0.000000,-0.077386,0.237721,0,0);-ms-transform:matrix(0.232181,0.000000,-0.077386,0.237721,0,0);-webkit-transform:matrix(0.232181,0.000000,-0.077386,0.237721,0,0);}
.m52{transform:matrix(0.232743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232743,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.234381,0.000000,-0.078119,0.237481,0,0);-ms-transform:matrix(0.234381,0.000000,-0.078119,0.237481,0,0);-webkit-transform:matrix(0.234381,0.000000,-0.078119,0.237481,0,0);}
.m56{transform:matrix(0.234729,0.000000,-0.078235,0.237443,0,0);-ms-transform:matrix(0.234729,0.000000,-0.078235,0.237443,0,0);-webkit-transform:matrix(0.234729,0.000000,-0.078235,0.237443,0,0);}
.m9a{transform:matrix(0.235744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235744,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.235943,0.000000,-0.078640,0.237309,0,0);-ms-transform:matrix(0.235943,0.000000,-0.078640,0.237309,0,0);-webkit-transform:matrix(0.235943,0.000000,-0.078640,0.237309,0,0);}
.m75{transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236808,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.237182,0.000000,-0.079053,0.237172,0,0);-ms-transform:matrix(0.237182,0.000000,-0.079053,0.237172,0,0);-webkit-transform:matrix(0.237182,0.000000,-0.079053,0.237172,0,0);}
.m31{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.237449,0.000000,-0.079142,0.237143,0,0);-ms-transform:matrix(0.237449,0.000000,-0.079142,0.237143,0,0);-webkit-transform:matrix(0.237449,0.000000,-0.079142,0.237143,0,0);}
.m6{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.237487,0.000000,-0.079155,0.237138,0,0);-ms-transform:matrix(0.237487,0.000000,-0.079155,0.237138,0,0);-webkit-transform:matrix(0.237487,0.000000,-0.079155,0.237138,0,0);}
.m93{transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);-ms-transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);-webkit-transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);}
.m61{transform:matrix(0.237630,0.000000,-0.079202,0.237122,0,0);-ms-transform:matrix(0.237630,0.000000,-0.079202,0.237122,0,0);-webkit-transform:matrix(0.237630,0.000000,-0.079202,0.237122,0,0);}
.m59{transform:matrix(0.238225,0.000000,-0.079401,0.237056,0,0);-ms-transform:matrix(0.238225,0.000000,-0.079401,0.237056,0,0);-webkit-transform:matrix(0.238225,0.000000,-0.079401,0.237056,0,0);}
.m97{transform:matrix(0.238357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238357,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.238419,0.000000,-0.079465,0.237034,0,0);-ms-transform:matrix(0.238419,0.000000,-0.079465,0.237034,0,0);-webkit-transform:matrix(0.238419,0.000000,-0.079465,0.237034,0,0);}
.m1d{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.239319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239319,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.240021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240021,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240130,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.240559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240559,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.240658,0.000000,-0.080211,0.236783,0,0);-ms-transform:matrix(0.240658,0.000000,-0.080211,0.236783,0,0);-webkit-transform:matrix(0.240658,0.000000,-0.080211,0.236783,0,0);}
.ma8{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.240953,0.000000,-0.080310,0.236750,0,0);-ms-transform:matrix(0.240953,0.000000,-0.080310,0.236750,0,0);-webkit-transform:matrix(0.240953,0.000000,-0.080310,0.236750,0,0);}
.m24{transform:matrix(0.241149,0.000000,-0.080375,0.236727,0,0);-ms-transform:matrix(0.241149,0.000000,-0.080375,0.236727,0,0);-webkit-transform:matrix(0.241149,0.000000,-0.080375,0.236727,0,0);}
.m2a{transform:matrix(0.241177,0.000000,-0.080384,0.236724,0,0);-ms-transform:matrix(0.241177,0.000000,-0.080384,0.236724,0,0);-webkit-transform:matrix(0.241177,0.000000,-0.080384,0.236724,0,0);}
.m6e{transform:matrix(0.241285,0.000000,-0.080420,0.236712,0,0);-ms-transform:matrix(0.241285,0.000000,-0.080420,0.236712,0,0);-webkit-transform:matrix(0.241285,0.000000,-0.080420,0.236712,0,0);}
.m37{transform:matrix(0.241968,0.000000,-0.080648,0.236635,0,0);-ms-transform:matrix(0.241968,0.000000,-0.080648,0.236635,0,0);-webkit-transform:matrix(0.241968,0.000000,-0.080648,0.236635,0,0);}
.m9f{transform:matrix(0.242299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242299,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242769,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243340,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.243386,0.000000,-0.081121,0.236473,0,0);-ms-transform:matrix(0.243386,0.000000,-0.081121,0.236473,0,0);-webkit-transform:matrix(0.243386,0.000000,-0.081121,0.236473,0,0);}
.m4c{transform:matrix(0.243407,0.000000,-0.081128,0.236470,0,0);-ms-transform:matrix(0.243407,0.000000,-0.081128,0.236470,0,0);-webkit-transform:matrix(0.243407,0.000000,-0.081128,0.236470,0,0);}
.m1{transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.244114,0.000000,-0.081363,0.236390,0,0);-ms-transform:matrix(0.244114,0.000000,-0.081363,0.236390,0,0);-webkit-transform:matrix(0.244114,0.000000,-0.081363,0.236390,0,0);}
.ma4{transform:matrix(0.244173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244173,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.244969,0.000000,-0.081648,0.236291,0,0);-ms-transform:matrix(0.244969,0.000000,-0.081648,0.236291,0,0);-webkit-transform:matrix(0.244969,0.000000,-0.081648,0.236291,0,0);}
.m3d{transform:matrix(0.246249,0.000000,-0.082075,0.236143,0,0);-ms-transform:matrix(0.246249,0.000000,-0.082075,0.236143,0,0);-webkit-transform:matrix(0.246249,0.000000,-0.082075,0.236143,0,0);}
.m5{transform:matrix(0.246381,0.000000,-0.082119,0.236128,0,0);-ms-transform:matrix(0.246381,0.000000,-0.082119,0.236128,0,0);-webkit-transform:matrix(0.246381,0.000000,-0.082119,0.236128,0,0);}
.m81{transform:matrix(0.246669,0.000000,-0.082215,0.236095,0,0);-ms-transform:matrix(0.246669,0.000000,-0.082215,0.236095,0,0);-webkit-transform:matrix(0.246669,0.000000,-0.082215,0.236095,0,0);}
.m83{transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246736,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247682,0.000000,-0.082552,0.235977,0,0);-ms-transform:matrix(0.247682,0.000000,-0.082552,0.235977,0,0);-webkit-transform:matrix(0.247682,0.000000,-0.082552,0.235977,0,0);}
.ma2{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248795,0.000000,-0.082923,0.235847,0,0);-ms-transform:matrix(0.248795,0.000000,-0.082923,0.235847,0,0);-webkit-transform:matrix(0.248795,0.000000,-0.082923,0.235847,0,0);}
.m16{transform:matrix(0.248938,0.000000,-0.082971,0.235830,0,0);-ms-transform:matrix(0.248938,0.000000,-0.082971,0.235830,0,0);-webkit-transform:matrix(0.248938,0.000000,-0.082971,0.235830,0,0);}
.m27{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249438,0.000000,-0.083138,0.235771,0,0);-ms-transform:matrix(0.249438,0.000000,-0.083138,0.235771,0,0);-webkit-transform:matrix(0.249438,0.000000,-0.083138,0.235771,0,0);}
.m5e{transform:matrix(0.249457,0.000000,-0.083144,0.235769,0,0);-ms-transform:matrix(0.249457,0.000000,-0.083144,0.235769,0,0);-webkit-transform:matrix(0.249457,0.000000,-0.083144,0.235769,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);}
.m43{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m50{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250838,0.000000,-0.083604,0.235606,0,0);-ms-transform:matrix(0.250838,0.000000,-0.083604,0.235606,0,0);-webkit-transform:matrix(0.250838,0.000000,-0.083604,0.235606,0,0);}
.m26{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251859,0.000000,-0.083945,0.235485,0,0);-ms-transform:matrix(0.251859,0.000000,-0.083945,0.235485,0,0);-webkit-transform:matrix(0.251859,0.000000,-0.083945,0.235485,0,0);}
.m34{transform:matrix(0.252618,0.000000,-0.084198,0.235395,0,0);-ms-transform:matrix(0.252618,0.000000,-0.084198,0.235395,0,0);-webkit-transform:matrix(0.252618,0.000000,-0.084198,0.235395,0,0);}
.m2c{transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254438,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254829,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255234,0.000000,-0.085070,0.235081,0,0);-ms-transform:matrix(0.255234,0.000000,-0.085070,0.235081,0,0);-webkit-transform:matrix(0.255234,0.000000,-0.085070,0.235081,0,0);}
.m36{transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255634,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257032,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.257309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257309,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257334,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257377,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258169,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259181,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259640,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260698,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260856,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.261197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261197,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.263668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263668,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263725,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263896,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.264278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264278,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.264491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264491,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264515,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265045,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.265092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265092,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266162,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267383,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268292,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.271432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271432,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275175,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275193,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.va{vertical-align:-99.600000px;}
.v1{vertical-align:-97.260000px;}
.v8{vertical-align:-59.743865px;}
.v4{vertical-align:-36.640780px;}
.v9{vertical-align:-20.873017px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:19.042691px;}
.v6{vertical-align:33.878251px;}
.v7{vertical-align:37.965685px;}
.v3{vertical-align:45.571569px;}
.ls1d{letter-spacing:-1.708566px;}
.ls2e{letter-spacing:-1.200000px;}
.ls59{letter-spacing:-0.919837px;}
.ls93{letter-spacing:-0.789584px;}
.ls33{letter-spacing:-0.760093px;}
.ls83{letter-spacing:-0.690180px;}
.ls7a{letter-spacing:-0.633921px;}
.ls8a{letter-spacing:-0.630421px;}
.ls82{letter-spacing:-0.600000px;}
.ls99{letter-spacing:-0.552000px;}
.ls9a{letter-spacing:-0.372000px;}
.ls4{letter-spacing:0.000000px;}
.ls95{letter-spacing:0.073665px;}
.ls5{letter-spacing:0.096000px;}
.ls71{letter-spacing:0.137234px;}
.ls76{letter-spacing:0.390972px;}
.ls97{letter-spacing:0.552000px;}
.ls73{letter-spacing:0.567082px;}
.ls3f{letter-spacing:0.581579px;}
.ls1{letter-spacing:0.600000px;}
.ls98{letter-spacing:0.660000px;}
.ls8{letter-spacing:3.000000px;}
.ls2{letter-spacing:3.903329px;}
.ls9{letter-spacing:4.200000px;}
.lsb{letter-spacing:4.260000px;}
.ls10{letter-spacing:5.340000px;}
.ls3{letter-spacing:7.068486px;}
.ls46{letter-spacing:9.949222px;}
.ls12{letter-spacing:11.400000px;}
.ls45{letter-spacing:15.180000px;}
.ls44{letter-spacing:17.783166px;}
.ls43{letter-spacing:19.711144px;}
.ls11{letter-spacing:21.000000px;}
.lsa{letter-spacing:22.743835px;}
.ls2b{letter-spacing:25.245229px;}
.lse{letter-spacing:40.065575px;}
.lsd{letter-spacing:40.260000px;}
.ls16{letter-spacing:40.650061px;}
.lsf{letter-spacing:51.933514px;}
.ls49{letter-spacing:59.367718px;}
.ls89{letter-spacing:59.968911px;}
.ls92{letter-spacing:60.276129px;}
.ls8f{letter-spacing:60.583347px;}
.lsc{letter-spacing:62.074058px;}
.ls6e{letter-spacing:66.780000px;}
.ls6d{letter-spacing:68.620200px;}
.ls2c{letter-spacing:69.579862px;}
.ls66{letter-spacing:73.673142px;}
.ls55{letter-spacing:78.808903px;}
.ls94{letter-spacing:80.907541px;}
.ls1a{letter-spacing:93.099983px;}
.ls7c{letter-spacing:97.181767px;}
.ls17{letter-spacing:97.620734px;}
.ls15{letter-spacing:99.526880px;}
.ls21{letter-spacing:101.420032px;}
.ls14{letter-spacing:101.548031px;}
.ls22{letter-spacing:102.219357px;}
.ls1e{letter-spacing:102.631770px;}
.ls20{letter-spacing:102.664899px;}
.ls8c{letter-spacing:105.595593px;}
.ls2a{letter-spacing:106.905481px;}
.ls1c{letter-spacing:109.705966px;}
.ls7d{letter-spacing:117.842976px;}
.ls6f{letter-spacing:123.494835px;}
.ls8b{letter-spacing:134.153685px;}
.ls19{letter-spacing:136.736737px;}
.ls13{letter-spacing:138.015219px;}
.ls29{letter-spacing:139.902503px;}
.ls1b{letter-spacing:141.363626px;}
.ls7e{letter-spacing:144.873624px;}
.ls8d{letter-spacing:146.825156px;}
.ls28{letter-spacing:149.293286px;}
.ls4f{letter-spacing:151.047243px;}
.ls69{letter-spacing:157.327404px;}
.ls87{letter-spacing:161.157084px;}
.ls81{letter-spacing:169.508265px;}
.ls7{letter-spacing:173.169402px;}
.ls74{letter-spacing:173.410540px;}
.ls88{letter-spacing:177.879097px;}
.ls6{letter-spacing:185.167282px;}
.ls48{letter-spacing:195.734579px;}
.ls77{letter-spacing:201.064252px;}
.ls58{letter-spacing:206.934864px;}
.ls23{letter-spacing:208.386090px;}
.ls1f{letter-spacing:208.975251px;}
.ls7b{letter-spacing:209.193786px;}
.ls78{letter-spacing:212.248211px;}
.ls47{letter-spacing:212.346768px;}
.ls79{letter-spacing:212.463584px;}
.ls90{letter-spacing:215.789771px;}
.ls5a{letter-spacing:223.045326px;}
.ls8e{letter-spacing:230.167563px;}
.ls91{letter-spacing:231.652714px;}
.ls41{letter-spacing:233.828649px;}
.ls3d{letter-spacing:234.564091px;}
.ls54{letter-spacing:236.097173px;}
.ls75{letter-spacing:236.183774px;}
.ls40{letter-spacing:243.797707px;}
.ls3c{letter-spacing:244.495601px;}
.ls32{letter-spacing:246.034608px;}
.ls72{letter-spacing:262.574225px;}
.ls86{letter-spacing:263.194479px;}
.ls25{letter-spacing:265.947077px;}
.ls5d{letter-spacing:267.655643px;}
.ls4c{letter-spacing:268.647884px;}
.ls5e{letter-spacing:271.779767px;}
.ls80{letter-spacing:272.101193px;}
.ls2d{letter-spacing:280.381511px;}
.ls84{letter-spacing:282.697824px;}
.ls5b{letter-spacing:286.577934px;}
.ls26{letter-spacing:288.453011px;}
.ls7f{letter-spacing:291.049004px;}
.ls4d{letter-spacing:291.224340px;}
.ls85{letter-spacing:293.533653px;}
.ls52{letter-spacing:326.582176px;}
.ls24{letter-spacing:339.474315px;}
.ls30{letter-spacing:340.730484px;}
.ls4b{letter-spacing:353.399184px;}
.ls61{letter-spacing:353.496425px;}
.ls4a{letter-spacing:354.593705px;}
.ls27{letter-spacing:362.404631px;}
.ls70{letter-spacing:363.123211px;}
.ls39{letter-spacing:365.305055px;}
.ls38{letter-spacing:366.568649px;}
.ls35{letter-spacing:369.157433px;}
.ls37{letter-spacing:369.696874px;}
.ls34{letter-spacing:370.296253px;}
.ls36{letter-spacing:370.895632px;}
.ls64{letter-spacing:375.652117px;}
.ls18{letter-spacing:391.092592px;}
.ls5f{letter-spacing:399.908158px;}
.ls5c{letter-spacing:414.533371px;}
.ls67{letter-spacing:428.215574px;}
.ls6b{letter-spacing:428.367295px;}
.ls68{letter-spacing:460.316778px;}
.ls6c{letter-spacing:460.753452px;}
.ls65{letter-spacing:462.500148px;}
.ls6a{letter-spacing:462.936822px;}
.ls42{letter-spacing:469.217534px;}
.ls3e{letter-spacing:469.392007px;}
.ls31{letter-spacing:596.109890px;}
.ls2f{letter-spacing:599.303874px;}
.ls62{letter-spacing:620.513844px;}
.ls3b{letter-spacing:721.532258px;}
.ls3a{letter-spacing:722.551202px;}
.ls0{letter-spacing:924.930000px;}
.ls51{letter-spacing:926.470870px;}
.ls96{letter-spacing:939.330000px;}
.ls50{letter-spacing:1180.844222px;}
.ls4e{letter-spacing:1181.859566px;}
.ls56{letter-spacing:1316.302960px;}
.ls53{letter-spacing:1373.281635px;}
.ls63{letter-spacing:1418.504298px;}
.ls60{letter-spacing:1466.679798px;}
.ls57{letter-spacing:1853.419549px;}
.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;}
}
.wse0{word-spacing:-230.241271px;}
.wse3{word-spacing:-215.863479px;}
.wse7{word-spacing:-215.255332px;}
.wsd4{word-spacing:-177.952804px;}
.ws24{word-spacing:-109.779582px;}
.ws3b{word-spacing:-106.979097px;}
.wsb{word-spacing:-101.621501px;}
.ws82{word-spacing:-78.886649px;}
.wsdd{word-spacing:-68.866472px;}
.wsdb{word-spacing:-68.299390px;}
.ws3{word-spacing:-31.949446px;}
.wsac{word-spacing:-25.191162px;}
.wsd7{word-spacing:-24.900487px;}
.wsd9{word-spacing:-24.289433px;}
.wsdf{word-spacing:-24.198671px;}
.wsec{word-spacing:-21.552000px;}
.ws1{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.wsed{word-spacing:-20.628000px;}
.wseb{word-spacing:-20.448000px;}
.ws49{word-spacing:-19.800000px;}
.wse4{word-spacing:-13.601014px;}
.wsce{word-spacing:-10.723276px;}
.ws76{word-spacing:-9.722201px;}
.ws95{word-spacing:-9.677687px;}
.wsbf{word-spacing:-9.517010px;}
.wsd1{word-spacing:-9.342916px;}
.ws84{word-spacing:-9.266660px;}
.ws26{word-spacing:-8.548292px;}
.ws1a{word-spacing:-8.402005px;}
.ws6f{word-spacing:-7.164740px;}
.ws3d{word-spacing:-6.115389px;}
.wsa6{word-spacing:-5.949037px;}
.ws9e{word-spacing:-5.775710px;}
.wsc2{word-spacing:-5.708065px;}
.ws99{word-spacing:-5.618508px;}
.ws83{word-spacing:-5.126972px;}
.ws79{word-spacing:-4.963180px;}
.ws3c{word-spacing:-4.638550px;}
.wsd0{word-spacing:-4.493313px;}
.wsd2{word-spacing:-4.484111px;}
.wsd8{word-spacing:-4.163032px;}
.ws35{word-spacing:-2.595441px;}
.ws39{word-spacing:-2.162867px;}
.ws8d{word-spacing:-0.788121px;}
.wsdc{word-spacing:-0.635382px;}
.wsda{word-spacing:-0.205533px;}
.wse9{word-spacing:-0.147135px;}
.wsb0{word-spacing:-0.088152px;}
.ws30{word-spacing:-0.087844px;}
.wsc{word-spacing:-0.083383px;}
.ws15{word-spacing:-0.080666px;}
.ws1c{word-spacing:-0.079052px;}
.ws16{word-spacing:-0.077746px;}
.wsb6{word-spacing:-0.076337px;}
.ws1f{word-spacing:-0.073678px;}
.ws9{word-spacing:-0.073616px;}
.wsae{word-spacing:-0.073527px;}
.ws8{word-spacing:-0.073470px;}
.wsa{word-spacing:0.000000px;}
.ws4d{word-spacing:0.690850px;}
.ws64{word-spacing:0.889933px;}
.ws32{word-spacing:1.836336px;}
.wsb2{word-spacing:1.944365px;}
.ws5c{word-spacing:1.975546px;}
.ws96{word-spacing:2.169256px;}
.ws37{word-spacing:2.236966px;}
.ws52{word-spacing:2.259450px;}
.ws55{word-spacing:2.419284px;}
.ws17{word-spacing:2.679142px;}
.ws6a{word-spacing:2.761392px;}
.ws94{word-spacing:3.624237px;}
.ws27{word-spacing:3.729506px;}
.wsbe{word-spacing:3.768974px;}
.wsb9{word-spacing:3.948907px;}
.ws75{word-spacing:4.184512px;}
.ws62{word-spacing:4.394913px;}
.wsd5{word-spacing:4.536784px;}
.ws25{word-spacing:4.969022px;}
.wse2{word-spacing:5.022538px;}
.wscd{word-spacing:5.040377px;}
.ws5a{word-spacing:5.558070px;}
.ws45{word-spacing:5.638386px;}
.ws50{word-spacing:6.111458px;}
.ws21{word-spacing:6.629783px;}
.ws63{word-spacing:7.989569px;}
.ws65{word-spacing:7.997358px;}
.ws9d{word-spacing:8.792424px;}
.ws5b{word-spacing:8.989167px;}
.ws5d{word-spacing:9.004744px;}
.wsa5{word-spacing:9.510022px;}
.ws48{word-spacing:19.249519px;}
.ws4b{word-spacing:20.229266px;}
.ws93{word-spacing:21.064335px;}
.ws85{word-spacing:21.391476px;}
.ws6{word-spacing:21.603229px;}
.ws9a{word-spacing:22.421725px;}
.wsc3{word-spacing:23.102118px;}
.ws2a{word-spacing:24.440401px;}
.ws38{word-spacing:24.584592px;}
.wsa3{word-spacing:24.873373px;}
.ws10{word-spacing:24.929277px;}
.ws9b{word-spacing:24.945070px;}
.ws58{word-spacing:25.126776px;}
.ws6e{word-spacing:25.219885px;}
.wsc6{word-spacing:25.311794px;}
.ws4a{word-spacing:25.725520px;}
.wsaf{word-spacing:26.175516px;}
.ws86{word-spacing:26.228402px;}
.ws20{word-spacing:26.303205px;}
.wsab{word-spacing:26.488888px;}
.ws7{word-spacing:26.567077px;}
.ws47{word-spacing:27.396320px;}
.ws4f{word-spacing:27.858407px;}
.wsc5{word-spacing:28.376236px;}
.ws13{word-spacing:28.717042px;}
.ws40{word-spacing:29.008004px;}
.ws4{word-spacing:29.643265px;}
.ws97{word-spacing:29.783092px;}
.ws60{word-spacing:29.902865px;}
.ws28{word-spacing:30.712716px;}
.ws6d{word-spacing:31.238266px;}
.ws77{word-spacing:31.271265px;}
.ws57{word-spacing:31.299540px;}
.ws89{word-spacing:31.381561px;}
.ws3e{word-spacing:32.214152px;}
.ws19{word-spacing:32.233146px;}
.ws18{word-spacing:32.920583px;}
.ws22{word-spacing:33.913547px;}
.ws4e{word-spacing:34.340696px;}
.ws67{word-spacing:35.855879px;}
.ws5f{word-spacing:36.295401px;}
.ws2{word-spacing:38.354058px;}
.ws68{word-spacing:39.278585px;}
.wse{word-spacing:39.314392px;}
.ws12{word-spacing:40.171592px;}
.ws74{word-spacing:45.639393px;}
.wsa4{word-spacing:45.997716px;}
.wsb7{word-spacing:46.183796px;}
.wsbd{word-spacing:46.565481px;}
.wsc9{word-spacing:46.624860px;}
.wsa1{word-spacing:48.160618px;}
.ws88{word-spacing:53.735549px;}
.wse1{word-spacing:57.049753px;}
.wscc{word-spacing:57.756746px;}
.wsa9{word-spacing:60.840472px;}
.ws9c{word-spacing:61.858006px;}
.wsf{word-spacing:61.947546px;}
.ws7d{word-spacing:63.264653px;}
.ws81{word-spacing:63.551243px;}
.ws59{word-spacing:66.012254px;}
.ws2d{word-spacing:66.111645px;}
.ws3a{word-spacing:66.255836px;}
.wsa0{word-spacing:69.284960px;}
.ws36{word-spacing:70.076902px;}
.ws7c{word-spacing:70.644336px;}
.ws8c{word-spacing:70.787630px;}
.ws1d{word-spacing:71.147046px;}
.wsbc{word-spacing:71.374958px;}
.wsb5{word-spacing:72.596348px;}
.ws3f{word-spacing:73.359716px;}
.wsa8{word-spacing:73.665064px;}
.wsd{word-spacing:76.379217px;}
.ws8f{word-spacing:77.379191px;}
.ws31{word-spacing:77.565953px;}
.wsad{word-spacing:78.359172px;}
.ws1e{word-spacing:78.426575px;}
.ws2f{word-spacing:78.795764px;}
.wsde{word-spacing:78.865108px;}
.ws5{word-spacing:81.728719px;}
.ws98{word-spacing:82.357939px;}
.ws71{word-spacing:82.896041px;}
.ws14{word-spacing:85.967497px;}
.wsc1{word-spacing:87.251874px;}
.ws4c{word-spacing:87.492723px;}
.ws1b{word-spacing:87.991906px;}
.ws23{word-spacing:92.727582px;}
.wsb1{word-spacing:94.163610px;}
.wsb8{word-spacing:94.773470px;}
.ws78{word-spacing:95.781917px;}
.wsc7{word-spacing:102.568519px;}
.wsca{word-spacing:102.791423px;}
.wsd6{word-spacing:104.795916px;}
.ws2e{word-spacing:105.577649px;}
.ws92{word-spacing:111.769943px;}
.ws70{word-spacing:120.510925px;}
.wsb3{word-spacing:129.085619px;}
.wsba{word-spacing:129.696314px;}
.ws44{word-spacing:140.001789px;}
.ws34{word-spacing:142.908253px;}
.ws2b{word-spacing:143.686487px;}
.ws11{word-spacing:145.696045px;}
.ws33{word-spacing:153.924059px;}
.ws29{word-spacing:154.212441px;}
.wse8{word-spacing:160.859764px;}
.ws54{word-spacing:168.475958px;}
.ws51{word-spacing:168.700712px;}
.wse5{word-spacing:168.843481px;}
.ws2c{word-spacing:169.352512px;}
.ws6b{word-spacing:169.546718px;}
.ws53{word-spacing:170.057263px;}
.ws56{word-spacing:170.298071px;}
.ws41{word-spacing:186.643607px;}
.wse6{word-spacing:186.873172px;}
.wsea{word-spacing:212.108243px;}
.ws9f{word-spacing:217.566661px;}
.ws69{word-spacing:219.690168px;}
.ws61{word-spacing:220.258393px;}
.wsc0{word-spacing:225.774059px;}
.wsc4{word-spacing:226.936943px;}
.ws46{word-spacing:237.122355px;}
.ws66{word-spacing:242.603834px;}
.ws5e{word-spacing:243.890778px;}
.wsa7{word-spacing:248.921018px;}
.ws43{word-spacing:254.430732px;}
.wsa2{word-spacing:266.613718px;}
.ws8e{word-spacing:291.389972px;}
.wsb4{word-spacing:293.560350px;}
.wsbb{word-spacing:294.628489px;}
.ws73{word-spacing:305.073692px;}
.ws91{word-spacing:305.552855px;}
.ws72{word-spacing:306.282204px;}
.ws90{word-spacing:306.761469px;}
.ws80{word-spacing:308.056354px;}
.ws7f{word-spacing:309.265307px;}
.wsaa{word-spacing:322.599542px;}
.wsd3{word-spacing:326.213087px;}
.ws7e{word-spacing:326.497198px;}
.wscf{word-spacing:334.760155px;}
.ws6c{word-spacing:342.595843px;}
.ws87{word-spacing:343.055030px;}
.ws8b{word-spacing:353.198906px;}
.ws7b{word-spacing:353.741583px;}
.ws8a{word-spacing:354.326004px;}
.ws7a{word-spacing:354.868680px;}
.ws42{word-spacing:391.760732px;}
.wsc8{word-spacing:445.275476px;}
.wscb{word-spacing:472.621198px;}
._f9{margin-left:-722.907234px;}
._f6{margin-left:-657.557486px;}
._105{margin-left:-558.246589px;}
._18{margin-left:-502.601730px;}
._29{margin-left:-440.349787px;}
._fc{margin-left:-420.899583px;}
._3c{margin-left:-416.263010px;}
._f8{margin-left:-393.483463px;}
._103{margin-left:-388.066018px;}
._104{margin-left:-381.769691px;}
._106{margin-left:-355.799975px;}
._ea{margin-left:-325.092739px;}
._fd{margin-left:-317.426016px;}
._55{margin-left:-315.763398px;}
._107{margin-left:-309.161568px;}
._100{margin-left:-286.598688px;}
._ff{margin-left:-256.054094px;}
._54{margin-left:-242.025998px;}
._47{margin-left:-233.839594px;}
._61{margin-left:-231.033021px;}
._28{margin-left:-225.555905px;}
._1b{margin-left:-218.122394px;}
._a5{margin-left:-206.726319px;}
._102{margin-left:-200.894977px;}
._101{margin-left:-198.984635px;}
._7c{margin-left:-189.706091px;}
._7e{margin-left:-183.663321px;}
._7b{margin-left:-171.070618px;}
._e5{margin-left:-162.319703px;}
._bb{margin-left:-159.675600px;}
._a4{margin-left:-153.603478px;}
._32{margin-left:-143.572842px;}
._31{margin-left:-140.123287px;}
._3e{margin-left:-133.483847px;}
._e4{margin-left:-127.722048px;}
._56{margin-left:-125.179414px;}
._2c{margin-left:-123.269838px;}
._2a{margin-left:-120.855372px;}
._f4{margin-left:-116.970245px;}
._3d{margin-left:-113.312994px;}
._fe{margin-left:-103.461718px;}
._27{margin-left:-97.470281px;}
._26{margin-left:-89.336698px;}
._3{margin-left:-2.700000px;}
._0{margin-left:-1.008000px;}
._1{width:1.344000px;}
._2{width:3.306000px;}
._f{width:4.704000px;}
._10{width:6.702000px;}
._16{width:7.876937px;}
._15{width:10.074000px;}
._4{width:11.592000px;}
._14{width:12.852000px;}
._8{width:14.448000px;}
._6{width:16.056000px;}
._7{width:17.124000px;}
._c{width:18.240000px;}
._5{width:22.512000px;}
._58{width:23.710207px;}
._24{width:25.098897px;}
._13{width:26.262000px;}
._7f{width:28.560000px;}
._22{width:29.713178px;}
._4c{width:31.577863px;}
._bc{width:32.632220px;}
._59{width:33.931986px;}
._7d{width:35.884098px;}
._12{width:37.014000px;}
._11{width:38.052000px;}
._a{width:40.194000px;}
._9{width:41.832000px;}
._b{width:42.966000px;}
._3f{width:44.575459px;}
._108{width:45.687363px;}
._2b{width:46.750260px;}
._d{width:52.164000px;}
._e{width:53.202000px;}
._8f{width:55.117869px;}
._ba{width:59.450109px;}
._b9{width:60.810064px;}
._72{width:62.830071px;}
._84{width:64.632460px;}
._1a{width:65.812914px;}
._f5{width:67.295497px;}
._38{width:68.600168px;}
._9d{width:71.193690px;}
._2f{width:72.599262px;}
._79{width:74.154823px;}
._dd{width:77.940330px;}
._1f{width:83.266813px;}
._ca{width:85.258689px;}
._20{width:86.902308px;}
._1d{width:91.196236px;}
._2e{width:96.848535px;}
._4f{width:102.592007px;}
._43{width:104.732896px;}
._37{width:105.802242px;}
._7a{width:107.059244px;}
._f1{width:108.061155px;}
._33{width:110.278271px;}
._2d{width:111.396305px;}
._40{width:115.166710px;}
._ee{width:118.182793px;}
._fb{width:119.304788px;}
._6b{width:120.383218px;}
._d6{width:121.843479px;}
._f2{width:125.679966px;}
._df{width:129.314630px;}
._30{width:130.356009px;}
._92{width:131.907577px;}
._8e{width:138.575983px;}
._1c{width:145.800000px;}
._51{width:149.013667px;}
._48{width:150.362407px;}
._65{width:153.284402px;}
._5c{width:154.717110px;}
._98{width:155.874436px;}
._e1{width:157.406592px;}
._19{width:162.912727px;}
._41{width:164.297388px;}
._34{width:165.366734px;}
._36{width:166.588844px;}
._ad{width:171.124294px;}
._17{width:172.261988px;}
._d0{width:173.307761px;}
._45{width:177.358687px;}
._3a{width:178.428033px;}
._53{width:181.464569px;}
._fa{width:182.466146px;}
._d4{width:184.639733px;}
._35{width:186.667669px;}
._76{width:187.828749px;}
._42{width:189.722943px;}
._f7{width:190.774728px;}
._73{width:193.865009px;}
._d8{width:195.021662px;}
._6e{width:199.551890px;}
._89{width:201.667799px;}
._87{width:202.758692px;}
._3b{width:205.772740px;}
._60{width:206.986404px;}
._46{width:208.751632px;}
._a3{width:209.910566px;}
._4e{width:211.672616px;}
._d3{width:214.992458px;}
._74{width:216.503020px;}
._e7{width:217.636369px;}
._e3{width:219.315780px;}
._bd{width:226.518017px;}
._23{width:228.517564px;}
._8d{width:230.273367px;}
._e2{width:231.835024px;}
._1e{width:233.539838px;}
._c8{width:236.293123px;}
._86{width:239.925800px;}
._83{width:240.942490px;}
._c0{width:242.050879px;}
._eb{width:243.446304px;}
._6d{width:246.110015px;}
._a6{width:249.732760px;}
._77{width:250.872964px;}
._af{width:255.852862px;}
._c5{width:257.311614px;}
._b5{width:259.076995px;}
._b1{width:260.223354px;}
._cf{width:263.653528px;}
._4a{width:265.383822px;}
._66{width:266.720966px;}
._9e{width:268.606100px;}
._f3{width:274.543778px;}
._6c{width:277.942483px;}
._25{width:279.234065px;}
._21{width:283.918158px;}
._8a{width:285.548883px;}
._50{width:287.805547px;}
._a0{width:291.175030px;}
._52{width:293.561678px;}
._5f{width:294.870913px;}
._6f{width:298.324423px;}
._ac{width:302.236435px;}
._cd{width:307.269221px;}
._90{width:309.323878px;}
._39{width:311.103329px;}
._44{width:315.103439px;}
._67{width:319.365111px;}
._b0{width:325.633762px;}
._c4{width:326.998730px;}
._b2{width:329.530213px;}
._b6{width:330.676572px;}
._88{width:332.022029px;}
._4b{width:334.235099px;}
._82{width:337.916469px;}
._5e{width:341.001626px;}
._5d{width:343.535428px;}
._64{width:346.798325px;}
._93{width:348.677346px;}
._57{width:350.200685px;}
._97{width:352.197042px;}
._ef{width:354.559866px;}
._f0{width:356.656980px;}
._b4{width:359.057904px;}
._a1{width:365.650345px;}
._db{width:367.215521px;}
._ed{width:371.652031px;}
._85{width:372.654914px;}
._8c{width:383.481156px;}
._c9{width:387.039250px;}
._a2{width:392.197863px;}
._e9{width:415.084516px;}
._5a{width:417.475511px;}
._cb{width:420.641881px;}
._94{width:421.846712px;}
._d1{width:423.947902px;}
._96{width:426.697543px;}
._95{width:428.202640px;}
._9b{width:429.413168px;}
._99{width:432.105464px;}
._70{width:436.106150px;}
._9c{width:440.363555px;}
._69{width:441.685034px;}
._d9{width:447.863605px;}
._da{width:451.336519px;}
._62{width:457.422339px;}
._4d{width:463.356084px;}
._71{width:468.961342px;}
._9f{width:475.165742px;}
._cc{width:491.240486px;}
._ce{width:508.100162px;}
._e8{width:520.464666px;}
._6a{width:540.770269px;}
._68{width:561.120104px;}
._ec{width:563.076449px;}
._e6{width:565.792545px;}
._b7{width:567.679025px;}
._b8{width:568.887979px;}
._c6{width:569.968360px;}
._a9{width:574.193471px;}
._aa{width:575.195335px;}
._78{width:587.488424px;}
._ae{width:597.277733px;}
._ab{width:598.317166px;}
._5b{width:651.642959px;}
._d5{width:684.342189px;}
._d2{width:686.865574px;}
._a7{width:720.602218px;}
._a8{width:722.107316px;}
._bf{width:747.453374px;}
._75{width:753.000528px;}
._c1{width:781.127651px;}
._9a{width:785.856380px;}
._e0{width:790.849801px;}
._8b{width:793.998698px;}
._49{width:798.563084px;}
._d7{width:843.531775px;}
._91{width:850.395075px;}
._63{width:861.995749px;}
._dc{width:886.576215px;}
._80{width:919.401163px;}
._de{width:926.118705px;}
._81{width:949.829254px;}
._b3{width:987.731045px;}
._c3{width:1008.867028px;}
._c2{width:1019.829080px;}
._c7{width:1138.835410px;}
._be{width:1316.306018px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs48{font-size:39.761606px;}
.fs4{font-size:40.760798px;}
.fs3b{font-size:41.492137px;}
.fs41{font-size:41.744345px;}
.fs20{font-size:42.033071px;}
.fs54{font-size:42.033744px;}
.fs36{font-size:42.472585px;}
.fs1c{font-size:42.544260px;}
.fs8{font-size:42.845598px;}
.fs27{font-size:42.855598px;}
.fs2{font-size:42.992928px;}
.fs71{font-size:43.002457px;}
.fs61{font-size:43.308577px;}
.fs2b{font-size:44.505814px;}
.fs13{font-size:44.519733px;}
.fs64{font-size:47.016684px;}
.fs67{font-size:48.906862px;}
.fs74{font-size:48.924512px;}
.fs77{font-size:51.047051px;}
.fs46{font-size:51.974969px;}
.fs4c{font-size:53.334576px;}
.fs39{font-size:54.291516px;}
.fs3f{font-size:54.744323px;}
.fs1f{font-size:54.999317px;}
.fs53{font-size:55.000198px;}
.fs34{font-size:55.518665px;}
.fs1a{font-size:55.612356px;}
.fs26{font-size:56.064436px;}
.fs70{font-size:56.211295px;}
.fs5f{font-size:56.668287px;}
.fs2a{font-size:58.234845px;}
.fs12{font-size:58.241486px;}
.fs75{font-size:59.537205px;}
.fs76{font-size:59.654544px;}
.fs1{font-size:60.000000px;}
.fs65{font-size:63.929324px;}
.fs63{font-size:66.734130px;}
.fs49{font-size:68.125720px;}
.fsc{font-size:68.299390px;}
.fs31{font-size:69.242747px;}
.fs5{font-size:69.913361px;}
.fs3c{font-size:71.028182px;}
.fs42{font-size:71.647399px;}
.fs21{font-size:72.095578px;}
.fs55{font-size:72.096733px;}
.fs4a{font-size:72.237766px;}
.fsd{font-size:72.398037px;}
.fs37{font-size:72.620741px;}
.fs1d{font-size:72.893392px;}
.fs32{font-size:73.305806px;}
.fs9{font-size:73.470122px;}
.fs28{font-size:73.526731px;}
.fs3{font-size:73.616234px;}
.fsb{font-size:73.622457px;}
.fs18{font-size:73.678445px;}
.fs6b{font-size:73.707691px;}
.fs7{font-size:74.020579px;}
.fs5e{font-size:74.031037px;}
.fs4e{font-size:74.067996px;}
.fs6{font-size:74.132586px;}
.fs60{font-size:74.283339px;}
.fs3d{font-size:75.091251px;}
.fs3e{font-size:75.092014px;}
.fs43{font-size:75.531986px;}
.fs4b{font-size:75.538407px;}
.fs45{font-size:75.559567px;}
.fs25{font-size:76.119902px;}
.fs4f{font-size:76.130618px;}
.fs22{font-size:76.137774px;}
.fs24{font-size:76.138765px;}
.fs56{font-size:76.143914px;}
.fs2e{font-size:76.167621px;}
.fs2c{font-size:76.336853px;}
.fs14{font-size:76.381863px;}
.fs1e{font-size:76.513746px;}
.fs38{font-size:76.548531px;}
.fs44{font-size:76.748244px;}
.fs50{font-size:76.843492px;}
.fs33{font-size:77.170104px;}
.fs29{font-size:77.299263px;}
.fs6f{font-size:77.458002px;}
.fs6c{font-size:77.472193px;}
.fs73{font-size:77.514811px;}
.fs72{font-size:77.618517px;}
.fs11{font-size:77.746020px;}
.fs62{font-size:78.199131px;}
.fs16{font-size:79.052274px;}
.fs6e{font-size:80.065550px;}
.fs6d{font-size:80.145738px;}
.fs58{font-size:80.477153px;}
.fsf{font-size:80.665847px;}
.fs5d{font-size:80.732028px;}
.fs5c{font-size:80.765628px;}
.fs51{font-size:80.772911px;}
.fs15{font-size:80.971306px;}
.fs2f{font-size:81.042070px;}
.fs2d{font-size:81.073181px;}
.fs19{font-size:81.229231px;}
.fsa{font-size:83.383425px;}
.fs68{font-size:83.794782px;}
.fs0{font-size:84.000000px;}
.fs5b{font-size:84.847847px;}
.fs10{font-size:85.593892px;}
.fs23{font-size:87.843661px;}
.fs5a{font-size:88.152268px;}
.fs6a{font-size:88.345153px;}
.fs69{font-size:88.378293px;}
.fs47{font-size:89.835497px;}
.fs30{font-size:91.359735px;}
.fs4d{font-size:92.160858px;}
.fs3a{font-size:93.814428px;}
.fs40{font-size:94.612075px;}
.fs52{font-size:95.180414px;}
.fs35{font-size:95.960554px;}
.fs1b{font-size:96.122494px;}
.fs59{font-size:97.012076px;}
.fs17{font-size:97.157722px;}
.fs57{font-size:100.778121px;}
.fse{font-size:106.431515px;}
.fs66{font-size:110.497855px;}
.y0{bottom:0.000000px;}
.y16b{bottom:2.122539px;}
.ybb{bottom:3.772118px;}
.y16f{bottom:4.245077px;}
.yac{bottom:4.250945px;}
.y105{bottom:4.463978px;}
.y135{bottom:4.546378px;}
.y72{bottom:4.571297px;}
.y113{bottom:4.571370px;}
.y6b{bottom:4.607088px;}
.yde{bottom:4.634146px;}
.y15c{bottom:4.635018px;}
.y80{bottom:4.671885px;}
.y27{bottom:4.686856px;}
.y34{bottom:4.723688px;}
.y49{bottom:4.853300px;}
.y8e{bottom:4.878116px;}
.y151{bottom:4.953580px;}
.y11e{bottom:5.066540px;}
.y45{bottom:5.224978px;}
.y50{bottom:5.374754px;}
.y39{bottom:5.669228px;}
.yef{bottom:5.680229px;}
.y75{bottom:5.903598px;}
.y112{bottom:6.071397px;}
.y5e{bottom:6.077751px;}
.ydd{bottom:6.480578px;}
.y30{bottom:6.614831px;}
.y6f{bottom:6.749865px;}
.y143{bottom:6.780132px;}
.y68{bottom:6.785509px;}
.y169{bottom:6.898250px;}
.y148{bottom:6.986695px;}
.y131{bottom:7.028295px;}
.y8b{bottom:7.184691px;}
.y3d{bottom:7.424950px;}
.y3c{bottom:7.966648px;}
.y10d{bottom:8.250000px;}
.y9d{bottom:8.350537px;}
.y9c{bottom:8.389301px;}
.yd2{bottom:8.652815px;}
.yee{bottom:8.843550px;}
.ybe{bottom:8.919233px;}
.y99{bottom:9.041819px;}
.y15d{bottom:9.380484px;}
.y82{bottom:9.417199px;}
.y121{bottom:9.423422px;}
.y28{bottom:9.447376px;}
.y5c{bottom:9.462452px;}
.y37{bottom:9.484361px;}
.yb3{bottom:9.519185px;}
.y53{bottom:9.564361px;}
.y11b{bottom:9.601228px;}
.y4a{bottom:9.782880px;}
.yf0{bottom:10.102145px;}
.y9a{bottom:10.288972px;}
.y40{bottom:10.533464px;}
.y5f{bottom:10.809128px;}
.y146{bottom:10.877586px;}
.y54{bottom:10.925541px;}
.y41{bottom:11.986362px;}
.y149{bottom:12.425660px;}
.yb8{bottom:13.114450px;}
.ya7{bottom:13.770130px;}
.y2d{bottom:15.757216px;}
.y71{bottom:15.927956px;}
.y6a{bottom:15.963305px;}
.y65{bottom:16.213699px;}
.yb7{bottom:16.393244px;}
.y111{bottom:16.607229px;}
.y130{bottom:16.742130px;}
.y8d{bottom:16.902403px;}
.ya5{bottom:17.149727px;}
.y87{bottom:17.167526px;}
.ye8{bottom:17.341466px;}
.y110{bottom:17.429122px;}
.yba{bottom:17.697434px;}
.y10a{bottom:17.713396px;}
.y15a{bottom:17.767240px;}
.ydc{bottom:17.775973px;}
.y7f{bottom:17.805169px;}
.yed{bottom:17.857681px;}
.ycc{bottom:18.065644px;}
.yab{bottom:18.456373px;}
.y48{bottom:18.496565px;}
.y15b{bottom:18.539465px;}
.y81{bottom:18.577394px;}
.yfa{bottom:19.013783px;}
.y5b{bottom:19.107423px;}
.y4b{bottom:19.298777px;}
.ydb{bottom:19.587166px;}
.y5d{bottom:19.871419px;}
.y2f{bottom:20.294985px;}
.ybd{bottom:20.342162px;}
.y116{bottom:20.721741px;}
.y6e{bottom:20.856284px;}
.y67{bottom:20.891633px;}
.y107{bottom:21.034842px;}
.yb2{bottom:21.182049px;}
.yc8{bottom:21.361031px;}
.y12e{bottom:21.563536px;}
.y145{bottom:21.964986px;}
.y89{bottom:22.120657px;}
.y10b{bottom:22.357529px;}
.yd1{bottom:22.700388px;}
.y147{bottom:22.843240px;}
.y16e{bottom:23.374031px;}
.yb6{bottom:25.806092px;}
.ybc{bottom:26.546151px;}
.ya4{bottom:26.777250px;}
.yae{bottom:27.539960px;}
.y2c{bottom:28.122174px;}
.yf9{bottom:28.260721px;}
.yb9{bottom:28.908813px;}
.yfb{bottom:28.987735px;}
.y63{bottom:29.106005px;}
.y64{bottom:29.855711px;}
.yaf{bottom:29.938973px;}
.y12c{bottom:30.027175px;}
.y108{bottom:30.607381px;}
.y12f{bottom:30.799632px;}
.y86{bottom:30.818268px;}
.yc7{bottom:30.882860px;}
.y70{bottom:30.927984px;}
.y69{bottom:30.963333px;}
.y2e{bottom:31.307325px;}
.y109{bottom:31.357100px;}
.ycb{bottom:31.607039px;}
.y8a{bottom:31.612078px;}
.y66{bottom:32.284526px;}
.y10f{bottom:32.427917px;}
.yda{bottom:32.692560px;}
.y8c{bottom:32.784860px;}
.y12d{bottom:33.264209px;}
.y10c{bottom:33.749131px;}
.y10e{bottom:33.964178px;}
.yd0{bottom:33.996082px;}
.y88{bottom:34.183776px;}
.yd9{bottom:34.575425px;}
.y16d{bottom:42.529941px;}
.yaa{bottom:53.009065px;}
.y2{bottom:53.137500px;}
.yb1{bottom:58.277605px;}
.y1{bottom:59.137500px;}
.yd8{bottom:61.511884px;}
.ya6{bottom:62.564663px;}
.yd7{bottom:63.393256px;}
.ycf{bottom:65.529956px;}
.ya3{bottom:65.907698px;}
.ya9{bottom:67.251805px;}
.yb0{bottom:69.940019px;}
.y162{bottom:72.271981px;}
.ye7{bottom:74.218607px;}
.yd6{bottom:74.653114px;}
.yca{bottom:74.942785px;}
.ya2{bottom:75.535221px;}
.yad{bottom:76.299429px;}
.yd5{bottom:76.464307px;}
.yc6{bottom:78.274007px;}
.ya8{bottom:78.732907px;}
.yce{bottom:79.577529px;}
.yc5{bottom:87.760001px;}
.yc9{bottom:88.520015px;}
.yd4{bottom:89.569701px;}
.ycd{bottom:90.873223px;}
.yd3{bottom:91.452566px;}
.yc2{bottom:100.650000px;}
.yc3{bottom:109.537500px;}
.y128{bottom:124.350000px;}
.y163{bottom:124.911997px;}
.y129{bottom:133.237500px;}
.yc1{bottom:134.137500px;}
.y126{bottom:152.850000px;}
.ybf{bottom:153.330000px;}
.yb5{bottom:153.450000px;}
.y167{bottom:159.456311px;}
.y35{bottom:160.530000px;}
.yc0{bottom:171.375000px;}
.y127{bottom:173.775000px;}
.y164{bottom:176.988479px;}
.y33{bottom:179.550000px;}
.y32{bottom:188.475000px;}
.ya1{bottom:199.350000px;}
.y125{bottom:205.275000px;}
.y124{bottom:206.850000px;}
.y2b{bottom:208.050000px;}
.y123{bottom:227.775000px;}
.y31{bottom:228.975000px;}
.y165{bottom:229.606208px;}
.yb4{bottom:242.775000px;}
.y120{bottom:261.150000px;}
.y2a{bottom:261.375000px;}
.y11f{bottom:265.575000px;}
.y11d{bottom:265.650000px;}
.y122{bottom:270.075000px;}
.y160{bottom:273.075000px;}
.y29{bottom:280.275000px;}
.y26{bottom:280.350000px;}
.y166{bottom:282.245163px;}
.y15f{bottom:292.950000px;}
.y11c{bottom:294.675000px;}
.ya0{bottom:296.250000px;}
.y15e{bottom:297.375000px;}
.y9f{bottom:305.175000px;}
.y25{bottom:313.275000px;}
.y119{bottom:313.650000px;}
.y159{bottom:316.350000px;}
.y157{bottom:320.850000px;}
.y11a{bottom:324.075000px;}
.y158{bottom:325.275000px;}
.y9e{bottom:330.075000px;}
.y24{bottom:337.620000px;}
.y98{bottom:349.050000px;}
.y118{bottom:349.905000px;}
.y9b{bottom:352.050000px;}
.y156{bottom:352.620000px;}
.y97{bottom:359.505000px;}
.y23{bottom:361.620000px;}
.y115{bottom:368.850000px;}
.y153{bottom:371.550000px;}
.y155{bottom:373.050000px;}
.y95{bottom:379.050000px;}
.y154{bottom:380.505000px;}
.y22{bottom:385.905000px;}
.y117{bottom:389.820000px;}
.y114{bottom:394.320000px;}
.y96{bottom:400.005000px;}
.y152{bottom:403.350000px;}
.y150{bottom:407.850000px;}
.y21{bottom:409.905000px;}
.y14f{bottom:412.320000px;}
.y106{bottom:422.850000px;}
.y20{bottom:434.205000px;}
.y14e{bottom:435.705000px;}
.y161{bottom:435.716845px;}
.y94{bottom:438.405000px;}
.y16c{bottom:439.961891px;}
.y180{bottom:440.205000px;}
.y91{bottom:457.350000px;}
.y1f{bottom:458.205000px;}
.y17f{bottom:464.820000px;}
.y93{bottom:473.820000px;}
.y92{bottom:473.850000px;}
.y103{bottom:476.850000px;}
.y90{bottom:478.320000px;}
.y104{bottom:481.350000px;}
.y1e{bottom:482.505000px;}
.y102{bottom:485.820000px;}
.y17e{bottom:489.120000px;}
.y1d{bottom:506.550000px;}
.y85{bottom:508.350000px;}
.y101{bottom:510.750000px;}
.y17d{bottom:513.150000px;}
.y8f{bottom:529.350000px;}
.yff{bottom:529.650000px;}
.y1c{bottom:530.850000px;}
.y17c{bottom:537.450000px;}
.y100{bottom:550.650000px;}
.y1b{bottom:554.850000px;}
.y17b{bottom:561.450000px;}
.y84{bottom:567.450000px;}
.y1a{bottom:579.150000px;}
.yfe{bottom:581.250000px;}
.y16a{bottom:583.467356px;}
.yfd{bottom:585.750000px;}
.y7d{bottom:586.350000px;}
.y83{bottom:590.850000px;}
.y7e{bottom:595.350000px;}
.y19{bottom:603.150000px;}
.yf8{bottom:604.650000px;}
.y168{bottom:607.929612px;}
.y17a{bottom:609.750000px;}
.y7c{bottom:617.250000px;}
.yfc{bottom:625.650000px;}
.y18{bottom:627.450000px;}
.y179{bottom:634.050000px;}
.y7b{bottom:638.250000px;}
.y17{bottom:650.850000px;}
.yf7{bottom:653.550000px;}
.yf6{bottom:658.050000px;}
.y7a{bottom:668.550000px;}
.y16{bottom:675.195000px;}
.yf4{bottom:676.950000px;}
.y79{bottom:677.580000px;}
.y178{bottom:682.380000px;}
.y78{bottom:697.050000px;}
.y15{bottom:699.780000px;}
.y177{bottom:706.380000px;}
.y77{bottom:718.080000px;}
.y14{bottom:724.080000px;}
.yf5{bottom:727.980000px;}
.y176{bottom:730.695000px;}
.y14d{bottom:743.280000px;}
.y6d{bottom:747.750000px;}
.y13{bottom:748.080000px;}
.y14b{bottom:762.150000px;}
.y74{bottom:764.250000px;}
.y76{bottom:764.280000px;}
.y73{bottom:768.795000px;}
.y12{bottom:772.380000px;}
.y14c{bottom:772.695000px;}
.y175{bottom:778.980000px;}
.yf2{bottom:787.950000px;}
.y11{bottom:796.380000px;}
.yf3{bottom:796.980000px;}
.y174{bottom:798.450000px;}
.y62{bottom:798.750000px;}
.y142{bottom:799.050000px;}
.y144{bottom:799.080000px;}
.y172{bottom:802.950000px;}
.y171{bottom:802.980000px;}
.y173{bottom:807.480000px;}
.y14a{bottom:809.580000px;}
.y6c{bottom:819.795000px;}
.y10{bottom:820.695000px;}
.yf1{bottom:821.880000px;}
.y170{bottom:826.695000px;}
.yec{bottom:840.750000px;}
.y141{bottom:841.425000px;}
.yf{bottom:844.725000px;}
.yeb{bottom:846.750000px;}
.yea{bottom:851.325000px;}
.y61{bottom:855.225000px;}
.y140{bottom:865.425000px;}
.ye{bottom:869.025000px;}
.ye6{bottom:870.750000px;}
.y5a{bottom:874.050000px;}
.y58{bottom:875.550000px;}
.y60{bottom:880.050000px;}
.y59{bottom:884.625000px;}
.y13f{bottom:889.725000px;}
.yd{bottom:893.025000px;}
.y56{bottom:906.150000px;}
.y13e{bottom:913.125000px;}
.y57{bottom:915.225000px;}
.yc{bottom:916.725000px;}
.ye9{bottom:921.825000px;}
.y13d{bottom:938.025000px;}
.y52{bottom:938.250000px;}
.yb{bottom:941.325000px;}
.y55{bottom:944.250000px;}
.y51{bottom:948.825000px;}
.y13c{bottom:962.025000px;}
.ya{bottom:965.625000px;}
.y4e{bottom:969.150000px;}
.y4f{bottom:973.650000px;}
.y4d{bottom:978.225000px;}
.y13b{bottom:981.150000px;}
.ye4{bottom:981.750000px;}
.y13a{bottom:988.725000px;}
.y9{bottom:989.625000px;}
.ye5{bottom:990.825000px;}
.y47{bottom:997.650000px;}
.y4c{bottom:1006.725000px;}
.y139{bottom:1013.355000px;}
.y8{bottom:1013.955000px;}
.ye3{bottom:1015.755000px;}
.ye2{bottom:1034.550000px;}
.y46{bottom:1034.955000px;}
.y7{bottom:1037.355000px;}
.y138{bottom:1037.670000px;}
.ye1{bottom:1040.550000px;}
.ye0{bottom:1045.170000px;}
.y43{bottom:1054.050000px;}
.y137{bottom:1056.450000px;}
.y44{bottom:1060.050000px;}
.y6{bottom:1062.255000px;}
.y42{bottom:1064.670000px;}
.yc4{bottom:1066.650000px;}
.y136{bottom:1074.570000px;}
.y3f{bottom:1087.950000px;}
.y3e{bottom:1098.570000px;}
.y134{bottom:1103.250000px;}
.y133{bottom:1107.870000px;}
.y5{bottom:1110.570000px;}
.ydf{bottom:1117.755000px;}
.y3b{bottom:1121.850000px;}
.y12a{bottom:1126.650000px;}
.y12b{bottom:1126.755000px;}
.y3a{bottom:1129.455000px;}
.y4{bottom:1133.955000px;}
.y132{bottom:1147.755000px;}
.y36{bottom:1149.150000px;}
.y38{bottom:1153.650000px;}
.y3{bottom:1158.255000px;}
.hae{height:17.099117px;}
.h8d{height:18.900565px;}
.hba{height:21.900020px;}
.h2e{height:21.900332px;}
.h24{height:23.099888px;}
.h1a{height:23.100097px;}
.h16{height:23.100217px;}
.ha0{height:23.100729px;}
.h9e{height:24.000393px;}
.h18{height:24.900455px;}
.hc9{height:24.966359px;}
.h42{height:26.100097px;}
.h5d{height:26.100334px;}
.h6{height:27.899834px;}
.h58{height:29.099270px;}
.h80{height:30.000343px;}
.h30{height:30.899615px;}
.h26{height:32.099484px;}
.h34{height:32.099870px;}
.h1e{height:33.899829px;}
.hc8{height:35.618383px;}
.hb1{height:36.900486px;}
.hce{height:37.163649px;}
.h83{height:39.023842px;}
.hf{height:39.984591px;}
.ha{height:40.004494px;}
.h6d{height:40.702003px;}
.h6b{height:40.722263px;}
.h77{height:40.949409px;}
.h75{height:40.969792px;}
.ha4{height:41.224380px;}
.h46{height:41.232637px;}
.h96{height:41.233297px;}
.h3c{height:41.253161px;}
.h94{height:41.253821px;}
.h64{height:41.663781px;}
.h62{height:41.684519px;}
.h37{height:41.754865px;}
.h4b{height:42.039500px;}
.h14{height:42.050611px;}
.h7{height:42.195208px;}
.hc4{height:42.204560px;}
.haa{height:42.483853px;}
.hca{height:43.344713px;}
.hcc{height:43.430139px;}
.h51{height:43.658291px;}
.h2a{height:43.671945px;}
.h4f{height:43.680023px;}
.h28{height:43.693683px;}
.h68{height:45.901083px;}
.hb0{height:46.144304px;}
.hb8{height:47.975530px;}
.hb4{height:47.999410px;}
.h9{height:48.000090px;}
.h81{height:48.142830px;}
.h89{height:49.402193px;}
.h69{height:50.288577px;}
.h73{height:50.707998px;}
.h3b{height:50.944191px;}
.h93{height:50.945007px;}
.h3a{height:50.999211px;}
.ha7{height:51.000366px;}
.h60{height:51.425247px;}
.h35{height:51.512031px;}
.h49{height:51.930778px;}
.hc3{height:52.066810px;}
.ha8{height:52.490108px;}
.h4e{height:53.941162px;}
.h27{height:53.947314px;}
.h91{height:53.998903px;}
.h4d{height:53.999419px;}
.hcd{height:57.414666px;}
.h5{height:58.898438px;}
.hb2{height:59.215785px;}
.h3{height:61.670545px;}
.h87{height:63.102778px;}
.h1d{height:63.263644px;}
.h5c{height:64.137447px;}
.he{height:64.758616px;}
.haf{height:65.463314px;}
.h70{height:65.791241px;}
.h7a{height:66.364803px;}
.h40{height:66.779937px;}
.h99{height:66.781007px;}
.h85{height:66.828404px;}
.h86{height:66.911642px;}
.h1b{height:66.998767px;}
.hc1{height:67.032116px;}
.h1c{height:67.060096px;}
.h67{height:67.266380px;}
.h7d{height:67.518928px;}
.h5b{height:67.900934px;}
.h5a{height:67.957969px;}
.hbd{height:68.273188px;}
.hcb{height:68.557994px;}
.h10{height:68.563007px;}
.ha6{height:68.572694px;}
.hc{height:68.582003px;}
.h8b{height:68.606928px;}
.hb{height:68.616140px;}
.hd{height:68.666756px;}
.had{height:68.806394px;}
.h6f{height:69.554738px;}
.h71{height:69.555445px;}
.h6e{height:69.675595px;}
.h6c{height:69.710276px;}
.h79{height:69.962977px;}
.h88{height:69.968925px;}
.h7e{height:69.988525px;}
.h78{height:70.283020px;}
.h76{height:70.318004px;}
.h48{height:70.507546px;}
.h8c{height:70.517472px;}
.h3f{height:70.524100px;}
.h47{height:70.525018px;}
.h98{height:70.529788px;}
.h55{height:70.551746px;}
.h54{height:70.708501px;}
.h3e{height:70.722664px;}
.h97{height:70.723797px;}
.h2d{height:70.750193px;}
.h3d{height:70.757867px;}
.h95{height:70.759001px;}
.h39{height:70.872351px;}
.h66{height:70.904572px;}
.h7c{height:71.089560px;}
.h90{height:71.177785px;}
.h65{height:71.237827px;}
.h63{height:71.273286px;}
.h7b{height:71.540878px;}
.h4c{height:71.599952px;}
.hc2{height:71.746987px;}
.hbc{height:71.760131px;}
.hc6{height:71.799607px;}
.hc5{height:71.895668px;}
.h15{height:72.071033px;}
.h9d{height:72.162465px;}
.h13{height:72.214363px;}
.h8{height:72.250308px;}
.h19{height:72.256415px;}
.h32{height:72.311364px;}
.hbb{height:72.340067px;}
.hac{height:72.433472px;}
.hab{height:72.868764px;}
.h84{height:72.882678px;}
.ha9{height:72.905035px;}
.hc0{height:74.162280px;}
.hbf{height:74.236555px;}
.h9b{height:74.543534px;}
.h22{height:74.718316px;}
.ha5{height:74.779618px;}
.ha3{height:74.810741px;}
.h8f{height:74.817486px;}
.h52{height:74.883173px;}
.h50{height:74.920447px;}
.h2b{height:74.927326px;}
.h29{height:74.964622px;}
.h2c{height:75.001254px;}
.h57{height:75.066800px;}
.h53{height:75.095618px;}
.h33{height:75.240162px;}
.h8e{height:75.380164px;}
.h5e{height:75.738237px;}
.h7f{height:76.265505px;}
.h25{height:76.303467px;}
.h2f{height:77.585483px;}
.hb7{height:77.616554px;}
.h20{height:79.129730px;}
.h23{height:79.169117px;}
.h21{height:79.283014px;}
.ha2{height:81.623976px;}
.hb9{height:81.831423px;}
.h17{height:81.836271px;}
.hb6{height:81.862120px;}
.hb5{height:82.199081px;}
.h2{height:82.441406px;}
.h82{height:83.211884px;}
.ha1{height:83.232092px;}
.h59{height:84.623739px;}
.h4{height:84.656250px;}
.h8a{height:85.365795px;}
.h43{height:86.170857px;}
.h45{height:86.213749px;}
.hcf{height:86.338763px;}
.h9f{height:86.516630px;}
.h6a{height:86.897446px;}
.h74{height:87.636282px;}
.h92{height:88.162717px;}
.h61{height:88.885337px;}
.h36{height:89.035338px;}
.h9c{height:89.859330px;}
.h31{height:89.994238px;}
.h38{height:90.430790px;}
.h4a{height:91.143722px;}
.h11{height:91.149598px;}
.h12{height:91.292390px;}
.h9a{height:93.347703px;}
.hbe{height:94.682944px;}
.h5f{height:96.900080px;}
.h1f{height:98.584269px;}
.h56{height:100.441406px;}
.h44{height:100.501406px;}
.hb3{height:102.350797px;}
.h72{height:111.002403px;}
.h41{height:116.294233px;}
.hc7{height:302.430504px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w39{width:11.100269px;}
.w23{width:21.899901px;}
.w27{width:21.900121px;}
.w7{width:23.099995px;}
.w4a{width:25.015564px;}
.w5{width:27.899167px;}
.w6{width:27.899804px;}
.w34{width:29.099691px;}
.w49{width:32.459090px;}
.w3b{width:36.899774px;}
.we{width:36.900159px;}
.w31{width:38.099635px;}
.wa{width:39.900205px;}
.w2c{width:41.099827px;}
.w29{width:42.900496px;}
.w22{width:50.099849px;}
.w1b{width:50.998746px;}
.w11{width:53.998414px;}
.w14{width:54.001134px;}
.wd{width:59.098585px;}
.w21{width:59.100548px;}
.w13{width:62.099111px;}
.w8{width:62.101526px;}
.w20{width:68.101253px;}
.w40{width:75.000520px;}
.w44{width:77.097616px;}
.w3a{width:77.101148px;}
.w16{width:81.898064px;}
.w17{width:84.901607px;}
.w18{width:86.100311px;}
.w47{width:86.101547px;}
.w43{width:92.098110px;}
.w46{width:93.002165px;}
.w4c{width:102.000015px;}
.wb{width:107.095442px;}
.w9{width:107.997521px;}
.w1c{width:111.896231px;}
.w2d{width:119.101956px;}
.w45{width:119.102449px;}
.w41{width:122.105517px;}
.w10{width:122.998377px;}
.w2a{width:125.096164px;}
.w2{width:128.100014px;}
.wc{width:135.896843px;}
.w42{width:141.900330px;}
.w19{width:179.097083px;}
.w3c{width:179.103199px;}
.w3f{width:180.896075px;}
.w4{width:180.897424px;}
.w3e{width:185.094212px;}
.w3{width:191.095203px;}
.w3d{width:193.203944px;}
.w38{width:203.099655px;}
.w2f{width:210.902470px;}
.w37{width:215.994055px;}
.w1e{width:231.004965px;}
.w30{width:261.899047px;}
.w1a{width:266.107439px;}
.wf{width:266.999931px;}
.w12{width:278.098495px;}
.w36{width:278.102521px;}
.w25{width:284.999706px;}
.w24{width:299.087310px;}
.w35{width:303.009210px;}
.w26{width:304.797260px;}
.w1f{width:355.798449px;}
.w15{width:361.194877px;}
.w4b{width:402.375745px;}
.w33{width:410.093725px;}
.w28{width:416.110398px;}
.w32{width:420.910990px;}
.w2b{width:464.110150px;}
.w1d{width:469.210126px;}
.w48{width:493.931115px;}
.w2e{width:582.886899px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.192774px;}
.x27{left:3.317867px;}
.x5c{left:4.353924px;}
.xeb{left:9.375329px;}
.x87{left:11.025910px;}
.x11{left:12.133019px;}
.x21{left:14.019696px;}
.x2f{left:15.768948px;}
.xe0{left:16.914990px;}
.x4d{left:18.660371px;}
.xc{left:20.811671px;}
.x4f{left:22.726656px;}
.xe6{left:24.537815px;}
.x38{left:25.583374px;}
.x2e{left:28.826486px;}
.x44{left:31.040240px;}
.x4e{left:32.073366px;}
.x35{left:33.646920px;}
.xe3{left:36.087574px;}
.x32{left:37.884685px;}
.xd0{left:39.883844px;}
.xee{left:41.524241px;}
.xc1{left:42.628592px;}
.x79{left:43.854496px;}
.x1e{left:44.981431px;}
.xe1{left:46.295247px;}
.x86{left:47.345634px;}
.x16{left:48.787757px;}
.x58{left:50.184377px;}
.x93{left:52.621624px;}
.x3d{left:54.316660px;}
.x98{left:55.588785px;}
.x4b{left:57.192259px;}
.x59{left:59.715551px;}
.x62{left:60.969539px;}
.x9e{left:62.182173px;}
.x2a{left:64.072315px;}
.x68{left:65.782849px;}
.x78{left:66.839023px;}
.x90{left:67.951366px;}
.x77{left:69.387337px;}
.x69{left:71.576254px;}
.x41{left:72.618699px;}
.xa2{left:74.303933px;}
.x57{left:75.331331px;}
.x9c{left:77.745301px;}
.x31{left:78.854511px;}
.xa6{left:80.052512px;}
.x74{left:81.236030px;}
.x7e{left:82.291839px;}
.x92{left:83.751640px;}
.x2{left:84.937500px;}
.x7f{left:86.770386px;}
.xaa{left:88.063058px;}
.x97{left:90.441204px;}
.xb{left:92.325364px;}
.x3{left:94.237500px;}
.xce{left:95.370051px;}
.x63{left:96.389795px;}
.xc0{left:97.673570px;}
.x4{left:99.337500px;}
.xa5{left:100.409508px;}
.x96{left:101.660121px;}
.x67{left:103.507351px;}
.x9d{left:105.543123px;}
.x60{left:107.603808px;}
.x5f{left:108.873319px;}
.xdf{left:111.062709px;}
.x61{left:113.047999px;}
.x1a{left:115.662278px;}
.x6a{left:117.302243px;}
.x91{left:119.086470px;}
.x1c{left:121.392633px;}
.x10{left:123.669393px;}
.x5{left:127.537500px;}
.x14{left:129.481129px;}
.x12{left:132.733041px;}
.x1d{left:133.972590px;}
.x9a{left:135.548427px;}
.x73{left:140.170563px;}
.x15{left:142.234913px;}
.xa1{left:143.762315px;}
.xd7{left:145.263985px;}
.xb2{left:146.815554px;}
.x19{left:148.497440px;}
.x1b{left:149.764229px;}
.xd8{left:154.646013px;}
.xf{left:156.959186px;}
.xe{left:158.394743px;}
.x55{left:162.239862px;}
.xda{left:164.666490px;}
.xba{left:166.122425px;}
.xdb{left:168.725487px;}
.xca{left:170.430000px;}
.x3c{left:171.955342px;}
.xd6{left:173.926400px;}
.xd4{left:177.252510px;}
.x2b{left:178.650000px;}
.x56{left:180.664957px;}
.x3b{left:184.432752px;}
.x3a{left:185.846859px;}
.x95{left:187.790040px;}
.x28{left:189.675000px;}
.x49{left:192.026908px;}
.x48{left:193.464287px;}
.xf0{left:196.350000px;}
.x4a{left:198.067320px;}
.x53{left:199.975297px;}
.x9b{left:202.804069px;}
.x54{left:204.191463px;}
.xcd{left:205.350000px;}
.x76{left:207.150000px;}
.x5a{left:209.475000px;}
.xdd{left:211.050000px;}
.x8e{left:212.623370px;}
.x8d{left:214.796207px;}
.x81{left:216.871756px;}
.x2c{left:218.475000px;}
.x80{left:220.457930px;}
.xd3{left:222.330629px;}
.xcf{left:223.978794px;}
.xa3{left:225.472870px;}
.xc9{left:227.250000px;}
.x8f{left:229.436635px;}
.xc6{left:234.370508px;}
.xd1{left:236.994237px;}
.xc3{left:238.523734px;}
.xa4{left:240.333956px;}
.x43{left:241.950000px;}
.xc2{left:243.388195px;}
.xd5{left:247.953812px;}
.xc4{left:254.440221px;}
.xd{left:255.675000px;}
.xc5{left:258.782151px;}
.x64{left:263.250000px;}
.x83{left:265.560316px;}
.xa8{left:267.675000px;}
.xf1{left:271.275000px;}
.x66{left:273.450000px;}
.x33{left:277.575000px;}
.xe5{left:287.775000px;}
.xc7{left:288.925765px;}
.x3f{left:294.750000px;}
.x45{left:295.875000px;}
.xa9{left:303.150000px;}
.x5b{left:304.650000px;}
.x82{left:310.812821px;}
.xac{left:315.348817px;}
.x17{left:318.720000px;}
.x29{left:321.750000px;}
.x70{left:323.367535px;}
.x65{left:325.320000px;}
.xe7{left:329.520000px;}
.xa0{left:331.459023px;}
.xbb{left:338.520000px;}
.xe8{left:340.050000px;}
.x72{left:343.886587px;}
.x7{left:346.020000px;}
.x9{left:347.220000px;}
.xd9{left:349.050000px;}
.x18{left:350.550000px;}
.x40{left:356.820000px;}
.xad{left:359.148931px;}
.x6f{left:360.154546px;}
.x8{left:361.905000px;}
.x71{left:366.062560px;}
.x6c{left:373.320000px;}
.x46{left:378.750000px;}
.xbc{left:386.820000px;}
.x6{left:389.505000px;}
.x3e{left:394.620000px;}
.x50{left:400.620000px;}
.x4c{left:405.720000px;}
.x85{left:413.550000px;}
.x47{left:415.620000px;}
.xe9{left:417.120000px;}
.x34{left:419.850000px;}
.x8b{left:421.650000px;}
.x99{left:423.150000px;}
.x94{left:426.750000px;}
.xab{left:428.250000px;}
.x1{left:430.650000px;}
.x7a{left:438.150000px;}
.x5d{left:440.250000px;}
.x8c{left:443.550000px;}
.xa{left:446.250000px;}
.x36{left:478.950000px;}
.x88{left:481.650000px;}
.x84{left:483.450000px;}
.x37{left:488.250000px;}
.x2d{left:501.450000px;}
.x6d{left:504.750000px;}
.xd2{left:508.350000px;}
.xb6{left:514.950000px;}
.xb3{left:519.127565px;}
.x39{left:525.150000px;}
.x5e{left:526.350000px;}
.x1f{left:531.450000px;}
.xb4{left:534.001252px;}
.xc8{left:537.750000px;}
.x6b{left:539.595000px;}
.xcb{left:541.650000px;}
.xa7{left:543.780000px;}
.xea{left:546.780000px;}
.xaf{left:548.850000px;}
.xdc{left:552.195000px;}
.x51{left:556.350000px;}
.xb7{left:557.880000px;}
.x7b{left:568.950000px;}
.xcc{left:570.780000px;}
.xde{left:577.095000px;}
.xed{left:584.798898px;}
.xb8{left:588.150000px;}
.xb0{left:589.995000px;}
.xae{left:591.780000px;}
.x75{left:596.880000px;}
.x30{left:608.595000px;}
.xbd{left:609.780000px;}
.x42{left:611.880000px;}
.x6e{left:616.695000px;}
.xe4{left:622.695000px;}
.xb9{left:625.095000px;}
.xb1{left:628.350000px;}
.xec{left:637.650000px;}
.xf2{left:638.880000px;}
.x89{left:663.150000px;}
.x20{left:667.650000px;}
.xef{left:674.925000px;}
.xbe{left:676.650000px;}
.x52{left:679.425000px;}
.x7c{left:680.925000px;}
.x22{left:695.550000px;}
.xb5{left:710.625000px;}
.xbf{left:714.825000px;}
.x7d{left:721.650000px;}
.x23{left:723.450000px;}
.x9f{left:728.025000px;}
.x24{left:746.625000px;}
.x8a{left:757.650000px;}
.x25{left:784.650000px;}
.xe2{left:802.755000px;}
.x26{left:807.870000px;}
@media print{
.va{vertical-align:-88.533333pt;}
.v1{vertical-align:-86.453333pt;}
.v8{vertical-align:-53.105658pt;}
.v4{vertical-align:-32.569583pt;}
.v9{vertical-align:-18.553793pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:16.926836pt;}
.v6{vertical-align:30.114001pt;}
.v7{vertical-align:33.747276pt;}
.v3{vertical-align:40.508062pt;}
.ls1d{letter-spacing:-1.518725pt;}
.ls2e{letter-spacing:-1.066667pt;}
.ls59{letter-spacing:-0.817633pt;}
.ls93{letter-spacing:-0.701853pt;}
.ls33{letter-spacing:-0.675638pt;}
.ls83{letter-spacing:-0.613494pt;}
.ls7a{letter-spacing:-0.563485pt;}
.ls8a{letter-spacing:-0.560375pt;}
.ls82{letter-spacing:-0.533333pt;}
.ls99{letter-spacing:-0.490667pt;}
.ls9a{letter-spacing:-0.330667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls95{letter-spacing:0.065480pt;}
.ls5{letter-spacing:0.085333pt;}
.ls71{letter-spacing:0.121986pt;}
.ls76{letter-spacing:0.347530pt;}
.ls97{letter-spacing:0.490667pt;}
.ls73{letter-spacing:0.504073pt;}
.ls3f{letter-spacing:0.516959pt;}
.ls1{letter-spacing:0.533333pt;}
.ls98{letter-spacing:0.586667pt;}
.ls8{letter-spacing:2.666667pt;}
.ls2{letter-spacing:3.469625pt;}
.ls9{letter-spacing:3.733333pt;}
.lsb{letter-spacing:3.786667pt;}
.ls10{letter-spacing:4.746667pt;}
.ls3{letter-spacing:6.283098pt;}
.ls46{letter-spacing:8.843753pt;}
.ls12{letter-spacing:10.133333pt;}
.ls45{letter-spacing:13.493333pt;}
.ls44{letter-spacing:15.807259pt;}
.ls43{letter-spacing:17.521017pt;}
.ls11{letter-spacing:18.666667pt;}
.lsa{letter-spacing:20.216742pt;}
.ls2b{letter-spacing:22.440204pt;}
.lse{letter-spacing:35.613844pt;}
.lsd{letter-spacing:35.786667pt;}
.ls16{letter-spacing:36.133388pt;}
.lsf{letter-spacing:46.163123pt;}
.ls49{letter-spacing:52.771305pt;}
.ls89{letter-spacing:53.305699pt;}
.ls92{letter-spacing:53.578781pt;}
.ls8f{letter-spacing:53.851864pt;}
.lsc{letter-spacing:55.176940pt;}
.ls6e{letter-spacing:59.360000pt;}
.ls6d{letter-spacing:60.995733pt;}
.ls2c{letter-spacing:61.848766pt;}
.ls66{letter-spacing:65.487237pt;}
.ls55{letter-spacing:70.052358pt;}
.ls94{letter-spacing:71.917814pt;}
.ls1a{letter-spacing:82.755540pt;}
.ls7c{letter-spacing:86.383793pt;}
.ls17{letter-spacing:86.773986pt;}
.ls15{letter-spacing:88.468338pt;}
.ls21{letter-spacing:90.151140pt;}
.ls14{letter-spacing:90.264916pt;}
.ls22{letter-spacing:90.861651pt;}
.ls1e{letter-spacing:91.228240pt;}
.ls20{letter-spacing:91.257688pt;}
.ls8c{letter-spacing:93.862750pt;}
.ls2a{letter-spacing:95.027094pt;}
.ls1c{letter-spacing:97.516414pt;}
.ls7d{letter-spacing:104.749312pt;}
.ls6f{letter-spacing:109.773186pt;}
.ls8b{letter-spacing:119.247720pt;}
.ls19{letter-spacing:121.543766pt;}
.ls13{letter-spacing:122.680195pt;}
.ls29{letter-spacing:124.357780pt;}
.ls1b{letter-spacing:125.656556pt;}
.ls7e{letter-spacing:128.776555pt;}
.ls8d{letter-spacing:130.511250pt;}
.ls28{letter-spacing:132.705143pt;}
.ls4f{letter-spacing:134.264216pt;}
.ls69{letter-spacing:139.846581pt;}
.ls87{letter-spacing:143.250742pt;}
.ls81{letter-spacing:150.674014pt;}
.ls7{letter-spacing:153.928357pt;}
.ls74{letter-spacing:154.142702pt;}
.ls88{letter-spacing:158.114753pt;}
.ls6{letter-spacing:164.593139pt;}
.ls48{letter-spacing:173.986293pt;}
.ls77{letter-spacing:178.723779pt;}
.ls58{letter-spacing:183.942101pt;}
.ls23{letter-spacing:185.232080pt;}
.ls1f{letter-spacing:185.755779pt;}
.ls7b{letter-spacing:185.950032pt;}
.ls78{letter-spacing:188.665076pt;}
.ls47{letter-spacing:188.752683pt;}
.ls79{letter-spacing:188.856519pt;}
.ls90{letter-spacing:191.813130pt;}
.ls5a{letter-spacing:198.262512pt;}
.ls8e{letter-spacing:204.593390pt;}
.ls91{letter-spacing:205.913524pt;}
.ls41{letter-spacing:207.847688pt;}
.ls3d{letter-spacing:208.501414pt;}
.ls54{letter-spacing:209.864154pt;}
.ls75{letter-spacing:209.941132pt;}
.ls40{letter-spacing:216.709073pt;}
.ls3c{letter-spacing:217.329423pt;}
.ls32{letter-spacing:218.697429pt;}
.ls72{letter-spacing:233.399311pt;}
.ls86{letter-spacing:233.950648pt;}
.ls25{letter-spacing:236.397402pt;}
.ls5d{letter-spacing:237.916127pt;}
.ls4c{letter-spacing:238.798119pt;}
.ls5e{letter-spacing:241.582015pt;}
.ls80{letter-spacing:241.867727pt;}
.ls2d{letter-spacing:249.228010pt;}
.ls84{letter-spacing:251.286954pt;}
.ls5b{letter-spacing:254.735942pt;}
.ls26{letter-spacing:256.402676pt;}
.ls7f{letter-spacing:258.710226pt;}
.ls4d{letter-spacing:258.866080pt;}
.ls85{letter-spacing:260.918803pt;}
.ls52{letter-spacing:290.295268pt;}
.ls24{letter-spacing:301.754947pt;}
.ls30{letter-spacing:302.871541pt;}
.ls4b{letter-spacing:314.132608pt;}
.ls61{letter-spacing:314.219045pt;}
.ls4a{letter-spacing:315.194405pt;}
.ls27{letter-spacing:322.137450pt;}
.ls70{letter-spacing:322.776188pt;}
.ls39{letter-spacing:324.715604pt;}
.ls38{letter-spacing:325.838799pt;}
.ls35{letter-spacing:328.139940pt;}
.ls37{letter-spacing:328.619444pt;}
.ls34{letter-spacing:329.152225pt;}
.ls36{letter-spacing:329.685006pt;}
.ls64{letter-spacing:333.912993pt;}
.ls18{letter-spacing:347.637859pt;}
.ls5f{letter-spacing:355.473918pt;}
.ls5c{letter-spacing:368.474107pt;}
.ls67{letter-spacing:380.636065pt;}
.ls6b{letter-spacing:380.770929pt;}
.ls68{letter-spacing:409.170469pt;}
.ls6c{letter-spacing:409.558624pt;}
.ls65{letter-spacing:411.111243pt;}
.ls6a{letter-spacing:411.499397pt;}
.ls42{letter-spacing:417.082252pt;}
.ls3e{letter-spacing:417.237340pt;}
.ls31{letter-spacing:529.875458pt;}
.ls2f{letter-spacing:532.714555pt;}
.ls62{letter-spacing:551.567861pt;}
.ls3b{letter-spacing:641.362007pt;}
.ls3a{letter-spacing:642.267735pt;}
.ls0{letter-spacing:822.160000pt;}
.ls51{letter-spacing:823.529663pt;}
.ls96{letter-spacing:834.960000pt;}
.ls50{letter-spacing:1049.639309pt;}
.ls4e{letter-spacing:1050.541836pt;}
.ls56{letter-spacing:1170.047075pt;}
.ls53{letter-spacing:1220.694787pt;}
.ls63{letter-spacing:1260.892709pt;}
.ls60{letter-spacing:1303.715376pt;}
.ls57{letter-spacing:1647.484044pt;}
.wse0{word-spacing:-204.658908pt;}
.wse3{word-spacing:-191.878648pt;}
.wse7{word-spacing:-191.338073pt;}
.wsd4{word-spacing:-158.180270pt;}
.ws24{word-spacing:-97.581851pt;}
.ws3b{word-spacing:-95.092531pt;}
.wsb{word-spacing:-90.330223pt;}
.ws82{word-spacing:-70.121466pt;}
.wsdd{word-spacing:-61.214642pt;}
.wsdb{word-spacing:-60.710569pt;}
.ws3{word-spacing:-28.399507pt;}
.wsac{word-spacing:-22.392144pt;}
.wsd7{word-spacing:-22.133767pt;}
.wsd9{word-spacing:-21.590607pt;}
.wsdf{word-spacing:-21.509930pt;}
.wsec{word-spacing:-19.157333pt;}
.ws1{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.wsed{word-spacing:-18.336000pt;}
.wseb{word-spacing:-18.176000pt;}
.ws49{word-spacing:-17.600000pt;}
.wse4{word-spacing:-12.089791pt;}
.wsce{word-spacing:-9.531801pt;}
.ws76{word-spacing:-8.641957pt;}
.ws95{word-spacing:-8.602388pt;}
.wsbf{word-spacing:-8.459564pt;}
.wsd1{word-spacing:-8.304814pt;}
.ws84{word-spacing:-8.237031pt;}
.ws26{word-spacing:-7.598482pt;}
.ws1a{word-spacing:-7.468449pt;}
.ws6f{word-spacing:-6.368658pt;}
.ws3d{word-spacing:-5.435901pt;}
.wsa6{word-spacing:-5.288033pt;}
.ws9e{word-spacing:-5.133965pt;}
.wsc2{word-spacing:-5.073836pt;}
.ws99{word-spacing:-4.994230pt;}
.ws83{word-spacing:-4.557308pt;}
.ws79{word-spacing:-4.411715pt;}
.ws3c{word-spacing:-4.123156pt;}
.wsd0{word-spacing:-3.994056pt;}
.wsd2{word-spacing:-3.985876pt;}
.wsd8{word-spacing:-3.700473pt;}
.ws35{word-spacing:-2.307058pt;}
.ws39{word-spacing:-1.922549pt;}
.ws8d{word-spacing:-0.700552pt;}
.wsdc{word-spacing:-0.564784pt;}
.wsda{word-spacing:-0.182696pt;}
.wse9{word-spacing:-0.130787pt;}
.wsb0{word-spacing:-0.078358pt;}
.ws30{word-spacing:-0.078083pt;}
.wsc{word-spacing:-0.074119pt;}
.ws15{word-spacing:-0.071703pt;}
.ws1c{word-spacing:-0.070269pt;}
.ws16{word-spacing:-0.069108pt;}
.wsb6{word-spacing:-0.067855pt;}
.ws1f{word-spacing:-0.065492pt;}
.ws9{word-spacing:-0.065437pt;}
.wsae{word-spacing:-0.065357pt;}
.ws8{word-spacing:-0.065307pt;}
.wsa{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.614089pt;}
.ws64{word-spacing:0.791052pt;}
.ws32{word-spacing:1.632299pt;}
.wsb2{word-spacing:1.728325pt;}
.ws5c{word-spacing:1.756041pt;}
.ws96{word-spacing:1.928228pt;}
.ws37{word-spacing:1.988414pt;}
.ws52{word-spacing:2.008400pt;}
.ws55{word-spacing:2.150475pt;}
.ws17{word-spacing:2.381460pt;}
.ws6a{word-spacing:2.454571pt;}
.ws94{word-spacing:3.221544pt;}
.ws27{word-spacing:3.315116pt;}
.wsbe{word-spacing:3.350199pt;}
.wsb9{word-spacing:3.510140pt;}
.ws75{word-spacing:3.719566pt;}
.ws62{word-spacing:3.906589pt;}
.wsd5{word-spacing:4.032697pt;}
.ws25{word-spacing:4.416909pt;}
.wse2{word-spacing:4.464478pt;}
.wscd{word-spacing:4.480335pt;}
.ws5a{word-spacing:4.940506pt;}
.ws45{word-spacing:5.011899pt;}
.ws50{word-spacing:5.432407pt;}
.ws21{word-spacing:5.893141pt;}
.ws63{word-spacing:7.101839pt;}
.ws65{word-spacing:7.108762pt;}
.ws9d{word-spacing:7.815488pt;}
.ws5b{word-spacing:7.990370pt;}
.ws5d{word-spacing:8.004217pt;}
.wsa5{word-spacing:8.453353pt;}
.ws48{word-spacing:17.110684pt;}
.ws4b{word-spacing:17.981570pt;}
.ws93{word-spacing:18.723854pt;}
.ws85{word-spacing:19.014645pt;}
.ws6{word-spacing:19.202870pt;}
.ws9a{word-spacing:19.930422pt;}
.wsc3{word-spacing:20.535216pt;}
.ws2a{word-spacing:21.724801pt;}
.ws38{word-spacing:21.852971pt;}
.wsa3{word-spacing:22.109665pt;}
.ws10{word-spacing:22.159358pt;}
.ws9b{word-spacing:22.173395pt;}
.ws58{word-spacing:22.334912pt;}
.ws6e{word-spacing:22.417675pt;}
.wsc6{word-spacing:22.499372pt;}
.ws4a{word-spacing:22.867129pt;}
.wsaf{word-spacing:23.267125pt;}
.ws86{word-spacing:23.314135pt;}
.ws20{word-spacing:23.380626pt;}
.wsab{word-spacing:23.545678pt;}
.ws7{word-spacing:23.615180pt;}
.ws47{word-spacing:24.352284pt;}
.ws4f{word-spacing:24.763029pt;}
.wsc5{word-spacing:25.223321pt;}
.ws13{word-spacing:25.526259pt;}
.ws40{word-spacing:25.784893pt;}
.ws4{word-spacing:26.349569pt;}
.ws97{word-spacing:26.473859pt;}
.ws60{word-spacing:26.580324pt;}
.ws28{word-spacing:27.300192pt;}
.ws6d{word-spacing:27.767348pt;}
.ws77{word-spacing:27.796680pt;}
.ws57{word-spacing:27.821813pt;}
.ws89{word-spacing:27.894721pt;}
.ws3e{word-spacing:28.634802pt;}
.ws19{word-spacing:28.651686pt;}
.ws18{word-spacing:29.262741pt;}
.ws22{word-spacing:30.145375pt;}
.ws4e{word-spacing:30.525063pt;}
.ws67{word-spacing:31.871892pt;}
.ws5f{word-spacing:32.262579pt;}
.ws2{word-spacing:34.092496pt;}
.ws68{word-spacing:34.914298pt;}
.wse{word-spacing:34.946126pt;}
.ws12{word-spacing:35.708082pt;}
.ws74{word-spacing:40.568350pt;}
.wsa4{word-spacing:40.886858pt;}
.wsb7{word-spacing:41.052263pt;}
.wsbd{word-spacing:41.391538pt;}
.wsc9{word-spacing:41.444320pt;}
.wsa1{word-spacing:42.809438pt;}
.ws88{word-spacing:47.764933pt;}
.wse1{word-spacing:50.710891pt;}
.wscc{word-spacing:51.339330pt;}
.wsa9{word-spacing:54.080420pt;}
.ws9c{word-spacing:54.984894pt;}
.wsf{word-spacing:55.064486pt;}
.ws7d{word-spacing:56.235248pt;}
.ws81{word-spacing:56.489994pt;}
.ws59{word-spacing:58.677559pt;}
.ws2d{word-spacing:58.765907pt;}
.ws3a{word-spacing:58.894076pt;}
.wsa0{word-spacing:61.586631pt;}
.ws36{word-spacing:62.290579pt;}
.ws7c{word-spacing:62.794965pt;}
.ws8c{word-spacing:62.922338pt;}
.ws1d{word-spacing:63.241819pt;}
.wsbc{word-spacing:63.444407pt;}
.wsb5{word-spacing:64.530087pt;}
.ws3f{word-spacing:65.208637pt;}
.wsa8{word-spacing:65.480056pt;}
.wsd{word-spacing:67.892637pt;}
.ws8f{word-spacing:68.781503pt;}
.ws31{word-spacing:68.947514pt;}
.wsad{word-spacing:69.652597pt;}
.ws1e{word-spacing:69.712511pt;}
.ws2f{word-spacing:70.040679pt;}
.wsde{word-spacing:70.102318pt;}
.ws5{word-spacing:72.647750pt;}
.ws98{word-spacing:73.207057pt;}
.ws71{word-spacing:73.685370pt;}
.ws14{word-spacing:76.415553pt;}
.wsc1{word-spacing:77.557222pt;}
.ws4c{word-spacing:77.771309pt;}
.ws1b{word-spacing:78.215028pt;}
.ws23{word-spacing:82.424517pt;}
.wsb1{word-spacing:83.700987pt;}
.wsb8{word-spacing:84.243084pt;}
.ws78{word-spacing:85.139482pt;}
.wsc7{word-spacing:91.172017pt;}
.wsca{word-spacing:91.370154pt;}
.wsd6{word-spacing:93.151926pt;}
.ws2e{word-spacing:93.846799pt;}
.ws92{word-spacing:99.351060pt;}
.ws70{word-spacing:107.120823pt;}
.wsb3{word-spacing:114.742773pt;}
.wsba{word-spacing:115.285612pt;}
.ws44{word-spacing:124.446035pt;}
.ws34{word-spacing:127.029558pt;}
.ws2b{word-spacing:127.721321pt;}
.ws11{word-spacing:129.507596pt;}
.ws33{word-spacing:136.821385pt;}
.ws29{word-spacing:137.077725pt;}
.wse8{word-spacing:142.986457pt;}
.ws54{word-spacing:149.756407pt;}
.ws51{word-spacing:149.956188pt;}
.wse5{word-spacing:150.083094pt;}
.ws2c{word-spacing:150.535566pt;}
.ws6b{word-spacing:150.708194pt;}
.ws53{word-spacing:151.162012pt;}
.ws56{word-spacing:151.376063pt;}
.ws41{word-spacing:165.905428pt;}
.wse6{word-spacing:166.109486pt;}
.wsea{word-spacing:188.540660pt;}
.ws9f{word-spacing:193.392588pt;}
.ws69{word-spacing:195.280149pt;}
.ws61{word-spacing:195.785238pt;}
.wsc0{word-spacing:200.688052pt;}
.wsc4{word-spacing:201.721727pt;}
.ws46{word-spacing:210.775427pt;}
.ws66{word-spacing:215.647852pt;}
.ws5e{word-spacing:216.791803pt;}
.wsa7{word-spacing:221.263127pt;}
.ws43{word-spacing:226.160651pt;}
.wsa2{word-spacing:236.989972pt;}
.ws8e{word-spacing:259.013309pt;}
.wsb4{word-spacing:260.942533pt;}
.wsbb{word-spacing:261.891990pt;}
.ws73{word-spacing:271.176615pt;}
.ws91{word-spacing:271.602538pt;}
.ws72{word-spacing:272.250848pt;}
.ws90{word-spacing:272.676862pt;}
.ws80{word-spacing:273.827870pt;}
.ws7f{word-spacing:274.902495pt;}
.wsaa{word-spacing:286.755149pt;}
.wsd3{word-spacing:289.967188pt;}
.ws7e{word-spacing:290.219732pt;}
.wscf{word-spacing:297.564582pt;}
.ws6c{word-spacing:304.529638pt;}
.ws87{word-spacing:304.937805pt;}
.ws8b{word-spacing:313.954583pt;}
.ws7b{word-spacing:314.436962pt;}
.ws8a{word-spacing:314.956448pt;}
.ws7a{word-spacing:315.438827pt;}
.ws42{word-spacing:348.231761pt;}
.wsc8{word-spacing:395.800423pt;}
.wscb{word-spacing:420.107731pt;}
._f9{margin-left:-642.584208pt;}
._f6{margin-left:-584.495543pt;}
._105{margin-left:-496.219191pt;}
._18{margin-left:-446.757093pt;}
._29{margin-left:-391.422033pt;}
._fc{margin-left:-374.132963pt;}
._3c{margin-left:-370.011564pt;}
._f8{margin-left:-349.763078pt;}
._103{margin-left:-344.947571pt;}
._104{margin-left:-339.350837pt;}
._106{margin-left:-316.266644pt;}
._ea{margin-left:-288.971323pt;}
._fd{margin-left:-282.156459pt;}
._55{margin-left:-280.678576pt;}
._107{margin-left:-274.810282pt;}
._100{margin-left:-254.754390pt;}
._ff{margin-left:-227.603640pt;}
._54{margin-left:-215.134221pt;}
._47{margin-left:-207.857417pt;}
._61{margin-left:-205.362685pt;}
._28{margin-left:-200.494138pt;}
._1b{margin-left:-193.886573pt;}
._a5{margin-left:-183.756728pt;}
._102{margin-left:-178.573312pt;}
._101{margin-left:-176.875231pt;}
._7c{margin-left:-168.627637pt;}
._7e{margin-left:-163.256285pt;}
._7b{margin-left:-152.062772pt;}
._e5{margin-left:-144.284180pt;}
._bb{margin-left:-141.933867pt;}
._a4{margin-left:-136.536425pt;}
._32{margin-left:-127.620304pt;}
._31{margin-left:-124.554033pt;}
._3e{margin-left:-118.652309pt;}
._e4{margin-left:-113.530710pt;}
._56{margin-left:-111.270590pt;}
._2c{margin-left:-109.573189pt;}
._2a{margin-left:-107.426997pt;}
._f4{margin-left:-103.973551pt;}
._3d{margin-left:-100.722662pt;}
._fe{margin-left:-91.965971pt;}
._27{margin-left:-86.640250pt;}
._26{margin-left:-79.410398pt;}
._3{margin-left:-2.400000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.194667pt;}
._2{width:2.938667pt;}
._f{width:4.181333pt;}
._10{width:5.957333pt;}
._16{width:7.001722pt;}
._15{width:8.954667pt;}
._4{width:10.304000pt;}
._14{width:11.424000pt;}
._8{width:12.842667pt;}
._6{width:14.272000pt;}
._7{width:15.221333pt;}
._c{width:16.213333pt;}
._5{width:20.010667pt;}
._58{width:21.075739pt;}
._24{width:22.310130pt;}
._13{width:23.344000pt;}
._7f{width:25.386667pt;}
._22{width:26.411714pt;}
._4c{width:28.069212pt;}
._bc{width:29.006417pt;}
._59{width:30.161765pt;}
._7d{width:31.896976pt;}
._12{width:32.901333pt;}
._11{width:33.824000pt;}
._a{width:35.728000pt;}
._9{width:37.184000pt;}
._b{width:38.192000pt;}
._3f{width:39.622630pt;}
._108{width:40.610989pt;}
._2b{width:41.555787pt;}
._d{width:46.368000pt;}
._e{width:47.290667pt;}
._8f{width:48.993662pt;}
._ba{width:52.844541pt;}
._b9{width:54.053391pt;}
._72{width:55.848952pt;}
._84{width:57.451075pt;}
._1a{width:58.500368pt;}
._f5{width:59.818219pt;}
._38{width:60.977927pt;}
._9d{width:63.283280pt;}
._2f{width:64.532678pt;}
._79{width:65.915398pt;}
._dd{width:69.280293pt;}
._1f{width:74.014945pt;}
._ca{width:75.785502pt;}
._20{width:77.246496pt;}
._1d{width:81.063320pt;}
._2e{width:86.087586pt;}
._4f{width:91.192895pt;}
._43{width:93.095907pt;}
._37{width:94.046437pt;}
._7a{width:95.163772pt;}
._f1{width:96.054360pt;}
._33{width:98.025129pt;}
._2d{width:99.018937pt;}
._40{width:102.370409pt;}
._ee{width:105.051371pt;}
._fb{width:106.048700pt;}
._6b{width:107.007305pt;}
._d6{width:108.305314pt;}
._f2{width:111.715525pt;}
._df{width:114.946337pt;}
._30{width:115.872008pt;}
._92{width:117.251179pt;}
._8e{width:123.178652pt;}
._1c{width:129.600000pt;}
._51{width:132.456593pt;}
._48{width:133.655473pt;}
._65{width:136.252801pt;}
._5c{width:137.526320pt;}
._98{width:138.555054pt;}
._e1{width:139.916970pt;}
._19{width:144.811313pt;}
._41{width:146.042123pt;}
._34{width:146.992652pt;}
._36{width:148.078972pt;}
._ad{width:152.110483pt;}
._17{width:153.121768pt;}
._d0{width:154.051343pt;}
._45{width:157.652166pt;}
._3a{width:158.602696pt;}
._53{width:161.301839pt;}
._fa{width:162.192130pt;}
._d4{width:164.124207pt;}
._35{width:165.926817pt;}
._76{width:166.958888pt;}
._42{width:168.642616pt;}
._f7{width:169.577536pt;}
._73{width:172.324452pt;}
._d8{width:173.352589pt;}
._6e{width:177.379458pt;}
._89{width:179.260265pt;}
._87{width:180.229948pt;}
._3b{width:182.909102pt;}
._60{width:183.987915pt;}
._46{width:185.557007pt;}
._a3{width:186.587170pt;}
._4e{width:188.153437pt;}
._d3{width:191.104407pt;}
._74{width:192.447129pt;}
._e7{width:193.454550pt;}
._e3{width:194.947360pt;}
._bd{width:201.349349pt;}
._23{width:203.126723pt;}
._8d{width:204.687437pt;}
._e2{width:206.075577pt;}
._1e{width:207.590967pt;}
._c8{width:210.038331pt;}
._86{width:213.267378pt;}
._83{width:214.171103pt;}
._c0{width:215.156337pt;}
._eb{width:216.396715pt;}
._6d{width:218.764458pt;}
._a6{width:221.984676pt;}
._77{width:222.998190pt;}
._af{width:227.424767pt;}
._c5{width:228.721435pt;}
._b5{width:230.290663pt;}
._b1{width:231.309648pt;}
._cf{width:234.358692pt;}
._4a{width:235.896731pt;}
._66{width:237.085303pt;}
._9e{width:238.760977pt;}
._f3{width:244.038913pt;}
._6c{width:247.059985pt;}
._25{width:248.208058pt;}
._21{width:252.371696pt;}
._8a{width:253.821230pt;}
._50{width:255.827153pt;}
._a0{width:258.822249pt;}
._52{width:260.943714pt;}
._5f{width:262.107478pt;}
._6f{width:265.177265pt;}
._ac{width:268.654609pt;}
._cd{width:273.128196pt;}
._90{width:274.954558pt;}
._39{width:276.536293pt;}
._44{width:280.091945pt;}
._67{width:283.880099pt;}
._b0{width:289.452233pt;}
._c4{width:290.665538pt;}
._b2{width:292.915745pt;}
._b6{width:293.934730pt;}
._88{width:295.130693pt;}
._4b{width:297.097866pt;}
._82{width:300.370194pt;}
._5e{width:303.112556pt;}
._5d{width:305.364825pt;}
._64{width:308.265178pt;}
._93{width:309.935419pt;}
._57{width:311.289498pt;}
._97{width:313.064037pt;}
._ef{width:315.164325pt;}
._f0{width:317.028427pt;}
._b4{width:319.162581pt;}
._a1{width:325.022529pt;}
._db{width:326.413796pt;}
._ed{width:330.357361pt;}
._85{width:331.248813pt;}
._8c{width:340.872138pt;}
._c9{width:344.034889pt;}
._a2{width:348.620323pt;}
._e9{width:368.964014pt;}
._5a{width:371.089343pt;}
._cb{width:373.903894pt;}
._94{width:374.974855pt;}
._d1{width:376.842580pt;}
._96{width:379.286705pt;}
._95{width:380.624569pt;}
._9b{width:381.700594pt;}
._99{width:384.093746pt;}
._70{width:387.649911pt;}
._9c{width:391.434271pt;}
._69{width:392.608919pt;}
._d9{width:398.100982pt;}
._da{width:401.188017pt;}
._62{width:406.597635pt;}
._4d{width:411.872075pt;}
._71{width:416.854526pt;}
._9f{width:422.369549pt;}
._cc{width:436.658210pt;}
._ce{width:451.644588pt;}
._e8{width:462.635259pt;}
._6a{width:480.684684pt;}
._68{width:498.773425pt;}
._ec{width:500.512400pt;}
._e6{width:502.926706pt;}
._b7{width:504.603578pt;}
._b8{width:505.678203pt;}
._c6{width:506.638542pt;}
._a9{width:510.394196pt;}
._aa{width:511.284742pt;}
._78{width:522.211932pt;}
._ae{width:530.913541pt;}
._ab{width:531.837481pt;}
._5b{width:579.238186pt;}
._d5{width:608.304168pt;}
._d2{width:610.547177pt;}
._a7{width:640.535305pt;}
._a8{width:641.873169pt;}
._bf{width:664.402999pt;}
._75{width:669.333803pt;}
._c1{width:694.335690pt;}
._9a{width:698.539004pt;}
._e0{width:702.977601pt;}
._8b{width:705.776620pt;}
._49{width:709.833852pt;}
._d7{width:749.806022pt;}
._91{width:755.906733pt;}
._63{width:766.218443pt;}
._dc{width:788.067747pt;}
._80{width:817.245478pt;}
._de{width:823.216627pt;}
._81{width:844.292670pt;}
._b3{width:877.983151pt;}
._c3{width:896.770692pt;}
._c2{width:906.514738pt;}
._c7{width:1012.298142pt;}
._be{width:1170.049794pt;}
.fs48{font-size:35.343650pt;}
.fs4{font-size:36.231820pt;}
.fs3b{font-size:36.881899pt;}
.fs41{font-size:37.106085pt;}
.fs20{font-size:37.362730pt;}
.fs54{font-size:37.363328pt;}
.fs36{font-size:37.753409pt;}
.fs1c{font-size:37.817120pt;}
.fs8{font-size:38.084976pt;}
.fs27{font-size:38.093864pt;}
.fs2{font-size:38.215936pt;}
.fs71{font-size:38.224406pt;}
.fs61{font-size:38.496513pt;}
.fs2b{font-size:39.560724pt;}
.fs13{font-size:39.573096pt;}
.fs64{font-size:41.792608pt;}
.fs67{font-size:43.472766pt;}
.fs74{font-size:43.488456pt;}
.fs77{font-size:45.375156pt;}
.fs46{font-size:46.199973pt;}
.fs4c{font-size:47.408512pt;}
.fs39{font-size:48.259125pt;}
.fs3f{font-size:48.661620pt;}
.fs1f{font-size:48.888281pt;}
.fs53{font-size:48.889065pt;}
.fs34{font-size:49.349924pt;}
.fs1a{font-size:49.433206pt;}
.fs26{font-size:49.835054pt;}
.fs70{font-size:49.965595pt;}
.fs5f{font-size:50.371811pt;}
.fs2a{font-size:51.764306pt;}
.fs12{font-size:51.770210pt;}
.fs75{font-size:52.921960pt;}
.fs76{font-size:53.026261pt;}
.fs1{font-size:53.333333pt;}
.fs65{font-size:56.826066pt;}
.fs63{font-size:59.319227pt;}
.fs49{font-size:60.556195pt;}
.fsc{font-size:60.710569pt;}
.fs31{font-size:61.549108pt;}
.fs5{font-size:62.145210pt;}
.fs3c{font-size:63.136162pt;}
.fs42{font-size:63.686577pt;}
.fs21{font-size:64.084958pt;}
.fs55{font-size:64.085985pt;}
.fs4a{font-size:64.211348pt;}
.fsd{font-size:64.353811pt;}
.fs37{font-size:64.551770pt;}
.fs1d{font-size:64.794126pt;}
.fs32{font-size:65.160716pt;}
.fs9{font-size:65.306775pt;}
.fs28{font-size:65.357094pt;}
.fs3{font-size:65.436653pt;}
.fsb{font-size:65.442184pt;}
.fs18{font-size:65.491951pt;}
.fs6b{font-size:65.517947pt;}
.fs7{font-size:65.796071pt;}
.fs5e{font-size:65.805367pt;}
.fs4e{font-size:65.838219pt;}
.fs6{font-size:65.895632pt;}
.fs60{font-size:66.029635pt;}
.fs3d{font-size:66.747779pt;}
.fs3e{font-size:66.748457pt;}
.fs43{font-size:67.139543pt;}
.fs4b{font-size:67.145250pt;}
.fs45{font-size:67.164059pt;}
.fs25{font-size:67.662135pt;}
.fs4f{font-size:67.671661pt;}
.fs22{font-size:67.678021pt;}
.fs24{font-size:67.678902pt;}
.fs56{font-size:67.683479pt;}
.fs2e{font-size:67.704552pt;}
.fs2c{font-size:67.854981pt;}
.fs14{font-size:67.894990pt;}
.fs1e{font-size:68.012218pt;}
.fs38{font-size:68.043138pt;}
.fs44{font-size:68.220662pt;}
.fs50{font-size:68.305326pt;}
.fs33{font-size:68.595648pt;}
.fs29{font-size:68.710456pt;}
.fs6f{font-size:68.851557pt;}
.fs6c{font-size:68.864171pt;}
.fs73{font-size:68.902054pt;}
.fs72{font-size:68.994238pt;}
.fs11{font-size:69.107573pt;}
.fs62{font-size:69.510339pt;}
.fs16{font-size:70.268688pt;}
.fs6e{font-size:71.169378pt;}
.fs6d{font-size:71.240656pt;}
.fs58{font-size:71.535247pt;}
.fsf{font-size:71.702975pt;}
.fs5d{font-size:71.761803pt;}
.fs5c{font-size:71.791670pt;}
.fs51{font-size:71.798143pt;}
.fs15{font-size:71.974495pt;}
.fs2f{font-size:72.037396pt;}
.fs2d{font-size:72.065050pt;}
.fs19{font-size:72.203761pt;}
.fsa{font-size:74.118600pt;}
.fs68{font-size:74.484251pt;}
.fs0{font-size:74.666667pt;}
.fs5b{font-size:75.420308pt;}
.fs10{font-size:76.083459pt;}
.fs23{font-size:78.083254pt;}
.fs5a{font-size:78.357571pt;}
.fs6a{font-size:78.529024pt;}
.fs69{font-size:78.558483pt;}
.fs47{font-size:79.853775pt;}
.fs30{font-size:81.208654pt;}
.fs4d{font-size:81.920763pt;}
.fs3a{font-size:83.390603pt;}
.fs40{font-size:84.099622pt;}
.fs52{font-size:84.604812pt;}
.fs35{font-size:85.298270pt;}
.fs1b{font-size:85.442217pt;}
.fs59{font-size:86.232957pt;}
.fs17{font-size:86.362419pt;}
.fs57{font-size:89.580552pt;}
.fse{font-size:94.605791pt;}
.fs66{font-size:98.220316pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:1.886701pt;}
.ybb{bottom:3.352994pt;}
.y16f{bottom:3.773402pt;}
.yac{bottom:3.778617pt;}
.y105{bottom:3.967980pt;}
.y135{bottom:4.041225pt;}
.y72{bottom:4.063375pt;}
.y113{bottom:4.063440pt;}
.y6b{bottom:4.095190pt;}
.yde{bottom:4.119241pt;}
.y15c{bottom:4.120016pt;}
.y80{bottom:4.152786pt;}
.y27{bottom:4.166094pt;}
.y34{bottom:4.198834pt;}
.y49{bottom:4.314044pt;}
.y8e{bottom:4.336104pt;}
.y151{bottom:4.403182pt;}
.y11e{bottom:4.503591pt;}
.y45{bottom:4.644425pt;}
.y50{bottom:4.777559pt;}
.y39{bottom:5.039314pt;}
.yef{bottom:5.049093pt;}
.y75{bottom:5.247643pt;}
.y112{bottom:5.396797pt;}
.y5e{bottom:5.402446pt;}
.ydd{bottom:5.760514pt;}
.y30{bottom:5.879850pt;}
.y6f{bottom:5.999880pt;}
.y143{bottom:6.026784pt;}
.y68{bottom:6.031564pt;}
.y169{bottom:6.131778pt;}
.y148{bottom:6.210395pt;}
.y131{bottom:6.247374pt;}
.y8b{bottom:6.386392pt;}
.y3d{bottom:6.599956pt;}
.y3c{bottom:7.081465pt;}
.y10d{bottom:7.333334pt;}
.y9d{bottom:7.422700pt;}
.y9c{bottom:7.457157pt;}
.yd2{bottom:7.691391pt;}
.yee{bottom:7.860933pt;}
.ybe{bottom:7.928207pt;}
.y99{bottom:8.037173pt;}
.y15d{bottom:8.338208pt;}
.y82{bottom:8.370843pt;}
.y121{bottom:8.376375pt;}
.y28{bottom:8.397668pt;}
.y5c{bottom:8.411068pt;}
.y37{bottom:8.430543pt;}
.yb3{bottom:8.461498pt;}
.y53{bottom:8.501655pt;}
.y11b{bottom:8.534425pt;}
.y4a{bottom:8.695893pt;}
.yf0{bottom:8.979684pt;}
.y9a{bottom:9.145752pt;}
.y40{bottom:9.363079pt;}
.y5f{bottom:9.608113pt;}
.y146{bottom:9.668965pt;}
.y54{bottom:9.711592pt;}
.y41{bottom:10.654544pt;}
.y149{bottom:11.045031pt;}
.yb8{bottom:11.657289pt;}
.ya7{bottom:12.240115pt;}
.y2d{bottom:14.006414pt;}
.y71{bottom:14.158183pt;}
.y6a{bottom:14.189605pt;}
.y65{bottom:14.412177pt;}
.yb7{bottom:14.571772pt;}
.y111{bottom:14.761982pt;}
.y130{bottom:14.881894pt;}
.y8d{bottom:15.024358pt;}
.ya5{bottom:15.244202pt;}
.y87{bottom:15.260023pt;}
.ye8{bottom:15.414636pt;}
.y110{bottom:15.492552pt;}
.yba{bottom:15.731052pt;}
.y10a{bottom:15.745241pt;}
.y15a{bottom:15.793103pt;}
.ydc{bottom:15.800865pt;}
.y7f{bottom:15.826817pt;}
.yed{bottom:15.873494pt;}
.ycc{bottom:16.058351pt;}
.yab{bottom:16.405665pt;}
.y48{bottom:16.441391pt;}
.y15b{bottom:16.479525pt;}
.y81{bottom:16.513239pt;}
.yfa{bottom:16.901141pt;}
.y5b{bottom:16.984376pt;}
.y4b{bottom:17.154468pt;}
.ydb{bottom:17.410814pt;}
.y5d{bottom:17.663484pt;}
.y2f{bottom:18.039987pt;}
.ybd{bottom:18.081922pt;}
.y116{bottom:18.419325pt;}
.y6e{bottom:18.538919pt;}
.y67{bottom:18.570341pt;}
.y107{bottom:18.697637pt;}
.yb2{bottom:18.828488pt;}
.yc8{bottom:18.987583pt;}
.y12e{bottom:19.167588pt;}
.y145{bottom:19.524432pt;}
.y89{bottom:19.662806pt;}
.y10b{bottom:19.873359pt;}
.yd1{bottom:20.178123pt;}
.y147{bottom:20.305102pt;}
.y16e{bottom:20.776916pt;}
.yb6{bottom:22.938748pt;}
.ybc{bottom:23.596578pt;}
.ya4{bottom:23.802000pt;}
.yae{bottom:24.479964pt;}
.y2c{bottom:24.997488pt;}
.yf9{bottom:25.120641pt;}
.yb9{bottom:25.696723pt;}
.yfb{bottom:25.766876pt;}
.y63{bottom:25.872004pt;}
.y64{bottom:26.538410pt;}
.yaf{bottom:26.612421pt;}
.y12c{bottom:26.690822pt;}
.y108{bottom:27.206561pt;}
.y12f{bottom:27.377450pt;}
.y86{bottom:27.394016pt;}
.yc7{bottom:27.451431pt;}
.y70{bottom:27.491541pt;}
.y69{bottom:27.522963pt;}
.y2e{bottom:27.828734pt;}
.y109{bottom:27.872978pt;}
.ycb{bottom:28.095146pt;}
.y8a{bottom:28.099625pt;}
.y66{bottom:28.697356pt;}
.y10f{bottom:28.824815pt;}
.yda{bottom:29.060053pt;}
.y8c{bottom:29.142098pt;}
.y12d{bottom:29.568186pt;}
.y10c{bottom:29.999227pt;}
.y10e{bottom:30.190380pt;}
.yd0{bottom:30.218739pt;}
.y88{bottom:30.385579pt;}
.yd9{bottom:30.733711pt;}
.y16d{bottom:37.804392pt;}
.yaa{bottom:47.119169pt;}
.y2{bottom:47.233333pt;}
.yb1{bottom:51.802316pt;}
.y1{bottom:52.566667pt;}
.yd8{bottom:54.677231pt;}
.ya6{bottom:55.613033pt;}
.yd7{bottom:56.349561pt;}
.ycf{bottom:58.248850pt;}
.ya3{bottom:58.584621pt;}
.ya9{bottom:59.779382pt;}
.yb0{bottom:62.168906pt;}
.y162{bottom:64.241761pt;}
.ye7{bottom:65.972095pt;}
.yd6{bottom:66.358323pt;}
.yca{bottom:66.615809pt;}
.ya2{bottom:67.142419pt;}
.yad{bottom:67.821715pt;}
.yd5{bottom:67.968273pt;}
.yc6{bottom:69.576895pt;}
.ya8{bottom:69.984806pt;}
.yce{bottom:70.735581pt;}
.yc5{bottom:78.008890pt;}
.yc9{bottom:78.684458pt;}
.yd4{bottom:79.617512pt;}
.ycd{bottom:80.776198pt;}
.yd3{bottom:81.291169pt;}
.yc2{bottom:89.466667pt;}
.yc3{bottom:97.366667pt;}
.y128{bottom:110.533333pt;}
.y163{bottom:111.032886pt;}
.y129{bottom:118.433333pt;}
.yc1{bottom:119.233333pt;}
.y126{bottom:135.866667pt;}
.ybf{bottom:136.293333pt;}
.yb5{bottom:136.400000pt;}
.y167{bottom:141.738943pt;}
.y35{bottom:142.693333pt;}
.yc0{bottom:152.333333pt;}
.y127{bottom:154.466667pt;}
.y164{bottom:157.323092pt;}
.y33{bottom:159.600000pt;}
.y32{bottom:167.533333pt;}
.ya1{bottom:177.200000pt;}
.y125{bottom:182.466667pt;}
.y124{bottom:183.866667pt;}
.y2b{bottom:184.933333pt;}
.y123{bottom:202.466667pt;}
.y31{bottom:203.533333pt;}
.y165{bottom:204.094408pt;}
.yb4{bottom:215.800000pt;}
.y120{bottom:232.133333pt;}
.y2a{bottom:232.333333pt;}
.y11f{bottom:236.066667pt;}
.y11d{bottom:236.133333pt;}
.y122{bottom:240.066667pt;}
.y160{bottom:242.733333pt;}
.y29{bottom:249.133333pt;}
.y26{bottom:249.200000pt;}
.y166{bottom:250.884590pt;}
.y15f{bottom:260.400000pt;}
.y11c{bottom:261.933333pt;}
.ya0{bottom:263.333333pt;}
.y15e{bottom:264.333333pt;}
.y9f{bottom:271.266667pt;}
.y25{bottom:278.466667pt;}
.y119{bottom:278.800000pt;}
.y159{bottom:281.200000pt;}
.y157{bottom:285.200000pt;}
.y11a{bottom:288.066667pt;}
.y158{bottom:289.133333pt;}
.y9e{bottom:293.400000pt;}
.y24{bottom:300.106667pt;}
.y98{bottom:310.266667pt;}
.y118{bottom:311.026667pt;}
.y9b{bottom:312.933333pt;}
.y156{bottom:313.440000pt;}
.y97{bottom:319.560000pt;}
.y23{bottom:321.440000pt;}
.y115{bottom:327.866667pt;}
.y153{bottom:330.266667pt;}
.y155{bottom:331.600000pt;}
.y95{bottom:336.933333pt;}
.y154{bottom:338.226667pt;}
.y22{bottom:343.026667pt;}
.y117{bottom:346.506667pt;}
.y114{bottom:350.506667pt;}
.y96{bottom:355.560000pt;}
.y152{bottom:358.533333pt;}
.y150{bottom:362.533333pt;}
.y21{bottom:364.360000pt;}
.y14f{bottom:366.506667pt;}
.y106{bottom:375.866667pt;}
.y20{bottom:385.960000pt;}
.y14e{bottom:387.293333pt;}
.y161{bottom:387.303862pt;}
.y94{bottom:389.693333pt;}
.y16c{bottom:391.077236pt;}
.y180{bottom:391.293333pt;}
.y91{bottom:406.533333pt;}
.y1f{bottom:407.293333pt;}
.y17f{bottom:413.173333pt;}
.y93{bottom:421.173333pt;}
.y92{bottom:421.200000pt;}
.y103{bottom:423.866667pt;}
.y90{bottom:425.173333pt;}
.y104{bottom:427.866667pt;}
.y1e{bottom:428.893333pt;}
.y102{bottom:431.840000pt;}
.y17e{bottom:434.773333pt;}
.y1d{bottom:450.266667pt;}
.y85{bottom:451.866667pt;}
.y101{bottom:454.000000pt;}
.y17d{bottom:456.133333pt;}
.y8f{bottom:470.533333pt;}
.yff{bottom:470.800000pt;}
.y1c{bottom:471.866667pt;}
.y17c{bottom:477.733333pt;}
.y100{bottom:489.466667pt;}
.y1b{bottom:493.200000pt;}
.y17b{bottom:499.066667pt;}
.y84{bottom:504.400000pt;}
.y1a{bottom:514.800000pt;}
.yfe{bottom:516.666667pt;}
.y16a{bottom:518.637650pt;}
.yfd{bottom:520.666667pt;}
.y7d{bottom:521.200000pt;}
.y83{bottom:525.200000pt;}
.y7e{bottom:529.200000pt;}
.y19{bottom:536.133333pt;}
.yf8{bottom:537.466667pt;}
.y168{bottom:540.381877pt;}
.y17a{bottom:542.000000pt;}
.y7c{bottom:548.666667pt;}
.yfc{bottom:556.133333pt;}
.y18{bottom:557.733333pt;}
.y179{bottom:563.600000pt;}
.y7b{bottom:567.333333pt;}
.y17{bottom:578.533333pt;}
.yf7{bottom:580.933333pt;}
.yf6{bottom:584.933333pt;}
.y7a{bottom:594.266667pt;}
.y16{bottom:600.173333pt;}
.yf4{bottom:601.733333pt;}
.y79{bottom:602.293333pt;}
.y178{bottom:606.560000pt;}
.y78{bottom:619.600000pt;}
.y15{bottom:622.026667pt;}
.y177{bottom:627.893333pt;}
.y77{bottom:638.293333pt;}
.y14{bottom:643.626667pt;}
.yf5{bottom:647.093333pt;}
.y176{bottom:649.506667pt;}
.y14d{bottom:660.693333pt;}
.y6d{bottom:664.666667pt;}
.y13{bottom:664.960000pt;}
.y14b{bottom:677.466667pt;}
.y74{bottom:679.333333pt;}
.y76{bottom:679.360000pt;}
.y73{bottom:683.373333pt;}
.y12{bottom:686.560000pt;}
.y14c{bottom:686.840000pt;}
.y175{bottom:692.426667pt;}
.yf2{bottom:700.400000pt;}
.y11{bottom:707.893333pt;}
.yf3{bottom:708.426667pt;}
.y174{bottom:709.733333pt;}
.y62{bottom:710.000000pt;}
.y142{bottom:710.266667pt;}
.y144{bottom:710.293333pt;}
.y172{bottom:713.733333pt;}
.y171{bottom:713.760000pt;}
.y173{bottom:717.760000pt;}
.y14a{bottom:719.626667pt;}
.y6c{bottom:728.706667pt;}
.y10{bottom:729.506667pt;}
.yf1{bottom:730.560000pt;}
.y170{bottom:734.840000pt;}
.yec{bottom:747.333333pt;}
.y141{bottom:747.933333pt;}
.yf{bottom:750.866667pt;}
.yeb{bottom:752.666667pt;}
.yea{bottom:756.733333pt;}
.y61{bottom:760.200000pt;}
.y140{bottom:769.266667pt;}
.ye{bottom:772.466667pt;}
.ye6{bottom:774.000000pt;}
.y5a{bottom:776.933333pt;}
.y58{bottom:778.266667pt;}
.y60{bottom:782.266667pt;}
.y59{bottom:786.333333pt;}
.y13f{bottom:790.866667pt;}
.yd{bottom:793.800000pt;}
.y56{bottom:805.466667pt;}
.y13e{bottom:811.666667pt;}
.y57{bottom:813.533333pt;}
.yc{bottom:814.866667pt;}
.ye9{bottom:819.400000pt;}
.y13d{bottom:833.800000pt;}
.y52{bottom:834.000000pt;}
.yb{bottom:836.733333pt;}
.y55{bottom:839.333333pt;}
.y51{bottom:843.400000pt;}
.y13c{bottom:855.133333pt;}
.ya{bottom:858.333333pt;}
.y4e{bottom:861.466667pt;}
.y4f{bottom:865.466667pt;}
.y4d{bottom:869.533333pt;}
.y13b{bottom:872.133333pt;}
.ye4{bottom:872.666667pt;}
.y13a{bottom:878.866667pt;}
.y9{bottom:879.666667pt;}
.ye5{bottom:880.733333pt;}
.y47{bottom:886.800000pt;}
.y4c{bottom:894.866667pt;}
.y139{bottom:900.760000pt;}
.y8{bottom:901.293333pt;}
.ye3{bottom:902.893333pt;}
.ye2{bottom:919.600000pt;}
.y46{bottom:919.960000pt;}
.y7{bottom:922.093333pt;}
.y138{bottom:922.373333pt;}
.ye1{bottom:924.933333pt;}
.ye0{bottom:929.040000pt;}
.y43{bottom:936.933333pt;}
.y137{bottom:939.066667pt;}
.y44{bottom:942.266667pt;}
.y6{bottom:944.226667pt;}
.y42{bottom:946.373333pt;}
.yc4{bottom:948.133333pt;}
.y136{bottom:955.173333pt;}
.y3f{bottom:967.066667pt;}
.y3e{bottom:976.506667pt;}
.y134{bottom:980.666667pt;}
.y133{bottom:984.773333pt;}
.y5{bottom:987.173333pt;}
.ydf{bottom:993.560000pt;}
.y3b{bottom:997.200000pt;}
.y12a{bottom:1001.466667pt;}
.y12b{bottom:1001.560000pt;}
.y3a{bottom:1003.960000pt;}
.y4{bottom:1007.960000pt;}
.y132{bottom:1020.226667pt;}
.y36{bottom:1021.466667pt;}
.y38{bottom:1025.466667pt;}
.y3{bottom:1029.560000pt;}
.hae{height:15.199215pt;}
.h8d{height:16.800502pt;}
.hba{height:19.466684pt;}
.h2e{height:19.466962pt;}
.h24{height:20.533233pt;}
.h1a{height:20.533419pt;}
.h16{height:20.533526pt;}
.ha0{height:20.533981pt;}
.h9e{height:21.333682pt;}
.h18{height:22.133738pt;}
.hc9{height:22.192319pt;}
.h42{height:23.200087pt;}
.h5d{height:23.200297pt;}
.h6{height:24.799853pt;}
.h58{height:25.866018pt;}
.h80{height:26.666971pt;}
.h30{height:27.466324pt;}
.h26{height:28.532875pt;}
.h34{height:28.533218pt;}
.h1e{height:30.133181pt;}
.hc8{height:31.660785pt;}
.hb1{height:32.800432pt;}
.hce{height:33.034355pt;}
.h83{height:34.687860pt;}
.hf{height:35.541859pt;}
.ha{height:35.559550pt;}
.h6d{height:36.179558pt;}
.h6b{height:36.197567pt;}
.h77{height:36.399475pt;}
.h75{height:36.417593pt;}
.ha4{height:36.643893pt;}
.h46{height:36.651233pt;}
.h96{height:36.651820pt;}
.h3c{height:36.669476pt;}
.h94{height:36.670064pt;}
.h64{height:37.034472pt;}
.h62{height:37.052906pt;}
.h37{height:37.115435pt;}
.h4b{height:37.368444pt;}
.h14{height:37.378321pt;}
.h7{height:37.506851pt;}
.hc4{height:37.515164pt;}
.haa{height:37.763425pt;}
.hca{height:38.528634pt;}
.hcc{height:38.604568pt;}
.h51{height:38.807370pt;}
.h2a{height:38.819506pt;}
.h4f{height:38.826687pt;}
.h28{height:38.838829pt;}
.h68{height:40.800963pt;}
.hb0{height:41.017159pt;}
.hb8{height:42.644915pt;}
.hb4{height:42.666142pt;}
.h9{height:42.666747pt;}
.h81{height:42.793627pt;}
.h89{height:43.913060pt;}
.h69{height:44.700958pt;}
.h73{height:45.073776pt;}
.h3b{height:45.283726pt;}
.h93{height:45.284451pt;}
.h3a{height:45.332632pt;}
.ha7{height:45.333658pt;}
.h60{height:45.711331pt;}
.h35{height:45.788472pt;}
.h49{height:46.160692pt;}
.hc3{height:46.281609pt;}
.ha8{height:46.657873pt;}
.h4e{height:47.947700pt;}
.h27{height:47.953168pt;}
.h91{height:47.999025pt;}
.h4d{height:47.999483pt;}
.hcd{height:51.035259pt;}
.h5{height:52.354167pt;}
.hb2{height:52.636254pt;}
.h3{height:54.818262pt;}
.h87{height:56.091358pt;}
.h1d{height:56.234350pt;}
.h5c{height:57.011064pt;}
.he{height:57.563214pt;}
.haf{height:58.189612pt;}
.h70{height:58.481103pt;}
.h7a{height:58.990936pt;}
.h40{height:59.359944pt;}
.h99{height:59.360895pt;}
.h85{height:59.403025pt;}
.h86{height:59.477015pt;}
.h1b{height:59.554459pt;}
.hc1{height:59.584103pt;}
.h1c{height:59.608974pt;}
.h67{height:59.792338pt;}
.h7d{height:60.016825pt;}
.h5b{height:60.356386pt;}
.h5a{height:60.407084pt;}
.hbd{height:60.687278pt;}
.hcb{height:60.940439pt;}
.h10{height:60.944895pt;}
.ha6{height:60.953506pt;}
.hc{height:60.961780pt;}
.h8b{height:60.983936pt;}
.hb{height:60.992125pt;}
.hd{height:61.037116pt;}
.had{height:61.161239pt;}
.h6f{height:61.826434pt;}
.h71{height:61.827062pt;}
.h6e{height:61.933862pt;}
.h6c{height:61.964690pt;}
.h79{height:62.189313pt;}
.h88{height:62.194600pt;}
.h7e{height:62.212022pt;}
.h78{height:62.473796pt;}
.h76{height:62.504893pt;}
.h48{height:62.673374pt;}
.h8c{height:62.682197pt;}
.h3f{height:62.688089pt;}
.h47{height:62.688905pt;}
.h98{height:62.693144pt;}
.h55{height:62.712663pt;}
.h54{height:62.852001pt;}
.h3e{height:62.864590pt;}
.h97{height:62.865597pt;}
.h2d{height:62.889060pt;}
.h3d{height:62.895882pt;}
.h95{height:62.896889pt;}
.h39{height:62.997646pt;}
.h66{height:63.026286pt;}
.h7c{height:63.190720pt;}
.h90{height:63.269142pt;}
.h65{height:63.322513pt;}
.h63{height:63.354032pt;}
.h7b{height:63.591891pt;}
.h4c{height:63.644402pt;}
.hc2{height:63.775100pt;}
.hbc{height:63.786784pt;}
.hc6{height:63.821873pt;}
.hc5{height:63.907260pt;}
.h15{height:64.063140pt;}
.h9d{height:64.144414pt;}
.h13{height:64.190545pt;}
.h8{height:64.222496pt;}
.h19{height:64.227925pt;}
.h32{height:64.276768pt;}
.hbb{height:64.302282pt;}
.hac{height:64.385309pt;}
.hab{height:64.772235pt;}
.h84{height:64.784603pt;}
.ha9{height:64.804476pt;}
.hc0{height:65.922027pt;}
.hbf{height:65.988049pt;}
.h9b{height:66.260919pt;}
.h22{height:66.416281pt;}
.ha5{height:66.470771pt;}
.ha3{height:66.498436pt;}
.h8f{height:66.504432pt;}
.h52{height:66.562821pt;}
.h50{height:66.595953pt;}
.h2b{height:66.602067pt;}
.h29{height:66.635219pt;}
.h2c{height:66.667781pt;}
.h57{height:66.726045pt;}
.h53{height:66.751660pt;}
.h33{height:66.880144pt;}
.h8e{height:67.004590pt;}
.h5e{height:67.322877pt;}
.h7f{height:67.791560pt;}
.h25{height:67.825304pt;}
.h2f{height:68.964874pt;}
.hb7{height:68.992492pt;}
.h20{height:70.337538pt;}
.h23{height:70.372549pt;}
.h21{height:70.473790pt;}
.ha2{height:72.554646pt;}
.hb9{height:72.739043pt;}
.h17{height:72.743352pt;}
.hb6{height:72.766329pt;}
.hb5{height:73.065850pt;}
.h2{height:73.281250pt;}
.h82{height:73.966119pt;}
.ha1{height:73.984082pt;}
.h59{height:75.221101pt;}
.h4{height:75.250000pt;}
.h8a{height:75.880707pt;}
.h43{height:76.596317pt;}
.h45{height:76.634444pt;}
.hcf{height:76.745567pt;}
.h9f{height:76.903671pt;}
.h6a{height:77.242174pt;}
.h74{height:77.898918pt;}
.h92{height:78.366860pt;}
.h61{height:79.009189pt;}
.h36{height:79.142522pt;}
.h9c{height:79.874960pt;}
.h31{height:79.994878pt;}
.h38{height:80.382924pt;}
.h4a{height:81.016642pt;}
.h11{height:81.021865pt;}
.h12{height:81.148791pt;}
.h9a{height:82.975736pt;}
.hbe{height:84.162617pt;}
.h5f{height:86.133404pt;}
.h1f{height:87.630461pt;}
.h56{height:89.281250pt;}
.h44{height:89.334583pt;}
.hb3{height:90.978486pt;}
.h72{height:98.668803pt;}
.h41{height:103.372652pt;}
.hc7{height:268.827115pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w39{width:9.866906pt;}
.w23{width:19.466579pt;}
.w27{width:19.466775pt;}
.w7{width:20.533329pt;}
.w4a{width:22.236057pt;}
.w5{width:24.799260pt;}
.w6{width:24.799826pt;}
.w34{width:25.866392pt;}
.w49{width:28.852524pt;}
.w3b{width:32.799799pt;}
.we{width:32.800142pt;}
.w31{width:33.866342pt;}
.wa{width:35.466849pt;}
.w2c{width:36.533180pt;}
.w29{width:38.133774pt;}
.w22{width:44.533199pt;}
.w1b{width:45.332218pt;}
.w11{width:47.998590pt;}
.w14{width:48.001008pt;}
.wd{width:52.532075pt;}
.w21{width:52.533820pt;}
.w13{width:55.199210pt;}
.w8{width:55.201357pt;}
.w20{width:60.534447pt;}
.w40{width:66.667129pt;}
.w44{width:68.531215pt;}
.w3a{width:68.534354pt;}
.w16{width:72.798279pt;}
.w17{width:75.468095pt;}
.w18{width:76.533610pt;}
.w47{width:76.534708pt;}
.w43{width:81.864987pt;}
.w46{width:82.668592pt;}
.w4c{width:90.666680pt;}
.wb{width:95.195949pt;}
.w9{width:95.997796pt;}
.w1c{width:99.463317pt;}
.w2d{width:105.868405pt;}
.w45{width:105.868843pt;}
.w41{width:108.538238pt;}
.w10{width:109.331890pt;}
.w2a{width:111.196590pt;}
.w2{width:113.866679pt;}
.wc{width:120.797193pt;}
.w42{width:126.133626pt;}
.w19{width:159.197407pt;}
.w3c{width:159.202844pt;}
.w3f{width:160.796511pt;}
.w4{width:160.797710pt;}
.w3e{width:164.528189pt;}
.w3{width:169.862402pt;}
.w3d{width:171.736839pt;}
.w38{width:180.533026pt;}
.w2f{width:187.468862pt;}
.w37{width:191.994715pt;}
.w1e{width:205.337746pt;}
.w30{width:232.799153pt;}
.w1a{width:236.539945pt;}
.wf{width:237.333272pt;}
.w12{width:247.198662pt;}
.w36{width:247.202241pt;}
.w25{width:253.333072pt;}
.w24{width:265.855387pt;}
.w35{width:269.341520pt;}
.w26{width:270.930898pt;}
.w1f{width:316.265288pt;}
.w15{width:321.062113pt;}
.w4b{width:357.667329pt;}
.w33{width:364.527756pt;}
.w28{width:369.875910pt;}
.w32{width:374.143102pt;}
.w2b{width:412.542356pt;}
.w1d{width:417.075668pt;}
.w48{width:439.049880pt;}
.w2e{width:518.121688pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.949133pt;}
.x27{left:2.949215pt;}
.x5c{left:3.870155pt;}
.xeb{left:8.333626pt;}
.x87{left:9.800809pt;}
.x11{left:10.784906pt;}
.x21{left:12.461952pt;}
.x2f{left:14.016842pt;}
.xe0{left:15.035547pt;}
.x4d{left:16.586996pt;}
.xc{left:18.499263pt;}
.x4f{left:20.201472pt;}
.xe6{left:21.811391pt;}
.x38{left:22.740777pt;}
.x2e{left:25.623543pt;}
.x44{left:27.591325pt;}
.x4e{left:28.509658pt;}
.x35{left:29.908373pt;}
.xe3{left:32.077843pt;}
.x32{left:33.675275pt;}
.xd0{left:35.452306pt;}
.xee{left:36.910437pt;}
.xc1{left:37.892082pt;}
.x79{left:38.981774pt;}
.x1e{left:39.983494pt;}
.xe1{left:41.151331pt;}
.x86{left:42.085008pt;}
.x16{left:43.366895pt;}
.x58{left:44.608335pt;}
.x93{left:46.774777pt;}
.x3d{left:48.281476pt;}
.x98{left:49.412253pt;}
.x4b{left:50.837564pt;}
.x59{left:53.080490pt;}
.x62{left:54.195146pt;}
.x9e{left:55.273043pt;}
.x2a{left:56.953169pt;}
.x68{left:58.473643pt;}
.x78{left:59.412465pt;}
.x90{left:60.401214pt;}
.x77{left:61.677633pt;}
.x69{left:63.623337pt;}
.x41{left:64.549955pt;}
.xa2{left:66.047941pt;}
.x57{left:66.961183pt;}
.x9c{left:69.106935pt;}
.x31{left:70.092899pt;}
.xa6{left:71.157789pt;}
.x74{left:72.209805pt;}
.x7e{left:73.148302pt;}
.x92{left:74.445902pt;}
.x2{left:75.500000pt;}
.x7f{left:77.129232pt;}
.xaa{left:78.278274pt;}
.x97{left:80.392181pt;}
.xb{left:82.066990pt;}
.x3{left:83.766667pt;}
.xce{left:84.773379pt;}
.x63{left:85.679818pt;}
.xc0{left:86.820951pt;}
.x4{left:88.300000pt;}
.xa5{left:89.252896pt;}
.x96{left:90.364552pt;}
.x67{left:92.006534pt;}
.x9d{left:93.816109pt;}
.x60{left:95.647830pt;}
.x5f{left:96.776284pt;}
.xdf{left:98.722408pt;}
.x61{left:100.487111pt;}
.x1a{left:102.810913pt;}
.x6a{left:104.268660pt;}
.x91{left:105.854640pt;}
.x1c{left:107.904563pt;}
.x10{left:109.928349pt;}
.x5{left:113.366667pt;}
.x14{left:115.094337pt;}
.x12{left:117.984926pt;}
.x1d{left:119.086747pt;}
.x9a{left:120.487491pt;}
.x73{left:124.596056pt;}
.x15{left:126.431033pt;}
.xa1{left:127.788725pt;}
.xd7{left:129.123543pt;}
.xb2{left:130.502715pt;}
.x19{left:131.997725pt;}
.x1b{left:133.123759pt;}
.xd8{left:137.463122pt;}
.xf{left:139.519277pt;}
.xe{left:140.795327pt;}
.x55{left:144.213211pt;}
.xda{left:146.370213pt;}
.xba{left:147.664378pt;}
.xdb{left:149.978211pt;}
.xca{left:151.493333pt;}
.x3c{left:152.849193pt;}
.xd6{left:154.601244pt;}
.xd4{left:157.557787pt;}
.x2b{left:158.800000pt;}
.x56{left:160.591073pt;}
.x3b{left:163.940224pt;}
.x3a{left:165.197208pt;}
.x95{left:166.924480pt;}
.x28{left:168.600000pt;}
.x49{left:170.690585pt;}
.x48{left:171.968255pt;}
.xf0{left:174.533333pt;}
.x4a{left:176.059840pt;}
.x53{left:177.755820pt;}
.x9b{left:180.270284pt;}
.x54{left:181.503523pt;}
.xcd{left:182.533333pt;}
.x76{left:184.133333pt;}
.x5a{left:186.200000pt;}
.xdd{left:187.600000pt;}
.x8e{left:188.998551pt;}
.x8d{left:190.929962pt;}
.x81{left:192.774894pt;}
.x2c{left:194.200000pt;}
.x80{left:195.962604pt;}
.xd3{left:197.627226pt;}
.xcf{left:199.092262pt;}
.xa3{left:200.420329pt;}
.xc9{left:202.000000pt;}
.x8f{left:203.943676pt;}
.xc6{left:208.329341pt;}
.xd1{left:210.661544pt;}
.xc3{left:212.021097pt;}
.xa4{left:213.630183pt;}
.x43{left:215.066667pt;}
.xc2{left:216.345063pt;}
.xd5{left:220.403388pt;}
.xc4{left:226.169085pt;}
.xd{left:227.266667pt;}
.xc5{left:230.028578pt;}
.x64{left:234.000000pt;}
.x83{left:236.053614pt;}
.xa8{left:237.933333pt;}
.xf1{left:241.133333pt;}
.x66{left:243.066667pt;}
.x33{left:246.733333pt;}
.xe5{left:255.800000pt;}
.xc7{left:256.822903pt;}
.x3f{left:262.000000pt;}
.x45{left:263.000000pt;}
.xa9{left:269.466667pt;}
.x5b{left:270.800000pt;}
.x82{left:276.278063pt;}
.xac{left:280.310060pt;}
.x17{left:283.306667pt;}
.x29{left:286.000000pt;}
.x70{left:287.437809pt;}
.x65{left:289.173333pt;}
.xe7{left:292.906667pt;}
.xa0{left:294.630243pt;}
.xbb{left:300.906667pt;}
.xe8{left:302.266667pt;}
.x72{left:305.676966pt;}
.x7{left:307.573333pt;}
.x9{left:308.640000pt;}
.xd9{left:310.266667pt;}
.x18{left:311.600000pt;}
.x40{left:317.173333pt;}
.xad{left:319.243494pt;}
.x6f{left:320.137375pt;}
.x8{left:321.693333pt;}
.x71{left:325.388943pt;}
.x6c{left:331.840000pt;}
.x46{left:336.666667pt;}
.xbc{left:343.840000pt;}
.x6{left:346.226667pt;}
.x3e{left:350.773333pt;}
.x50{left:356.106667pt;}
.x4c{left:360.640000pt;}
.x85{left:367.600000pt;}
.x47{left:369.440000pt;}
.xe9{left:370.773333pt;}
.x34{left:373.200000pt;}
.x8b{left:374.800000pt;}
.x99{left:376.133333pt;}
.x94{left:379.333333pt;}
.xab{left:380.666667pt;}
.x1{left:382.800000pt;}
.x7a{left:389.466667pt;}
.x5d{left:391.333333pt;}
.x8c{left:394.266667pt;}
.xa{left:396.666667pt;}
.x36{left:425.733333pt;}
.x88{left:428.133333pt;}
.x84{left:429.733333pt;}
.x37{left:434.000000pt;}
.x2d{left:445.733333pt;}
.x6d{left:448.666667pt;}
.xd2{left:451.866667pt;}
.xb6{left:457.733333pt;}
.xb3{left:461.446725pt;}
.x39{left:466.800000pt;}
.x5e{left:467.866667pt;}
.x1f{left:472.400000pt;}
.xb4{left:474.667779pt;}
.xc8{left:478.000000pt;}
.x6b{left:479.640000pt;}
.xcb{left:481.466667pt;}
.xa7{left:483.360000pt;}
.xea{left:486.026667pt;}
.xaf{left:487.866667pt;}
.xdc{left:490.840000pt;}
.x51{left:494.533333pt;}
.xb7{left:495.893333pt;}
.x7b{left:505.733333pt;}
.xcc{left:507.360000pt;}
.xde{left:512.973333pt;}
.xed{left:519.821243pt;}
.xb8{left:522.800000pt;}
.xb0{left:524.440000pt;}
.xae{left:526.026667pt;}
.x75{left:530.560000pt;}
.x30{left:540.973333pt;}
.xbd{left:542.026667pt;}
.x42{left:543.893333pt;}
.x6e{left:548.173333pt;}
.xe4{left:553.506667pt;}
.xb9{left:555.640000pt;}
.xb1{left:558.533333pt;}
.xec{left:566.800000pt;}
.xf2{left:567.893333pt;}
.x89{left:589.466667pt;}
.x20{left:593.466667pt;}
.xef{left:599.933333pt;}
.xbe{left:601.466667pt;}
.x52{left:603.933333pt;}
.x7c{left:605.266667pt;}
.x22{left:618.266667pt;}
.xb5{left:631.666667pt;}
.xbf{left:635.400000pt;}
.x7d{left:641.466667pt;}
.x23{left:643.066667pt;}
.x9f{left:647.133333pt;}
.x24{left:663.666667pt;}
.x8a{left:673.466667pt;}
.x25{left:697.466667pt;}
.xe2{left:713.560000pt;}
.x26{left:718.106667pt;}
}




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