
    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_eadf1702d7b75e19aa12a48b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.401855;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_607cb530c6e8e56b992c8a27.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_0af66531bf53e2a264117bc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ee4a1085cd45860238290af.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b46b311d4fcc8ac7767a3268.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_439dec6ea0168b8dea9bead4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76ee5ce424a85dd8709f4d10.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_18ba56b0ee6d30d54993cec0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_a21b58d463af8eaeeda2a95f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_1a0d6a582f7b929fe59e0c44.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_09ad27ce42d8da8d33ade30d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_547cfc8b4c301bdb9557ff8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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;}
.m46{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136824,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164773,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176471,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177326,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177778,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180921,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181159,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183824,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189103,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191176,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193662,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196667,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202055,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205263,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205479,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207237,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207386,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209877,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210526,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210938,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212209,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213816,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215385,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215753,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216049,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216146,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217213,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217262,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217857,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219101,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219178,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221053,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221354,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222892,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225309,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225352,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226667,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226923,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227564,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228571,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228873,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229508,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230263,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231183,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231771,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232353,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232877,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233974,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235119,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235507,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236702,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237952,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238764,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242574,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243976,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244624,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m53{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253817,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256173,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257042,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257246,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257895,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258242,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259804,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259901,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261111,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262658,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263298,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263736,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268939,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269841,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270349,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270833,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273026,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274725,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285156,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286667,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292254,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292373,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299180,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.423295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423295,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.483333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483333,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(1.137931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137931,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(1.176724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.176724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.176724,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(1.288793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.288793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.288793,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(1.327586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.327586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.327586,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.201320px;}
.ls6f{letter-spacing:-22.200000px;}
.ls63{letter-spacing:-12.726606px;}
.ls55{letter-spacing:-10.799280px;}
.ls38{letter-spacing:-9.462000px;}
.ls21{letter-spacing:-6.336000px;}
.ls9{letter-spacing:-6.288000px;}
.ls46{letter-spacing:-5.022000px;}
.lsc2{letter-spacing:-4.968000px;}
.ls1a{letter-spacing:-4.704000px;}
.ls8e{letter-spacing:-4.212000px;}
.ls1c{letter-spacing:-4.116000px;}
.ls7a{letter-spacing:-3.948564px;}
.ls4{letter-spacing:-3.840000px;}
.ls9f{letter-spacing:-3.696000px;}
.lsa6{letter-spacing:-3.600000px;}
.lsb{letter-spacing:-3.528000px;}
.ls51{letter-spacing:-3.456000px;}
.ls7c{letter-spacing:-3.384000px;}
.ls5e{letter-spacing:-3.168000px;}
.lsa4{letter-spacing:-3.150000px;}
.ls9c{letter-spacing:-2.982000px;}
.ls18{letter-spacing:-2.970000px;}
.ls12{letter-spacing:-2.940000px;}
.lsa{letter-spacing:-2.850000px;}
.ls1e{letter-spacing:-2.730000px;}
.ls66{letter-spacing:-2.375406px;}
.ls41{letter-spacing:-2.370000px;}
.ls13{letter-spacing:-2.352000px;}
.ls15{letter-spacing:-2.304000px;}
.ls45{letter-spacing:-2.303424px;}
.ls75{letter-spacing:-2.280000px;}
.ls58{letter-spacing:-2.279430px;}
.ls44{letter-spacing:-2.255436px;}
.ls7f{letter-spacing:-2.250000px;}
.ls9b{letter-spacing:-2.130000px;}
.ls57{letter-spacing:-2.111472px;}
.lsb2{letter-spacing:-2.100000px;}
.lsf{letter-spacing:-1.764000px;}
.ls5f{letter-spacing:-1.710000px;}
.ls39{letter-spacing:-1.692000px;}
.lsb5{letter-spacing:-1.680000px;}
.ls60{letter-spacing:-1.674000px;}
.ls14{letter-spacing:-1.620000px;}
.ls8f{letter-spacing:-1.440000px;}
.ls3f{letter-spacing:-1.368000px;}
.lsbc{letter-spacing:-1.350000px;}
.ls81{letter-spacing:-1.332000px;}
.lsc0{letter-spacing:-1.314000px;}
.ls50{letter-spacing:-1.200000px;}
.ls1d{letter-spacing:-1.188000px;}
.ls43{letter-spacing:-1.140000px;}
.ls5b{letter-spacing:-1.068000px;}
.ls32{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.972000px;}
.ls7e{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.924000px;}
.ls80{letter-spacing:-0.912000px;}
.ls92{letter-spacing:-0.900000px;}
.lsa0{letter-spacing:-0.888000px;}
.lsb0{letter-spacing:-0.840000px;}
.lsbb{letter-spacing:-0.828000px;}
.ls96{letter-spacing:-0.768000px;}
.ls10{letter-spacing:-0.588000px;}
.ls19{letter-spacing:-0.576000px;}
.ls42{letter-spacing:-0.563436px;}
.ls7b{letter-spacing:-0.527472px;}
.ls6{letter-spacing:0.000000px;}
.lsa9{letter-spacing:0.450000px;}
.ls68{letter-spacing:0.527472px;}
.ls65{letter-spacing:0.539460px;}
.ls4c{letter-spacing:0.557442px;}
.ls24{letter-spacing:0.563436px;}
.ls5d{letter-spacing:0.569430px;}
.ls54{letter-spacing:0.575424px;}
.ls1{letter-spacing:0.588000px;}
.ls4a{letter-spacing:0.593406px;}
.ls70{letter-spacing:0.599400px;}
.ls11{letter-spacing:0.624000px;}
.ls99{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.840000px;}
.lsa7{letter-spacing:0.852000px;}
.ls6a{letter-spacing:0.876000px;}
.ls2c{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.912000px;}
.lsba{letter-spacing:0.918000px;}
.ls8d{letter-spacing:0.936000px;}
.ls40{letter-spacing:0.996000px;}
.ls37{letter-spacing:1.020000px;}
.ls3d{letter-spacing:1.032000px;}
.ls79{letter-spacing:1.056000px;}
.lsc7{letter-spacing:1.224000px;}
.lsad{letter-spacing:1.332000px;}
.ls85{letter-spacing:1.350000px;}
.ls69{letter-spacing:1.368000px;}
.lsb1{letter-spacing:1.404000px;}
.lsbe{letter-spacing:1.422000px;}
.ls3a{letter-spacing:1.494000px;}
.ls23{letter-spacing:1.512000px;}
.ls2f{letter-spacing:1.530000px;}
.ls95{letter-spacing:1.560000px;}
.ls53{letter-spacing:1.620000px;}
.ls72{letter-spacing:1.631592px;}
.ls9e{letter-spacing:1.632000px;}
.ls4f{letter-spacing:1.638000px;}
.ls2d{letter-spacing:1.679580px;}
.ls1b{letter-spacing:1.692000px;}
.ls4d{letter-spacing:1.710000px;}
.ls5c{letter-spacing:1.728000px;}
.ls90{letter-spacing:1.751562px;}
.ls9a{letter-spacing:1.752000px;}
.ls0{letter-spacing:1.764000px;}
.lsa2{letter-spacing:1.776000px;}
.ls74{letter-spacing:1.823544px;}
.ls5{letter-spacing:1.830000px;}
.lsc6{letter-spacing:2.070000px;}
.ls8b{letter-spacing:2.100000px;}
.ls76{letter-spacing:2.111472px;}
.lsaa{letter-spacing:2.130000px;}
.ls89{letter-spacing:2.190000px;}
.ls5a{letter-spacing:2.231442px;}
.lsb3{letter-spacing:2.250000px;}
.ls25{letter-spacing:2.255436px;}
.ls84{letter-spacing:2.280000px;}
.ls1f{letter-spacing:2.304000px;}
.ls33{letter-spacing:2.340000px;}
.ls2{letter-spacing:2.352000px;}
.ls6e{letter-spacing:2.375406px;}
.ls34{letter-spacing:2.430000px;}
.lsbd{letter-spacing:2.448000px;}
.ls86{letter-spacing:2.484000px;}
.ls3c{letter-spacing:2.490000px;}
.ls30{letter-spacing:2.520000px;}
.ls77{letter-spacing:2.550000px;}
.lsb4{letter-spacing:2.556000px;}
.ls7d{letter-spacing:2.700000px;}
.lsb7{letter-spacing:2.736000px;}
.lsae{letter-spacing:2.808000px;}
.lsbf{letter-spacing:2.898000px;}
.ls56{letter-spacing:2.940000px;}
.ls8c{letter-spacing:2.940420px;}
.lsc3{letter-spacing:2.982000px;}
.ls94{letter-spacing:3.066000px;}
.ls22{letter-spacing:3.096000px;}
.lsa5{letter-spacing:3.108000px;}
.ls8a{letter-spacing:3.150450px;}
.lsa1{letter-spacing:3.192000px;}
.ls83{letter-spacing:3.192456px;}
.ls6b{letter-spacing:3.276468px;}
.ls26{letter-spacing:3.384000px;}
.ls2e{letter-spacing:3.408000px;}
.ls87{letter-spacing:3.552000px;}
.lsd{letter-spacing:3.564000px;}
.ls3e{letter-spacing:3.570510px;}
.ls52{letter-spacing:3.636000px;}
.lsa3{letter-spacing:3.648000px;}
.lsc4{letter-spacing:3.834000px;}
.ls47{letter-spacing:3.906558px;}
.ls73{letter-spacing:3.942000px;}
.ls27{letter-spacing:3.948564px;}
.ls20{letter-spacing:4.032000px;}
.ls62{letter-spacing:4.032576px;}
.lsc5{letter-spacing:4.080000px;}
.ls3{letter-spacing:4.116000px;}
.ls61{letter-spacing:4.116588px;}
.ls17{letter-spacing:4.200000px;}
.lsab{letter-spacing:4.284000px;}
.ls3b{letter-spacing:4.374000px;}
.ls97{letter-spacing:4.380000px;}
.ls4b{letter-spacing:4.392000px;}
.ls2b{letter-spacing:4.512000px;}
.ls78{letter-spacing:4.590000px;}
.ls31{letter-spacing:4.644000px;}
.ls6c{letter-spacing:4.752000px;}
.lsc1{letter-spacing:4.818000px;}
.ls82{letter-spacing:5.016000px;}
.ls9d{letter-spacing:5.256000px;}
.ls49{letter-spacing:5.280000px;}
.ls6d{letter-spacing:5.292000px;}
.lsb8{letter-spacing:5.328000px;}
.ls35{letter-spacing:5.346000px;}
.ls4e{letter-spacing:5.399640px;}
.lse{letter-spacing:5.400000px;}
.lsac{letter-spacing:5.472000px;}
.ls2a{letter-spacing:5.640564px;}
.lsa8{letter-spacing:5.694000px;}
.lsc{letter-spacing:6.000000px;}
.ls71{letter-spacing:6.119592px;}
.ls88{letter-spacing:6.132000px;}
.ls93{letter-spacing:6.162000px;}
.ls7{letter-spacing:6.588000px;}
.lsb9{letter-spacing:6.840000px;}
.ls29{letter-spacing:7.332000px;}
.ls98{letter-spacing:7.548000px;}
.lsb6{letter-spacing:7.668000px;}
.ls28{letter-spacing:7.896000px;}
.ls59{letter-spacing:7.920000px;}
.lsaf{letter-spacing:8.208000px;}
.ls91{letter-spacing:9.324444px;}
.ls48{letter-spacing:15.287412px;}
.ls64{letter-spacing:21.648000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-128.107320px;}
._31{margin-left:-113.094744px;}
._1f{margin-left:-102.888480px;}
._21{margin-left:-91.078080px;}
._14{margin-left:-89.715000px;}
._1d{margin-left:-85.171800px;}
._16{margin-left:-80.020320px;}
._38{margin-left:-75.918540px;}
._e{margin-left:-72.129960px;}
._19{margin-left:-67.623000px;}
._1e{margin-left:-63.489120px;}
._22{margin-left:-49.238760px;}
._24{margin-left:-46.016880px;}
._15{margin-left:-44.076480px;}
._37{margin-left:-35.367768px;}
._26{margin-left:-33.746160px;}
._20{margin-left:-32.298840px;}
._1c{margin-left:-18.627840px;}
._2c{margin-left:-15.797640px;}
._17{margin-left:-14.094360px;}
._4{margin-left:-12.012840px;}
._2f{margin-left:-10.413960px;}
._18{margin-left:-8.422920px;}
._5{margin-left:-7.203000px;}
._28{margin-left:-6.115200px;}
._6{margin-left:-4.939200px;}
._9{margin-left:-3.557400px;}
._7{margin-left:-1.593480px;}
._a{width:1.866720px;}
._8{width:2.904720px;}
._b{width:3.963000px;}
._1{width:5.304000px;}
._f{width:6.703200px;}
._3{width:7.800000px;}
._12{width:9.349200px;}
._0{width:10.920000px;}
._2{width:12.792000px;}
._13{width:14.553000px;}
._2a{width:15.934800px;}
._10{width:17.310720px;}
._1a{width:19.192320px;}
._29{width:20.850480px;}
._11{width:21.979440px;}
._1b{width:23.837520px;}
._25{width:24.925320px;}
._2b{width:26.231640px;}
._27{width:27.882960px;}
._32{width:28.939536px;}
._c{width:29.988000px;}
._2e{width:31.161000px;}
._d{width:33.339600px;}
._30{width:34.762704px;}
._2d{width:39.578400px;}
._36{width:41.755740px;}
._34{width:44.321940px;}
._35{width:45.796800px;}
._33{width:47.961432px;}
.fc0{color:transparent;}
.fs2c{font-size:6.000000px;}
.fs2a{font-size:30.600000px;}
.fs19{font-size:34.800000px;}
.fs1a{font-size:35.400000px;}
.fs2{font-size:36.000000px;}
.fs1{font-size:36.600000px;}
.fs2b{font-size:37.800000px;}
.fs0{font-size:38.400000px;}
.fs17{font-size:39.000000px;}
.fs25{font-size:39.600000px;}
.fs27{font-size:40.800000px;}
.fs29{font-size:41.400000px;}
.fse{font-size:42.000000px;}
.fs13{font-size:42.600000px;}
.fs20{font-size:43.800000px;}
.fs28{font-size:44.400000px;}
.fs12{font-size:45.000000px;}
.fs1c{font-size:45.600000px;}
.fs24{font-size:46.800000px;}
.fs1d{font-size:47.400000px;}
.fs1f{font-size:48.000000px;}
.fs18{font-size:48.600000px;}
.fs1b{font-size:49.800000px;}
.fs16{font-size:50.400000px;}
.fs15{font-size:51.000000px;}
.fs11{font-size:51.600000px;}
.fs14{font-size:52.800000px;}
.fs23{font-size:53.400000px;}
.fsc{font-size:54.000000px;}
.fs10{font-size:54.600000px;}
.fs1e{font-size:55.800000px;}
.fsf{font-size:56.400000px;}
.fs8{font-size:57.000000px;}
.fsd{font-size:57.600000px;}
.fs7{font-size:58.800000px;}
.fsa{font-size:59.400000px;}
.fs9{font-size:60.000000px;}
.fs21{font-size:60.600000px;}
.fsb{font-size:62.400000px;}
.fs22{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:78.600000px;}
.fs26{font-size:88.800000px;}
.fs4{font-size:92.400000px;}
.fs3{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.y131{bottom:85.650000px;}
.y11d{bottom:85.650420px;}
.y39{bottom:87.152100px;}
.y65{bottom:88.500960px;}
.y87{bottom:88.950000px;}
.yd6{bottom:89.700000px;}
.yd5{bottom:89.700300px;}
.y11b{bottom:98.699760px;}
.y11c{bottom:98.700000px;}
.y38{bottom:102.901680px;}
.y64{bottom:104.400480px;}
.y86{bottom:104.700000px;}
.y85{bottom:104.700510px;}
.yd4{bottom:105.450000px;}
.yd3{bottom:105.450960px;}
.y11a{bottom:111.600000px;}
.y37{bottom:118.801200px;}
.y63{bottom:120.300000px;}
.y62{bottom:120.300600px;}
.y84{bottom:120.900000px;}
.y83{bottom:120.900510px;}
.yd2{bottom:121.650450px;}
.y12f{bottom:124.499460px;}
.y130{bottom:124.500000px;}
.y36{bottom:135.000600px;}
.y61{bottom:136.500000px;}
.y60{bottom:136.501320px;}
.y81{bottom:137.099940px;}
.y82{bottom:137.100000px;}
.yd1{bottom:137.849940px;}
.y12e{bottom:137.850000px;}
.y119{bottom:150.150690px;}
.y35{bottom:151.200000px;}
.y34{bottom:151.201320px;}
.y5f{bottom:152.700720px;}
.y80{bottom:153.000510px;}
.yd0{bottom:153.750510px;}
.y12d{bottom:164.100000px;}
.y118{bottom:166.350180px;}
.y33{bottom:167.700600px;}
.y7f{bottom:169.199430px;}
.y5e{bottom:169.200000px;}
.ycf{bottom:169.950000px;}
.yce{bottom:169.950810px;}
.y12c{bottom:177.150000px;}
.y117{bottom:182.549670px;}
.y32{bottom:183.900000px;}
.y7e{bottom:185.100000px;}
.y7d{bottom:185.100180px;}
.y5d{bottom:185.400000px;}
.y5c{bottom:185.401530px;}
.ycd{bottom:186.150300px;}
.y12b{bottom:189.750000px;}
.y116{bottom:198.299370px;}
.y31{bottom:199.799520px;}
.y7c{bottom:201.600000px;}
.y5b{bottom:201.600930px;}
.ycc{bottom:202.349790px;}
.y129{bottom:202.649580px;}
.y12a{bottom:202.650000px;}
.y115{bottom:214.199940px;}
.y128{bottom:215.250000px;}
.y127{bottom:215.250420px;}
.y5a{bottom:217.800330px;}
.y7b{bottom:217.800510px;}
.ycb{bottom:218.849610px;}
.y30{bottom:220.650000px;}
.y126{bottom:228.300000px;}
.y114{bottom:230.100510px;}
.y7a{bottom:234.000000px;}
.y79{bottom:234.000180px;}
.yca{bottom:234.750180px;}
.y2f{bottom:237.300000px;}
.y2e{bottom:237.300420px;}
.y59{bottom:241.950960px;}
.y113{bottom:246.300000px;}
.y125{bottom:248.700000px;}
.y78{bottom:250.500000px;}
.yc9{bottom:251.250000px;}
.yc8{bottom:251.250510px;}
.y2d{bottom:253.050000px;}
.y112{bottom:262.500000px;}
.y111{bottom:262.502100px;}
.y76{bottom:266.699940px;}
.y77{bottom:266.700000px;}
.yc6{bottom:267.449430px;}
.yc7{bottom:267.450000px;}
.y2c{bottom:268.953720px;}
.y110{bottom:278.701590px;}
.y75{bottom:282.600510px;}
.yc5{bottom:283.350000px;}
.y2b{bottom:284.703300px;}
.y58{bottom:285.451200px;}
.y10f{bottom:295.201410px;}
.y74{bottom:298.800000px;}
.y73{bottom:298.800450px;}
.yc4{bottom:299.100000px;}
.yc3{bottom:299.100510px;}
.y2a{bottom:300.902700px;}
.y124{bottom:301.649880px;}
.y57{bottom:301.650600px;}
.y10e{bottom:311.400900px;}
.y72{bottom:314.701020px;}
.yc2{bottom:315.300000px;}
.yc1{bottom:315.300510px;}
.y123{bottom:316.500000px;}
.y122{bottom:316.500750px;}
.y29{bottom:317.551920px;}
.y56{bottom:317.850000px;}
.y10d{bottom:327.900720px;}
.y71{bottom:330.900510px;}
.y120{bottom:331.199670px;}
.y121{bottom:331.200000px;}
.yc0{bottom:331.500000px;}
.ybf{bottom:331.500510px;}
.y28{bottom:333.751320px;}
.y55{bottom:334.052700px;}
.y10c{bottom:344.550000px;}
.y11f{bottom:345.600000px;}
.y70{bottom:347.100000px;}
.y6f{bottom:347.101200px;}
.ybe{bottom:347.700000px;}
.ybd{bottom:347.702250px;}
.y27{bottom:349.950720px;}
.y54{bottom:350.701920px;}
.y10b{bottom:360.300000px;}
.y10a{bottom:360.301020px;}
.y6e{bottom:363.300690px;}
.ybc{bottom:363.901740px;}
.y26{bottom:366.450000px;}
.y25{bottom:366.455280px;}
.y53{bottom:366.901320px;}
.y11e{bottom:375.150000px;}
.y109{bottom:376.500510px;}
.y6d{bottom:379.800510px;}
.ybb{bottom:380.101230px;}
.y24{bottom:382.654680px;}
.y52{bottom:383.100720px;}
.y107{bottom:392.699430px;}
.y108{bottom:392.700000px;}
.y6c{bottom:396.000000px;}
.yba{bottom:396.750510px;}
.y23{bottom:399.303900px;}
.y51{bottom:399.600000px;}
.y106{bottom:408.600000px;}
.y105{bottom:408.601710px;}
.yb9{bottom:412.950000px;}
.yb8{bottom:412.950690px;}
.y22{bottom:415.053480px;}
.y50{bottom:415.800000px;}
.y4f{bottom:415.802880px;}
.y104{bottom:424.801200px;}
.yb7{bottom:429.450510px;}
.y21{bottom:431.252880px;}
.y6b{bottom:431.700000px;}
.y4e{bottom:432.002280px;}
.y103{bottom:441.000690px;}
.yb6{bottom:445.650000px;}
.yb5{bottom:445.651020px;}
.y6a{bottom:446.100000px;}
.y20{bottom:447.452280px;}
.y4d{bottom:447.901800px;}
.y102{bottom:457.500510px;}
.y69{bottom:460.500000px;}
.yb4{bottom:461.850510px;}
.y1f{bottom:463.651680px;}
.y4c{bottom:464.101200px;}
.y101{bottom:473.700000px;}
.y100{bottom:473.701230px;}
.y68{bottom:475.050000px;}
.yb3{bottom:478.050000px;}
.y1e{bottom:479.551200px;}
.y4b{bottom:480.300600px;}
.y67{bottom:489.600000px;}
.yff{bottom:490.350510px;}
.yb2{bottom:493.950000px;}
.yb1{bottom:493.950510px;}
.y1d{bottom:495.750600px;}
.y4a{bottom:496.500000px;}
.yfe{bottom:506.550000px;}
.yfd{bottom:506.550510px;}
.yb0{bottom:510.150000px;}
.y1c{bottom:511.950000px;}
.yfc{bottom:522.750000px;}
.yaf{bottom:525.900000px;}
.yae{bottom:525.900510px;}
.y1b{bottom:528.450000px;}
.y1a{bottom:528.452580px;}
.y49{bottom:529.200000px;}
.y48{bottom:529.203120px;}
.yfb{bottom:539.250000px;}
.yfa{bottom:539.250750px;}
.yad{bottom:542.100000px;}
.yac{bottom:542.101410px;}
.y19{bottom:545.101800px;}
.y47{bottom:545.402520px;}
.yf9{bottom:555.151320px;}
.yab{bottom:559.051020px;}
.y18{bottom:561.301200px;}
.y46{bottom:561.601920px;}
.yf8{bottom:571.350810px;}
.yaa{bottom:575.250510px;}
.y17{bottom:577.800480px;}
.y45{bottom:578.101200px;}
.yf7{bottom:587.550300px;}
.ya9{bottom:591.450000px;}
.ya8{bottom:591.450720px;}
.y16{bottom:593.700000px;}
.y15{bottom:593.700600px;}
.y44{bottom:594.300600px;}
.yf6{bottom:603.300000px;}
.ya7{bottom:608.100000px;}
.ya6{bottom:608.100510px;}
.y14{bottom:609.900000px;}
.y13{bottom:609.902820px;}
.y43{bottom:610.500000px;}
.yf5{bottom:619.501230px;}
.ya5{bottom:624.300000px;}
.ya4{bottom:624.300510px;}
.y12{bottom:626.102220px;}
.y42{bottom:626.401800px;}
.yf4{bottom:636.150510px;}
.ya3{bottom:640.500000px;}
.y11{bottom:641.851800px;}
.y41{bottom:642.601200px;}
.yf3{bottom:652.350000px;}
.yf2{bottom:652.350180px;}
.ya2{bottom:656.251860px;}
.y10{bottom:658.051200px;}
.y40{bottom:658.500720px;}
.yf1{bottom:668.850000px;}
.yf0{bottom:668.852040px;}
.ya1{bottom:672.451350px;}
.yf{bottom:674.250600px;}
.y3f{bottom:675.000000px;}
.y3e{bottom:675.001200px;}
.yef{bottom:685.501320px;}
.ya0{bottom:688.350510px;}
.ye{bottom:690.450000px;}
.y3d{bottom:691.200600px;}
.yee{bottom:701.700810px;}
.y9f{bottom:704.550000px;}
.y9e{bottom:704.550690px;}
.yd{bottom:707.100000px;}
.yc{bottom:707.100180px;}
.y3c{bottom:707.400000px;}
.y3b{bottom:707.403900px;}
.yed{bottom:717.900300px;}
.y9d{bottom:720.750180px;}
.yb{bottom:723.599460px;}
.y3a{bottom:723.903180px;}
.yec{bottom:733.650000px;}
.yeb{bottom:733.651530px;}
.y9c{bottom:737.250000px;}
.y9b{bottom:737.251740px;}
.yea{bottom:749.851020px;}
.y9a{bottom:753.451230px;}
.ye9{bottom:766.050510px;}
.y141{bottom:768.600000px;}
.y99{bottom:770.100510px;}
.y140{bottom:781.200000px;}
.ye8{bottom:782.250000px;}
.ye7{bottom:782.252100px;}
.y98{bottom:786.300000px;}
.y97{bottom:786.300510px;}
.ya{bottom:788.400000px;}
.y9{bottom:788.400780px;}
.y13f{bottom:794.550000px;}
.ye6{bottom:798.451590px;}
.y96{bottom:802.500000px;}
.y95{bottom:802.500180px;}
.y13e{bottom:807.150000px;}
.ye5{bottom:814.651080px;}
.y93{bottom:818.700510px;}
.y94{bottom:819.000000px;}
.y8{bottom:819.750000px;}
.y7{bottom:819.750720px;}
.y13d{bottom:820.050000px;}
.ye4{bottom:831.300360px;}
.y13c{bottom:833.100000px;}
.y92{bottom:834.900000px;}
.y91{bottom:834.900300px;}
.y5{bottom:836.249610px;}
.y6{bottom:836.250000px;}
.y13b{bottom:846.000000px;}
.ye3{bottom:847.800180px;}
.y90{bottom:850.650000px;}
.y8f{bottom:850.650510px;}
.y13a{bottom:858.900000px;}
.ye2{bottom:864.300000px;}
.ye1{bottom:864.301020px;}
.y8e{bottom:866.850000px;}
.y8d{bottom:866.850510px;}
.y4{bottom:868.350000px;}
.y139{bottom:872.250000px;}
.ye0{bottom:880.500510px;}
.y8c{bottom:883.050000px;}
.y8b{bottom:883.050510px;}
.y138{bottom:884.850000px;}
.ydf{bottom:896.700000px;}
.yde{bottom:896.700510px;}
.y136{bottom:898.499790px;}
.y137{bottom:898.500000px;}
.y8a{bottom:899.250000px;}
.y3{bottom:901.050000px;}
.y135{bottom:911.550000px;}
.ydd{bottom:912.900000px;}
.y89{bottom:915.900000px;}
.y88{bottom:915.900900px;}
.y134{bottom:924.150000px;}
.ydc{bottom:928.800000px;}
.ydb{bottom:928.800510px;}
.y133{bottom:937.500000px;}
.y2{bottom:940.350000px;}
.yd9{bottom:944.999910px;}
.yda{bottom:945.000000px;}
.y132{bottom:950.100000px;}
.yd7{bottom:985.650000px;}
.yd8{bottom:986.100000px;}
.y1{bottom:986.700000px;}
.y66{bottom:988.950000px;}
.h52{height:30.032227px;}
.h5b{height:31.914844px;}
.h25{height:34.725879px;}
.h30{height:35.920898px;}
.h24{height:36.295312px;}
.h4{height:37.546875px;}
.h3{height:38.172656px;}
.h2{height:38.700000px;}
.h40{height:38.865234px;}
.h56{height:39.424219px;}
.h42{height:40.042969px;}
.h53{height:40.050000px;}
.h61{height:40.611621px;}
.h22{height:40.675781px;}
.h44{height:41.118750px;}
.h60{height:41.200195px;}
.h12{height:41.220703px;}
.h62{height:41.301562px;}
.h5e{height:41.788770px;}
.h57{height:41.809570px;}
.h58{height:42.553125px;}
.h63{height:42.932812px;}
.h3e{height:42.965918px;}
.h54{height:42.987305px;}
.h4a{height:43.178906px;}
.h4e{height:43.554492px;}
.h4b{height:43.576172px;}
.h1c{height:43.804688px;}
.h1b{height:44.143066px;}
.h47{height:44.165039px;}
.h1d{height:44.430469px;}
.h5c{height:44.731641px;}
.h55{height:44.746875px;}
.h45{height:44.753906px;}
.h4d{height:45.351562px;}
.h2f{height:45.682031px;}
.h3f{height:45.908789px;}
.h48{height:45.931641px;}
.h4c{height:45.956250px;}
.h49{height:46.307813px;}
.h5f{height:46.497363px;}
.h2a{height:46.520508px;}
.h4f{height:47.109375px;}
.h5d{height:47.165625px;}
.h29{height:47.559375px;}
.h23{height:47.698242px;}
.h27{height:48.875977px;}
.h20{height:49.464844px;}
.h5a{height:49.678418px;}
.h26{height:50.053711px;}
.h2e{height:50.062500px;}
.h21{height:50.642578px;}
.h1f{height:51.398438px;}
.h3a{height:51.820313px;}
.h28{height:52.003125px;}
.h59{height:52.671094px;}
.h31{height:52.998047px;}
.h2b{height:53.091797px;}
.h1e{height:53.212500px;}
.h33{height:53.586914px;}
.h19{height:53.817187px;}
.h3b{height:54.737402px;}
.h2c{height:54.764648px;}
.h36{height:55.068750px;}
.h14{height:55.353516px;}
.h38{height:55.694531px;}
.hb{height:55.914551px;}
.h17{height:55.942383px;}
.h2d{height:56.235938px;}
.h10{height:56.320312px;}
.h32{height:56.503125px;}
.h11{height:56.531250px;}
.h39{height:56.554836px;}
.h43{height:56.840625px;}
.h16{height:56.946094px;}
.h3c{height:57.445312px;}
.ha{height:57.680273px;}
.h9{height:57.708984px;}
.h35{height:58.197656px;}
.hd{height:58.268848px;}
.h15{height:58.297852px;}
.hc{height:58.857422px;}
.h13{height:58.886719px;}
.h18{height:59.259375px;}
.h34{height:59.475586px;}
.h46{height:59.864063px;}
.he{height:60.468750px;}
.hf{height:61.242188px;}
.h3d{height:62.287251px;}
.h37{height:75.093750px;}
.h7{height:76.552734px;}
.h8{height:77.141602px;}
.h41{height:88.583203px;}
.h6{height:93.121875px;}
.h5{height:94.331250px;}
.h0{height:1079.639100px;}
.h1{height:1080.000000px;}
.h1a{height:1080.359250px;}
.h51{height:1081.500000px;}
.h50{height:1081.799550px;}
.w0{width:756.000000px;}
.w1{width:756.718500px;}
.w2{width:756.750000px;}
.w3{width:758.878950px;}
.w4{width:759.000000px;}
.x0{left:0.000000px;}
.xe{left:70.948875px;}
.x1{left:72.000000px;}
.x19{left:73.500075px;}
.x58{left:74.550000px;}
.x20{left:86.401275px;}
.x23{left:88.500000px;}
.xa2{left:90.750000px;}
.xad{left:94.650000px;}
.x3c{left:97.950000px;}
.xa3{left:102.900000px;}
.x52{left:104.100000px;}
.x44{left:105.150000px;}
.x3d{left:112.350000px;}
.x2{left:113.700000px;}
.x5f{left:115.200000px;}
.xb2{left:116.700000px;}
.x53{left:118.800000px;}
.x9f{left:119.850000px;}
.x49{left:122.100000px;}
.x5e{left:123.150000px;}
.x5{left:127.800000px;}
.x60{left:130.350000px;}
.x3{left:133.500000px;}
.x45{left:135.000000px;}
.x5b{left:138.900000px;}
.x5c{left:141.150000px;}
.xb7{left:142.500000px;}
.x8{left:143.700000px;}
.x4d{left:145.050000px;}
.xb5{left:146.100000px;}
.x1d{left:147.300000px;}
.x1a{left:149.400000px;}
.xa5{left:150.450000px;}
.x3e{left:151.500000px;}
.x46{left:154.500000px;}
.x9{left:158.400000px;}
.x4a{left:163.800000px;}
.x1b{left:165.900000px;}
.x3f{left:167.700000px;}
.x5d{left:169.200000px;}
.x4{left:170.700000px;}
.x24{left:173.850000px;}
.x21{left:175.650000px;}
.x63{left:176.700000px;}
.xb8{left:179.250000px;}
.x16{left:181.050000px;}
.x1c{left:182.850000px;}
.xf{left:183.900000px;}
.x54{left:185.700000px;}
.xb1{left:189.300000px;}
.x47{left:192.900000px;}
.x13{left:196.950000px;}
.x1e{left:198.750000px;}
.x17{left:201.600000px;}
.x40{left:204.900000px;}
.x1f{left:210.600000px;}
.xaf{left:213.450000px;}
.x4e{left:218.100000px;}
.x10{left:220.350000px;}
.x6{left:221.400000px;}
.xb0{left:228.300000px;}
.xb9{left:230.100000px;}
.x61{left:232.500000px;}
.x7{left:243.750000px;}
.x55{left:245.100000px;}
.x11{left:249.150000px;}
.x4f{left:254.100000px;}
.xae{left:256.650000px;}
.x56{left:257.700000px;}
.x62{left:258.900000px;}
.xa8{left:263.550000px;}
.x4b{left:275.100000px;}
.x22{left:277.500000px;}
.xa{left:279.000000px;}
.x12{left:281.100000px;}
.xb3{left:283.650000px;}
.xa9{left:290.850000px;}
.xaa{left:291.900000px;}
.xb{left:293.100000px;}
.xb6{left:296.700000px;}
.xa6{left:298.500000px;}
.xb4{left:303.450000px;}
.xab{left:309.900000px;}
.x4c{left:311.100000px;}
.x48{left:312.150000px;}
.x50{left:313.200000px;}
.x41{left:315.750000px;}
.x57{left:318.600000px;}
.xa7{left:321.450000px;}
.xba{left:326.850000px;}
.xac{left:327.900000px;}
.x42{left:334.500000px;}
.x59{left:335.850000px;}
.x5a{left:342.000000px;}
.x18{left:345.900000px;}
.x51{left:349.950000px;}
.xa4{left:356.100000px;}
.x14{left:358.200000px;}
.x43{left:364.650000px;}
.x15{left:375.150000px;}
.x31{left:385.949625px;}
.x25{left:387.752475px;}
.x7e{left:389.550000px;}
.xc8{left:400.349175px;}
.x2c{left:401.399775px;}
.x89{left:402.449640px;}
.x92{left:404.250000px;}
.x28{left:405.300000px;}
.x7f{left:407.100000px;}
.x30{left:411.450000px;}
.xbb{left:412.500000px;}
.x69{left:415.050000px;}
.xe5{left:416.550000px;}
.xed{left:418.350000px;}
.xc2{left:419.400000px;}
.xf5{left:422.700000px;}
.x2d{left:424.500000px;}
.xbc{left:426.900000px;}
.xc6{left:428.100000px;}
.x35{left:429.150000px;}
.xc{left:430.500000px;}
.xc7{left:431.700000px;}
.xd6{left:433.500000px;}
.x6b{left:435.600000px;}
.x87{left:439.200000px;}
.xf6{left:440.250000px;}
.x29{left:441.300000px;}
.xd{left:443.850000px;}
.x36{left:446.100000px;}
.x78{left:447.900000px;}
.xf3{left:448.950000px;}
.x85{left:450.750000px;}
.xd7{left:451.800000px;}
.x6a{left:453.600000px;}
.x8d{left:455.400000px;}
.x9d{left:457.500000px;}
.x2a{left:459.000000px;}
.xcf{left:460.800000px;}
.x80{left:464.100000px;}
.x8e{left:466.500000px;}
.xdb{left:469.050000px;}
.xe6{left:470.100000px;}
.x94{left:471.300000px;}
.xd0{left:473.400000px;}
.x79{left:475.500000px;}
.x71{left:476.700000px;}
.xe3{left:478.800000px;}
.xbd{left:480.600000px;}
.xc9{left:481.650000px;}
.xd1{left:483.450000px;}
.x86{left:487.050000px;}
.x9b{left:488.550000px;}
.xde{left:491.100000px;}
.x7a{left:492.150000px;}
.xd8{left:493.950000px;}
.x81{left:495.300000px;}
.x72{left:498.300000px;}
.xeb{left:499.350000px;}
.x90{left:500.400000px;}
.x2b{left:502.200000px;}
.x97{left:505.800000px;}
.x67{left:506.850000px;}
.xee{left:507.900000px;}
.x65{left:509.700000px;}
.xf9{left:513.000000px;}
.xca{left:514.500000px;}
.x82{left:515.550000px;}
.xf0{left:516.600000px;}
.x73{left:518.400000px;}
.xdf{left:519.450000px;}
.x33{left:520.500000px;}
.xef{left:523.500000px;}
.x68{left:525.300000px;}
.x91{left:527.100000px;}
.x66{left:528.150000px;}
.x6c{left:530.700000px;}
.x7b{left:534.600000px;}
.x9a{left:537.450000px;}
.x34{left:540.000000px;}
.xf7{left:541.800000px;}
.xe7{left:543.300000px;}
.x6d{left:547.200000px;}
.xe0{left:550.500000px;}
.xe4{left:552.300000px;}
.xd2{left:553.350000px;}
.xdd{left:554.700000px;}
.xe8{left:557.250000px;}
.x6e{left:558.300000px;}
.x7c{left:561.600000px;}
.x8f{left:562.650000px;}
.xc3{left:565.500000px;}
.xf8{left:568.050000px;}
.xd3{left:569.550000px;}
.xe1{left:570.600000px;}
.xd9{left:572.700000px;}
.xe9{left:574.500000px;}
.x93{left:575.700000px;}
.xcc{left:577.500000px;}
.x75{left:578.550000px;}
.xf1{left:579.600000px;}
.xc4{left:582.150000px;}
.x74{left:583.200000px;}
.xda{left:587.100000px;}
.x39{left:588.900000px;}
.x95{left:590.400000px;}
.xcd{left:591.450000px;}
.x37{left:592.500000px;}
.x76{left:593.700000px;}
.xdc{left:595.800000px;}
.x9e{left:597.600000px;}
.x26{left:599.400000px;}
.xe2{left:602.250000px;}
.x32{left:603.750000px;}
.x38{left:605.550000px;}
.xfa{left:606.900000px;}
.x96{left:608.100000px;}
.xd4{left:609.450000px;}
.x77{left:611.700000px;}
.xa0{left:613.800000px;}
.xc5{left:615.300000px;}
.x27{left:618.150000px;}
.xc1{left:620.250000px;}
.xcb{left:623.550000px;}
.x98{left:624.600000px;}
.xd5{left:626.100000px;}
.xf4{left:629.250000px;}
.xfb{left:631.800000px;}
.xbe{left:635.100000px;}
.x88{left:636.150000px;}
.x3a{left:637.950000px;}
.x99{left:639.750000px;}
.x70{left:641.100000px;}
.x8a{left:642.900000px;}
.x83{left:644.400000px;}
.xf2{left:647.700000px;}
.xbf{left:649.500000px;}
.x6f{left:651.900000px;}
.xec{left:653.100000px;}
.x7d{left:654.150000px;}
.x3b{left:657.750000px;}
.x8b{left:659.550000px;}
.xce{left:663.900000px;}
.xa1{left:664.950000px;}
.x2e{left:666.000000px;}
.x8c{left:667.050000px;}
.x64{left:669.300000px;}
.x2f{left:671.400000px;}
.x9c{left:673.500000px;}
.xc0{left:674.700000px;}
.x84{left:676.050000px;}
.xea{left:682.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.067840pt;}
.ls6f{letter-spacing:-19.733333pt;}
.ls63{letter-spacing:-11.312539pt;}
.ls55{letter-spacing:-9.599360pt;}
.ls38{letter-spacing:-8.410667pt;}
.ls21{letter-spacing:-5.632000pt;}
.ls9{letter-spacing:-5.589333pt;}
.ls46{letter-spacing:-4.464000pt;}
.lsc2{letter-spacing:-4.416000pt;}
.ls1a{letter-spacing:-4.181333pt;}
.ls8e{letter-spacing:-3.744000pt;}
.ls1c{letter-spacing:-3.658667pt;}
.ls7a{letter-spacing:-3.509835pt;}
.ls4{letter-spacing:-3.413333pt;}
.ls9f{letter-spacing:-3.285333pt;}
.lsa6{letter-spacing:-3.200000pt;}
.lsb{letter-spacing:-3.136000pt;}
.ls51{letter-spacing:-3.072000pt;}
.ls7c{letter-spacing:-3.008000pt;}
.ls5e{letter-spacing:-2.816000pt;}
.lsa4{letter-spacing:-2.800000pt;}
.ls9c{letter-spacing:-2.650667pt;}
.ls18{letter-spacing:-2.640000pt;}
.ls12{letter-spacing:-2.613333pt;}
.lsa{letter-spacing:-2.533333pt;}
.ls1e{letter-spacing:-2.426667pt;}
.ls66{letter-spacing:-2.111472pt;}
.ls41{letter-spacing:-2.106667pt;}
.ls13{letter-spacing:-2.090667pt;}
.ls15{letter-spacing:-2.048000pt;}
.ls45{letter-spacing:-2.047488pt;}
.ls75{letter-spacing:-2.026667pt;}
.ls58{letter-spacing:-2.026160pt;}
.ls44{letter-spacing:-2.004832pt;}
.ls7f{letter-spacing:-2.000000pt;}
.ls9b{letter-spacing:-1.893333pt;}
.ls57{letter-spacing:-1.876864pt;}
.lsb2{letter-spacing:-1.866667pt;}
.lsf{letter-spacing:-1.568000pt;}
.ls5f{letter-spacing:-1.520000pt;}
.ls39{letter-spacing:-1.504000pt;}
.lsb5{letter-spacing:-1.493333pt;}
.ls60{letter-spacing:-1.488000pt;}
.ls14{letter-spacing:-1.440000pt;}
.ls8f{letter-spacing:-1.280000pt;}
.ls3f{letter-spacing:-1.216000pt;}
.lsbc{letter-spacing:-1.200000pt;}
.ls81{letter-spacing:-1.184000pt;}
.lsc0{letter-spacing:-1.168000pt;}
.ls50{letter-spacing:-1.066667pt;}
.ls1d{letter-spacing:-1.056000pt;}
.ls43{letter-spacing:-1.013333pt;}
.ls5b{letter-spacing:-0.949333pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.864000pt;}
.ls7e{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls80{letter-spacing:-0.810667pt;}
.ls92{letter-spacing:-0.800000pt;}
.lsa0{letter-spacing:-0.789333pt;}
.lsb0{letter-spacing:-0.746667pt;}
.lsbb{letter-spacing:-0.736000pt;}
.ls96{letter-spacing:-0.682667pt;}
.ls10{letter-spacing:-0.522667pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls42{letter-spacing:-0.500832pt;}
.ls7b{letter-spacing:-0.468864pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa9{letter-spacing:0.400000pt;}
.ls68{letter-spacing:0.468864pt;}
.ls65{letter-spacing:0.479520pt;}
.ls4c{letter-spacing:0.495504pt;}
.ls24{letter-spacing:0.500832pt;}
.ls5d{letter-spacing:0.506160pt;}
.ls54{letter-spacing:0.511488pt;}
.ls1{letter-spacing:0.522667pt;}
.ls4a{letter-spacing:0.527472pt;}
.ls70{letter-spacing:0.532800pt;}
.ls11{letter-spacing:0.554667pt;}
.ls99{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.746667pt;}
.lsa7{letter-spacing:0.757333pt;}
.ls6a{letter-spacing:0.778667pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.810667pt;}
.lsba{letter-spacing:0.816000pt;}
.ls8d{letter-spacing:0.832000pt;}
.ls40{letter-spacing:0.885333pt;}
.ls37{letter-spacing:0.906667pt;}
.ls3d{letter-spacing:0.917333pt;}
.ls79{letter-spacing:0.938667pt;}
.lsc7{letter-spacing:1.088000pt;}
.lsad{letter-spacing:1.184000pt;}
.ls85{letter-spacing:1.200000pt;}
.ls69{letter-spacing:1.216000pt;}
.lsb1{letter-spacing:1.248000pt;}
.lsbe{letter-spacing:1.264000pt;}
.ls3a{letter-spacing:1.328000pt;}
.ls23{letter-spacing:1.344000pt;}
.ls2f{letter-spacing:1.360000pt;}
.ls95{letter-spacing:1.386667pt;}
.ls53{letter-spacing:1.440000pt;}
.ls72{letter-spacing:1.450304pt;}
.ls9e{letter-spacing:1.450667pt;}
.ls4f{letter-spacing:1.456000pt;}
.ls2d{letter-spacing:1.492960pt;}
.ls1b{letter-spacing:1.504000pt;}
.ls4d{letter-spacing:1.520000pt;}
.ls5c{letter-spacing:1.536000pt;}
.ls90{letter-spacing:1.556944pt;}
.ls9a{letter-spacing:1.557333pt;}
.ls0{letter-spacing:1.568000pt;}
.lsa2{letter-spacing:1.578667pt;}
.ls74{letter-spacing:1.620928pt;}
.ls5{letter-spacing:1.626667pt;}
.lsc6{letter-spacing:1.840000pt;}
.ls8b{letter-spacing:1.866667pt;}
.ls76{letter-spacing:1.876864pt;}
.lsaa{letter-spacing:1.893333pt;}
.ls89{letter-spacing:1.946667pt;}
.ls5a{letter-spacing:1.983504pt;}
.lsb3{letter-spacing:2.000000pt;}
.ls25{letter-spacing:2.004832pt;}
.ls84{letter-spacing:2.026667pt;}
.ls1f{letter-spacing:2.048000pt;}
.ls33{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.090667pt;}
.ls6e{letter-spacing:2.111472pt;}
.ls34{letter-spacing:2.160000pt;}
.lsbd{letter-spacing:2.176000pt;}
.ls86{letter-spacing:2.208000pt;}
.ls3c{letter-spacing:2.213333pt;}
.ls30{letter-spacing:2.240000pt;}
.ls77{letter-spacing:2.266667pt;}
.lsb4{letter-spacing:2.272000pt;}
.ls7d{letter-spacing:2.400000pt;}
.lsb7{letter-spacing:2.432000pt;}
.lsae{letter-spacing:2.496000pt;}
.lsbf{letter-spacing:2.576000pt;}
.ls56{letter-spacing:2.613333pt;}
.ls8c{letter-spacing:2.613707pt;}
.lsc3{letter-spacing:2.650667pt;}
.ls94{letter-spacing:2.725333pt;}
.ls22{letter-spacing:2.752000pt;}
.lsa5{letter-spacing:2.762667pt;}
.ls8a{letter-spacing:2.800400pt;}
.lsa1{letter-spacing:2.837333pt;}
.ls83{letter-spacing:2.837739pt;}
.ls6b{letter-spacing:2.912416pt;}
.ls26{letter-spacing:3.008000pt;}
.ls2e{letter-spacing:3.029333pt;}
.ls87{letter-spacing:3.157333pt;}
.lsd{letter-spacing:3.168000pt;}
.ls3e{letter-spacing:3.173787pt;}
.ls52{letter-spacing:3.232000pt;}
.lsa3{letter-spacing:3.242667pt;}
.lsc4{letter-spacing:3.408000pt;}
.ls47{letter-spacing:3.472496pt;}
.ls73{letter-spacing:3.504000pt;}
.ls27{letter-spacing:3.509835pt;}
.ls20{letter-spacing:3.584000pt;}
.ls62{letter-spacing:3.584512pt;}
.lsc5{letter-spacing:3.626667pt;}
.ls3{letter-spacing:3.658667pt;}
.ls61{letter-spacing:3.659189pt;}
.ls17{letter-spacing:3.733333pt;}
.lsab{letter-spacing:3.808000pt;}
.ls3b{letter-spacing:3.888000pt;}
.ls97{letter-spacing:3.893333pt;}
.ls4b{letter-spacing:3.904000pt;}
.ls2b{letter-spacing:4.010667pt;}
.ls78{letter-spacing:4.080000pt;}
.ls31{letter-spacing:4.128000pt;}
.ls6c{letter-spacing:4.224000pt;}
.lsc1{letter-spacing:4.282667pt;}
.ls82{letter-spacing:4.458667pt;}
.ls9d{letter-spacing:4.672000pt;}
.ls49{letter-spacing:4.693333pt;}
.ls6d{letter-spacing:4.704000pt;}
.lsb8{letter-spacing:4.736000pt;}
.ls35{letter-spacing:4.752000pt;}
.ls4e{letter-spacing:4.799680pt;}
.lse{letter-spacing:4.800000pt;}
.lsac{letter-spacing:4.864000pt;}
.ls2a{letter-spacing:5.013835pt;}
.lsa8{letter-spacing:5.061333pt;}
.lsc{letter-spacing:5.333333pt;}
.ls71{letter-spacing:5.439637pt;}
.ls88{letter-spacing:5.450667pt;}
.ls93{letter-spacing:5.477333pt;}
.ls7{letter-spacing:5.856000pt;}
.lsb9{letter-spacing:6.080000pt;}
.ls29{letter-spacing:6.517333pt;}
.ls98{letter-spacing:6.709333pt;}
.lsb6{letter-spacing:6.816000pt;}
.ls28{letter-spacing:7.018667pt;}
.ls59{letter-spacing:7.040000pt;}
.lsaf{letter-spacing:7.296000pt;}
.ls91{letter-spacing:8.288395pt;}
.ls48{letter-spacing:13.588811pt;}
.ls64{letter-spacing:19.242667pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-113.873173pt;}
._31{margin-left:-100.528661pt;}
._1f{margin-left:-91.456427pt;}
._21{margin-left:-80.958293pt;}
._14{margin-left:-79.746667pt;}
._1d{margin-left:-75.708267pt;}
._16{margin-left:-71.129173pt;}
._38{margin-left:-67.483147pt;}
._e{margin-left:-64.115520pt;}
._19{margin-left:-60.109333pt;}
._1e{margin-left:-56.434773pt;}
._22{margin-left:-43.767787pt;}
._24{margin-left:-40.903893pt;}
._15{margin-left:-39.179093pt;}
._37{margin-left:-31.438016pt;}
._26{margin-left:-29.996587pt;}
._20{margin-left:-28.710080pt;}
._1c{margin-left:-16.558080pt;}
._2c{margin-left:-14.042347pt;}
._17{margin-left:-12.528320pt;}
._4{margin-left:-10.678080pt;}
._2f{margin-left:-9.256853pt;}
._18{margin-left:-7.487040pt;}
._5{margin-left:-6.402667pt;}
._28{margin-left:-5.435733pt;}
._6{margin-left:-4.390400pt;}
._9{margin-left:-3.162133pt;}
._7{margin-left:-1.416427pt;}
._a{width:1.659307pt;}
._8{width:2.581973pt;}
._b{width:3.522667pt;}
._1{width:4.714667pt;}
._f{width:5.958400pt;}
._3{width:6.933333pt;}
._12{width:8.310400pt;}
._0{width:9.706667pt;}
._2{width:11.370667pt;}
._13{width:12.936000pt;}
._2a{width:14.164267pt;}
._10{width:15.387307pt;}
._1a{width:17.059840pt;}
._29{width:18.533760pt;}
._11{width:19.537280pt;}
._1b{width:21.188907pt;}
._25{width:22.155840pt;}
._2b{width:23.317013pt;}
._27{width:24.784853pt;}
._32{width:25.724032pt;}
._c{width:26.656000pt;}
._2e{width:27.698667pt;}
._d{width:29.635200pt;}
._30{width:30.900181pt;}
._2d{width:35.180800pt;}
._36{width:37.116213pt;}
._34{width:39.397280pt;}
._35{width:40.708267pt;}
._33{width:42.632384pt;}
.fs2c{font-size:5.333333pt;}
.fs2a{font-size:27.200000pt;}
.fs19{font-size:30.933333pt;}
.fs1a{font-size:31.466667pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:32.533333pt;}
.fs2b{font-size:33.600000pt;}
.fs0{font-size:34.133333pt;}
.fs17{font-size:34.666667pt;}
.fs25{font-size:35.200000pt;}
.fs27{font-size:36.266667pt;}
.fs29{font-size:36.800000pt;}
.fse{font-size:37.333333pt;}
.fs13{font-size:37.866667pt;}
.fs20{font-size:38.933333pt;}
.fs28{font-size:39.466667pt;}
.fs12{font-size:40.000000pt;}
.fs1c{font-size:40.533333pt;}
.fs24{font-size:41.600000pt;}
.fs1d{font-size:42.133333pt;}
.fs1f{font-size:42.666667pt;}
.fs18{font-size:43.200000pt;}
.fs1b{font-size:44.266667pt;}
.fs16{font-size:44.800000pt;}
.fs15{font-size:45.333333pt;}
.fs11{font-size:45.866667pt;}
.fs14{font-size:46.933333pt;}
.fs23{font-size:47.466667pt;}
.fsc{font-size:48.000000pt;}
.fs10{font-size:48.533333pt;}
.fs1e{font-size:49.600000pt;}
.fsf{font-size:50.133333pt;}
.fs8{font-size:50.666667pt;}
.fsd{font-size:51.200000pt;}
.fs7{font-size:52.266667pt;}
.fsa{font-size:52.800000pt;}
.fs9{font-size:53.333333pt;}
.fs21{font-size:53.866667pt;}
.fsb{font-size:55.466667pt;}
.fs22{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:69.866667pt;}
.fs26{font-size:78.933333pt;}
.fs4{font-size:82.133333pt;}
.fs3{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:76.133333pt;}
.y11d{bottom:76.133707pt;}
.y39{bottom:77.468533pt;}
.y65{bottom:78.667520pt;}
.y87{bottom:79.066667pt;}
.yd6{bottom:79.733333pt;}
.yd5{bottom:79.733600pt;}
.y11b{bottom:87.733120pt;}
.y11c{bottom:87.733333pt;}
.y38{bottom:91.468160pt;}
.y64{bottom:92.800427pt;}
.y86{bottom:93.066667pt;}
.y85{bottom:93.067120pt;}
.yd4{bottom:93.733333pt;}
.yd3{bottom:93.734187pt;}
.y11a{bottom:99.200000pt;}
.y37{bottom:105.601067pt;}
.y63{bottom:106.933333pt;}
.y62{bottom:106.933867pt;}
.y84{bottom:107.466667pt;}
.y83{bottom:107.467120pt;}
.yd2{bottom:108.133733pt;}
.y12f{bottom:110.666187pt;}
.y130{bottom:110.666667pt;}
.y36{bottom:120.000533pt;}
.y61{bottom:121.333333pt;}
.y60{bottom:121.334507pt;}
.y81{bottom:121.866613pt;}
.y82{bottom:121.866667pt;}
.yd1{bottom:122.533280pt;}
.y12e{bottom:122.533333pt;}
.y119{bottom:133.467280pt;}
.y35{bottom:134.400000pt;}
.y34{bottom:134.401173pt;}
.y5f{bottom:135.733973pt;}
.y80{bottom:136.000453pt;}
.yd0{bottom:136.667120pt;}
.y12d{bottom:145.866667pt;}
.y118{bottom:147.866827pt;}
.y33{bottom:149.067200pt;}
.y7f{bottom:150.399493pt;}
.y5e{bottom:150.400000pt;}
.ycf{bottom:151.066667pt;}
.yce{bottom:151.067387pt;}
.y12c{bottom:157.466667pt;}
.y117{bottom:162.266373pt;}
.y32{bottom:163.466667pt;}
.y7e{bottom:164.533333pt;}
.y7d{bottom:164.533493pt;}
.y5d{bottom:164.800000pt;}
.y5c{bottom:164.801360pt;}
.ycd{bottom:165.466933pt;}
.y12b{bottom:168.666667pt;}
.y116{bottom:176.266107pt;}
.y31{bottom:177.599573pt;}
.y7c{bottom:179.200000pt;}
.y5b{bottom:179.200827pt;}
.ycc{bottom:179.866480pt;}
.y129{bottom:180.132960pt;}
.y12a{bottom:180.133333pt;}
.y115{bottom:190.399947pt;}
.y128{bottom:191.333333pt;}
.y127{bottom:191.333707pt;}
.y5a{bottom:193.600293pt;}
.y7b{bottom:193.600453pt;}
.ycb{bottom:194.532987pt;}
.y30{bottom:196.133333pt;}
.y126{bottom:202.933333pt;}
.y114{bottom:204.533787pt;}
.y7a{bottom:208.000000pt;}
.y79{bottom:208.000160pt;}
.yca{bottom:208.666827pt;}
.y2f{bottom:210.933333pt;}
.y2e{bottom:210.933707pt;}
.y59{bottom:215.067520pt;}
.y113{bottom:218.933333pt;}
.y125{bottom:221.066667pt;}
.y78{bottom:222.666667pt;}
.yc9{bottom:223.333333pt;}
.yc8{bottom:223.333787pt;}
.y2d{bottom:224.933333pt;}
.y112{bottom:233.333333pt;}
.y111{bottom:233.335200pt;}
.y76{bottom:237.066613pt;}
.y77{bottom:237.066667pt;}
.yc6{bottom:237.732827pt;}
.yc7{bottom:237.733333pt;}
.y2c{bottom:239.069973pt;}
.y110{bottom:247.734747pt;}
.y75{bottom:251.200453pt;}
.yc5{bottom:251.866667pt;}
.y2b{bottom:253.069600pt;}
.y58{bottom:253.734400pt;}
.y10f{bottom:262.401253pt;}
.y74{bottom:265.600000pt;}
.y73{bottom:265.600400pt;}
.yc4{bottom:265.866667pt;}
.yc3{bottom:265.867120pt;}
.y2a{bottom:267.469067pt;}
.y124{bottom:268.133227pt;}
.y57{bottom:268.133867pt;}
.y10e{bottom:276.800800pt;}
.y72{bottom:279.734240pt;}
.yc2{bottom:280.266667pt;}
.yc1{bottom:280.267120pt;}
.y123{bottom:281.333333pt;}
.y122{bottom:281.334000pt;}
.y29{bottom:282.268373pt;}
.y56{bottom:282.533333pt;}
.y10d{bottom:291.467307pt;}
.y71{bottom:294.133787pt;}
.y120{bottom:294.399707pt;}
.y121{bottom:294.400000pt;}
.yc0{bottom:294.666667pt;}
.ybf{bottom:294.667120pt;}
.y28{bottom:296.667840pt;}
.y55{bottom:296.935733pt;}
.y10c{bottom:306.266667pt;}
.y11f{bottom:307.200000pt;}
.y70{bottom:308.533333pt;}
.y6f{bottom:308.534400pt;}
.ybe{bottom:309.066667pt;}
.ybd{bottom:309.068667pt;}
.y27{bottom:311.067307pt;}
.y54{bottom:311.735040pt;}
.y10b{bottom:320.266667pt;}
.y10a{bottom:320.267573pt;}
.y6e{bottom:322.933947pt;}
.ybc{bottom:323.468213pt;}
.y26{bottom:325.733333pt;}
.y25{bottom:325.738027pt;}
.y53{bottom:326.134507pt;}
.y11e{bottom:333.466667pt;}
.y109{bottom:334.667120pt;}
.y6d{bottom:337.600453pt;}
.ybb{bottom:337.867760pt;}
.y24{bottom:340.137493pt;}
.y52{bottom:340.533973pt;}
.y107{bottom:349.066160pt;}
.y108{bottom:349.066667pt;}
.y6c{bottom:352.000000pt;}
.yba{bottom:352.667120pt;}
.y23{bottom:354.936800pt;}
.y51{bottom:355.200000pt;}
.y106{bottom:363.200000pt;}
.y105{bottom:363.201520pt;}
.yb9{bottom:367.066667pt;}
.yb8{bottom:367.067280pt;}
.y22{bottom:368.936427pt;}
.y50{bottom:369.600000pt;}
.y4f{bottom:369.602560pt;}
.y104{bottom:377.601067pt;}
.yb7{bottom:381.733787pt;}
.y21{bottom:383.335893pt;}
.y6b{bottom:383.733333pt;}
.y4e{bottom:384.002027pt;}
.y103{bottom:392.000613pt;}
.yb6{bottom:396.133333pt;}
.yb5{bottom:396.134240pt;}
.y6a{bottom:396.533333pt;}
.y20{bottom:397.735360pt;}
.y4d{bottom:398.134933pt;}
.y102{bottom:406.667120pt;}
.y69{bottom:409.333333pt;}
.yb4{bottom:410.533787pt;}
.y1f{bottom:412.134827pt;}
.y4c{bottom:412.534400pt;}
.y101{bottom:421.066667pt;}
.y100{bottom:421.067760pt;}
.y68{bottom:422.266667pt;}
.yb3{bottom:424.933333pt;}
.y1e{bottom:426.267733pt;}
.y4b{bottom:426.933867pt;}
.y67{bottom:435.200000pt;}
.yff{bottom:435.867120pt;}
.yb2{bottom:439.066667pt;}
.yb1{bottom:439.067120pt;}
.y1d{bottom:440.667200pt;}
.y4a{bottom:441.333333pt;}
.yfe{bottom:450.266667pt;}
.yfd{bottom:450.267120pt;}
.yb0{bottom:453.466667pt;}
.y1c{bottom:455.066667pt;}
.yfc{bottom:464.666667pt;}
.yaf{bottom:467.466667pt;}
.yae{bottom:467.467120pt;}
.y1b{bottom:469.733333pt;}
.y1a{bottom:469.735627pt;}
.y49{bottom:470.400000pt;}
.y48{bottom:470.402773pt;}
.yfb{bottom:479.333333pt;}
.yfa{bottom:479.334000pt;}
.yad{bottom:481.866667pt;}
.yac{bottom:481.867920pt;}
.y19{bottom:484.534933pt;}
.y47{bottom:484.802240pt;}
.yf9{bottom:493.467840pt;}
.yab{bottom:496.934240pt;}
.y18{bottom:498.934400pt;}
.y46{bottom:499.201707pt;}
.yf8{bottom:507.867387pt;}
.yaa{bottom:511.333787pt;}
.y17{bottom:513.600427pt;}
.y45{bottom:513.867733pt;}
.yf7{bottom:522.266933pt;}
.ya9{bottom:525.733333pt;}
.ya8{bottom:525.733973pt;}
.y16{bottom:527.733333pt;}
.y15{bottom:527.733867pt;}
.y44{bottom:528.267200pt;}
.yf6{bottom:536.266667pt;}
.ya7{bottom:540.533333pt;}
.ya6{bottom:540.533787pt;}
.y14{bottom:542.133333pt;}
.y13{bottom:542.135840pt;}
.y43{bottom:542.666667pt;}
.yf5{bottom:550.667760pt;}
.ya5{bottom:554.933333pt;}
.ya4{bottom:554.933787pt;}
.y12{bottom:556.535307pt;}
.y42{bottom:556.801600pt;}
.yf4{bottom:565.467120pt;}
.ya3{bottom:569.333333pt;}
.y11{bottom:570.534933pt;}
.y41{bottom:571.201067pt;}
.yf3{bottom:579.866667pt;}
.yf2{bottom:579.866827pt;}
.ya2{bottom:583.334987pt;}
.y10{bottom:584.934400pt;}
.y40{bottom:585.333973pt;}
.yf1{bottom:594.533333pt;}
.yf0{bottom:594.535147pt;}
.ya1{bottom:597.734533pt;}
.yf{bottom:599.333867pt;}
.y3f{bottom:600.000000pt;}
.y3e{bottom:600.001067pt;}
.yef{bottom:609.334507pt;}
.ya0{bottom:611.867120pt;}
.ye{bottom:613.733333pt;}
.y3d{bottom:614.400533pt;}
.yee{bottom:623.734053pt;}
.y9f{bottom:626.266667pt;}
.y9e{bottom:626.267280pt;}
.yd{bottom:628.533333pt;}
.yc{bottom:628.533493pt;}
.y3c{bottom:628.800000pt;}
.y3b{bottom:628.803467pt;}
.yed{bottom:638.133600pt;}
.y9d{bottom:640.666827pt;}
.yb{bottom:643.199520pt;}
.y3a{bottom:643.469493pt;}
.yec{bottom:652.133333pt;}
.yeb{bottom:652.134693pt;}
.y9c{bottom:655.333333pt;}
.y9b{bottom:655.334880pt;}
.yea{bottom:666.534240pt;}
.y9a{bottom:669.734427pt;}
.ye9{bottom:680.933787pt;}
.y141{bottom:683.200000pt;}
.y99{bottom:684.533787pt;}
.y140{bottom:694.400000pt;}
.ye8{bottom:695.333333pt;}
.ye7{bottom:695.335200pt;}
.y98{bottom:698.933333pt;}
.y97{bottom:698.933787pt;}
.ya{bottom:700.800000pt;}
.y9{bottom:700.800693pt;}
.y13f{bottom:706.266667pt;}
.ye6{bottom:709.734747pt;}
.y96{bottom:713.333333pt;}
.y95{bottom:713.333493pt;}
.y13e{bottom:717.466667pt;}
.ye5{bottom:724.134293pt;}
.y93{bottom:727.733787pt;}
.y94{bottom:728.000000pt;}
.y8{bottom:728.666667pt;}
.y7{bottom:728.667307pt;}
.y13d{bottom:728.933333pt;}
.ye4{bottom:738.933653pt;}
.y13c{bottom:740.533333pt;}
.y92{bottom:742.133333pt;}
.y91{bottom:742.133600pt;}
.y5{bottom:743.332987pt;}
.y6{bottom:743.333333pt;}
.y13b{bottom:752.000000pt;}
.ye3{bottom:753.600160pt;}
.y90{bottom:756.133333pt;}
.y8f{bottom:756.133787pt;}
.y13a{bottom:763.466667pt;}
.ye2{bottom:768.266667pt;}
.ye1{bottom:768.267573pt;}
.y8e{bottom:770.533333pt;}
.y8d{bottom:770.533787pt;}
.y4{bottom:771.866667pt;}
.y139{bottom:775.333333pt;}
.ye0{bottom:782.667120pt;}
.y8c{bottom:784.933333pt;}
.y8b{bottom:784.933787pt;}
.y138{bottom:786.533333pt;}
.ydf{bottom:797.066667pt;}
.yde{bottom:797.067120pt;}
.y136{bottom:798.666480pt;}
.y137{bottom:798.666667pt;}
.y8a{bottom:799.333333pt;}
.y3{bottom:800.933333pt;}
.y135{bottom:810.266667pt;}
.ydd{bottom:811.466667pt;}
.y89{bottom:814.133333pt;}
.y88{bottom:814.134133pt;}
.y134{bottom:821.466667pt;}
.ydc{bottom:825.600000pt;}
.ydb{bottom:825.600453pt;}
.y133{bottom:833.333333pt;}
.y2{bottom:835.866667pt;}
.yd9{bottom:839.999920pt;}
.yda{bottom:840.000000pt;}
.y132{bottom:844.533333pt;}
.yd7{bottom:876.133333pt;}
.yd8{bottom:876.533333pt;}
.y1{bottom:877.066667pt;}
.y66{bottom:879.066667pt;}
.h52{height:26.695312pt;}
.h5b{height:28.368750pt;}
.h25{height:30.867448pt;}
.h30{height:31.929687pt;}
.h24{height:32.262500pt;}
.h4{height:33.375000pt;}
.h3{height:33.931250pt;}
.h2{height:34.400000pt;}
.h40{height:34.546875pt;}
.h56{height:35.043750pt;}
.h42{height:35.593750pt;}
.h53{height:35.600000pt;}
.h61{height:36.099219pt;}
.h22{height:36.156250pt;}
.h44{height:36.550000pt;}
.h60{height:36.622396pt;}
.h12{height:36.640625pt;}
.h62{height:36.712500pt;}
.h5e{height:37.145573pt;}
.h57{height:37.164062pt;}
.h58{height:37.825000pt;}
.h63{height:38.162500pt;}
.h3e{height:38.191927pt;}
.h54{height:38.210938pt;}
.h4a{height:38.381250pt;}
.h4e{height:38.715104pt;}
.h4b{height:38.734375pt;}
.h1c{height:38.937500pt;}
.h1b{height:39.238281pt;}
.h47{height:39.257812pt;}
.h1d{height:39.493750pt;}
.h5c{height:39.761458pt;}
.h55{height:39.775000pt;}
.h45{height:39.781250pt;}
.h4d{height:40.312500pt;}
.h2f{height:40.606250pt;}
.h3f{height:40.807812pt;}
.h48{height:40.828125pt;}
.h4c{height:40.850000pt;}
.h49{height:41.162500pt;}
.h5f{height:41.330990pt;}
.h2a{height:41.351563pt;}
.h4f{height:41.875000pt;}
.h5d{height:41.925000pt;}
.h29{height:42.275000pt;}
.h23{height:42.398437pt;}
.h27{height:43.445313pt;}
.h20{height:43.968750pt;}
.h5a{height:44.158594pt;}
.h26{height:44.492188pt;}
.h2e{height:44.500000pt;}
.h21{height:45.015625pt;}
.h1f{height:45.687500pt;}
.h3a{height:46.062500pt;}
.h28{height:46.225000pt;}
.h59{height:46.818750pt;}
.h31{height:47.109375pt;}
.h2b{height:47.192708pt;}
.h1e{height:47.300000pt;}
.h33{height:47.632812pt;}
.h19{height:47.837500pt;}
.h3b{height:48.655469pt;}
.h2c{height:48.679688pt;}
.h36{height:48.950000pt;}
.h14{height:49.203125pt;}
.h38{height:49.506250pt;}
.hb{height:49.701823pt;}
.h17{height:49.726562pt;}
.h2d{height:49.987500pt;}
.h10{height:50.062500pt;}
.h32{height:50.225000pt;}
.h11{height:50.250000pt;}
.h39{height:50.270965pt;}
.h43{height:50.525000pt;}
.h16{height:50.618750pt;}
.h3c{height:51.062500pt;}
.ha{height:51.271354pt;}
.h9{height:51.296875pt;}
.h35{height:51.731250pt;}
.hd{height:51.794531pt;}
.h15{height:51.820312pt;}
.hc{height:52.317708pt;}
.h13{height:52.343750pt;}
.h18{height:52.675000pt;}
.h34{height:52.867187pt;}
.h46{height:53.212500pt;}
.he{height:53.750000pt;}
.hf{height:54.437500pt;}
.h3d{height:55.366445pt;}
.h37{height:66.750000pt;}
.h7{height:68.046875pt;}
.h8{height:68.570312pt;}
.h41{height:78.740625pt;}
.h6{height:82.775000pt;}
.h5{height:83.850000pt;}
.h0{height:959.679200pt;}
.h1{height:960.000000pt;}
.h1a{height:960.319333pt;}
.h51{height:961.333333pt;}
.h50{height:961.599600pt;}
.w0{width:672.000000pt;}
.w1{width:672.638667pt;}
.w2{width:672.666667pt;}
.w3{width:674.559067pt;}
.w4{width:674.666667pt;}
.x0{left:0.000000pt;}
.xe{left:63.065667pt;}
.x1{left:64.000000pt;}
.x19{left:65.333400pt;}
.x58{left:66.266667pt;}
.x20{left:76.801133pt;}
.x23{left:78.666667pt;}
.xa2{left:80.666667pt;}
.xad{left:84.133333pt;}
.x3c{left:87.066667pt;}
.xa3{left:91.466667pt;}
.x52{left:92.533333pt;}
.x44{left:93.466667pt;}
.x3d{left:99.866667pt;}
.x2{left:101.066667pt;}
.x5f{left:102.400000pt;}
.xb2{left:103.733333pt;}
.x53{left:105.600000pt;}
.x9f{left:106.533333pt;}
.x49{left:108.533333pt;}
.x5e{left:109.466667pt;}
.x5{left:113.600000pt;}
.x60{left:115.866667pt;}
.x3{left:118.666667pt;}
.x45{left:120.000000pt;}
.x5b{left:123.466667pt;}
.x5c{left:125.466667pt;}
.xb7{left:126.666667pt;}
.x8{left:127.733333pt;}
.x4d{left:128.933333pt;}
.xb5{left:129.866667pt;}
.x1d{left:130.933333pt;}
.x1a{left:132.800000pt;}
.xa5{left:133.733333pt;}
.x3e{left:134.666667pt;}
.x46{left:137.333333pt;}
.x9{left:140.800000pt;}
.x4a{left:145.600000pt;}
.x1b{left:147.466667pt;}
.x3f{left:149.066667pt;}
.x5d{left:150.400000pt;}
.x4{left:151.733333pt;}
.x24{left:154.533333pt;}
.x21{left:156.133333pt;}
.x63{left:157.066667pt;}
.xb8{left:159.333333pt;}
.x16{left:160.933333pt;}
.x1c{left:162.533333pt;}
.xf{left:163.466667pt;}
.x54{left:165.066667pt;}
.xb1{left:168.266667pt;}
.x47{left:171.466667pt;}
.x13{left:175.066667pt;}
.x1e{left:176.666667pt;}
.x17{left:179.200000pt;}
.x40{left:182.133333pt;}
.x1f{left:187.200000pt;}
.xaf{left:189.733333pt;}
.x4e{left:193.866667pt;}
.x10{left:195.866667pt;}
.x6{left:196.800000pt;}
.xb0{left:202.933333pt;}
.xb9{left:204.533333pt;}
.x61{left:206.666667pt;}
.x7{left:216.666667pt;}
.x55{left:217.866667pt;}
.x11{left:221.466667pt;}
.x4f{left:225.866667pt;}
.xae{left:228.133333pt;}
.x56{left:229.066667pt;}
.x62{left:230.133333pt;}
.xa8{left:234.266667pt;}
.x4b{left:244.533333pt;}
.x22{left:246.666667pt;}
.xa{left:248.000000pt;}
.x12{left:249.866667pt;}
.xb3{left:252.133333pt;}
.xa9{left:258.533333pt;}
.xaa{left:259.466667pt;}
.xb{left:260.533333pt;}
.xb6{left:263.733333pt;}
.xa6{left:265.333333pt;}
.xb4{left:269.733333pt;}
.xab{left:275.466667pt;}
.x4c{left:276.533333pt;}
.x48{left:277.466667pt;}
.x50{left:278.400000pt;}
.x41{left:280.666667pt;}
.x57{left:283.200000pt;}
.xa7{left:285.733333pt;}
.xba{left:290.533333pt;}
.xac{left:291.466667pt;}
.x42{left:297.333333pt;}
.x59{left:298.533333pt;}
.x5a{left:304.000000pt;}
.x18{left:307.466667pt;}
.x51{left:311.066667pt;}
.xa4{left:316.533333pt;}
.x14{left:318.400000pt;}
.x43{left:324.133333pt;}
.x15{left:333.466667pt;}
.x31{left:343.066333pt;}
.x25{left:344.668867pt;}
.x7e{left:346.266667pt;}
.xc8{left:355.865933pt;}
.x2c{left:356.799800pt;}
.x89{left:357.733013pt;}
.x92{left:359.333333pt;}
.x28{left:360.266667pt;}
.x7f{left:361.866667pt;}
.x30{left:365.733333pt;}
.xbb{left:366.666667pt;}
.x69{left:368.933333pt;}
.xe5{left:370.266667pt;}
.xed{left:371.866667pt;}
.xc2{left:372.800000pt;}
.xf5{left:375.733333pt;}
.x2d{left:377.333333pt;}
.xbc{left:379.466667pt;}
.xc6{left:380.533333pt;}
.x35{left:381.466667pt;}
.xc{left:382.666667pt;}
.xc7{left:383.733333pt;}
.xd6{left:385.333333pt;}
.x6b{left:387.200000pt;}
.x87{left:390.400000pt;}
.xf6{left:391.333333pt;}
.x29{left:392.266667pt;}
.xd{left:394.533333pt;}
.x36{left:396.533333pt;}
.x78{left:398.133333pt;}
.xf3{left:399.066667pt;}
.x85{left:400.666667pt;}
.xd7{left:401.600000pt;}
.x6a{left:403.200000pt;}
.x8d{left:404.800000pt;}
.x9d{left:406.666667pt;}
.x2a{left:408.000000pt;}
.xcf{left:409.600000pt;}
.x80{left:412.533333pt;}
.x8e{left:414.666667pt;}
.xdb{left:416.933333pt;}
.xe6{left:417.866667pt;}
.x94{left:418.933333pt;}
.xd0{left:420.800000pt;}
.x79{left:422.666667pt;}
.x71{left:423.733333pt;}
.xe3{left:425.600000pt;}
.xbd{left:427.200000pt;}
.xc9{left:428.133333pt;}
.xd1{left:429.733333pt;}
.x86{left:432.933333pt;}
.x9b{left:434.266667pt;}
.xde{left:436.533333pt;}
.x7a{left:437.466667pt;}
.xd8{left:439.066667pt;}
.x81{left:440.266667pt;}
.x72{left:442.933333pt;}
.xeb{left:443.866667pt;}
.x90{left:444.800000pt;}
.x2b{left:446.400000pt;}
.x97{left:449.600000pt;}
.x67{left:450.533333pt;}
.xee{left:451.466667pt;}
.x65{left:453.066667pt;}
.xf9{left:456.000000pt;}
.xca{left:457.333333pt;}
.x82{left:458.266667pt;}
.xf0{left:459.200000pt;}
.x73{left:460.800000pt;}
.xdf{left:461.733333pt;}
.x33{left:462.666667pt;}
.xef{left:465.333333pt;}
.x68{left:466.933333pt;}
.x91{left:468.533333pt;}
.x66{left:469.466667pt;}
.x6c{left:471.733333pt;}
.x7b{left:475.200000pt;}
.x9a{left:477.733333pt;}
.x34{left:480.000000pt;}
.xf7{left:481.600000pt;}
.xe7{left:482.933333pt;}
.x6d{left:486.400000pt;}
.xe0{left:489.333333pt;}
.xe4{left:490.933333pt;}
.xd2{left:491.866667pt;}
.xdd{left:493.066667pt;}
.xe8{left:495.333333pt;}
.x6e{left:496.266667pt;}
.x7c{left:499.200000pt;}
.x8f{left:500.133333pt;}
.xc3{left:502.666667pt;}
.xf8{left:504.933333pt;}
.xd3{left:506.266667pt;}
.xe1{left:507.200000pt;}
.xd9{left:509.066667pt;}
.xe9{left:510.666667pt;}
.x93{left:511.733333pt;}
.xcc{left:513.333333pt;}
.x75{left:514.266667pt;}
.xf1{left:515.200000pt;}
.xc4{left:517.466667pt;}
.x74{left:518.400000pt;}
.xda{left:521.866667pt;}
.x39{left:523.466667pt;}
.x95{left:524.800000pt;}
.xcd{left:525.733333pt;}
.x37{left:526.666667pt;}
.x76{left:527.733333pt;}
.xdc{left:529.600000pt;}
.x9e{left:531.200000pt;}
.x26{left:532.800000pt;}
.xe2{left:535.333333pt;}
.x32{left:536.666667pt;}
.x38{left:538.266667pt;}
.xfa{left:539.466667pt;}
.x96{left:540.533333pt;}
.xd4{left:541.733333pt;}
.x77{left:543.733333pt;}
.xa0{left:545.600000pt;}
.xc5{left:546.933333pt;}
.x27{left:549.466667pt;}
.xc1{left:551.333333pt;}
.xcb{left:554.266667pt;}
.x98{left:555.200000pt;}
.xd5{left:556.533333pt;}
.xf4{left:559.333333pt;}
.xfb{left:561.600000pt;}
.xbe{left:564.533333pt;}
.x88{left:565.466667pt;}
.x3a{left:567.066667pt;}
.x99{left:568.666667pt;}
.x70{left:569.866667pt;}
.x8a{left:571.466667pt;}
.x83{left:572.800000pt;}
.xf2{left:575.733333pt;}
.xbf{left:577.333333pt;}
.x6f{left:579.466667pt;}
.xec{left:580.533333pt;}
.x7d{left:581.466667pt;}
.x3b{left:584.666667pt;}
.x8b{left:586.266667pt;}
.xce{left:590.133333pt;}
.xa1{left:591.066667pt;}
.x2e{left:592.000000pt;}
.x8c{left:592.933333pt;}
.x64{left:594.933333pt;}
.x2f{left:596.800000pt;}
.x9c{left:598.666667pt;}
.xc0{left:599.733333pt;}
.x84{left:600.933333pt;}
.xea{left:606.400000pt;}
}




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