
    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_4ede0cfd21f08b4eca2ddaff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956636;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_23ead766b0a29b4da2d3de6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.038000;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_99e3c3aaee50d416f771a06d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964000;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_547b76f595322aa3ed6be92f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.058000;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_9f760149585abc9cde86dfac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_98d5ac057662fee221347a93.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965385;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_df29a1d14195e1007ffa2356.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959633;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_046c16a04311a0ea2b7227cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.679000;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_25b27286682e62e8432a8bde.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_263c3f24de27b86328d55126.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.123000;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_adf29e029e2977622f49e12a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.038000;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_b884b2aff84200203891ed71.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_79cf328e7f24f423db60cccb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.149700;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_993d8da3f28bcf31b47f9361.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.167200;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_aa45d8b4b1c4fab41725d48d.woff2')format("woff");}.fff{font-family:fff;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_daa28c1940ef5a913aca8789.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2e{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m12{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.243073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243073,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.243241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243241,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.243308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243308,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.243384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243384,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243506,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244343,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.244539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244539,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.244734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244734,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.244753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244753,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.244827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244827,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244894,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.244986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244986,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245036,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245144,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245152,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.245823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245823,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245852,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245859,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246036,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246139,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246170,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246732,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246878,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.247023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247023,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247180,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247952,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249331,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250693,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250864,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251769,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251902,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252741,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253173,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253188,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.253403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253403,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253416,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253922,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254307,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254357,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254359,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254394,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254418,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254448,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254602,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254905,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255928,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256464,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.256836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256836,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256928,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257214,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.ls3c{letter-spacing:-3.348000px;}
.ls4b{letter-spacing:-3.132000px;}
.ls4c{letter-spacing:-2.592000px;}
.lsc{letter-spacing:-1.944000px;}
.ls39{letter-spacing:-1.890000px;}
.ls64{letter-spacing:-1.836000px;}
.ls38{letter-spacing:-1.728000px;}
.ls1c{letter-spacing:-1.674000px;}
.ls48{letter-spacing:-1.404000px;}
.lsb{letter-spacing:-1.296000px;}
.ls3a{letter-spacing:-1.242000px;}
.ls49{letter-spacing:-0.810000px;}
.ls23{letter-spacing:-0.792000px;}
.ls47{letter-spacing:-0.756000px;}
.ls24{letter-spacing:-0.726000px;}
.ls4a{letter-spacing:-0.702000px;}
.ls20{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.594000px;}
.ls46{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.330000px;}
.ls25{letter-spacing:-0.264000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls6f{letter-spacing:-0.180000px;}
.ls3b{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.132000px;}
.ls6d{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.096000px;}
.ls11{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.054000px;}
.ls67{letter-spacing:-0.038478px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000360px;}
.ls60{letter-spacing:0.000600px;}
.ls44{letter-spacing:0.016800px;}
.ls14{letter-spacing:0.026400px;}
.ls32{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.033000px;}
.ls29{letter-spacing:0.054000px;}
.ls6b{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls45{letter-spacing:0.076956px;}
.ls26{letter-spacing:0.096000px;}
.ls43{letter-spacing:0.099000px;}
.ls65{letter-spacing:0.104263px;}
.ls66{letter-spacing:0.104526px;}
.ls5e{letter-spacing:0.105307px;}
.ls5a{letter-spacing:0.105603px;}
.ls5f{letter-spacing:0.105958px;}
.ls2{letter-spacing:0.108000px;}
.ls69{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.132000px;}
.ls0{letter-spacing:0.132711px;}
.ls4e{letter-spacing:0.135000px;}
.ls55{letter-spacing:0.162000px;}
.lse{letter-spacing:0.165000px;}
.ls6a{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.182240px;}
.ls58{letter-spacing:0.182677px;}
.ls12{letter-spacing:0.198000px;}
.ls2c{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.286800px;}
.ls15{letter-spacing:0.287400px;}
.ls2a{letter-spacing:0.639600px;}
.ls2b{letter-spacing:0.640200px;}
.ls30{letter-spacing:0.699000px;}
.ls31{letter-spacing:0.699600px;}
.ls63{letter-spacing:0.734400px;}
.ls62{letter-spacing:0.803400px;}
.ls61{letter-spacing:0.804000px;}
.ls18{letter-spacing:1.060800px;}
.ls17{letter-spacing:1.061400px;}
.ls3{letter-spacing:1.572600px;}
.ls4{letter-spacing:1.573200px;}
.ls54{letter-spacing:1.839000px;}
.ls52{letter-spacing:2.039400px;}
.ls53{letter-spacing:2.040000px;}
.ls41{letter-spacing:2.173117px;}
.ls40{letter-spacing:2.173715px;}
.ls51{letter-spacing:2.175005px;}
.ls35{letter-spacing:2.176957px;}
.ls36{letter-spacing:2.177555px;}
.ls5c{letter-spacing:2.227482px;}
.ls5d{letter-spacing:2.228073px;}
.ls56{letter-spacing:2.277127px;}
.ls1a{letter-spacing:2.371943px;}
.ls19{letter-spacing:2.372542px;}
.ls5{letter-spacing:2.373301px;}
.ls6{letter-spacing:2.373900px;}
.ls7{letter-spacing:2.375796px;}
.ls8{letter-spacing:2.376395px;}
.ls3f{letter-spacing:2.379802px;}
.ls42{letter-spacing:2.380401px;}
.ls4f{letter-spacing:2.380874px;}
.ls50{letter-spacing:2.381472px;}
.ls33{letter-spacing:2.383897px;}
.ls34{letter-spacing:2.384495px;}
.ls2f{letter-spacing:2.408838px;}
.ls2e{letter-spacing:2.409433px;}
.ls5b{letter-spacing:2.439234px;}
.ls1{letter-spacing:2.447063px;}
.ls4d{letter-spacing:2.460279px;}
.ls59{letter-spacing:2.493079px;}
.ls2d{letter-spacing:2.513827px;}
.ls28{letter-spacing:2.800200px;}
.ls68{letter-spacing:2.908342px;}
.ls6e{letter-spacing:101.334535px;}
.ls6c{letter-spacing:104.055600px;}
.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;}
}
.ws10{word-spacing:-14.454000px;}
.ws68{word-spacing:-13.332000px;}
.ws45{word-spacing:-13.200000px;}
.ws46{word-spacing:-13.134000px;}
.ws67{word-spacing:-13.068000px;}
.ws25{word-spacing:-12.672000px;}
.ws35{word-spacing:-12.042000px;}
.ws69{word-spacing:-12.000000px;}
.ws58{word-spacing:-11.988000px;}
.ws5b{word-spacing:-11.934000px;}
.ws36{word-spacing:-11.880000px;}
.ws37{word-spacing:-11.853000px;}
.ws1{word-spacing:-11.826000px;}
.ws32{word-spacing:-11.772000px;}
.ws14{word-spacing:-11.718000px;}
.ws3a{word-spacing:-11.664000px;}
.ws13{word-spacing:-11.610000px;}
.ws50{word-spacing:-11.520000px;}
.ws48{word-spacing:-11.286000px;}
.ws3d{word-spacing:-11.178000px;}
.ws4c{word-spacing:-11.124000px;}
.ws4e{word-spacing:-11.070000px;}
.ws4b{word-spacing:-11.016000px;}
.ws5a{word-spacing:-10.962000px;}
.ws5c{word-spacing:-10.908000px;}
.ws38{word-spacing:-10.854000px;}
.ws3b{word-spacing:-10.800000px;}
.ws5f{word-spacing:-10.746000px;}
.ws15{word-spacing:-10.692000px;}
.ws5d{word-spacing:-10.584000px;}
.ws2{word-spacing:-10.530000px;}
.ws28{word-spacing:-10.512000px;}
.ws12{word-spacing:-10.152000px;}
.ws33{word-spacing:-10.098000px;}
.ws49{word-spacing:-10.044000px;}
.ws59{word-spacing:-9.990000px;}
.ws34{word-spacing:-9.936000px;}
.ws3{word-spacing:-9.882000px;}
.ws0{word-spacing:-9.600000px;}
.ws39{word-spacing:-9.558000px;}
.ws11{word-spacing:-9.504000px;}
.ws4a{word-spacing:-9.396000px;}
.ws4f{word-spacing:-9.234000px;}
.ws5e{word-spacing:-8.964000px;}
.ws4d{word-spacing:-8.694000px;}
.wsf{word-spacing:-8.426682px;}
.ws66{word-spacing:-8.388204px;}
.ws3c{word-spacing:-7.452000px;}
.ws54{word-spacing:-3.456000px;}
.ws5{word-spacing:-3.366000px;}
.ws56{word-spacing:-3.132000px;}
.ws61{word-spacing:-2.538000px;}
.ws1e{word-spacing:-2.484000px;}
.ws6f{word-spacing:-2.460000px;}
.ws2e{word-spacing:-2.448000px;}
.ws42{word-spacing:-2.430000px;}
.ws70{word-spacing:-2.400000px;}
.ws7{word-spacing:-2.376000px;}
.ws2d{word-spacing:-2.352000px;}
.ws30{word-spacing:-2.304000px;}
.ws44{word-spacing:-2.214000px;}
.ws1b{word-spacing:-2.106000px;}
.ws64{word-spacing:-1.782000px;}
.ws1a{word-spacing:-1.404000px;}
.ws31{word-spacing:-1.200000px;}
.ws65{word-spacing:-1.026000px;}
.ws3e{word-spacing:-0.726000px;}
.ws2c{word-spacing:-0.528000px;}
.ws62{word-spacing:-0.324000px;}
.ws23{word-spacing:-0.264000px;}
.ws41{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.198000px;}
.ws6c{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.162000px;}
.wsb{word-spacing:-0.132000px;}
.ws6b{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.076956px;}
.wsd{word-spacing:-0.066000px;}
.ws6d{word-spacing:-0.060000px;}
.ws3f{word-spacing:-0.054000px;}
.ws1f{word-spacing:-0.039000px;}
.ws4{word-spacing:0.000000px;}
.ws2f{word-spacing:0.048000px;}
.ws40{word-spacing:0.054000px;}
.wsa{word-spacing:0.066000px;}
.ws1d{word-spacing:0.108000px;}
.ws6e{word-spacing:0.120000px;}
.ws9{word-spacing:0.132000px;}
.ws43{word-spacing:0.162000px;}
.ws73{word-spacing:0.180000px;}
.ws16{word-spacing:0.198000px;}
.ws1c{word-spacing:0.216000px;}
.ws27{word-spacing:0.264000px;}
.ws17{word-spacing:0.270000px;}
.wse{word-spacing:0.330000px;}
.ws21{word-spacing:0.528000px;}
.ws52{word-spacing:0.540000px;}
.ws22{word-spacing:0.594000px;}
.ws20{word-spacing:0.660000px;}
.ws55{word-spacing:0.702000px;}
.ws26{word-spacing:0.726000px;}
.ws53{word-spacing:0.756000px;}
.ws24{word-spacing:0.792000px;}
.ws18{word-spacing:1.080000px;}
.ws72{word-spacing:1.320000px;}
.ws8{word-spacing:1.566000px;}
.ws2b{word-spacing:1.584000px;}
.ws2a{word-spacing:1.776000px;}
.ws63{word-spacing:1.836000px;}
.ws29{word-spacing:2.304000px;}
.ws19{word-spacing:2.376000px;}
.ws71{word-spacing:2.400000px;}
.ws6a{word-spacing:2.580000px;}
.ws47{word-spacing:2.838000px;}
.ws57{word-spacing:3.132000px;}
._18{margin-left:-14.454000px;}
._3{margin-left:-6.624000px;}
._2{margin-left:-4.348800px;}
._1{margin-left:-3.120000px;}
._0{margin-left:-1.248000px;}
._5{width:1.380600px;}
._4{width:2.446200px;}
._6{width:3.780000px;}
._14{width:127.605600px;}
._13{width:139.706400px;}
._c{width:148.942980px;}
._b{width:151.264238px;}
._d{width:159.221273px;}
._f{width:160.656255px;}
._e{width:180.396317px;}
._10{width:201.002813px;}
._11{width:227.988847px;}
._9{width:257.402400px;}
._12{width:273.627796px;}
._a{width:297.204445px;}
._15{width:307.383397px;}
._8{width:312.077400px;}
._7{width:315.058200px;}
._19{width:388.515600px;}
._17{width:592.087014px;}
._16{width:748.440308px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs7{font-size:39.000000px;}
.fs2{font-size:45.474000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.yf{bottom:106.299150px;}
.ya5{bottom:106.299300px;}
.y8b{bottom:106.307700px;}
.y8a{bottom:121.307700px;}
.y140{bottom:125.627100px;}
.ye{bottom:125.799150px;}
.ya4{bottom:125.799300px;}
.y11a{bottom:125.799450px;}
.y6e{bottom:128.907750px;}
.y80{bottom:129.075450px;}
.yc3{bottom:129.251550px;}
.y2f{bottom:129.358500px;}
.y89{bottom:136.307700px;}
.y13f{bottom:144.955050px;}
.yd{bottom:145.299150px;}
.ya3{bottom:145.299300px;}
.yd4{bottom:145.299450px;}
.y88{bottom:151.307700px;}
.y6d{bottom:151.516200px;}
.y7f{bottom:151.851750px;}
.yc2{bottom:152.203800px;}
.y2e{bottom:152.417850px;}
.y13e{bottom:164.282850px;}
.yc{bottom:164.799150px;}
.ya2{bottom:164.799300px;}
.y87{bottom:166.307700px;}
.y6c{bottom:173.824650px;}
.y7e{bottom:174.628050px;}
.yc1{bottom:175.156050px;}
.y2d{bottom:175.477200px;}
.yb4{bottom:182.497500px;}
.y13d{bottom:183.610800px;}
.yb{bottom:184.299150px;}
.y119{bottom:184.299300px;}
.ya1{bottom:184.299450px;}
.yd3{bottom:185.087250px;}
.y6b{bottom:196.133100px;}
.y7d{bottom:197.404350px;}
.yc0{bottom:198.108450px;}
.y2c{bottom:198.536550px;}
.yf0{bottom:199.083300px;}
.y13c{bottom:202.938600px;}
.ya{bottom:203.799150px;}
.y118{bottom:203.799300px;}
.ya0{bottom:203.799450px;}
.yb3{bottom:204.997500px;}
.y10f{bottom:206.146200px;}
.yd2{bottom:207.587250px;}
.y6a{bottom:218.441700px;}
.y7c{bottom:220.180650px;}
.ybf{bottom:221.060700px;}
.yef{bottom:221.583300px;}
.y2b{bottom:221.595900px;}
.y13b{bottom:222.266550px;}
.y4d{bottom:223.299150px;}
.y117{bottom:223.299300px;}
.y9f{bottom:223.299450px;}
.yb2{bottom:227.497500px;}
.y10e{bottom:228.646200px;}
.yd1{bottom:230.087250px;}
.y69{bottom:240.750150px;}
.y13a{bottom:241.594500px;}
.y4c{bottom:242.799150px;}
.y9e{bottom:242.799450px;}
.y7b{bottom:242.956950px;}
.ybe{bottom:244.012950px;}
.yee{bottom:244.083300px;}
.y2a{bottom:244.655250px;}
.yb1{bottom:249.997500px;}
.y10d{bottom:251.146200px;}
.yd0{bottom:252.587250px;}
.y104{bottom:258.079350px;}
.y139{bottom:260.922300px;}
.y4b{bottom:262.299150px;}
.y9d{bottom:262.299450px;}
.y68{bottom:263.058600px;}
.y7a{bottom:265.733250px;}
.yed{bottom:266.583300px;}
.ybd{bottom:266.965200px;}
.y29{bottom:267.714600px;}
.yb0{bottom:272.497500px;}
.y10c{bottom:273.646200px;}
.ycf{bottom:275.087250px;}
.y138{bottom:280.250250px;}
.y103{bottom:280.579350px;}
.y4a{bottom:281.799150px;}
.y9c{bottom:281.799450px;}
.y67{bottom:285.367200px;}
.y79{bottom:288.509550px;}
.yec{bottom:289.083300px;}
.ybc{bottom:289.917600px;}
.yaf{bottom:294.997500px;}
.y10a{bottom:296.146200px;}
.yce{bottom:297.587250px;}
.y137{bottom:299.578200px;}
.y49{bottom:301.299150px;}
.y9b{bottom:301.299450px;}
.y10b{bottom:301.640700px;}
.y102{bottom:303.079350px;}
.y66{bottom:307.675650px;}
.y28{bottom:307.781850px;}
.y78{bottom:311.285850px;}
.yeb{bottom:311.583300px;}
.ybb{bottom:312.869850px;}
.yae{bottom:317.497500px;}
.y109{bottom:318.646200px;}
.y136{bottom:318.906150px;}
.ycd{bottom:320.087250px;}
.y48{bottom:320.799150px;}
.y9a{bottom:320.799450px;}
.y101{bottom:325.579350px;}
.y65{bottom:329.984100px;}
.y27{bottom:330.841200px;}
.y77{bottom:334.062150px;}
.yea{bottom:334.083300px;}
.yba{bottom:335.822100px;}
.y135{bottom:338.233950px;}
.yad{bottom:339.997500px;}
.y99{bottom:340.299450px;}
.y108{bottom:341.146200px;}
.ycc{bottom:342.587250px;}
.y100{bottom:348.079350px;}
.y64{bottom:352.292550px;}
.y26{bottom:353.900400px;}
.ye9{bottom:356.583300px;}
.y76{bottom:356.838450px;}
.y134{bottom:357.561900px;}
.yb9{bottom:358.774350px;}
.y98{bottom:359.799450px;}
.y46{bottom:361.787250px;}
.yac{bottom:362.497500px;}
.y107{bottom:363.646200px;}
.ycb{bottom:365.087250px;}
.y47{bottom:367.281750px;}
.yff{bottom:370.579350px;}
.y63{bottom:374.601000px;}
.y133{bottom:376.889850px;}
.y25{bottom:376.959750px;}
.ye8{bottom:379.083300px;}
.y97{bottom:379.299450px;}
.yb8{bottom:381.726600px;}
.y45{bottom:384.437250px;}
.yab{bottom:384.997500px;}
.y106{bottom:386.146200px;}
.yca{bottom:387.587250px;}
.y75{bottom:388.118700px;}
.yfe{bottom:393.079350px;}
.y132{bottom:396.217650px;}
.y62{bottom:396.909600px;}
.y116{bottom:398.799450px;}
.y24{bottom:400.019100px;}
.ye7{bottom:401.583300px;}
.y44{bottom:407.087250px;}
.yaa{bottom:407.497500px;}
.y105{bottom:408.646200px;}
.yc8{bottom:410.087250px;}
.y86{bottom:415.165950px;}
.y131{bottom:415.545600px;}
.yfd{bottom:415.579350px;}
.yc9{bottom:415.581750px;}
.y115{bottom:418.299450px;}
.y61{bottom:419.218050px;}
.y23{bottom:423.078450px;}
.ye6{bottom:424.083300px;}
.y43{bottom:429.737250px;}
.ya9{bottom:429.997500px;}
.y74{bottom:430.497600px;}
.yc7{bottom:432.587250px;}
.y8{bottom:432.690150px;}
.y130{bottom:434.873400px;}
.yc5{bottom:435.812550px;}
.y85{bottom:437.665950px;}
.y114{bottom:437.799450px;}
.yfc{bottom:438.079350px;}
.y60{bottom:441.526500px;}
.y73{bottom:445.497600px;}
.y22{bottom:446.137800px;}
.ye5{bottom:446.583300px;}
.yc4{bottom:450.812550px;}
.y4{bottom:451.720050px;}
.y42{bottom:452.387250px;}
.ya8{bottom:452.497500px;}
.y84{bottom:452.665950px;}
.y12f{bottom:454.201350px;}
.yc6{bottom:455.087250px;}
.yfb{bottom:460.579350px;}
.y112{bottom:462.732300px;}
.y5f{bottom:463.835100px;}
.y83{bottom:467.665950px;}
.ye4{bottom:469.083300px;}
.y21{bottom:469.197150px;}
.y3{bottom:469.720050px;}
.y12e{bottom:473.529300px;}
.ya7{bottom:474.997500px;}
.y41{bottom:475.037250px;}
.y96{bottom:477.587250px;}
.y111{bottom:477.732300px;}
.y82{bottom:482.665950px;}
.yfa{bottom:483.079350px;}
.y5e{bottom:486.143550px;}
.ye3{bottom:491.583300px;}
.y20{bottom:492.256500px;}
.y110{bottom:492.732300px;}
.y12d{bottom:492.857100px;}
.ya6{bottom:497.497500px;}
.y81{bottom:497.665950px;}
.y40{bottom:497.687250px;}
.y95{bottom:500.087250px;}
.yf9{bottom:505.579350px;}
.y5d{bottom:508.452000px;}
.y12c{bottom:512.185050px;}
.ye2{bottom:514.083300px;}
.y1f{bottom:515.315850px;}
.y3f{bottom:520.337250px;}
.y2{bottom:520.839450px;}
.y94{bottom:522.587250px;}
.yf8{bottom:528.079350px;}
.y5c{bottom:530.760450px;}
.y12b{bottom:531.513000px;}
.ye1{bottom:536.583300px;}
.y1e{bottom:538.375200px;}
.y1{bottom:538.839450px;}
.y3e{bottom:542.987250px;}
.y93{bottom:545.087250px;}
.yf7{bottom:550.579350px;}
.y12a{bottom:550.840800px;}
.yb7{bottom:551.583600px;}
.y5b{bottom:553.068900px;}
.ye0{bottom:559.083300px;}
.y1d{bottom:561.434550px;}
.y9{bottom:562.210950px;}
.y3d{bottom:565.637250px;}
.yb6{bottom:566.583600px;}
.y92{bottom:567.587250px;}
.y129{bottom:570.168750px;}
.yf6{bottom:573.079350px;}
.ydf{bottom:581.583300px;}
.yb5{bottom:581.583600px;}
.y1c{bottom:584.493750px;}
.y3c{bottom:588.287250px;}
.y128{bottom:589.496700px;}
.y91{bottom:590.087250px;}
.y5a{bottom:592.385400px;}
.yf5{bottom:595.579350px;}
.yde{bottom:604.083300px;}
.y1b{bottom:607.553250px;}
.y127{bottom:608.824500px;}
.y3b{bottom:610.937250px;}
.y90{bottom:612.587250px;}
.y59{bottom:614.693850px;}
.yf4{bottom:618.079350px;}
.ydd{bottom:626.583300px;}
.y126{bottom:628.152450px;}
.y1a{bottom:630.612450px;}
.y3a{bottom:633.587250px;}
.y8f{bottom:635.087250px;}
.y58{bottom:637.002300px;}
.yf3{bottom:640.579350px;}
.y125{bottom:647.480400px;}
.ydc{bottom:649.083300px;}
.y19{bottom:653.671800px;}
.y39{bottom:656.237250px;}
.y8e{bottom:657.587250px;}
.y57{bottom:659.310750px;}
.yf2{bottom:663.079350px;}
.y113{bottom:663.081750px;}
.y124{bottom:666.808200px;}
.ydb{bottom:671.583300px;}
.y18{bottom:676.731150px;}
.y38{bottom:678.887250px;}
.y8d{bottom:680.087250px;}
.y56{bottom:681.619350px;}
.yf1{bottom:685.579350px;}
.y123{bottom:686.136150px;}
.yda{bottom:694.083300px;}
.y17{bottom:699.790500px;}
.y37{bottom:701.537250px;}
.y8c{bottom:702.587250px;}
.y55{bottom:703.927800px;}
.y149{bottom:705.138750px;}
.y122{bottom:705.464100px;}
.yd9{bottom:716.583300px;}
.y16{bottom:722.849850px;}
.y36{bottom:724.187250px;}
.y148{bottom:724.638750px;}
.y121{bottom:724.791900px;}
.y72{bottom:725.087250px;}
.y54{bottom:726.236250px;}
.yd8{bottom:739.083300px;}
.y120{bottom:744.119850px;}
.y147{bottom:744.138750px;}
.y15{bottom:745.909200px;}
.y35{bottom:746.837250px;}
.y71{bottom:747.587250px;}
.y53{bottom:748.544700px;}
.yd7{bottom:761.583300px;}
.y11f{bottom:763.447650px;}
.y146{bottom:763.638750px;}
.y14{bottom:768.968550px;}
.y34{bottom:769.487250px;}
.y70{bottom:770.087250px;}
.y52{bottom:770.853300px;}
.y11e{bottom:782.775600px;}
.y145{bottom:783.138750px;}
.yd6{bottom:784.083300px;}
.y13{bottom:792.027900px;}
.y33{bottom:792.137250px;}
.y6f{bottom:792.587250px;}
.y51{bottom:793.161750px;}
.y11d{bottom:802.103550px;}
.y144{bottom:802.638750px;}
.yd5{bottom:806.583300px;}
.y32{bottom:814.787250px;}
.y10{bottom:815.087250px;}
.y50{bottom:815.470350px;}
.y11c{bottom:821.431500px;}
.y143{bottom:822.138750px;}
.y6{bottom:832.484250px;}
.y31{bottom:837.437250px;}
.y12{bottom:837.587250px;}
.y4f{bottom:837.778800px;}
.y11b{bottom:840.759300px;}
.y142{bottom:841.638750px;}
.y5{bottom:857.984250px;}
.y11{bottom:860.087250px;}
.y141{bottom:861.138750px;}
.y4e{bottom:871.653600px;}
.y30{bottom:930.708000px;}
.y7{bottom:946.311000px;}
.hd{height:26.973078px;}
.hf{height:30.225000px;}
.h2{height:34.494545px;}
.h5{height:34.530462px;}
.h3{height:37.200000px;}
.h7{height:41.850000px;}
.h11{height:43.248000px;}
.h13{height:44.313600px;}
.h12{height:46.266000px;}
.he{height:46.332000px;}
.h15{height:46.500000px;}
.hb{height:50.760000px;}
.h9{height:51.150000px;}
.h14{height:51.480000px;}
.hc{height:51.798450px;}
.ha{height:52.470000px;}
.h10{height:56.628000px;}
.h4{height:62.010000px;}
.h6{height:62.040000px;}
.h8{height:281.348250px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x7{left:40.783650px;}
.x1f{left:41.870550px;}
.x3{left:102.215100px;}
.x1{left:106.299150px;}
.x1a{left:126.267450px;}
.xd{left:127.558950px;}
.x1b{left:134.293350px;}
.x6{left:136.063050px;}
.x2{left:137.359950px;}
.x19{left:142.165350px;}
.xb{left:157.047450px;}
.x11{left:159.542250px;}
.x13{left:160.686300px;}
.x4{left:172.370550px;}
.x14{left:184.914300px;}
.x1e{left:199.529250px;}
.x1c{left:204.558900px;}
.x1d{left:213.994350px;}
.x12{left:215.318250px;}
.x17{left:234.607350px;}
.x10{left:241.370250px;}
.x18{left:244.030800px;}
.xc{left:268.965300px;}
.xf{left:331.653600px;}
.x15{left:545.229600px;}
.x16{left:549.730200px;}
.x5{left:589.484700px;}
.x8{left:590.678700px;}
.xe{left:636.653250px;}
.x9{left:637.733250px;}
.xa{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.ls3c{letter-spacing:-2.976000pt;}
.ls4b{letter-spacing:-2.784000pt;}
.ls4c{letter-spacing:-2.304000pt;}
.lsc{letter-spacing:-1.728000pt;}
.ls39{letter-spacing:-1.680000pt;}
.ls64{letter-spacing:-1.632000pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls1c{letter-spacing:-1.488000pt;}
.ls48{letter-spacing:-1.248000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls3a{letter-spacing:-1.104000pt;}
.ls49{letter-spacing:-0.720000pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls47{letter-spacing:-0.672000pt;}
.ls24{letter-spacing:-0.645333pt;}
.ls4a{letter-spacing:-0.624000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.528000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls25{letter-spacing:-0.234667pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls6f{letter-spacing:-0.160000pt;}
.ls3b{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls6d{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.085333pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.048000pt;}
.ls67{letter-spacing:-0.034203pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000320pt;}
.ls60{letter-spacing:0.000533pt;}
.ls44{letter-spacing:0.014933pt;}
.ls14{letter-spacing:0.023467pt;}
.ls32{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.029333pt;}
.ls29{letter-spacing:0.048000pt;}
.ls6b{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls45{letter-spacing:0.068405pt;}
.ls26{letter-spacing:0.085333pt;}
.ls43{letter-spacing:0.088000pt;}
.ls65{letter-spacing:0.092678pt;}
.ls66{letter-spacing:0.092912pt;}
.ls5e{letter-spacing:0.093606pt;}
.ls5a{letter-spacing:0.093869pt;}
.ls5f{letter-spacing:0.094185pt;}
.ls2{letter-spacing:0.096000pt;}
.ls69{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls0{letter-spacing:0.117965pt;}
.ls4e{letter-spacing:0.120000pt;}
.ls55{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.146667pt;}
.ls6a{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.161992pt;}
.ls58{letter-spacing:0.162379pt;}
.ls12{letter-spacing:0.176000pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.254933pt;}
.ls15{letter-spacing:0.255467pt;}
.ls2a{letter-spacing:0.568533pt;}
.ls2b{letter-spacing:0.569067pt;}
.ls30{letter-spacing:0.621333pt;}
.ls31{letter-spacing:0.621867pt;}
.ls63{letter-spacing:0.652800pt;}
.ls62{letter-spacing:0.714133pt;}
.ls61{letter-spacing:0.714667pt;}
.ls18{letter-spacing:0.942933pt;}
.ls17{letter-spacing:0.943467pt;}
.ls3{letter-spacing:1.397867pt;}
.ls4{letter-spacing:1.398400pt;}
.ls54{letter-spacing:1.634667pt;}
.ls52{letter-spacing:1.812800pt;}
.ls53{letter-spacing:1.813333pt;}
.ls41{letter-spacing:1.931659pt;}
.ls40{letter-spacing:1.932191pt;}
.ls51{letter-spacing:1.933338pt;}
.ls35{letter-spacing:1.935073pt;}
.ls36{letter-spacing:1.935605pt;}
.ls5c{letter-spacing:1.979984pt;}
.ls5d{letter-spacing:1.980510pt;}
.ls56{letter-spacing:2.024113pt;}
.ls1a{letter-spacing:2.108393pt;}
.ls19{letter-spacing:2.108926pt;}
.ls5{letter-spacing:2.109601pt;}
.ls6{letter-spacing:2.110133pt;}
.ls7{letter-spacing:2.111819pt;}
.ls8{letter-spacing:2.112351pt;}
.ls3f{letter-spacing:2.115380pt;}
.ls42{letter-spacing:2.115912pt;}
.ls4f{letter-spacing:2.116332pt;}
.ls50{letter-spacing:2.116864pt;}
.ls33{letter-spacing:2.119019pt;}
.ls34{letter-spacing:2.119551pt;}
.ls2f{letter-spacing:2.141189pt;}
.ls2e{letter-spacing:2.141718pt;}
.ls5b{letter-spacing:2.168208pt;}
.ls1{letter-spacing:2.175167pt;}
.ls4d{letter-spacing:2.186915pt;}
.ls59{letter-spacing:2.216070pt;}
.ls2d{letter-spacing:2.234513pt;}
.ls28{letter-spacing:2.489067pt;}
.ls68{letter-spacing:2.585193pt;}
.ls6e{letter-spacing:90.075142pt;}
.ls6c{letter-spacing:92.493867pt;}
.ws10{word-spacing:-12.848000pt;}
.ws68{word-spacing:-11.850667pt;}
.ws45{word-spacing:-11.733333pt;}
.ws46{word-spacing:-11.674667pt;}
.ws67{word-spacing:-11.616000pt;}
.ws25{word-spacing:-11.264000pt;}
.ws35{word-spacing:-10.704000pt;}
.ws69{word-spacing:-10.666667pt;}
.ws58{word-spacing:-10.656000pt;}
.ws5b{word-spacing:-10.608000pt;}
.ws36{word-spacing:-10.560000pt;}
.ws37{word-spacing:-10.536000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws32{word-spacing:-10.464000pt;}
.ws14{word-spacing:-10.416000pt;}
.ws3a{word-spacing:-10.368000pt;}
.ws13{word-spacing:-10.320000pt;}
.ws50{word-spacing:-10.240000pt;}
.ws48{word-spacing:-10.032000pt;}
.ws3d{word-spacing:-9.936000pt;}
.ws4c{word-spacing:-9.888000pt;}
.ws4e{word-spacing:-9.840000pt;}
.ws4b{word-spacing:-9.792000pt;}
.ws5a{word-spacing:-9.744000pt;}
.ws5c{word-spacing:-9.696000pt;}
.ws38{word-spacing:-9.648000pt;}
.ws3b{word-spacing:-9.600000pt;}
.ws5f{word-spacing:-9.552000pt;}
.ws15{word-spacing:-9.504000pt;}
.ws5d{word-spacing:-9.408000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws28{word-spacing:-9.344000pt;}
.ws12{word-spacing:-9.024000pt;}
.ws33{word-spacing:-8.976000pt;}
.ws49{word-spacing:-8.928000pt;}
.ws59{word-spacing:-8.880000pt;}
.ws34{word-spacing:-8.832000pt;}
.ws3{word-spacing:-8.784000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws39{word-spacing:-8.496000pt;}
.ws11{word-spacing:-8.448000pt;}
.ws4a{word-spacing:-8.352000pt;}
.ws4f{word-spacing:-8.208000pt;}
.ws5e{word-spacing:-7.968000pt;}
.ws4d{word-spacing:-7.728000pt;}
.wsf{word-spacing:-7.490384pt;}
.ws66{word-spacing:-7.456181pt;}
.ws3c{word-spacing:-6.624000pt;}
.ws54{word-spacing:-3.072000pt;}
.ws5{word-spacing:-2.992000pt;}
.ws56{word-spacing:-2.784000pt;}
.ws61{word-spacing:-2.256000pt;}
.ws1e{word-spacing:-2.208000pt;}
.ws6f{word-spacing:-2.186667pt;}
.ws2e{word-spacing:-2.176000pt;}
.ws42{word-spacing:-2.160000pt;}
.ws70{word-spacing:-2.133333pt;}
.ws7{word-spacing:-2.112000pt;}
.ws2d{word-spacing:-2.090667pt;}
.ws30{word-spacing:-2.048000pt;}
.ws44{word-spacing:-1.968000pt;}
.ws1b{word-spacing:-1.872000pt;}
.ws64{word-spacing:-1.584000pt;}
.ws1a{word-spacing:-1.248000pt;}
.ws31{word-spacing:-1.066667pt;}
.ws65{word-spacing:-0.912000pt;}
.ws3e{word-spacing:-0.645333pt;}
.ws2c{word-spacing:-0.469333pt;}
.ws62{word-spacing:-0.288000pt;}
.ws23{word-spacing:-0.234667pt;}
.ws41{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.176000pt;}
.ws6c{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.144000pt;}
.wsb{word-spacing:-0.117333pt;}
.ws6b{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.068405pt;}
.wsd{word-spacing:-0.058667pt;}
.ws6d{word-spacing:-0.053333pt;}
.ws3f{word-spacing:-0.048000pt;}
.ws1f{word-spacing:-0.034667pt;}
.ws4{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.042667pt;}
.ws40{word-spacing:0.048000pt;}
.wsa{word-spacing:0.058667pt;}
.ws1d{word-spacing:0.096000pt;}
.ws6e{word-spacing:0.106667pt;}
.ws9{word-spacing:0.117333pt;}
.ws43{word-spacing:0.144000pt;}
.ws73{word-spacing:0.160000pt;}
.ws16{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws27{word-spacing:0.234667pt;}
.ws17{word-spacing:0.240000pt;}
.wse{word-spacing:0.293333pt;}
.ws21{word-spacing:0.469333pt;}
.ws52{word-spacing:0.480000pt;}
.ws22{word-spacing:0.528000pt;}
.ws20{word-spacing:0.586667pt;}
.ws55{word-spacing:0.624000pt;}
.ws26{word-spacing:0.645333pt;}
.ws53{word-spacing:0.672000pt;}
.ws24{word-spacing:0.704000pt;}
.ws18{word-spacing:0.960000pt;}
.ws72{word-spacing:1.173333pt;}
.ws8{word-spacing:1.392000pt;}
.ws2b{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.578667pt;}
.ws63{word-spacing:1.632000pt;}
.ws29{word-spacing:2.048000pt;}
.ws19{word-spacing:2.112000pt;}
.ws71{word-spacing:2.133333pt;}
.ws6a{word-spacing:2.293333pt;}
.ws47{word-spacing:2.522667pt;}
.ws57{word-spacing:2.784000pt;}
._18{margin-left:-12.848000pt;}
._3{margin-left:-5.888000pt;}
._2{margin-left:-3.865600pt;}
._1{margin-left:-2.773333pt;}
._0{margin-left:-1.109333pt;}
._5{width:1.227200pt;}
._4{width:2.174400pt;}
._6{width:3.360000pt;}
._14{width:113.427200pt;}
._13{width:124.183467pt;}
._c{width:132.393760pt;}
._b{width:134.457100pt;}
._d{width:141.530020pt;}
._f{width:142.805560pt;}
._e{width:160.352282pt;}
._10{width:178.669168pt;}
._11{width:202.656753pt;}
._9{width:228.802133pt;}
._12{width:243.224707pt;}
._a{width:264.181729pt;}
._15{width:273.229686pt;}
._8{width:277.402133pt;}
._7{width:280.051733pt;}
._19{width:345.347200pt;}
._17{width:526.299568pt;}
._16{width:665.280274pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs2{font-size:40.421333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:94.488133pt;}
.ya5{bottom:94.488267pt;}
.y8b{bottom:94.495733pt;}
.y8a{bottom:107.829067pt;}
.y140{bottom:111.668533pt;}
.ye{bottom:111.821467pt;}
.ya4{bottom:111.821600pt;}
.y11a{bottom:111.821733pt;}
.y6e{bottom:114.584667pt;}
.y80{bottom:114.733733pt;}
.yc3{bottom:114.890267pt;}
.y2f{bottom:114.985333pt;}
.y89{bottom:121.162400pt;}
.y13f{bottom:128.848933pt;}
.yd{bottom:129.154800pt;}
.ya3{bottom:129.154933pt;}
.yd4{bottom:129.155067pt;}
.y88{bottom:134.495733pt;}
.y6d{bottom:134.681067pt;}
.y7f{bottom:134.979333pt;}
.yc2{bottom:135.292267pt;}
.y2e{bottom:135.482533pt;}
.y13e{bottom:146.029200pt;}
.yc{bottom:146.488133pt;}
.ya2{bottom:146.488267pt;}
.y87{bottom:147.829067pt;}
.y6c{bottom:154.510800pt;}
.y7e{bottom:155.224933pt;}
.yc1{bottom:155.694267pt;}
.y2d{bottom:155.979733pt;}
.yb4{bottom:162.220000pt;}
.y13d{bottom:163.209600pt;}
.yb{bottom:163.821467pt;}
.y119{bottom:163.821600pt;}
.ya1{bottom:163.821733pt;}
.yd3{bottom:164.522000pt;}
.y6b{bottom:174.340533pt;}
.y7d{bottom:175.470533pt;}
.yc0{bottom:176.096400pt;}
.y2c{bottom:176.476933pt;}
.yf0{bottom:176.962933pt;}
.y13c{bottom:180.389867pt;}
.ya{bottom:181.154800pt;}
.y118{bottom:181.154933pt;}
.ya0{bottom:181.155067pt;}
.yb3{bottom:182.220000pt;}
.y10f{bottom:183.241067pt;}
.yd2{bottom:184.522000pt;}
.y6a{bottom:194.170400pt;}
.y7c{bottom:195.716133pt;}
.ybf{bottom:196.498400pt;}
.yef{bottom:196.962933pt;}
.y2b{bottom:196.974133pt;}
.y13b{bottom:197.570267pt;}
.y4d{bottom:198.488133pt;}
.y117{bottom:198.488267pt;}
.y9f{bottom:198.488400pt;}
.yb2{bottom:202.220000pt;}
.y10e{bottom:203.241067pt;}
.yd1{bottom:204.522000pt;}
.y69{bottom:214.000133pt;}
.y13a{bottom:214.750667pt;}
.y4c{bottom:215.821467pt;}
.y9e{bottom:215.821733pt;}
.y7b{bottom:215.961733pt;}
.ybe{bottom:216.900400pt;}
.yee{bottom:216.962933pt;}
.y2a{bottom:217.471333pt;}
.yb1{bottom:222.220000pt;}
.y10d{bottom:223.241067pt;}
.yd0{bottom:224.522000pt;}
.y104{bottom:229.403867pt;}
.y139{bottom:231.930933pt;}
.y4b{bottom:233.154800pt;}
.y9d{bottom:233.155067pt;}
.y68{bottom:233.829867pt;}
.y7a{bottom:236.207333pt;}
.yed{bottom:236.962933pt;}
.ybd{bottom:237.302400pt;}
.y29{bottom:237.968533pt;}
.yb0{bottom:242.220000pt;}
.y10c{bottom:243.241067pt;}
.ycf{bottom:244.522000pt;}
.y138{bottom:249.111333pt;}
.y103{bottom:249.403867pt;}
.y4a{bottom:250.488133pt;}
.y9c{bottom:250.488400pt;}
.y67{bottom:253.659733pt;}
.y79{bottom:256.452933pt;}
.yec{bottom:256.962933pt;}
.ybc{bottom:257.704533pt;}
.yaf{bottom:262.220000pt;}
.y10a{bottom:263.241067pt;}
.yce{bottom:264.522000pt;}
.y137{bottom:266.291733pt;}
.y49{bottom:267.821467pt;}
.y9b{bottom:267.821733pt;}
.y10b{bottom:268.125067pt;}
.y102{bottom:269.403867pt;}
.y66{bottom:273.489467pt;}
.y28{bottom:273.583867pt;}
.y78{bottom:276.698533pt;}
.yeb{bottom:276.962933pt;}
.ybb{bottom:278.106533pt;}
.yae{bottom:282.220000pt;}
.y109{bottom:283.241067pt;}
.y136{bottom:283.472133pt;}
.ycd{bottom:284.522000pt;}
.y48{bottom:285.154800pt;}
.y9a{bottom:285.155067pt;}
.y101{bottom:289.403867pt;}
.y65{bottom:293.319200pt;}
.y27{bottom:294.081067pt;}
.y77{bottom:296.944133pt;}
.yea{bottom:296.962933pt;}
.yba{bottom:298.508533pt;}
.y135{bottom:300.652400pt;}
.yad{bottom:302.220000pt;}
.y99{bottom:302.488400pt;}
.y108{bottom:303.241067pt;}
.ycc{bottom:304.522000pt;}
.y100{bottom:309.403867pt;}
.y64{bottom:313.148933pt;}
.y26{bottom:314.578133pt;}
.ye9{bottom:316.962933pt;}
.y76{bottom:317.189733pt;}
.y134{bottom:317.832800pt;}
.yb9{bottom:318.910533pt;}
.y98{bottom:319.821733pt;}
.y46{bottom:321.588667pt;}
.yac{bottom:322.220000pt;}
.y107{bottom:323.241067pt;}
.ycb{bottom:324.522000pt;}
.y47{bottom:326.472667pt;}
.yff{bottom:329.403867pt;}
.y63{bottom:332.978667pt;}
.y133{bottom:335.013200pt;}
.y25{bottom:335.075333pt;}
.ye8{bottom:336.962933pt;}
.y97{bottom:337.155067pt;}
.yb8{bottom:339.312533pt;}
.y45{bottom:341.722000pt;}
.yab{bottom:342.220000pt;}
.y106{bottom:343.241067pt;}
.yca{bottom:344.522000pt;}
.y75{bottom:344.994400pt;}
.yfe{bottom:349.403867pt;}
.y132{bottom:352.193467pt;}
.y62{bottom:352.808533pt;}
.y116{bottom:354.488400pt;}
.y24{bottom:355.572533pt;}
.ye7{bottom:356.962933pt;}
.y44{bottom:361.855333pt;}
.yaa{bottom:362.220000pt;}
.y105{bottom:363.241067pt;}
.yc8{bottom:364.522000pt;}
.y86{bottom:369.036400pt;}
.y131{bottom:369.373867pt;}
.yfd{bottom:369.403867pt;}
.yc9{bottom:369.406000pt;}
.y115{bottom:371.821733pt;}
.y61{bottom:372.638267pt;}
.y23{bottom:376.069733pt;}
.ye6{bottom:376.962933pt;}
.y43{bottom:381.988667pt;}
.ya9{bottom:382.220000pt;}
.y74{bottom:382.664533pt;}
.yc7{bottom:384.522000pt;}
.y8{bottom:384.613467pt;}
.y130{bottom:386.554133pt;}
.yc5{bottom:387.388933pt;}
.y85{bottom:389.036400pt;}
.y114{bottom:389.155067pt;}
.yfc{bottom:389.403867pt;}
.y60{bottom:392.468000pt;}
.y73{bottom:395.997867pt;}
.y22{bottom:396.566933pt;}
.ye5{bottom:396.962933pt;}
.yc4{bottom:400.722267pt;}
.y4{bottom:401.528933pt;}
.y42{bottom:402.122000pt;}
.ya8{bottom:402.220000pt;}
.y84{bottom:402.369733pt;}
.y12f{bottom:403.734533pt;}
.yc6{bottom:404.522000pt;}
.yfb{bottom:409.403867pt;}
.y112{bottom:411.317600pt;}
.y5f{bottom:412.297867pt;}
.y83{bottom:415.703067pt;}
.ye4{bottom:416.962933pt;}
.y21{bottom:417.064133pt;}
.y3{bottom:417.528933pt;}
.y12e{bottom:420.914933pt;}
.ya7{bottom:422.220000pt;}
.y41{bottom:422.255333pt;}
.y96{bottom:424.522000pt;}
.y111{bottom:424.650933pt;}
.y82{bottom:429.036400pt;}
.yfa{bottom:429.403867pt;}
.y5e{bottom:432.127600pt;}
.ye3{bottom:436.962933pt;}
.y20{bottom:437.561333pt;}
.y110{bottom:437.984267pt;}
.y12d{bottom:438.095200pt;}
.ya6{bottom:442.220000pt;}
.y81{bottom:442.369733pt;}
.y40{bottom:442.388667pt;}
.y95{bottom:444.522000pt;}
.yf9{bottom:449.403867pt;}
.y5d{bottom:451.957333pt;}
.y12c{bottom:455.275600pt;}
.ye2{bottom:456.962933pt;}
.y1f{bottom:458.058533pt;}
.y3f{bottom:462.522000pt;}
.y2{bottom:462.968400pt;}
.y94{bottom:464.522000pt;}
.yf8{bottom:469.403867pt;}
.y5c{bottom:471.787067pt;}
.y12b{bottom:472.456000pt;}
.ye1{bottom:476.962933pt;}
.y1e{bottom:478.555733pt;}
.y1{bottom:478.968400pt;}
.y3e{bottom:482.655333pt;}
.y93{bottom:484.522000pt;}
.yf7{bottom:489.403867pt;}
.y12a{bottom:489.636267pt;}
.yb7{bottom:490.296533pt;}
.y5b{bottom:491.616800pt;}
.ye0{bottom:496.962933pt;}
.y1d{bottom:499.052933pt;}
.y9{bottom:499.743067pt;}
.y3d{bottom:502.788667pt;}
.yb6{bottom:503.629867pt;}
.y92{bottom:504.522000pt;}
.y129{bottom:506.816667pt;}
.yf6{bottom:509.403867pt;}
.ydf{bottom:516.962933pt;}
.yb5{bottom:516.963200pt;}
.y1c{bottom:519.550000pt;}
.y3c{bottom:522.922000pt;}
.y128{bottom:523.997067pt;}
.y91{bottom:524.522000pt;}
.y5a{bottom:526.564800pt;}
.yf5{bottom:529.403867pt;}
.yde{bottom:536.962933pt;}
.y1b{bottom:540.047333pt;}
.y127{bottom:541.177333pt;}
.y3b{bottom:543.055333pt;}
.y90{bottom:544.522000pt;}
.y59{bottom:546.394533pt;}
.yf4{bottom:549.403867pt;}
.ydd{bottom:556.962933pt;}
.y126{bottom:558.357733pt;}
.y1a{bottom:560.544400pt;}
.y3a{bottom:563.188667pt;}
.y8f{bottom:564.522000pt;}
.y58{bottom:566.224267pt;}
.yf3{bottom:569.403867pt;}
.y125{bottom:575.538133pt;}
.ydc{bottom:576.962933pt;}
.y19{bottom:581.041600pt;}
.y39{bottom:583.322000pt;}
.y8e{bottom:584.522000pt;}
.y57{bottom:586.054000pt;}
.yf2{bottom:589.403867pt;}
.y113{bottom:589.406000pt;}
.y124{bottom:592.718400pt;}
.ydb{bottom:596.962933pt;}
.y18{bottom:601.538800pt;}
.y38{bottom:603.455333pt;}
.y8d{bottom:604.522000pt;}
.y56{bottom:605.883867pt;}
.yf1{bottom:609.403867pt;}
.y123{bottom:609.898800pt;}
.yda{bottom:616.962933pt;}
.y17{bottom:622.036000pt;}
.y37{bottom:623.588667pt;}
.y8c{bottom:624.522000pt;}
.y55{bottom:625.713600pt;}
.y149{bottom:626.790000pt;}
.y122{bottom:627.079200pt;}
.yd9{bottom:636.962933pt;}
.y16{bottom:642.533200pt;}
.y36{bottom:643.722000pt;}
.y148{bottom:644.123333pt;}
.y121{bottom:644.259467pt;}
.y72{bottom:644.522000pt;}
.y54{bottom:645.543333pt;}
.yd8{bottom:656.962933pt;}
.y120{bottom:661.439867pt;}
.y147{bottom:661.456667pt;}
.y15{bottom:663.030400pt;}
.y35{bottom:663.855333pt;}
.y71{bottom:664.522000pt;}
.y53{bottom:665.373067pt;}
.yd7{bottom:676.962933pt;}
.y11f{bottom:678.620133pt;}
.y146{bottom:678.790000pt;}
.y14{bottom:683.527600pt;}
.y34{bottom:683.988667pt;}
.y70{bottom:684.522000pt;}
.y52{bottom:685.202933pt;}
.y11e{bottom:695.800533pt;}
.y145{bottom:696.123333pt;}
.yd6{bottom:696.962933pt;}
.y13{bottom:704.024800pt;}
.y33{bottom:704.122000pt;}
.y6f{bottom:704.522000pt;}
.y51{bottom:705.032667pt;}
.y11d{bottom:712.980933pt;}
.y144{bottom:713.456667pt;}
.yd5{bottom:716.962933pt;}
.y32{bottom:724.255333pt;}
.y10{bottom:724.522000pt;}
.y50{bottom:724.862533pt;}
.y11c{bottom:730.161333pt;}
.y143{bottom:730.790000pt;}
.y6{bottom:739.986000pt;}
.y31{bottom:744.388667pt;}
.y12{bottom:744.522000pt;}
.y4f{bottom:744.692267pt;}
.y11b{bottom:747.341600pt;}
.y142{bottom:748.123333pt;}
.y5{bottom:762.652667pt;}
.y11{bottom:764.522000pt;}
.y141{bottom:765.456667pt;}
.y4e{bottom:774.803200pt;}
.y30{bottom:827.296000pt;}
.y7{bottom:841.165333pt;}
.hd{height:23.976069pt;}
.hf{height:26.866667pt;}
.h2{height:30.661818pt;}
.h5{height:30.693744pt;}
.h3{height:33.066667pt;}
.h7{height:37.200000pt;}
.h11{height:38.442667pt;}
.h13{height:39.389867pt;}
.h12{height:41.125333pt;}
.he{height:41.184000pt;}
.h15{height:41.333333pt;}
.hb{height:45.120000pt;}
.h9{height:45.466667pt;}
.h14{height:45.760000pt;}
.hc{height:46.043067pt;}
.ha{height:46.640000pt;}
.h10{height:50.336000pt;}
.h4{height:55.120000pt;}
.h6{height:55.146667pt;}
.h8{height:250.087333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x7{left:36.252133pt;}
.x1f{left:37.218267pt;}
.x3{left:90.857867pt;}
.x1{left:94.488133pt;}
.x1a{left:112.237733pt;}
.xd{left:113.385733pt;}
.x1b{left:119.371867pt;}
.x6{left:120.944933pt;}
.x2{left:122.097733pt;}
.x19{left:126.369200pt;}
.xb{left:139.597733pt;}
.x11{left:141.815333pt;}
.x13{left:142.832267pt;}
.x4{left:153.218267pt;}
.x14{left:164.368267pt;}
.x1e{left:177.359333pt;}
.x1c{left:181.830133pt;}
.x1d{left:190.217200pt;}
.x12{left:191.394000pt;}
.x17{left:208.539867pt;}
.x10{left:214.551333pt;}
.x18{left:216.916267pt;}
.xc{left:239.080267pt;}
.xf{left:294.803200pt;}
.x15{left:484.648533pt;}
.x16{left:488.649067pt;}
.x5{left:523.986400pt;}
.x8{left:525.047733pt;}
.xe{left:565.914000pt;}
.x9{left:566.874000pt;}
.xa{left:574.082267pt;}
}




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