
    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_bed19c869d005eb88d26695b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_0a4a9c1ceb0f8a7687eca1a4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_09ca0f735dab323d8cd39742.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dffb80420de2fa0e210b32c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a622c314eb0f5c8a3b203917.woff')format("woff");}.ff5{font-family:ff5;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_037e4b04ff71524457f87cc2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944000;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_4afb987872273d6e7aca7c3f.woff')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_0e075ece49ea910f0a39587f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_b3329e5ed49cf1f640e0419c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_31c16a6bcc79667e9330f1d7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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_bb9767ebac8310aeb9f4abe2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_48b16a8a76a68fbe8ebead33.woff')format("woff");}.ffc{font-family:ffc;line-height:0.954000;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_a902ef63e42667223a644175.woff')format("woff");}.ffd{font-family:ffd;line-height:0.769531;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_b1b10344eb8343c47ae527b0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_80752026af2104c568b549e6.woff')format("woff");}.fff{font-family:fff;line-height:0.756000;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_2e37a39e109b8683148e5729.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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_ff676dda25c13fd8aa7c26af.woff')format("woff");}.ff11{font-family:ff11;line-height:0.772949;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_016028ba27c3ff067ad74fea.woff')format("woff");}.ff12{font-family:ff12;line-height:0.967000;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_bca553448fde16af601758df.woff')format("woff");}.ff13{font-family:ff13;line-height:0.942000;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;}
.m1{transform:matrix(-0.064225,0.241610,-0.241610,-0.064225,0,0);-ms-transform:matrix(-0.064225,0.241610,-0.241610,-0.064225,0,0);-webkit-transform:matrix(-0.064225,0.241610,-0.241610,-0.064225,0,0);}
.m2{transform:matrix(-0.035393,0.247482,-0.247482,-0.035393,0,0);-ms-transform:matrix(-0.035393,0.247482,-0.247482,-0.035393,0,0);-webkit-transform:matrix(-0.035393,0.247482,-0.247482,-0.035393,0,0);}
.m3{transform:matrix(-0.013443,0.249638,-0.249638,-0.013443,0,0);-ms-transform:matrix(-0.013443,0.249638,-0.249638,-0.013443,0,0);-webkit-transform:matrix(-0.013443,0.249638,-0.249638,-0.013443,0,0);}
.m4{transform:matrix(0.004809,0.249954,-0.249954,0.004809,0,0);-ms-transform:matrix(0.004809,0.249954,-0.249954,0.004809,0,0);-webkit-transform:matrix(0.004809,0.249954,-0.249954,0.004809,0,0);}
.m5{transform:matrix(0.027190,0.248517,-0.248517,0.027190,0,0);-ms-transform:matrix(0.027190,0.248517,-0.248517,0.027190,0,0);-webkit-transform:matrix(0.027190,0.248517,-0.248517,0.027190,0,0);}
.m6{transform:matrix(0.047086,0.245526,-0.245526,0.047086,0,0);-ms-transform:matrix(0.047086,0.245526,-0.245526,0.047086,0,0);-webkit-transform:matrix(0.047086,0.245526,-0.245526,0.047086,0,0);}
.m22{transform:matrix(0.062061,0.242174,-0.242174,0.062061,0,0);-ms-transform:matrix(0.062061,0.242174,-0.242174,0.062061,0,0);-webkit-transform:matrix(0.062061,0.242174,-0.242174,0.062061,0,0);}
.m7{transform:matrix(0.070606,0.239822,-0.239822,0.070606,0,0);-ms-transform:matrix(0.070606,0.239822,-0.239822,0.070606,0,0);-webkit-transform:matrix(0.070606,0.239822,-0.239822,0.070606,0,0);}
.m23{transform:matrix(0.085309,0.234994,-0.234994,0.085309,0,0);-ms-transform:matrix(0.085309,0.234994,-0.234994,0.085309,0,0);-webkit-transform:matrix(0.085309,0.234994,-0.234994,0.085309,0,0);}
.m8{transform:matrix(0.098571,0.229747,-0.229747,0.098571,0,0);-ms-transform:matrix(0.098571,0.229747,-0.229747,0.098571,0,0);-webkit-transform:matrix(0.098571,0.229747,-0.229747,0.098571,0,0);}
.m24{transform:matrix(0.102906,0.227838,-0.227838,0.102906,0,0);-ms-transform:matrix(0.102906,0.227838,-0.227838,0.102906,0,0);-webkit-transform:matrix(0.102906,0.227838,-0.227838,0.102906,0,0);}
.m25{transform:matrix(0.116922,0.220974,-0.220974,0.116922,0,0);-ms-transform:matrix(0.116922,0.220974,-0.220974,0.116922,0,0);-webkit-transform:matrix(0.116922,0.220974,-0.220974,0.116922,0,0);}
.m9{transform:matrix(0.118702,0.220023,-0.220023,0.118702,0,0);-ms-transform:matrix(0.118702,0.220023,-0.220023,0.118702,0,0);-webkit-transform:matrix(0.118702,0.220023,-0.220023,0.118702,0,0);}
.ma{transform:matrix(0.135184,0.210298,-0.210298,0.135184,0,0);-ms-transform:matrix(0.135184,0.210298,-0.210298,0.135184,0,0);-webkit-transform:matrix(0.135184,0.210298,-0.210298,0.135184,0,0);}
.m26{transform:matrix(0.135454,0.210125,-0.210125,0.135454,0,0);-ms-transform:matrix(0.135454,0.210125,-0.210125,0.135454,0,0);-webkit-transform:matrix(0.135454,0.210125,-0.210125,0.135454,0,0);}
.m27{transform:matrix(0.149807,0.200144,-0.200144,0.149807,0,0);-ms-transform:matrix(0.149807,0.200144,-0.200144,0.149807,0,0);-webkit-transform:matrix(0.149807,0.200144,-0.200144,0.149807,0,0);}
.mb{transform:matrix(0.152406,0.198172,-0.198172,0.152406,0,0);-ms-transform:matrix(0.152406,0.198172,-0.198172,0.152406,0,0);-webkit-transform:matrix(0.152406,0.198172,-0.198172,0.152406,0,0);}
.m3e{transform:matrix(0.160719,-0.191492,0.191492,0.160719,0,0);-ms-transform:matrix(0.160719,-0.191492,0.191492,0.160719,0,0);-webkit-transform:matrix(0.160719,-0.191492,0.191492,0.160719,0,0);}
.m28{transform:matrix(0.164345,0.188390,-0.188390,0.164345,0,0);-ms-transform:matrix(0.164345,0.188390,-0.188390,0.164345,0,0);-webkit-transform:matrix(0.164345,0.188390,-0.188390,0.164345,0,0);}
.m21{transform:matrix(0.167092,-0.185958,0.185958,0.167092,0,0);-ms-transform:matrix(0.167092,-0.185958,0.185958,0.167092,0,0);-webkit-transform:matrix(0.167092,-0.185958,0.185958,0.167092,0,0);}
.mc{transform:matrix(0.168851,0.184362,-0.184362,0.168851,0,0);-ms-transform:matrix(0.168851,0.184362,-0.184362,0.168851,0,0);-webkit-transform:matrix(0.168851,0.184362,-0.184362,0.168851,0,0);}
.m3d{transform:matrix(0.177792,-0.175756,0.175756,0.177792,0,0);-ms-transform:matrix(0.177792,-0.175756,0.175756,0.177792,0,0);-webkit-transform:matrix(0.177792,-0.175756,0.175756,0.177792,0,0);}
.m29{transform:matrix(0.182862,0.170474,-0.170474,0.182862,0,0);-ms-transform:matrix(0.182862,0.170474,-0.170474,0.182862,0,0);-webkit-transform:matrix(0.182862,0.170474,-0.170474,0.182862,0,0);}
.m20{transform:matrix(0.183624,-0.169654,0.169654,0.183624,0,0);-ms-transform:matrix(0.183624,-0.169654,0.169654,0.183624,0,0);-webkit-transform:matrix(0.183624,-0.169654,0.169654,0.183624,0,0);}
.md{transform:matrix(0.184970,0.168184,-0.168184,0.184970,0,0);-ms-transform:matrix(0.184970,0.168184,-0.168184,0.184970,0,0);-webkit-transform:matrix(0.184970,0.168184,-0.168184,0.184970,0,0);}
.m3c{transform:matrix(0.189293,-0.163304,0.163304,0.189293,0,0);-ms-transform:matrix(0.189293,-0.163304,0.163304,0.189293,0,0);-webkit-transform:matrix(0.189293,-0.163304,0.163304,0.189293,0,0);}
.m1f{transform:matrix(0.194698,-0.156821,0.156821,0.194698,0,0);-ms-transform:matrix(0.194698,-0.156821,0.156821,0.194698,0,0);-webkit-transform:matrix(0.194698,-0.156821,0.156821,0.194698,0,0);}
.m2a{transform:matrix(0.195085,0.156339,-0.156339,0.195085,0,0);-ms-transform:matrix(0.195085,0.156339,-0.156339,0.195085,0,0);-webkit-transform:matrix(0.195085,0.156339,-0.156339,0.195085,0,0);}
.m3b{transform:matrix(0.196095,-0.155071,0.155071,0.196095,0,0);-ms-transform:matrix(0.196095,-0.155071,0.155071,0.196095,0,0);-webkit-transform:matrix(0.196095,-0.155071,0.155071,0.196095,0,0);}
.m5c{transform:matrix(0.196961,-0.153968,0.153968,0.196961,0,0);-ms-transform:matrix(0.196961,-0.153968,0.153968,0.196961,0,0);-webkit-transform:matrix(0.196961,-0.153968,0.153968,0.196961,0,0);}
.me{transform:matrix(0.197115,0.153772,-0.153772,0.197115,0,0);-ms-transform:matrix(0.197115,0.153772,-0.153772,0.197115,0,0);-webkit-transform:matrix(0.197115,0.153772,-0.153772,0.197115,0,0);}
.m4c{transform:matrix(0.200763,0.148978,-0.148978,0.200763,0,0);-ms-transform:matrix(0.200763,0.148978,-0.148978,0.200763,0,0);-webkit-transform:matrix(0.200763,0.148978,-0.148978,0.200763,0,0);}
.m2b{transform:matrix(0.202682,0.146356,-0.146356,0.202682,0,0);-ms-transform:matrix(0.202682,0.146356,-0.146356,0.202682,0,0);-webkit-transform:matrix(0.202682,0.146356,-0.146356,0.202682,0,0);}
.mf{transform:matrix(0.204350,0.144018,-0.144018,0.204350,0,0);-ms-transform:matrix(0.204350,0.144018,-0.144018,0.204350,0,0);-webkit-transform:matrix(0.204350,0.144018,-0.144018,0.204350,0,0);}
.m1e{transform:matrix(0.205181,-0.142831,0.142831,0.205181,0,0);-ms-transform:matrix(0.205181,-0.142831,0.142831,0.205181,0,0);-webkit-transform:matrix(0.205181,-0.142831,0.142831,0.205181,0,0);}
.m3a{transform:matrix(0.205359,-0.142575,0.142575,0.205359,0,0);-ms-transform:matrix(0.205359,-0.142575,0.142575,0.205359,0,0);-webkit-transform:matrix(0.205359,-0.142575,0.142575,0.205359,0,0);}
.m5b{transform:matrix(0.206942,-0.140268,0.140268,0.206942,0,0);-ms-transform:matrix(0.206942,-0.140268,0.140268,0.206942,0,0);-webkit-transform:matrix(0.206942,-0.140268,0.140268,0.206942,0,0);}
.m2c{transform:matrix(0.212906,0.131039,-0.131039,0.212906,0,0);-ms-transform:matrix(0.212906,0.131039,-0.131039,0.212906,0,0);-webkit-transform:matrix(0.212906,0.131039,-0.131039,0.212906,0,0);}
.m10{transform:matrix(0.213000,0.130885,-0.130885,0.213000,0,0);-ms-transform:matrix(0.213000,0.130885,-0.130885,0.213000,0,0);-webkit-transform:matrix(0.213000,0.130885,-0.130885,0.213000,0,0);}
.m39{transform:matrix(0.214311,-0.128727,0.128727,0.214311,0,0);-ms-transform:matrix(0.214311,-0.128727,0.128727,0.214311,0,0);-webkit-transform:matrix(0.214311,-0.128727,0.128727,0.214311,0,0);}
.m4d{transform:matrix(0.214696,0.128084,-0.128084,0.214696,0,0);-ms-transform:matrix(0.214696,0.128084,-0.128084,0.214696,0,0);-webkit-transform:matrix(0.214696,0.128084,-0.128084,0.214696,0,0);}
.m4b{transform:matrix(0.215814,-0.126191,0.126191,0.215814,0,0);-ms-transform:matrix(0.215814,-0.126191,0.126191,0.215814,0,0);-webkit-transform:matrix(0.215814,-0.126191,0.126191,0.215814,0,0);}
.m1d{transform:matrix(0.216476,-0.125052,0.125052,0.216476,0,0);-ms-transform:matrix(0.216476,-0.125052,0.125052,0.216476,0,0);-webkit-transform:matrix(0.216476,-0.125052,0.125052,0.216476,0,0);}
.m3f{transform:matrix(0.217100,0.123966,-0.123966,0.217100,0,0);-ms-transform:matrix(0.217100,0.123966,-0.123966,0.217100,0,0);-webkit-transform:matrix(0.217100,0.123966,-0.123966,0.217100,0,0);}
.m5a{transform:matrix(0.219063,-0.120463,0.120463,0.219063,0,0);-ms-transform:matrix(0.219063,-0.120463,0.120463,0.219063,0,0);-webkit-transform:matrix(0.219063,-0.120463,0.120463,0.219063,0,0);}
.m66{transform:matrix(0.221701,0.115536,-0.115536,0.221701,0,0);-ms-transform:matrix(0.221701,0.115536,-0.115536,0.221701,0,0);-webkit-transform:matrix(0.221701,0.115536,-0.115536,0.221701,0,0);}
.m38{transform:matrix(0.223327,-0.112361,0.112361,0.223327,0,0);-ms-transform:matrix(0.223327,-0.112361,0.112361,0.223327,0,0);-webkit-transform:matrix(0.223327,-0.112361,0.112361,0.223327,0,0);}
.m11{transform:matrix(0.223384,0.112248,-0.112248,0.223384,0,0);-ms-transform:matrix(0.223384,0.112248,-0.112248,0.223384,0,0);-webkit-transform:matrix(0.223384,0.112248,-0.112248,0.223384,0,0);}
.m2d{transform:matrix(0.224415,0.110172,-0.110172,0.224415,0,0);-ms-transform:matrix(0.224415,0.110172,-0.110172,0.224415,0,0);-webkit-transform:matrix(0.224415,0.110172,-0.110172,0.224415,0,0);}
.m67{transform:matrix(0.224916,0.109146,-0.109146,0.224916,0,0);-ms-transform:matrix(0.224916,0.109146,-0.109146,0.224916,0,0);-webkit-transform:matrix(0.224916,0.109146,-0.109146,0.224916,0,0);}
.m4e{transform:matrix(0.225869,0.107159,-0.107159,0.225869,0,0);-ms-transform:matrix(0.225869,0.107159,-0.107159,0.225869,0,0);-webkit-transform:matrix(0.225869,0.107159,-0.107159,0.225869,0,0);}
.m4a{transform:matrix(0.226591,-0.105624,0.105624,0.226591,0,0);-ms-transform:matrix(0.226591,-0.105624,0.105624,0.226591,0,0);-webkit-transform:matrix(0.226591,-0.105624,0.105624,0.226591,0,0);}
.m59{transform:matrix(0.226722,-0.105342,0.105342,0.226722,0,0);-ms-transform:matrix(0.226722,-0.105342,0.105342,0.226722,0,0);-webkit-transform:matrix(0.226722,-0.105342,0.105342,0.226722,0,0);}
.m1c{transform:matrix(0.226812,-0.105149,0.105149,0.226812,0,0);-ms-transform:matrix(0.226812,-0.105149,0.105149,0.226812,0,0);-webkit-transform:matrix(0.226812,-0.105149,0.105149,0.226812,0,0);}
.m68{transform:matrix(0.227790,0.103013,-0.103013,0.227790,0,0);-ms-transform:matrix(0.227790,0.103013,-0.103013,0.227790,0,0);-webkit-transform:matrix(0.227790,0.103013,-0.103013,0.227790,0,0);}
.m40{transform:matrix(0.229474,0.099206,-0.099206,0.229474,0,0);-ms-transform:matrix(0.229474,0.099206,-0.099206,0.229474,0,0);-webkit-transform:matrix(0.229474,0.099206,-0.099206,0.229474,0,0);}
.m69{transform:matrix(0.230350,0.097153,-0.097153,0.230350,0,0);-ms-transform:matrix(0.230350,0.097153,-0.097153,0.230350,0,0);-webkit-transform:matrix(0.230350,0.097153,-0.097153,0.230350,0,0);}
.m37{transform:matrix(0.231096,-0.095366,0.095366,0.231096,0,0);-ms-transform:matrix(0.231096,-0.095366,0.095366,0.231096,0,0);-webkit-transform:matrix(0.231096,-0.095366,0.095366,0.231096,0,0);}
.m12{transform:matrix(0.231144,0.095250,-0.095250,0.231144,0,0);-ms-transform:matrix(0.231144,0.095250,-0.095250,0.231144,0,0);-webkit-transform:matrix(0.231144,0.095250,-0.095250,0.231144,0,0);}
.m2e{transform:matrix(0.231395,0.094638,-0.094638,0.231395,0,0);-ms-transform:matrix(0.231395,0.094638,-0.094638,0.231395,0,0);-webkit-transform:matrix(0.231395,0.094638,-0.094638,0.231395,0,0);}
.m8a{transform:matrix(0.231677,-0.093947,0.093947,0.231677,0,0);-ms-transform:matrix(0.231677,-0.093947,0.093947,0.231677,0,0);-webkit-transform:matrix(0.231677,-0.093947,0.093947,0.231677,0,0);}
.m6a{transform:matrix(0.232623,0.091577,-0.091577,0.232623,0,0);-ms-transform:matrix(0.232623,0.091577,-0.091577,0.232623,0,0);-webkit-transform:matrix(0.232623,0.091577,-0.091577,0.232623,0,0);}
.m49{transform:matrix(0.233228,-0.090027,0.090027,0.233228,0,0);-ms-transform:matrix(0.233228,-0.090027,0.090027,0.233228,0,0);-webkit-transform:matrix(0.233228,-0.090027,0.090027,0.233228,0,0);}
.m89{transform:matrix(0.233740,-0.088688,0.088688,0.233740,0,0);-ms-transform:matrix(0.233740,-0.088688,0.088688,0.233740,0,0);-webkit-transform:matrix(0.233740,-0.088688,0.088688,0.233740,0,0);}
.m58{transform:matrix(0.234014,-0.087964,0.087964,0.234014,0,0);-ms-transform:matrix(0.234014,-0.087964,0.087964,0.234014,0,0);-webkit-transform:matrix(0.234014,-0.087964,0.087964,0.234014,0,0);}
.m4f{transform:matrix(0.234740,0.086006,-0.086006,0.234740,0,0);-ms-transform:matrix(0.234740,0.086006,-0.086006,0.234740,0,0);-webkit-transform:matrix(0.234740,0.086006,-0.086006,0.234740,0,0);}
.m6b{transform:matrix(0.235277,0.084528,-0.084528,0.235277,0,0);-ms-transform:matrix(0.235277,0.084528,-0.084528,0.235277,0,0);-webkit-transform:matrix(0.235277,0.084528,-0.084528,0.235277,0,0);}
.m88{transform:matrix(0.235934,-0.082675,0.082675,0.235934,0,0);-ms-transform:matrix(0.235934,-0.082675,0.082675,0.235934,0,0);-webkit-transform:matrix(0.235934,-0.082675,0.082675,0.235934,0,0);}
.m65{transform:matrix(0.236383,-0.081381,0.081381,0.236383,0,0);-ms-transform:matrix(0.236383,-0.081381,0.081381,0.236383,0,0);-webkit-transform:matrix(0.236383,-0.081381,0.081381,0.236383,0,0);}
.m1b{transform:matrix(0.236580,-0.080809,0.080809,0.236580,0,0);-ms-transform:matrix(0.236580,-0.080809,0.080809,0.236580,0,0);-webkit-transform:matrix(0.236580,-0.080809,0.080809,0.236580,0,0);}
.m6c{transform:matrix(0.237244,0.078836,-0.078836,0.237244,0,0);-ms-transform:matrix(0.237244,0.078836,-0.078836,0.237244,0,0);-webkit-transform:matrix(0.237244,0.078836,-0.078836,0.237244,0,0);}
.m13{transform:matrix(0.237387,0.078406,-0.078406,0.237387,0,0);-ms-transform:matrix(0.237387,0.078406,-0.078406,0.237387,0,0);-webkit-transform:matrix(0.237387,0.078406,-0.078406,0.237387,0,0);}
.m5d{transform:matrix(0.237428,0.078280,-0.078280,0.237428,0,0);-ms-transform:matrix(0.237428,0.078280,-0.078280,0.237428,0,0);-webkit-transform:matrix(0.237428,0.078280,-0.078280,0.237428,0,0);}
.m36{transform:matrix(0.237670,-0.077543,0.077543,0.237670,0,0);-ms-transform:matrix(0.237670,-0.077543,0.077543,0.237670,0,0);-webkit-transform:matrix(0.237670,-0.077543,0.077543,0.237670,0,0);}
.m87{transform:matrix(0.238087,-0.076252,0.076252,0.238087,0,0);-ms-transform:matrix(0.238087,-0.076252,0.076252,0.238087,0,0);-webkit-transform:matrix(0.238087,-0.076252,0.076252,0.238087,0,0);}
.m2f{transform:matrix(0.238447,0.075120,-0.075120,0.238447,0,0);-ms-transform:matrix(0.238447,0.075120,-0.075120,0.238447,0,0);-webkit-transform:matrix(0.238447,0.075120,-0.075120,0.238447,0,0);}
.m6d{transform:matrix(0.238517,0.074898,-0.074898,0.238517,0,0);-ms-transform:matrix(0.238517,0.074898,-0.074898,0.238517,0,0);-webkit-transform:matrix(0.238517,0.074898,-0.074898,0.238517,0,0);}
.m41{transform:matrix(0.238688,0.074352,-0.074352,0.238688,0,0);-ms-transform:matrix(0.238688,0.074352,-0.074352,0.238688,0,0);-webkit-transform:matrix(0.238688,0.074352,-0.074352,0.238688,0,0);}
.m48{transform:matrix(0.239347,-0.072202,0.072202,0.239347,0,0);-ms-transform:matrix(0.239347,-0.072202,0.072202,0.239347,0,0);-webkit-transform:matrix(0.239347,-0.072202,0.072202,0.239347,0,0);}
.m6e{transform:matrix(0.239724,0.070940,-0.070940,0.239724,0,0);-ms-transform:matrix(0.239724,0.070940,-0.070940,0.239724,0,0);-webkit-transform:matrix(0.239724,0.070940,-0.070940,0.239724,0,0);}
.m86{transform:matrix(0.239960,-0.070138,0.070138,0.239960,0,0);-ms-transform:matrix(0.239960,-0.070138,0.070138,0.239960,0,0);-webkit-transform:matrix(0.239960,-0.070138,0.070138,0.239960,0,0);}
.m50{transform:matrix(0.240686,0.067605,-0.067605,0.240686,0,0);-ms-transform:matrix(0.240686,0.067605,-0.067605,0.240686,0,0);-webkit-transform:matrix(0.240686,0.067605,-0.067605,0.240686,0,0);}
.m6f{transform:matrix(0.241460,0.064785,-0.064785,0.241460,0,0);-ms-transform:matrix(0.241460,0.064785,-0.064785,0.241460,0,0);-webkit-transform:matrix(0.241460,0.064785,-0.064785,0.241460,0,0);}
.m85{transform:matrix(0.241675,-0.063979,0.063979,0.241675,0,0);-ms-transform:matrix(0.241675,-0.063979,0.063979,0.241675,0,0);-webkit-transform:matrix(0.241675,-0.063979,0.063979,0.241675,0,0);}
.m57{transform:matrix(0.241863,-0.063265,0.063265,0.241863,0,0);-ms-transform:matrix(0.241863,-0.063265,0.063265,0.241863,0,0);-webkit-transform:matrix(0.241863,-0.063265,0.063265,0.241863,0,0);}
.m14{transform:matrix(0.242174,0.062062,-0.062062,0.242174,0,0);-ms-transform:matrix(0.242174,0.062062,-0.062062,0.242174,0,0);-webkit-transform:matrix(0.242174,0.062062,-0.062062,0.242174,0,0);}
.m35{transform:matrix(0.242872,-0.059272,0.059272,0.242872,0,0);-ms-transform:matrix(0.242872,-0.059272,0.059272,0.242872,0,0);-webkit-transform:matrix(0.242872,-0.059272,0.059272,0.242872,0,0);}
.m64{transform:matrix(0.242914,-0.059099,0.059099,0.242914,0,0);-ms-transform:matrix(0.242914,-0.059099,0.059099,0.242914,0,0);-webkit-transform:matrix(0.242914,-0.059099,0.059099,0.242914,0,0);}
.m84{transform:matrix(0.243232,-0.057777,0.057777,0.243232,0,0);-ms-transform:matrix(0.243232,-0.057777,0.057777,0.243232,0,0);-webkit-transform:matrix(0.243232,-0.057777,0.057777,0.243232,0,0);}
.m70{transform:matrix(0.243387,0.057119,-0.057119,0.243387,0,0);-ms-transform:matrix(0.243387,0.057119,-0.057119,0.243387,0,0);-webkit-transform:matrix(0.243387,0.057119,-0.057119,0.243387,0,0);}
.m30{transform:matrix(0.243856,0.055086,-0.055086,0.243856,0,0);-ms-transform:matrix(0.243856,0.055086,-0.055086,0.243856,0,0);-webkit-transform:matrix(0.243856,0.055086,-0.055086,0.243856,0,0);}
.m5e{transform:matrix(0.243887,0.054946,-0.054946,0.243887,0,0);-ms-transform:matrix(0.243887,0.054946,-0.054946,0.243887,0,0);-webkit-transform:matrix(0.243887,0.054946,-0.054946,0.243887,0,0);}
.m83{transform:matrix(0.244155,-0.053742,0.053742,0.244155,0,0);-ms-transform:matrix(0.244155,-0.053742,0.053742,0.244155,0,0);-webkit-transform:matrix(0.244155,-0.053742,0.053742,0.244155,0,0);}
.m71{transform:matrix(0.244616,0.051605,-0.051605,0.244616,0,0);-ms-transform:matrix(0.244616,0.051605,-0.051605,0.244616,0,0);-webkit-transform:matrix(0.244616,0.051605,-0.051605,0.244616,0,0);}
.m15{transform:matrix(0.244864,0.050415,-0.050415,0.244864,0,0);-ms-transform:matrix(0.244864,0.050415,-0.050415,0.244864,0,0);-webkit-transform:matrix(0.244864,0.050415,-0.050415,0.244864,0,0);}
.m42{transform:matrix(0.245003,0.049734,-0.049734,0.245003,0,0);-ms-transform:matrix(0.245003,0.049734,-0.049734,0.245003,0,0);-webkit-transform:matrix(0.245003,0.049734,-0.049734,0.245003,0,0);}
.m82{transform:matrix(0.245087,-0.049321,0.049321,0.245087,0,0);-ms-transform:matrix(0.245087,-0.049321,0.049321,0.245087,0,0);-webkit-transform:matrix(0.245087,-0.049321,0.049321,0.245087,0,0);}
.m1a{transform:matrix(0.245140,-0.049053,0.049053,0.245140,0,0);-ms-transform:matrix(0.245140,-0.049053,0.049053,0.245140,0,0);-webkit-transform:matrix(0.245140,-0.049053,0.049053,0.245140,0,0);}
.m47{transform:matrix(0.245535,-0.047036,0.047036,0.245535,0,0);-ms-transform:matrix(0.245535,-0.047036,0.047036,0.245535,0,0);-webkit-transform:matrix(0.245535,-0.047036,0.047036,0.245535,0,0);}
.m51{transform:matrix(0.245603,0.046681,-0.046681,0.245603,0,0);-ms-transform:matrix(0.245603,0.046681,-0.046681,0.245603,0,0);-webkit-transform:matrix(0.245603,0.046681,-0.046681,0.245603,0,0);}
.m72{transform:matrix(0.245719,0.046065,-0.046065,0.245719,0,0);-ms-transform:matrix(0.245719,0.046065,-0.046065,0.245719,0,0);-webkit-transform:matrix(0.245719,0.046065,-0.046065,0.245719,0,0);}
.m56{transform:matrix(0.245912,-0.045023,0.045023,0.245912,0,0);-ms-transform:matrix(0.245912,-0.045023,0.045023,0.245912,0,0);-webkit-transform:matrix(0.245912,-0.045023,0.045023,0.245912,0,0);}
.m81{transform:matrix(0.246333,-0.042664,0.042664,0.246333,0,0);-ms-transform:matrix(0.246333,-0.042664,0.042664,0.246333,0,0);-webkit-transform:matrix(0.246333,-0.042664,0.042664,0.246333,0,0);}
.m63{transform:matrix(0.246360,-0.042503,0.042503,0.246360,0,0);-ms-transform:matrix(0.246360,-0.042503,0.042503,0.246360,0,0);-webkit-transform:matrix(0.246360,-0.042503,0.042503,0.246360,0,0);}
.m34{transform:matrix(0.246798,-0.039887,0.039887,0.246798,0,0);-ms-transform:matrix(0.246798,-0.039887,0.039887,0.246798,0,0);-webkit-transform:matrix(0.246798,-0.039887,0.039887,0.246798,0,0);}
.m16{transform:matrix(0.246994,0.038652,-0.038652,0.246994,0,0);-ms-transform:matrix(0.246994,0.038652,-0.038652,0.246994,0,0);-webkit-transform:matrix(0.246994,0.038652,-0.038652,0.246994,0,0);}
.m73{transform:matrix(0.247053,0.038274,-0.038274,0.247053,0,0);-ms-transform:matrix(0.247053,0.038274,-0.038274,0.247053,0,0);-webkit-transform:matrix(0.247053,0.038274,-0.038274,0.247053,0,0);}
.m31{transform:matrix(0.247356,0.036261,-0.036261,0.247356,0,0);-ms-transform:matrix(0.247356,0.036261,-0.036261,0.247356,0,0);-webkit-transform:matrix(0.247356,0.036261,-0.036261,0.247356,0,0);}
.m80{transform:matrix(0.247610,-0.034486,0.034486,0.247610,0,0);-ms-transform:matrix(0.247610,-0.034486,0.034486,0.247610,0,0);-webkit-transform:matrix(0.247610,-0.034486,0.034486,0.247610,0,0);}
.m5f{transform:matrix(0.247781,0.033237,-0.033237,0.247781,0,0);-ms-transform:matrix(0.247781,0.033237,-0.033237,0.247781,0,0);-webkit-transform:matrix(0.247781,0.033237,-0.033237,0.247781,0,0);}
.m74{transform:matrix(0.247903,0.032312,-0.032312,0.247903,0,0);-ms-transform:matrix(0.247903,0.032312,-0.032312,0.247903,0,0);-webkit-transform:matrix(0.247903,0.032312,-0.032312,0.247903,0,0);}
.m43{transform:matrix(0.248033,0.031296,-0.031296,0.248033,0,0);-ms-transform:matrix(0.248033,0.031296,-0.031296,0.248033,0,0);-webkit-transform:matrix(0.248033,0.031296,-0.031296,0.248033,0,0);}
.m75{transform:matrix(0.248362,0.028574,-0.028574,0.248362,0,0);-ms-transform:matrix(0.248362,0.028574,-0.028574,0.248362,0,0);-webkit-transform:matrix(0.248362,0.028574,-0.028574,0.248362,0,0);}
.m46{transform:matrix(0.248363,-0.028565,0.028565,0.248363,0,0);-ms-transform:matrix(0.248363,-0.028565,0.028565,0.248363,0,0);-webkit-transform:matrix(0.248363,-0.028565,0.028565,0.248363,0,0);}
.m7f{transform:matrix(0.248369,-0.028512,0.028512,0.248369,0,0);-ms-transform:matrix(0.248369,-0.028512,0.028512,0.248369,0,0);-webkit-transform:matrix(0.248369,-0.028512,0.028512,0.248369,0,0);}
.m55{transform:matrix(0.248386,-0.028366,0.028366,0.248386,0,0);-ms-transform:matrix(0.248386,-0.028366,0.028366,0.248386,0,0);-webkit-transform:matrix(0.248386,-0.028366,0.028366,0.248386,0,0);}
.m62{transform:matrix(0.248565,-0.026749,0.026749,0.248565,0,0);-ms-transform:matrix(0.248565,-0.026749,0.026749,0.248565,0,0);-webkit-transform:matrix(0.248565,-0.026749,0.026749,0.248565,0,0);}
.m76{transform:matrix(0.248764,0.024830,-0.024830,0.248764,0,0);-ms-transform:matrix(0.248764,0.024830,-0.024830,0.248764,0,0);-webkit-transform:matrix(0.248764,0.024830,-0.024830,0.248764,0,0);}
.m7e{transform:matrix(0.248807,-0.024396,0.024396,0.248807,0,0);-ms-transform:matrix(0.248807,-0.024396,0.024396,0.248807,0,0);-webkit-transform:matrix(0.248807,-0.024396,0.024396,0.248807,0,0);}
.m77{transform:matrix(0.249110,0.021079,-0.021079,0.249110,0,0);-ms-transform:matrix(0.249110,0.021079,-0.021079,0.249110,0,0);-webkit-transform:matrix(0.249110,0.021079,-0.021079,0.249110,0,0);}
.m17{transform:matrix(0.249155,0.020536,-0.020536,0.249155,0,0);-ms-transform:matrix(0.249155,0.020536,-0.020536,0.249155,0,0);-webkit-transform:matrix(0.249155,0.020536,-0.020536,0.249155,0,0);}
.m52{transform:matrix(0.249228,0.019634,-0.019634,0.249228,0,0);-ms-transform:matrix(0.249228,0.019634,-0.019634,0.249228,0,0);-webkit-transform:matrix(0.249228,0.019634,-0.019634,0.249228,0,0);}
.m7d{transform:matrix(0.249322,-0.018397,0.018397,0.249322,0,0);-ms-transform:matrix(0.249322,-0.018397,0.018397,0.249322,0,0);-webkit-transform:matrix(0.249322,-0.018397,0.018397,0.249322,0,0);}
.m19{transform:matrix(0.249419,-0.017029,0.017029,0.249419,0,0);-ms-transform:matrix(0.249419,-0.017029,0.017029,0.249419,0,0);-webkit-transform:matrix(0.249419,-0.017029,0.017029,0.249419,0,0);}
.m78{transform:matrix(0.249545,0.015073,-0.015073,0.249545,0,0);-ms-transform:matrix(0.249545,0.015073,-0.015073,0.249545,0,0);-webkit-transform:matrix(0.249545,0.015073,-0.015073,0.249545,0,0);}
.m60{transform:matrix(0.249589,0.014326,-0.014326,0.249589,0,0);-ms-transform:matrix(0.249589,0.014326,-0.014326,0.249589,0,0);-webkit-transform:matrix(0.249589,0.014326,-0.014326,0.249589,0,0);}
.m33{transform:matrix(0.249601,-0.014123,0.014123,0.249601,0,0);-ms-transform:matrix(0.249601,-0.014123,0.014123,0.249601,0,0);-webkit-transform:matrix(0.249601,-0.014123,0.014123,0.249601,0,0);}
.m45{transform:matrix(0.249706,-0.012131,0.012131,0.249706,0,0);-ms-transform:matrix(0.249706,-0.012131,0.012131,0.249706,0,0);-webkit-transform:matrix(0.249706,-0.012131,0.012131,0.249706,0,0);}
.m44{transform:matrix(0.249731,0.011589,-0.011589,0.249731,0,0);-ms-transform:matrix(0.249731,0.011589,-0.011589,0.249731,0,0);-webkit-transform:matrix(0.249731,0.011589,-0.011589,0.249731,0,0);}
.m54{transform:matrix(0.249732,-0.011579,0.011579,0.249732,0,0);-ms-transform:matrix(0.249732,-0.011579,0.011579,0.249732,0,0);-webkit-transform:matrix(0.249732,-0.011579,0.011579,0.249732,0,0);}
.m7c{transform:matrix(0.249763,-0.010878,0.010878,0.249763,0,0);-ms-transform:matrix(0.249763,-0.010878,0.010878,0.249763,0,0);-webkit-transform:matrix(0.249763,-0.010878,0.010878,0.249763,0,0);}
.m32{transform:matrix(0.249782,0.010429,-0.010429,0.249782,0,0);-ms-transform:matrix(0.249782,0.010429,-0.010429,0.249782,0,0);-webkit-transform:matrix(0.249782,0.010429,-0.010429,0.249782,0,0);}
.m79{transform:matrix(0.249862,0.008307,-0.008307,0.249862,0,0);-ms-transform:matrix(0.249862,0.008307,-0.008307,0.249862,0,0);-webkit-transform:matrix(0.249862,0.008307,-0.008307,0.249862,0,0);}
.m7b{transform:matrix(0.249953,-0.004859,0.004859,0.249953,0,0);-ms-transform:matrix(0.249953,-0.004859,0.004859,0.249953,0,0);-webkit-transform:matrix(0.249953,-0.004859,0.004859,0.249953,0,0);}
.m61{transform:matrix(0.249967,-0.004085,0.004085,0.249967,0,0);-ms-transform:matrix(0.249967,-0.004085,0.004085,0.249967,0,0);-webkit-transform:matrix(0.249967,-0.004085,0.004085,0.249967,0,0);}
.m7a{transform:matrix(0.249995,0.001535,-0.001535,0.249995,0,0);-ms-transform:matrix(0.249995,0.001535,-0.001535,0.249995,0,0);-webkit-transform:matrix(0.249995,0.001535,-0.001535,0.249995,0,0);}
.m18{transform:matrix(0.249996,0.001377,-0.001377,0.249996,0,0);-ms-transform:matrix(0.249996,0.001377,-0.001377,0.249996,0,0);-webkit-transform:matrix(0.249996,0.001377,-0.001377,0.249996,0,0);}
.m53{transform:matrix(0.249998,0.000964,-0.000964,0.249998,0,0);-ms-transform:matrix(0.249998,0.000964,-0.000964,0.249998,0,0);-webkit-transform:matrix(0.249998,0.000964,-0.000964,0.249998,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);}
.m8b{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.489556px;}
.v1{vertical-align:139.355994px;}
.ls0{letter-spacing:0.000000px;}
.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:-62.339404px;}
.ws0{word-spacing:-50.039636px;}
.ws1{word-spacing:-50.038897px;}
.ws2{word-spacing:-36.691563px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.033645px;}
._4{width:17.346732px;}
._2{width:1216.601873px;}
._1{width:1261.150248px;}
._3{width:3189.072453px;}
.fca{color:rgb(2,33,32);}
.fc9{color:rgb(152,119,100);}
.fc6{color:rgb(4,91,91);}
.fc8{color:rgb(182,209,117);}
.fc7{color:rgb(4,92,92);}
.fc3{color:rgb(236,239,218);}
.fc2{color:rgb(122,74,136);}
.fc5{color:rgb(255,171,96);}
.fc1{color:rgb(181,30,66);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:131.984040px;}
.fs1f{font-size:145.205873px;}
.fs20{font-size:145.213944px;}
.fs28{font-size:151.370183px;}
.fs21{font-size:155.109706px;}
.fs43{font-size:158.819091px;}
.fs27{font-size:165.088301px;}
.fs2e{font-size:173.968735px;}
.fse{font-size:179.996033px;}
.fs0{font-size:179.998691px;}
.fs25{font-size:215.363374px;}
.fs2c{font-size:215.363376px;}
.fs2b{font-size:215.363380px;}
.fs24{font-size:215.363383px;}
.fs19{font-size:215.363385px;}
.fs29{font-size:215.363386px;}
.fs1c{font-size:215.363388px;}
.fs2a{font-size:215.363389px;}
.fs17{font-size:215.363390px;}
.fs1d{font-size:215.363392px;}
.fs18{font-size:215.363393px;}
.fs26{font-size:215.363394px;}
.fs11{font-size:215.363396px;}
.fs10{font-size:215.363397px;}
.fs15{font-size:215.363399px;}
.fsf{font-size:215.363401px;}
.fs12{font-size:215.363403px;}
.fs13{font-size:215.363407px;}
.fs1b{font-size:215.363408px;}
.fs16{font-size:215.363410px;}
.fs14{font-size:215.363412px;}
.fs1a{font-size:215.363418px;}
.fsc{font-size:218.528903px;}
.fsd{font-size:218.528905px;}
.fs8{font-size:218.528909px;}
.fsb{font-size:218.528910px;}
.fs1{font-size:218.528911px;}
.fs7{font-size:218.528913px;}
.fs5{font-size:218.528915px;}
.fsa{font-size:218.528917px;}
.fs4{font-size:218.528918px;}
.fs9{font-size:218.528920px;}
.fs3{font-size:218.528923px;}
.fs6{font-size:218.528928px;}
.fs2{font-size:218.528931px;}
.fs23{font-size:229.761799px;}
.fs2f{font-size:239.983263px;}
.fs22{font-size:269.998036px;}
.fs32{font-size:413.951941px;}
.fs3d{font-size:413.951946px;}
.fs36{font-size:413.951948px;}
.fs3a{font-size:413.951951px;}
.fs33{font-size:413.951952px;}
.fs3c{font-size:413.951955px;}
.fs35{font-size:413.951958px;}
.fs41{font-size:413.951959px;}
.fs34{font-size:413.951962px;}
.fs31{font-size:413.951964px;}
.fs42{font-size:413.951966px;}
.fs30{font-size:413.951968px;}
.fs3f{font-size:413.951969px;}
.fs37{font-size:413.951972px;}
.fs3b{font-size:413.951974px;}
.fs39{font-size:413.951978px;}
.fs38{font-size:413.951983px;}
.fs3e{font-size:413.951986px;}
.fs40{font-size:413.951989px;}
.fs2d{font-size:461.966658px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.000160px;}
.ya6{bottom:28.062412px;}
.y2d{bottom:29.679581px;}
.y5{bottom:31.499855px;}
.ya5{bottom:88.811970px;}
.y2c{bottom:118.718718px;}
.y54{bottom:121.498796px;}
.y4f{bottom:121.499149px;}
.y4{bottom:121.499200px;}
.y2b{bottom:207.757856px;}
.y53{bottom:211.498142px;}
.y4e{bottom:211.498495px;}
.y3{bottom:211.498546px;}
.y2a{bottom:296.796994px;}
.y52{bottom:301.497487px;}
.y4d{bottom:301.497840px;}
.y2{bottom:301.497891px;}
.y29{bottom:385.836132px;}
.y51{bottom:391.496833px;}
.y4c{bottom:391.497185px;}
.yd1{bottom:813.890499px;}
.yd0{bottom:960.013005px;}
.y87{bottom:1242.638601px;}
.y63{bottom:1499.854086px;}
.y62{bottom:1534.693276px;}
.y5d{bottom:1634.363436px;}
.y5c{bottom:1683.863076px;}
.y5a{bottom:1693.953435px;}
.y5b{bottom:1731.112732px;}
.y9d{bottom:1847.773113px;}
.y9e{bottom:1848.500547px;}
.y9c{bottom:1849.028487px;}
.y9f{bottom:1851.857470px;}
.y9b{bottom:1853.289022px;}
.ya0{bottom:1854.242568px;}
.y9a{bottom:1859.172555px;}
.ya1{bottom:1861.966117px;}
.y99{bottom:1871.570017px;}
.y50{bottom:1928.430717px;}
.y60{bottom:1951.869325px;}
.y59{bottom:1987.306670px;}
.y5f{bottom:1997.993990px;}
.y58{bottom:2033.431335px;}
.y5e{bottom:2044.118655px;}
.y61{bottom:2080.957019px;}
.y57{bottom:2235.690074px;}
.y56{bottom:2281.814738px;}
.y55{bottom:2327.939403px;}
.y6c{bottom:2599.227907px;}
.y3f{bottom:2614.490238px;}
.y3e{bottom:2615.819667px;}
.y40{bottom:2616.482972px;}
.y3d{bottom:2621.152905px;}
.y41{bottom:2622.815594px;}
.y3c{bottom:2624.937091px;}
.y42{bottom:2626.824496px;}
.y3b{bottom:2636.982904px;}
.y43{bottom:2638.001991px;}
.y3a{bottom:2643.367271px;}
.y44{bottom:2644.628280px;}
.y39{bottom:2657.172842px;}
.y45{bottom:2660.241267px;}
.y46{bottom:2669.283054px;}
.y38{bottom:2674.762417px;}
.y37{bottom:2685.449368px;}
.y47{bottom:2685.459092px;}
.y6b{bottom:2693.727220px;}
.y48{bottom:2694.684648px;}
.y36{bottom:2696.340412px;}
.y4b{bottom:2699.153828px;}
.y49{bottom:2704.550382px;}
.y35{bottom:2719.282754px;}
.y4a{bottom:2727.328268px;}
.y34{bottom:2747.123060px;}
.y33{bottom:2759.750336px;}
.y32{bottom:2787.474644px;}
.y6a{bottom:2788.226532px;}
.y31{bottom:2810.678497px;}
.y30{bottom:2826.844133px;}
.y2f{bottom:2859.491603px;}
.y69{bottom:2882.725845px;}
.y2e{bottom:2890.878446px;}
.y75{bottom:3171.983632px;}
.y74{bottom:3251.687235px;}
.y73{bottom:3331.390837px;}
.y1f{bottom:3363.889464px;}
.y1e{bottom:3364.220444px;}
.y20{bottom:3365.759918px;}
.y1d{bottom:3366.769866px;}
.y1c{bottom:3369.506743px;}
.y1b{bottom:3373.187913px;}
.y1a{bottom:3376.971159px;}
.y21{bottom:3377.632363px;}
.y19{bottom:3386.836190px;}
.y22{bottom:3389.329526px;}
.y18{bottom:3393.946432px;}
.y23{bottom:3405.530648px;}
.y17{bottom:3409.125547px;}
.y24{bottom:3418.175814px;}
.y16{bottom:3422.573879px;}
.y15{bottom:3433.779616px;}
.y25{bottom:3437.732805px;}
.y14{bottom:3443.141363px;}
.y26{bottom:3447.333196px;}
.y13{bottom:3467.986009px;}
.y27{bottom:3469.648079px;}
.y28{bottom:3475.067699px;}
.y12{bottom:3487.796822px;}
.y11{bottom:3514.640192px;}
.y10{bottom:3536.117888px;}
.yf{bottom:3561.347274px;}
.y72{bottom:3574.335133px;}
.ye{bottom:3592.626052px;}
.yd{bottom:3639.675184px;}
.y71{bottom:3654.038736px;}
.yc{bottom:3659.057124px;}
.yb{bottom:3696.340953px;}
.ya{bottom:3721.922543px;}
.y9{bottom:3748.202871px;}
.y8{bottom:3783.524522px;}
.y7{bottom:3828.916562px;}
.y78{bottom:3884.895418px;}
.y77{bottom:3964.599021px;}
.y76{bottom:4044.302623px;}
.y80{bottom:4123.484793px;}
.y7f{bottom:4124.918708px;}
.y81{bottom:4125.062651px;}
.y82{bottom:4126.872758px;}
.y7e{bottom:4127.487606px;}
.y83{bottom:4133.426012px;}
.y7d{bottom:4133.907155px;}
.y7c{bottom:4144.519095px;}
.y84{bottom:4144.524851px;}
.y85{bottom:4149.843632px;}
.y7b{bottom:4159.283843px;}
.y86{bottom:4163.574887px;}
.y7a{bottom:4178.677349px;}
.y79{bottom:4199.814485px;}
.y70{bottom:4264.385120px;}
.y6f{bottom:4344.088723px;}
.y6e{bottom:4605.712590px;}
.y6d{bottom:4685.416193px;}
.y90{bottom:4858.520172px;}
.y8f{bottom:4858.562320px;}
.y91{bottom:4859.201505px;}
.y8e{bottom:4860.878458px;}
.y92{bottom:4862.731259px;}
.y93{bottom:4865.726209px;}
.y68{bottom:4867.211411px;}
.y8d{bottom:4868.281312px;}
.y8c{bottom:4873.819898px;}
.y94{bottom:4874.527624px;}
.y8b{bottom:4885.478811px;}
.y95{bottom:4887.943294px;}
.y96{bottom:4894.210214px;}
.y8a{bottom:4897.814341px;}
.y97{bottom:4909.856416px;}
.y89{bottom:4916.675447px;}
.y98{bottom:4927.959212px;}
.y88{bottom:4936.046361px;}
.y67{bottom:4961.710723px;}
.y1{bottom:5022.537841px;}
.y66{bottom:5056.210036px;}
.y65{bottom:5150.709348px;}
.y64{bottom:5245.208661px;}
.yaa{bottom:5472.951496px;}
.ya9{bottom:5579.825719px;}
.ya8{bottom:5686.699941px;}
.ya4{bottom:5714.206954px;}
.ya7{bottom:5793.574164px;}
.ya3{bottom:5875.080784px;}
.ya2{bottom:6035.954614px;}
.yc0{bottom:7284.066141px;}
.ybf{bottom:7284.266652px;}
.yc1{bottom:7284.615400px;}
.ybe{bottom:7285.772808px;}
.yc2{bottom:7287.162005px;}
.ybd{bottom:7289.461034px;}
.yc3{bottom:7291.585287px;}
.ybc{bottom:7292.136669px;}
.yc4{bottom:7295.014732px;}
.ybb{bottom:7295.027840px;}
.yc5{bottom:7298.165016px;}
.yba{bottom:7298.355565px;}
.yb9{bottom:7302.118875px;}
.yc6{bottom:7307.012915px;}
.yb8{bottom:7311.676682px;}
.yc7{bottom:7318.076689px;}
.yb7{bottom:7322.455260px;}
.yc8{bottom:7326.161819px;}
.yb6{bottom:7328.661186px;}
.yc9{bottom:7332.413256px;}
.yca{bottom:7340.353556px;}
.yb5{bottom:7341.769829px;}
.ycb{bottom:7356.878755px;}
.yb4{bottom:7358.300191px;}
.ycc{bottom:7366.556765px;}
.yb3{bottom:7368.427589px;}
.yb2{bottom:7377.187042px;}
.ycd{bottom:7386.198373px;}
.yb1{bottom:7388.156940px;}
.yce{bottom:7399.622978px;}
.yb0{bottom:7407.673403px;}
.ycf{bottom:7420.389721px;}
.yaf{bottom:7429.011274px;}
.yae{bottom:7442.754800px;}
.yad{bottom:7468.889541px;}
.yac{bottom:7486.891292px;}
.yab{bottom:7518.920839px;}
.h20{height:97.272237px;}
.h21{height:107.016728px;}
.h22{height:107.022677px;}
.h24{height:117.847023px;}
.h49{height:119.114318px;}
.h4a{height:119.689018px;}
.h29{height:121.232939px;}
.h2a{height:121.670078px;}
.h36{height:133.109867px;}
.h10{height:139.496925px;}
.h2{height:139.498985px;}
.h28{height:163.625688px;}
.h2b{height:163.625693px;}
.h27{height:163.625695px;}
.h1a{height:163.625697px;}
.h2c{height:163.625698px;}
.h1d{height:163.625699px;}
.h18{height:163.625701px;}
.h19{height:163.625703px;}
.h1b{height:163.625704px;}
.h12{height:163.625706px;}
.h16{height:163.625707px;}
.h11{height:163.625709px;}
.h13{height:163.625711px;}
.h14{height:163.625713px;}
.h17{height:163.625715px;}
.h15{height:163.625717px;}
.h1c{height:163.625722px;}
.h31{height:164.992743px;}
.h30{height:164.992745px;}
.h2d{height:164.992748px;}
.h2f{height:164.992749px;}
.h33{height:164.992750px;}
.h2e{height:164.992756px;}
.h34{height:164.992757px;}
.h32{height:164.992761px;}
.hc{height:166.030748px;}
.hd{height:166.030750px;}
.ha{height:166.030753px;}
.h4{height:166.030755px;}
.he{height:166.030756px;}
.h8{height:166.030758px;}
.h7{height:166.030760px;}
.hb{height:166.030762px;}
.h6{height:166.030764px;}
.h9{height:166.030768px;}
.h5{height:166.030770px;}
.h26{height:169.334446px;}
.h37{height:182.331034px;}
.h25{height:198.988553px;}
.h23{height:257.203017px;}
.h3a{height:305.082581px;}
.h3e{height:305.082585px;}
.h42{height:305.082588px;}
.h3b{height:305.082589px;}
.h44{height:305.082591px;}
.h3d{height:305.082593px;}
.h47{height:305.082594px;}
.h3c{height:305.082596px;}
.h39{height:305.082597px;}
.h48{height:305.082599px;}
.h38{height:305.082601px;}
.h3f{height:305.082603px;}
.h43{height:305.082605px;}
.h41{height:305.082608px;}
.h40{height:305.082611px;}
.h45{height:305.082614px;}
.h46{height:305.082616px;}
.h35{height:340.469427px;}
.h1{height:352.122523px;}
.hf{height:437.204865px;}
.h1f{height:442.121464px;}
.h1e{height:442.121817px;}
.h3{height:8503.874646px;}
.h0{height:8503.874805px;}
.w7{width:906.743374px;}
.w2{width:1085.617035px;}
.w5{width:1110.366962px;}
.w4{width:1147.234956px;}
.w6{width:1190.241346px;}
.w3{width:3614.624849px;}
.w0{width:3614.625000px;}
.w1{width:3615.091667px;}
.x0{left:0.000000px;}
.x2{left:8.929623px;}
.x5e{left:28.254011px;}
.x76{left:48.209917px;}
.x24{left:58.890925px;}
.x25{left:66.961666px;}
.x6{left:73.188077px;}
.x5{left:74.529971px;}
.x7{left:78.006624px;}
.x4{left:79.300555px;}
.x8{left:81.105522px;}
.x26{left:86.423952px;}
.x3{left:90.891634px;}
.x9{left:95.558039px;}
.x27{left:98.605606px;}
.xa{left:109.194995px;}
.x28{left:116.908531px;}
.xb{left:122.947277px;}
.x29{left:125.940062px;}
.xc{left:136.626212px;}
.x2a{left:150.456163px;}
.xd{left:157.569887px;}
.xe{left:175.487178px;}
.x5f{left:179.539550px;}
.x2b{left:189.220081px;}
.xf{left:203.506725px;}
.x60{left:205.606758px;}
.x51{left:211.065896px;}
.x75{left:213.651333px;}
.x10{left:215.469837px;}
.x11{left:231.286687px;}
.x2c{left:232.439729px;}
.x61{left:237.802240px;}
.x52{left:245.378434px;}
.x6f{left:249.071704px;}
.x12{left:252.937630px;}
.x2d{left:261.310975px;}
.x62{left:263.650973px;}
.x2e{left:275.660997px;}
.x53{left:279.908431px;}
.x13{left:283.952509px;}
.x70{left:288.100393px;}
.x63{left:296.544093px;}
.x14{left:300.667455px;}
.x54{left:314.463446px;}
.x2f{left:315.951048px;}
.x15{left:331.605202px;}
.x16{left:346.301008px;}
.x55{left:347.882381px;}
.x4b{left:353.043790px;}
.x64{left:355.368144px;}
.x17{left:364.493053px;}
.x56{left:365.756912px;}
.x30{left:368.966928px;}
.x18{left:379.965913px;}
.x65{left:389.319130px;}
.x71{left:399.844340px;}
.x31{left:402.758158px;}
.x66{left:406.766300px;}
.x19{left:415.752336px;}
.x67{left:424.558776px;}
.x72{left:428.617075px;}
.x57{left:431.095204px;}
.x1a{left:433.953097px;}
.x32{left:437.345213px;}
.x73{left:443.804867px;}
.x58{left:448.967102px;}
.x68{left:453.388296px;}
.x1b{left:468.930679px;}
.x69{left:471.100221px;}
.x33{left:473.781764px;}
.x74{left:475.180131px;}
.x59{left:482.986074px;}
.x34{left:491.319384px;}
.x6a{left:504.607913px;}
.x5a{left:518.183269px;}
.x1c{left:524.026552px;}
.x5b{left:532.607714px;}
.x6b{left:538.988837px;}
.x35{left:541.045995px;}
.x6c{left:553.027463px;}
.x1d{left:558.080481px;}
.x5c{left:561.856856px;}
.x36{left:571.282978px;}
.x6d{left:581.298462px;}
.x37{left:586.586313px;}
.x1e{left:592.178488px;}
.x6e{left:607.425681px;}
.x38{left:609.465769px;}
.x1f{left:614.280904px;}
.x39{left:621.102677px;}
.x78{left:623.455082px;}
.x3a{left:632.893676px;}
.x20{left:641.736550px;}
.x21{left:654.031870px;}
.x3b{left:655.810981px;}
.x22{left:678.053085px;}
.x79{left:681.716659px;}
.x3d{left:704.073823px;}
.x1{left:714.955398px;}
.x50{left:723.139494px;}
.x3c{left:724.708374px;}
.x23{left:746.454245px;}
.x7a{left:768.196710px;}
.x7b{left:822.949723px;}
.x7c{left:856.045166px;}
.x7d{left:883.873867px;}
.x7e{left:917.473124px;}
.x7f{left:979.308698px;}
.x80{left:1035.900574px;}
.x81{left:1064.562593px;}
.x82{left:1121.874949px;}
.x83{left:1184.973223px;}
.x84{left:1213.867082px;}
.x85{left:1242.814451px;}
.x86{left:1271.808594px;}
.x5d{left:1276.643539px;}
.x87{left:1301.050482px;}
.x9b{left:1303.169094px;}
.x88{left:1364.837056px;}
.x89{left:1405.733668px;}
.x4c{left:1428.930757px;}
.x8a{left:1469.588544px;}
.x8b{left:1504.638529px;}
.x8c{left:1562.861994px;}
.x8d{left:1620.820795px;}
.x8e{left:1655.517632px;}
.x8f{left:1684.712316px;}
.x90{left:1748.143176px;}
.x91{left:1811.070946px;}
.x92{left:1850.958069px;}
.x93{left:1879.455135px;}
.x94{left:1913.637353px;}
.x95{left:1975.316916px;}
.x4d{left:1999.119985px;}
.x47{left:2004.667317px;}
.x96{left:2009.048578px;}
.x49{left:2041.387747px;}
.x97{left:2069.846997px;}
.x48{left:2096.389306px;}
.x46{left:2097.918839px;}
.x98{left:2108.467046px;}
.x99{left:2162.718766px;}
.x44{left:2174.594068px;}
.x3e{left:2183.235436px;}
.x40{left:2188.737344px;}
.x3f{left:2196.102530px;}
.x45{left:2203.457139px;}
.x4e{left:2345.264038px;}
.x4f{left:2350.695142px;}
.x9a{left:2516.766591px;}
.x4a{left:2581.075149px;}
.x77{left:2632.596046px;}
.x43{left:3097.215591px;}
.x42{left:3110.072198px;}
.x41{left:3225.679318px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.212939pt;}
.v1{vertical-align:123.871995pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-55.412803pt;}
.ws0{word-spacing:-44.479676pt;}
.ws1{word-spacing:-44.479020pt;}
.ws2{word-spacing:-32.614723pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-0.918795pt;}
._4{width:15.419317pt;}
._2{width:1081.423887pt;}
._1{width:1121.022443pt;}
._3{width:2834.731069pt;}
.fs1e{font-size:117.319147pt;}
.fs1f{font-size:129.071887pt;}
.fs20{font-size:129.079061pt;}
.fs28{font-size:134.551273pt;}
.fs21{font-size:137.875295pt;}
.fs43{font-size:141.172525pt;}
.fs27{font-size:146.745157pt;}
.fs2e{font-size:154.638875pt;}
.fse{font-size:159.996473pt;}
.fs0{font-size:159.998836pt;}
.fs25{font-size:191.434110pt;}
.fs2c{font-size:191.434112pt;}
.fs2b{font-size:191.434115pt;}
.fs24{font-size:191.434118pt;}
.fs19{font-size:191.434120pt;}
.fs29{font-size:191.434121pt;}
.fs1c{font-size:191.434123pt;}
.fs2a{font-size:191.434124pt;}
.fs17{font-size:191.434125pt;}
.fs1d{font-size:191.434126pt;}
.fs18{font-size:191.434127pt;}
.fs26{font-size:191.434128pt;}
.fs11{font-size:191.434130pt;}
.fs10{font-size:191.434130pt;}
.fs15{font-size:191.434132pt;}
.fsf{font-size:191.434134pt;}
.fs12{font-size:191.434136pt;}
.fs13{font-size:191.434139pt;}
.fs1b{font-size:191.434140pt;}
.fs16{font-size:191.434142pt;}
.fs14{font-size:191.434144pt;}
.fs1a{font-size:191.434150pt;}
.fsc{font-size:194.247913pt;}
.fsd{font-size:194.247915pt;}
.fs8{font-size:194.247919pt;}
.fsb{font-size:194.247920pt;}
.fs1{font-size:194.247921pt;}
.fs7{font-size:194.247922pt;}
.fs5{font-size:194.247925pt;}
.fsa{font-size:194.247926pt;}
.fs4{font-size:194.247927pt;}
.fs9{font-size:194.247929pt;}
.fs3{font-size:194.247932pt;}
.fs6{font-size:194.247936pt;}
.fs2{font-size:194.247938pt;}
.fs23{font-size:204.232711pt;}
.fs2f{font-size:213.318456pt;}
.fs22{font-size:239.998254pt;}
.fs32{font-size:367.957281pt;}
.fs3d{font-size:367.957286pt;}
.fs36{font-size:367.957287pt;}
.fs3a{font-size:367.957290pt;}
.fs33{font-size:367.957291pt;}
.fs3c{font-size:367.957293pt;}
.fs35{font-size:367.957296pt;}
.fs41{font-size:367.957297pt;}
.fs34{font-size:367.957299pt;}
.fs31{font-size:367.957301pt;}
.fs42{font-size:367.957303pt;}
.fs30{font-size:367.957305pt;}
.fs3f{font-size:367.957306pt;}
.fs37{font-size:367.957308pt;}
.fs3b{font-size:367.957310pt;}
.fs39{font-size:367.957314pt;}
.fs38{font-size:367.957318pt;}
.fs3e{font-size:367.957321pt;}
.fs40{font-size:367.957323pt;}
.fs2d{font-size:410.637029pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.000142pt;}
.ya6{bottom:24.944366pt;}
.y2d{bottom:26.381849pt;}
.y5{bottom:27.999871pt;}
.ya5{bottom:78.943973pt;}
.y2c{bottom:105.527750pt;}
.y54{bottom:107.998930pt;}
.y4f{bottom:107.999244pt;}
.y4{bottom:107.999289pt;}
.y2b{bottom:184.673650pt;}
.y53{bottom:187.998348pt;}
.y4e{bottom:187.998662pt;}
.y3{bottom:187.998707pt;}
.y2a{bottom:263.819550pt;}
.y52{bottom:267.997766pt;}
.y4d{bottom:267.998080pt;}
.y2{bottom:267.998125pt;}
.y29{bottom:342.965451pt;}
.y51{bottom:347.997185pt;}
.y4c{bottom:347.997498pt;}
.yd1{bottom:723.458221pt;}
.yd0{bottom:853.344893pt;}
.y87{bottom:1104.567645pt;}
.y63{bottom:1333.203632pt;}
.y62{bottom:1364.171801pt;}
.y5d{bottom:1452.767498pt;}
.y5c{bottom:1496.767178pt;}
.y5a{bottom:1505.736387pt;}
.y5b{bottom:1538.766873pt;}
.y9d{bottom:1642.464990pt;}
.y9e{bottom:1643.111597pt;}
.y9c{bottom:1643.580878pt;}
.y9f{bottom:1646.095529pt;}
.y9b{bottom:1647.368020pt;}
.ya0{bottom:1648.215616pt;}
.y9a{bottom:1652.597827pt;}
.ya1{bottom:1655.080992pt;}
.y99{bottom:1663.617793pt;}
.y50{bottom:1714.160637pt;}
.y60{bottom:1734.994956pt;}
.y59{bottom:1766.494818pt;}
.y5f{bottom:1775.994658pt;}
.y58{bottom:1807.494520pt;}
.y5e{bottom:1816.994360pt;}
.y61{bottom:1849.739572pt;}
.y57{bottom:1987.280065pt;}
.y56{bottom:2028.279767pt;}
.y55{bottom:2069.279469pt;}
.y6c{bottom:2310.424806pt;}
.y3f{bottom:2323.991323pt;}
.y3e{bottom:2325.173037pt;}
.y40{bottom:2325.762642pt;}
.y3d{bottom:2329.913693pt;}
.y41{bottom:2331.391639pt;}
.y3c{bottom:2333.277414pt;}
.y42{bottom:2334.955108pt;}
.y3b{bottom:2343.984803pt;}
.y43{bottom:2344.890659pt;}
.y3a{bottom:2349.659796pt;}
.y44{bottom:2350.780693pt;}
.y39{bottom:2361.931415pt;}
.y45{bottom:2364.658904pt;}
.y46{bottom:2372.696048pt;}
.y38{bottom:2377.566593pt;}
.y37{bottom:2387.066105pt;}
.y47{bottom:2387.074748pt;}
.y6b{bottom:2394.424195pt;}
.y48{bottom:2395.275243pt;}
.y36{bottom:2396.747033pt;}
.y4b{bottom:2399.247847pt;}
.y49{bottom:2404.044784pt;}
.y35{bottom:2417.140226pt;}
.y4a{bottom:2424.291794pt;}
.y34{bottom:2441.887164pt;}
.y33{bottom:2453.111410pt;}
.y32{bottom:2477.755239pt;}
.y6a{bottom:2478.423584pt;}
.y31{bottom:2498.380886pt;}
.y30{bottom:2512.750341pt;}
.y2f{bottom:2541.770313pt;}
.y69{bottom:2562.422973pt;}
.y2e{bottom:2569.669730pt;}
.y75{bottom:2819.541006pt;}
.y74{bottom:2890.388653pt;}
.y73{bottom:2961.236300pt;}
.y1f{bottom:2990.123968pt;}
.y1e{bottom:2990.418173pt;}
.y20{bottom:2991.786594pt;}
.y1d{bottom:2992.684326pt;}
.y1c{bottom:2995.117105pt;}
.y1b{bottom:2998.389256pt;}
.y1a{bottom:3001.752141pt;}
.y21{bottom:3002.339878pt;}
.y19{bottom:3010.521058pt;}
.y22{bottom:3012.737356pt;}
.y18{bottom:3016.841273pt;}
.y23{bottom:3027.138353pt;}
.y17{bottom:3030.333820pt;}
.y24{bottom:3038.378502pt;}
.y16{bottom:3042.287893pt;}
.y15{bottom:3052.248548pt;}
.y25{bottom:3055.762493pt;}
.y14{bottom:3060.570101pt;}
.y26{bottom:3064.296174pt;}
.y13{bottom:3082.654231pt;}
.y27{bottom:3084.131626pt;}
.y28{bottom:3088.949066pt;}
.y12{bottom:3100.263842pt;}
.y11{bottom:3124.124615pt;}
.y10{bottom:3143.215900pt;}
.yf{bottom:3165.642021pt;}
.y72{bottom:3177.186785pt;}
.ye{bottom:3193.445380pt;}
.yd{bottom:3235.266830pt;}
.y71{bottom:3248.034432pt;}
.yc{bottom:3252.495221pt;}
.yb{bottom:3285.636403pt;}
.ya{bottom:3308.375594pt;}
.y9{bottom:3331.735885pt;}
.y8{bottom:3363.132909pt;}
.y7{bottom:3403.481388pt;}
.y78{bottom:3453.240372pt;}
.y77{bottom:3524.088019pt;}
.y76{bottom:3594.935665pt;}
.y80{bottom:3665.319816pt;}
.y7f{bottom:3666.594407pt;}
.y81{bottom:3666.722357pt;}
.y82{bottom:3668.331340pt;}
.y7e{bottom:3668.877872pt;}
.y83{bottom:3674.156455pt;}
.y7d{bottom:3674.584138pt;}
.y7c{bottom:3684.016974pt;}
.y84{bottom:3684.022090pt;}
.y85{bottom:3688.749895pt;}
.y7b{bottom:3697.141194pt;}
.y86{bottom:3700.955455pt;}
.y7a{bottom:3714.379866pt;}
.y79{bottom:3733.168431pt;}
.y70{bottom:3790.564551pt;}
.y6f{bottom:3861.412198pt;}
.y6e{bottom:4093.966747pt;}
.y6d{bottom:4164.814394pt;}
.y90{bottom:4318.684597pt;}
.y8f{bottom:4318.722063pt;}
.y91{bottom:4319.290227pt;}
.y8e{bottom:4320.780851pt;}
.y92{bottom:4322.427786pt;}
.y93{bottom:4325.089963pt;}
.y68{bottom:4326.410143pt;}
.y8d{bottom:4327.361166pt;}
.y8c{bottom:4332.284354pt;}
.y94{bottom:4332.913444pt;}
.y8b{bottom:4342.647832pt;}
.y95{bottom:4344.838483pt;}
.y96{bottom:4350.409080pt;}
.y8a{bottom:4353.612748pt;}
.y97{bottom:4364.316814pt;}
.y89{bottom:4370.378175pt;}
.y98{bottom:4380.408189pt;}
.y88{bottom:4387.596765pt;}
.y67{bottom:4410.409532pt;}
.y1{bottom:4464.478081pt;}
.y66{bottom:4494.408921pt;}
.y65{bottom:4578.408310pt;}
.y64{bottom:4662.407699pt;}
.yaa{bottom:4864.845774pt;}
.ya9{bottom:4959.845083pt;}
.ya8{bottom:5054.844392pt;}
.ya4{bottom:5079.295070pt;}
.ya7{bottom:5149.843701pt;}
.ya3{bottom:5222.294030pt;}
.ya2{bottom:5365.292990pt;}
.yc0{bottom:6474.725459pt;}
.ybf{bottom:6474.903690pt;}
.yc1{bottom:6475.213689pt;}
.ybe{bottom:6476.242496pt;}
.yc2{bottom:6477.477337pt;}
.ybd{bottom:6479.520919pt;}
.yc3{bottom:6481.409144pt;}
.ybc{bottom:6481.899261pt;}
.yc4{bottom:6484.457539pt;}
.ybb{bottom:6484.469191pt;}
.yc5{bottom:6487.257792pt;}
.yba{bottom:6487.427169pt;}
.yb9{bottom:6490.772333pt;}
.yc6{bottom:6495.122591pt;}
.yb8{bottom:6499.268161pt;}
.yc7{bottom:6504.957057pt;}
.yb7{bottom:6508.849120pt;}
.yc8{bottom:6512.143839pt;}
.yb6{bottom:6514.365499pt;}
.yc9{bottom:6517.700672pt;}
.yca{bottom:6524.758716pt;}
.yb5{bottom:6526.017625pt;}
.ycb{bottom:6539.447782pt;}
.yb4{bottom:6540.711281pt;}
.ycc{bottom:6548.050458pt;}
.yb3{bottom:6549.713413pt;}
.yb2{bottom:6557.499593pt;}
.ycd{bottom:6565.509665pt;}
.yb1{bottom:6567.250613pt;}
.yce{bottom:6577.442647pt;}
.yb0{bottom:6584.598580pt;}
.ycf{bottom:6595.901974pt;}
.yaf{bottom:6603.565577pt;}
.yae{bottom:6615.782044pt;}
.yad{bottom:6639.012926pt;}
.yac{bottom:6655.014481pt;}
.yab{bottom:6683.485190pt;}
.h20{height:86.464211pt;}
.h21{height:95.125981pt;}
.h22{height:95.131268pt;}
.h24{height:104.752909pt;}
.h49{height:105.879394pt;}
.h4a{height:106.390239pt;}
.h29{height:107.762612pt;}
.h2a{height:108.151180pt;}
.h36{height:118.319882pt;}
.h10{height:123.997267pt;}
.h2{height:123.999098pt;}
.h28{height:145.445056pt;}
.h2b{height:145.445060pt;}
.h27{height:145.445062pt;}
.h1a{height:145.445064pt;}
.h2c{height:145.445065pt;}
.h1d{height:145.445066pt;}
.h18{height:145.445068pt;}
.h19{height:145.445069pt;}
.h1b{height:145.445071pt;}
.h12{height:145.445072pt;}
.h16{height:145.445073pt;}
.h11{height:145.445075pt;}
.h13{height:145.445076pt;}
.h14{height:145.445078pt;}
.h17{height:145.445080pt;}
.h15{height:145.445082pt;}
.h1c{height:145.445086pt;}
.h31{height:146.660216pt;}
.h30{height:146.660218pt;}
.h2d{height:146.660220pt;}
.h2f{height:146.660221pt;}
.h33{height:146.660222pt;}
.h2e{height:146.660227pt;}
.h34{height:146.660229pt;}
.h32{height:146.660232pt;}
.hc{height:147.582887pt;}
.hd{height:147.582889pt;}
.ha{height:147.582891pt;}
.h4{height:147.582893pt;}
.he{height:147.582895pt;}
.h8{height:147.582896pt;}
.h7{height:147.582898pt;}
.hb{height:147.582899pt;}
.h6{height:147.582901pt;}
.h9{height:147.582904pt;}
.h5{height:147.582906pt;}
.h26{height:150.519508pt;}
.h37{height:162.072030pt;}
.h25{height:176.878713pt;}
.h23{height:228.624904pt;}
.h3a{height:271.184516pt;}
.h3e{height:271.184520pt;}
.h42{height:271.184522pt;}
.h3b{height:271.184523pt;}
.h44{height:271.184525pt;}
.h3d{height:271.184527pt;}
.h47{height:271.184528pt;}
.h3c{height:271.184529pt;}
.h39{height:271.184531pt;}
.h48{height:271.184532pt;}
.h38{height:271.184534pt;}
.h3f{height:271.184536pt;}
.h43{height:271.184537pt;}
.h41{height:271.184540pt;}
.h40{height:271.184543pt;}
.h45{height:271.184546pt;}
.h46{height:271.184547pt;}
.h35{height:302.639490pt;}
.h1{height:312.997798pt;}
.hf{height:388.626547pt;}
.h1f{height:392.996857pt;}
.h1e{height:392.997171pt;}
.h3{height:7558.999685pt;}
.h0{height:7558.999827pt;}
.w7{width:805.994110pt;}
.w2{width:964.992920pt;}
.w5{width:986.992855pt;}
.w4{width:1019.764406pt;}
.w6{width:1057.992308pt;}
.w3{width:3212.999866pt;}
.w0{width:3213.000000pt;}
.w1{width:3213.414815pt;}
.x0{left:0.000000pt;}
.x2{left:7.937442pt;}
.x5e{left:25.114677pt;}
.x76{left:42.853260pt;}
.x24{left:52.347489pt;}
.x25{left:59.521481pt;}
.x6{left:65.056069pt;}
.x5{left:66.248863pt;}
.x7{left:69.339221pt;}
.x4{left:70.489382pt;}
.x8{left:72.093798pt;}
.x26{left:76.821291pt;}
.x3{left:80.792563pt;}
.x9{left:84.940479pt;}
.x27{left:87.649427pt;}
.xa{left:97.062218pt;}
.x28{left:103.918694pt;}
.xb{left:109.286469pt;}
.x29{left:111.946722pt;}
.xc{left:121.445522pt;}
.x2a{left:133.738812pt;}
.xd{left:140.062122pt;}
.xe{left:155.988603pt;}
.x5f{left:159.590711pt;}
.x2b{left:168.195628pt;}
.xf{left:180.894867pt;}
.x60{left:182.761563pt;}
.x51{left:187.614130pt;}
.x75{left:189.912296pt;}
.x10{left:191.528744pt;}
.x11{left:205.588166pt;}
.x2c{left:206.613093pt;}
.x61{left:211.379769pt;}
.x52{left:218.114164pt;}
.x6f{left:221.397070pt;}
.x12{left:224.833449pt;}
.x2d{left:232.276423pt;}
.x62{left:234.356421pt;}
.x2e{left:245.031997pt;}
.x53{left:248.807494pt;}
.x13{left:252.402231pt;}
.x70{left:256.089239pt;}
.x63{left:263.594749pt;}
.x14{left:267.259960pt;}
.x54{left:279.523063pt;}
.x2f{left:280.845376pt;}
.x15{left:294.760180pt;}
.x16{left:307.823118pt;}
.x55{left:309.228783pt;}
.x4b{left:313.816702pt;}
.x64{left:315.882795pt;}
.x17{left:323.993825pt;}
.x56{left:325.117255pt;}
.x30{left:327.970602pt;}
.x18{left:337.747478pt;}
.x65{left:346.061449pt;}
.x71{left:355.417191pt;}
.x31{left:358.007251pt;}
.x66{left:361.570044pt;}
.x19{left:369.557632pt;}
.x67{left:377.385578pt;}
.x72{left:380.992956pt;}
.x57{left:383.195737pt;}
.x1a{left:385.736086pt;}
.x32{left:388.751300pt;}
.x73{left:394.493215pt;}
.x58{left:399.081869pt;}
.x68{left:403.011818pt;}
.x1b{left:416.827271pt;}
.x69{left:418.755752pt;}
.x33{left:421.139346pt;}
.x74{left:422.382338pt;}
.x59{left:429.320955pt;}
.x34{left:436.728342pt;}
.x6a{left:448.540367pt;}
.x5a{left:460.607350pt;}
.x1c{left:465.801380pt;}
.x5b{left:473.429080pt;}
.x6b{left:479.101189pt;}
.x35{left:480.929773pt;}
.x6c{left:491.579967pt;}
.x1d{left:496.071539pt;}
.x5c{left:499.428316pt;}
.x36{left:507.807092pt;}
.x6d{left:516.709744pt;}
.x37{left:521.410056pt;}
.x1e{left:526.380878pt;}
.x6e{left:539.933939pt;}
.x38{left:541.747350pt;}
.x1f{left:546.027470pt;}
.x39{left:552.091269pt;}
.x78{left:554.182295pt;}
.x3a{left:562.572157pt;}
.x20{left:570.432489pt;}
.x21{left:581.361662pt;}
.x3b{left:582.943094pt;}
.x22{left:602.713854pt;}
.x79{left:605.970363pt;}
.x3d{left:625.843398pt;}
.x1{left:635.515910pt;}
.x50{left:642.790661pt;}
.x3c{left:644.185221pt;}
.x23{left:663.514884pt;}
.x7a{left:682.841520pt;}
.x7b{left:731.510865pt;}
.x7c{left:760.929036pt;}
.x7d{left:785.665659pt;}
.x7e{left:815.531666pt;}
.x7f{left:870.496620pt;}
.x80{left:920.800510pt;}
.x81{left:946.277861pt;}
.x82{left:997.222177pt;}
.x83{left:1053.309532pt;}
.x84{left:1078.992961pt;}
.x85{left:1104.723957pt;}
.x86{left:1130.496528pt;}
.x5d{left:1134.794257pt;}
.x87{left:1156.489318pt;}
.x9b{left:1158.372528pt;}
.x88{left:1213.188494pt;}
.x89{left:1249.541038pt;}
.x4c{left:1270.160673pt;}
.x8a{left:1306.300928pt;}
.x8b{left:1337.456470pt;}
.x8c{left:1389.210662pt;}
.x8d{left:1440.729596pt;}
.x8e{left:1471.571228pt;}
.x8f{left:1497.522059pt;}
.x90{left:1553.905045pt;}
.x91{left:1609.840841pt;}
.x92{left:1645.296061pt;}
.x93{left:1670.626786pt;}
.x94{left:1701.010980pt;}
.x95{left:1755.837259pt;}
.x4d{left:1776.995542pt;}
.x47{left:1781.926504pt;}
.x96{left:1785.820959pt;}
.x49{left:1814.566887pt;}
.x97{left:1839.863998pt;}
.x48{left:1863.457161pt;}
.x46{left:1864.816746pt;}
.x98{left:1874.192930pt;}
.x99{left:1922.416681pt;}
.x44{left:1932.972505pt;}
.x3e{left:1940.653721pt;}
.x40{left:1945.544306pt;}
.x3f{left:1952.091138pt;}
.x45{left:1958.628568pt;}
.x4e{left:2084.679145pt;}
.x4f{left:2089.506793pt;}
.x9a{left:2237.125859pt;}
.x4a{left:2294.289021pt;}
.x77{left:2340.085374pt;}
.x43{left:2753.080525pt;}
.x42{left:2764.508621pt;}
.x41{left:2867.270505pt;}
}




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