
    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_a0ed90b721032eb48e2dec77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_cff89292bb9cc3a8d720c332.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_60c018d588ca2bc15248d029.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_50a5a4793029899dbdf2a7aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201000;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_d93d70c3beacfe9bc26a8c70.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201000;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_623f6d694f0c6a0130fee646.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.998000;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_4b4e04125c996a00527edabf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193359;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_11c7a21e59d26834fab92719.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193359;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_691eb1b7777200c927c8e48b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.193359;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_d4e3cc30d0d835f60f9d73aa.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_e8f87bffb4bced354613c0b3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_e3b9fd788e2b655971c4be49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.193359;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_60c018d588ca2bc15248d029.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.998000;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_d3bd0eb4c0eadd3595c4b655.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_50a5a4793029899dbdf2a7aa.woff2')format("woff");}.fff{font-family:fff;line-height:1.201000;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_150e4cd3d2595299d94f377d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.193359;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;}
.m87{transform:matrix(0.242826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242826,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242976,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243169,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.243212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243212,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243245,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.243298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243298,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243669,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.243762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243762,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243910,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.244107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244107,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244871,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245005,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245171,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245319,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245367,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245740,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246021,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246033,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246340,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246443,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246631,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247283,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247288,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247788,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248317,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248733,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249336,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251119,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251569,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252226,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252929,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.253067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253067,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253305,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253493,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253529,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253838,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254631,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254676,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254738,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254783,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254960,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254995,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255171,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.255271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255271,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255362,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255486,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255769,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256112,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256124,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256262,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256471,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256619,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256881,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257390,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v3{vertical-align:-3.779400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.830000px;}
.ls23{letter-spacing:-4.410000px;}
.ls1c{letter-spacing:-2.652000px;}
.ls1b{letter-spacing:-0.663000px;}
.ls1d{letter-spacing:-0.510000px;}
.ls21{letter-spacing:-0.441000px;}
.ls19{letter-spacing:-0.390000px;}
.ls22{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.315000px;}
.ls29{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.255000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls3b{letter-spacing:-0.204000px;}
.ls24{letter-spacing:-0.189000px;}
.ls1e{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.063000px;}
.ls18{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.031500px;}
.ls3{letter-spacing:0.063000px;}
.lsb{letter-spacing:0.126000px;}
.ls27{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.220500px;}
.ls9{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.315000px;}
.ls26{letter-spacing:0.346500px;}
.ls7{letter-spacing:0.378000px;}
.ls2b{letter-spacing:0.409500px;}
.lsc{letter-spacing:0.441000px;}
.ls2c{letter-spacing:0.472500px;}
.ls3a{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.510000px;}
.ls28{letter-spacing:0.567000px;}
.lsf{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.693000px;}
.ls5{letter-spacing:0.724500px;}
.ls16{letter-spacing:0.756000px;}
.ls38{letter-spacing:0.787500px;}
.ls11{letter-spacing:0.819000px;}
.ls2d{letter-spacing:0.850500px;}
.ls34{letter-spacing:0.882000px;}
.ls1a{letter-spacing:0.924000px;}
.lsd{letter-spacing:0.945000px;}
.ls0{letter-spacing:0.960000px;}
.ls1{letter-spacing:0.964800px;}
.ls15{letter-spacing:1.008000px;}
.lse{letter-spacing:1.071000px;}
.ls33{letter-spacing:1.134000px;}
.ls36{letter-spacing:1.197000px;}
.ls12{letter-spacing:1.260000px;}
.ls13{letter-spacing:1.323000px;}
.ls2f{letter-spacing:1.386000px;}
.ls14{letter-spacing:1.449000px;}
.ls2e{letter-spacing:1.512000px;}
.ls37{letter-spacing:1.575000px;}
.ls35{letter-spacing:1.638000px;}
.ls30{letter-spacing:1.701000px;}
.ls31{letter-spacing:1.764000px;}
.ls32{letter-spacing:1.827000px;}
.ls2{letter-spacing:1.848000px;}
.ls39{letter-spacing:2.394000px;}
.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;}
}
.ws1{word-spacing:-28.248000px;}
.ws0{word-spacing:-15.990000px;}
.ws35{word-spacing:-14.490000px;}
.ws34{word-spacing:-13.230000px;}
.ws33{word-spacing:-12.300000px;}
.ws56{word-spacing:-12.222000px;}
.ws58{word-spacing:-11.730000px;}
.ws55{word-spacing:-11.712000px;}
.ws57{word-spacing:-11.679000px;}
.ws4{word-spacing:-10.353000px;}
.ws54{word-spacing:-10.320000px;}
.ws5{word-spacing:-6.795750px;}
.ws2{word-spacing:-6.729450px;}
.ws3{word-spacing:-6.066450px;}
.ws1a{word-spacing:-4.158000px;}
.wsd{word-spacing:-4.095000px;}
.wsb{word-spacing:-4.032000px;}
.ws11{word-spacing:-3.969000px;}
.ws1c{word-spacing:-3.780000px;}
.ws4d{word-spacing:-3.717000px;}
.ws2d{word-spacing:-3.654000px;}
.ws26{word-spacing:-3.591000px;}
.ws5e{word-spacing:-3.528000px;}
.ws45{word-spacing:-3.339000px;}
.ws3c{word-spacing:-3.150000px;}
.ws5d{word-spacing:-3.087000px;}
.ws5b{word-spacing:-2.961000px;}
.ws28{word-spacing:-2.835000px;}
.ws5c{word-spacing:-2.772000px;}
.ws13{word-spacing:-2.709000px;}
.ws52{word-spacing:-2.652000px;}
.ws43{word-spacing:-2.583000px;}
.ws27{word-spacing:-2.520000px;}
.ws51{word-spacing:-2.499000px;}
.ws22{word-spacing:-2.394000px;}
.wsf{word-spacing:-2.331000px;}
.ws14{word-spacing:-2.205000px;}
.ws44{word-spacing:-2.142000px;}
.ws65{word-spacing:-2.079000px;}
.ws69{word-spacing:-2.016000px;}
.ws25{word-spacing:-1.953000px;}
.ws2b{word-spacing:-1.890000px;}
.ws9{word-spacing:-1.848000px;}
.ws67{word-spacing:-1.764000px;}
.ws2c{word-spacing:-1.701000px;}
.ws60{word-spacing:-1.575000px;}
.ws1d{word-spacing:-1.449000px;}
.ws2e{word-spacing:-1.386000px;}
.ws1f{word-spacing:-1.323000px;}
.ws21{word-spacing:-1.260000px;}
.ws5f{word-spacing:-1.197000px;}
.ws30{word-spacing:-1.173000px;}
.ws2f{word-spacing:-1.122000px;}
.ws61{word-spacing:-1.071000px;}
.ws41{word-spacing:-1.008000px;}
.ws7{word-spacing:-0.960000px;}
.ws24{word-spacing:-0.945000px;}
.ws8{word-spacing:-0.924000px;}
.ws4e{word-spacing:-0.756000px;}
.ws40{word-spacing:-0.693000px;}
.ws12{word-spacing:-0.567000px;}
.ws6e{word-spacing:-0.480000px;}
.ws6b{word-spacing:-0.441000px;}
.ws1e{word-spacing:-0.378000px;}
.ws31{word-spacing:-0.255000px;}
.ws39{word-spacing:-0.063000px;}
.ws6{word-spacing:0.000000px;}
.ws46{word-spacing:0.063000px;}
.wsc{word-spacing:0.126000px;}
.ws38{word-spacing:0.189000px;}
.ws72{word-spacing:0.204000px;}
.ws1b{word-spacing:0.252000px;}
.ws6f{word-spacing:0.306000px;}
.ws3f{word-spacing:0.315000px;}
.ws70{word-spacing:0.357000px;}
.ws62{word-spacing:0.441000px;}
.ws36{word-spacing:0.630000px;}
.ws3b{word-spacing:0.693000px;}
.ws4f{word-spacing:0.945000px;}
.ws6c{word-spacing:1.008000px;}
.ws37{word-spacing:1.071000px;}
.ws29{word-spacing:1.197000px;}
.ws23{word-spacing:1.260000px;}
.ws59{word-spacing:1.449000px;}
.ws3e{word-spacing:1.575000px;}
.ws18{word-spacing:1.701000px;}
.ws4a{word-spacing:2.079000px;}
.ws50{word-spacing:2.205000px;}
.ws42{word-spacing:2.268000px;}
.ws32{word-spacing:2.295000px;}
.ws3a{word-spacing:2.520000px;}
.ws3d{word-spacing:2.583000px;}
.ws71{word-spacing:2.601000px;}
.wsa{word-spacing:2.652000px;}
.ws48{word-spacing:2.835000px;}
.ws10{word-spacing:3.087000px;}
.ws2a{word-spacing:3.150000px;}
.ws63{word-spacing:3.213000px;}
.ws49{word-spacing:3.276000px;}
.ws47{word-spacing:3.339000px;}
.ws5a{word-spacing:3.528000px;}
.ws68{word-spacing:3.591000px;}
.ws6d{word-spacing:3.717000px;}
.ws4c{word-spacing:3.843000px;}
.ws17{word-spacing:3.906000px;}
.wse{word-spacing:3.969000px;}
.ws15{word-spacing:4.032000px;}
.ws20{word-spacing:4.410000px;}
.ws66{word-spacing:4.536000px;}
.ws4b{word-spacing:4.599000px;}
.ws64{word-spacing:5.040000px;}
.ws19{word-spacing:5.796000px;}
.ws16{word-spacing:5.985000px;}
.ws6a{word-spacing:9.450000px;}
.ws53{word-spacing:2334.643800px;}
._5{margin-left:-14.760000px;}
._3{margin-left:-10.560000px;}
._9{margin-left:-8.395200px;}
._6{margin-left:-7.267200px;}
._4{margin-left:-5.544000px;}
._2{margin-left:-3.960000px;}
._8{margin-left:-2.640000px;}
._1{margin-left:-1.326000px;}
._0{width:1.560000px;}
._7{width:3.226800px;}
.fc2{color:rgb(35,89,72);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:33.150000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:45.502800px;}
.y5e{bottom:45.903600px;}
.y5d{bottom:46.023150px;}
.y1{bottom:46.447650px;}
.y92{bottom:64.323600px;}
.ye3{bottom:101.084850px;}
.y58{bottom:101.816850px;}
.y1c{bottom:101.817000px;}
.y91{bottom:101.824350px;}
.ye2{bottom:115.328850px;}
.y57{bottom:120.566850px;}
.y1b{bottom:120.567000px;}
.ya9{bottom:120.574350px;}
.ye1{bottom:129.572850px;}
.y56{bottom:139.316850px;}
.y1a{bottom:139.317000px;}
.ye0{bottom:143.816850px;}
.y55{bottom:158.066850px;}
.y19{bottom:158.067000px;}
.ya4{bottom:176.816850px;}
.y18{bottom:176.817000px;}
.y54{bottom:176.824350px;}
.y53{bottom:195.566850px;}
.y2c{bottom:195.567000px;}
.y17{bottom:195.582000px;}
.y85{bottom:195.589500px;}
.y52{bottom:214.316850px;}
.y2b{bottom:214.317000px;}
.yb4{bottom:214.324350px;}
.y16{bottom:214.324500px;}
.y84{bottom:214.332000px;}
.ydf{bottom:228.704850px;}
.y51{bottom:233.066850px;}
.y15{bottom:233.067000px;}
.y83{bottom:233.074500px;}
.yde{bottom:242.948850px;}
.y90{bottom:251.816850px;}
.y2a{bottom:251.817000px;}
.y50{bottom:251.824350px;}
.ydd{bottom:257.192850px;}
.y4f{bottom:270.566850px;}
.y29{bottom:270.567000px;}
.ydc{bottom:271.436850px;}
.ydb{bottom:285.680850px;}
.y4e{bottom:289.316850px;}
.y28{bottom:289.317000px;}
.ya3{bottom:289.324350px;}
.yda{bottom:299.924850px;}
.y14{bottom:307.957350px;}
.y4d{bottom:308.066850px;}
.y27{bottom:308.067000px;}
.yb3{bottom:308.074350px;}
.y82{bottom:308.089500px;}
.yd9{bottom:314.168850px;}
.y13{bottom:325.208100px;}
.y4c{bottom:326.816850px;}
.y26{bottom:326.817000px;}
.y81{bottom:326.832000px;}
.yd8{bottom:328.412850px;}
.y12{bottom:342.458850px;}
.yd7{bottom:342.656850px;}
.y4b{bottom:345.566850px;}
.y25{bottom:345.567000px;}
.ya2{bottom:345.574350px;}
.y80{bottom:345.574500px;}
.yd6{bottom:356.900850px;}
.y11{bottom:363.917100px;}
.y4a{bottom:364.316850px;}
.y24{bottom:364.317000px;}
.yd5{bottom:371.144850px;}
.y10{bottom:376.958100px;}
.y49{bottom:383.066850px;}
.y23{bottom:383.067000px;}
.yd4{bottom:385.388850px;}
.yf{bottom:394.208850px;}
.yd3{bottom:399.632850px;}
.y48{bottom:401.816850px;}
.y7f{bottom:401.817000px;}
.y22{bottom:401.832000px;}
.yd2{bottom:413.876850px;}
.ye{bottom:415.670813px;}
.y47{bottom:420.566850px;}
.y7e{bottom:420.567000px;}
.y21{bottom:420.574500px;}
.yd1{bottom:428.120850px;}
.yd{bottom:428.708850px;}
.y46{bottom:439.316850px;}
.y20{bottom:439.317000px;}
.yd0{bottom:442.364850px;}
.yc{bottom:445.958850px;}
.ycf{bottom:456.608850px;}
.y8f{bottom:458.066850px;}
.y1f{bottom:458.067000px;}
.y45{bottom:458.074350px;}
.ya1{bottom:458.183850px;}
.yb{bottom:463.208850px;}
.yce{bottom:470.852850px;}
.y44{bottom:476.816850px;}
.y1e{bottom:476.817000px;}
.ya0{bottom:476.926350px;}
.ya{bottom:480.458850px;}
.ycd{bottom:485.096850px;}
.y43{bottom:495.566850px;}
.y1d{bottom:495.567000px;}
.y9f{bottom:495.668850px;}
.y9{bottom:497.709600px;}
.ycc{bottom:499.340850px;}
.ycb{bottom:513.584850px;}
.y8e{bottom:514.316850px;}
.y42{bottom:514.324350px;}
.y7d{bottom:514.324500px;}
.y9e{bottom:514.411350px;}
.yca{bottom:527.828850px;}
.y41{bottom:533.066850px;}
.y7c{bottom:533.067000px;}
.yc9{bottom:542.072850px;}
.y40{bottom:551.816850px;}
.y7b{bottom:551.817000px;}
.yb2{bottom:551.824350px;}
.yc8{bottom:556.316850px;}
.y5c{bottom:563.953950px;}
.y3f{bottom:570.566850px;}
.y7a{bottom:570.567000px;}
.y9d{bottom:570.654600px;}
.yc7{bottom:570.662850px;}
.y5b{bottom:578.947950px;}
.y3e{bottom:589.316850px;}
.y8d{bottom:589.331850px;}
.y9c{bottom:589.397100px;}
.y79{bottom:589.413000px;}
.y5a{bottom:593.941950px;}
.y3d{bottom:608.066850px;}
.y8c{bottom:608.074350px;}
.y9b{bottom:608.139600px;}
.y78{bottom:608.155500px;}
.y59{bottom:608.935950px;}
.y3c{bottom:626.816850px;}
.y9a{bottom:626.882100px;}
.y77{bottom:626.898000px;}
.yc6{bottom:626.906100px;}
.y3b{bottom:645.566850px;}
.y99{bottom:645.624600px;}
.y76{bottom:645.640500px;}
.yc5{bottom:645.648600px;}
.ya8{bottom:664.316850px;}
.y3a{bottom:664.324350px;}
.y8b{bottom:664.354350px;}
.y98{bottom:664.367100px;}
.yc4{bottom:664.391100px;}
.y39{bottom:683.066850px;}
.y8a{bottom:683.096850px;}
.y97{bottom:683.109600px;}
.yc3{bottom:683.133600px;}
.y38{bottom:701.816850px;}
.y89{bottom:701.839350px;}
.y96{bottom:701.852100px;}
.yc2{bottom:701.876100px;}
.y75{bottom:701.883750px;}
.y37{bottom:720.566850px;}
.y88{bottom:720.581850px;}
.y95{bottom:720.594600px;}
.yb1{bottom:720.618600px;}
.y74{bottom:720.626250px;}
.y87{bottom:739.324350px;}
.y94{bottom:739.337100px;}
.y36{bottom:739.339350px;}
.yb0{bottom:739.361100px;}
.y73{bottom:739.368750px;}
.y86{bottom:758.066850px;}
.y93{bottom:758.079600px;}
.y35{bottom:758.081850px;}
.yaf{bottom:758.103600px;}
.y72{bottom:758.111250px;}
.ya7{bottom:776.816850px;}
.y34{bottom:776.824350px;}
.yae{bottom:776.846100px;}
.y71{bottom:776.853750px;}
.y33{bottom:795.566850px;}
.yad{bottom:795.588600px;}
.y70{bottom:795.596250px;}
.y32{bottom:814.316850px;}
.yac{bottom:814.331100px;}
.y6f{bottom:814.338750px;}
.ya6{bottom:817.505850px;}
.ya5{bottom:832.505850px;}
.y31{bottom:833.066850px;}
.yab{bottom:833.073600px;}
.y6e{bottom:833.081250px;}
.yaa{bottom:851.816100px;}
.y30{bottom:851.816850px;}
.y6d{bottom:851.823750px;}
.y2f{bottom:870.566850px;}
.y2e{bottom:889.316850px;}
.y2d{bottom:908.066850px;}
.y6c{bottom:908.067000px;}
.ye6{bottom:915.315900px;}
.yc1{bottom:926.816850px;}
.y6b{bottom:926.817000px;}
.ye5{bottom:930.315900px;}
.ye4{bottom:945.315900px;}
.y6a{bottom:945.567000px;}
.yc0{bottom:945.596850px;}
.y69{bottom:964.317000px;}
.ybf{bottom:964.339350px;}
.y68{bottom:983.067000px;}
.ybe{bottom:983.081850px;}
.y8{bottom:983.114850px;}
.y67{bottom:1001.817000px;}
.ybd{bottom:1001.824350px;}
.ybc{bottom:1020.566850px;}
.y66{bottom:1020.567000px;}
.y7{bottom:1020.602850px;}
.ybb{bottom:1039.316850px;}
.y65{bottom:1039.317000px;}
.yba{bottom:1058.066850px;}
.y64{bottom:1058.067000px;}
.y6{bottom:1058.090850px;}
.yb9{bottom:1076.816850px;}
.y63{bottom:1076.817000px;}
.yb8{bottom:1095.566850px;}
.y62{bottom:1095.567000px;}
.y5{bottom:1095.578850px;}
.yb7{bottom:1114.316850px;}
.y61{bottom:1114.317000px;}
.y4{bottom:1133.066850px;}
.yb6{bottom:1133.074350px;}
.y60{bottom:1133.074500px;}
.yb5{bottom:1151.816850px;}
.y5f{bottom:1151.817000px;}
.y2{bottom:1208.615250px;}
.h2{height:29.400000px;}
.h8{height:31.714720px;}
.h9{height:31.729570px;}
.hd{height:40.668600px;}
.hc{height:42.000000px;}
.h4{height:44.448000px;}
.he{height:45.703125px;}
.h6{height:48.559570px;}
.h7{height:48.562570px;}
.h3{height:54.600000px;}
.hb{height:58.338000px;}
.ha{height:59.985352px;}
.h5{height:122.232000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:59.433300px;}
.x1{left:63.779550px;}
.xa{left:80.790000px;}
.x4{left:324.568500px;}
.x5{left:345.826800px;}
.x6{left:589.606350px;}
.xb{left:606.610350px;}
.x7{left:610.868850px;}
.x3{left:658.224000px;}
.x9{left:699.326100px;}
.x8{left:818.361150px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v3{vertical-align:-3.359467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.960000pt;}
.ls23{letter-spacing:-3.920000pt;}
.ls1c{letter-spacing:-2.357333pt;}
.ls1b{letter-spacing:-0.589333pt;}
.ls1d{letter-spacing:-0.453333pt;}
.ls21{letter-spacing:-0.392000pt;}
.ls19{letter-spacing:-0.346667pt;}
.ls22{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.280000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.226667pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls3b{letter-spacing:-0.181333pt;}
.ls24{letter-spacing:-0.168000pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.056000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.028000pt;}
.ls3{letter-spacing:0.056000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls27{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.196000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.280000pt;}
.ls26{letter-spacing:0.308000pt;}
.ls7{letter-spacing:0.336000pt;}
.ls2b{letter-spacing:0.364000pt;}
.lsc{letter-spacing:0.392000pt;}
.ls2c{letter-spacing:0.420000pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.453333pt;}
.ls28{letter-spacing:0.504000pt;}
.lsf{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.616000pt;}
.ls5{letter-spacing:0.644000pt;}
.ls16{letter-spacing:0.672000pt;}
.ls38{letter-spacing:0.700000pt;}
.ls11{letter-spacing:0.728000pt;}
.ls2d{letter-spacing:0.756000pt;}
.ls34{letter-spacing:0.784000pt;}
.ls1a{letter-spacing:0.821333pt;}
.lsd{letter-spacing:0.840000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls1{letter-spacing:0.857600pt;}
.ls15{letter-spacing:0.896000pt;}
.lse{letter-spacing:0.952000pt;}
.ls33{letter-spacing:1.008000pt;}
.ls36{letter-spacing:1.064000pt;}
.ls12{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.176000pt;}
.ls2f{letter-spacing:1.232000pt;}
.ls14{letter-spacing:1.288000pt;}
.ls2e{letter-spacing:1.344000pt;}
.ls37{letter-spacing:1.400000pt;}
.ls35{letter-spacing:1.456000pt;}
.ls30{letter-spacing:1.512000pt;}
.ls31{letter-spacing:1.568000pt;}
.ls32{letter-spacing:1.624000pt;}
.ls2{letter-spacing:1.642667pt;}
.ls39{letter-spacing:2.128000pt;}
.ws1{word-spacing:-25.109333pt;}
.ws0{word-spacing:-14.213333pt;}
.ws35{word-spacing:-12.880000pt;}
.ws34{word-spacing:-11.760000pt;}
.ws33{word-spacing:-10.933333pt;}
.ws56{word-spacing:-10.864000pt;}
.ws58{word-spacing:-10.426667pt;}
.ws55{word-spacing:-10.410667pt;}
.ws57{word-spacing:-10.381333pt;}
.ws4{word-spacing:-9.202667pt;}
.ws54{word-spacing:-9.173333pt;}
.ws5{word-spacing:-6.040667pt;}
.ws2{word-spacing:-5.981733pt;}
.ws3{word-spacing:-5.392400pt;}
.ws1a{word-spacing:-3.696000pt;}
.wsd{word-spacing:-3.640000pt;}
.wsb{word-spacing:-3.584000pt;}
.ws11{word-spacing:-3.528000pt;}
.ws1c{word-spacing:-3.360000pt;}
.ws4d{word-spacing:-3.304000pt;}
.ws2d{word-spacing:-3.248000pt;}
.ws26{word-spacing:-3.192000pt;}
.ws5e{word-spacing:-3.136000pt;}
.ws45{word-spacing:-2.968000pt;}
.ws3c{word-spacing:-2.800000pt;}
.ws5d{word-spacing:-2.744000pt;}
.ws5b{word-spacing:-2.632000pt;}
.ws28{word-spacing:-2.520000pt;}
.ws5c{word-spacing:-2.464000pt;}
.ws13{word-spacing:-2.408000pt;}
.ws52{word-spacing:-2.357333pt;}
.ws43{word-spacing:-2.296000pt;}
.ws27{word-spacing:-2.240000pt;}
.ws51{word-spacing:-2.221333pt;}
.ws22{word-spacing:-2.128000pt;}
.wsf{word-spacing:-2.072000pt;}
.ws14{word-spacing:-1.960000pt;}
.ws44{word-spacing:-1.904000pt;}
.ws65{word-spacing:-1.848000pt;}
.ws69{word-spacing:-1.792000pt;}
.ws25{word-spacing:-1.736000pt;}
.ws2b{word-spacing:-1.680000pt;}
.ws9{word-spacing:-1.642667pt;}
.ws67{word-spacing:-1.568000pt;}
.ws2c{word-spacing:-1.512000pt;}
.ws60{word-spacing:-1.400000pt;}
.ws1d{word-spacing:-1.288000pt;}
.ws2e{word-spacing:-1.232000pt;}
.ws1f{word-spacing:-1.176000pt;}
.ws21{word-spacing:-1.120000pt;}
.ws5f{word-spacing:-1.064000pt;}
.ws30{word-spacing:-1.042667pt;}
.ws2f{word-spacing:-0.997333pt;}
.ws61{word-spacing:-0.952000pt;}
.ws41{word-spacing:-0.896000pt;}
.ws7{word-spacing:-0.853333pt;}
.ws24{word-spacing:-0.840000pt;}
.ws8{word-spacing:-0.821333pt;}
.ws4e{word-spacing:-0.672000pt;}
.ws40{word-spacing:-0.616000pt;}
.ws12{word-spacing:-0.504000pt;}
.ws6e{word-spacing:-0.426667pt;}
.ws6b{word-spacing:-0.392000pt;}
.ws1e{word-spacing:-0.336000pt;}
.ws31{word-spacing:-0.226667pt;}
.ws39{word-spacing:-0.056000pt;}
.ws6{word-spacing:0.000000pt;}
.ws46{word-spacing:0.056000pt;}
.wsc{word-spacing:0.112000pt;}
.ws38{word-spacing:0.168000pt;}
.ws72{word-spacing:0.181333pt;}
.ws1b{word-spacing:0.224000pt;}
.ws6f{word-spacing:0.272000pt;}
.ws3f{word-spacing:0.280000pt;}
.ws70{word-spacing:0.317333pt;}
.ws62{word-spacing:0.392000pt;}
.ws36{word-spacing:0.560000pt;}
.ws3b{word-spacing:0.616000pt;}
.ws4f{word-spacing:0.840000pt;}
.ws6c{word-spacing:0.896000pt;}
.ws37{word-spacing:0.952000pt;}
.ws29{word-spacing:1.064000pt;}
.ws23{word-spacing:1.120000pt;}
.ws59{word-spacing:1.288000pt;}
.ws3e{word-spacing:1.400000pt;}
.ws18{word-spacing:1.512000pt;}
.ws4a{word-spacing:1.848000pt;}
.ws50{word-spacing:1.960000pt;}
.ws42{word-spacing:2.016000pt;}
.ws32{word-spacing:2.040000pt;}
.ws3a{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.296000pt;}
.ws71{word-spacing:2.312000pt;}
.wsa{word-spacing:2.357333pt;}
.ws48{word-spacing:2.520000pt;}
.ws10{word-spacing:2.744000pt;}
.ws2a{word-spacing:2.800000pt;}
.ws63{word-spacing:2.856000pt;}
.ws49{word-spacing:2.912000pt;}
.ws47{word-spacing:2.968000pt;}
.ws5a{word-spacing:3.136000pt;}
.ws68{word-spacing:3.192000pt;}
.ws6d{word-spacing:3.304000pt;}
.ws4c{word-spacing:3.416000pt;}
.ws17{word-spacing:3.472000pt;}
.wse{word-spacing:3.528000pt;}
.ws15{word-spacing:3.584000pt;}
.ws20{word-spacing:3.920000pt;}
.ws66{word-spacing:4.032000pt;}
.ws4b{word-spacing:4.088000pt;}
.ws64{word-spacing:4.480000pt;}
.ws19{word-spacing:5.152000pt;}
.ws16{word-spacing:5.320000pt;}
.ws6a{word-spacing:8.400000pt;}
.ws53{word-spacing:2075.238933pt;}
._5{margin-left:-13.120000pt;}
._3{margin-left:-9.386667pt;}
._9{margin-left:-7.462400pt;}
._6{margin-left:-6.459733pt;}
._4{margin-left:-4.928000pt;}
._2{margin-left:-3.520000pt;}
._8{margin-left:-2.346667pt;}
._1{margin-left:-1.178667pt;}
._0{width:1.386667pt;}
._7{width:2.868267pt;}
.fs5{font-size:29.466667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:40.446933pt;}
.y5e{bottom:40.803200pt;}
.y5d{bottom:40.909467pt;}
.y1{bottom:41.286800pt;}
.y92{bottom:57.176533pt;}
.ye3{bottom:89.853200pt;}
.y58{bottom:90.503867pt;}
.y1c{bottom:90.504000pt;}
.y91{bottom:90.510533pt;}
.ye2{bottom:102.514533pt;}
.y57{bottom:107.170533pt;}
.y1b{bottom:107.170667pt;}
.ya9{bottom:107.177200pt;}
.ye1{bottom:115.175867pt;}
.y56{bottom:123.837200pt;}
.y1a{bottom:123.837333pt;}
.ye0{bottom:127.837200pt;}
.y55{bottom:140.503867pt;}
.y19{bottom:140.504000pt;}
.ya4{bottom:157.170533pt;}
.y18{bottom:157.170667pt;}
.y54{bottom:157.177200pt;}
.y53{bottom:173.837200pt;}
.y2c{bottom:173.837333pt;}
.y17{bottom:173.850667pt;}
.y85{bottom:173.857333pt;}
.y52{bottom:190.503867pt;}
.y2b{bottom:190.504000pt;}
.yb4{bottom:190.510533pt;}
.y16{bottom:190.510667pt;}
.y84{bottom:190.517333pt;}
.ydf{bottom:203.293200pt;}
.y51{bottom:207.170533pt;}
.y15{bottom:207.170667pt;}
.y83{bottom:207.177333pt;}
.yde{bottom:215.954533pt;}
.y90{bottom:223.837200pt;}
.y2a{bottom:223.837333pt;}
.y50{bottom:223.843867pt;}
.ydd{bottom:228.615867pt;}
.y4f{bottom:240.503867pt;}
.y29{bottom:240.504000pt;}
.ydc{bottom:241.277200pt;}
.ydb{bottom:253.938533pt;}
.y4e{bottom:257.170533pt;}
.y28{bottom:257.170667pt;}
.ya3{bottom:257.177200pt;}
.yda{bottom:266.599867pt;}
.y14{bottom:273.739867pt;}
.y4d{bottom:273.837200pt;}
.y27{bottom:273.837333pt;}
.yb3{bottom:273.843867pt;}
.y82{bottom:273.857333pt;}
.yd9{bottom:279.261200pt;}
.y13{bottom:289.073867pt;}
.y4c{bottom:290.503867pt;}
.y26{bottom:290.504000pt;}
.y81{bottom:290.517333pt;}
.yd8{bottom:291.922533pt;}
.y12{bottom:304.407867pt;}
.yd7{bottom:304.583867pt;}
.y4b{bottom:307.170533pt;}
.y25{bottom:307.170667pt;}
.ya2{bottom:307.177200pt;}
.y80{bottom:307.177333pt;}
.yd6{bottom:317.245200pt;}
.y11{bottom:323.481867pt;}
.y4a{bottom:323.837200pt;}
.y24{bottom:323.837333pt;}
.yd5{bottom:329.906533pt;}
.y10{bottom:335.073867pt;}
.y49{bottom:340.503867pt;}
.y23{bottom:340.504000pt;}
.yd4{bottom:342.567867pt;}
.yf{bottom:350.407867pt;}
.yd3{bottom:355.229200pt;}
.y48{bottom:357.170533pt;}
.y7f{bottom:357.170667pt;}
.y22{bottom:357.184000pt;}
.yd2{bottom:367.890533pt;}
.ye{bottom:369.485167pt;}
.y47{bottom:373.837200pt;}
.y7e{bottom:373.837333pt;}
.y21{bottom:373.844000pt;}
.yd1{bottom:380.551867pt;}
.yd{bottom:381.074533pt;}
.y46{bottom:390.503867pt;}
.y20{bottom:390.504000pt;}
.yd0{bottom:393.213200pt;}
.yc{bottom:396.407867pt;}
.ycf{bottom:405.874533pt;}
.y8f{bottom:407.170533pt;}
.y1f{bottom:407.170667pt;}
.y45{bottom:407.177200pt;}
.ya1{bottom:407.274533pt;}
.yb{bottom:411.741200pt;}
.yce{bottom:418.535867pt;}
.y44{bottom:423.837200pt;}
.y1e{bottom:423.837333pt;}
.ya0{bottom:423.934533pt;}
.ya{bottom:427.074533pt;}
.ycd{bottom:431.197200pt;}
.y43{bottom:440.503867pt;}
.y1d{bottom:440.504000pt;}
.y9f{bottom:440.594533pt;}
.y9{bottom:442.408533pt;}
.ycc{bottom:443.858533pt;}
.ycb{bottom:456.519867pt;}
.y8e{bottom:457.170533pt;}
.y42{bottom:457.177200pt;}
.y7d{bottom:457.177333pt;}
.y9e{bottom:457.254533pt;}
.yca{bottom:469.181200pt;}
.y41{bottom:473.837200pt;}
.y7c{bottom:473.837333pt;}
.yc9{bottom:481.842533pt;}
.y40{bottom:490.503867pt;}
.y7b{bottom:490.504000pt;}
.yb2{bottom:490.510533pt;}
.yc8{bottom:494.503867pt;}
.y5c{bottom:501.292400pt;}
.y3f{bottom:507.170533pt;}
.y7a{bottom:507.170667pt;}
.y9d{bottom:507.248533pt;}
.yc7{bottom:507.255867pt;}
.y5b{bottom:514.620400pt;}
.y3e{bottom:523.837200pt;}
.y8d{bottom:523.850533pt;}
.y9c{bottom:523.908533pt;}
.y79{bottom:523.922667pt;}
.y5a{bottom:527.948400pt;}
.y3d{bottom:540.503867pt;}
.y8c{bottom:540.510533pt;}
.y9b{bottom:540.568533pt;}
.y78{bottom:540.582667pt;}
.y59{bottom:541.276400pt;}
.y3c{bottom:557.170533pt;}
.y9a{bottom:557.228533pt;}
.y77{bottom:557.242667pt;}
.yc6{bottom:557.249867pt;}
.y3b{bottom:573.837200pt;}
.y99{bottom:573.888533pt;}
.y76{bottom:573.902667pt;}
.yc5{bottom:573.909867pt;}
.ya8{bottom:590.503867pt;}
.y3a{bottom:590.510533pt;}
.y8b{bottom:590.537200pt;}
.y98{bottom:590.548533pt;}
.yc4{bottom:590.569867pt;}
.y39{bottom:607.170533pt;}
.y8a{bottom:607.197200pt;}
.y97{bottom:607.208533pt;}
.yc3{bottom:607.229867pt;}
.y38{bottom:623.837200pt;}
.y89{bottom:623.857200pt;}
.y96{bottom:623.868533pt;}
.yc2{bottom:623.889867pt;}
.y75{bottom:623.896667pt;}
.y37{bottom:640.503867pt;}
.y88{bottom:640.517200pt;}
.y95{bottom:640.528533pt;}
.yb1{bottom:640.549867pt;}
.y74{bottom:640.556667pt;}
.y87{bottom:657.177200pt;}
.y94{bottom:657.188533pt;}
.y36{bottom:657.190533pt;}
.yb0{bottom:657.209867pt;}
.y73{bottom:657.216667pt;}
.y86{bottom:673.837200pt;}
.y93{bottom:673.848533pt;}
.y35{bottom:673.850533pt;}
.yaf{bottom:673.869867pt;}
.y72{bottom:673.876667pt;}
.ya7{bottom:690.503867pt;}
.y34{bottom:690.510533pt;}
.yae{bottom:690.529867pt;}
.y71{bottom:690.536667pt;}
.y33{bottom:707.170533pt;}
.yad{bottom:707.189867pt;}
.y70{bottom:707.196667pt;}
.y32{bottom:723.837200pt;}
.yac{bottom:723.849867pt;}
.y6f{bottom:723.856667pt;}
.ya6{bottom:726.671867pt;}
.ya5{bottom:740.005200pt;}
.y31{bottom:740.503867pt;}
.yab{bottom:740.509867pt;}
.y6e{bottom:740.516667pt;}
.yaa{bottom:757.169867pt;}
.y30{bottom:757.170533pt;}
.y6d{bottom:757.176667pt;}
.y2f{bottom:773.837200pt;}
.y2e{bottom:790.503867pt;}
.y2d{bottom:807.170533pt;}
.y6c{bottom:807.170667pt;}
.ye6{bottom:813.614133pt;}
.yc1{bottom:823.837200pt;}
.y6b{bottom:823.837333pt;}
.ye5{bottom:826.947467pt;}
.ye4{bottom:840.280800pt;}
.y6a{bottom:840.504000pt;}
.yc0{bottom:840.530533pt;}
.y69{bottom:857.170667pt;}
.ybf{bottom:857.190533pt;}
.y68{bottom:873.837333pt;}
.ybe{bottom:873.850533pt;}
.y8{bottom:873.879867pt;}
.y67{bottom:890.504000pt;}
.ybd{bottom:890.510533pt;}
.ybc{bottom:907.170533pt;}
.y66{bottom:907.170667pt;}
.y7{bottom:907.202533pt;}
.ybb{bottom:923.837200pt;}
.y65{bottom:923.837333pt;}
.yba{bottom:940.503867pt;}
.y64{bottom:940.504000pt;}
.y6{bottom:940.525200pt;}
.yb9{bottom:957.170533pt;}
.y63{bottom:957.170667pt;}
.yb8{bottom:973.837200pt;}
.y62{bottom:973.837333pt;}
.y5{bottom:973.847867pt;}
.yb7{bottom:990.503867pt;}
.y61{bottom:990.504000pt;}
.y4{bottom:1007.170533pt;}
.yb6{bottom:1007.177200pt;}
.y60{bottom:1007.177333pt;}
.yb5{bottom:1023.837200pt;}
.y5f{bottom:1023.837333pt;}
.y2{bottom:1074.324667pt;}
.h2{height:26.133333pt;}
.h8{height:28.190863pt;}
.h9{height:28.204063pt;}
.hd{height:36.149867pt;}
.hc{height:37.333333pt;}
.h4{height:39.509333pt;}
.he{height:40.625000pt;}
.h6{height:43.164062pt;}
.h7{height:43.166729pt;}
.h3{height:48.533333pt;}
.hb{height:51.856000pt;}
.ha{height:53.320312pt;}
.h5{height:108.650667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.829600pt;}
.x1{left:56.692933pt;}
.xa{left:71.813333pt;}
.x4{left:288.505333pt;}
.x5{left:307.401600pt;}
.x6{left:524.094533pt;}
.xb{left:539.209200pt;}
.x7{left:542.994533pt;}
.x3{left:585.088000pt;}
.x9{left:621.623200pt;}
.x8{left:727.432133pt;}
}




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