
    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_85378c9ca47cd939cb67a28e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.858398;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_4fc4ee88bbdad9fca3f1ec3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_001b986e68a8c16c7dcb8dbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.683105;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_f57f7549a8ceafb95d3158ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_510f44eca56843d111bc31c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_0dab2907696db08c50fe94e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e0dd79d61d3bfdf619835c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_18d7c976f26230a72a0a59e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9845c48e719c2696826036e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2767abc5e57e8059337f35e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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_dbe6a8f7cffe1399684e6bca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_d02323e773b5c95740b0fa1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_b0aa803b93338002faf85087.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714844;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_76fe8f75d136b4702c20141c.woff2')format("woff");}.fff{font-family:fff;line-height:0.916016;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_02fef0b9a92e2827a1edfae2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2294727c4c6d49344fff5e55.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e133d545ad92165131d79fdd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.925000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e2e1163e6fa422a3d089788b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d4ce539fd13002068da4f016.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c8e7ac9f0388595452d41488.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a46f15893c8a4a4ca99e6e36.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_71db89ec9d45fbbf1c68ea8c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_21f803150bfda4211e17ca97.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.935000;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:ff19;src:url('chunks/assets/font_b8e1a95a30cd17df410d0838.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.861816;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:ff1a;src:url('chunks/assets/font_899badc849fc6880f61f94ca.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.668000;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:ff1b;src:url('chunks/assets/font_3eb309368c734d7097a11b05.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.115234;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;}
.med{transform:matrix(-0.249993,0.001912,-0.001912,-0.249993,0,0);-ms-transform:matrix(-0.249993,0.001912,-0.001912,-0.249993,0,0);-webkit-transform:matrix(-0.249993,0.001912,-0.001912,-0.249993,0,0);}
.mee{transform:matrix(-0.249950,-0.005008,0.005008,-0.249950,0,0);-ms-transform:matrix(-0.249950,-0.005008,0.005008,-0.249950,0,0);-webkit-transform:matrix(-0.249950,-0.005008,0.005008,-0.249950,0,0);}
.mec{transform:matrix(-0.249891,0.007380,-0.007380,-0.249891,0,0);-ms-transform:matrix(-0.249891,0.007380,-0.007380,-0.249891,0,0);-webkit-transform:matrix(-0.249891,0.007380,-0.007380,-0.249891,0,0);}
.mef{transform:matrix(-0.249710,-0.012043,0.012043,-0.249710,0,0);-ms-transform:matrix(-0.249710,-0.012043,0.012043,-0.249710,0,0);-webkit-transform:matrix(-0.249710,-0.012043,0.012043,-0.249710,0,0);}
.meb{transform:matrix(-0.249659,0.013061,-0.013061,-0.249659,0,0);-ms-transform:matrix(-0.249659,0.013061,-0.013061,-0.249659,0,0);-webkit-transform:matrix(-0.249659,0.013061,-0.013061,-0.249659,0,0);}
.mf0{transform:matrix(-0.249378,-0.017622,0.017622,-0.249378,0,0);-ms-transform:matrix(-0.249378,-0.017622,0.017622,-0.249378,0,0);-webkit-transform:matrix(-0.249378,-0.017622,0.017622,-0.249378,0,0);}
.mea{transform:matrix(-0.249238,0.019506,-0.019506,-0.249238,0,0);-ms-transform:matrix(-0.249238,0.019506,-0.019506,-0.249238,0,0);-webkit-transform:matrix(-0.249238,0.019506,-0.019506,-0.249238,0,0);}
.mf1{transform:matrix(-0.248984,-0.022517,0.022517,-0.248984,0,0);-ms-transform:matrix(-0.248984,-0.022517,0.022517,-0.248984,0,0);-webkit-transform:matrix(-0.248984,-0.022517,0.022517,-0.248984,0,0);}
.me9{transform:matrix(-0.248807,0.024397,-0.024397,-0.248807,0,0);-ms-transform:matrix(-0.248807,0.024397,-0.024397,-0.248807,0,0);-webkit-transform:matrix(-0.248807,0.024397,-0.024397,-0.248807,0,0);}
.me8{transform:matrix(-0.248352,0.028662,-0.028662,-0.248352,0,0);-ms-transform:matrix(-0.248352,0.028662,-0.028662,-0.248352,0,0);-webkit-transform:matrix(-0.248352,0.028662,-0.028662,-0.248352,0,0);}
.mf2{transform:matrix(-0.248294,-0.029157,0.029157,-0.248294,0,0);-ms-transform:matrix(-0.248294,-0.029157,0.029157,-0.248294,0,0);-webkit-transform:matrix(-0.248294,-0.029157,0.029157,-0.248294,0,0);}
.me7{transform:matrix(-0.247628,0.034356,-0.034356,-0.247628,0,0);-ms-transform:matrix(-0.247628,0.034356,-0.034356,-0.247628,0,0);-webkit-transform:matrix(-0.247628,0.034356,-0.034356,-0.247628,0,0);}
.mf3{transform:matrix(-0.247329,-0.036448,0.036448,-0.247329,0,0);-ms-transform:matrix(-0.247329,-0.036448,0.036448,-0.247329,0,0);-webkit-transform:matrix(-0.247329,-0.036448,0.036448,-0.247329,0,0);}
.me6{transform:matrix(-0.246563,0.041315,-0.041315,-0.246563,0,0);-ms-transform:matrix(-0.246563,0.041315,-0.041315,-0.246563,0,0);-webkit-transform:matrix(-0.246563,0.041315,-0.041315,-0.246563,0,0);}
.mf4{transform:matrix(-0.246452,-0.041967,0.041967,-0.246452,0,0);-ms-transform:matrix(-0.246452,-0.041967,0.041967,-0.246452,0,0);-webkit-transform:matrix(-0.246452,-0.041967,0.041967,-0.246452,0,0);}
.mf5{transform:matrix(-0.245434,-0.047562,0.047562,-0.245434,0,0);-ms-transform:matrix(-0.245434,-0.047562,0.047562,-0.245434,0,0);-webkit-transform:matrix(-0.245434,-0.047562,0.047562,-0.245434,0,0);}
.me5{transform:matrix(-0.245241,0.048549,-0.048549,-0.245241,0,0);-ms-transform:matrix(-0.245241,0.048549,-0.048549,-0.245241,0,0);-webkit-transform:matrix(-0.245241,0.048549,-0.048549,-0.245241,0,0);}
.mf6{transform:matrix(-0.244124,-0.053886,0.053886,-0.244124,0,0);-ms-transform:matrix(-0.244124,-0.053886,0.053886,-0.244124,0,0);-webkit-transform:matrix(-0.244124,-0.053886,0.053886,-0.244124,0,0);}
.me4{transform:matrix(-0.243420,0.056978,-0.056978,-0.243420,0,0);-ms-transform:matrix(-0.243420,0.056978,-0.056978,-0.243420,0,0);-webkit-transform:matrix(-0.243420,0.056978,-0.056978,-0.243420,0,0);}
.mf7{transform:matrix(-0.242598,-0.060385,0.060385,-0.242598,0,0);-ms-transform:matrix(-0.242598,-0.060385,0.060385,-0.242598,0,0);-webkit-transform:matrix(-0.242598,-0.060385,0.060385,-0.242598,0,0);}
.me3{transform:matrix(-0.241766,0.063633,-0.063633,-0.241766,0,0);-ms-transform:matrix(-0.241766,0.063633,-0.063633,-0.241766,0,0);-webkit-transform:matrix(-0.241766,0.063633,-0.063633,-0.241766,0,0);}
.mf8{transform:matrix(-0.240717,-0.067495,0.067495,-0.240717,0,0);-ms-transform:matrix(-0.240717,-0.067495,0.067495,-0.240717,0,0);-webkit-transform:matrix(-0.240717,-0.067495,0.067495,-0.240717,0,0);}
.me2{transform:matrix(-0.240283,0.069021,-0.069021,-0.240283,0,0);-ms-transform:matrix(-0.240283,0.069021,-0.069021,-0.240283,0,0);-webkit-transform:matrix(-0.240283,0.069021,-0.069021,-0.240283,0,0);}
.mf9{transform:matrix(-0.238931,-0.073567,0.073567,-0.238931,0,0);-ms-transform:matrix(-0.238931,-0.073567,0.073567,-0.238931,0,0);-webkit-transform:matrix(-0.238931,-0.073567,0.073567,-0.238931,0,0);}
.me1{transform:matrix(-0.238149,0.076059,-0.076059,-0.238149,0,0);-ms-transform:matrix(-0.238149,0.076059,-0.076059,-0.238149,0,0);-webkit-transform:matrix(-0.238149,0.076059,-0.076059,-0.238149,0,0);}
.mfa{transform:matrix(-0.237449,-0.078216,0.078216,-0.237449,0,0);-ms-transform:matrix(-0.237449,-0.078216,0.078216,-0.237449,0,0);-webkit-transform:matrix(-0.237449,-0.078216,0.078216,-0.237449,0,0);}
.me0{transform:matrix(-0.236033,0.082391,-0.082391,-0.236033,0,0);-ms-transform:matrix(-0.236033,0.082391,-0.082391,-0.236033,0,0);-webkit-transform:matrix(-0.236033,0.082391,-0.082391,-0.236033,0,0);}
.mfb{transform:matrix(-0.235140,-0.084908,0.084908,-0.235140,0,0);-ms-transform:matrix(-0.235140,-0.084908,0.084908,-0.235140,0,0);-webkit-transform:matrix(-0.235140,-0.084908,0.084908,-0.235140,0,0);}
.mdf{transform:matrix(-0.234370,0.087011,-0.087011,-0.234370,0,0);-ms-transform:matrix(-0.234370,0.087011,-0.087011,-0.234370,0,0);-webkit-transform:matrix(-0.234370,0.087011,-0.087011,-0.234370,0,0);}
.mde{transform:matrix(-0.232263,0.092488,-0.092488,-0.232263,0,0);-ms-transform:matrix(-0.232263,0.092488,-0.092488,-0.232263,0,0);-webkit-transform:matrix(-0.232263,0.092488,-0.092488,-0.232263,0,0);}
.mfc{transform:matrix(-0.232220,-0.092596,0.092596,-0.232220,0,0);-ms-transform:matrix(-0.232220,-0.092596,0.092596,-0.232220,0,0);-webkit-transform:matrix(-0.232220,-0.092596,0.092596,-0.232220,0,0);}
.mdd{transform:matrix(-0.229737,0.098595,-0.098595,-0.229737,0,0);-ms-transform:matrix(-0.229737,0.098595,-0.098595,-0.229737,0,0);-webkit-transform:matrix(-0.229737,0.098595,-0.098595,-0.229737,0,0);}
.mfd{transform:matrix(-0.229049,-0.100184,0.100184,-0.229049,0,0);-ms-transform:matrix(-0.229049,-0.100184,0.100184,-0.229049,0,0);-webkit-transform:matrix(-0.229049,-0.100184,0.100184,-0.229049,0,0);}
.mdc{transform:matrix(-0.227046,0.104642,-0.104642,-0.227046,0,0);-ms-transform:matrix(-0.227046,0.104642,-0.104642,-0.227046,0,0);-webkit-transform:matrix(-0.227046,0.104642,-0.104642,-0.227046,0,0);}
.mfe{transform:matrix(-0.226120,-0.106629,0.106629,-0.226120,0,0);-ms-transform:matrix(-0.226120,-0.106629,0.106629,-0.226120,0,0);-webkit-transform:matrix(-0.226120,-0.106629,0.106629,-0.226120,0,0);}
.mdb{transform:matrix(-0.223769,0.111478,-0.111478,-0.223769,0,0);-ms-transform:matrix(-0.223769,0.111478,-0.111478,-0.223769,0,0);-webkit-transform:matrix(-0.223769,0.111478,-0.111478,-0.223769,0,0);}
.mff{transform:matrix(-0.223561,-0.111895,0.111895,-0.223561,0,0);-ms-transform:matrix(-0.223561,-0.111895,0.111895,-0.223561,0,0);-webkit-transform:matrix(-0.223561,-0.111895,0.111895,-0.223561,0,0);}
.mda{transform:matrix(-0.221104,0.116676,-0.116676,-0.221104,0,0);-ms-transform:matrix(-0.221104,0.116676,-0.116676,-0.221104,0,0);-webkit-transform:matrix(-0.221104,0.116676,-0.116676,-0.221104,0,0);}
.m100{transform:matrix(-0.220808,-0.117233,0.117233,-0.220808,0,0);-ms-transform:matrix(-0.220808,-0.117233,0.117233,-0.220808,0,0);-webkit-transform:matrix(-0.220808,-0.117233,0.117233,-0.220808,0,0);}
.md9{transform:matrix(-0.219142,0.120319,-0.120319,-0.219142,0,0);-ms-transform:matrix(-0.219142,0.120319,-0.120319,-0.219142,0,0);-webkit-transform:matrix(-0.219142,0.120319,-0.120319,-0.219142,0,0);}
.m101{transform:matrix(-0.218011,-0.122357,0.122357,-0.218011,0,0);-ms-transform:matrix(-0.218011,-0.122357,0.122357,-0.218011,0,0);-webkit-transform:matrix(-0.218011,-0.122357,0.122357,-0.218011,0,0);}
.md8{transform:matrix(-0.217120,0.123930,-0.123930,-0.217120,0,0);-ms-transform:matrix(-0.217120,0.123930,-0.123930,-0.217120,0,0);-webkit-transform:matrix(-0.217120,0.123930,-0.123930,-0.217120,0,0);}
.md7{transform:matrix(-0.215039,0.127507,-0.127507,-0.215039,0,0);-ms-transform:matrix(-0.215039,0.127507,-0.127507,-0.215039,0,0);-webkit-transform:matrix(-0.215039,0.127507,-0.127507,-0.215039,0,0);}
.m102{transform:matrix(-0.214778,-0.127947,0.127947,-0.214778,0,0);-ms-transform:matrix(-0.214778,-0.127947,0.127947,-0.214778,0,0);-webkit-transform:matrix(-0.214778,-0.127947,0.127947,-0.214778,0,0);}
.md6{transform:matrix(-0.212899,0.131049,-0.131049,-0.212899,0,0);-ms-transform:matrix(-0.212899,0.131049,-0.131049,-0.212899,0,0);-webkit-transform:matrix(-0.212899,0.131049,-0.131049,-0.212899,0,0);}
.m103{transform:matrix(-0.211517,-0.133269,0.133269,-0.211517,0,0);-ms-transform:matrix(-0.211517,-0.133269,0.133269,-0.211517,0,0);-webkit-transform:matrix(-0.211517,-0.133269,0.133269,-0.211517,0,0);}
.md5{transform:matrix(-0.210701,0.134555,-0.134555,-0.210701,0,0);-ms-transform:matrix(-0.210701,0.134555,-0.134555,-0.210701,0,0);-webkit-transform:matrix(-0.210701,0.134555,-0.134555,-0.210701,0,0);}
.md4{transform:matrix(-0.208445,0.138025,-0.138025,-0.208445,0,0);-ms-transform:matrix(-0.208445,0.138025,-0.138025,-0.208445,0,0);-webkit-transform:matrix(-0.208445,0.138025,-0.138025,-0.208445,0,0);}
.md3{transform:matrix(-0.206132,0.141456,-0.141456,-0.206132,0,0);-ms-transform:matrix(-0.206132,0.141456,-0.141456,-0.206132,0,0);-webkit-transform:matrix(-0.206132,0.141456,-0.141456,-0.206132,0,0);}
.md2{transform:matrix(-0.203762,0.144849,-0.144849,-0.203762,0,0);-ms-transform:matrix(-0.203762,0.144849,-0.144849,-0.203762,0,0);-webkit-transform:matrix(-0.203762,0.144849,-0.144849,-0.203762,0,0);}
.md1{transform:matrix(-0.201336,0.148201,-0.148201,-0.201336,0,0);-ms-transform:matrix(-0.201336,0.148201,-0.148201,-0.201336,0,0);-webkit-transform:matrix(-0.201336,0.148201,-0.148201,-0.201336,0,0);}
.md0{transform:matrix(-0.198856,0.151514,-0.151514,-0.198856,0,0);-ms-transform:matrix(-0.198856,0.151514,-0.151514,-0.198856,0,0);-webkit-transform:matrix(-0.198856,0.151514,-0.151514,-0.198856,0,0);}
.mcf{transform:matrix(-0.196320,0.154785,-0.154785,-0.196320,0,0);-ms-transform:matrix(-0.196320,0.154785,-0.154785,-0.196320,0,0);-webkit-transform:matrix(-0.196320,0.154785,-0.154785,-0.196320,0,0);}
.mce{transform:matrix(-0.193731,0.158013,-0.158013,-0.193731,0,0);-ms-transform:matrix(-0.193731,0.158013,-0.158013,-0.193731,0,0);-webkit-transform:matrix(-0.193731,0.158013,-0.158013,-0.193731,0,0);}
.mcd{transform:matrix(-0.191089,0.161198,-0.161198,-0.191089,0,0);-ms-transform:matrix(-0.191089,0.161198,-0.161198,-0.191089,0,0);-webkit-transform:matrix(-0.191089,0.161198,-0.161198,-0.191089,0,0);}
.mcc{transform:matrix(-0.188395,0.164339,-0.164339,-0.188395,0,0);-ms-transform:matrix(-0.188395,0.164339,-0.164339,-0.188395,0,0);-webkit-transform:matrix(-0.188395,0.164339,-0.164339,-0.188395,0,0);}
.mcb{transform:matrix(-0.185649,0.167435,-0.167435,-0.185649,0,0);-ms-transform:matrix(-0.185649,0.167435,-0.167435,-0.185649,0,0);-webkit-transform:matrix(-0.185649,0.167435,-0.167435,-0.185649,0,0);}
.mca{transform:matrix(-0.182852,0.170485,-0.170485,-0.182852,0,0);-ms-transform:matrix(-0.182852,0.170485,-0.170485,-0.182852,0,0);-webkit-transform:matrix(-0.182852,0.170485,-0.170485,-0.182852,0,0);}
.mc9{transform:matrix(-0.180005,0.173488,-0.173488,-0.180005,0,0);-ms-transform:matrix(-0.180005,0.173488,-0.173488,-0.180005,0,0);-webkit-transform:matrix(-0.180005,0.173488,-0.173488,-0.180005,0,0);}
.mc8{transform:matrix(-0.177109,0.176444,-0.176444,-0.177109,0,0);-ms-transform:matrix(-0.177109,0.176444,-0.176444,-0.177109,0,0);-webkit-transform:matrix(-0.177109,0.176444,-0.176444,-0.177109,0,0);}
.mc7{transform:matrix(-0.174164,0.179351,-0.179351,-0.174164,0,0);-ms-transform:matrix(-0.174164,0.179351,-0.179351,-0.174164,0,0);-webkit-transform:matrix(-0.174164,0.179351,-0.179351,-0.174164,0,0);}
.mc6{transform:matrix(-0.171171,0.182210,-0.182210,-0.171171,0,0);-ms-transform:matrix(-0.171171,0.182210,-0.182210,-0.171171,0,0);-webkit-transform:matrix(-0.171171,0.182210,-0.182210,-0.171171,0,0);}
.mc5{transform:matrix(-0.168132,0.185018,-0.185018,-0.168132,0,0);-ms-transform:matrix(-0.168132,0.185018,-0.185018,-0.168132,0,0);-webkit-transform:matrix(-0.168132,0.185018,-0.185018,-0.168132,0,0);}
.mc4{transform:matrix(-0.165046,0.187776,-0.187776,-0.165046,0,0);-ms-transform:matrix(-0.165046,0.187776,-0.187776,-0.165046,0,0);-webkit-transform:matrix(-0.165046,0.187776,-0.187776,-0.165046,0,0);}
.mc3{transform:matrix(-0.161915,0.190482,-0.190482,-0.161915,0,0);-ms-transform:matrix(-0.161915,0.190482,-0.190482,-0.161915,0,0);-webkit-transform:matrix(-0.161915,0.190482,-0.190482,-0.161915,0,0);}
.mc2{transform:matrix(-0.158740,0.193136,-0.193136,-0.158740,0,0);-ms-transform:matrix(-0.158740,0.193136,-0.193136,-0.158740,0,0);-webkit-transform:matrix(-0.158740,0.193136,-0.193136,-0.158740,0,0);}
.mc1{transform:matrix(-0.155522,0.195737,-0.195737,-0.155522,0,0);-ms-transform:matrix(-0.155522,0.195737,-0.195737,-0.155522,0,0);-webkit-transform:matrix(-0.155522,0.195737,-0.195737,-0.155522,0,0);}
.mc0{transform:matrix(-0.152260,0.198285,-0.198285,-0.152260,0,0);-ms-transform:matrix(-0.152260,0.198285,-0.198285,-0.152260,0,0);-webkit-transform:matrix(-0.152260,0.198285,-0.198285,-0.152260,0,0);}
.mbf{transform:matrix(-0.148957,0.200778,-0.200778,-0.148957,0,0);-ms-transform:matrix(-0.148957,0.200778,-0.200778,-0.148957,0,0);-webkit-transform:matrix(-0.148957,0.200778,-0.200778,-0.148957,0,0);}
.mbe{transform:matrix(-0.145614,0.203216,-0.203216,-0.145614,0,0);-ms-transform:matrix(-0.145614,0.203216,-0.203216,-0.145614,0,0);-webkit-transform:matrix(-0.145614,0.203216,-0.203216,-0.145614,0,0);}
.mbd{transform:matrix(-0.142230,0.205598,-0.205598,-0.142230,0,0);-ms-transform:matrix(-0.142230,0.205598,-0.205598,-0.142230,0,0);-webkit-transform:matrix(-0.142230,0.205598,-0.205598,-0.142230,0,0);}
.mbc{transform:matrix(-0.138807,0.207924,-0.207924,-0.138807,0,0);-ms-transform:matrix(-0.138807,0.207924,-0.207924,-0.138807,0,0);-webkit-transform:matrix(-0.138807,0.207924,-0.207924,-0.138807,0,0);}
.mbb{transform:matrix(-0.134226,0.210911,-0.210911,-0.134226,0,0);-ms-transform:matrix(-0.134226,0.210911,-0.210911,-0.134226,0,0);-webkit-transform:matrix(-0.134226,0.210911,-0.210911,-0.134226,0,0);}
.mba{transform:matrix(-0.128919,0.214196,-0.214196,-0.128919,0,0);-ms-transform:matrix(-0.128919,0.214196,-0.214196,-0.128919,0,0);-webkit-transform:matrix(-0.128919,0.214196,-0.214196,-0.128919,0,0);}
.mb9{transform:matrix(-0.123343,0.217455,-0.217455,-0.123343,0,0);-ms-transform:matrix(-0.123343,0.217455,-0.217455,-0.123343,0,0);-webkit-transform:matrix(-0.123343,0.217455,-0.217455,-0.123343,0,0);}
.mb8{transform:matrix(-0.118232,0.220275,-0.220275,-0.118232,0,0);-ms-transform:matrix(-0.118232,0.220275,-0.220275,-0.118232,0,0);-webkit-transform:matrix(-0.118232,0.220275,-0.220275,-0.118232,0,0);}
.mb7{transform:matrix(-0.112907,0.223052,-0.223052,-0.112907,0,0);-ms-transform:matrix(-0.112907,0.223052,-0.223052,-0.112907,0,0);-webkit-transform:matrix(-0.112907,0.223052,-0.223052,-0.112907,0,0);}
.m2{transform:matrix(-0.112140,-0.223438,0.223438,-0.112140,0,0);-ms-transform:matrix(-0.112140,-0.223438,0.223438,-0.112140,0,0);-webkit-transform:matrix(-0.112140,-0.223438,0.223438,-0.112140,0,0);}
.mb6{transform:matrix(-0.107652,0.225635,-0.225635,-0.107652,0,0);-ms-transform:matrix(-0.107652,0.225635,-0.225635,-0.107652,0,0);-webkit-transform:matrix(-0.107652,0.225635,-0.225635,-0.107652,0,0);}
.m3{transform:matrix(-0.105314,-0.226735,0.226735,-0.105314,0,0);-ms-transform:matrix(-0.105314,-0.226735,0.226735,-0.105314,0,0);-webkit-transform:matrix(-0.105314,-0.226735,0.226735,-0.105314,0,0);}
.mb5{transform:matrix(-0.101220,0.228592,-0.228592,-0.101220,0,0);-ms-transform:matrix(-0.101220,0.228592,-0.228592,-0.101220,0,0);-webkit-transform:matrix(-0.101220,0.228592,-0.228592,-0.101220,0,0);}
.m4{transform:matrix(-0.099275,-0.229444,0.229444,-0.099275,0,0);-ms-transform:matrix(-0.099275,-0.229444,0.229444,-0.099275,0,0);-webkit-transform:matrix(-0.099275,-0.229444,0.229444,-0.099275,0,0);}
.mb4{transform:matrix(-0.093647,0.231798,-0.231798,-0.093647,0,0);-ms-transform:matrix(-0.093647,0.231798,-0.231798,-0.093647,0,0);-webkit-transform:matrix(-0.093647,0.231798,-0.231798,-0.093647,0,0);}
.m5{transform:matrix(-0.093176,-0.231988,0.231988,-0.093176,0,0);-ms-transform:matrix(-0.093176,-0.231988,0.231988,-0.093176,0,0);-webkit-transform:matrix(-0.093176,-0.231988,0.231988,-0.093176,0,0);}
.m6{transform:matrix(-0.087705,-0.234111,0.234111,-0.087705,0,0);-ms-transform:matrix(-0.087705,-0.234111,0.234111,-0.087705,0,0);-webkit-transform:matrix(-0.087705,-0.234111,0.234111,-0.087705,0,0);}
.mb3{transform:matrix(-0.085972,0.234753,-0.234753,-0.085972,0,0);-ms-transform:matrix(-0.085972,0.234753,-0.234753,-0.085972,0,0);-webkit-transform:matrix(-0.085972,0.234753,-0.234753,-0.085972,0,0);}
.m7{transform:matrix(-0.083090,-0.235788,0.235788,-0.083090,0,0);-ms-transform:matrix(-0.083090,-0.235788,0.235788,-0.083090,0,0);-webkit-transform:matrix(-0.083090,-0.235788,0.235788,-0.083090,0,0);}
.mb2{transform:matrix(-0.079291,0.237093,-0.237093,-0.079291,0,0);-ms-transform:matrix(-0.079291,0.237093,-0.237093,-0.079291,0,0);-webkit-transform:matrix(-0.079291,0.237093,-0.237093,-0.079291,0,0);}
.m8{transform:matrix(-0.076765,-0.237923,0.237923,-0.076765,0,0);-ms-transform:matrix(-0.076765,-0.237923,0.237923,-0.076765,0,0);-webkit-transform:matrix(-0.076765,-0.237923,0.237923,-0.076765,0,0);}
.mb1{transform:matrix(-0.074649,0.238595,-0.238595,-0.074649,0,0);-ms-transform:matrix(-0.074649,0.238595,-0.238595,-0.074649,0,0);-webkit-transform:matrix(-0.074649,0.238595,-0.238595,-0.074649,0,0);}
.m9{transform:matrix(-0.069733,-0.240078,0.240078,-0.069733,0,0);-ms-transform:matrix(-0.069733,-0.240078,0.240078,-0.069733,0,0);-webkit-transform:matrix(-0.069733,-0.240078,0.240078,-0.069733,0,0);}
.mb0{transform:matrix(-0.068584,0.240408,-0.240408,-0.068584,0,0);-ms-transform:matrix(-0.068584,0.240408,-0.240408,-0.068584,0,0);-webkit-transform:matrix(-0.068584,0.240408,-0.240408,-0.068584,0,0);}
.ma{transform:matrix(-0.064349,-0.241577,0.241577,-0.064349,0,0);-ms-transform:matrix(-0.064349,-0.241577,0.241577,-0.064349,0,0);-webkit-transform:matrix(-0.064349,-0.241577,0.241577,-0.064349,0,0);}
.maf{transform:matrix(-0.061483,0.242322,-0.242322,-0.061483,0,0);-ms-transform:matrix(-0.061483,0.242322,-0.242322,-0.061483,0,0);-webkit-transform:matrix(-0.061483,0.242322,-0.242322,-0.061483,0,0);}
.mb{transform:matrix(-0.057699,-0.243251,0.243251,-0.057699,0,0);-ms-transform:matrix(-0.057699,-0.243251,0.243251,-0.057699,0,0);-webkit-transform:matrix(-0.057699,-0.243251,0.243251,-0.057699,0,0);}
.mae{transform:matrix(-0.054991,0.243877,-0.243877,-0.054991,0,0);-ms-transform:matrix(-0.054991,0.243877,-0.243877,-0.054991,0,0);-webkit-transform:matrix(-0.054991,0.243877,-0.243877,-0.054991,0,0);}
.mc{transform:matrix(-0.049275,-0.245096,0.245096,-0.049275,0,0);-ms-transform:matrix(-0.049275,-0.245096,0.245096,-0.049275,0,0);-webkit-transform:matrix(-0.049275,-0.245096,0.245096,-0.049275,0,0);}
.mad{transform:matrix(-0.048673,0.245216,-0.245216,-0.048673,0,0);-ms-transform:matrix(-0.048673,0.245216,-0.245216,-0.048673,0,0);-webkit-transform:matrix(-0.048673,0.245216,-0.245216,-0.048673,0,0);}
.mac{transform:matrix(-0.043083,0.246260,-0.246260,-0.043083,0,0);-ms-transform:matrix(-0.043083,0.246260,-0.246260,-0.043083,0,0);-webkit-transform:matrix(-0.043083,0.246260,-0.246260,-0.043083,0,0);}
.md{transform:matrix(-0.042045,-0.246439,0.246439,-0.042045,0,0);-ms-transform:matrix(-0.042045,-0.246439,0.246439,-0.042045,0,0);-webkit-transform:matrix(-0.042045,-0.246439,0.246439,-0.042045,0,0);}
.mab{transform:matrix(-0.037568,0.247161,-0.247161,-0.037568,0,0);-ms-transform:matrix(-0.037568,0.247161,-0.247161,-0.037568,0,0);-webkit-transform:matrix(-0.037568,0.247161,-0.247161,-0.037568,0,0);}
.me{transform:matrix(-0.035090,-0.247525,0.247525,-0.035090,0,0);-ms-transform:matrix(-0.035090,-0.247525,0.247525,-0.035090,0,0);-webkit-transform:matrix(-0.035090,-0.247525,0.247525,-0.035090,0,0);}
.maa{transform:matrix(-0.030281,0.248159,-0.248159,-0.030281,0,0);-ms-transform:matrix(-0.030281,0.248159,-0.248159,-0.030281,0,0);-webkit-transform:matrix(-0.030281,0.248159,-0.248159,-0.030281,0,0);}
.mf{transform:matrix(-0.029398,-0.248266,0.248266,-0.029398,0,0);-ms-transform:matrix(-0.029398,-0.248266,0.248266,-0.029398,0,0);-webkit-transform:matrix(-0.029398,-0.248266,0.248266,-0.029398,0,0);}
.m10{transform:matrix(-0.025134,-0.248733,0.248733,-0.025134,0,0);-ms-transform:matrix(-0.025134,-0.248733,0.248733,-0.025134,0,0);-webkit-transform:matrix(-0.025134,-0.248733,0.248733,-0.025134,0,0);}
.ma9{transform:matrix(-0.023645,0.248879,-0.248879,-0.023645,0,0);-ms-transform:matrix(-0.023645,0.248879,-0.248879,-0.023645,0,0);-webkit-transform:matrix(-0.023645,0.248879,-0.248879,-0.023645,0,0);}
.m11{transform:matrix(-0.020244,-0.249179,0.249179,-0.020244,0,0);-ms-transform:matrix(-0.020244,-0.249179,0.249179,-0.020244,0,0);-webkit-transform:matrix(-0.020244,-0.249179,0.249179,-0.020244,0,0);}
.ma8{transform:matrix(-0.018752,0.249296,-0.249296,-0.018752,0,0);-ms-transform:matrix(-0.018752,0.249296,-0.249296,-0.018752,0,0);-webkit-transform:matrix(-0.018752,0.249296,-0.249296,-0.018752,0,0);}
.m12{transform:matrix(-0.013801,-0.249619,0.249619,-0.013801,0,0);-ms-transform:matrix(-0.013801,-0.249619,0.249619,-0.013801,0,0);-webkit-transform:matrix(-0.013801,-0.249619,0.249619,-0.013801,0,0);}
.ma7{transform:matrix(-0.013175,0.249653,-0.249653,-0.013175,0,0);-ms-transform:matrix(-0.013175,0.249653,-0.249653,-0.013175,0,0);-webkit-transform:matrix(-0.013175,0.249653,-0.249653,-0.013175,0,0);}
.m13{transform:matrix(-0.008120,-0.249868,0.249868,-0.008120,0,0);-ms-transform:matrix(-0.008120,-0.249868,0.249868,-0.008120,0,0);-webkit-transform:matrix(-0.008120,-0.249868,0.249868,-0.008120,0,0);}
.ma6{transform:matrix(-0.006140,0.249925,-0.249925,-0.006140,0,0);-ms-transform:matrix(-0.006140,0.249925,-0.249925,-0.006140,0,0);-webkit-transform:matrix(-0.006140,0.249925,-0.249925,-0.006140,0,0);}
.m14{transform:matrix(-0.002652,-0.249986,0.249986,-0.002652,0,0);-ms-transform:matrix(-0.002652,-0.249986,0.249986,-0.002652,0,0);-webkit-transform:matrix(-0.002652,-0.249986,0.249986,-0.002652,0,0);}
.m1{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);}
.ma5{transform:matrix(0.000779,0.249999,-0.249999,0.000779,0,0);-ms-transform:matrix(0.000779,0.249999,-0.249999,0.000779,0,0);-webkit-transform:matrix(0.000779,0.249999,-0.249999,0.000779,0,0);}
.m15{transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);-ms-transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);-webkit-transform:matrix(0.004268,-0.249964,0.249964,0.004268,0,0);}
.ma4{transform:matrix(0.006248,0.249922,-0.249922,0.006248,0,0);-ms-transform:matrix(0.006248,0.249922,-0.249922,0.006248,0,0);-webkit-transform:matrix(0.006248,0.249922,-0.249922,0.006248,0,0);}
.m16{transform:matrix(0.011304,-0.249744,0.249744,0.011304,0,0);-ms-transform:matrix(0.011304,-0.249744,0.249744,0.011304,0,0);-webkit-transform:matrix(0.011304,-0.249744,0.249744,0.011304,0,0);}
.ma3{transform:matrix(0.011930,0.249715,-0.249715,0.011930,0,0);-ms-transform:matrix(0.011930,0.249715,-0.249715,0.011930,0,0);-webkit-transform:matrix(0.011930,0.249715,-0.249715,0.011930,0,0);}
.m17{transform:matrix(0.016884,-0.249429,0.249429,0.016884,0,0);-ms-transform:matrix(0.016884,-0.249429,0.249429,0.016884,0,0);-webkit-transform:matrix(0.016884,-0.249429,0.249429,0.016884,0,0);}
.ma2{transform:matrix(0.018377,0.249324,-0.249324,0.018377,0,0);-ms-transform:matrix(0.018377,0.249324,-0.249324,0.018377,0,0);-webkit-transform:matrix(0.018377,0.249324,-0.249324,0.018377,0,0);}
.m18{transform:matrix(0.021779,-0.249050,0.249050,0.021779,0,0);-ms-transform:matrix(0.021779,-0.249050,0.249050,0.021779,0,0);-webkit-transform:matrix(0.021779,-0.249050,0.249050,0.021779,0,0);}
.ma1{transform:matrix(0.023270,0.248915,-0.248915,0.023270,0,0);-ms-transform:matrix(0.023270,0.248915,-0.248915,0.023270,0,0);-webkit-transform:matrix(0.023270,0.248915,-0.248915,0.023270,0,0);}
.ma0{transform:matrix(0.027537,0.248479,-0.248479,0.027537,0,0);-ms-transform:matrix(0.027537,0.248479,-0.248479,0.027537,0,0);-webkit-transform:matrix(0.027537,0.248479,-0.248479,0.027537,0,0);}
.m19{transform:matrix(0.028421,-0.248379,0.248379,0.028421,0,0);-ms-transform:matrix(0.028421,-0.248379,0.248379,0.028421,0,0);-webkit-transform:matrix(0.028421,-0.248379,0.248379,0.028421,0,0);}
.m9f{transform:matrix(0.033234,0.247781,-0.247781,0.033234,0,0);-ms-transform:matrix(0.033234,0.247781,-0.247781,0.033234,0,0);-webkit-transform:matrix(0.033234,0.247781,-0.247781,0.033234,0,0);}
.m1a{transform:matrix(0.035715,-0.247436,0.247436,0.035715,0,0);-ms-transform:matrix(0.035715,-0.247436,0.247436,0.035715,0,0);-webkit-transform:matrix(0.035715,-0.247436,0.247436,0.035715,0,0);}
.m9e{transform:matrix(0.040197,0.246747,-0.246747,0.040197,0,0);-ms-transform:matrix(0.040197,0.246747,-0.246747,0.040197,0,0);-webkit-transform:matrix(0.040197,0.246747,-0.246747,0.040197,0,0);}
.m1b{transform:matrix(0.041237,-0.246576,0.246576,0.041237,0,0);-ms-transform:matrix(0.041237,-0.246576,0.246576,0.041237,0,0);-webkit-transform:matrix(0.041237,-0.246576,0.246576,0.041237,0,0);}
.m1c{transform:matrix(0.046835,-0.245574,0.245574,0.046835,0,0);-ms-transform:matrix(0.046835,-0.245574,0.245574,0.046835,0,0);-webkit-transform:matrix(0.046835,-0.245574,0.245574,0.046835,0,0);}
.m9d{transform:matrix(0.047438,0.245458,-0.245458,0.047438,0,0);-ms-transform:matrix(0.047438,0.245458,-0.245458,0.047438,0,0);-webkit-transform:matrix(0.047438,0.245458,-0.245458,0.047438,0,0);}
.m1d{transform:matrix(0.053162,-0.244282,0.244282,0.053162,0,0);-ms-transform:matrix(0.053162,-0.244282,0.244282,0.053162,0,0);-webkit-transform:matrix(0.053162,-0.244282,0.244282,0.053162,0,0);}
.m9c{transform:matrix(0.055875,0.243676,-0.243676,0.055875,0,0);-ms-transform:matrix(0.055875,0.243676,-0.243676,0.055875,0,0);-webkit-transform:matrix(0.055875,0.243676,-0.243676,0.055875,0,0);}
.m1e{transform:matrix(0.059666,-0.242776,0.242776,0.059666,0,0);-ms-transform:matrix(0.059666,-0.242776,0.242776,0.059666,0,0);-webkit-transform:matrix(0.059666,-0.242776,0.242776,0.059666,0,0);}
.m9b{transform:matrix(0.062537,0.242052,-0.242052,0.062537,0,0);-ms-transform:matrix(0.062537,0.242052,-0.242052,0.062537,0,0);-webkit-transform:matrix(0.062537,0.242052,-0.242052,0.062537,0,0);}
.m1f{transform:matrix(0.066781,-0.240915,0.240915,0.066781,0,0);-ms-transform:matrix(0.066781,-0.240915,0.240915,0.066781,0,0);-webkit-transform:matrix(0.066781,-0.240915,0.240915,0.066781,0,0);}
.m9a{transform:matrix(0.067932,0.240593,-0.240593,0.067932,0,0);-ms-transform:matrix(0.067932,0.240593,-0.240593,0.067932,0,0);-webkit-transform:matrix(0.067932,0.240593,-0.240593,0.067932,0,0);}
.m20{transform:matrix(0.072859,-0.239148,0.239148,0.072859,0,0);-ms-transform:matrix(0.072859,-0.239148,0.239148,0.072859,0,0);-webkit-transform:matrix(0.072859,-0.239148,0.239148,0.072859,0,0);}
.m99{transform:matrix(0.074980,0.238491,-0.238491,0.074980,0,0);-ms-transform:matrix(0.074980,0.238491,-0.238491,0.074980,0,0);-webkit-transform:matrix(0.074980,0.238491,-0.238491,0.074980,0,0);}
.m21{transform:matrix(0.077512,-0.237680,0.237680,0.077512,0,0);-ms-transform:matrix(0.077512,-0.237680,0.237680,0.077512,0,0);-webkit-transform:matrix(0.077512,-0.237680,0.237680,0.077512,0,0);}
.m98{transform:matrix(0.081321,0.236404,-0.236404,0.081321,0,0);-ms-transform:matrix(0.081321,0.236404,-0.236404,0.081321,0,0);-webkit-transform:matrix(0.081321,0.236404,-0.236404,0.081321,0,0);}
.m22{transform:matrix(0.084211,-0.235390,0.235390,0.084211,0,0);-ms-transform:matrix(0.084211,-0.235390,0.235390,0.084211,0,0);-webkit-transform:matrix(0.084211,-0.235390,0.235390,0.084211,0,0);}
.m97{transform:matrix(0.085948,0.234761,-0.234761,0.085948,0,0);-ms-transform:matrix(0.085948,0.234761,-0.234761,0.085948,0,0);-webkit-transform:matrix(0.085948,0.234761,-0.234761,0.085948,0,0);}
.m96{transform:matrix(0.091435,0.232679,-0.232679,0.091435,0,0);-ms-transform:matrix(0.091435,0.232679,-0.232679,0.091435,0,0);-webkit-transform:matrix(0.091435,0.232679,-0.232679,0.091435,0,0);}
.m23{transform:matrix(0.091908,-0.232493,0.232493,0.091908,0,0);-ms-transform:matrix(0.091908,-0.232493,0.232493,0.091908,0,0);-webkit-transform:matrix(0.091908,-0.232493,0.232493,0.091908,0,0);}
.m95{transform:matrix(0.097553,0.230181,-0.230181,0.097553,0,0);-ms-transform:matrix(0.097553,0.230181,-0.230181,0.097553,0,0);-webkit-transform:matrix(0.097553,0.230181,-0.230181,0.097553,0,0);}
.m24{transform:matrix(0.099505,-0.229344,0.229344,0.099505,0,0);-ms-transform:matrix(0.099505,-0.229344,0.229344,0.099505,0,0);-webkit-transform:matrix(0.099505,-0.229344,0.229344,0.099505,0,0);}
.m94{transform:matrix(0.103612,0.227518,-0.227518,0.103612,0,0);-ms-transform:matrix(0.103612,0.227518,-0.227518,0.103612,0,0);-webkit-transform:matrix(0.103612,0.227518,-0.227518,0.103612,0,0);}
.m25{transform:matrix(0.105959,-0.226435,0.226435,0.105959,0,0);-ms-transform:matrix(0.105959,-0.226435,0.226435,0.105959,0,0);-webkit-transform:matrix(0.105959,-0.226435,0.226435,0.105959,0,0);}
.m93{transform:matrix(0.110463,0.224272,-0.224272,0.110463,0,0);-ms-transform:matrix(0.110463,0.224272,-0.224272,0.110463,0,0);-webkit-transform:matrix(0.110463,0.224272,-0.224272,0.110463,0,0);}
.m26{transform:matrix(0.111232,-0.223891,0.223891,0.111232,0,0);-ms-transform:matrix(0.111232,-0.223891,0.223891,0.111232,0,0);-webkit-transform:matrix(0.111232,-0.223891,0.223891,0.111232,0,0);}
.m92{transform:matrix(0.115673,0.221630,-0.221630,0.115673,0,0);-ms-transform:matrix(0.115673,0.221630,-0.221630,0.115673,0,0);-webkit-transform:matrix(0.115673,0.221630,-0.221630,0.115673,0,0);}
.m27{transform:matrix(0.116579,-0.221155,0.221155,0.116579,0,0);-ms-transform:matrix(0.116579,-0.221155,0.221155,0.116579,0,0);-webkit-transform:matrix(0.116579,-0.221155,0.221155,0.116579,0,0);}
.m91{transform:matrix(0.119325,0.219685,-0.219685,0.119325,0,0);-ms-transform:matrix(0.119325,0.219685,-0.219685,0.119325,0,0);-webkit-transform:matrix(0.119325,0.219685,-0.219685,0.119325,0,0);}
.m28{transform:matrix(0.121710,-0.218373,0.218373,0.121710,0,0);-ms-transform:matrix(0.121710,-0.218373,0.218373,0.121710,0,0);-webkit-transform:matrix(0.121710,-0.218373,0.218373,0.121710,0,0);}
.m90{transform:matrix(0.122945,0.217680,-0.217680,0.122945,0,0);-ms-transform:matrix(0.122945,0.217680,-0.217680,0.122945,0,0);-webkit-transform:matrix(0.122945,0.217680,-0.217680,0.122945,0,0);}
.m8f{transform:matrix(0.126532,0.215615,-0.215615,0.126532,0,0);-ms-transform:matrix(0.126532,0.215615,-0.215615,0.126532,0,0);-webkit-transform:matrix(0.126532,0.215615,-0.215615,0.126532,0,0);}
.m29{transform:matrix(0.127311,-0.215156,0.215156,0.127311,0,0);-ms-transform:matrix(0.127311,-0.215156,0.215156,0.127311,0,0);-webkit-transform:matrix(0.127311,-0.215156,0.215156,0.127311,0,0);}
.m8e{transform:matrix(0.130083,0.213491,-0.213491,0.130083,0,0);-ms-transform:matrix(0.130083,0.213491,-0.213491,0.130083,0,0);-webkit-transform:matrix(0.130083,0.213491,-0.213491,0.130083,0,0);}
.m2a{transform:matrix(0.132642,-0.211911,0.211911,0.132642,0,0);-ms-transform:matrix(0.132642,-0.211911,0.211911,0.132642,0,0);-webkit-transform:matrix(0.132642,-0.211911,0.211911,0.132642,0,0);}
.m8d{transform:matrix(0.133599,0.211308,-0.211308,0.133599,0,0);-ms-transform:matrix(0.133599,0.211308,-0.211308,0.133599,0,0);-webkit-transform:matrix(0.133599,0.211308,-0.211308,0.133599,0,0);}
.m8c{transform:matrix(0.137079,0.209068,-0.209068,0.137079,0,0);-ms-transform:matrix(0.137079,0.209068,-0.209068,0.137079,0,0);-webkit-transform:matrix(0.137079,0.209068,-0.209068,0.137079,0,0);}
.m2b{transform:matrix(0.137245,-0.208959,0.208959,0.137245,0,0);-ms-transform:matrix(0.137245,-0.208959,0.208959,0.137245,0,0);-webkit-transform:matrix(0.137245,-0.208959,0.208959,0.137245,0,0);}
.m8b{transform:matrix(0.140521,0.206770,-0.206770,0.140521,0,0);-ms-transform:matrix(0.140521,0.206770,-0.206770,0.140521,0,0);-webkit-transform:matrix(0.140521,0.206770,-0.206770,0.140521,0,0);}
.m2c{transform:matrix(0.140685,-0.206658,0.206658,0.140685,0,0);-ms-transform:matrix(0.140685,-0.206658,0.206658,0.140685,0,0);-webkit-transform:matrix(0.140685,-0.206658,0.206658,0.140685,0,0);}
.m8a{transform:matrix(0.143924,0.204416,-0.204416,0.143924,0,0);-ms-transform:matrix(0.143924,0.204416,-0.204416,0.143924,0,0);-webkit-transform:matrix(0.143924,0.204416,-0.204416,0.143924,0,0);}
.m2d{transform:matrix(0.144087,-0.204301,0.204301,0.144087,0,0);-ms-transform:matrix(0.144087,-0.204301,0.204301,0.144087,0,0);-webkit-transform:matrix(0.144087,-0.204301,0.204301,0.144087,0,0);}
.m89{transform:matrix(0.147288,0.202006,-0.202006,0.147288,0,0);-ms-transform:matrix(0.147288,0.202006,-0.202006,0.147288,0,0);-webkit-transform:matrix(0.147288,0.202006,-0.202006,0.147288,0,0);}
.m2e{transform:matrix(0.147449,-0.201888,0.201888,0.147449,0,0);-ms-transform:matrix(0.147449,-0.201888,0.201888,0.147449,0,0);-webkit-transform:matrix(0.147449,-0.201888,0.201888,0.147449,0,0);}
.m88{transform:matrix(0.150611,0.199540,-0.199540,0.150611,0,0);-ms-transform:matrix(0.150611,0.199540,-0.199540,0.150611,0,0);-webkit-transform:matrix(0.150611,0.199540,-0.199540,0.150611,0,0);}
.m2f{transform:matrix(0.150770,-0.199420,0.199420,0.150770,0,0);-ms-transform:matrix(0.150770,-0.199420,0.199420,0.150770,0,0);-webkit-transform:matrix(0.150770,-0.199420,0.199420,0.150770,0,0);}
.m87{transform:matrix(0.153894,0.197020,-0.197020,0.153894,0,0);-ms-transform:matrix(0.153894,0.197020,-0.197020,0.153894,0,0);-webkit-transform:matrix(0.153894,0.197020,-0.197020,0.153894,0,0);}
.m30{transform:matrix(0.154051,-0.196897,0.196897,0.154051,0,0);-ms-transform:matrix(0.154051,-0.196897,0.196897,0.154051,0,0);-webkit-transform:matrix(0.154051,-0.196897,0.196897,0.154051,0,0);}
.m86{transform:matrix(0.157134,0.194445,-0.194445,0.157134,0,0);-ms-transform:matrix(0.157134,0.194445,-0.194445,0.157134,0,0);-webkit-transform:matrix(0.157134,0.194445,-0.194445,0.157134,0,0);}
.m31{transform:matrix(0.157289,-0.194320,0.194320,0.157289,0,0);-ms-transform:matrix(0.157289,-0.194320,0.194320,0.157289,0,0);-webkit-transform:matrix(0.157289,-0.194320,0.194320,0.157289,0,0);}
.m85{transform:matrix(0.160331,0.191818,-0.191818,0.160331,0,0);-ms-transform:matrix(0.160331,0.191818,-0.191818,0.160331,0,0);-webkit-transform:matrix(0.160331,0.191818,-0.191818,0.160331,0,0);}
.m32{transform:matrix(0.160484,-0.191690,0.191690,0.160484,0,0);-ms-transform:matrix(0.160484,-0.191690,0.191690,0.160484,0,0);-webkit-transform:matrix(0.160484,-0.191690,0.191690,0.160484,0,0);}
.m84{transform:matrix(0.163484,0.189138,-0.189138,0.163484,0,0);-ms-transform:matrix(0.163484,0.189138,-0.189138,0.163484,0,0);-webkit-transform:matrix(0.163484,0.189138,-0.189138,0.163484,0,0);}
.m33{transform:matrix(0.163635,-0.189007,0.189007,0.163635,0,0);-ms-transform:matrix(0.163635,-0.189007,0.189007,0.163635,0,0);-webkit-transform:matrix(0.163635,-0.189007,0.189007,0.163635,0,0);}
.m83{transform:matrix(0.166592,0.186406,-0.186406,0.166592,0,0);-ms-transform:matrix(0.166592,0.186406,-0.186406,0.166592,0,0);-webkit-transform:matrix(0.166592,0.186406,-0.186406,0.166592,0,0);}
.m34{transform:matrix(0.166741,-0.186273,0.186273,0.166741,0,0);-ms-transform:matrix(0.166741,-0.186273,0.186273,0.166741,0,0);-webkit-transform:matrix(0.166741,-0.186273,0.186273,0.166741,0,0);}
.m82{transform:matrix(0.169655,0.183623,-0.183623,0.169655,0,0);-ms-transform:matrix(0.169655,0.183623,-0.183623,0.169655,0,0);-webkit-transform:matrix(0.169655,0.183623,-0.183623,0.169655,0,0);}
.m35{transform:matrix(0.169801,-0.183487,0.183487,0.169801,0,0);-ms-transform:matrix(0.169801,-0.183487,0.183487,0.169801,0,0);-webkit-transform:matrix(0.169801,-0.183487,0.183487,0.169801,0,0);}
.m81{transform:matrix(0.172671,0.180789,-0.180789,0.172671,0,0);-ms-transform:matrix(0.172671,0.180789,-0.180789,0.172671,0,0);-webkit-transform:matrix(0.172671,0.180789,-0.180789,0.172671,0,0);}
.m36{transform:matrix(0.172815,-0.180651,0.180651,0.172815,0,0);-ms-transform:matrix(0.172815,-0.180651,0.180651,0.172815,0,0);-webkit-transform:matrix(0.172815,-0.180651,0.180651,0.172815,0,0);}
.m80{transform:matrix(0.175640,0.177906,-0.177906,0.175640,0,0);-ms-transform:matrix(0.175640,0.177906,-0.177906,0.175640,0,0);-webkit-transform:matrix(0.175640,0.177906,-0.177906,0.175640,0,0);}
.m37{transform:matrix(0.175782,-0.177766,0.177766,0.175782,0,0);-ms-transform:matrix(0.175782,-0.177766,0.177766,0.175782,0,0);-webkit-transform:matrix(0.175782,-0.177766,0.177766,0.175782,0,0);}
.m7f{transform:matrix(0.178561,0.174975,-0.174975,0.178561,0,0);-ms-transform:matrix(0.178561,0.174975,-0.174975,0.178561,0,0);-webkit-transform:matrix(0.178561,0.174975,-0.174975,0.178561,0,0);}
.m38{transform:matrix(0.178700,-0.174832,0.174832,0.178700,0,0);-ms-transform:matrix(0.178700,-0.174832,0.174832,0.178700,0,0);-webkit-transform:matrix(0.178700,-0.174832,0.174832,0.178700,0,0);}
.m7e{transform:matrix(0.181432,0.171995,-0.171995,0.181432,0,0);-ms-transform:matrix(0.181432,0.171995,-0.171995,0.181432,0,0);-webkit-transform:matrix(0.181432,0.171995,-0.171995,0.181432,0,0);}
.m39{transform:matrix(0.181570,-0.171850,0.171850,0.181570,0,0);-ms-transform:matrix(0.181570,-0.171850,0.171850,0.181570,0,0);-webkit-transform:matrix(0.181570,-0.171850,0.171850,0.181570,0,0);}
.m7d{transform:matrix(0.184255,0.168968,-0.168968,0.184255,0,0);-ms-transform:matrix(0.184255,0.168968,-0.168968,0.184255,0,0);-webkit-transform:matrix(0.184255,0.168968,-0.168968,0.184255,0,0);}
.m3a{transform:matrix(0.184389,-0.168821,0.168821,0.184389,0,0);-ms-transform:matrix(0.184389,-0.168821,0.168821,0.184389,0,0);-webkit-transform:matrix(0.184389,-0.168821,0.168821,0.184389,0,0);}
.m7c{transform:matrix(0.187026,0.165895,-0.165895,0.187026,0,0);-ms-transform:matrix(0.187026,0.165895,-0.165895,0.187026,0,0);-webkit-transform:matrix(0.187026,0.165895,-0.165895,0.187026,0,0);}
.m3b{transform:matrix(0.187158,-0.165746,0.165746,0.187158,0,0);-ms-transform:matrix(0.187158,-0.165746,0.165746,0.187158,0,0);-webkit-transform:matrix(0.187158,-0.165746,0.165746,0.187158,0,0);}
.m7b{transform:matrix(0.189747,0.162777,-0.162777,0.189747,0,0);-ms-transform:matrix(0.189747,0.162777,-0.162777,0.189747,0,0);-webkit-transform:matrix(0.189747,0.162777,-0.162777,0.189747,0,0);}
.m3c{transform:matrix(0.189876,-0.162625,0.162625,0.189876,0,0);-ms-transform:matrix(0.189876,-0.162625,0.162625,0.189876,0,0);-webkit-transform:matrix(0.189876,-0.162625,0.162625,0.189876,0,0);}
.m7a{transform:matrix(0.192415,0.159614,-0.159614,0.192415,0,0);-ms-transform:matrix(0.192415,0.159614,-0.159614,0.192415,0,0);-webkit-transform:matrix(0.192415,0.159614,-0.159614,0.192415,0,0);}
.m3d{transform:matrix(0.192542,-0.159460,0.159460,0.192542,0,0);-ms-transform:matrix(0.192542,-0.159460,0.159460,0.192542,0,0);-webkit-transform:matrix(0.192542,-0.159460,0.159460,0.192542,0,0);}
.m79{transform:matrix(0.195031,0.156407,-0.156407,0.195031,0,0);-ms-transform:matrix(0.195031,0.156407,-0.156407,0.195031,0,0);-webkit-transform:matrix(0.195031,0.156407,-0.156407,0.195031,0,0);}
.m3e{transform:matrix(0.195155,-0.156251,0.156251,0.195155,0,0);-ms-transform:matrix(0.195155,-0.156251,0.156251,0.195155,0,0);-webkit-transform:matrix(0.195155,-0.156251,0.156251,0.195155,0,0);}
.m78{transform:matrix(0.197593,0.153157,-0.153157,0.197593,0,0);-ms-transform:matrix(0.197593,0.153157,-0.153157,0.197593,0,0);-webkit-transform:matrix(0.197593,0.153157,-0.153157,0.197593,0,0);}
.m3f{transform:matrix(0.197715,-0.152999,0.152999,0.197715,0,0);-ms-transform:matrix(0.197715,-0.152999,0.152999,0.197715,0,0);-webkit-transform:matrix(0.197715,-0.152999,0.152999,0.197715,0,0);}
.m77{transform:matrix(0.200101,0.149865,-0.149865,0.200101,0,0);-ms-transform:matrix(0.200101,0.149865,-0.149865,0.200101,0,0);-webkit-transform:matrix(0.200101,0.149865,-0.149865,0.200101,0,0);}
.m40{transform:matrix(0.200220,-0.149706,0.149706,0.200220,0,0);-ms-transform:matrix(0.200220,-0.149706,0.149706,0.200220,0,0);-webkit-transform:matrix(0.200220,-0.149706,0.149706,0.200220,0,0);}
.m76{transform:matrix(0.202554,0.146533,-0.146533,0.202554,0,0);-ms-transform:matrix(0.202554,0.146533,-0.146533,0.202554,0,0);-webkit-transform:matrix(0.202554,0.146533,-0.146533,0.202554,0,0);}
.m41{transform:matrix(0.202671,-0.146371,0.146371,0.202671,0,0);-ms-transform:matrix(0.202671,-0.146371,0.146371,0.202671,0,0);-webkit-transform:matrix(0.202671,-0.146371,0.146371,0.202671,0,0);}
.m75{transform:matrix(0.204952,0.143160,-0.143160,0.204952,0,0);-ms-transform:matrix(0.204952,0.143160,-0.143160,0.204952,0,0);-webkit-transform:matrix(0.204952,0.143160,-0.143160,0.204952,0,0);}
.m42{transform:matrix(0.205066,-0.142996,0.142996,0.205066,0,0);-ms-transform:matrix(0.205066,-0.142996,0.142996,0.205066,0,0);-webkit-transform:matrix(0.205066,-0.142996,0.142996,0.205066,0,0);}
.m74{transform:matrix(0.207293,0.139748,-0.139748,0.207293,0,0);-ms-transform:matrix(0.207293,0.139748,-0.139748,0.207293,0,0);-webkit-transform:matrix(0.207293,0.139748,-0.139748,0.207293,0,0);}
.m43{transform:matrix(0.207405,-0.139582,0.139582,0.207405,0,0);-ms-transform:matrix(0.207405,-0.139582,0.139582,0.207405,0,0);-webkit-transform:matrix(0.207405,-0.139582,0.139582,0.207405,0,0);}
.m44{transform:matrix(0.209687,-0.136130,0.136130,0.209687,0,0);-ms-transform:matrix(0.209687,-0.136130,0.136130,0.209687,0,0);-webkit-transform:matrix(0.209687,-0.136130,0.136130,0.209687,0,0);}
.m73{transform:matrix(0.210301,0.135180,-0.135180,0.210301,0,0);-ms-transform:matrix(0.210301,0.135180,-0.135180,0.210301,0,0);-webkit-transform:matrix(0.210301,0.135180,-0.135180,0.210301,0,0);}
.m45{transform:matrix(0.211911,-0.132641,0.132641,0.211911,0,0);-ms-transform:matrix(0.211911,-0.132641,0.132641,0.211911,0,0);-webkit-transform:matrix(0.211911,-0.132641,0.132641,0.211911,0,0);}
.m72{transform:matrix(0.213610,0.129888,-0.129888,0.213610,0,0);-ms-transform:matrix(0.213610,0.129888,-0.129888,0.213610,0,0);-webkit-transform:matrix(0.213610,0.129888,-0.129888,0.213610,0,0);}
.m46{transform:matrix(0.214078,-0.129115,0.129115,0.214078,0,0);-ms-transform:matrix(0.214078,-0.129115,0.129115,0.214078,0,0);-webkit-transform:matrix(0.214078,-0.129115,0.129115,0.214078,0,0);}
.m47{transform:matrix(0.216186,-0.125554,0.125554,0.216186,0,0);-ms-transform:matrix(0.216186,-0.125554,0.125554,0.216186,0,0);-webkit-transform:matrix(0.216186,-0.125554,0.125554,0.216186,0,0);}
.m71{transform:matrix(0.216894,0.124327,-0.124327,0.216894,0,0);-ms-transform:matrix(0.216894,0.124327,-0.124327,0.216894,0,0);-webkit-transform:matrix(0.216894,0.124327,-0.124327,0.216894,0,0);}
.m48{transform:matrix(0.218234,-0.121958,0.121958,0.218234,0,0);-ms-transform:matrix(0.218234,-0.121958,0.121958,0.218234,0,0);-webkit-transform:matrix(0.218234,-0.121958,0.121958,0.218234,0,0);}
.m70{transform:matrix(0.219737,0.119229,-0.119229,0.219737,0,0);-ms-transform:matrix(0.219737,0.119229,-0.119229,0.219737,0,0);-webkit-transform:matrix(0.219737,0.119229,-0.119229,0.219737,0,0);}
.m49{transform:matrix(0.220223,-0.118329,0.118329,0.220223,0,0);-ms-transform:matrix(0.220223,-0.118329,0.118329,0.220223,0,0);-webkit-transform:matrix(0.220223,-0.118329,0.118329,0.220223,0,0);}
.m4a{transform:matrix(0.222152,-0.114667,0.114667,0.222152,0,0);-ms-transform:matrix(0.222152,-0.114667,0.114667,0.222152,0,0);-webkit-transform:matrix(0.222152,-0.114667,0.114667,0.222152,0,0);}
.m6f{transform:matrix(0.222538,0.113916,-0.113916,0.222538,0,0);-ms-transform:matrix(0.222538,0.113916,-0.113916,0.222538,0,0);-webkit-transform:matrix(0.222538,0.113916,-0.113916,0.222538,0,0);}
.m4b{transform:matrix(0.224770,-0.109446,0.109446,0.224770,0,0);-ms-transform:matrix(0.224770,-0.109446,0.109446,0.224770,0,0);-webkit-transform:matrix(0.224770,-0.109446,0.109446,0.224770,0,0);}
.m6e{transform:matrix(0.225145,0.108673,-0.108673,0.225145,0,0);-ms-transform:matrix(0.225145,0.108673,-0.108673,0.225145,0,0);-webkit-transform:matrix(0.225145,0.108673,-0.108673,0.225145,0,0);}
.m4c{transform:matrix(0.227985,-0.102580,0.102580,0.227985,0,0);-ms-transform:matrix(0.227985,-0.102580,0.102580,0.227985,0,0);-webkit-transform:matrix(0.227985,-0.102580,0.102580,0.227985,0,0);}
.m6d{transform:matrix(0.228131,0.102255,-0.102255,0.228131,0,0);-ms-transform:matrix(0.228131,0.102255,-0.102255,0.228131,0,0);-webkit-transform:matrix(0.228131,0.102255,-0.102255,0.228131,0,0);}
.m4d{transform:matrix(0.230621,-0.096510,0.096510,0.230621,0,0);-ms-transform:matrix(0.230621,-0.096510,0.096510,0.230621,0,0);-webkit-transform:matrix(0.230621,-0.096510,0.096510,0.230621,0,0);}
.m6c{transform:matrix(0.231371,0.094696,-0.094696,0.231371,0,0);-ms-transform:matrix(0.231371,0.094696,-0.094696,0.231371,0,0);-webkit-transform:matrix(0.231371,0.094696,-0.094696,0.231371,0,0);}
.m4e{transform:matrix(0.233091,-0.090380,0.090380,0.233091,0,0);-ms-transform:matrix(0.233091,-0.090380,0.090380,0.233091,0,0);-webkit-transform:matrix(0.233091,-0.090380,0.090380,0.233091,0,0);}
.m6b{transform:matrix(0.234361,0.087035,-0.087035,0.234361,0,0);-ms-transform:matrix(0.234361,0.087035,-0.087035,0.234361,0,0);-webkit-transform:matrix(0.234361,0.087035,-0.087035,0.234361,0,0);}
.m4f{transform:matrix(0.235148,-0.084884,0.084884,0.235148,0,0);-ms-transform:matrix(0.235148,-0.084884,0.084884,0.235148,0,0);-webkit-transform:matrix(0.235148,-0.084884,0.084884,0.235148,0,0);}
.m6a{transform:matrix(0.236731,0.080364,-0.080364,0.236731,0,0);-ms-transform:matrix(0.236731,0.080364,-0.080364,0.236731,0,0);-webkit-transform:matrix(0.236731,0.080364,-0.080364,0.236731,0,0);}
.m50{transform:matrix(0.236770,-0.080249,0.080249,0.236770,0,0);-ms-transform:matrix(0.236770,-0.080249,0.080249,0.236770,0,0);-webkit-transform:matrix(0.236770,-0.080249,0.080249,0.236770,0,0);}
.m69{transform:matrix(0.238254,0.075729,-0.075729,0.238254,0,0);-ms-transform:matrix(0.238254,0.075729,-0.075729,0.238254,0,0);-webkit-transform:matrix(0.238254,0.075729,-0.075729,0.238254,0,0);}
.m51{transform:matrix(0.238828,-0.073899,0.073899,0.238828,0,0);-ms-transform:matrix(0.238828,-0.073899,0.073899,0.238828,0,0);-webkit-transform:matrix(0.238828,-0.073899,0.073899,0.238828,0,0);}
.m68{transform:matrix(0.240095,0.069673,-0.069673,0.240095,0,0);-ms-transform:matrix(0.240095,0.069673,-0.069673,0.240095,0,0);-webkit-transform:matrix(0.240095,0.069673,-0.069673,0.240095,0,0);}
.m52{transform:matrix(0.240899,-0.066842,0.066842,0.240899,0,0);-ms-transform:matrix(0.240899,-0.066842,0.066842,0.240899,0,0);-webkit-transform:matrix(0.240899,-0.066842,0.066842,0.240899,0,0);}
.m67{transform:matrix(0.242041,0.062580,-0.062580,0.242041,0,0);-ms-transform:matrix(0.242041,0.062580,-0.062580,0.242041,0,0);-webkit-transform:matrix(0.242041,0.062580,-0.062580,0.242041,0,0);}
.m53{transform:matrix(0.242333,-0.061440,0.061440,0.242333,0,0);-ms-transform:matrix(0.242333,-0.061440,0.061440,0.242333,0,0);-webkit-transform:matrix(0.242333,-0.061440,0.061440,0.242333,0,0);}
.m66{transform:matrix(0.243625,0.056096,-0.056096,0.243625,0,0);-ms-transform:matrix(0.243625,0.056096,-0.056096,0.243625,0,0);-webkit-transform:matrix(0.243625,0.056096,-0.056096,0.243625,0,0);}
.m54{transform:matrix(0.243927,-0.054770,0.054770,0.243927,0,0);-ms-transform:matrix(0.243927,-0.054770,0.054770,0.243927,0,0);-webkit-transform:matrix(0.243927,-0.054770,0.054770,0.243927,0,0);}
.m65{transform:matrix(0.244993,0.049784,-0.049784,0.244993,0,0);-ms-transform:matrix(0.244993,0.049784,-0.049784,0.244993,0,0);-webkit-transform:matrix(0.244993,0.049784,-0.049784,0.244993,0,0);}
.m55{transform:matrix(0.245670,-0.046325,0.046325,0.245670,0,0);-ms-transform:matrix(0.245670,-0.046325,0.046325,0.245670,0,0);-webkit-transform:matrix(0.245670,-0.046325,0.046325,0.245670,0,0);}
.m64{transform:matrix(0.246062,0.044199,-0.044199,0.246062,0,0);-ms-transform:matrix(0.246062,0.044199,-0.044199,0.246062,0,0);-webkit-transform:matrix(0.246062,0.044199,-0.044199,0.246062,0,0);}
.m56{transform:matrix(0.246927,-0.039079,0.039079,0.246927,0,0);-ms-transform:matrix(0.246927,-0.039079,0.039079,0.246927,0,0);-webkit-transform:matrix(0.246927,-0.039079,0.039079,0.246927,0,0);}
.m63{transform:matrix(0.246988,0.038687,-0.038687,0.246988,0,0);-ms-transform:matrix(0.246988,0.038687,-0.038687,0.246988,0,0);-webkit-transform:matrix(0.246988,0.038687,-0.038687,0.246988,0,0);}
.m57{transform:matrix(0.247929,-0.032111,0.032111,0.247929,0,0);-ms-transform:matrix(0.247929,-0.032111,0.032111,0.247929,0,0);-webkit-transform:matrix(0.247929,-0.032111,0.032111,0.247929,0,0);}
.m62{transform:matrix(0.248020,0.031405,-0.031405,0.248020,0,0);-ms-transform:matrix(0.248020,0.031405,-0.031405,0.248020,0,0);-webkit-transform:matrix(0.248020,0.031405,-0.031405,0.248020,0,0);}
.m58{transform:matrix(0.248601,-0.026411,0.026411,0.248601,0,0);-ms-transform:matrix(0.248601,-0.026411,0.026411,0.248601,0,0);-webkit-transform:matrix(0.248601,-0.026411,0.026411,0.248601,0,0);}
.m61{transform:matrix(0.248770,0.024772,-0.024772,0.248770,0,0);-ms-transform:matrix(0.248770,0.024772,-0.024772,0.248770,0,0);-webkit-transform:matrix(0.248770,0.024772,-0.024772,0.248770,0,0);}
.m59{transform:matrix(0.249018,-0.022142,0.022142,0.249018,0,0);-ms-transform:matrix(0.249018,-0.022142,0.022142,0.249018,0,0);-webkit-transform:matrix(0.249018,-0.022142,0.022142,0.249018,0,0);}
.m60{transform:matrix(0.249208,0.019881,-0.019881,0.249208,0,0);-ms-transform:matrix(0.249208,0.019881,-0.019881,0.249208,0,0);-webkit-transform:matrix(0.249208,0.019881,-0.019881,0.249208,0,0);}
.m5a{transform:matrix(0.249404,-0.017247,0.017247,0.249404,0,0);-ms-transform:matrix(0.249404,-0.017247,0.017247,0.249404,0,0);-webkit-transform:matrix(0.249404,-0.017247,0.017247,0.249404,0,0);}
.m5f{transform:matrix(0.249590,0.014305,-0.014305,0.249590,0,0);-ms-transform:matrix(0.249590,0.014305,-0.014305,0.249590,0,0);-webkit-transform:matrix(0.249590,0.014305,-0.014305,0.249590,0,0);}
.m5b{transform:matrix(0.249767,-0.010799,0.010799,0.249767,0,0);-ms-transform:matrix(0.249767,-0.010799,0.010799,0.249767,0,0);-webkit-transform:matrix(0.249767,-0.010799,0.010799,0.249767,0,0);}
.m5e{transform:matrix(0.249894,0.007272,-0.007272,0.249894,0,0);-ms-transform:matrix(0.249894,0.007272,-0.007272,0.249894,0,0);-webkit-transform:matrix(0.249894,0.007272,-0.007272,0.249894,0,0);}
.m5c{transform:matrix(0.249948,-0.005115,0.005115,0.249948,0,0);-ms-transform:matrix(0.249948,-0.005115,0.005115,0.249948,0,0);-webkit-transform:matrix(0.249948,-0.005115,0.005115,0.249948,0,0);}
.m5d{transform:matrix(0.250000,0.000354,-0.000354,0.250000,0,0);-ms-transform:matrix(0.250000,0.000354,-0.000354,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000354,-0.000354,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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.030630px;}
.ls4{letter-spacing:0.039639px;}
.ls3{letter-spacing:0.044991px;}
.ls1{letter-spacing:0.045852px;}
.ls6{letter-spacing:0.079279px;}
.ls0{letter-spacing:0.079529px;}
.ls5{letter-spacing:0.095558px;}
.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;}
}
.ws3{word-spacing:-59.959304px;}
.ws0{word-spacing:-54.182458px;}
.ws2{word-spacing:-52.255081px;}
.ws4{word-spacing:-34.994937px;}
.ws1{word-spacing:-0.239667px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-3.179359px;}
._0{margin-left:-1.000502px;}
._4{width:322.685426px;}
._1{width:425.168780px;}
._2{width:991.161480px;}
._3{width:2227.964341px;}
.fca{color:transparent;}
.fc9{color:rgb(191,191,191);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(0,0,0);}
.fc6{color:rgb(244,244,244);}
.fc5{color:rgb(10,0,61);}
.fc2{color:rgb(192,0,0);}
.fc4{color:rgb(191,204,228);}
.fc1{color:rgb(255,199,185);}
.fc3{color:rgb(152,251,152);}
.fc0{color:rgb(87,10,46);}
.fsb{font-size:95.815781px;}
.fs6{font-size:119.801535px;}
.fs12{font-size:135.707209px;}
.fs13{font-size:145.250613px;}
.fs14{font-size:154.794017px;}
.fs5{font-size:167.709431px;}
.fs16{font-size:169.618105px;}
.fs3{font-size:183.233356px;}
.fsd{font-size:191.695174px;}
.fsc{font-size:208.682434px;}
.fs9{font-size:215.680949px;}
.fs8{font-size:227.641997px;}
.fs2{font-size:231.141264px;}
.fs0{font-size:239.632558px;}
.fs1{font-size:239.666680px;}
.fs7{font-size:256.590342px;}
.fsa{font-size:262.952612px;}
.fse{font-size:263.588826px;}
.fs15{font-size:273.577589px;}
.fs10{font-size:287.574588px;}
.fs4{font-size:347.761651px;}
.fs11{font-size:384.917305px;}
.fsf{font-size:456.810970px;}
.fs4c{font-size:488.901516px;}
.fs49{font-size:488.901517px;}
.fs48{font-size:488.901519px;}
.fs44{font-size:488.901523px;}
.fs1e{font-size:488.901524px;}
.fs20{font-size:488.901530px;}
.fs2b{font-size:488.901533px;}
.fs2a{font-size:488.901534px;}
.fs25{font-size:488.901537px;}
.fs27{font-size:488.901538px;}
.fs3c{font-size:488.901540px;}
.fs24{font-size:488.901542px;}
.fs32{font-size:488.901544px;}
.fs1f{font-size:488.901545px;}
.fs43{font-size:488.901546px;}
.fs3b{font-size:488.901547px;}
.fs29{font-size:488.901549px;}
.fs2d{font-size:488.901551px;}
.fs41{font-size:488.901553px;}
.fs1a{font-size:488.901554px;}
.fs47{font-size:488.901555px;}
.fs38{font-size:488.901556px;}
.fs31{font-size:488.901557px;}
.fs37{font-size:488.901558px;}
.fs28{font-size:488.901559px;}
.fs18{font-size:488.901561px;}
.fs35{font-size:488.901563px;}
.fs34{font-size:488.901564px;}
.fs2e{font-size:488.901566px;}
.fs36{font-size:488.901568px;}
.fs3f{font-size:488.901569px;}
.fs3a{font-size:488.901570px;}
.fs19{font-size:488.901571px;}
.fs3d{font-size:488.901572px;}
.fs17{font-size:488.901574px;}
.fs1c{font-size:488.901576px;}
.fs4b{font-size:488.901577px;}
.fs39{font-size:488.901578px;}
.fs30{font-size:488.901579px;}
.fs40{font-size:488.901581px;}
.fs21{font-size:488.901582px;}
.fs42{font-size:488.901583px;}
.fs23{font-size:488.901584px;}
.fs3e{font-size:488.901586px;}
.fs1d{font-size:488.901589px;}
.fs33{font-size:488.901592px;}
.fs26{font-size:488.901593px;}
.fs4d{font-size:488.901595px;}
.fs46{font-size:488.901596px;}
.fs2c{font-size:488.901599px;}
.fs4a{font-size:488.901604px;}
.fs45{font-size:488.901607px;}
.fs2f{font-size:488.901609px;}
.fs1b{font-size:488.901611px;}
.fs22{font-size:488.901616px;}
.y0{bottom:0.000000px;}
.y4f{bottom:6.522653px;}
.y3b{bottom:8.073734px;}
.y18{bottom:8.189794px;}
.y85{bottom:9.728320px;}
.y80{bottom:9.772104px;}
.y6b{bottom:11.180680px;}
.y69{bottom:11.183492px;}
.y96{bottom:11.266285px;}
.y8c{bottom:11.298749px;}
.y5e{bottom:11.315328px;}
.y90{bottom:11.363788px;}
.y8e{bottom:11.453788px;}
.y94{bottom:11.459589px;}
.y2b{bottom:12.865139px;}
.y54{bottom:14.366849px;}
.y88{bottom:14.378609px;}
.y7a{bottom:14.397871px;}
.y41{bottom:14.527173px;}
.y24{bottom:14.569581px;}
.y5c{bottom:14.583699px;}
.y71{bottom:14.646101px;}
.y13{bottom:15.951420px;}
.y8a{bottom:16.010612px;}
.y34{bottom:16.080806px;}
.y83{bottom:16.118846px;}
.y7{bottom:16.133313px;}
.y30{bottom:16.137488px;}
.y39{bottom:16.165349px;}
.y67{bottom:16.227021px;}
.y27{bottom:17.537694px;}
.y77{bottom:17.578735px;}
.y61{bottom:17.580214px;}
.y58{bottom:17.608339px;}
.y75{bottom:17.663068px;}
.y1b{bottom:17.727278px;}
.y1d{bottom:17.756625px;}
.y73{bottom:19.103945px;}
.y2{bottom:27.000685px;}
.y92{bottom:28.974182px;}
.y7b{bottom:34.830118px;}
.y4e{bottom:35.152866px;}
.y20{bottom:48.510117px;}
.y7f{bottom:49.536289px;}
.y17{bottom:49.544546px;}
.y29{bottom:52.876659px;}
.y1f{bottom:55.126588px;}
.y4d{bottom:63.783079px;}
.y97{bottom:69.750116px;}
.y87{bottom:71.639035px;}
.y5b{bottom:76.615827px;}
.y70{bottom:76.678229px;}
.y40{bottom:78.149868px;}
.y33{bottom:79.703501px;}
.y2f{bottom:79.760183px;}
.y23{bottom:81.373410px;}
.y12{bottom:84.345817px;}
.y79{bottom:84.382836px;}
.y82{bottom:87.694378px;}
.y6{bottom:87.708845px;}
.y38{bottom:87.740881px;}
.y60{bottom:89.155746px;}
.y4c{bottom:92.413292px;}
.y1a{bottom:94.074513px;}
.y53{bottom:95.485785px;}
.y57{bottom:95.546140px;}
.y66{bottom:103.708227px;}
.y26{bottom:120.924573px;}
.y4b{bottom:121.043505px;}
.y5a{bottom:138.647955px;}
.y6f{bottom:138.710357px;}
.y31{bottom:141.750113px;}
.y3f{bottom:141.772564px;}
.y16{bottom:141.797454px;}
.y32{bottom:143.326196px;}
.y22{bottom:148.177240px;}
.y4a{bottom:149.673717px;}
.y11{bottom:152.740215px;}
.y52{bottom:157.517913px;}
.y5{bottom:159.284377px;}
.y37{bottom:159.316413px;}
.y65{bottom:160.968652px;}
.y56{bottom:173.483942px;}
.y49{bottom:178.303930px;}
.y2d{bottom:184.707766px;}
.y48{bottom:206.934143px;}
.y28{bottom:216.712363px;}
.y21{bottom:218.162205px;}
.y51{bottom:219.550041px;}
.y3e{bottom:229.253769px;}
.y15{bottom:245.184333px;}
.y4{bottom:254.718419px;}
.y36{bottom:254.750455px;}
.y47{bottom:265.785136px;}
.y10{bottom:284.757307px;}
.y64{bottom:286.623475px;}
.y46{bottom:300.777618px;}
.y3d{bottom:307.191571px;}
.y45{bottom:335.770101px;}
.yf{bottom:343.608300px;}
.y6d{bottom:354.824546px;}
.y44{bottom:370.762583px;}
.y78{bottom:371.070104px;}
.y1e{bottom:392.814960px;}
.y2e{bottom:400.590102px;}
.y43{bottom:405.755065px;}
.ye{bottom:412.002697px;}
.y63{bottom:423.412270px;}
.y7d{bottom:438.360934px;}
.y84{bottom:448.830100px;}
.y7c{bottom:449.420348px;}
.yd{bottom:480.397094px;}
.y5f{bottom:535.590097px;}
.yc{bottom:612.414187px;}
.yb{bottom:671.265180px;}
.y42{bottom:728.550089px;}
.ya{bottom:739.659577px;}
.y184{bottom:800.340408px;}
.y183{bottom:800.628074px;}
.y185{bottom:801.336479px;}
.y182{bottom:801.467223px;}
.y186{bottom:803.748664px;}
.y181{bottom:803.781261px;}
.y187{bottom:805.647312px;}
.y180{bottom:806.680729px;}
.y9{bottom:808.053974px;}
.y188{bottom:808.975215px;}
.y17f{bottom:809.325841px;}
.y17e{bottom:812.612564px;}
.y189{bottom:814.955019px;}
.y17d{bottom:818.832735px;}
.y18a{bottom:821.901330px;}
.y18b{bottom:826.358314px;}
.y17c{bottom:826.402472px;}
.y18c{bottom:835.543837px;}
.y17b{bottom:836.091892px;}
.y18d{bottom:843.534149px;}
.y17a{bottom:850.275073px;}
.y18e{bottom:855.808167px;}
.y179{bottom:857.257896px;}
.y18f{bottom:868.435782px;}
.y178{bottom:869.917436px;}
.y1{bottom:876.668972px;}
.y190{bottom:879.437063px;}
.y177{bottom:885.156722px;}
.y191{bottom:887.584072px;}
.y176{bottom:897.419255px;}
.y175{bottom:906.836998px;}
.y192{bottom:910.296742px;}
.y174{bottom:925.208785px;}
.y193{bottom:925.703908px;}
.y173{bottom:939.720202px;}
.y194{bottom:952.589212px;}
.y172{bottom:960.580542px;}
.y195{bottom:963.991544px;}
.y171{bottom:982.605690px;}
.y196{bottom:986.519980px;}
.y6a{bottom:990.630078px;}
.y170{bottom:995.227367px;}
.y68{bottom:997.830078px;}
.y5d{bottom:998.550078px;}
.y197{bottom:1000.044609px;}
.y16f{bottom:1008.265051px;}
.y16e{bottom:1021.695287px;}
.y198{bottom:1023.463083px;}
.y16d{bottom:1035.515114px;}
.y199{bottom:1042.536157px;}
.y16c{bottom:1049.720271px;}
.y16b{bottom:1064.306104px;}
.y16a{bottom:1079.270037px;}
.y169{bottom:1094.606734px;}
.y168{bottom:1110.313355px;}
.y167{bottom:1126.384501px;}
.y166{bottom:1142.815981px;}
.y165{bottom:1159.603485px;}
.y55{bottom:1173.510070px;}
.y164{bottom:1176.742759px;}
.y163{bottom:1194.228518px;}
.y162{bottom:1212.055460px;}
.y161{bottom:1230.220403px;}
.y160{bottom:1248.716662px;}
.y59{bottom:1250.910067px;}
.y86{bottom:1253.430067px;}
.y19{bottom:1254.510067px;}
.y15f{bottom:1267.539612px;}
.y15e{bottom:1286.685122px;}
.y15d{bottom:1306.146476px;}
.y91{bottom:1320.750064px;}
.y15c{bottom:1325.919454px;}
.y15b{bottom:1345.998150px;}
.y15a{bottom:1366.377252px;}
.y159{bottom:1387.050489px;}
.y158{bottom:1408.012988px;}
.y157{bottom:1429.258823px;}
.y156{bottom:1450.782764px;}
.y155{bottom:1472.577470px;}
.y154{bottom:1494.638437px;}
.y153{bottom:1516.958332px;}
.y152{bottom:1539.531596px;}
.y8f{bottom:1552.230054px;}
.y8b{bottom:1552.590054px;}
.y89{bottom:1559.070054px;}
.y151{bottom:1577.295291px;}
.y8d{bottom:1605.150052px;}
.y150{bottom:1609.177281px;}
.y14f{bottom:1650.538649px;}
.y2c{bottom:1655.190050px;}
.y14e{bottom:1676.052688px;}
.y98{bottom:1685.631708px;}
.y14d{bottom:1720.547878px;}
.y99{bottom:1729.946800px;}
.y76{bottom:1732.230047px;}
.y14c{bottom:1744.857289px;}
.y9a{bottom:1775.495410px;}
.y14b{bottom:1805.306734px;}
.y9b{bottom:1809.209320px;}
.y14a{bottom:1844.218675px;}
.y9c{bottom:1855.855598px;}
.y9d{bottom:1881.166632px;}
.y1c{bottom:1883.430041px;}
.y149{bottom:1906.177051px;}
.y9e{bottom:1916.206721px;}
.y148{bottom:1931.569464px;}
.y7e{bottom:1962.990037px;}
.y9f{bottom:1964.208268px;}
.y147{bottom:1966.871842px;}
.ya0{bottom:2008.880079px;}
.y146{bottom:2011.395196px;}
.y2a{bottom:2018.790035px;}
.ya1{bottom:2034.673762px;}
.y145{bottom:2060.230343px;}
.ya2{bottom:2096.042010px;}
.y144{bottom:2096.478076px;}
.y143{bottom:2143.166814px;}
.ya3{bottom:2145.478343px;}
.y142{bottom:2169.698748px;}
.ya4{bottom:2191.054624px;}
.y141{bottom:2215.601341px;}
.ya5{bottom:2237.051937px;}
.y81{bottom:2252.070025px;}
.y140{bottom:2265.626590px;}
.ya6{bottom:2266.043488px;}
.ya7{bottom:2292.935927px;}
.y13f{bottom:2302.614975px;}
.y13e{bottom:2329.584793px;}
.ya8{bottom:2330.010433px;}
.y13d{bottom:2375.966858px;}
.ya9{bottom:2377.706062px;}
.yaa{bottom:2404.645278px;}
.y13c{bottom:2422.174382px;}
.yab{bottom:2449.263504px;}
.y13b{bottom:2466.803676px;}
.y13a{bottom:2493.753617px;}
.yac{bottom:2495.478797px;}
.y139{bottom:2541.459021px;}
.yad{bottom:2541.893127px;}
.yae{bottom:2568.860517px;}
.y138{bottom:2578.546014px;}
.y137{bottom:2605.474759px;}
.yaf{bottom:2605.880994px;}
.y136{bottom:2634.481157px;}
.yb0{bottom:2655.947073px;}
.y135{bottom:2680.520132px;}
.yb1{bottom:2701.915935px;}
.y72{bottom:2725.470006px;}
.y134{bottom:2726.152930px;}
.yb2{bottom:2728.474280px;}
.yb3{bottom:2775.222918px;}
.y133{bottom:2775.666008px;}
.yb4{bottom:2811.537483px;}
.y50{bottom:2812.950002px;}
.y6e{bottom:2814.030002px;}
.y132{bottom:2837.150096px;}
.y93{bottom:2843.910001px;}
.yb5{bottom:2860.460797px;}
.y131{bottom:2862.995633px;}
.yb6{bottom:2905.076671px;}
.y130{bottom:2907.748391px;}
.yb7{bottom:2940.477713px;}
.y12f{bottom:2955.867653px;}
.yb8{bottom:2965.918683px;}
.y12e{bottom:2990.992911px;}
.y14{bottom:2993.669994px;}
.y12d{bottom:3016.390938px;}
.yb9{bottom:3028.057655px;}
.y12c{bottom:3063.157146px;}
.yba{bottom:3067.075551px;}
.y3c{bottom:3068.549991px;}
.y95{bottom:3069.629991px;}
.y12b{bottom:3096.980251px;}
.y25{bottom:3127.229989px;}
.ybb{bottom:3127.739672px;}
.y12a{bottom:3142.699734px;}
.ybc{bottom:3152.130338px;}
.y129{bottom:3187.172128px;}
.ybd{bottom:3196.788994px;}
.y128{bottom:3210.985570px;}
.ybe{bottom:3222.407067px;}
.y127{bottom:3234.884025px;}
.y126{bottom:3258.565065px;}
.ybf{bottom:3263.934449px;}
.y125{bottom:3282.022332px;}
.yc0{bottom:3295.971481px;}
.y124{bottom:3305.249226px;}
.y123{bottom:3328.239674px;}
.yc1{bottom:3333.920354px;}
.y122{bottom:3350.987270px;}
.yc2{bottom:3356.606537px;}
.y121{bottom:3373.485786px;}
.yc3{bottom:3379.042110px;}
.y3a{bottom:3385.709978px;}
.y120{bottom:3395.728922px;}
.yc4{bottom:3401.220870px;}
.y11f{bottom:3417.710972px;}
.y35{bottom:3420.989977px;}
.yc5{bottom:3423.136686px;}
.y11e{bottom:3439.425329px;}
.yc6{bottom:3444.783588px;}
.y11d{bottom:3460.866374px;}
.yc7{bottom:3466.156053px;}
.y11c{bottom:3482.028385px;}
.yc8{bottom:3487.247610px;}
.y11b{bottom:3502.905295px;}
.yc9{bottom:3508.052670px;}
.y8{bottom:3520.349972px;}
.y11a{bottom:3523.491511px;}
.yca{bottom:3528.565721px;}
.y119{bottom:3543.781208px;}
.ycb{bottom:3548.780856px;}
.y118{bottom:3563.769111px;}
.ycc{bottom:3568.692795px;}
.y117{bottom:3583.449667px;}
.ycd{bottom:3588.295993px;}
.y116{bottom:3602.817339px;}
.yce{bottom:3607.585028px;}
.y115{bottom:3621.866863px;}
.ycf{bottom:3626.554631px;}
.y114{bottom:3640.592994px;}
.yd0{bottom:3645.199824px;}
.y113{bottom:3658.990898px;}
.yd1{bottom:3663.514951px;}
.y6c{bottom:3668.669966px;}
.y112{bottom:3677.055214px;}
.yd2{bottom:3681.495523px;}
.y111{bottom:3694.781072px;}
.yd3{bottom:3699.136598px;}
.y110{bottom:3712.163596px;}
.yd4{bottom:3716.433162px;}
.y10f{bottom:3729.197976px;}
.yd5{bottom:3733.380081px;}
.y10e{bottom:3745.879805px;}
.yd6{bottom:3749.973392px;}
.y10d{bottom:3762.204256px;}
.yd7{bottom:3766.208281px;}
.y10c{bottom:3778.166898px;}
.yd8{bottom:3782.080305px;}
.y10b{bottom:3793.763420px;}
.yd9{bottom:3797.585129px;}
.y10a{bottom:3808.989447px;}
.yda{bottom:3812.718387px;}
.ydb{bottom:3827.476007px;}
.y109{bottom:3833.376558px;}
.ydc{bottom:3841.853987px;}
.y108{bottom:3852.727093px;}
.ydd{bottom:3855.848372px;}
.yde{bottom:3869.455595px;}
.y107{bottom:3876.529428px;}
.ydf{bottom:3882.671203px;}
.y106{bottom:3890.283113px;}
.ye0{bottom:3895.492485px;}
.ye1{bottom:3907.889000px;}
.y105{bottom:3913.219693px;}
.y104{bottom:3924.846272px;}
.ye2{bottom:3929.518397px;}
.ye3{bottom:3949.950568px;}
.y103{bottom:3952.266620px;}
.ye4{bottom:3964.154448px;}
.y102{bottom:3968.036820px;}
.ye5{bottom:3982.119684px;}
.ye6{bottom:3991.290482px;}
.y101{bottom:3991.300477px;}
.y100{bottom:3999.690504px;}
.ye7{bottom:4003.241927px;}
.yff{bottom:4010.995093px;}
.ye8{bottom:4018.040936px;}
.yfe{bottom:4024.028822px;}
.ye9{bottom:4030.309116px;}
.yfd{bottom:4036.749109px;}
.yea{bottom:4037.057550px;}
.yfc{bottom:4045.061409px;}
.yeb{bottom:4050.673911px;}
.yfb{bottom:4054.679268px;}
.yfa{bottom:4059.383900px;}
.yec{bottom:4059.910643px;}
.yf9{bottom:4066.732236px;}
.yed{bottom:4067.066914px;}
.yee{bottom:4072.874520px;}
.yf8{bottom:4073.169100px;}
.yef{bottom:4075.907366px;}
.yf7{bottom:4076.825551px;}
.yf0{bottom:4078.292686px;}
.yf6{bottom:4078.984986px;}
.yf1{bottom:4080.865051px;}
.yf5{bottom:4081.803832px;}
.yf2{bottom:4082.754150px;}
.yf4{bottom:4083.218392px;}
.yf3{bottom:4083.343946px;}
.y3{bottom:4132.709947px;}
.y74{bottom:4405.589936px;}
.y62{bottom:4486.229932px;}
.h21{height:30.599999px;}
.h40{height:37.079998px;}
.h45{height:38.519998px;}
.h2e{height:43.199998px;}
.h44{height:59.039998px;}
.h39{height:63.719997px;}
.h11{height:64.079997px;}
.h19{height:66.959997px;}
.h36{height:71.639997px;}
.h3d{height:73.439997px;}
.h27{height:79.019949px;}
.h2{height:83.252459px;}
.h47{height:86.399996px;}
.h35{height:87.215517px;}
.h38{height:87.839996px;}
.h26{height:88.388730px;}
.he{height:98.801168px;}
.h49{height:105.287142px;}
.h42{height:106.919996px;}
.h3e{height:111.918689px;}
.h2f{height:114.071893px;}
.h41{height:119.789202px;}
.h1c{height:119.879995px;}
.hd{height:122.092466px;}
.h3a{height:127.439995px;}
.h46{height:127.659714px;}
.h3f{height:130.679995px;}
.h18{height:133.879214px;}
.h30{height:133.919994px;}
.h13{height:138.379213px;}
.h2a{height:139.554087px;}
.h4a{height:139.885244px;}
.h43{height:139.937477px;}
.hf{height:140.399994px;}
.h24{height:149.439095px;}
.ha{height:151.113837px;}
.h29{height:151.920812px;}
.h1d{height:157.447093px;}
.h14{height:159.716036px;}
.h1f{height:162.898446px;}
.h3{height:162.992263px;}
.h5{height:163.834644px;}
.h20{height:166.058115px;}
.h1a{height:173.664723px;}
.h31{height:174.956676px;}
.h2d{height:177.119993px;}
.h10{height:177.784031px;}
.h48{height:182.202674px;}
.h2c{height:182.633078px;}
.h1e{height:183.239992px;}
.h1b{height:185.039992px;}
.h16{height:187.737955px;}
.h9{height:190.623826px;}
.h17{height:191.159992px;}
.h37{height:196.584191px;}
.h6{height:197.654796px;}
.h23{height:210.362089px;}
.h12{height:211.611859px;}
.h2b{height:221.399991px;}
.h7{height:227.683346px;}
.h28{height:257.759989px;}
.h15{height:261.359989px;}
.hc{height:278.209321px;}
.h4{height:297.719988px;}
.h3c{height:307.933844px;}
.hb{height:315.359987px;}
.h34{height:354.959985px;}
.h22{height:358.199985px;}
.h33{height:365.448776px;}
.h7b{height:421.820790px;}
.h79{height:421.820791px;}
.h78{height:421.820793px;}
.h73{height:421.820796px;}
.h53{height:421.820797px;}
.h55{height:421.820802px;}
.h60{height:421.820805px;}
.h5f{height:421.820806px;}
.h5a{height:421.820808px;}
.h5c{height:421.820810px;}
.h6f{height:421.820812px;}
.h59{height:421.820813px;}
.h67{height:421.820814px;}
.h54{height:421.820816px;}
.h72{height:421.820817px;}
.h5e{height:421.820818px;}
.h62{height:421.820820px;}
.h4f{height:421.820823px;}
.h76{height:421.820824px;}
.h66{height:421.820826px;}
.h6c{height:421.820827px;}
.h5d{height:421.820828px;}
.h4d{height:421.820829px;}
.h6a{height:421.820831px;}
.h69{height:421.820832px;}
.h63{height:421.820833px;}
.h6b{height:421.820835px;}
.h6d{height:421.820837px;}
.h4e{height:421.820838px;}
.h77{height:421.820840px;}
.h4c{height:421.820841px;}
.h51{height:421.820842px;}
.h6e{height:421.820843px;}
.h65{height:421.820845px;}
.h71{height:421.820846px;}
.h56{height:421.820848px;}
.h58{height:421.820849px;}
.h70{height:421.820850px;}
.h52{height:421.820853px;}
.h68{height:421.820856px;}
.h5b{height:421.820857px;}
.h7c{height:421.820859px;}
.h75{height:421.820860px;}
.h61{height:421.820862px;}
.h7a{height:421.820866px;}
.h74{height:421.820869px;}
.h64{height:421.820870px;}
.h50{height:421.820872px;}
.h57{height:421.820877px;}
.h25{height:428.039982px;}
.h3b{height:450.719981px;}
.h32{height:512.639979px;}
.h8{height:849.599965px;}
.h4b{height:4922.999795px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w26{width:19.439999px;}
.w25{width:21.239999px;}
.w27{width:25.919999px;}
.wd{width:30.239999px;}
.w1a{width:32.039999px;}
.w28{width:33.839999px;}
.wb{width:133.879214px;}
.w8{width:138.379343px;}
.w11{width:183.239992px;}
.w1f{width:210.239991px;}
.we{width:278.639988px;}
.w20{width:281.879988px;}
.w24{width:302.399987px;}
.w17{width:324.719986px;}
.w22{width:386.639984px;}
.wf{width:463.319981px;}
.w29{width:472.679980px;}
.w15{width:507.599979px;}
.w7{width:519.119978px;}
.w16{width:539.639978px;}
.w1b{width:542.519977px;}
.w1c{width:544.319977px;}
.w14{width:593.639975px;}
.w3{width:629.999974px;}
.w10{width:631.799974px;}
.w6{width:649.439973px;}
.w1d{width:684.359971px;}
.w2{width:688.521715px;}
.w5{width:846.359965px;}
.w18{width:878.399963px;}
.w12{width:915.119962px;}
.wc{width:948.239960px;}
.w21{width:950.039960px;}
.w13{width:970.919960px;}
.wa{width:1053.359956px;}
.w23{width:1056.599956px;}
.w4{width:1415.879941px;}
.w9{width:1936.079919px;}
.w1e{width:2409.839900px;}
.w19{width:3016.079874px;}
.w2a{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x15{left:1.842307px;}
.x51{left:2.863793px;}
.x46{left:4.820663px;}
.x20{left:7.959301px;}
.x16{left:10.242491px;}
.x36{left:12.671351px;}
.x22{left:17.915917px;}
.x2e{left:19.640093px;}
.x4c{left:20.737935px;}
.x35{left:22.985187px;}
.x2{left:24.416786px;}
.x34{left:27.483510px;}
.x44{left:28.799999px;}
.x12{left:32.991231px;}
.x9{left:34.584876px;}
.x28{left:44.772613px;}
.x1b{left:51.478839px;}
.x19{left:54.107175px;}
.x13{left:57.297088px;}
.x7{left:67.612317px;}
.x2a{left:69.302144px;}
.x39{left:70.349955px;}
.x33{left:73.088059px;}
.xf{left:85.234506px;}
.x45{left:90.719996px;}
.x52{left:92.109534px;}
.x3d{left:95.241810px;}
.x26{left:102.599996px;}
.xd{left:104.147346px;}
.x2c{left:105.630141px;}
.x24{left:115.856573px;}
.x21{left:125.639995px;}
.x4b{left:135.258786px;}
.x11{left:138.664551px;}
.x6b{left:140.036560px;}
.x6a{left:141.361852px;}
.x69{left:143.824126px;}
.x6c{left:144.991835px;}
.x68{left:146.842290px;}
.x6d{left:148.203568px;}
.x67{left:149.551908px;}
.x66{left:152.932969px;}
.x6e{left:154.038839px;}
.x25{left:157.857492px;}
.x65{left:159.293713px;}
.x6f{left:160.835642px;}
.x70{left:165.220990px;}
.x64{left:166.998744px;}
.x71{left:174.276899px;}
.x63{left:176.830611px;}
.x72{left:182.153561px;}
.x5{left:183.375799px;}
.x29{left:188.346171px;}
.x62{left:191.186394px;}
.x73{left:194.286167px;}
.x61{left:198.245437px;}
.x2d{left:202.779015px;}
.x1c{left:206.639991px;}
.x60{left:211.050807px;}
.x30{left:217.382343px;}
.x1d{left:219.491409px;}
.xe{left:223.116816px;}
.x6{left:226.693907px;}
.x5f{left:238.801455px;}
.x27{left:242.624283px;}
.x4{left:245.904987px;}
.x5e{left:248.278289px;}
.x74{left:263.569617px;}
.x32{left:264.850839px;}
.x5d{left:266.804616px;}
.x5c{left:281.414982px;}
.x75{left:290.263227px;}
.x5b{left:302.396745px;}
.x5a{left:324.560285px;}
.x76{left:337.444799px;}
.x77{left:360.749080px;}
.x78{left:379.716362px;}
.x31{left:385.684262px;}
.x79{left:403.649200px;}
.x7a{left:418.603668px;}
.xa{left:429.816017px;}
.x7b{left:433.931669px;}
.x42{left:440.999982px;}
.xc{left:447.113437px;}
.x7c{left:449.628771px;}
.x7d{left:465.690890px;}
.x3e{left:482.759980px;}
.x7e{left:498.892300px;}
.x7f{left:516.022627px;}
.x80{left:533.499327px;}
.x18{left:542.522044px;}
.x81{left:551.318386px;}
.x82{left:569.474395px;}
.x83{left:587.962471px;}
.x84{left:606.777892px;}
.x85{left:625.915107px;}
.x86{left:645.368885px;}
.x87{left:665.134073px;}
.x88{left:685.205097px;}
.x89{left:705.576459px;}
.x1{left:713.307570px;}
.x1a{left:717.479970px;}
.x49{left:722.159970px;}
.x37{left:723.754380px;}
.x8a{left:726.242868px;}
.x38{left:747.719969px;}
.x8b{left:768.437235px;}
.x47{left:773.279968px;}
.x3a{left:774.359968px;}
.x8c{left:789.953831px;}
.x8d{left:811.742056px;}
.xb{left:820.648245px;}
.x8e{left:833.795920px;}
.x8f{left:856.109570px;}
.x90{left:878.676829px;}
.x58{left:889.199963px;}
.x91{left:901.491402px;}
.x146{left:923.342231px;}
.x92{left:924.547402px;}
.x93{left:947.838069px;}
.x145{left:955.322618px;}
.x94{left:971.357143px;}
.x95{left:995.098234px;}
.x144{left:996.781396px;}
.x96{left:1019.054829px;}
.x143{left:1022.359435px;}
.x97{left:1042.924478px;}
.x142{left:1066.951613px;}
.x98{left:1087.495891px;}
.x141{left:1091.308811px;}
.x99{left:1133.307488px;}
.x140{left:1151.893004px;}
.x9a{left:1167.195184px;}
.x13f{left:1190.865756px;}
.x9b{left:1214.044155px;}
.x9c{left:1239.483400px;}
.x13e{left:1252.937467px;}
.x9d{left:1274.663251px;}
.x13d{left:1278.354809px;}
.x13c{left:1313.722486px;}
.x3{left:1318.679945px;}
.x9e{left:1322.849952px;}
.x13b{left:1358.301359px;}
.x9f{left:1367.659426px;}
.x43{left:1391.759942px;}
.xa0{left:1393.535781px;}
.x13a{left:1407.188524px;}
.x139{left:1443.479487px;}
.xa1{left:1455.081810px;}
.x138{left:1490.201548px;}
.xa2{left:1504.636728px;}
.x137{left:1516.747026px;}
.x48{left:1536.839936px;}
.xa3{left:1550.302615px;}
.x14{left:1555.559935px;}
.x136{left:1562.694877px;}
.x10{left:1595.879934px;}
.x135{left:1612.743953px;}
.x17{left:1618.559933px;}
.xa4{left:1625.389436px;}
.x134{left:1649.754112px;}
.xa5{left:1652.328459px;}
.x133{left:1676.716769px;}
.xa6{left:1689.427849px;}
.x132{left:1723.123431px;}
.x53{left:1726.919928px;}
.xa7{left:1737.142722px;}
.x54{left:1756.079927px;}
.xa8{left:1764.095329px;}
.x131{left:1769.336226px;}
.x4f{left:1801.079925px;}
.xa9{left:1808.724275px;}
.x130{left:1813.955892px;}
.x12f{left:1840.897948px;}
.xaa{left:1854.925906px;}
.x3f{left:1877.545682px;}
.x12e{left:1888.600312px;}
.xab{left:1901.296233px;}
.x56{left:1913.399920px;}
.x12d{left:1925.683024px;}
.xac{left:1928.255519px;}
.x4d{left:1934.639919px;}
.x12c{left:1952.584167px;}
.xad{left:1965.228184px;}
.x12b{left:1981.585321px;}
.xae{left:2015.224585px;}
.x55{left:2019.599916px;}
.x12a{left:2027.600771px;}
.x3b{left:2061.719914px;}
.x129{left:2073.200223px;}
.x8{left:2082.599913px;}
.xaf{left:2087.605664px;}
.x57{left:2091.959913px;}
.x128{left:2122.665332px;}
.xb0{left:2134.251142px;}
.xb1{left:2170.461670px;}
.x127{left:2184.076336px;}
.x40{left:2210.471316px;}
.xb2{left:2219.239617px;}
.x126{left:2254.599661px;}
.xb3{left:2263.704119px;}
.xb4{left:2298.956184px;}
.x125{left:2302.646636px;}
.xb5{left:2324.310161px;}
.x124{left:2337.723252px;}
.x123{left:2363.062829px;}
.xb6{left:2386.164447px;}
.x122{left:2409.763177px;}
.xb7{left:2425.005174px;}
.x3c{left:2427.839899px;}
.x50{left:2441.879898px;}
.x121{left:2443.519757px;}
.x1e{left:2462.039897px;}
.xb8{left:2485.331699px;}
.x120{left:2489.131168px;}
.xb9{left:2509.588058px;}
.x41{left:2513.474402px;}
.x11f{left:2533.511645px;}
.xba{left:2553.979634px;}
.x11e{left:2557.259382px;}
.x4e{left:2559.599893px;}
.x2f{left:2573.279893px;}
.xbb{left:2579.431994px;}
.x11d{left:2581.098692px;}
.x2b{left:2589.479892px;}
.x11c{left:2604.719576px;}
.xbc{left:2620.685133px;}
.x11b{left:2628.114286px;}
.x11a{left:2651.276988px;}
.xbd{left:2652.480548px;}
.x119{left:2674.201620px;}
.xbe{left:2690.134376px;}
.x118{left:2696.881616px;}
.xbf{left:2712.639139px;}
.x117{left:2719.311000px;}
.xc0{left:2734.888698px;}
.x116{left:2741.483062px;}
.xc1{left:2756.877178px;}
.x115{left:2763.392241px;}
.xc2{left:2778.598444px;}
.x114{left:2785.032558px;}
.xc3{left:2800.046415px;}
.x113{left:2806.398008px;}
.xc4{left:2821.215340px;}
.x112{left:2827.482451px;}
.x23{left:2832.839882px;}
.xc5{left:2842.099466px;}
.x111{left:2848.280505px;}
.xc6{left:2862.693033px;}
.x110{left:2868.786014px;}
.xc7{left:2882.990298px;}
.x10f{left:2888.993789px;}
.xc8{left:2902.985816px;}
.x10e{left:2908.897888px;}
.xc9{left:2922.673966px;}
.x10d{left:2928.493378px;}
.xca{left:2942.049538px;}
.x10c{left:2947.774691px;}
.xcb{left:2961.106922px;}
.x10b{left:2966.736214px;}
.x59{left:2976.479876px;}
.xcc{left:2979.841488px;}
.x10a{left:2985.373045px;}
.xcd{left:2998.247364px;}
.x109{left:3003.679863px;}
.xce{left:3016.320218px;}
.x108{left:3021.652157px;}
.xcf{left:3034.054481px;}
.x107{left:3039.284608px;}
.xd0{left:3051.445917px;}
.x106{left:3056.572305px;}
.xd1{left:3068.488805px;}
.x105{left:3073.510615px;}
.xd2{left:3085.179327px;}
.x104{left:3090.094975px;}
.xd3{left:3101.512859px;}
.x103{left:3106.320760px;}
.xd4{left:3117.484780px;}
.x102{left:3122.183740px;}
.xd5{left:3133.090406px;}
.x101{left:3137.679237px;}
.xd6{left:3148.325879px;}
.x100{left:3152.803378px;}
.xd7{left:3163.186580px;}
.xd8{left:3177.669211px;}
.xd9{left:3191.768794px;}
.xff{left:3196.241734px;}
.xda{left:3205.482109px;}
.xdb{left:3218.805512px;}
.xfe{left:3219.848117px;}
.xdc{left:3231.734654px;}
.xfd{left:3233.488444px;}
.xdd{left:3244.248195px;}
.xfc{left:3256.218619px;}
.xde{left:3266.072223px;}
.xfb{left:3267.731059px;}
.xdf{left:3286.725646px;}
.xfa{left:3294.890036px;}
.xe0{left:3301.084021px;}
.xf9{left:3310.474612px;}
.xe1{left:3319.244878px;}
.xe2{left:3328.546627px;}
.xf8{left:3333.467502px;}
.xe3{left:3340.650601px;}
.xf7{left:3341.730188px;}
.xf6{left:3352.890299px;}
.xe4{left:3355.672004px;}
.x4a{left:3357.719860px;}
.xf5{left:3365.720630px;}
.xe5{left:3368.129582px;}
.xe6{left:3374.994928px;}
.xf4{left:3378.215548px;}
.xf3{left:3386.370390px;}
.xe7{left:3388.899444px;}
.xf2{left:3395.767981px;}
.xe8{left:3398.364656px;}
.xf1{left:3400.345629px;}
.xe9{left:3405.727545px;}
.xf0{left:3407.499305px;}
.xea{left:3411.739714px;}
.xef{left:3413.705653px;}
.xeb{left:3414.894905px;}
.xec{left:3417.418221px;}
.xed{left:3420.149536px;}
.xee{left:3422.247433px;}
.x1f{left:3493.439854px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.027227pt;}
.ls4{letter-spacing:0.035235pt;}
.ls3{letter-spacing:0.039992pt;}
.ls1{letter-spacing:0.040758pt;}
.ls6{letter-spacing:0.070470pt;}
.ls0{letter-spacing:0.070693pt;}
.ls5{letter-spacing:0.084940pt;}
.ws3{word-spacing:-53.297159pt;}
.ws0{word-spacing:-48.162185pt;}
.ws2{word-spacing:-46.448961pt;}
.ws4{word-spacing:-31.106610pt;}
.ws1{word-spacing:-0.213037pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-2.826097pt;}
._0{margin-left:-0.889335pt;}
._4{width:286.831489pt;}
._1{width:377.927805pt;}
._2{width:881.032427pt;}
._3{width:1980.412747pt;}
.fsb{font-size:85.169583pt;}
.fs6{font-size:106.490253pt;}
.fs12{font-size:120.628630pt;}
.fs13{font-size:129.111656pt;}
.fs14{font-size:137.594682pt;}
.fs5{font-size:149.075049pt;}
.fs16{font-size:150.771649pt;}
.fs3{font-size:162.874094pt;}
.fsd{font-size:170.395710pt;}
.fsc{font-size:185.495497pt;}
.fs9{font-size:191.716399pt;}
.fs8{font-size:202.348442pt;}
.fs2{font-size:205.458901pt;}
.fs0{font-size:213.006719pt;}
.fs1{font-size:213.037049pt;}
.fs7{font-size:228.080304pt;}
.fsa{font-size:233.735655pt;}
.fse{font-size:234.301179pt;}
.fs15{font-size:243.180079pt;}
.fs10{font-size:255.621856pt;}
.fs4{font-size:309.121468pt;}
.fs11{font-size:342.148716pt;}
.fsf{font-size:406.054196pt;}
.fs4c{font-size:434.579125pt;}
.fs49{font-size:434.579126pt;}
.fs48{font-size:434.579128pt;}
.fs44{font-size:434.579131pt;}
.fs1e{font-size:434.579132pt;}
.fs20{font-size:434.579138pt;}
.fs2b{font-size:434.579140pt;}
.fs2a{font-size:434.579142pt;}
.fs25{font-size:434.579144pt;}
.fs27{font-size:434.579145pt;}
.fs3c{font-size:434.579147pt;}
.fs24{font-size:434.579148pt;}
.fs32{font-size:434.579150pt;}
.fs1f{font-size:434.579151pt;}
.fs43{font-size:434.579152pt;}
.fs3b{font-size:434.579153pt;}
.fs29{font-size:434.579154pt;}
.fs2d{font-size:434.579156pt;}
.fs41{font-size:434.579158pt;}
.fs1a{font-size:434.579159pt;}
.fs47{font-size:434.579160pt;}
.fs38{font-size:434.579161pt;}
.fs31{font-size:434.579162pt;}
.fs37{font-size:434.579163pt;}
.fs28{font-size:434.579164pt;}
.fs18{font-size:434.579165pt;}
.fs35{font-size:434.579167pt;}
.fs34{font-size:434.579168pt;}
.fs2e{font-size:434.579169pt;}
.fs36{font-size:434.579171pt;}
.fs3f{font-size:434.579172pt;}
.fs3a{font-size:434.579173pt;}
.fs19{font-size:434.579175pt;}
.fs3d{font-size:434.579176pt;}
.fs17{font-size:434.579177pt;}
.fs1c{font-size:434.579178pt;}
.fs4b{font-size:434.579179pt;}
.fs39{font-size:434.579181pt;}
.fs30{font-size:434.579182pt;}
.fs40{font-size:434.579183pt;}
.fs21{font-size:434.579184pt;}
.fs42{font-size:434.579185pt;}
.fs23{font-size:434.579186pt;}
.fs3e{font-size:434.579187pt;}
.fs1d{font-size:434.579190pt;}
.fs33{font-size:434.579192pt;}
.fs26{font-size:434.579194pt;}
.fs4d{font-size:434.579196pt;}
.fs46{font-size:434.579197pt;}
.fs2c{font-size:434.579199pt;}
.fs4a{font-size:434.579204pt;}
.fs45{font-size:434.579206pt;}
.fs2f{font-size:434.579208pt;}
.fs1b{font-size:434.579209pt;}
.fs22{font-size:434.579214pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:5.797914pt;}
.y3b{bottom:7.176653pt;}
.y18{bottom:7.279817pt;}
.y85{bottom:8.647395pt;}
.y80{bottom:8.686315pt;}
.y6b{bottom:9.938382pt;}
.y69{bottom:9.940882pt;}
.y96{bottom:10.014476pt;}
.y8c{bottom:10.043333pt;}
.y5e{bottom:10.058070pt;}
.y90{bottom:10.101145pt;}
.y8e{bottom:10.181145pt;}
.y94{bottom:10.186301pt;}
.y2b{bottom:11.435679pt;}
.y54{bottom:12.770533pt;}
.y88{bottom:12.780986pt;}
.y7a{bottom:12.798107pt;}
.y41{bottom:12.913043pt;}
.y24{bottom:12.950738pt;}
.y5c{bottom:12.963288pt;}
.y71{bottom:13.018757pt;}
.y13{bottom:14.179040pt;}
.y8a{bottom:14.231655pt;}
.y34{bottom:14.294050pt;}
.y83{bottom:14.327863pt;}
.y7{bottom:14.340722pt;}
.y30{bottom:14.344434pt;}
.y39{bottom:14.369199pt;}
.y67{bottom:14.424019pt;}
.y27{bottom:15.589061pt;}
.y77{bottom:15.625542pt;}
.y61{bottom:15.626857pt;}
.y58{bottom:15.651857pt;}
.y75{bottom:15.700505pt;}
.y1b{bottom:15.757581pt;}
.y1d{bottom:15.783667pt;}
.y73{bottom:16.981285pt;}
.y2{bottom:24.000609pt;}
.y92{bottom:25.754829pt;}
.y7b{bottom:30.960105pt;}
.y4e{bottom:31.246992pt;}
.y20{bottom:43.120104pt;}
.y7f{bottom:44.032257pt;}
.y17{bottom:44.039596pt;}
.y29{bottom:47.001474pt;}
.y1f{bottom:49.001411pt;}
.y4d{bottom:56.696070pt;}
.y97{bottom:62.000103pt;}
.y87{bottom:63.679142pt;}
.y5b{bottom:68.102957pt;}
.y70{bottom:68.158426pt;}
.y40{bottom:69.466550pt;}
.y33{bottom:70.847557pt;}
.y2f{bottom:70.897941pt;}
.y23{bottom:72.331920pt;}
.y12{bottom:74.974060pt;}
.y79{bottom:75.006965pt;}
.y82{bottom:77.950558pt;}
.y6{bottom:77.963417pt;}
.y38{bottom:77.991894pt;}
.y60{bottom:79.249552pt;}
.y4c{bottom:82.145148pt;}
.y1a{bottom:83.621789pt;}
.y53{bottom:84.876254pt;}
.y57{bottom:84.929902pt;}
.y66{bottom:92.185090pt;}
.y26{bottom:107.488509pt;}
.y4b{bottom:107.594226pt;}
.y5a{bottom:123.242626pt;}
.y6f{bottom:123.298095pt;}
.y31{bottom:126.000101pt;}
.y3f{bottom:126.020057pt;}
.y16{bottom:126.042181pt;}
.y32{bottom:127.401064pt;}
.y22{bottom:131.713103pt;}
.y4a{bottom:133.043304pt;}
.y11{bottom:135.769080pt;}
.y52{bottom:140.015923pt;}
.y5{bottom:141.586113pt;}
.y37{bottom:141.614589pt;}
.y65{bottom:143.083246pt;}
.y56{bottom:154.207948pt;}
.y49{bottom:158.492382pt;}
.y2d{bottom:164.184681pt;}
.y48{bottom:183.941460pt;}
.y28{bottom:192.633211pt;}
.y21{bottom:193.921960pt;}
.y51{bottom:195.155592pt;}
.y3e{bottom:203.781128pt;}
.y15{bottom:217.941630pt;}
.y4{bottom:226.416373pt;}
.y36{bottom:226.444849pt;}
.y47{bottom:236.253454pt;}
.y10{bottom:253.117606pt;}
.y64{bottom:254.776422pt;}
.y46{bottom:267.357883pt;}
.y3d{bottom:273.059174pt;}
.y45{bottom:298.462312pt;}
.yf{bottom:305.429600pt;}
.y6d{bottom:315.399596pt;}
.y44{bottom:329.566740pt;}
.y78{bottom:329.840092pt;}
.y1e{bottom:349.168853pt;}
.y2e{bottom:356.080091pt;}
.y43{bottom:360.671169pt;}
.ye{bottom:366.224620pt;}
.y63{bottom:376.366462pt;}
.y7d{bottom:389.654163pt;}
.y84{bottom:398.960089pt;}
.y7c{bottom:399.484753pt;}
.yd{bottom:427.019640pt;}
.y5f{bottom:476.080086pt;}
.yc{bottom:544.368166pt;}
.yb{bottom:596.680160pt;}
.y42{bottom:647.600079pt;}
.ya{bottom:657.475180pt;}
.y184{bottom:711.413696pt;}
.y183{bottom:711.669399pt;}
.y185{bottom:712.299092pt;}
.y182{bottom:712.415309pt;}
.y186{bottom:714.443257pt;}
.y181{bottom:714.472232pt;}
.y187{bottom:716.130944pt;}
.y180{bottom:717.049537pt;}
.y9{bottom:718.270199pt;}
.y188{bottom:719.089080pt;}
.y17f{bottom:719.400747pt;}
.y17e{bottom:722.322279pt;}
.y189{bottom:724.404461pt;}
.y17d{bottom:727.851320pt;}
.y18a{bottom:730.578960pt;}
.y18b{bottom:734.540724pt;}
.y17c{bottom:734.579975pt;}
.y18c{bottom:742.705633pt;}
.y17b{bottom:743.192793pt;}
.y18d{bottom:749.808132pt;}
.y17a{bottom:755.800065pt;}
.y18e{bottom:760.718370pt;}
.y179{bottom:762.007019pt;}
.y18f{bottom:771.942917pt;}
.y178{bottom:773.259943pt;}
.y1{bottom:779.261309pt;}
.y190{bottom:781.721834pt;}
.y177{bottom:786.805975pt;}
.y191{bottom:788.963619pt;}
.y176{bottom:797.706005pt;}
.y175{bottom:806.077331pt;}
.y192{bottom:809.152660pt;}
.y174{bottom:822.407809pt;}
.y193{bottom:822.847918pt;}
.y173{bottom:835.306846pt;}
.y194{bottom:846.745966pt;}
.y172{bottom:853.849371pt;}
.y195{bottom:856.881373pt;}
.y171{bottom:873.427280pt;}
.y196{bottom:876.906649pt;}
.y6a{bottom:880.560069pt;}
.y170{bottom:884.646548pt;}
.y68{bottom:886.960069pt;}
.y5d{bottom:887.600069pt;}
.y197{bottom:888.928542pt;}
.y16f{bottom:896.235601pt;}
.y16e{bottom:908.173589pt;}
.y198{bottom:909.744963pt;}
.y16d{bottom:920.457879pt;}
.y199{bottom:926.698806pt;}
.y16c{bottom:933.084686pt;}
.y16b{bottom:946.049870pt;}
.y16a{bottom:959.351144pt;}
.y169{bottom:972.983764pt;}
.y168{bottom:986.945205pt;}
.y167{bottom:1001.230668pt;}
.y166{bottom:1015.836428pt;}
.y165{bottom:1030.758653pt;}
.y55{bottom:1043.120062pt;}
.y164{bottom:1045.993564pt;}
.y163{bottom:1061.536460pt;}
.y162{bottom:1077.382631pt;}
.y161{bottom:1093.529247pt;}
.y160{bottom:1109.970366pt;}
.y59{bottom:1111.920060pt;}
.y86{bottom:1114.160059pt;}
.y19{bottom:1115.120059pt;}
.y15f{bottom:1126.701877pt;}
.y15e{bottom:1143.720109pt;}
.y15d{bottom:1161.019090pt;}
.y91{bottom:1174.000057pt;}
.y15c{bottom:1178.595070pt;}
.y15b{bottom:1196.442800pt;}
.y15a{bottom:1214.557558pt;}
.y159{bottom:1232.933768pt;}
.y158{bottom:1251.567100pt;}
.y157{bottom:1270.452287pt;}
.y156{bottom:1289.584679pt;}
.y155{bottom:1308.957751pt;}
.y154{bottom:1328.567499pt;}
.y153{bottom:1348.407406pt;}
.y152{bottom:1368.472529pt;}
.y8f{bottom:1379.760048pt;}
.y8b{bottom:1380.080048pt;}
.y89{bottom:1385.840048pt;}
.y151{bottom:1402.040258pt;}
.y8d{bottom:1426.800046pt;}
.y150{bottom:1430.379805pt;}
.y14f{bottom:1467.145466pt;}
.y2c{bottom:1471.280045pt;}
.y14e{bottom:1489.824611pt;}
.y98{bottom:1498.339296pt;}
.y14d{bottom:1529.375892pt;}
.y99{bottom:1537.730489pt;}
.y76{bottom:1539.760042pt;}
.y14c{bottom:1550.984257pt;}
.y9a{bottom:1578.218142pt;}
.y14b{bottom:1604.717097pt;}
.y9b{bottom:1608.186062pt;}
.y14a{bottom:1639.305489pt;}
.y9c{bottom:1649.649420pt;}
.y9d{bottom:1672.148117pt;}
.y1c{bottom:1674.160036pt;}
.y149{bottom:1694.379601pt;}
.y9e{bottom:1703.294864pt;}
.y148{bottom:1716.950635pt;}
.y7e{bottom:1744.880033pt;}
.y9f{bottom:1745.962905pt;}
.y147{bottom:1748.330526pt;}
.ya0{bottom:1785.671181pt;}
.y146{bottom:1787.906841pt;}
.y2a{bottom:1794.480031pt;}
.ya1{bottom:1808.598899pt;}
.y145{bottom:1831.315861pt;}
.ya2{bottom:1863.148453pt;}
.y144{bottom:1863.536068pt;}
.y143{bottom:1905.037168pt;}
.ya3{bottom:1907.091861pt;}
.y142{bottom:1928.621110pt;}
.ya4{bottom:1947.604110pt;}
.y141{bottom:1969.423414pt;}
.ya5{bottom:1988.490611pt;}
.y81{bottom:2001.840023pt;}
.y140{bottom:2013.890302pt;}
.ya6{bottom:2014.260878pt;}
.ya7{bottom:2038.165269pt;}
.y13f{bottom:2046.768867pt;}
.y13e{bottom:2070.742038pt;}
.ya8{bottom:2071.120385pt;}
.y13d{bottom:2111.970540pt;}
.ya9{bottom:2113.516500pt;}
.yaa{bottom:2137.462470pt;}
.y13c{bottom:2153.043895pt;}
.yab{bottom:2177.123114pt;}
.y13b{bottom:2192.714378pt;}
.y13a{bottom:2216.669881pt;}
.yac{bottom:2218.203375pt;}
.y139{bottom:2259.074686pt;}
.yad{bottom:2259.460557pt;}
.yae{bottom:2283.431571pt;}
.y138{bottom:2292.040901pt;}
.y137{bottom:2315.977563pt;}
.yaf{bottom:2316.338662pt;}
.y136{bottom:2341.761028pt;}
.yb0{bottom:2360.841843pt;}
.y135{bottom:2382.684562pt;}
.yb1{bottom:2401.703054pt;}
.y72{bottom:2422.640005pt;}
.y134{bottom:2423.247049pt;}
.yb2{bottom:2425.310471pt;}
.yb3{bottom:2466.864816pt;}
.y133{bottom:2467.258674pt;}
.yb4{bottom:2499.144429pt;}
.y50{bottom:2500.400002pt;}
.y6e{bottom:2501.360002pt;}
.y132{bottom:2521.911196pt;}
.y93{bottom:2527.920001pt;}
.yb5{bottom:2542.631819pt;}
.y131{bottom:2544.885007pt;}
.yb6{bottom:2582.290374pt;}
.y130{bottom:2584.665236pt;}
.yb7{bottom:2613.757967pt;}
.y12f{bottom:2627.437914pt;}
.yb8{bottom:2636.372163pt;}
.y12e{bottom:2658.660366pt;}
.y14{bottom:2661.039995pt;}
.y12d{bottom:2681.236389pt;}
.yb9{bottom:2691.606804pt;}
.y12c{bottom:2722.806352pt;}
.yba{bottom:2726.289379pt;}
.y3c{bottom:2727.599992pt;}
.y95{bottom:2728.559992pt;}
.y12b{bottom:2752.871334pt;}
.y25{bottom:2779.759990pt;}
.ybb{bottom:2780.213042pt;}
.y12a{bottom:2793.510875pt;}
.ybc{bottom:2801.893634pt;}
.y129{bottom:2833.041892pt;}
.ybd{bottom:2841.590217pt;}
.y128{bottom:2854.209396pt;}
.ybe{bottom:2864.361837pt;}
.y127{bottom:2875.452467pt;}
.y126{bottom:2896.502280pt;}
.ybf{bottom:2901.275066pt;}
.y125{bottom:2917.353184pt;}
.yc0{bottom:2929.752427pt;}
.y124{bottom:2937.999312pt;}
.y123{bottom:2958.435266pt;}
.yc1{bottom:2963.484759pt;}
.y122{bottom:2978.655351pt;}
.yc2{bottom:2983.650255pt;}
.y121{bottom:2998.654032pt;}
.yc3{bottom:3003.592987pt;}
.y3a{bottom:3009.519981pt;}
.y120{bottom:3018.425708pt;}
.yc4{bottom:3023.307440pt;}
.y11f{bottom:3037.965308pt;}
.y35{bottom:3040.879979pt;}
.yc5{bottom:3042.788165pt;}
.y11e{bottom:3057.266959pt;}
.yc6{bottom:3062.029856pt;}
.y11d{bottom:3076.325665pt;}
.yc7{bottom:3081.027602pt;}
.y11c{bottom:3095.136342pt;}
.yc8{bottom:3099.775653pt;}
.y11b{bottom:3113.693595pt;}
.yc9{bottom:3118.269040pt;}
.y8{bottom:3129.199976pt;}
.y11a{bottom:3131.992454pt;}
.yca{bottom:3136.502863pt;}
.y119{bottom:3150.027740pt;}
.ycb{bottom:3154.471872pt;}
.y118{bottom:3167.794765pt;}
.ycc{bottom:3172.171373pt;}
.y117{bottom:3185.288593pt;}
.ycd{bottom:3189.596438pt;}
.y116{bottom:3202.504302pt;}
.yce{bottom:3206.742247pt;}
.y115{bottom:3219.437211pt;}
.ycf{bottom:3223.604116pt;}
.y114{bottom:3236.082662pt;}
.yd0{bottom:3240.177621pt;}
.y113{bottom:3252.436353pt;}
.yd1{bottom:3256.457734pt;}
.y6c{bottom:3261.039970pt;}
.y112{bottom:3268.493523pt;}
.yd2{bottom:3272.440465pt;}
.y111{bottom:3284.249842pt;}
.yd3{bottom:3288.121420pt;}
.y110{bottom:3299.700974pt;}
.yd4{bottom:3303.496144pt;}
.y10f{bottom:3314.842645pt;}
.yd5{bottom:3318.560072pt;}
.y10e{bottom:3329.670937pt;}
.yd6{bottom:3333.309682pt;}
.y10d{bottom:3344.181560pt;}
.yd7{bottom:3347.740695pt;}
.y10c{bottom:3358.370576pt;}
.yd8{bottom:3361.849160pt;}
.y10b{bottom:3372.234151pt;}
.yd9{bottom:3375.631225pt;}
.y10a{bottom:3385.768397pt;}
.yda{bottom:3389.083011pt;}
.ydb{bottom:3402.200895pt;}
.y109{bottom:3407.445830pt;}
.ydc{bottom:3414.981322pt;}
.y108{bottom:3424.646305pt;}
.ydd{bottom:3427.420775pt;}
.yde{bottom:3439.516084pt;}
.y107{bottom:3445.803936pt;}
.ydf{bottom:3451.263292pt;}
.y106{bottom:3458.029434pt;}
.ye0{bottom:3462.659986pt;}
.ye1{bottom:3473.679111pt;}
.y105{bottom:3478.417504pt;}
.y104{bottom:3488.752242pt;}
.ye2{bottom:3492.905242pt;}
.ye3{bottom:3511.067172pt;}
.y103{bottom:3513.125884pt;}
.ye4{bottom:3523.692843pt;}
.y102{bottom:3527.143840pt;}
.ye5{bottom:3539.661941pt;}
.ye6{bottom:3547.813761pt;}
.y101{bottom:3547.822646pt;}
.y100{bottom:3555.280448pt;}
.ye7{bottom:3558.437268pt;}
.yff{bottom:3565.328972pt;}
.ye8{bottom:3571.591943pt;}
.yfe{bottom:3576.914509pt;}
.ye9{bottom:3582.496992pt;}
.yfd{bottom:3588.221430pt;}
.yea{bottom:3588.495600pt;}
.yfc{bottom:3595.610141pt;}
.yeb{bottom:3600.599032pt;}
.yfb{bottom:3604.159350pt;}
.yfa{bottom:3608.341244pt;}
.yec{bottom:3608.809461pt;}
.yf9{bottom:3614.873098pt;}
.yed{bottom:3615.170590pt;}
.yee{bottom:3620.332907pt;}
.yf8{bottom:3620.594755pt;}
.yef{bottom:3623.028770pt;}
.yf7{bottom:3623.844934pt;}
.yf0{bottom:3625.149054pt;}
.yf6{bottom:3625.764432pt;}
.yf1{bottom:3627.435601pt;}
.yf5{bottom:3628.270073pt;}
.yf2{bottom:3629.114800pt;}
.yf4{bottom:3629.527460pt;}
.yf3{bottom:3629.639063pt;}
.y3{bottom:3673.519953pt;}
.y74{bottom:3916.079943pt;}
.y62{bottom:3987.759940pt;}
.h21{height:27.199999pt;}
.h40{height:32.959999pt;}
.h45{height:34.239999pt;}
.h2e{height:38.399998pt;}
.h44{height:52.479998pt;}
.h39{height:56.639998pt;}
.h11{height:56.959998pt;}
.h19{height:59.519998pt;}
.h36{height:63.679997pt;}
.h3d{height:65.279997pt;}
.h27{height:70.239954pt;}
.h2{height:74.002186pt;}
.h47{height:76.799997pt;}
.h35{height:77.524904pt;}
.h38{height:78.079997pt;}
.h26{height:78.567760pt;}
.he{height:87.823261pt;}
.h49{height:93.588570pt;}
.h42{height:95.039996pt;}
.h3e{height:99.483279pt;}
.h2f{height:101.397238pt;}
.h41{height:106.479290pt;}
.h1c{height:106.559996pt;}
.hd{height:108.526636pt;}
.h3a{height:113.279995pt;}
.h46{height:113.475302pt;}
.h3f{height:116.159995pt;}
.h18{height:119.003745pt;}
.h30{height:119.039995pt;}
.h13{height:123.003745pt;}
.h2a{height:124.048077pt;}
.h4a{height:124.342439pt;}
.h43{height:124.388868pt;}
.hf{height:124.799995pt;}
.h24{height:132.834751pt;}
.ha{height:134.323410pt;}
.h29{height:135.040721pt;}
.h1d{height:139.952971pt;}
.h14{height:141.969810pt;}
.h1f{height:144.798619pt;}
.h3{height:144.882011pt;}
.h5{height:145.630795pt;}
.h20{height:147.607213pt;}
.h1a{height:154.368643pt;}
.h31{height:155.517046pt;}
.h2d{height:157.439993pt;}
.h10{height:158.030250pt;}
.h48{height:161.957933pt;}
.h2c{height:162.340514pt;}
.h1e{height:162.879993pt;}
.h1b{height:164.479993pt;}
.h16{height:166.878183pt;}
.h9{height:169.443401pt;}
.h17{height:169.919993pt;}
.h37{height:174.741503pt;}
.h6{height:175.693152pt;}
.h23{height:186.988524pt;}
.h12{height:188.099430pt;}
.h2b{height:196.799992pt;}
.h7{height:202.385196pt;}
.h28{height:229.119990pt;}
.h15{height:232.319990pt;}
.hc{height:247.297174pt;}
.h4{height:264.639989pt;}
.h3c{height:273.718973pt;}
.hb{height:280.319988pt;}
.h34{height:315.519987pt;}
.h22{height:318.399987pt;}
.h33{height:324.843356pt;}
.h7b{height:374.951813pt;}
.h79{height:374.951815pt;}
.h78{height:374.951816pt;}
.h73{height:374.951819pt;}
.h53{height:374.951820pt;}
.h55{height:374.951824pt;}
.h60{height:374.951826pt;}
.h5f{height:374.951828pt;}
.h5a{height:374.951829pt;}
.h5c{height:374.951831pt;}
.h6f{height:374.951832pt;}
.h59{height:374.951833pt;}
.h67{height:374.951835pt;}
.h54{height:374.951836pt;}
.h72{height:374.951838pt;}
.h5e{height:374.951839pt;}
.h62{height:374.951840pt;}
.h4f{height:374.951842pt;}
.h76{height:374.951843pt;}
.h66{height:374.951845pt;}
.h6c{height:374.951846pt;}
.h5d{height:374.951847pt;}
.h4d{height:374.951848pt;}
.h6a{height:374.951849pt;}
.h69{height:374.951850pt;}
.h63{height:374.951852pt;}
.h6b{height:374.951853pt;}
.h6d{height:374.951855pt;}
.h4e{height:374.951856pt;}
.h77{height:374.951857pt;}
.h4c{height:374.951858pt;}
.h51{height:374.951859pt;}
.h6e{height:374.951861pt;}
.h65{height:374.951862pt;}
.h71{height:374.951863pt;}
.h56{height:374.951865pt;}
.h58{height:374.951866pt;}
.h70{height:374.951867pt;}
.h52{height:374.951869pt;}
.h68{height:374.951872pt;}
.h5b{height:374.951873pt;}
.h7c{height:374.951874pt;}
.h75{height:374.951875pt;}
.h61{height:374.951878pt;}
.h7a{height:374.951881pt;}
.h74{height:374.951883pt;}
.h64{height:374.951885pt;}
.h50{height:374.951886pt;}
.h57{height:374.951891pt;}
.h25{height:380.479984pt;}
.h3b{height:400.639983pt;}
.h32{height:455.679981pt;}
.h8{height:755.199969pt;}
.h4b{height:4375.999818pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w26{width:17.279999pt;}
.w25{width:18.879999pt;}
.w27{width:23.039999pt;}
.wd{width:26.879999pt;}
.w1a{width:28.479999pt;}
.w28{width:30.079999pt;}
.wb{width:119.003745pt;}
.w8{width:123.003860pt;}
.w11{width:162.879993pt;}
.w1f{width:186.879992pt;}
.we{width:247.679990pt;}
.w20{width:250.559990pt;}
.w24{width:268.799989pt;}
.w17{width:288.639988pt;}
.w22{width:343.679986pt;}
.wf{width:411.839983pt;}
.w29{width:420.159982pt;}
.w15{width:451.199981pt;}
.w7{width:461.439981pt;}
.w16{width:479.679980pt;}
.w1b{width:482.239980pt;}
.w1c{width:483.839980pt;}
.w14{width:527.679978pt;}
.w3{width:559.999977pt;}
.w10{width:561.599977pt;}
.w6{width:577.279976pt;}
.w1d{width:608.319975pt;}
.w2{width:612.019302pt;}
.w5{width:752.319969pt;}
.w18{width:780.799967pt;}
.w12{width:813.439966pt;}
.wc{width:842.879965pt;}
.w21{width:844.479965pt;}
.w13{width:863.039964pt;}
.wa{width:936.319961pt;}
.w23{width:939.199961pt;}
.w4{width:1258.559948pt;}
.w9{width:1720.959928pt;}
.w1e{width:2142.079911pt;}
.w19{width:2680.959888pt;}
.w2a{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x15{left:1.637606pt;}
.x51{left:2.545593pt;}
.x46{left:4.285034pt;}
.x20{left:7.074934pt;}
.x16{left:9.104437pt;}
.x36{left:11.263423pt;}
.x22{left:15.925260pt;}
.x2e{left:17.457860pt;}
.x4c{left:18.433720pt;}
.x35{left:20.431277pt;}
.x2{left:21.703810pt;}
.x34{left:24.429787pt;}
.x44{left:25.599999pt;}
.x12{left:29.325538pt;}
.x9{left:30.742112pt;}
.x28{left:39.797878pt;}
.x1b{left:45.758968pt;}
.x19{left:48.095267pt;}
.x13{left:50.930745pt;}
.x7{left:60.099837pt;}
.x2a{left:61.601906pt;}
.x39{left:62.533293pt;}
.x33{left:64.967164pt;}
.xf{left:75.764005pt;}
.x45{left:80.639997pt;}
.x52{left:81.875141pt;}
.x3d{left:84.659386pt;}
.x26{left:91.199996pt;}
.xd{left:92.575419pt;}
.x2c{left:93.893459pt;}
.x24{left:102.983620pt;}
.x21{left:111.679995pt;}
.x4b{left:120.230032pt;}
.x11{left:123.257378pt;}
.x6b{left:124.476942pt;}
.x6a{left:125.654979pt;}
.x69{left:127.843667pt;}
.x6c{left:128.881631pt;}
.x68{left:130.526480pt;}
.x6d{left:131.736505pt;}
.x67{left:132.935029pt;}
.x66{left:135.940417pt;}
.x6e{left:136.923412pt;}
.x25{left:140.317771pt;}
.x65{left:141.594411pt;}
.x6f{left:142.965015pt;}
.x70{left:146.863102pt;}
.x64{left:148.443328pt;}
.x71{left:154.912799pt;}
.x63{left:157.182765pt;}
.x72{left:161.914277pt;}
.x5{left:163.000710pt;}
.x29{left:167.418819pt;}
.x62{left:169.943461pt;}
.x73{left:172.698815pt;}
.x61{left:176.218166pt;}
.x2d{left:180.248013pt;}
.x1c{left:183.679992pt;}
.x60{left:187.600717pt;}
.x30{left:193.228750pt;}
.x1d{left:195.103475pt;}
.xe{left:198.326058pt;}
.x6{left:201.505695pt;}
.x5f{left:212.267960pt;}
.x27{left:215.666029pt;}
.x4{left:218.582210pt;}
.x5e{left:220.691813pt;}
.x74{left:234.284104pt;}
.x32{left:235.422968pt;}
.x5d{left:237.159658pt;}
.x5c{left:250.146651pt;}
.x75{left:258.011757pt;}
.x5b{left:268.797106pt;}
.x5a{left:288.498031pt;}
.x76{left:299.950932pt;}
.x77{left:320.665849pt;}
.x78{left:337.525655pt;}
.x31{left:342.830455pt;}
.x79{left:358.799289pt;}
.x7a{left:372.092149pt;}
.xa{left:382.058682pt;}
.x7b{left:385.717039pt;}
.x42{left:391.999984pt;}
.xc{left:397.434166pt;}
.x7c{left:399.670019pt;}
.x7d{left:413.947458pt;}
.x3e{left:429.119982pt;}
.x7e{left:443.459822pt;}
.x7f{left:458.686779pt;}
.x80{left:474.221624pt;}
.x18{left:482.241817pt;}
.x81{left:490.060787pt;}
.x82{left:506.199462pt;}
.x83{left:522.633308pt;}
.x84{left:539.358127pt;}
.x85{left:556.368984pt;}
.x86{left:573.661231pt;}
.x87{left:591.230287pt;}
.x88{left:609.071197pt;}
.x89{left:627.179075pt;}
.x1{left:634.051174pt;}
.x1a{left:637.759973pt;}
.x49{left:641.919973pt;}
.x37{left:643.337226pt;}
.x8a{left:645.549216pt;}
.x38{left:664.639972pt;}
.x8b{left:683.055320pt;}
.x47{left:687.359971pt;}
.x3a{left:688.319971pt;}
.x8c{left:702.181183pt;}
.x8d{left:721.548494pt;}
.xb{left:729.465106pt;}
.x8e{left:741.151929pt;}
.x8f{left:760.986285pt;}
.x90{left:781.046070pt;}
.x58{left:790.399967pt;}
.x91{left:801.325691pt;}
.x146{left:820.748650pt;}
.x92{left:821.819913pt;}
.x93{left:842.522728pt;}
.x145{left:849.175660pt;}
.x94{left:863.428572pt;}
.x95{left:884.531764pt;}
.x144{left:886.027908pt;}
.x96{left:905.826514pt;}
.x143{left:908.763942pt;}
.x97{left:927.043980pt;}
.x142{left:948.401434pt;}
.x98{left:966.663014pt;}
.x141{left:970.052276pt;}
.x99{left:1007.384434pt;}
.x140{left:1023.904893pt;}
.x9a{left:1037.506830pt;}
.x13f{left:1058.547339pt;}
.x9b{left:1079.150360pt;}
.x9c{left:1101.763022pt;}
.x13e{left:1113.722193pt;}
.x9d{left:1133.034001pt;}
.x13d{left:1136.315386pt;}
.x13c{left:1167.753321pt;}
.x3{left:1172.159951pt;}
.x9e{left:1175.866624pt;}
.x13b{left:1207.378985pt;}
.x9f{left:1215.697267pt;}
.x43{left:1237.119948pt;}
.xa0{left:1238.698472pt;}
.x13a{left:1250.834243pt;}
.x139{left:1283.092877pt;}
.xa1{left:1293.406053pt;}
.x138{left:1324.623598pt;}
.xa2{left:1337.454869pt;}
.x137{left:1348.219578pt;}
.x48{left:1366.079943pt;}
.xa3{left:1378.046769pt;}
.x14{left:1382.719942pt;}
.x136{left:1389.062113pt;}
.x10{left:1418.559941pt;}
.x135{left:1433.550180pt;}
.x17{left:1438.719940pt;}
.xa4{left:1444.790610pt;}
.x134{left:1466.448100pt;}
.xa5{left:1468.736408pt;}
.x133{left:1490.414906pt;}
.xa6{left:1501.713644pt;}
.x132{left:1531.665272pt;}
.x53{left:1535.039936pt;}
.xa7{left:1544.126864pt;}
.x54{left:1560.959935pt;}
.xa8{left:1568.084737pt;}
.x131{left:1572.743312pt;}
.x4f{left:1600.959933pt;}
.xa9{left:1607.754911pt;}
.x130{left:1612.405238pt;}
.x12f{left:1636.353732pt;}
.xaa{left:1648.823027pt;}
.x3f{left:1668.929495pt;}
.x12e{left:1678.755833pt;}
.xab{left:1690.041096pt;}
.x56{left:1700.799929pt;}
.x12d{left:1711.718243pt;}
.xac{left:1714.004905pt;}
.x4d{left:1719.679928pt;}
.x12c{left:1735.630371pt;}
.xad{left:1746.869497pt;}
.x12b{left:1761.409174pt;}
.xae{left:1791.310742pt;}
.x55{left:1795.199925pt;}
.x12a{left:1802.311796pt;}
.x3b{left:1832.639924pt;}
.x129{left:1842.844643pt;}
.x8{left:1851.199923pt;}
.xaf{left:1855.649479pt;}
.x57{left:1859.519923pt;}
.x128{left:1886.813628pt;}
.xb0{left:1897.112127pt;}
.xb1{left:1929.299262pt;}
.x127{left:1941.401187pt;}
.x40{left:1964.863392pt;}
.xb2{left:1972.657438pt;}
.x126{left:2004.088587pt;}
.xb3{left:2012.181439pt;}
.xb4{left:2043.516608pt;}
.x125{left:2046.797010pt;}
.xb5{left:2066.053476pt;}
.x124{left:2077.976224pt;}
.x123{left:2100.500292pt;}
.xb6{left:2121.035064pt;}
.x122{left:2142.011713pt;}
.xb7{left:2155.560155pt;}
.x3c{left:2158.079910pt;}
.x50{left:2170.559910pt;}
.x121{left:2172.017562pt;}
.x1e{left:2188.479909pt;}
.xb8{left:2209.183733pt;}
.x120{left:2212.561038pt;}
.xb9{left:2230.744940pt;}
.x41{left:2234.199468pt;}
.x11f{left:2252.010351pt;}
.xba{left:2270.204119pt;}
.x11e{left:2273.119451pt;}
.x4e{left:2275.199905pt;}
.x2f{left:2287.359905pt;}
.xbb{left:2292.828439pt;}
.x11d{left:2294.309949pt;}
.x2b{left:2301.759904pt;}
.x11c{left:2315.306290pt;}
.xbc{left:2329.497896pt;}
.x11b{left:2336.101587pt;}
.x11a{left:2356.690656pt;}
.xbd{left:2357.760487pt;}
.x119{left:2377.068107pt;}
.xbe{left:2391.230557pt;}
.x118{left:2397.228103pt;}
.xbf{left:2411.234791pt;}
.x117{left:2417.165334pt;}
.xc0{left:2431.012176pt;}
.x116{left:2436.873833pt;}
.xc1{left:2450.557491pt;}
.x115{left:2456.348659pt;}
.xc2{left:2469.865283pt;}
.x114{left:2475.584496pt;}
.xc3{left:2488.930147pt;}
.x113{left:2494.576007pt;}
.xc4{left:2507.746969pt;}
.x112{left:2513.317734pt;}
.x23{left:2518.079895pt;}
.xc5{left:2526.310637pt;}
.x111{left:2531.804893pt;}
.xc6{left:2544.616029pt;}
.x110{left:2550.032013pt;}
.xc7{left:2562.658043pt;}
.x10f{left:2567.994479pt;}
.xc8{left:2580.431836pt;}
.x10e{left:2585.687012pt;}
.xc9{left:2597.932414pt;}
.x10d{left:2603.105225pt;}
.xca{left:2615.155145pt;}
.x10c{left:2620.244169pt;}
.xcb{left:2632.095042pt;}
.x10b{left:2637.098857pt;}
.x59{left:2645.759890pt;}
.xcc{left:2648.747989pt;}
.x10a{left:2653.664929pt;}
.xcd{left:2665.108768pt;}
.x109{left:2669.937656pt;}
.xce{left:2681.173527pt;}
.x108{left:2685.913028pt;}
.xcf{left:2696.937316pt;}
.x107{left:2701.586318pt;}
.xd0{left:2712.396371pt;}
.x106{left:2716.953160pt;}
.xd1{left:2727.545605pt;}
.x105{left:2732.009435pt;}
.xd2{left:2742.381624pt;}
.x104{left:2746.751089pt;}
.xd3{left:2756.900319pt;}
.x103{left:2761.174009pt;}
.xd4{left:2771.097582pt;}
.x102{left:2775.274436pt;}
.xd5{left:2784.969250pt;}
.x101{left:2789.048210pt;}
.xd6{left:2798.511893pt;}
.x100{left:2802.491891pt;}
.xd7{left:2811.721404pt;}
.xd8{left:2824.594854pt;}
.xd9{left:2837.127817pt;}
.xff{left:2841.103764pt;}
.xda{left:2849.317431pt;}
.xdb{left:2861.160456pt;}
.xfe{left:2862.087215pt;}
.xdc{left:2872.653026pt;}
.xfd{left:2874.211950pt;}
.xdd{left:2883.776173pt;}
.xfc{left:2894.416550pt;}
.xde{left:2903.175309pt;}
.xfb{left:2904.649830pt;}
.xdf{left:2921.533908pt;}
.xfa{left:2928.791143pt;}
.xe0{left:2934.296907pt;}
.xf9{left:2942.644099pt;}
.xe1{left:2950.439892pt;}
.xe2{left:2958.708113pt;}
.xf8{left:2963.082224pt;}
.xe3{left:2969.467201pt;}
.xf7{left:2970.426834pt;}
.xf6{left:2980.346933pt;}
.xe4{left:2982.819559pt;}
.x4a{left:2984.639876pt;}
.xf5{left:2991.751671pt;}
.xe5{left:2993.892962pt;}
.xe6{left:2999.995492pt;}
.xf4{left:3002.858265pt;}
.xf3{left:3010.107013pt;}
.xe7{left:3012.355061pt;}
.xf2{left:3018.460427pt;}
.xe8{left:3020.768583pt;}
.xf1{left:3022.529448pt;}
.xe9{left:3027.313374pt;}
.xf0{left:3028.888271pt;}
.xea{left:3032.657523pt;}
.xef{left:3034.405025pt;}
.xeb{left:3035.462138pt;}
.xec{left:3037.705086pt;}
.xed{left:3040.132921pt;}
.xee{left:3041.997718pt;}
.x1f{left:3105.279871pt;}
}




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