
    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_137f7b59658b8ca50c4a7855.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.949000;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_0f22fa0f24fbe603bfb2b334.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_5522c2e04a34d3bd1cd79a2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.069000;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_5529404d743cdf9eb7c2c652.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069000;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;}
.m82{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249098,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249391,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249623,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249841,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m1e{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.m8d{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250166,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250784,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls37{letter-spacing:-2.574000px;}
.ls36{letter-spacing:-2.442000px;}
.ls5{letter-spacing:-2.280000px;}
.ls2b{letter-spacing:-1.914000px;}
.ls30{letter-spacing:-1.782000px;}
.ls1d{letter-spacing:-1.650000px;}
.ls11{letter-spacing:-1.452000px;}
.ls33{letter-spacing:-1.254000px;}
.ls16{letter-spacing:-1.188000px;}
.ls23{letter-spacing:-1.122000px;}
.ls7{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-1.056000px;}
.ls4{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.924000px;}
.ls22{letter-spacing:-0.858000px;}
.ls2a{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.ls2c{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.528000px;}
.ls20{letter-spacing:-0.462000px;}
.ls17{letter-spacing:-0.396000px;}
.ls10{letter-spacing:-0.330000px;}
.ls2e{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.264000px;}
.lsf{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.139920px;}
.ls14{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.120000px;}
.ls21{letter-spacing:-0.066000px;}
.ls6{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.132000px;}
.ls25{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.330000px;}
.ls24{letter-spacing:0.396000px;}
.ls1a{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.594000px;}
.ls1c{letter-spacing:0.660000px;}
.ls26{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.924000px;}
.ls38{letter-spacing:0.990000px;}
.ls32{letter-spacing:1.188000px;}
.ls18{letter-spacing:1.254000px;}
.ls35{letter-spacing:1.650000px;}
.ls28{letter-spacing:1.848000px;}
.ls34{letter-spacing:2.046000px;}
.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;}
}
.ws48{word-spacing:-15.378000px;}
.ws3f{word-spacing:-15.246000px;}
.ws40{word-spacing:-15.180000px;}
.ws3d{word-spacing:-15.114000px;}
.ws3e{word-spacing:-15.048000px;}
.ws1e{word-spacing:-14.982000px;}
.ws1c{word-spacing:-14.916000px;}
.ws5c{word-spacing:-14.652000px;}
.ws30{word-spacing:-14.586000px;}
.ws19{word-spacing:-14.454000px;}
.ws31{word-spacing:-14.256000px;}
.ws6{word-spacing:-14.220000px;}
.ws1d{word-spacing:-14.124000px;}
.ws59{word-spacing:-14.058000px;}
.ws5b{word-spacing:-13.992000px;}
.ws8{word-spacing:-13.980000px;}
.ws56{word-spacing:-13.926000px;}
.ws1b{word-spacing:-13.662000px;}
.ws2{word-spacing:-13.620000px;}
.ws7{word-spacing:-13.560000px;}
.ws2f{word-spacing:-13.464000px;}
.ws55{word-spacing:-13.332000px;}
.ws47{word-spacing:-13.200000px;}
.ws0{word-spacing:-13.140000px;}
.ws5{word-spacing:-13.080000px;}
.ws3{word-spacing:-13.020000px;}
.ws1{word-spacing:-12.720000px;}
.ws5f{word-spacing:-12.672000px;}
.ws4{word-spacing:-12.660000px;}
.ws1a{word-spacing:-10.896000px;}
.ws9{word-spacing:-7.800540px;}
.ws62{word-spacing:-1.650000px;}
.ws2c{word-spacing:-1.518000px;}
.ws2d{word-spacing:-1.452000px;}
.ws4b{word-spacing:-1.386000px;}
.ws15{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.320000px;}
.ws10{word-spacing:-1.260000px;}
.ws4c{word-spacing:-1.254000px;}
.ws27{word-spacing:-1.188000px;}
.ws3a{word-spacing:-1.122000px;}
.ws2e{word-spacing:-1.056000px;}
.ws4f{word-spacing:-1.020000px;}
.ws39{word-spacing:-0.990000px;}
.ws52{word-spacing:-0.924000px;}
.ws3c{word-spacing:-0.858000px;}
.ws38{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.780000px;}
.ws34{word-spacing:-0.726000px;}
.wsc{word-spacing:-0.720000px;}
.ws45{word-spacing:-0.660000px;}
.ws28{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.528000px;}
.ws3b{word-spacing:-0.462000px;}
.ws22{word-spacing:-0.396000px;}
.ws13{word-spacing:-0.360000px;}
.ws44{word-spacing:-0.330000px;}
.ws18{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.264000px;}
.ws16{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.198000px;}
.ws35{word-spacing:-0.132000px;}
.ws5e{word-spacing:-0.066000px;}
.wsa{word-spacing:0.000000px;}
.ws23{word-spacing:0.066000px;}
.ws36{word-spacing:0.132000px;}
.ws32{word-spacing:0.198000px;}
.wsf{word-spacing:0.240000px;}
.ws49{word-spacing:0.264000px;}
.ws4e{word-spacing:0.300000px;}
.ws2b{word-spacing:0.330000px;}
.ws29{word-spacing:0.396000px;}
.ws4a{word-spacing:0.462000px;}
.ws54{word-spacing:0.528000px;}
.ws57{word-spacing:0.594000px;}
.ws51{word-spacing:0.660000px;}
.ws50{word-spacing:0.726000px;}
.ws1f{word-spacing:0.780000px;}
.ws20{word-spacing:0.792000px;}
.ws21{word-spacing:0.858000px;}
.ws33{word-spacing:0.924000px;}
.ws46{word-spacing:0.990000px;}
.ws14{word-spacing:1.020000px;}
.ws43{word-spacing:1.056000px;}
.ws37{word-spacing:1.122000px;}
.ws2a{word-spacing:1.188000px;}
.ws4d{word-spacing:1.254000px;}
.ws12{word-spacing:1.320000px;}
.wsb{word-spacing:1.380000px;}
.ws42{word-spacing:1.386000px;}
.ws26{word-spacing:1.452000px;}
.ws24{word-spacing:1.518000px;}
.ws53{word-spacing:1.584000px;}
.ws17{word-spacing:1.620000px;}
.ws60{word-spacing:1.914000px;}
.ws5a{word-spacing:2.178000px;}
.ws61{word-spacing:2.574000px;}
.ws5d{word-spacing:3.102000px;}
.wse{word-spacing:3.720000px;}
._6{margin-left:-10.026000px;}
._7{margin-left:-7.938000px;}
._4{margin-left:-6.480000px;}
._1{margin-left:-4.920000px;}
._3{margin-left:-3.900000px;}
._0{margin-left:-1.980000px;}
._2{width:1.380000px;}
._5{width:2.880000px;}
.fc1{color:rgb(239,46,42);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:34.980000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:80.893650px;}
.y58{bottom:80.898150px;}
.y51{bottom:80.902650px;}
.y1d{bottom:87.643650px;}
.y32{bottom:101.143650px;}
.y7d{bottom:101.145900px;}
.y50{bottom:101.148150px;}
.y1c{bottom:105.868650px;}
.y31{bottom:121.393650px;}
.y7c{bottom:121.395900px;}
.y74{bottom:121.402650px;}
.y1b{bottom:124.093650px;}
.y30{bottom:141.643650px;}
.y45{bottom:141.648150px;}
.y57{bottom:141.652650px;}
.y1a{bottom:142.318800px;}
.y7b{bottom:151.773150px;}
.y19{bottom:160.543650px;}
.y2f{bottom:161.893650px;}
.y4f{bottom:161.898150px;}
.y7a{bottom:172.018650px;}
.y18{bottom:178.768650px;}
.y2e{bottom:182.143650px;}
.y75{bottom:182.148150px;}
.y17{bottom:196.993650px;}
.y2d{bottom:202.393650px;}
.y79{bottom:202.395150px;}
.y44{bottom:202.402650px;}
.y16{bottom:215.218650px;}
.y78{bottom:222.640650px;}
.y2c{bottom:222.643650px;}
.y43{bottom:222.648150px;}
.y56{bottom:222.652650px;}
.y15{bottom:233.443800px;}
.y90{bottom:241.035150px;}
.y2b{bottom:242.893650px;}
.y55{bottom:242.898150px;}
.y14{bottom:251.668650px;}
.y8f{bottom:261.285150px;}
.y2a{bottom:263.143650px;}
.y4e{bottom:263.148150px;}
.y13{bottom:269.893650px;}
.y29{bottom:283.393650px;}
.y6e{bottom:283.411650px;}
.y12{bottom:288.118650px;}
.y8e{bottom:291.659100px;}
.y28{bottom:303.643650px;}
.y71{bottom:303.648150px;}
.y6d{bottom:303.657150px;}
.y11{bottom:306.343650px;}
.y8d{bottom:311.909100px;}
.y27{bottom:323.893650px;}
.y6c{bottom:323.902650px;}
.y68{bottom:323.907150px;}
.y10{bottom:324.568650px;}
.y8c{bottom:342.270150px;}
.y42{bottom:344.143650px;}
.y54{bottom:344.148150px;}
.y26{bottom:344.152650px;}
.y41{bottom:364.393650px;}
.y25{bottom:364.398150px;}
.y77{bottom:364.411650px;}
.y8b{bottom:372.646650px;}
.yf{bottom:379.243650px;}
.y24{bottom:384.643650px;}
.y73{bottom:384.648150px;}
.y61{bottom:384.657150px;}
.ye{bottom:397.468650px;}
.y8a{bottom:403.023150px;}
.y40{bottom:404.893650px;}
.y60{bottom:404.902650px;}
.yd{bottom:415.693800px;}
.y4d{bottom:425.143650px;}
.y5f{bottom:425.148150px;}
.y3f{bottom:425.157150px;}
.y89{bottom:433.399650px;}
.yc{bottom:433.918650px;}
.y53{bottom:445.393650px;}
.y3e{bottom:445.402650px;}
.y67{bottom:445.420650px;}
.yb{bottom:452.143650px;}
.y88{bottom:463.776150px;}
.y4c{bottom:465.643650px;}
.y3d{bottom:465.648150px;}
.y66{bottom:465.666150px;}
.ya{bottom:470.368800px;}
.y3c{bottom:485.893650px;}
.y5e{bottom:485.898150px;}
.y72{bottom:485.902650px;}
.y65{bottom:485.911650px;}
.y9{bottom:488.593800px;}
.y87{bottom:494.152650px;}
.y23{bottom:506.143650px;}
.y4b{bottom:506.148150px;}
.y64{bottom:506.157150px;}
.y8{bottom:506.818800px;}
.y86{bottom:514.402650px;}
.y7{bottom:525.043650px;}
.y3b{bottom:526.393650px;}
.y63{bottom:526.402650px;}
.y6{bottom:543.268650px;}
.y85{bottom:544.774050px;}
.y22{bottom:546.643650px;}
.y62{bottom:546.648150px;}
.y5{bottom:561.493650px;}
.y3a{bottom:566.893650px;}
.y5d{bottom:566.898150px;}
.y76{bottom:566.902650px;}
.y84{bottom:575.150550px;}
.y4{bottom:579.718650px;}
.y39{bottom:587.143650px;}
.y52{bottom:587.148150px;}
.y69{bottom:587.152650px;}
.y83{bottom:595.400550px;}
.y3{bottom:597.943650px;}
.y38{bottom:607.393650px;}
.y4a{bottom:607.398150px;}
.y2{bottom:619.543650px;}
.y82{bottom:625.771950px;}
.y49{bottom:627.643650px;}
.y37{bottom:627.648150px;}
.y6b{bottom:627.652650px;}
.y5c{bottom:627.666150px;}
.y21{bottom:635.743800px;}
.y36{bottom:647.893650px;}
.y6a{bottom:647.898150px;}
.y70{bottom:647.902650px;}
.y5b{bottom:647.911650px;}
.y20{bottom:651.943800px;}
.y81{bottom:656.148450px;}
.y1f{bottom:668.143650px;}
.y6f{bottom:668.148150px;}
.y48{bottom:668.152650px;}
.y5a{bottom:668.157150px;}
.y80{bottom:676.398450px;}
.y35{bottom:688.393650px;}
.y47{bottom:688.398150px;}
.y59{bottom:688.402650px;}
.y7f{bottom:706.772250px;}
.y46{bottom:708.643650px;}
.y1e{bottom:708.648150px;}
.y1{bottom:728.893650px;}
.y7e{bottom:737.146200px;}
.y34{bottom:779.551800px;}
.h7{height:38.976000px;}
.h2{height:42.240000px;}
.h9{height:43.848000px;}
.ha{height:46.464000px;}
.h6{height:48.660000px;}
.h4{height:48.720000px;}
.h3{height:49.800000px;}
.h8{height:53.592000px;}
.h5{height:54.780000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x5{left:106.299150px;}
.x6{left:127.558950px;}
.x1{left:148.818900px;}
.x3{left:378.686850px;}
.x4{left:500.666850px;}
.x7{left:542.475600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls37{letter-spacing:-2.288000pt;}
.ls36{letter-spacing:-2.170667pt;}
.ls5{letter-spacing:-2.026667pt;}
.ls2b{letter-spacing:-1.701333pt;}
.ls30{letter-spacing:-1.584000pt;}
.ls1d{letter-spacing:-1.466667pt;}
.ls11{letter-spacing:-1.290667pt;}
.ls33{letter-spacing:-1.114667pt;}
.ls16{letter-spacing:-1.056000pt;}
.ls23{letter-spacing:-0.997333pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.938667pt;}
.ls4{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.821333pt;}
.ls22{letter-spacing:-0.762667pt;}
.ls2a{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls2c{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.469333pt;}
.ls20{letter-spacing:-0.410667pt;}
.ls17{letter-spacing:-0.352000pt;}
.ls10{letter-spacing:-0.293333pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.234667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.124373pt;}
.ls14{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls21{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.117333pt;}
.ls25{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls24{letter-spacing:0.352000pt;}
.ls1a{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.528000pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls26{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.821333pt;}
.ls38{letter-spacing:0.880000pt;}
.ls32{letter-spacing:1.056000pt;}
.ls18{letter-spacing:1.114667pt;}
.ls35{letter-spacing:1.466667pt;}
.ls28{letter-spacing:1.642667pt;}
.ls34{letter-spacing:1.818667pt;}
.ws48{word-spacing:-13.669333pt;}
.ws3f{word-spacing:-13.552000pt;}
.ws40{word-spacing:-13.493333pt;}
.ws3d{word-spacing:-13.434667pt;}
.ws3e{word-spacing:-13.376000pt;}
.ws1e{word-spacing:-13.317333pt;}
.ws1c{word-spacing:-13.258667pt;}
.ws5c{word-spacing:-13.024000pt;}
.ws30{word-spacing:-12.965333pt;}
.ws19{word-spacing:-12.848000pt;}
.ws31{word-spacing:-12.672000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws1d{word-spacing:-12.554667pt;}
.ws59{word-spacing:-12.496000pt;}
.ws5b{word-spacing:-12.437333pt;}
.ws8{word-spacing:-12.426667pt;}
.ws56{word-spacing:-12.378667pt;}
.ws1b{word-spacing:-12.144000pt;}
.ws2{word-spacing:-12.106667pt;}
.ws7{word-spacing:-12.053333pt;}
.ws2f{word-spacing:-11.968000pt;}
.ws55{word-spacing:-11.850667pt;}
.ws47{word-spacing:-11.733333pt;}
.ws0{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.626667pt;}
.ws3{word-spacing:-11.573333pt;}
.ws1{word-spacing:-11.306667pt;}
.ws5f{word-spacing:-11.264000pt;}
.ws4{word-spacing:-11.253333pt;}
.ws1a{word-spacing:-9.685333pt;}
.ws9{word-spacing:-6.933813pt;}
.ws62{word-spacing:-1.466667pt;}
.ws2c{word-spacing:-1.349333pt;}
.ws2d{word-spacing:-1.290667pt;}
.ws4b{word-spacing:-1.232000pt;}
.ws15{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.173333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws4c{word-spacing:-1.114667pt;}
.ws27{word-spacing:-1.056000pt;}
.ws3a{word-spacing:-0.997333pt;}
.ws2e{word-spacing:-0.938667pt;}
.ws4f{word-spacing:-0.906667pt;}
.ws39{word-spacing:-0.880000pt;}
.ws52{word-spacing:-0.821333pt;}
.ws3c{word-spacing:-0.762667pt;}
.ws38{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.693333pt;}
.ws34{word-spacing:-0.645333pt;}
.wsc{word-spacing:-0.640000pt;}
.ws45{word-spacing:-0.586667pt;}
.ws28{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.469333pt;}
.ws3b{word-spacing:-0.410667pt;}
.ws22{word-spacing:-0.352000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws44{word-spacing:-0.293333pt;}
.ws18{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.234667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.176000pt;}
.ws35{word-spacing:-0.117333pt;}
.ws5e{word-spacing:-0.058667pt;}
.wsa{word-spacing:0.000000pt;}
.ws23{word-spacing:0.058667pt;}
.ws36{word-spacing:0.117333pt;}
.ws32{word-spacing:0.176000pt;}
.wsf{word-spacing:0.213333pt;}
.ws49{word-spacing:0.234667pt;}
.ws4e{word-spacing:0.266667pt;}
.ws2b{word-spacing:0.293333pt;}
.ws29{word-spacing:0.352000pt;}
.ws4a{word-spacing:0.410667pt;}
.ws54{word-spacing:0.469333pt;}
.ws57{word-spacing:0.528000pt;}
.ws51{word-spacing:0.586667pt;}
.ws50{word-spacing:0.645333pt;}
.ws1f{word-spacing:0.693333pt;}
.ws20{word-spacing:0.704000pt;}
.ws21{word-spacing:0.762667pt;}
.ws33{word-spacing:0.821333pt;}
.ws46{word-spacing:0.880000pt;}
.ws14{word-spacing:0.906667pt;}
.ws43{word-spacing:0.938667pt;}
.ws37{word-spacing:0.997333pt;}
.ws2a{word-spacing:1.056000pt;}
.ws4d{word-spacing:1.114667pt;}
.ws12{word-spacing:1.173333pt;}
.wsb{word-spacing:1.226667pt;}
.ws42{word-spacing:1.232000pt;}
.ws26{word-spacing:1.290667pt;}
.ws24{word-spacing:1.349333pt;}
.ws53{word-spacing:1.408000pt;}
.ws17{word-spacing:1.440000pt;}
.ws60{word-spacing:1.701333pt;}
.ws5a{word-spacing:1.936000pt;}
.ws61{word-spacing:2.288000pt;}
.ws5d{word-spacing:2.757333pt;}
.wse{word-spacing:3.306667pt;}
._6{margin-left:-8.912000pt;}
._7{margin-left:-7.056000pt;}
._4{margin-left:-5.760000pt;}
._1{margin-left:-4.373333pt;}
._3{margin-left:-3.466667pt;}
._0{margin-left:-1.760000pt;}
._2{width:1.226667pt;}
._5{width:2.560000pt;}
.fs1{font-size:31.093333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:71.905467pt;}
.y58{bottom:71.909467pt;}
.y51{bottom:71.913467pt;}
.y1d{bottom:77.905467pt;}
.y32{bottom:89.905467pt;}
.y7d{bottom:89.907467pt;}
.y50{bottom:89.909467pt;}
.y1c{bottom:94.105467pt;}
.y31{bottom:107.905467pt;}
.y7c{bottom:107.907467pt;}
.y74{bottom:107.913467pt;}
.y1b{bottom:110.305467pt;}
.y30{bottom:125.905467pt;}
.y45{bottom:125.909467pt;}
.y57{bottom:125.913467pt;}
.y1a{bottom:126.505600pt;}
.y7b{bottom:134.909467pt;}
.y19{bottom:142.705467pt;}
.y2f{bottom:143.905467pt;}
.y4f{bottom:143.909467pt;}
.y7a{bottom:152.905467pt;}
.y18{bottom:158.905467pt;}
.y2e{bottom:161.905467pt;}
.y75{bottom:161.909467pt;}
.y17{bottom:175.105467pt;}
.y2d{bottom:179.905467pt;}
.y79{bottom:179.906800pt;}
.y44{bottom:179.913467pt;}
.y16{bottom:191.305467pt;}
.y78{bottom:197.902800pt;}
.y2c{bottom:197.905467pt;}
.y43{bottom:197.909467pt;}
.y56{bottom:197.913467pt;}
.y15{bottom:207.505600pt;}
.y90{bottom:214.253467pt;}
.y2b{bottom:215.905467pt;}
.y55{bottom:215.909467pt;}
.y14{bottom:223.705467pt;}
.y8f{bottom:232.253467pt;}
.y2a{bottom:233.905467pt;}
.y4e{bottom:233.909467pt;}
.y13{bottom:239.905467pt;}
.y29{bottom:251.905467pt;}
.y6e{bottom:251.921467pt;}
.y12{bottom:256.105467pt;}
.y8e{bottom:259.252533pt;}
.y28{bottom:269.905467pt;}
.y71{bottom:269.909467pt;}
.y6d{bottom:269.917467pt;}
.y11{bottom:272.305467pt;}
.y8d{bottom:277.252533pt;}
.y27{bottom:287.905467pt;}
.y6c{bottom:287.913467pt;}
.y68{bottom:287.917467pt;}
.y10{bottom:288.505467pt;}
.y8c{bottom:304.240133pt;}
.y42{bottom:305.905467pt;}
.y54{bottom:305.909467pt;}
.y26{bottom:305.913467pt;}
.y41{bottom:323.905467pt;}
.y25{bottom:323.909467pt;}
.y77{bottom:323.921467pt;}
.y8b{bottom:331.241467pt;}
.yf{bottom:337.105467pt;}
.y24{bottom:341.905467pt;}
.y73{bottom:341.909467pt;}
.y61{bottom:341.917467pt;}
.ye{bottom:353.305467pt;}
.y8a{bottom:358.242800pt;}
.y40{bottom:359.905467pt;}
.y60{bottom:359.913467pt;}
.yd{bottom:369.505600pt;}
.y4d{bottom:377.905467pt;}
.y5f{bottom:377.909467pt;}
.y3f{bottom:377.917467pt;}
.y89{bottom:385.244133pt;}
.yc{bottom:385.705467pt;}
.y53{bottom:395.905467pt;}
.y3e{bottom:395.913467pt;}
.y67{bottom:395.929467pt;}
.yb{bottom:401.905467pt;}
.y88{bottom:412.245467pt;}
.y4c{bottom:413.905467pt;}
.y3d{bottom:413.909467pt;}
.y66{bottom:413.925467pt;}
.ya{bottom:418.105600pt;}
.y3c{bottom:431.905467pt;}
.y5e{bottom:431.909467pt;}
.y72{bottom:431.913467pt;}
.y65{bottom:431.921467pt;}
.y9{bottom:434.305600pt;}
.y87{bottom:439.246800pt;}
.y23{bottom:449.905467pt;}
.y4b{bottom:449.909467pt;}
.y64{bottom:449.917467pt;}
.y8{bottom:450.505600pt;}
.y86{bottom:457.246800pt;}
.y7{bottom:466.705467pt;}
.y3b{bottom:467.905467pt;}
.y63{bottom:467.913467pt;}
.y6{bottom:482.905467pt;}
.y85{bottom:484.243600pt;}
.y22{bottom:485.905467pt;}
.y62{bottom:485.909467pt;}
.y5{bottom:499.105467pt;}
.y3a{bottom:503.905467pt;}
.y5d{bottom:503.909467pt;}
.y76{bottom:503.913467pt;}
.y84{bottom:511.244933pt;}
.y4{bottom:515.305467pt;}
.y39{bottom:521.905467pt;}
.y52{bottom:521.909467pt;}
.y69{bottom:521.913467pt;}
.y83{bottom:529.244933pt;}
.y3{bottom:531.505467pt;}
.y38{bottom:539.905467pt;}
.y4a{bottom:539.909467pt;}
.y2{bottom:550.705467pt;}
.y82{bottom:556.241733pt;}
.y49{bottom:557.905467pt;}
.y37{bottom:557.909467pt;}
.y6b{bottom:557.913467pt;}
.y5c{bottom:557.925467pt;}
.y21{bottom:565.105600pt;}
.y36{bottom:575.905467pt;}
.y6a{bottom:575.909467pt;}
.y70{bottom:575.913467pt;}
.y5b{bottom:575.921467pt;}
.y20{bottom:579.505600pt;}
.y81{bottom:583.243067pt;}
.y1f{bottom:593.905467pt;}
.y6f{bottom:593.909467pt;}
.y48{bottom:593.913467pt;}
.y5a{bottom:593.917467pt;}
.y80{bottom:601.243067pt;}
.y35{bottom:611.905467pt;}
.y47{bottom:611.909467pt;}
.y59{bottom:611.913467pt;}
.y7f{bottom:628.242000pt;}
.y46{bottom:629.905467pt;}
.y1e{bottom:629.909467pt;}
.y1{bottom:647.905467pt;}
.y7e{bottom:655.241067pt;}
.y34{bottom:692.934933pt;}
.h7{height:34.645333pt;}
.h2{height:37.546667pt;}
.h9{height:38.976000pt;}
.ha{height:41.301333pt;}
.h6{height:43.253333pt;}
.h4{height:43.306667pt;}
.h3{height:44.266667pt;}
.h8{height:47.637333pt;}
.h5{height:48.693333pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x5{left:94.488133pt;}
.x6{left:113.385733pt;}
.x1{left:132.283467pt;}
.x3{left:336.610533pt;}
.x4{left:445.037200pt;}
.x7{left:482.200533pt;}
}




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