
    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_8635160355367a400c5bdaf9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_e4683fecb2b7636ab12913b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_a8f921a182443e8c1f968242.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_528df6e177e4f1c8bb1fdcc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_528df6e177e4f1c8bb1fdcc0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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;}
.m9{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);}
.md8{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);}
.mf6{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247585,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.ma7{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);}
.m96{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247732,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.m188{transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248008,0.000000,0.000000,0.250000,0,0);}
.m148{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);}
.m14{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);}
.mf8{transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.m154{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);}
.m18{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.mc9{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);}
.m10{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m7c{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,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);}
.m50{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);}
.mdb{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248572,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.m6d{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248813,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248874,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m67{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248933,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m15c{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);}
.m65{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249085,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m79{transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.mdf{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.mbb{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);}
.md1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m123{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);}
.m4d{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m9d{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);}
.m9c{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.m183{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.m8a{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.mdd{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);}
.me7{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m2e{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249738,0.000000,0.000000,0.250000,0,0);}
.m7e{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);}
.m121{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);}
.m10c{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m184{transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m161{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,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);}
.ma1{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m4a{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m16c{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.mc2{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250213,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.md5{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);}
.m16a{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);}
.m70{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.m14d{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.mb{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m8c{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);}
.m144{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.mb2{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);}
.m180{transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.ma3{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m13c{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);}
.m88{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);}
.m17b{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);}
.m84{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m177{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);}
.m120{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m78{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);}
.m2a{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251323,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.m178{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m102{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);}
.m6f{transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251748,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m151{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);}
.m182{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);}
.m162{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);}
.m163{transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.md6{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);}
.m23{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252313,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m173{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.ls20{letter-spacing:-1.200000px;}
.ls40{letter-spacing:-1.026000px;}
.ls38{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.780000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls43{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.210000px;}
.ls3b{letter-spacing:-0.192000px;}
.ls16{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.162000px;}
.ls2d{letter-spacing:-0.139920px;}
.ls9{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.111936px;}
.ls41{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.104940px;}
.ls1f{letter-spacing:-0.096000px;}
.ls24{letter-spacing:-0.069960px;}
.ls6{letter-spacing:-0.060000px;}
.ls1e{letter-spacing:-0.055968px;}
.ls42{letter-spacing:-0.054000px;}
.ls2c{letter-spacing:-0.048000px;}
.ls27{letter-spacing:-0.034980px;}
.ls2b{letter-spacing:-0.027984px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.011678px;}
.ls35{letter-spacing:0.024000px;}
.ls32{letter-spacing:0.027984px;}
.ls36{letter-spacing:0.030000px;}
.ls25{letter-spacing:0.034980px;}
.ls1c{letter-spacing:0.048000px;}
.ls3d{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.062121px;}
.ls1d{letter-spacing:0.069960px;}
.ls3{letter-spacing:0.090000px;}
.ls39{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.104940px;}
.ls3c{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.139920px;}
.ls31{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.150000px;}
.ls3f{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.174900px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.279208px;}
.ls2{letter-spacing:0.300000px;}
.ls3e{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.390000px;}
.ls33{letter-spacing:0.391776px;}
.ls29{letter-spacing:0.420000px;}
.ls30{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.672000px;}
.ls2e{letter-spacing:2.546195px;}
.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;}
}
.ws33{word-spacing:-12.600000px;}
.ws29{word-spacing:-12.300000px;}
.ws37{word-spacing:-12.240000px;}
.ws27{word-spacing:-12.180000px;}
.ws31{word-spacing:-12.120000px;}
.ws3c{word-spacing:-12.060000px;}
.ws1a{word-spacing:-12.000000px;}
.ws28{word-spacing:-11.940000px;}
.ws1c{word-spacing:-11.880000px;}
.ws1b{word-spacing:-11.820000px;}
.ws3b{word-spacing:-11.760000px;}
.ws55{word-spacing:-11.100000px;}
.ws50{word-spacing:-10.800000px;}
.ws5f{word-spacing:-10.692000px;}
.ws61{word-spacing:-10.638000px;}
.ws60{word-spacing:-10.584000px;}
.ws5e{word-spacing:-9.774000px;}
.ws58{word-spacing:-9.696000px;}
.ws0{word-spacing:-9.600000px;}
.ws59{word-spacing:-9.552000px;}
.ws22{word-spacing:-8.400000px;}
.ws2a{word-spacing:-7.170900px;}
.ws4e{word-spacing:-7.135920px;}
.ws2c{word-spacing:-7.100940px;}
.ws21{word-spacing:-7.065960px;}
.ws34{word-spacing:-7.030980px;}
.wsc{word-spacing:-6.996000px;}
.ws32{word-spacing:-6.961020px;}
.ws51{word-spacing:-6.926040px;}
.ws53{word-spacing:-6.891060px;}
.wsd{word-spacing:-5.596800px;}
.ws57{word-spacing:-5.568816px;}
.ws71{word-spacing:-2.214000px;}
.ws56{word-spacing:-1.860000px;}
.ws12{word-spacing:-1.800000px;}
.ws30{word-spacing:-1.680000px;}
.ws6d{word-spacing:-1.674000px;}
.ws45{word-spacing:-1.632000px;}
.ws65{word-spacing:-1.620000px;}
.ws5d{word-spacing:-1.488000px;}
.ws1f{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.296000px;}
.ws43{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.672000px;}
.ws4f{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.540000px;}
.ws4c{word-spacing:-0.528000px;}
.ws36{word-spacing:-0.420000px;}
.ws49{word-spacing:-0.391776px;}
.ws3{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.324000px;}
.ws5{word-spacing:-0.300000px;}
.ws2{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.210000px;}
.ws17{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.144000px;}
.ws39{word-spacing:-0.139920px;}
.ws7{word-spacing:-0.120000px;}
.ws63{word-spacing:-0.108000px;}
.ws46{word-spacing:-0.104940px;}
.ws5a{word-spacing:-0.096000px;}
.ws2f{word-spacing:-0.069960px;}
.ws19{word-spacing:-0.060000px;}
.ws67{word-spacing:-0.054000px;}
.ws26{word-spacing:-0.048000px;}
.ws2e{word-spacing:-0.034980px;}
.ws48{word-spacing:-0.027984px;}
.ws1{word-spacing:0.000000px;}
.ws40{word-spacing:0.027984px;}
.ws3a{word-spacing:0.034980px;}
.ws41{word-spacing:0.048000px;}
.ws6f{word-spacing:0.054000px;}
.ws23{word-spacing:0.055968px;}
.ws6{word-spacing:0.060000px;}
.ws2d{word-spacing:0.069960px;}
.ws24{word-spacing:0.096000px;}
.ws1e{word-spacing:0.104940px;}
.ws6c{word-spacing:0.108000px;}
.ws5b{word-spacing:0.111936px;}
.ws8{word-spacing:0.120000px;}
.wsa{word-spacing:0.126000px;}
.ws44{word-spacing:0.139920px;}
.ws72{word-spacing:0.162000px;}
.ws18{word-spacing:0.180000px;}
.ws5c{word-spacing:0.192000px;}
.ws9{word-spacing:0.210000px;}
.ws1d{word-spacing:0.240000px;}
.wsf{word-spacing:0.360000px;}
.ws52{word-spacing:0.384000px;}
.ws70{word-spacing:0.432000px;}
.ws13{word-spacing:0.480000px;}
.ws10{word-spacing:0.540000px;}
.wse{word-spacing:0.600000px;}
.ws11{word-spacing:0.660000px;}
.ws16{word-spacing:0.720000px;}
.ws14{word-spacing:0.780000px;}
.ws54{word-spacing:0.816000px;}
.ws15{word-spacing:0.840000px;}
.ws3f{word-spacing:1.020000px;}
.ws42{word-spacing:1.296000px;}
.ws62{word-spacing:1.350000px;}
.ws68{word-spacing:1.512000px;}
.ws66{word-spacing:1.620000px;}
.ws6b{word-spacing:1.782000px;}
.ws38{word-spacing:1.800000px;}
.ws3e{word-spacing:1.920000px;}
.ws73{word-spacing:1.944000px;}
.ws4{word-spacing:1.980000px;}
.ws64{word-spacing:2.160000px;}
.ws47{word-spacing:2.340000px;}
.ws2b{word-spacing:2.400000px;}
.ws3d{word-spacing:2.460000px;}
.ws6a{word-spacing:3.078000px;}
.ws4b{word-spacing:6.720000px;}
._b{margin-left:-12.000000px;}
._9{margin-left:-7.088400px;}
._6{margin-left:-5.614800px;}
._2{margin-left:-4.357800px;}
._7{margin-left:-3.073925px;}
._0{margin-left:-1.894200px;}
._4{width:1.036200px;}
._1{width:2.418000px;}
._3{width:3.519327px;}
._5{width:4.679347px;}
._8{width:6.144653px;}
._a{width:7.480693px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:50.226900px;}
.y26{bottom:54.502500px;}
.y23{bottom:86.740200px;}
.y133{bottom:86.740350px;}
.yd2{bottom:87.048750px;}
.y4b{bottom:90.736200px;}
.yc8{bottom:90.736350px;}
.y22{bottom:99.490200px;}
.ya0{bottom:101.740200px;}
.y159{bottom:101.740350px;}
.y102{bottom:101.740500px;}
.y4a{bottom:105.736200px;}
.y132{bottom:105.736350px;}
.yc7{bottom:105.736500px;}
.yd1{bottom:107.298750px;}
.y21{bottom:112.240200px;}
.y9f{bottom:116.740200px;}
.y158{bottom:116.740350px;}
.y101{bottom:116.740500px;}
.yd9{bottom:116.740650px;}
.y77{bottom:120.736200px;}
.y131{bottom:120.736500px;}
.yc6{bottom:120.736650px;}
.y20{bottom:124.990200px;}
.yd0{bottom:127.548750px;}
.y9e{bottom:131.740200px;}
.y157{bottom:131.740350px;}
.y100{bottom:131.740500px;}
.yd8{bottom:131.740650px;}
.y76{bottom:135.736200px;}
.yff{bottom:135.736500px;}
.yd7{bottom:135.736650px;}
.yc5{bottom:135.736800px;}
.y49{bottom:138.217950px;}
.y12b{bottom:139.975050px;}
.y1f{bottom:141.992100px;}
.y9d{bottom:146.740200px;}
.y10c{bottom:146.740500px;}
.yfe{bottom:146.740800px;}
.y12f{bottom:146.740950px;}
.y7c{bottom:147.798750px;}
.y75{bottom:150.736200px;}
.y156{bottom:150.736350px;}
.y10b{bottom:150.736500px;}
.y130{bottom:150.736800px;}
.y152{bottom:150.736950px;}
.yca{bottom:151.040850px;}
.ycd{bottom:154.282950px;}
.y183{bottom:154.289550px;}
.y150{bottom:155.632950px;}
.y1e{bottom:156.992100px;}
.y48{bottom:158.467950px;}
.y12a{bottom:160.225050px;}
.y9c{bottom:161.740200px;}
.y10a{bottom:161.740650px;}
.yfd{bottom:161.740800px;}
.y74{bottom:165.736200px;}
.y155{bottom:165.736500px;}
.yfc{bottom:165.736800px;}
.y12e{bottom:165.736950px;}
.y7b{bottom:168.048750px;}
.y182{bottom:170.789550px;}
.yc9{bottom:171.290850px;}
.ycc{bottom:174.532950px;}
.y14f{bottom:175.882950px;}
.y9b{bottom:176.740200px;}
.y109{bottom:176.740650px;}
.y47{bottom:178.672950px;}
.y129{bottom:180.475050px;}
.y73{bottom:180.736200px;}
.y108{bottom:180.736650px;}
.y181{bottom:187.289550px;}
.y7a{bottom:188.298750px;}
.yb7{bottom:191.540850px;}
.y9a{bottom:191.740200px;}
.ycb{bottom:194.782950px;}
.y72{bottom:195.736200px;}
.y107{bottom:195.736650px;}
.y154{bottom:195.736800px;}
.y14e{bottom:196.132950px;}
.y46{bottom:198.877950px;}
.y1d{bottom:200.508150px;}
.yfb{bottom:200.639550px;}
.y128{bottom:200.725050px;}
.y180{bottom:203.789550px;}
.y99{bottom:206.740200px;}
.y79{bottom:208.548750px;}
.y71{bottom:210.736200px;}
.y106{bottom:210.736950px;}
.yb6{bottom:211.790850px;}
.yc4{bottom:215.032950px;}
.y14d{bottom:216.382950px;}
.y45{bottom:219.082950px;}
.y17f{bottom:220.289550px;}
.y1c{bottom:220.758150px;}
.yfa{bottom:220.889550px;}
.y127{bottom:220.975050px;}
.y98{bottom:221.740200px;}
.y105{bottom:225.736950px;}
.y12d{bottom:225.884550px;}
.y78{bottom:228.798750px;}
.yb5{bottom:232.040850px;}
.yc3{bottom:235.282950px;}
.y14c{bottom:236.632950px;}
.y97{bottom:236.740200px;}
.y17e{bottom:236.789550px;}
.y44{bottom:239.287950px;}
.yf9{bottom:241.139550px;}
.y70{bottom:249.048750px;}
.y96{bottom:251.740200px;}
.yb4{bottom:252.290850px;}
.y17d{bottom:253.289550px;}
.ycf{bottom:254.043750px;}
.yc2{bottom:255.532950px;}
.y14b{bottom:256.882950px;}
.y126{bottom:258.232950px;}
.y43{bottom:259.492950px;}
.yf8{bottom:261.389550px;}
.y1b{bottom:262.268100px;}
.y95{bottom:266.740200px;}
.y6f{bottom:269.298750px;}
.y17c{bottom:269.789550px;}
.yb3{bottom:272.540850px;}
.yc1{bottom:275.782950px;}
.y14a{bottom:277.132950px;}
.y125{bottom:278.482950px;}
.y42{bottom:279.697950px;}
.yf7{bottom:281.639550px;}
.y94{bottom:281.740200px;}
.y1a{bottom:282.518100px;}
.y17b{bottom:286.289550px;}
.y6d{bottom:289.548750px;}
.yb2{bottom:292.790850px;}
.y6e{bottom:294.543750px;}
.yc0{bottom:296.032950px;}
.y93{bottom:296.740200px;}
.y149{bottom:297.382950px;}
.y124{bottom:298.732950px;}
.y41{bottom:299.902950px;}
.yf6{bottom:301.889550px;}
.y19{bottom:302.768100px;}
.y17a{bottom:302.789550px;}
.y6c{bottom:309.798750px;}
.y92{bottom:311.740200px;}
.yb1{bottom:313.040850px;}
.y91{bottom:315.736200px;}
.ybf{bottom:316.282950px;}
.y148{bottom:317.632950px;}
.y123{bottom:318.982950px;}
.y179{bottom:319.289550px;}
.yf5{bottom:322.139550px;}
.y18{bottom:323.018100px;}
.y40{bottom:328.611900px;}
.y6b{bottom:330.048750px;}
.y90{bottom:330.736200px;}
.yb0{bottom:333.290850px;}
.yba{bottom:335.043750px;}
.y178{bottom:335.789550px;}
.ybe{bottom:336.532950px;}
.y147{bottom:337.882950px;}
.y122{bottom:339.232950px;}
.yf4{bottom:342.389550px;}
.y17{bottom:343.268100px;}
.y3f{bottom:347.466900px;}
.y6a{bottom:350.298750px;}
.y177{bottom:352.289550px;}
.yaf{bottom:353.540850px;}
.yce{bottom:355.293750px;}
.ybd{bottom:356.782950px;}
.y146{bottom:358.132950px;}
.y121{bottom:359.482950px;}
.yf3{bottom:362.639550px;}
.y16{bottom:363.518100px;}
.y176{bottom:368.789550px;}
.y69{bottom:370.548750px;}
.yae{bottom:373.790850px;}
.y10d{bottom:375.543750px;}
.ybc{bottom:377.032950px;}
.y145{bottom:378.382950px;}
.y120{bottom:379.732950px;}
.y8f{bottom:380.275050px;}
.yf2{bottom:382.889550px;}
.y15{bottom:383.768100px;}
.y175{bottom:385.289550px;}
.y68{bottom:390.798750px;}
.y3e{bottom:391.833750px;}
.yad{bottom:394.040850px;}
.y151{bottom:395.793750px;}
.yd6{bottom:397.282950px;}
.y144{bottom:398.632950px;}
.y11f{bottom:399.982950px;}
.y8e{bottom:400.525050px;}
.y174{bottom:401.789550px;}
.yf1{bottom:403.139550px;}
.y14{bottom:404.018100px;}
.y67{bottom:411.048750px;}
.y3d{bottom:412.038750px;}
.yac{bottom:414.290850px;}
.yd4{bottom:417.532950px;}
.y173{bottom:418.289550px;}
.y143{bottom:418.882950px;}
.y11e{bottom:420.232950px;}
.y8d{bottom:420.775050px;}
.yd5{bottom:422.527950px;}
.yf0{bottom:423.389550px;}
.y13{bottom:424.268100px;}
.y66{bottom:431.298750px;}
.y3c{bottom:432.243750px;}
.yab{bottom:434.540850px;}
.y172{bottom:434.789550px;}
.yd3{bottom:437.782950px;}
.y142{bottom:439.132950px;}
.y11c{bottom:440.482950px;}
.yef{bottom:443.639550px;}
.y12{bottom:444.518100px;}
.y11d{bottom:445.477950px;}
.y171{bottom:451.289550px;}
.y64{bottom:451.548750px;}
.y3b{bottom:452.448750px;}
.yaa{bottom:454.790850px;}
.y65{bottom:456.543750px;}
.y8c{bottom:458.032950px;}
.y141{bottom:459.382950px;}
.y11b{bottom:460.732950px;}
.yee{bottom:463.889550px;}
.y11{bottom:464.768100px;}
.y170{bottom:467.789550px;}
.y63{bottom:471.798750px;}
.y3a{bottom:472.653750px;}
.ya9{bottom:475.040850px;}
.y8b{bottom:478.282950px;}
.y140{bottom:479.632950px;}
.y11a{bottom:480.982950px;}
.yed{bottom:484.139550px;}
.y16f{bottom:484.289550px;}
.y10{bottom:485.018100px;}
.y62{bottom:492.048750px;}
.y39{bottom:492.858600px;}
.ya8{bottom:495.290850px;}
.y8a{bottom:498.532950px;}
.y13f{bottom:499.882950px;}
.y16e{bottom:500.789550px;}
.y119{bottom:501.232950px;}
.yec{bottom:504.389550px;}
.yf{bottom:505.268100px;}
.y61{bottom:512.298750px;}
.y38{bottom:513.063750px;}
.ya7{bottom:515.540850px;}
.y16d{bottom:517.289550px;}
.y89{bottom:518.782950px;}
.y13e{bottom:520.132950px;}
.y118{bottom:521.482950px;}
.yeb{bottom:524.639550px;}
.ye{bottom:525.518100px;}
.y60{bottom:532.548750px;}
.y37{bottom:533.268750px;}
.y16c{bottom:533.789550px;}
.ya6{bottom:535.790850px;}
.y88{bottom:539.032950px;}
.y13d{bottom:540.382950px;}
.y117{bottom:541.732950px;}
.yea{bottom:544.889550px;}
.yd{bottom:545.768100px;}
.y16b{bottom:550.289550px;}
.y5f{bottom:552.798750px;}
.y36{bottom:553.473750px;}
.ya5{bottom:556.040850px;}
.y87{bottom:559.282950px;}
.y13c{bottom:560.632950px;}
.y116{bottom:561.982950px;}
.ye9{bottom:565.139550px;}
.yc{bottom:566.018100px;}
.y16a{bottom:566.789550px;}
.y5e{bottom:573.048750px;}
.y35{bottom:573.678750px;}
.ya4{bottom:576.290850px;}
.y104{bottom:578.043750px;}
.y86{bottom:579.532950px;}
.y13b{bottom:580.882950px;}
.y115{bottom:582.232950px;}
.y169{bottom:583.289550px;}
.ye8{bottom:585.389550px;}
.yb{bottom:586.268100px;}
.y5d{bottom:593.298750px;}
.y34{bottom:593.883750px;}
.ya3{bottom:596.540850px;}
.ybb{bottom:598.293750px;}
.y85{bottom:599.782950px;}
.y168{bottom:599.789550px;}
.y13a{bottom:601.132950px;}
.y114{bottom:602.482950px;}
.ye7{bottom:605.639550px;}
.ya{bottom:606.518100px;}
.y5c{bottom:613.548750px;}
.y33{bottom:614.088750px;}
.y167{bottom:616.289550px;}
.ya2{bottom:616.790850px;}
.yb9{bottom:618.543750px;}
.y84{bottom:620.032950px;}
.y139{bottom:621.382950px;}
.y113{bottom:622.732950px;}
.ye5{bottom:625.889550px;}
.y9{bottom:626.768100px;}
.ye6{bottom:630.884550px;}
.y166{bottom:632.789550px;}
.y5b{bottom:633.798750px;}
.y32{bottom:634.293750px;}
.ya1{bottom:637.040850px;}
.y134{bottom:640.282950px;}
.y138{bottom:641.632950px;}
.y112{bottom:642.982950px;}
.ye4{bottom:646.139550px;}
.y165{bottom:649.289550px;}
.y5a{bottom:654.048750px;}
.y31{bottom:654.498750px;}
.y83{bottom:657.290850px;}
.y12c{bottom:659.043750px;}
.y137{bottom:661.882950px;}
.y111{bottom:663.232950px;}
.y164{bottom:665.789550px;}
.ye3{bottom:666.389550px;}
.y153{bottom:670.386900px;}
.y59{bottom:674.298750px;}
.y30{bottom:674.703750px;}
.y82{bottom:677.540850px;}
.y163{bottom:682.289550px;}
.y110{bottom:683.482950px;}
.ye2{bottom:686.639550px;}
.y136{bottom:690.636900px;}
.y58{bottom:694.548750px;}
.y2f{bottom:694.908750px;}
.y81{bottom:697.790850px;}
.y162{bottom:698.789550px;}
.ye1{bottom:706.889550px;}
.y8{bottom:710.797650px;}
.y10f{bottom:712.236900px;}
.y56{bottom:714.798750px;}
.y2e{bottom:715.113750px;}
.y161{bottom:715.289550px;}
.y80{bottom:718.040850px;}
.y57{bottom:719.793750px;}
.ye0{bottom:727.139550px;}
.y10e{bottom:731.136900px;}
.y160{bottom:731.789550px;}
.y7{bottom:731.797650px;}
.y54{bottom:735.048750px;}
.y2d{bottom:735.318750px;}
.y7f{bottom:738.290850px;}
.y55{bottom:740.043750px;}
.ydf{bottom:747.389550px;}
.y15f{bottom:748.289550px;}
.y6{bottom:752.797650px;}
.y53{bottom:755.298750px;}
.y2c{bottom:755.523750px;}
.y7e{bottom:758.540850px;}
.y15e{bottom:764.789550px;}
.yde{bottom:767.639550px;}
.y5{bottom:773.797650px;}
.y52{bottom:775.548750px;}
.y2b{bottom:775.728750px;}
.y7d{bottom:778.790850px;}
.y103{bottom:780.543750px;}
.y15d{bottom:781.289550px;}
.ydd{bottom:787.889550px;}
.y51{bottom:795.798750px;}
.y2a{bottom:795.933750px;}
.y15c{bottom:797.789550px;}
.yb8{bottom:800.793750px;}
.y4{bottom:807.553500px;}
.ydc{bottom:808.139550px;}
.y15b{bottom:814.289550px;}
.y50{bottom:816.048750px;}
.y29{bottom:816.138750px;}
.y15a{bottom:830.789550px;}
.y4f{bottom:836.298750px;}
.y28{bottom:836.343750px;}
.ydb{bottom:836.893500px;}
.yda{bottom:855.793500px;}
.y27{bottom:856.548750px;}
.y135{bottom:861.543750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y1{bottom:893.253600px;}
.y25{bottom:898.288950px;}
.y4d{bottom:898.290300px;}
.y24{bottom:898.309800px;}
.y4c{bottom:898.311150px;}
.hb{height:19.756704px;}
.hd{height:24.660900px;}
.hc{height:24.695880px;}
.h2{height:29.610000px;}
.h3{height:29.652000px;}
.h10{height:33.840000px;}
.h8{height:33.888000px;}
.hf{height:34.032000px;}
.h11{height:35.712720px;}
.h14{height:38.070000px;}
.h13{height:38.124000px;}
.h12{height:38.286000px;}
.h4{height:42.300000px;}
.h6{height:42.360000px;}
.h7{height:42.540000px;}
.h9{height:44.478000px;}
.ha{height:44.640900px;}
.he{height:44.675880px;}
.h5{height:50.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x3{left:170.078700px;}
.xf{left:183.679950px;}
.x9{left:191.338500px;}
.x20{left:209.147550px;}
.xc{left:211.373100px;}
.x21{left:217.647600px;}
.xd{left:219.658050px;}
.x35{left:232.441350px;}
.x36{left:240.963600px;}
.xa{left:243.004650px;}
.x18{left:244.193550px;}
.xb{left:247.217400px;}
.x19{left:252.562650px;}
.x14{left:257.264400px;}
.x15{left:265.641900px;}
.x1c{left:275.470050px;}
.x1d{left:283.947300px;}
.x26{left:289.743300px;}
.x5{left:294.557100px;}
.x6{left:298.706100px;}
.x24{left:325.583850px;}
.x25{left:334.066500px;}
.x2f{left:348.832200px;}
.x2b{left:350.658300px;}
.x30{left:357.276150px;}
.x2c{left:359.101200px;}
.x16{left:372.056400px;}
.x2{left:378.864600px;}
.x17{left:380.598600px;}
.x22{left:398.891700px;}
.x23{left:407.419500px;}
.x29{left:409.221300px;}
.x31{left:413.961750px;}
.x2a{left:417.492750px;}
.x32{left:422.408250px;}
.x2d{left:423.412650px;}
.x33{left:427.576500px;}
.x2e{left:431.953500px;}
.x34{left:435.880350px;}
.x1{left:441.664650px;}
.x1e{left:449.865300px;}
.x1f{left:458.342550px;}
.x1a{left:470.745450px;}
.x1b{left:479.056500px;}
.x27{left:513.780750px;}
.x28{left:522.208200px;}
.x7{left:526.367850px;}
.x8{left:530.565000px;}
.x10{left:537.338700px;}
.x11{left:545.671350px;}
.x12{left:565.598250px;}
.xe{left:569.938950px;}
.x13{left:574.015800px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.ls20{letter-spacing:-1.066667pt;}
.ls40{letter-spacing:-0.912000pt;}
.ls38{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls43{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.186667pt;}
.ls3b{letter-spacing:-0.170667pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.144000pt;}
.ls2d{letter-spacing:-0.124373pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.099499pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.093280pt;}
.ls1f{letter-spacing:-0.085333pt;}
.ls24{letter-spacing:-0.062187pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls1e{letter-spacing:-0.049749pt;}
.ls42{letter-spacing:-0.048000pt;}
.ls2c{letter-spacing:-0.042667pt;}
.ls27{letter-spacing:-0.031093pt;}
.ls2b{letter-spacing:-0.024875pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010381pt;}
.ls35{letter-spacing:0.021333pt;}
.ls32{letter-spacing:0.024875pt;}
.ls36{letter-spacing:0.026667pt;}
.ls25{letter-spacing:0.031093pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls3d{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.055219pt;}
.ls1d{letter-spacing:0.062187pt;}
.ls3{letter-spacing:0.080000pt;}
.ls39{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.093280pt;}
.ls3c{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.124373pt;}
.ls31{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133333pt;}
.ls3f{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.155467pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.248185pt;}
.ls2{letter-spacing:0.266667pt;}
.ls3e{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.346667pt;}
.ls33{letter-spacing:0.348245pt;}
.ls29{letter-spacing:0.373333pt;}
.ls30{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.597333pt;}
.ls2e{letter-spacing:2.263284pt;}
.ws33{word-spacing:-11.200000pt;}
.ws29{word-spacing:-10.933333pt;}
.ws37{word-spacing:-10.880000pt;}
.ws27{word-spacing:-10.826667pt;}
.ws31{word-spacing:-10.773333pt;}
.ws3c{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.666667pt;}
.ws28{word-spacing:-10.613333pt;}
.ws1c{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-10.506667pt;}
.ws3b{word-spacing:-10.453333pt;}
.ws55{word-spacing:-9.866667pt;}
.ws50{word-spacing:-9.600000pt;}
.ws5f{word-spacing:-9.504000pt;}
.ws61{word-spacing:-9.456000pt;}
.ws60{word-spacing:-9.408000pt;}
.ws5e{word-spacing:-8.688000pt;}
.ws58{word-spacing:-8.618667pt;}
.ws0{word-spacing:-8.533333pt;}
.ws59{word-spacing:-8.490667pt;}
.ws22{word-spacing:-7.466667pt;}
.ws2a{word-spacing:-6.374133pt;}
.ws4e{word-spacing:-6.343040pt;}
.ws2c{word-spacing:-6.311947pt;}
.ws21{word-spacing:-6.280853pt;}
.ws34{word-spacing:-6.249760pt;}
.wsc{word-spacing:-6.218667pt;}
.ws32{word-spacing:-6.187573pt;}
.ws51{word-spacing:-6.156480pt;}
.ws53{word-spacing:-6.125387pt;}
.wsd{word-spacing:-4.974933pt;}
.ws57{word-spacing:-4.950059pt;}
.ws71{word-spacing:-1.968000pt;}
.ws56{word-spacing:-1.653333pt;}
.ws12{word-spacing:-1.600000pt;}
.ws30{word-spacing:-1.493333pt;}
.ws6d{word-spacing:-1.488000pt;}
.ws45{word-spacing:-1.450667pt;}
.ws65{word-spacing:-1.440000pt;}
.ws5d{word-spacing:-1.322667pt;}
.ws1f{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.152000pt;}
.ws43{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.597333pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.480000pt;}
.ws4c{word-spacing:-0.469333pt;}
.ws36{word-spacing:-0.373333pt;}
.ws49{word-spacing:-0.348245pt;}
.ws3{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.288000pt;}
.ws5{word-spacing:-0.266667pt;}
.ws2{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.186667pt;}
.ws17{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.128000pt;}
.ws39{word-spacing:-0.124373pt;}
.ws7{word-spacing:-0.106667pt;}
.ws63{word-spacing:-0.096000pt;}
.ws46{word-spacing:-0.093280pt;}
.ws5a{word-spacing:-0.085333pt;}
.ws2f{word-spacing:-0.062187pt;}
.ws19{word-spacing:-0.053333pt;}
.ws67{word-spacing:-0.048000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws2e{word-spacing:-0.031093pt;}
.ws48{word-spacing:-0.024875pt;}
.ws1{word-spacing:0.000000pt;}
.ws40{word-spacing:0.024875pt;}
.ws3a{word-spacing:0.031093pt;}
.ws41{word-spacing:0.042667pt;}
.ws6f{word-spacing:0.048000pt;}
.ws23{word-spacing:0.049749pt;}
.ws6{word-spacing:0.053333pt;}
.ws2d{word-spacing:0.062187pt;}
.ws24{word-spacing:0.085333pt;}
.ws1e{word-spacing:0.093280pt;}
.ws6c{word-spacing:0.096000pt;}
.ws5b{word-spacing:0.099499pt;}
.ws8{word-spacing:0.106667pt;}
.wsa{word-spacing:0.112000pt;}
.ws44{word-spacing:0.124373pt;}
.ws72{word-spacing:0.144000pt;}
.ws18{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.170667pt;}
.ws9{word-spacing:0.186667pt;}
.ws1d{word-spacing:0.213333pt;}
.wsf{word-spacing:0.320000pt;}
.ws52{word-spacing:0.341333pt;}
.ws70{word-spacing:0.384000pt;}
.ws13{word-spacing:0.426667pt;}
.ws10{word-spacing:0.480000pt;}
.wse{word-spacing:0.533333pt;}
.ws11{word-spacing:0.586667pt;}
.ws16{word-spacing:0.640000pt;}
.ws14{word-spacing:0.693333pt;}
.ws54{word-spacing:0.725333pt;}
.ws15{word-spacing:0.746667pt;}
.ws3f{word-spacing:0.906667pt;}
.ws42{word-spacing:1.152000pt;}
.ws62{word-spacing:1.200000pt;}
.ws68{word-spacing:1.344000pt;}
.ws66{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.584000pt;}
.ws38{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.706667pt;}
.ws73{word-spacing:1.728000pt;}
.ws4{word-spacing:1.760000pt;}
.ws64{word-spacing:1.920000pt;}
.ws47{word-spacing:2.080000pt;}
.ws2b{word-spacing:2.133333pt;}
.ws3d{word-spacing:2.186667pt;}
.ws6a{word-spacing:2.736000pt;}
.ws4b{word-spacing:5.973333pt;}
._b{margin-left:-10.666667pt;}
._9{margin-left:-6.300800pt;}
._6{margin-left:-4.990933pt;}
._2{margin-left:-3.873600pt;}
._7{margin-left:-2.732378pt;}
._0{margin-left:-1.683733pt;}
._4{width:0.921067pt;}
._1{width:2.149333pt;}
._3{width:3.128290pt;}
._5{width:4.159419pt;}
._8{width:5.461914pt;}
._a{width:6.649505pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:44.646133pt;}
.y26{bottom:48.446667pt;}
.y23{bottom:77.102400pt;}
.y133{bottom:77.102533pt;}
.yd2{bottom:77.376667pt;}
.y4b{bottom:80.654400pt;}
.yc8{bottom:80.654533pt;}
.y22{bottom:88.435733pt;}
.ya0{bottom:90.435733pt;}
.y159{bottom:90.435867pt;}
.y102{bottom:90.436000pt;}
.y4a{bottom:93.987733pt;}
.y132{bottom:93.987867pt;}
.yc7{bottom:93.988000pt;}
.yd1{bottom:95.376667pt;}
.y21{bottom:99.769067pt;}
.y9f{bottom:103.769067pt;}
.y158{bottom:103.769200pt;}
.y101{bottom:103.769333pt;}
.yd9{bottom:103.769467pt;}
.y77{bottom:107.321067pt;}
.y131{bottom:107.321333pt;}
.yc6{bottom:107.321467pt;}
.y20{bottom:111.102400pt;}
.yd0{bottom:113.376667pt;}
.y9e{bottom:117.102400pt;}
.y157{bottom:117.102533pt;}
.y100{bottom:117.102667pt;}
.yd8{bottom:117.102800pt;}
.y76{bottom:120.654400pt;}
.yff{bottom:120.654667pt;}
.yd7{bottom:120.654800pt;}
.yc5{bottom:120.654933pt;}
.y49{bottom:122.860400pt;}
.y12b{bottom:124.422267pt;}
.y1f{bottom:126.215200pt;}
.y9d{bottom:130.435733pt;}
.y10c{bottom:130.436000pt;}
.yfe{bottom:130.436267pt;}
.y12f{bottom:130.436400pt;}
.y7c{bottom:131.376667pt;}
.y75{bottom:133.987733pt;}
.y156{bottom:133.987867pt;}
.y10b{bottom:133.988000pt;}
.y130{bottom:133.988267pt;}
.y152{bottom:133.988400pt;}
.yca{bottom:134.258533pt;}
.ycd{bottom:137.140400pt;}
.y183{bottom:137.146267pt;}
.y150{bottom:138.340400pt;}
.y1e{bottom:139.548533pt;}
.y48{bottom:140.860400pt;}
.y12a{bottom:142.422267pt;}
.y9c{bottom:143.769067pt;}
.y10a{bottom:143.769467pt;}
.yfd{bottom:143.769600pt;}
.y74{bottom:147.321067pt;}
.y155{bottom:147.321333pt;}
.yfc{bottom:147.321600pt;}
.y12e{bottom:147.321733pt;}
.y7b{bottom:149.376667pt;}
.y182{bottom:151.812933pt;}
.yc9{bottom:152.258533pt;}
.ycc{bottom:155.140400pt;}
.y14f{bottom:156.340400pt;}
.y9b{bottom:157.102400pt;}
.y109{bottom:157.102800pt;}
.y47{bottom:158.820400pt;}
.y129{bottom:160.422267pt;}
.y73{bottom:160.654400pt;}
.y108{bottom:160.654800pt;}
.y181{bottom:166.479600pt;}
.y7a{bottom:167.376667pt;}
.yb7{bottom:170.258533pt;}
.y9a{bottom:170.435733pt;}
.ycb{bottom:173.140400pt;}
.y72{bottom:173.987733pt;}
.y107{bottom:173.988133pt;}
.y154{bottom:173.988267pt;}
.y14e{bottom:174.340400pt;}
.y46{bottom:176.780400pt;}
.y1d{bottom:178.229467pt;}
.yfb{bottom:178.346267pt;}
.y128{bottom:178.422267pt;}
.y180{bottom:181.146267pt;}
.y99{bottom:183.769067pt;}
.y79{bottom:185.376667pt;}
.y71{bottom:187.321067pt;}
.y106{bottom:187.321733pt;}
.yb6{bottom:188.258533pt;}
.yc4{bottom:191.140400pt;}
.y14d{bottom:192.340400pt;}
.y45{bottom:194.740400pt;}
.y17f{bottom:195.812933pt;}
.y1c{bottom:196.229467pt;}
.yfa{bottom:196.346267pt;}
.y127{bottom:196.422267pt;}
.y98{bottom:197.102400pt;}
.y105{bottom:200.655067pt;}
.y12d{bottom:200.786267pt;}
.y78{bottom:203.376667pt;}
.yb5{bottom:206.258533pt;}
.yc3{bottom:209.140400pt;}
.y14c{bottom:210.340400pt;}
.y97{bottom:210.435733pt;}
.y17e{bottom:210.479600pt;}
.y44{bottom:212.700400pt;}
.yf9{bottom:214.346267pt;}
.y70{bottom:221.376667pt;}
.y96{bottom:223.769067pt;}
.yb4{bottom:224.258533pt;}
.y17d{bottom:225.146267pt;}
.ycf{bottom:225.816667pt;}
.yc2{bottom:227.140400pt;}
.y14b{bottom:228.340400pt;}
.y126{bottom:229.540400pt;}
.y43{bottom:230.660400pt;}
.yf8{bottom:232.346267pt;}
.y1b{bottom:233.127200pt;}
.y95{bottom:237.102400pt;}
.y6f{bottom:239.376667pt;}
.y17c{bottom:239.812933pt;}
.yb3{bottom:242.258533pt;}
.yc1{bottom:245.140400pt;}
.y14a{bottom:246.340400pt;}
.y125{bottom:247.540400pt;}
.y42{bottom:248.620400pt;}
.yf7{bottom:250.346267pt;}
.y94{bottom:250.435733pt;}
.y1a{bottom:251.127200pt;}
.y17b{bottom:254.479600pt;}
.y6d{bottom:257.376667pt;}
.yb2{bottom:260.258533pt;}
.y6e{bottom:261.816667pt;}
.yc0{bottom:263.140400pt;}
.y93{bottom:263.769067pt;}
.y149{bottom:264.340400pt;}
.y124{bottom:265.540400pt;}
.y41{bottom:266.580400pt;}
.yf6{bottom:268.346267pt;}
.y19{bottom:269.127200pt;}
.y17a{bottom:269.146267pt;}
.y6c{bottom:275.376667pt;}
.y92{bottom:277.102400pt;}
.yb1{bottom:278.258533pt;}
.y91{bottom:280.654400pt;}
.ybf{bottom:281.140400pt;}
.y148{bottom:282.340400pt;}
.y123{bottom:283.540400pt;}
.y179{bottom:283.812933pt;}
.yf5{bottom:286.346267pt;}
.y18{bottom:287.127200pt;}
.y40{bottom:292.099467pt;}
.y6b{bottom:293.376667pt;}
.y90{bottom:293.987733pt;}
.yb0{bottom:296.258533pt;}
.yba{bottom:297.816667pt;}
.y178{bottom:298.479600pt;}
.ybe{bottom:299.140400pt;}
.y147{bottom:300.340400pt;}
.y122{bottom:301.540400pt;}
.yf4{bottom:304.346267pt;}
.y17{bottom:305.127200pt;}
.y3f{bottom:308.859467pt;}
.y6a{bottom:311.376667pt;}
.y177{bottom:313.146267pt;}
.yaf{bottom:314.258533pt;}
.yce{bottom:315.816667pt;}
.ybd{bottom:317.140400pt;}
.y146{bottom:318.340400pt;}
.y121{bottom:319.540400pt;}
.yf3{bottom:322.346267pt;}
.y16{bottom:323.127200pt;}
.y176{bottom:327.812933pt;}
.y69{bottom:329.376667pt;}
.yae{bottom:332.258533pt;}
.y10d{bottom:333.816667pt;}
.ybc{bottom:335.140400pt;}
.y145{bottom:336.340400pt;}
.y120{bottom:337.540400pt;}
.y8f{bottom:338.022267pt;}
.yf2{bottom:340.346267pt;}
.y15{bottom:341.127200pt;}
.y175{bottom:342.479600pt;}
.y68{bottom:347.376667pt;}
.y3e{bottom:348.296667pt;}
.yad{bottom:350.258533pt;}
.y151{bottom:351.816667pt;}
.yd6{bottom:353.140400pt;}
.y144{bottom:354.340400pt;}
.y11f{bottom:355.540400pt;}
.y8e{bottom:356.022267pt;}
.y174{bottom:357.146267pt;}
.yf1{bottom:358.346267pt;}
.y14{bottom:359.127200pt;}
.y67{bottom:365.376667pt;}
.y3d{bottom:366.256667pt;}
.yac{bottom:368.258533pt;}
.yd4{bottom:371.140400pt;}
.y173{bottom:371.812933pt;}
.y143{bottom:372.340400pt;}
.y11e{bottom:373.540400pt;}
.y8d{bottom:374.022267pt;}
.yd5{bottom:375.580400pt;}
.yf0{bottom:376.346267pt;}
.y13{bottom:377.127200pt;}
.y66{bottom:383.376667pt;}
.y3c{bottom:384.216667pt;}
.yab{bottom:386.258533pt;}
.y172{bottom:386.479600pt;}
.yd3{bottom:389.140400pt;}
.y142{bottom:390.340400pt;}
.y11c{bottom:391.540400pt;}
.yef{bottom:394.346267pt;}
.y12{bottom:395.127200pt;}
.y11d{bottom:395.980400pt;}
.y171{bottom:401.146267pt;}
.y64{bottom:401.376667pt;}
.y3b{bottom:402.176667pt;}
.yaa{bottom:404.258533pt;}
.y65{bottom:405.816667pt;}
.y8c{bottom:407.140400pt;}
.y141{bottom:408.340400pt;}
.y11b{bottom:409.540400pt;}
.yee{bottom:412.346267pt;}
.y11{bottom:413.127200pt;}
.y170{bottom:415.812933pt;}
.y63{bottom:419.376667pt;}
.y3a{bottom:420.136667pt;}
.ya9{bottom:422.258533pt;}
.y8b{bottom:425.140400pt;}
.y140{bottom:426.340400pt;}
.y11a{bottom:427.540400pt;}
.yed{bottom:430.346267pt;}
.y16f{bottom:430.479600pt;}
.y10{bottom:431.127200pt;}
.y62{bottom:437.376667pt;}
.y39{bottom:438.096533pt;}
.ya8{bottom:440.258533pt;}
.y8a{bottom:443.140400pt;}
.y13f{bottom:444.340400pt;}
.y16e{bottom:445.146267pt;}
.y119{bottom:445.540400pt;}
.yec{bottom:448.346267pt;}
.yf{bottom:449.127200pt;}
.y61{bottom:455.376667pt;}
.y38{bottom:456.056667pt;}
.ya7{bottom:458.258533pt;}
.y16d{bottom:459.812933pt;}
.y89{bottom:461.140400pt;}
.y13e{bottom:462.340400pt;}
.y118{bottom:463.540400pt;}
.yeb{bottom:466.346267pt;}
.ye{bottom:467.127200pt;}
.y60{bottom:473.376667pt;}
.y37{bottom:474.016667pt;}
.y16c{bottom:474.479600pt;}
.ya6{bottom:476.258533pt;}
.y88{bottom:479.140400pt;}
.y13d{bottom:480.340400pt;}
.y117{bottom:481.540400pt;}
.yea{bottom:484.346267pt;}
.yd{bottom:485.127200pt;}
.y16b{bottom:489.146267pt;}
.y5f{bottom:491.376667pt;}
.y36{bottom:491.976667pt;}
.ya5{bottom:494.258533pt;}
.y87{bottom:497.140400pt;}
.y13c{bottom:498.340400pt;}
.y116{bottom:499.540400pt;}
.ye9{bottom:502.346267pt;}
.yc{bottom:503.127200pt;}
.y16a{bottom:503.812933pt;}
.y5e{bottom:509.376667pt;}
.y35{bottom:509.936667pt;}
.ya4{bottom:512.258533pt;}
.y104{bottom:513.816667pt;}
.y86{bottom:515.140400pt;}
.y13b{bottom:516.340400pt;}
.y115{bottom:517.540400pt;}
.y169{bottom:518.479600pt;}
.ye8{bottom:520.346267pt;}
.yb{bottom:521.127200pt;}
.y5d{bottom:527.376667pt;}
.y34{bottom:527.896667pt;}
.ya3{bottom:530.258533pt;}
.ybb{bottom:531.816667pt;}
.y85{bottom:533.140400pt;}
.y168{bottom:533.146267pt;}
.y13a{bottom:534.340400pt;}
.y114{bottom:535.540400pt;}
.ye7{bottom:538.346267pt;}
.ya{bottom:539.127200pt;}
.y5c{bottom:545.376667pt;}
.y33{bottom:545.856667pt;}
.y167{bottom:547.812933pt;}
.ya2{bottom:548.258533pt;}
.yb9{bottom:549.816667pt;}
.y84{bottom:551.140400pt;}
.y139{bottom:552.340400pt;}
.y113{bottom:553.540400pt;}
.ye5{bottom:556.346267pt;}
.y9{bottom:557.127200pt;}
.ye6{bottom:560.786267pt;}
.y166{bottom:562.479600pt;}
.y5b{bottom:563.376667pt;}
.y32{bottom:563.816667pt;}
.ya1{bottom:566.258533pt;}
.y134{bottom:569.140400pt;}
.y138{bottom:570.340400pt;}
.y112{bottom:571.540400pt;}
.ye4{bottom:574.346267pt;}
.y165{bottom:577.146267pt;}
.y5a{bottom:581.376667pt;}
.y31{bottom:581.776667pt;}
.y83{bottom:584.258533pt;}
.y12c{bottom:585.816667pt;}
.y137{bottom:588.340400pt;}
.y111{bottom:589.540400pt;}
.y164{bottom:591.812933pt;}
.ye3{bottom:592.346267pt;}
.y153{bottom:595.899467pt;}
.y59{bottom:599.376667pt;}
.y30{bottom:599.736667pt;}
.y82{bottom:602.258533pt;}
.y163{bottom:606.479600pt;}
.y110{bottom:607.540400pt;}
.ye2{bottom:610.346267pt;}
.y136{bottom:613.899467pt;}
.y58{bottom:617.376667pt;}
.y2f{bottom:617.696667pt;}
.y81{bottom:620.258533pt;}
.y162{bottom:621.146267pt;}
.ye1{bottom:628.346267pt;}
.y8{bottom:631.820133pt;}
.y10f{bottom:633.099467pt;}
.y56{bottom:635.376667pt;}
.y2e{bottom:635.656667pt;}
.y161{bottom:635.812933pt;}
.y80{bottom:638.258533pt;}
.y57{bottom:639.816667pt;}
.ye0{bottom:646.346267pt;}
.y10e{bottom:649.899467pt;}
.y160{bottom:650.479600pt;}
.y7{bottom:650.486800pt;}
.y54{bottom:653.376667pt;}
.y2d{bottom:653.616667pt;}
.y7f{bottom:656.258533pt;}
.y55{bottom:657.816667pt;}
.ydf{bottom:664.346267pt;}
.y15f{bottom:665.146267pt;}
.y6{bottom:669.153467pt;}
.y53{bottom:671.376667pt;}
.y2c{bottom:671.576667pt;}
.y7e{bottom:674.258533pt;}
.y15e{bottom:679.812933pt;}
.yde{bottom:682.346267pt;}
.y5{bottom:687.820133pt;}
.y52{bottom:689.376667pt;}
.y2b{bottom:689.536667pt;}
.y7d{bottom:692.258533pt;}
.y103{bottom:693.816667pt;}
.y15d{bottom:694.479600pt;}
.ydd{bottom:700.346267pt;}
.y51{bottom:707.376667pt;}
.y2a{bottom:707.496667pt;}
.y15c{bottom:709.146267pt;}
.yb8{bottom:711.816667pt;}
.y4{bottom:717.825333pt;}
.ydc{bottom:718.346267pt;}
.y15b{bottom:723.812933pt;}
.y50{bottom:725.376667pt;}
.y29{bottom:725.456667pt;}
.y15a{bottom:738.479600pt;}
.y4f{bottom:743.376667pt;}
.y28{bottom:743.416667pt;}
.ydb{bottom:743.905333pt;}
.yda{bottom:760.705333pt;}
.y27{bottom:761.376667pt;}
.y135{bottom:765.816667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y1{bottom:794.003200pt;}
.y25{bottom:798.479067pt;}
.y4d{bottom:798.480267pt;}
.y24{bottom:798.497600pt;}
.y4c{bottom:798.498800pt;}
.hb{height:17.561515pt;}
.hd{height:21.920800pt;}
.hc{height:21.951893pt;}
.h2{height:26.320000pt;}
.h3{height:26.357333pt;}
.h10{height:30.080000pt;}
.h8{height:30.122667pt;}
.hf{height:30.250667pt;}
.h11{height:31.744640pt;}
.h14{height:33.840000pt;}
.h13{height:33.888000pt;}
.h12{height:34.032000pt;}
.h4{height:37.600000pt;}
.h6{height:37.653333pt;}
.h7{height:37.813333pt;}
.h9{height:39.536000pt;}
.ha{height:39.680800pt;}
.he{height:39.711893pt;}
.h5{height:45.184000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x3{left:151.181067pt;}
.xf{left:163.271067pt;}
.x9{left:170.078667pt;}
.x20{left:185.908933pt;}
.xc{left:187.887200pt;}
.x21{left:193.464533pt;}
.xd{left:195.251600pt;}
.x35{left:206.614533pt;}
.x36{left:214.189867pt;}
.xa{left:216.004133pt;}
.x18{left:217.060933pt;}
.xb{left:219.748800pt;}
.x19{left:224.500133pt;}
.x14{left:228.679467pt;}
.x15{left:236.126133pt;}
.x1c{left:244.862267pt;}
.x1d{left:252.397600pt;}
.x26{left:257.549600pt;}
.x5{left:261.828533pt;}
.x6{left:265.516533pt;}
.x24{left:289.407867pt;}
.x25{left:296.948000pt;}
.x2f{left:310.073067pt;}
.x2b{left:311.696267pt;}
.x30{left:317.578800pt;}
.x2c{left:319.201067pt;}
.x16{left:330.716800pt;}
.x2{left:336.768533pt;}
.x17{left:338.309867pt;}
.x22{left:354.570400pt;}
.x23{left:362.150667pt;}
.x29{left:363.752267pt;}
.x31{left:367.966000pt;}
.x2a{left:371.104667pt;}
.x32{left:375.474000pt;}
.x2d{left:376.366800pt;}
.x33{left:380.068000pt;}
.x2e{left:383.958667pt;}
.x34{left:387.449200pt;}
.x1{left:392.590800pt;}
.x1e{left:399.880267pt;}
.x1f{left:407.415600pt;}
.x1a{left:418.440400pt;}
.x1b{left:425.828000pt;}
.x27{left:456.694000pt;}
.x28{left:464.185067pt;}
.x7{left:467.882533pt;}
.x8{left:471.613333pt;}
.x10{left:477.634400pt;}
.x11{left:485.041200pt;}
.x12{left:502.754000pt;}
.xe{left:506.612400pt;}
.x13{left:510.236267pt;}
}




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