
    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_246563c770465c5ee990e31c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_246563c770465c5ee990e31c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_c4670ee383b9310718b0299c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_804a25a95af2d14bdbc489b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_3e3dd59d1138b5ec08f6c786.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.047000;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_bbad6e3ad7b0e7c45031f6fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.856934;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_4f539f40db6f4813b38a56bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_246563c770465c5ee990e31c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_246563c770465c5ee990e31c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.931000;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_8c2ee1c02b8aa4f163354f5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.047000;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_e9b8d2987d6ab9d58370c404.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718000;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_4c2b61de4fc3b87cfa96f5ee.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f454c5abde161d3d3cb23aaf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.865397;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;}
.m116{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235411,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235614,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.235883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235883,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.236122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236122,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.236553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236553,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237786,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.237958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237958,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.237961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237961,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.238814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238814,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238817,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239081,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.239653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239653,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239853,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247803,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m6d{transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248472,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248531,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.mf1{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);}
.md5{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249272,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249463,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,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);}
.m58{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.mdd{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);}
.m9d{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,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);}
.m95{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.m99{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.mff{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);}
.me0{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m101{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m59{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);}
.m2e{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m70{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);}
.mf9{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);}
.mcc{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);}
.m23{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.mfb{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251615,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.mfc{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);}
.m41{transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);}
.ma3{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);}
.m8b{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252043,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252340,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v2{vertical-align:-19.980000px;}
.v8{vertical-align:-17.982000px;}
.v3{vertical-align:-6.000000px;}
.v6{vertical-align:-3.897600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v7{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:26.976000px;}
.ls10{letter-spacing:-1.260000px;}
.ls28{letter-spacing:-1.200000px;}
.ls27{letter-spacing:-1.140000px;}
.ls25{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-0.960000px;}
.ls16{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.600000px;}
.ls35{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.060000px;}
.ls2e{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.513000px;}
.ls18{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.630000px;}
.ls2f{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.780000px;}
.ls29{letter-spacing:0.840000px;}
.ls1f{letter-spacing:0.960000px;}
.ls1b{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.140000px;}
.ls2d{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.320000px;}
.ls2c{letter-spacing:1.680000px;}
.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;}
}
.ws29{word-spacing:-13.020000px;}
.ws4{word-spacing:-12.120000px;}
.ws1{word-spacing:-10.908000px;}
.ws5{word-spacing:-10.896000px;}
.ws2a{word-spacing:-10.176000px;}
.ws0{word-spacing:-9.936000px;}
.ws2{word-spacing:-8.157336px;}
.ws3{word-spacing:-7.415760px;}
.ws30{word-spacing:-6.674184px;}
.wsf{word-spacing:-2.376000px;}
.ws17{word-spacing:-0.960000px;}
.ws10{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.600000px;}
.ws31{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.420000px;}
.ws2b{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.240000px;}
.ws26{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.060000px;}
.ws2f{word-spacing:-0.054000px;}
.ws21{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.108000px;}
.ws25{word-spacing:0.120000px;}
.wsa{word-spacing:0.216000px;}
.ws20{word-spacing:0.240000px;}
.ws1a{word-spacing:0.300000px;}
.ws32{word-spacing:0.324000px;}
.wse{word-spacing:0.360000px;}
.ws33{word-spacing:0.378000px;}
.ws18{word-spacing:0.480000px;}
.wsb{word-spacing:0.540000px;}
.wsd{word-spacing:0.594000px;}
.ws1f{word-spacing:0.600000px;}
.ws12{word-spacing:0.660000px;}
.ws14{word-spacing:0.720000px;}
.ws13{word-spacing:0.780000px;}
.ws22{word-spacing:0.840000px;}
.ws2c{word-spacing:0.900000px;}
.ws1e{word-spacing:0.960000px;}
.ws1b{word-spacing:1.020000px;}
.ws1c{word-spacing:1.080000px;}
.ws27{word-spacing:1.140000px;}
.ws2e{word-spacing:1.200000px;}
.ws24{word-spacing:1.320000px;}
.ws23{word-spacing:1.620000px;}
.ws6{word-spacing:607.248000px;}
.ws8{word-spacing:664.032000px;}
.ws7{word-spacing:679.344000px;}
._21{margin-left:-7.314000px;}
._f{margin-left:-6.130800px;}
._4{margin-left:-5.047200px;}
._1{margin-left:-3.748800px;}
._3{margin-left:-2.334000px;}
._0{margin-left:-1.200000px;}
._2{width:1.440000px;}
._5{width:2.577934px;}
._22{width:44.304000px;}
._13{width:57.888000px;}
._20{width:68.928000px;}
._10{width:94.368000px;}
._11{width:99.168000px;}
._15{width:145.104000px;}
._14{width:163.680000px;}
._12{width:169.728000px;}
._1f{width:192.672000px;}
._d{width:251.952000px;}
._c{width:262.176000px;}
._18{width:303.168000px;}
._8{width:310.224000px;}
._1b{width:313.104000px;}
._19{width:433.632000px;}
._17{width:458.256000px;}
._1d{width:469.056000px;}
._e{width:476.592000px;}
._b{width:490.368000px;}
._1c{width:493.680000px;}
._1e{width:503.520000px;}
._1a{width:518.304000px;}
._7{width:542.352000px;}
._6{width:553.566000px;}
._a{width:558.480000px;}
._9{width:616.756800px;}
._16{width:1564.029600px;}
.fc4{color:rgb(147,149,152);}
.fc3{color:transparent;}
.fc1{color:rgb(230,231,232);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(109,110,113);}
.fs9{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs7{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:38.568900px;}
.y53{bottom:39.543300px;}
.y8{bottom:75.167700px;}
.y44{bottom:75.543300px;}
.y7b{bottom:84.144600px;}
.y7{bottom:88.667700px;}
.y43{bottom:93.543300px;}
.yd3{bottom:95.385900px;}
.y6{bottom:102.167700px;}
.y7a{bottom:103.071750px;}
.yd2{bottom:108.885900px;}
.y79{bottom:109.827750px;}
.y42{bottom:111.543300px;}
.y5{bottom:115.667700px;}
.yd1{bottom:122.385900px;}
.y4{bottom:129.167700px;}
.y41{bottom:129.543300px;}
.y78{bottom:134.079750px;}
.yd0{bottom:135.885900px;}
.y77{bottom:140.835750px;}
.y3{bottom:146.915700px;}
.y40{bottom:147.543300px;}
.ycf{bottom:149.385900px;}
.yce{bottom:162.885900px;}
.y76{bottom:165.087750px;}
.y3f{bottom:165.543300px;}
.ycd{bottom:176.385900px;}
.y74{bottom:178.587750px;}
.y3e{bottom:183.543300px;}
.ycc{bottom:189.885900px;}
.y75{bottom:192.087750px;}
.y3d{bottom:201.543300px;}
.ycb{bottom:203.385900px;}
.y52{bottom:204.617100px;}
.y73{bottom:209.595750px;}
.yca{bottom:216.885900px;}
.yd{bottom:217.787700px;}
.y3c{bottom:219.543300px;}
.y71{bottom:223.095750px;}
.y51{bottom:223.515900px;}
.yc9{bottom:230.385900px;}
.yc{bottom:235.535700px;}
.y72{bottom:236.595750px;}
.y3b{bottom:237.543300px;}
.y50{bottom:241.023900px;}
.yc8{bottom:243.885900px;}
.yb{bottom:249.035700px;}
.y70{bottom:254.103750px;}
.y3a{bottom:255.543300px;}
.yc7{bottom:257.385900px;}
.y4f{bottom:258.531900px;}
.ya{bottom:266.783700px;}
.yc6{bottom:270.885900px;}
.y39{bottom:273.543300px;}
.y4e{bottom:276.039900px;}
.y9{bottom:280.283700px;}
.yc5{bottom:284.385900px;}
.y38{bottom:291.543300px;}
.y4d{bottom:293.547900px;}
.yc4{bottom:297.885900px;}
.y37{bottom:308.043300px;}
.y36{bottom:309.543300px;}
.y4c{bottom:311.055900px;}
.yc3{bottom:311.385900px;}
.yc2{bottom:324.885900px;}
.y35{bottom:327.543300px;}
.y4b{bottom:328.563900px;}
.yc1{bottom:338.385900px;}
.y6f{bottom:345.543300px;}
.y4a{bottom:346.071900px;}
.yc0{bottom:351.885900px;}
.y34{bottom:363.543300px;}
.y49{bottom:363.579900px;}
.ybf{bottom:365.385900px;}
.ybe{bottom:378.885900px;}
.y48{bottom:381.087900px;}
.y6e{bottom:381.543300px;}
.ybd{bottom:392.385900px;}
.y47{bottom:398.595900px;}
.y6d{bottom:399.543300px;}
.ybc{bottom:405.885900px;}
.y46{bottom:416.103900px;}
.y33{bottom:417.543300px;}
.ybb{bottom:419.385900px;}
.yba{bottom:432.885900px;}
.y32{bottom:435.543300px;}
.yb9{bottom:446.385900px;}
.y31{bottom:453.543300px;}
.yb8{bottom:459.885900px;}
.y30{bottom:471.543300px;}
.yb7{bottom:473.385900px;}
.yb6{bottom:486.885900px;}
.y2f{bottom:489.543300px;}
.yb5{bottom:500.385900px;}
.yf1{bottom:500.431800px;}
.yf8{bottom:501.564000px;}
.y2e{bottom:507.543300px;}
.yb4{bottom:513.885900px;}
.yf0{bottom:515.431800px;}
.yf7{bottom:516.564000px;}
.y2d{bottom:525.543300px;}
.yb3{bottom:527.385900px;}
.yef{bottom:530.431800px;}
.yb2{bottom:540.885900px;}
.y2c{bottom:543.543300px;}
.yf6{bottom:544.319850px;}
.yee{bottom:545.431800px;}
.yb1{bottom:554.385900px;}
.yf5{bottom:559.319850px;}
.yed{bottom:560.431800px;}
.y2b{bottom:561.543300px;}
.yb0{bottom:567.885900px;}
.yf4{bottom:574.319850px;}
.yec{bottom:575.431800px;}
.y2a{bottom:579.543300px;}
.yaf{bottom:581.385900px;}
.yf3{bottom:589.319850px;}
.yeb{bottom:590.431800px;}
.yae{bottom:594.885900px;}
.y29{bottom:597.543300px;}
.yf2{bottom:604.319850px;}
.yea{bottom:605.431800px;}
.yad{bottom:608.385900px;}
.y28{bottom:615.543300px;}
.yac{bottom:621.885900px;}
.y102{bottom:632.808300px;}
.y27{bottom:633.543300px;}
.yab{bottom:635.385900px;}
.y101{bottom:647.808300px;}
.yaa{bottom:648.885900px;}
.y26{bottom:651.543300px;}
.ya9{bottom:662.385900px;}
.y100{bottom:662.808300px;}
.y25{bottom:669.543300px;}
.ya8{bottom:675.885900px;}
.yff{bottom:677.808300px;}
.y45{bottom:687.543300px;}
.ya7{bottom:689.385900px;}
.yfe{bottom:692.808300px;}
.ya6{bottom:702.885900px;}
.y24{bottom:705.543300px;}
.yfd{bottom:707.808300px;}
.ya5{bottom:716.385900px;}
.yfc{bottom:722.808300px;}
.y6c{bottom:723.543300px;}
.ya4{bottom:729.885900px;}
.yfb{bottom:737.564700px;}
.y6b{bottom:741.543300px;}
.ya3{bottom:743.385900px;}
.y18{bottom:752.160000px;}
.yfa{bottom:755.564700px;}
.ya2{bottom:756.885900px;}
.y6a{bottom:759.543300px;}
.y17{bottom:767.158500px;}
.ya1{bottom:770.385900px;}
.y69{bottom:777.543300px;}
.yf9{bottom:782.068650px;}
.y16{bottom:782.158500px;}
.ya0{bottom:783.885900px;}
.y68{bottom:795.543300px;}
.y15{bottom:797.158500px;}
.y9f{bottom:797.385900px;}
.y9e{bottom:810.885900px;}
.y14{bottom:812.158500px;}
.y67{bottom:813.543300px;}
.y9d{bottom:824.385900px;}
.y13{bottom:827.158500px;}
.y66{bottom:831.543300px;}
.y9c{bottom:837.885900px;}
.ye9{bottom:838.523550px;}
.y12{bottom:842.158500px;}
.y65{bottom:849.543300px;}
.y9b{bottom:851.385900px;}
.ye8{bottom:852.023550px;}
.y11{bottom:857.160000px;}
.y9a{bottom:864.885900px;}
.ye7{bottom:865.523550px;}
.y64{bottom:867.543300px;}
.y10{bottom:872.158500px;}
.y99{bottom:878.385900px;}
.ye6{bottom:879.023550px;}
.y63{bottom:885.543300px;}
.y88{bottom:890.256450px;}
.y98{bottom:891.885900px;}
.ye5{bottom:892.523550px;}
.y62{bottom:903.543300px;}
.y97{bottom:905.385900px;}
.ye4{bottom:906.023550px;}
.y87{bottom:910.899750px;}
.y23{bottom:914.629800px;}
.y96{bottom:918.885900px;}
.ye3{bottom:919.523550px;}
.y61{bottom:921.543300px;}
.y22{bottom:930.379800px;}
.y86{bottom:931.827750px;}
.y95{bottom:932.385900px;}
.ye2{bottom:933.023550px;}
.y60{bottom:939.543300px;}
.y94{bottom:945.885900px;}
.y21{bottom:946.129800px;}
.ye1{bottom:946.523550px;}
.y85{bottom:952.755750px;}
.y5f{bottom:957.543300px;}
.y93{bottom:959.385900px;}
.ye0{bottom:960.023550px;}
.y20{bottom:961.879800px;}
.y92{bottom:972.885900px;}
.ydf{bottom:973.523550px;}
.y84{bottom:973.683750px;}
.y5e{bottom:975.543300px;}
.y1f{bottom:977.629800px;}
.y91{bottom:986.385900px;}
.yde{bottom:987.023550px;}
.y1e{bottom:993.379800px;}
.y5d{bottom:993.543300px;}
.y83{bottom:994.611750px;}
.y90{bottom:999.885900px;}
.ydd{bottom:1000.523550px;}
.y1d{bottom:1009.129800px;}
.y5c{bottom:1011.543300px;}
.y8f{bottom:1013.385900px;}
.ydc{bottom:1014.023550px;}
.y82{bottom:1014.939750px;}
.y1c{bottom:1026.262800px;}
.y8e{bottom:1026.885900px;}
.ydb{bottom:1027.523550px;}
.y5b{bottom:1028.043300px;}
.y5a{bottom:1029.543300px;}
.y81{bottom:1033.551750px;}
.y8d{bottom:1040.385900px;}
.yda{bottom:1041.023550px;}
.y1b{bottom:1045.762800px;}
.y59{bottom:1047.543300px;}
.y80{bottom:1053.327750px;}
.y8c{bottom:1053.885900px;}
.yd9{bottom:1054.523550px;}
.y58{bottom:1065.543300px;}
.y8b{bottom:1067.385900px;}
.yd8{bottom:1068.023550px;}
.y7f{bottom:1073.103750px;}
.y1a{bottom:1080.144600px;}
.y8a{bottom:1080.885900px;}
.yd7{bottom:1081.523550px;}
.y57{bottom:1083.543300px;}
.y7d{bottom:1086.603750px;}
.y89{bottom:1094.385900px;}
.yd6{bottom:1095.023550px;}
.y7e{bottom:1100.103750px;}
.y56{bottom:1101.543300px;}
.yd5{bottom:1108.523550px;}
.y19{bottom:1118.648550px;}
.y55{bottom:1119.543300px;}
.yd4{bottom:1122.023550px;}
.y2{bottom:1179.796200px;}
.y7c{bottom:1179.798600px;}
.yf{bottom:1179.815700px;}
.ye{bottom:1201.127700px;}
.y1{bottom:1234.576800px;}
.h13{height:26.676000px;}
.ha{height:29.640000px;}
.h3{height:34.608000px;}
.he{height:34.734000px;}
.h10{height:35.798400px;}
.hc{height:36.528000px;}
.h5{height:38.340000px;}
.h4{height:39.648000px;}
.hd{height:39.696000px;}
.h2{height:42.600000px;}
.h6{height:44.658000px;}
.hb{height:45.660000px;}
.h7{height:47.586000px;}
.h12{height:49.620000px;}
.h9{height:54.582000px;}
.h11{height:61.933594px;}
.hf{height:66.672000px;}
.h8{height:81.562500px;}
.h1{height:1233.000000px;}
.h0{height:1233.070500px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.xc{left:-12.755850px;}
.x0{left:0.000000px;}
.xd{left:26.137050px;}
.x10{left:76.535400px;}
.xf{left:85.511850px;}
.x24{left:89.291250px;}
.x3{left:93.541950px;}
.x5{left:104.336700px;}
.x4{left:106.299150px;}
.x6{left:109.920450px;}
.x21{left:120.538500px;}
.x7{left:287.620050px;}
.x8{left:293.203800px;}
.x9{left:389.055150px;}
.xb{left:393.494700px;}
.x11{left:398.076300px;}
.xa{left:406.063050px;}
.x18{left:428.361000px;}
.x12{left:437.952750px;}
.x15{left:442.392150px;}
.x13{left:454.960650px;}
.x23{left:464.949600px;}
.x19{left:471.970650px;}
.x22{left:481.957500px;}
.xe{left:565.920750px;}
.x16{left:569.760150px;}
.x1b{left:584.052300px;}
.x1a{left:589.860300px;}
.x1c{left:608.340300px;}
.x2{left:689.881950px;}
.x1d{left:698.844300px;}
.x17{left:704.190600px;}
.x1f{left:708.168300px;}
.x1e{left:712.596300px;}
.x14{left:772.784550px;}
.x20{left:819.572550px;}
.x1{left:827.897400px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v8{vertical-align:-15.984000pt;}
.v3{vertical-align:-5.333333pt;}
.v6{vertical-align:-3.464533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v7{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:23.978667pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls27{letter-spacing:-1.013333pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053333pt;}
.ls2e{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.456000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.560000pt;}
.ls2f{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls29{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.173333pt;}
.ls2c{letter-spacing:1.493333pt;}
.ws29{word-spacing:-11.573333pt;}
.ws4{word-spacing:-10.773333pt;}
.ws1{word-spacing:-9.696000pt;}
.ws5{word-spacing:-9.685333pt;}
.ws2a{word-spacing:-9.045333pt;}
.ws0{word-spacing:-8.832000pt;}
.ws2{word-spacing:-7.250965pt;}
.ws3{word-spacing:-6.591787pt;}
.ws30{word-spacing:-5.932608pt;}
.wsf{word-spacing:-2.112000pt;}
.ws17{word-spacing:-0.853333pt;}
.ws10{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws31{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.373333pt;}
.ws2b{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.213333pt;}
.ws26{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.053333pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws21{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.096000pt;}
.ws25{word-spacing:0.106667pt;}
.wsa{word-spacing:0.192000pt;}
.ws20{word-spacing:0.213333pt;}
.ws1a{word-spacing:0.266667pt;}
.ws32{word-spacing:0.288000pt;}
.wse{word-spacing:0.320000pt;}
.ws33{word-spacing:0.336000pt;}
.ws18{word-spacing:0.426667pt;}
.wsb{word-spacing:0.480000pt;}
.wsd{word-spacing:0.528000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws12{word-spacing:0.586667pt;}
.ws14{word-spacing:0.640000pt;}
.ws13{word-spacing:0.693333pt;}
.ws22{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.800000pt;}
.ws1e{word-spacing:0.853333pt;}
.ws1b{word-spacing:0.906667pt;}
.ws1c{word-spacing:0.960000pt;}
.ws27{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.066667pt;}
.ws24{word-spacing:1.173333pt;}
.ws23{word-spacing:1.440000pt;}
.ws6{word-spacing:539.776000pt;}
.ws8{word-spacing:590.250667pt;}
.ws7{word-spacing:603.861333pt;}
._21{margin-left:-6.501333pt;}
._f{margin-left:-5.449600pt;}
._4{margin-left:-4.486400pt;}
._1{margin-left:-3.332267pt;}
._3{margin-left:-2.074667pt;}
._0{margin-left:-1.066667pt;}
._2{width:1.280000pt;}
._5{width:2.291497pt;}
._22{width:39.381333pt;}
._13{width:51.456000pt;}
._20{width:61.269333pt;}
._10{width:83.882667pt;}
._11{width:88.149333pt;}
._15{width:128.981333pt;}
._14{width:145.493333pt;}
._12{width:150.869333pt;}
._1f{width:171.264000pt;}
._d{width:223.957333pt;}
._c{width:233.045333pt;}
._18{width:269.482667pt;}
._8{width:275.754667pt;}
._1b{width:278.314667pt;}
._19{width:385.450667pt;}
._17{width:407.338667pt;}
._1d{width:416.938667pt;}
._e{width:423.637333pt;}
._b{width:435.882667pt;}
._1c{width:438.826667pt;}
._1e{width:447.573333pt;}
._1a{width:460.714667pt;}
._7{width:482.090667pt;}
._6{width:492.058667pt;}
._a{width:496.426667pt;}
._9{width:548.228267pt;}
._16{width:1390.248533pt;}
.fs9{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:34.283467pt;}
.y53{bottom:35.149600pt;}
.y8{bottom:66.815733pt;}
.y44{bottom:67.149600pt;}
.y7b{bottom:74.795200pt;}
.y7{bottom:78.815733pt;}
.y43{bottom:83.149600pt;}
.yd3{bottom:84.787467pt;}
.y6{bottom:90.815733pt;}
.y7a{bottom:91.619333pt;}
.yd2{bottom:96.787467pt;}
.y79{bottom:97.624667pt;}
.y42{bottom:99.149600pt;}
.y5{bottom:102.815733pt;}
.yd1{bottom:108.787467pt;}
.y4{bottom:114.815733pt;}
.y41{bottom:115.149600pt;}
.y78{bottom:119.182000pt;}
.yd0{bottom:120.787467pt;}
.y77{bottom:125.187333pt;}
.y3{bottom:130.591733pt;}
.y40{bottom:131.149600pt;}
.ycf{bottom:132.787467pt;}
.yce{bottom:144.787467pt;}
.y76{bottom:146.744667pt;}
.y3f{bottom:147.149600pt;}
.ycd{bottom:156.787467pt;}
.y74{bottom:158.744667pt;}
.y3e{bottom:163.149600pt;}
.ycc{bottom:168.787467pt;}
.y75{bottom:170.744667pt;}
.y3d{bottom:179.149600pt;}
.ycb{bottom:180.787467pt;}
.y52{bottom:181.881867pt;}
.y73{bottom:186.307333pt;}
.yca{bottom:192.787467pt;}
.yd{bottom:193.589067pt;}
.y3c{bottom:195.149600pt;}
.y71{bottom:198.307333pt;}
.y51{bottom:198.680800pt;}
.yc9{bottom:204.787467pt;}
.yc{bottom:209.365067pt;}
.y72{bottom:210.307333pt;}
.y3b{bottom:211.149600pt;}
.y50{bottom:214.243467pt;}
.yc8{bottom:216.787467pt;}
.yb{bottom:221.365067pt;}
.y70{bottom:225.870000pt;}
.y3a{bottom:227.149600pt;}
.yc7{bottom:228.787467pt;}
.y4f{bottom:229.806133pt;}
.ya{bottom:237.141067pt;}
.yc6{bottom:240.787467pt;}
.y39{bottom:243.149600pt;}
.y4e{bottom:245.368800pt;}
.y9{bottom:249.141067pt;}
.yc5{bottom:252.787467pt;}
.y38{bottom:259.149600pt;}
.y4d{bottom:260.931467pt;}
.yc4{bottom:264.787467pt;}
.y37{bottom:273.816267pt;}
.y36{bottom:275.149600pt;}
.y4c{bottom:276.494133pt;}
.yc3{bottom:276.787467pt;}
.yc2{bottom:288.787467pt;}
.y35{bottom:291.149600pt;}
.y4b{bottom:292.056800pt;}
.yc1{bottom:300.787467pt;}
.y6f{bottom:307.149600pt;}
.y4a{bottom:307.619467pt;}
.yc0{bottom:312.787467pt;}
.y34{bottom:323.149600pt;}
.y49{bottom:323.182133pt;}
.ybf{bottom:324.787467pt;}
.ybe{bottom:336.787467pt;}
.y48{bottom:338.744800pt;}
.y6e{bottom:339.149600pt;}
.ybd{bottom:348.787467pt;}
.y47{bottom:354.307467pt;}
.y6d{bottom:355.149600pt;}
.ybc{bottom:360.787467pt;}
.y46{bottom:369.870133pt;}
.y33{bottom:371.149600pt;}
.ybb{bottom:372.787467pt;}
.yba{bottom:384.787467pt;}
.y32{bottom:387.149600pt;}
.yb9{bottom:396.787467pt;}
.y31{bottom:403.149600pt;}
.yb8{bottom:408.787467pt;}
.y30{bottom:419.149600pt;}
.yb7{bottom:420.787467pt;}
.yb6{bottom:432.787467pt;}
.y2f{bottom:435.149600pt;}
.yb5{bottom:444.787467pt;}
.yf1{bottom:444.828267pt;}
.yf8{bottom:445.834667pt;}
.y2e{bottom:451.149600pt;}
.yb4{bottom:456.787467pt;}
.yf0{bottom:458.161600pt;}
.yf7{bottom:459.168000pt;}
.y2d{bottom:467.149600pt;}
.yb3{bottom:468.787467pt;}
.yef{bottom:471.494933pt;}
.yb2{bottom:480.787467pt;}
.y2c{bottom:483.149600pt;}
.yf6{bottom:483.839867pt;}
.yee{bottom:484.828267pt;}
.yb1{bottom:492.787467pt;}
.yf5{bottom:497.173200pt;}
.yed{bottom:498.161600pt;}
.y2b{bottom:499.149600pt;}
.yb0{bottom:504.787467pt;}
.yf4{bottom:510.506533pt;}
.yec{bottom:511.494933pt;}
.y2a{bottom:515.149600pt;}
.yaf{bottom:516.787467pt;}
.yf3{bottom:523.839867pt;}
.yeb{bottom:524.828267pt;}
.yae{bottom:528.787467pt;}
.y29{bottom:531.149600pt;}
.yf2{bottom:537.173200pt;}
.yea{bottom:538.161600pt;}
.yad{bottom:540.787467pt;}
.y28{bottom:547.149600pt;}
.yac{bottom:552.787467pt;}
.y102{bottom:562.496267pt;}
.y27{bottom:563.149600pt;}
.yab{bottom:564.787467pt;}
.y101{bottom:575.829600pt;}
.yaa{bottom:576.787467pt;}
.y26{bottom:579.149600pt;}
.ya9{bottom:588.787467pt;}
.y100{bottom:589.162933pt;}
.y25{bottom:595.149600pt;}
.ya8{bottom:600.787467pt;}
.yff{bottom:602.496267pt;}
.y45{bottom:611.149600pt;}
.ya7{bottom:612.787467pt;}
.yfe{bottom:615.829600pt;}
.ya6{bottom:624.787467pt;}
.y24{bottom:627.149600pt;}
.yfd{bottom:629.162933pt;}
.ya5{bottom:636.787467pt;}
.yfc{bottom:642.496267pt;}
.y6c{bottom:643.149600pt;}
.ya4{bottom:648.787467pt;}
.yfb{bottom:655.613067pt;}
.y6b{bottom:659.149600pt;}
.ya3{bottom:660.787467pt;}
.y18{bottom:668.586667pt;}
.yfa{bottom:671.613067pt;}
.ya2{bottom:672.787467pt;}
.y6a{bottom:675.149600pt;}
.y17{bottom:681.918667pt;}
.ya1{bottom:684.787467pt;}
.y69{bottom:691.149600pt;}
.yf9{bottom:695.172133pt;}
.y16{bottom:695.252000pt;}
.ya0{bottom:696.787467pt;}
.y68{bottom:707.149600pt;}
.y15{bottom:708.585333pt;}
.y9f{bottom:708.787467pt;}
.y9e{bottom:720.787467pt;}
.y14{bottom:721.918667pt;}
.y67{bottom:723.149600pt;}
.y9d{bottom:732.787467pt;}
.y13{bottom:735.252000pt;}
.y66{bottom:739.149600pt;}
.y9c{bottom:744.787467pt;}
.ye9{bottom:745.354267pt;}
.y12{bottom:748.585333pt;}
.y65{bottom:755.149600pt;}
.y9b{bottom:756.787467pt;}
.ye8{bottom:757.354267pt;}
.y11{bottom:761.920000pt;}
.y9a{bottom:768.787467pt;}
.ye7{bottom:769.354267pt;}
.y64{bottom:771.149600pt;}
.y10{bottom:775.252000pt;}
.y99{bottom:780.787467pt;}
.ye6{bottom:781.354267pt;}
.y63{bottom:787.149600pt;}
.y88{bottom:791.339067pt;}
.y98{bottom:792.787467pt;}
.ye5{bottom:793.354267pt;}
.y62{bottom:803.149600pt;}
.y97{bottom:804.787467pt;}
.ye4{bottom:805.354267pt;}
.y87{bottom:809.688667pt;}
.y23{bottom:813.004267pt;}
.y96{bottom:816.787467pt;}
.ye3{bottom:817.354267pt;}
.y61{bottom:819.149600pt;}
.y22{bottom:827.004267pt;}
.y86{bottom:828.291333pt;}
.y95{bottom:828.787467pt;}
.ye2{bottom:829.354267pt;}
.y60{bottom:835.149600pt;}
.y94{bottom:840.787467pt;}
.y21{bottom:841.004267pt;}
.ye1{bottom:841.354267pt;}
.y85{bottom:846.894000pt;}
.y5f{bottom:851.149600pt;}
.y93{bottom:852.787467pt;}
.ye0{bottom:853.354267pt;}
.y20{bottom:855.004267pt;}
.y92{bottom:864.787467pt;}
.ydf{bottom:865.354267pt;}
.y84{bottom:865.496667pt;}
.y5e{bottom:867.149600pt;}
.y1f{bottom:869.004267pt;}
.y91{bottom:876.787467pt;}
.yde{bottom:877.354267pt;}
.y1e{bottom:883.004267pt;}
.y5d{bottom:883.149600pt;}
.y83{bottom:884.099333pt;}
.y90{bottom:888.787467pt;}
.ydd{bottom:889.354267pt;}
.y1d{bottom:897.004267pt;}
.y5c{bottom:899.149600pt;}
.y8f{bottom:900.787467pt;}
.ydc{bottom:901.354267pt;}
.y82{bottom:902.168667pt;}
.y1c{bottom:912.233600pt;}
.y8e{bottom:912.787467pt;}
.ydb{bottom:913.354267pt;}
.y5b{bottom:913.816267pt;}
.y5a{bottom:915.149600pt;}
.y81{bottom:918.712667pt;}
.y8d{bottom:924.787467pt;}
.yda{bottom:925.354267pt;}
.y1b{bottom:929.566933pt;}
.y59{bottom:931.149600pt;}
.y80{bottom:936.291333pt;}
.y8c{bottom:936.787467pt;}
.yd9{bottom:937.354267pt;}
.y58{bottom:947.149600pt;}
.y8b{bottom:948.787467pt;}
.yd8{bottom:949.354267pt;}
.y7f{bottom:953.870000pt;}
.y1a{bottom:960.128533pt;}
.y8a{bottom:960.787467pt;}
.yd7{bottom:961.354267pt;}
.y57{bottom:963.149600pt;}
.y7d{bottom:965.870000pt;}
.y89{bottom:972.787467pt;}
.yd6{bottom:973.354267pt;}
.y7e{bottom:977.870000pt;}
.y56{bottom:979.149600pt;}
.yd5{bottom:985.354267pt;}
.y19{bottom:994.354267pt;}
.y55{bottom:995.149600pt;}
.yd4{bottom:997.354267pt;}
.y2{bottom:1048.707733pt;}
.y7c{bottom:1048.709867pt;}
.yf{bottom:1048.725067pt;}
.ye{bottom:1067.669067pt;}
.y1{bottom:1097.401600pt;}
.h13{height:23.712000pt;}
.ha{height:26.346667pt;}
.h3{height:30.762667pt;}
.he{height:30.874667pt;}
.h10{height:31.820800pt;}
.hc{height:32.469333pt;}
.h5{height:34.080000pt;}
.h4{height:35.242667pt;}
.hd{height:35.285333pt;}
.h2{height:37.866667pt;}
.h6{height:39.696000pt;}
.hb{height:40.586667pt;}
.h7{height:42.298667pt;}
.h12{height:44.106667pt;}
.h9{height:48.517333pt;}
.h11{height:55.052083pt;}
.hf{height:59.264000pt;}
.h8{height:72.500000pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.062667pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.xc{left:-11.338533pt;}
.x0{left:0.000000pt;}
.xd{left:23.232933pt;}
.x10{left:68.031467pt;}
.xf{left:76.010533pt;}
.x24{left:79.370000pt;}
.x3{left:83.148400pt;}
.x5{left:92.743733pt;}
.x4{left:94.488133pt;}
.x6{left:97.707067pt;}
.x21{left:107.145333pt;}
.x7{left:255.662267pt;}
.x8{left:260.625600pt;}
.x9{left:345.826800pt;}
.xb{left:349.773067pt;}
.x11{left:353.845600pt;}
.xa{left:360.944933pt;}
.x18{left:380.765333pt;}
.x12{left:389.291333pt;}
.x15{left:393.237467pt;}
.x13{left:404.409467pt;}
.x23{left:413.288533pt;}
.x19{left:419.529467pt;}
.x22{left:428.406667pt;}
.xe{left:503.040667pt;}
.x16{left:506.453467pt;}
.x1b{left:519.157600pt;}
.x1a{left:524.320267pt;}
.x1c{left:540.746933pt;}
.x2{left:613.228400pt;}
.x1d{left:621.194933pt;}
.x17{left:625.947200pt;}
.x1f{left:629.482933pt;}
.x1e{left:633.418933pt;}
.x14{left:686.919600pt;}
.x20{left:728.508933pt;}
.x1{left:735.908800pt;}
}




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