
    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_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_6cfeec2a7a63bb0979b8e06c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.888000;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_129fa36798e31a3edb042ebd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_ac07da9a072a1db940a8e59b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_6afe4c9eade7107d6aa2cffa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_038916bb017733914076550e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d61850b55e84fd54163bbc75.woff')format("woff");}.ff7{font-family:ff7;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5c406c966478e9d56e1aa7dd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7f51da50bb6d341f10b348a0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f7cb6e3a0f00d6d1539a8553.woff')format("woff");}.ffb{font-family:ffb;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b6ae12ceae2e5e53caa344bb.woff')format("woff");}.ffc{font-family:ffc;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0dbe8c8c5a43768144bebc7d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7f51da50bb6d341f10b348a0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1e1d2feac4e27c372e1755b0.woff')format("woff");}.fff{font-family:fff;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6d14d4653384c5e413a7c5ac.woff')format("woff");}.ff10{font-family:ff10;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7f51da50bb6d341f10b348a0.woff')format("woff");}.ff11{font-family:ff11;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ff12{font-family:ff12;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7f51da50bb6d341f10b348a0.woff')format("woff");}.ff13{font-family:ff13;line-height:1.098000;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:ff14;src:url('chunks/assets/font_1e1d2feac4e27c372e1755b0.woff')format("woff");}.ff14{font-family:ff14;line-height:1.062000;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:ff15;src:url('chunks/assets/font_607e5a6354bc2d711bab9fd7.woff')format("woff");}.ff15{font-family:ff15;line-height:0.899000;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;}
.m66{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166667,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245263,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245380,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245540,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245695,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245827,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246388,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246520,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246778,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246993,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247013,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247457,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m8b{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m6c{transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.mbd{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);}
.mb{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.ma6{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);}
.mc7{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m25{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);}
.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);}
.m7d{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m84{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.md0{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);}
.m9c{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m72{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.mbe{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);}
.maa{transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m23{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m88{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);}
.mce{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.md5{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);}
.mb1{transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251862,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251932,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.mca{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);}
.mcb{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);}
.m9a{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m85{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);}
.m86{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252707,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253012,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253080,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253337,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254043,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254132,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254138,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254178,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254308,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254563,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254857,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254873,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-1.212000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.272000px;}
.ls44{letter-spacing:-5.100000px;}
.ls3f{letter-spacing:-3.000000px;}
.ls39{letter-spacing:-2.700000px;}
.ls49{letter-spacing:-2.052000px;}
.ls4a{letter-spacing:-1.824000px;}
.ls48{letter-spacing:-1.710000px;}
.ls1e{letter-spacing:-1.680000px;}
.ls43{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.336974px;}
.ls3d{letter-spacing:-1.200000px;}
.ls46{letter-spacing:-1.140000px;}
.ls1b{letter-spacing:-1.134000px;}
.ls3c{letter-spacing:-1.080000px;}
.ls41{letter-spacing:-1.020000px;}
.ls3b{letter-spacing:-0.960000px;}
.ls42{letter-spacing:-0.900000px;}
.ls3e{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.048000px;}
.ls1f{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.240000px;}
.ls54{letter-spacing:0.336000px;}
.ls50{letter-spacing:0.384000px;}
.ls56{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.ls51{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls55{letter-spacing:0.624000px;}
.ls21{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.684000px;}
.ls4b{letter-spacing:0.690000px;}
.ls11{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.780000px;}
.ls47{letter-spacing:0.792000px;}
.ls52{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.840000px;}
.ls19{letter-spacing:0.870000px;}
.lsd{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.960000px;}
.ls4d{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.020000px;}
.ls4c{letter-spacing:1.050000px;}
.ls2{letter-spacing:1.080000px;}
.ls4f{letter-spacing:1.110000px;}
.lse{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.198800px;}
.ls12{letter-spacing:1.200000px;}
.ls24{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.320000px;}
.ls37{letter-spacing:1.380000px;}
.lsc{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.500000px;}
.ls25{letter-spacing:1.560000px;}
.ls14{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.740000px;}
.ls7{letter-spacing:1.800000px;}
.ls2a{letter-spacing:1.860000px;}
.ls30{letter-spacing:1.920000px;}
.ls38{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.010000px;}
.ls32{letter-spacing:2.040000px;}
.ls31{letter-spacing:2.100000px;}
.ls13{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.220000px;}
.ls8{letter-spacing:2.250000px;}
.ls26{letter-spacing:2.280000px;}
.ls34{letter-spacing:2.340000px;}
.ls1c{letter-spacing:2.400000px;}
.ls35{letter-spacing:2.460000px;}
.ls2d{letter-spacing:2.520000px;}
.ls2c{letter-spacing:2.580000px;}
.ls27{letter-spacing:2.640000px;}
.ls28{letter-spacing:2.760000px;}
.ls29{letter-spacing:2.820000px;}
.ls5{letter-spacing:2.941344px;}
.ls33{letter-spacing:3.240000px;}
.ls2e{letter-spacing:3.300000px;}
.ls6{letter-spacing:3.330000px;}
.ls2f{letter-spacing:3.840000px;}
.ls2b{letter-spacing:4.380000px;}
.ls4e{letter-spacing:12.072600px;}
.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;}
}
.ws0{word-spacing:-24.000000px;}
.wsc{word-spacing:-18.720000px;}
.ws3{word-spacing:-14.580000px;}
.ws30{word-spacing:-13.920000px;}
.ws32{word-spacing:-13.860000px;}
.ws31{word-spacing:-13.560000px;}
.ws2e{word-spacing:-12.960000px;}
.ws2f{word-spacing:-12.480000px;}
.ws71{word-spacing:-12.432000px;}
.wsb{word-spacing:-12.366000px;}
.ws7f{word-spacing:-4.140000px;}
.ws5{word-spacing:-2.941344px;}
.ws29{word-spacing:-2.400000px;}
.ws38{word-spacing:-2.340000px;}
.wse{word-spacing:-2.280000px;}
.ws18{word-spacing:-2.220000px;}
.ws6d{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.ws67{word-spacing:-1.980000px;}
.ws74{word-spacing:-1.968000px;}
.ws61{word-spacing:-1.920000px;}
.ws78{word-spacing:-1.872000px;}
.ws73{word-spacing:-1.824000px;}
.ws7{word-spacing:-1.800000px;}
.ws5c{word-spacing:-1.680000px;}
.ws1b{word-spacing:-1.620000px;}
.ws1d{word-spacing:-1.560000px;}
.ws66{word-spacing:-1.440000px;}
.ws5e{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.260000px;}
.ws2c{word-spacing:-1.200000px;}
.ws21{word-spacing:-1.140000px;}
.ws6{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.020000px;}
.ws1{word-spacing:-1.008000px;}
.ws6e{word-spacing:-0.900000px;}
.ws72{word-spacing:-0.840000px;}
.ws57{word-spacing:-0.792000px;}
.ws51{word-spacing:-0.756000px;}
.ws60{word-spacing:-0.720000px;}
.ws55{word-spacing:-0.684000px;}
.ws2b{word-spacing:-0.600000px;}
.ws2{word-spacing:-0.528000px;}
.ws19{word-spacing:-0.480000px;}
.ws27{word-spacing:-0.420000px;}
.ws4f{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.300000px;}
.ws4d{word-spacing:-0.240000px;}
.ws34{word-spacing:-0.180000px;}
.ws4e{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws4c{word-spacing:0.060000px;}
.ws11{word-spacing:0.180000px;}
.ws56{word-spacing:0.240000px;}
.ws83{word-spacing:0.300000px;}
.ws7b{word-spacing:0.360000px;}
.ws45{word-spacing:0.420000px;}
.ws49{word-spacing:0.480000px;}
.ws8{word-spacing:0.540000px;}
.ws58{word-spacing:0.570000px;}
.ws15{word-spacing:0.600000px;}
.ws36{word-spacing:0.660000px;}
.ws59{word-spacing:0.684000px;}
.ws6f{word-spacing:0.720000px;}
.ws1e{word-spacing:0.780000px;}
.ws25{word-spacing:0.840000px;}
.ws14{word-spacing:0.900000px;}
.ws5a{word-spacing:0.912000px;}
.ws1a{word-spacing:0.960000px;}
.ws52{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws48{word-spacing:1.140000px;}
.ws4b{word-spacing:1.320000px;}
.wsd{word-spacing:1.336974px;}
.ws63{word-spacing:1.440000px;}
.ws64{word-spacing:1.500000px;}
.ws39{word-spacing:1.680000px;}
.ws24{word-spacing:1.740000px;}
.ws50{word-spacing:1.800000px;}
.ws6a{word-spacing:1.920000px;}
.ws20{word-spacing:1.980000px;}
.ws82{word-spacing:2.100000px;}
.ws23{word-spacing:2.220000px;}
.ws77{word-spacing:2.256000px;}
.ws44{word-spacing:2.280000px;}
.ws5f{word-spacing:2.340000px;}
.ws79{word-spacing:2.592000px;}
.ws65{word-spacing:2.640000px;}
.ws33{word-spacing:2.700000px;}
.ws76{word-spacing:2.928000px;}
.ws75{word-spacing:2.976000px;}
.ws62{word-spacing:3.000000px;}
.ws35{word-spacing:3.120000px;}
.ws69{word-spacing:3.180000px;}
.ws16{word-spacing:3.240000px;}
.ws10{word-spacing:3.300000px;}
.ws22{word-spacing:3.360000px;}
.ws2a{word-spacing:3.420000px;}
.ws5d{word-spacing:3.480000px;}
.ws43{word-spacing:3.540000px;}
.ws26{word-spacing:3.600000px;}
.wsf{word-spacing:3.660000px;}
.ws13{word-spacing:3.720000px;}
.ws1f{word-spacing:3.780000px;}
.ws54{word-spacing:3.900000px;}
.ws46{word-spacing:3.960000px;}
.ws80{word-spacing:4.080000px;}
.ws70{word-spacing:4.320000px;}
.ws47{word-spacing:4.620000px;}
.ws3f{word-spacing:4.680000px;}
.ws81{word-spacing:4.920000px;}
.ws37{word-spacing:5.040000px;}
.ws12{word-spacing:5.400000px;}
.ws7c{word-spacing:5.760000px;}
.ws6c{word-spacing:6.060000px;}
.ws1c{word-spacing:6.180000px;}
.ws4a{word-spacing:6.360000px;}
.ws3a{word-spacing:6.720000px;}
.ws6b{word-spacing:7.440000px;}
.ws3b{word-spacing:8.940000px;}
.ws42{word-spacing:9.060000px;}
.ws40{word-spacing:9.420000px;}
.ws3c{word-spacing:9.720000px;}
.ws3d{word-spacing:10.080000px;}
.ws7d{word-spacing:11.040000px;}
.wsa{word-spacing:11.183400px;}
.ws7e{word-spacing:12.540000px;}
.ws41{word-spacing:12.900000px;}
.ws3e{word-spacing:16.080000px;}
.ws2d{word-spacing:606.992400px;}
.ws9{word-spacing:2788.051200px;}
.ws5b{word-spacing:2792.011200px;}
._7{margin-left:-11.550780px;}
._6{margin-left:-8.771829px;}
._2{margin-left:-7.590800px;}
._9{margin-left:-5.557620px;}
._8{margin-left:-4.354380px;}
._4{margin-left:-3.031717px;}
._1{margin-left:-1.645020px;}
._0{width:1.531800px;}
._3{width:2.941344px;}
._a{width:4.126200px;}
._b{width:5.549400px;}
._5{width:6.678815px;}
.fc3{color:rgb(179,31,47);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(116,114,115);}
.fc4{color:rgb(101,98,99);}
.fc0{color:rgb(79,76,77);}
.fsc{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.600000px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fsa{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.fsd{font-size:114.000000px;}
.fs9{font-size:133.697400px;}
.fs3{font-size:147.067200px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:65.529450px;}
.y5e{bottom:66.330750px;}
.yf{bottom:66.344250px;}
.y1f{bottom:66.380250px;}
.y2f{bottom:66.434250px;}
.yb1{bottom:79.029450px;}
.y5d{bottom:84.330750px;}
.ye{bottom:84.339750px;}
.y1e{bottom:84.375750px;}
.y2e{bottom:84.429750px;}
.yb0{bottom:92.529450px;}
.y5c{bottom:102.330750px;}
.yd{bottom:102.335250px;}
.y1d{bottom:102.371250px;}
.y2d{bottom:102.425250px;}
.yaf{bottom:112.407450px;}
.yc{bottom:120.330750px;}
.y1c{bottom:120.366750px;}
.y2c{bottom:120.420750px;}
.yae{bottom:125.907450px;}
.y5b{bottom:138.330750px;}
.y2b{bottom:138.416250px;}
.yad{bottom:139.407450px;}
.y78{bottom:142.798200px;}
.yac{bottom:152.907450px;}
.y5a{bottom:156.330750px;}
.y1b{bottom:156.371250px;}
.y2a{bottom:156.411750px;}
.y77{bottom:160.798200px;}
.yab{bottom:172.785300px;}
.y59{bottom:174.330750px;}
.y1a{bottom:174.366750px;}
.y29{bottom:174.407250px;}
.y76{bottom:178.798200px;}
.yaa{bottom:186.285300px;}
.y58{bottom:192.330750px;}
.y19{bottom:192.362250px;}
.y75{bottom:196.798200px;}
.ya9{bottom:199.785300px;}
.y57{bottom:210.330750px;}
.y18{bottom:210.357750px;}
.y28{bottom:210.411750px;}
.y74{bottom:214.798200px;}
.ya8{bottom:219.663300px;}
.y56{bottom:228.330750px;}
.y17{bottom:228.353250px;}
.y27{bottom:228.407250px;}
.y73{bottom:232.798200px;}
.ya7{bottom:233.163300px;}
.y55{bottom:246.330750px;}
.y16{bottom:246.348750px;}
.y72{bottom:250.798200px;}
.ya6{bottom:253.035150px;}
.y54{bottom:264.330750px;}
.y15{bottom:264.344250px;}
.y26{bottom:264.411750px;}
.ya5{bottom:266.535150px;}
.y71{bottom:268.798200px;}
.y9a{bottom:273.330750px;}
.y53{bottom:282.330750px;}
.y14{bottom:282.339750px;}
.y25{bottom:282.407250px;}
.ya4{bottom:286.419150px;}
.y70{bottom:286.798200px;}
.y99{bottom:295.830750px;}
.ya3{bottom:299.919150px;}
.y52{bottom:300.330750px;}
.y24{bottom:300.402750px;}
.y6f{bottom:304.798200px;}
.ya2{bottom:313.419150px;}
.y51{bottom:318.330750px;}
.y13{bottom:318.344250px;}
.y23{bottom:318.398250px;}
.y6e{bottom:322.798200px;}
.ya1{bottom:333.291150px;}
.y50{bottom:336.330750px;}
.y12{bottom:336.339750px;}
.y22{bottom:336.393750px;}
.y6d{bottom:340.798200px;}
.ya0{bottom:346.791150px;}
.y4f{bottom:354.330750px;}
.y11{bottom:354.335250px;}
.y21{bottom:354.389250px;}
.y9f{bottom:366.675150px;}
.y79{bottom:367.894500px;}
.y10{bottom:372.330750px;}
.y20{bottom:372.384750px;}
.y9e{bottom:380.175150px;}
.y4e{bottom:390.330750px;}
.y9d{bottom:393.675150px;}
.y63{bottom:408.330750px;}
.y3{bottom:410.215350px;}
.y4d{bottom:421.830750px;}
.y62{bottom:426.330750px;}
.y4c{bottom:444.330750px;}
.y61{bottom:462.330750px;}
.yd7{bottom:462.330900px;}
.y60{bottom:480.330750px;}
.yd6{bottom:480.330900px;}
.y4b{bottom:498.330750px;}
.yd5{bottom:498.330900px;}
.y84{bottom:514.698900px;}
.y4a{bottom:516.330750px;}
.yd4{bottom:516.330900px;}
.y83{bottom:532.698900px;}
.y49{bottom:534.330750px;}
.yd3{bottom:534.330900px;}
.y82{bottom:550.698900px;}
.y48{bottom:552.330750px;}
.yd2{bottom:552.330900px;}
.y81{bottom:568.698900px;}
.y47{bottom:570.330750px;}
.yd1{bottom:570.330900px;}
.y80{bottom:586.698900px;}
.yb{bottom:588.330750px;}
.yd0{bottom:588.330900px;}
.y7f{bottom:604.698900px;}
.ya{bottom:606.330750px;}
.ycf{bottom:606.330900px;}
.y7e{bottom:622.698900px;}
.y46{bottom:624.330750px;}
.yce{bottom:624.330900px;}
.y7d{bottom:640.698900px;}
.y45{bottom:642.330750px;}
.ycd{bottom:642.330900px;}
.y7c{bottom:658.698900px;}
.y44{bottom:660.330750px;}
.yd8{bottom:660.330900px;}
.y5f{bottom:673.830750px;}
.y7b{bottom:676.698900px;}
.y43{bottom:678.330750px;}
.ycc{bottom:678.330900px;}
.y9{bottom:678.573150px;}
.y7a{bottom:694.698900px;}
.y42{bottom:696.330750px;}
.ycb{bottom:696.330900px;}
.y8{bottom:708.565650px;}
.y41{bottom:714.330750px;}
.yca{bottom:714.330900px;}
.y85{bottom:722.367000px;}
.y40{bottom:732.330750px;}
.yc9{bottom:732.330900px;}
.y7{bottom:738.558150px;}
.y3f{bottom:750.330750px;}
.yc8{bottom:750.330900px;}
.y3e{bottom:768.330750px;}
.yc7{bottom:768.330900px;}
.y6{bottom:768.550650px;}
.y3d{bottom:786.330750px;}
.yc6{bottom:786.330900px;}
.y3c{bottom:804.330750px;}
.yc5{bottom:804.330900px;}
.y3b{bottom:822.330750px;}
.yc4{bottom:822.330900px;}
.y3a{bottom:840.330750px;}
.yc3{bottom:840.330900px;}
.y39{bottom:858.330750px;}
.yc2{bottom:858.330900px;}
.y6b{bottom:867.570750px;}
.y5{bottom:867.924421px;}
.y98{bottom:876.330750px;}
.yc1{bottom:876.330900px;}
.y6a{bottom:885.570750px;}
.y97{bottom:894.330750px;}
.yc0{bottom:894.330900px;}
.y69{bottom:903.570750px;}
.y4{bottom:908.037000px;}
.y96{bottom:912.330750px;}
.ybf{bottom:912.330900px;}
.y68{bottom:921.570750px;}
.y95{bottom:930.330750px;}
.ybe{bottom:930.330900px;}
.y67{bottom:939.570750px;}
.y38{bottom:946.558800px;}
.y94{bottom:948.330750px;}
.ybd{bottom:948.330900px;}
.y66{bottom:957.570750px;}
.y93{bottom:966.330750px;}
.ybc{bottom:966.330900px;}
.y65{bottom:975.570750px;}
.y37{bottom:979.549800px;}
.y8a{bottom:981.269700px;}
.y92{bottom:984.330750px;}
.ybb{bottom:984.330900px;}
.y64{bottom:993.570750px;}
.y91{bottom:1002.330750px;}
.yba{bottom:1002.330900px;}
.y36{bottom:1009.558800px;}
.y89{bottom:1015.783200px;}
.y90{bottom:1020.330750px;}
.yb9{bottom:1020.330900px;}
.y6c{bottom:1020.883500px;}
.y2{bottom:1021.381500px;}
.y8f{bottom:1038.330750px;}
.yb8{bottom:1038.330900px;}
.y35{bottom:1039.567800px;}
.y88{bottom:1050.296700px;}
.y8e{bottom:1056.330750px;}
.yb7{bottom:1056.330900px;}
.y8d{bottom:1074.330750px;}
.yb6{bottom:1074.330900px;}
.y87{bottom:1084.810200px;}
.y34{bottom:1085.715015px;}
.y9c{bottom:1092.330750px;}
.yb5{bottom:1092.330900px;}
.y8c{bottom:1105.830750px;}
.y9b{bottom:1110.330750px;}
.yb4{bottom:1110.330900px;}
.y86{bottom:1119.323700px;}
.y33{bottom:1122.481800px;}
.y8b{bottom:1128.330750px;}
.yb3{bottom:1128.330900px;}
.y1{bottom:1199.642850px;}
.y30{bottom:1214.502000px;}
.y32{bottom:1214.517000px;}
.y31{bottom:1214.820000px;}
.h17{height:30.816000px;}
.ha{height:37.098000px;}
.h19{height:40.752000px;}
.h9{height:41.088000px;}
.h8{height:41.568000px;}
.hb{height:45.846000px;}
.he{height:46.386000px;}
.h14{height:47.034000px;}
.h15{height:50.328000px;}
.h12{height:50.940000px;}
.h16{height:51.360000px;}
.hf{height:51.540000px;}
.hc{height:51.960000px;}
.h3{height:57.209400px;}
.h7{height:61.830000px;}
.h6{height:62.100000px;}
.h13{height:62.352000px;}
.hd{height:69.579000px;}
.h11{height:71.904000px;}
.h18{height:78.090000px;}
.h4{height:82.464000px;}
.h5{height:101.035166px;}
.h10{height:116.450435px;}
.h2{height:185.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:51.456150px;}
.x1a{left:63.779550px;}
.x11{left:72.283500px;}
.x19{left:77.067000px;}
.x4{left:81.482250px;}
.xe{left:90.029250px;}
.x9{left:93.543300px;}
.xf{left:96.779250px;}
.xa{left:161.574750px;}
.x16{left:182.829750px;}
.x12{left:323.149350px;}
.x6{left:324.741150px;}
.x1b{left:403.936950px;}
.x2{left:422.029200px;}
.x17{left:485.121300px;}
.xb{left:514.488150px;}
.xc{left:535.747950px;}
.x13{left:565.929300px;}
.x5{left:597.933000px;}
.x15{left:614.061450px;}
.x10{left:619.724400px;}
.x14{left:620.794650px;}
.x1{left:680.784450px;}
.x1c{left:727.451850px;}
.x7{left:808.372050px;}
.x8{left:815.122050px;}
.xd{left:825.979500px;}
.x18{left:838.045350px;}
@media print{
.v2{vertical-align:-1.077333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.130667pt;}
.ls44{letter-spacing:-4.533333pt;}
.ls3f{letter-spacing:-2.666667pt;}
.ls39{letter-spacing:-2.400000pt;}
.ls49{letter-spacing:-1.824000pt;}
.ls4a{letter-spacing:-1.621333pt;}
.ls48{letter-spacing:-1.520000pt;}
.ls1e{letter-spacing:-1.493333pt;}
.ls43{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.188421pt;}
.ls3d{letter-spacing:-1.066667pt;}
.ls46{letter-spacing:-1.013333pt;}
.ls1b{letter-spacing:-1.008000pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls41{letter-spacing:-0.906667pt;}
.ls3b{letter-spacing:-0.853333pt;}
.ls42{letter-spacing:-0.800000pt;}
.ls3e{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.042667pt;}
.ls1f{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.213333pt;}
.ls54{letter-spacing:0.298667pt;}
.ls50{letter-spacing:0.341333pt;}
.ls56{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.ls51{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls55{letter-spacing:0.554667pt;}
.ls21{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.608000pt;}
.ls4b{letter-spacing:0.613333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls47{letter-spacing:0.704000pt;}
.ls52{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls19{letter-spacing:0.773333pt;}
.lsd{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls4d{letter-spacing:0.880000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls4c{letter-spacing:0.933333pt;}
.ls2{letter-spacing:0.960000pt;}
.ls4f{letter-spacing:0.986667pt;}
.lse{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.065600pt;}
.ls12{letter-spacing:1.066667pt;}
.ls24{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls37{letter-spacing:1.226667pt;}
.lsc{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.333333pt;}
.ls25{letter-spacing:1.386667pt;}
.ls14{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.546667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls2a{letter-spacing:1.653333pt;}
.ls30{letter-spacing:1.706667pt;}
.ls38{letter-spacing:1.760000pt;}
.ls23{letter-spacing:1.786667pt;}
.ls32{letter-spacing:1.813333pt;}
.ls31{letter-spacing:1.866667pt;}
.ls13{letter-spacing:1.920000pt;}
.ls36{letter-spacing:1.973333pt;}
.ls8{letter-spacing:2.000000pt;}
.ls26{letter-spacing:2.026667pt;}
.ls34{letter-spacing:2.080000pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls35{letter-spacing:2.186667pt;}
.ls2d{letter-spacing:2.240000pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls27{letter-spacing:2.346667pt;}
.ls28{letter-spacing:2.453333pt;}
.ls29{letter-spacing:2.506667pt;}
.ls5{letter-spacing:2.614528pt;}
.ls33{letter-spacing:2.880000pt;}
.ls2e{letter-spacing:2.933333pt;}
.ls6{letter-spacing:2.960000pt;}
.ls2f{letter-spacing:3.413333pt;}
.ls2b{letter-spacing:3.893333pt;}
.ls4e{letter-spacing:10.731200pt;}
.ws0{word-spacing:-21.333333pt;}
.wsc{word-spacing:-16.640000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws30{word-spacing:-12.373333pt;}
.ws32{word-spacing:-12.320000pt;}
.ws31{word-spacing:-12.053333pt;}
.ws2e{word-spacing:-11.520000pt;}
.ws2f{word-spacing:-11.093333pt;}
.ws71{word-spacing:-11.050667pt;}
.wsb{word-spacing:-10.992000pt;}
.ws7f{word-spacing:-3.680000pt;}
.ws5{word-spacing:-2.614528pt;}
.ws29{word-spacing:-2.133333pt;}
.ws38{word-spacing:-2.080000pt;}
.wse{word-spacing:-2.026667pt;}
.ws18{word-spacing:-1.973333pt;}
.ws6d{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.ws67{word-spacing:-1.760000pt;}
.ws74{word-spacing:-1.749333pt;}
.ws61{word-spacing:-1.706667pt;}
.ws78{word-spacing:-1.664000pt;}
.ws73{word-spacing:-1.621333pt;}
.ws7{word-spacing:-1.600000pt;}
.ws5c{word-spacing:-1.493333pt;}
.ws1b{word-spacing:-1.440000pt;}
.ws1d{word-spacing:-1.386667pt;}
.ws66{word-spacing:-1.280000pt;}
.ws5e{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.120000pt;}
.ws2c{word-spacing:-1.066667pt;}
.ws21{word-spacing:-1.013333pt;}
.ws6{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.906667pt;}
.ws1{word-spacing:-0.896000pt;}
.ws6e{word-spacing:-0.800000pt;}
.ws72{word-spacing:-0.746667pt;}
.ws57{word-spacing:-0.704000pt;}
.ws51{word-spacing:-0.672000pt;}
.ws60{word-spacing:-0.640000pt;}
.ws55{word-spacing:-0.608000pt;}
.ws2b{word-spacing:-0.533333pt;}
.ws2{word-spacing:-0.469333pt;}
.ws19{word-spacing:-0.426667pt;}
.ws27{word-spacing:-0.373333pt;}
.ws4f{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.266667pt;}
.ws4d{word-spacing:-0.213333pt;}
.ws34{word-spacing:-0.160000pt;}
.ws4e{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.053333pt;}
.ws11{word-spacing:0.160000pt;}
.ws56{word-spacing:0.213333pt;}
.ws83{word-spacing:0.266667pt;}
.ws7b{word-spacing:0.320000pt;}
.ws45{word-spacing:0.373333pt;}
.ws49{word-spacing:0.426667pt;}
.ws8{word-spacing:0.480000pt;}
.ws58{word-spacing:0.506667pt;}
.ws15{word-spacing:0.533333pt;}
.ws36{word-spacing:0.586667pt;}
.ws59{word-spacing:0.608000pt;}
.ws6f{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.693333pt;}
.ws25{word-spacing:0.746667pt;}
.ws14{word-spacing:0.800000pt;}
.ws5a{word-spacing:0.810667pt;}
.ws1a{word-spacing:0.853333pt;}
.ws52{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws48{word-spacing:1.013333pt;}
.ws4b{word-spacing:1.173333pt;}
.wsd{word-spacing:1.188421pt;}
.ws63{word-spacing:1.280000pt;}
.ws64{word-spacing:1.333333pt;}
.ws39{word-spacing:1.493333pt;}
.ws24{word-spacing:1.546667pt;}
.ws50{word-spacing:1.600000pt;}
.ws6a{word-spacing:1.706667pt;}
.ws20{word-spacing:1.760000pt;}
.ws82{word-spacing:1.866667pt;}
.ws23{word-spacing:1.973333pt;}
.ws77{word-spacing:2.005333pt;}
.ws44{word-spacing:2.026667pt;}
.ws5f{word-spacing:2.080000pt;}
.ws79{word-spacing:2.304000pt;}
.ws65{word-spacing:2.346667pt;}
.ws33{word-spacing:2.400000pt;}
.ws76{word-spacing:2.602667pt;}
.ws75{word-spacing:2.645333pt;}
.ws62{word-spacing:2.666667pt;}
.ws35{word-spacing:2.773333pt;}
.ws69{word-spacing:2.826667pt;}
.ws16{word-spacing:2.880000pt;}
.ws10{word-spacing:2.933333pt;}
.ws22{word-spacing:2.986667pt;}
.ws2a{word-spacing:3.040000pt;}
.ws5d{word-spacing:3.093333pt;}
.ws43{word-spacing:3.146667pt;}
.ws26{word-spacing:3.200000pt;}
.wsf{word-spacing:3.253333pt;}
.ws13{word-spacing:3.306667pt;}
.ws1f{word-spacing:3.360000pt;}
.ws54{word-spacing:3.466667pt;}
.ws46{word-spacing:3.520000pt;}
.ws80{word-spacing:3.626667pt;}
.ws70{word-spacing:3.840000pt;}
.ws47{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.160000pt;}
.ws81{word-spacing:4.373333pt;}
.ws37{word-spacing:4.480000pt;}
.ws12{word-spacing:4.800000pt;}
.ws7c{word-spacing:5.120000pt;}
.ws6c{word-spacing:5.386667pt;}
.ws1c{word-spacing:5.493333pt;}
.ws4a{word-spacing:5.653333pt;}
.ws3a{word-spacing:5.973333pt;}
.ws6b{word-spacing:6.613333pt;}
.ws3b{word-spacing:7.946667pt;}
.ws42{word-spacing:8.053333pt;}
.ws40{word-spacing:8.373333pt;}
.ws3c{word-spacing:8.640000pt;}
.ws3d{word-spacing:8.960000pt;}
.ws7d{word-spacing:9.813333pt;}
.wsa{word-spacing:9.940800pt;}
.ws7e{word-spacing:11.146667pt;}
.ws41{word-spacing:11.466667pt;}
.ws3e{word-spacing:14.293333pt;}
.ws2d{word-spacing:539.548800pt;}
.ws9{word-spacing:2478.267733pt;}
.ws5b{word-spacing:2481.787733pt;}
._7{margin-left:-10.267360pt;}
._6{margin-left:-7.797181pt;}
._2{margin-left:-6.747378pt;}
._9{margin-left:-4.940107pt;}
._8{margin-left:-3.870560pt;}
._4{margin-left:-2.694860pt;}
._1{margin-left:-1.462240pt;}
._0{width:1.361600pt;}
._3{width:2.614528pt;}
._a{width:3.667733pt;}
._b{width:4.932800pt;}
._5{width:5.936724pt;}
.fsc{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:59.200000pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fsa{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.fsd{font-size:101.333333pt;}
.fs9{font-size:118.842133pt;}
.fs3{font-size:130.726400pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:58.248400pt;}
.y5e{bottom:58.960667pt;}
.yf{bottom:58.972667pt;}
.y1f{bottom:59.004667pt;}
.y2f{bottom:59.052667pt;}
.yb1{bottom:70.248400pt;}
.y5d{bottom:74.960667pt;}
.ye{bottom:74.968667pt;}
.y1e{bottom:75.000667pt;}
.y2e{bottom:75.048667pt;}
.yb0{bottom:82.248400pt;}
.y5c{bottom:90.960667pt;}
.yd{bottom:90.964667pt;}
.y1d{bottom:90.996667pt;}
.y2d{bottom:91.044667pt;}
.yaf{bottom:99.917733pt;}
.yc{bottom:106.960667pt;}
.y1c{bottom:106.992667pt;}
.y2c{bottom:107.040667pt;}
.yae{bottom:111.917733pt;}
.y5b{bottom:122.960667pt;}
.y2b{bottom:123.036667pt;}
.yad{bottom:123.917733pt;}
.y78{bottom:126.931733pt;}
.yac{bottom:135.917733pt;}
.y5a{bottom:138.960667pt;}
.y1b{bottom:138.996667pt;}
.y2a{bottom:139.032667pt;}
.y77{bottom:142.931733pt;}
.yab{bottom:153.586933pt;}
.y59{bottom:154.960667pt;}
.y1a{bottom:154.992667pt;}
.y29{bottom:155.028667pt;}
.y76{bottom:158.931733pt;}
.yaa{bottom:165.586933pt;}
.y58{bottom:170.960667pt;}
.y19{bottom:170.988667pt;}
.y75{bottom:174.931733pt;}
.ya9{bottom:177.586933pt;}
.y57{bottom:186.960667pt;}
.y18{bottom:186.984667pt;}
.y28{bottom:187.032667pt;}
.y74{bottom:190.931733pt;}
.ya8{bottom:195.256267pt;}
.y56{bottom:202.960667pt;}
.y17{bottom:202.980667pt;}
.y27{bottom:203.028667pt;}
.y73{bottom:206.931733pt;}
.ya7{bottom:207.256267pt;}
.y55{bottom:218.960667pt;}
.y16{bottom:218.976667pt;}
.y72{bottom:222.931733pt;}
.ya6{bottom:224.920133pt;}
.y54{bottom:234.960667pt;}
.y15{bottom:234.972667pt;}
.y26{bottom:235.032667pt;}
.ya5{bottom:236.920133pt;}
.y71{bottom:238.931733pt;}
.y9a{bottom:242.960667pt;}
.y53{bottom:250.960667pt;}
.y14{bottom:250.968667pt;}
.y25{bottom:251.028667pt;}
.ya4{bottom:254.594800pt;}
.y70{bottom:254.931733pt;}
.y99{bottom:262.960667pt;}
.ya3{bottom:266.594800pt;}
.y52{bottom:266.960667pt;}
.y24{bottom:267.024667pt;}
.y6f{bottom:270.931733pt;}
.ya2{bottom:278.594800pt;}
.y51{bottom:282.960667pt;}
.y13{bottom:282.972667pt;}
.y23{bottom:283.020667pt;}
.y6e{bottom:286.931733pt;}
.ya1{bottom:296.258800pt;}
.y50{bottom:298.960667pt;}
.y12{bottom:298.968667pt;}
.y22{bottom:299.016667pt;}
.y6d{bottom:302.931733pt;}
.ya0{bottom:308.258800pt;}
.y4f{bottom:314.960667pt;}
.y11{bottom:314.964667pt;}
.y21{bottom:315.012667pt;}
.y9f{bottom:325.933467pt;}
.y79{bottom:327.017333pt;}
.y10{bottom:330.960667pt;}
.y20{bottom:331.008667pt;}
.y9e{bottom:337.933467pt;}
.y4e{bottom:346.960667pt;}
.y9d{bottom:349.933467pt;}
.y63{bottom:362.960667pt;}
.y3{bottom:364.635867pt;}
.y4d{bottom:374.960667pt;}
.y62{bottom:378.960667pt;}
.y4c{bottom:394.960667pt;}
.y61{bottom:410.960667pt;}
.yd7{bottom:410.960800pt;}
.y60{bottom:426.960667pt;}
.yd6{bottom:426.960800pt;}
.y4b{bottom:442.960667pt;}
.yd5{bottom:442.960800pt;}
.y84{bottom:457.510133pt;}
.y4a{bottom:458.960667pt;}
.yd4{bottom:458.960800pt;}
.y83{bottom:473.510133pt;}
.y49{bottom:474.960667pt;}
.yd3{bottom:474.960800pt;}
.y82{bottom:489.510133pt;}
.y48{bottom:490.960667pt;}
.yd2{bottom:490.960800pt;}
.y81{bottom:505.510133pt;}
.y47{bottom:506.960667pt;}
.yd1{bottom:506.960800pt;}
.y80{bottom:521.510133pt;}
.yb{bottom:522.960667pt;}
.yd0{bottom:522.960800pt;}
.y7f{bottom:537.510133pt;}
.ya{bottom:538.960667pt;}
.ycf{bottom:538.960800pt;}
.y7e{bottom:553.510133pt;}
.y46{bottom:554.960667pt;}
.yce{bottom:554.960800pt;}
.y7d{bottom:569.510133pt;}
.y45{bottom:570.960667pt;}
.ycd{bottom:570.960800pt;}
.y7c{bottom:585.510133pt;}
.y44{bottom:586.960667pt;}
.yd8{bottom:586.960800pt;}
.y5f{bottom:598.960667pt;}
.y7b{bottom:601.510133pt;}
.y43{bottom:602.960667pt;}
.ycc{bottom:602.960800pt;}
.y9{bottom:603.176133pt;}
.y7a{bottom:617.510133pt;}
.y42{bottom:618.960667pt;}
.ycb{bottom:618.960800pt;}
.y8{bottom:629.836133pt;}
.y41{bottom:634.960667pt;}
.yca{bottom:634.960800pt;}
.y85{bottom:642.104000pt;}
.y40{bottom:650.960667pt;}
.yc9{bottom:650.960800pt;}
.y7{bottom:656.496133pt;}
.y3f{bottom:666.960667pt;}
.yc8{bottom:666.960800pt;}
.y3e{bottom:682.960667pt;}
.yc7{bottom:682.960800pt;}
.y6{bottom:683.156133pt;}
.y3d{bottom:698.960667pt;}
.yc6{bottom:698.960800pt;}
.y3c{bottom:714.960667pt;}
.yc5{bottom:714.960800pt;}
.y3b{bottom:730.960667pt;}
.yc4{bottom:730.960800pt;}
.y3a{bottom:746.960667pt;}
.yc3{bottom:746.960800pt;}
.y39{bottom:762.960667pt;}
.yc2{bottom:762.960800pt;}
.y6b{bottom:771.174000pt;}
.y5{bottom:771.488374pt;}
.y98{bottom:778.960667pt;}
.yc1{bottom:778.960800pt;}
.y6a{bottom:787.174000pt;}
.y97{bottom:794.960667pt;}
.yc0{bottom:794.960800pt;}
.y69{bottom:803.174000pt;}
.y4{bottom:807.144000pt;}
.y96{bottom:810.960667pt;}
.ybf{bottom:810.960800pt;}
.y68{bottom:819.174000pt;}
.y95{bottom:826.960667pt;}
.ybe{bottom:826.960800pt;}
.y67{bottom:835.174000pt;}
.y38{bottom:841.385600pt;}
.y94{bottom:842.960667pt;}
.ybd{bottom:842.960800pt;}
.y66{bottom:851.174000pt;}
.y93{bottom:858.960667pt;}
.ybc{bottom:858.960800pt;}
.y65{bottom:867.174000pt;}
.y37{bottom:870.710933pt;}
.y8a{bottom:872.239733pt;}
.y92{bottom:874.960667pt;}
.ybb{bottom:874.960800pt;}
.y64{bottom:883.174000pt;}
.y91{bottom:890.960667pt;}
.yba{bottom:890.960800pt;}
.y36{bottom:897.385600pt;}
.y89{bottom:902.918400pt;}
.y90{bottom:906.960667pt;}
.yb9{bottom:906.960800pt;}
.y6c{bottom:907.452000pt;}
.y2{bottom:907.894667pt;}
.y8f{bottom:922.960667pt;}
.yb8{bottom:922.960800pt;}
.y35{bottom:924.060267pt;}
.y88{bottom:933.597067pt;}
.y8e{bottom:938.960667pt;}
.yb7{bottom:938.960800pt;}
.y8d{bottom:954.960667pt;}
.yb6{bottom:954.960800pt;}
.y87{bottom:964.275733pt;}
.y34{bottom:965.080013pt;}
.y9c{bottom:970.960667pt;}
.yb5{bottom:970.960800pt;}
.y8c{bottom:982.960667pt;}
.y9b{bottom:986.960667pt;}
.yb4{bottom:986.960800pt;}
.y86{bottom:994.954400pt;}
.y33{bottom:997.761600pt;}
.y8b{bottom:1002.960667pt;}
.yb3{bottom:1002.960800pt;}
.y1{bottom:1066.349200pt;}
.y30{bottom:1079.557333pt;}
.y32{bottom:1079.570667pt;}
.y31{bottom:1079.840000pt;}
.h17{height:27.392000pt;}
.ha{height:32.976000pt;}
.h19{height:36.224000pt;}
.h9{height:36.522667pt;}
.h8{height:36.949333pt;}
.hb{height:40.752000pt;}
.he{height:41.232000pt;}
.h14{height:41.808000pt;}
.h15{height:44.736000pt;}
.h12{height:45.280000pt;}
.h16{height:45.653333pt;}
.hf{height:45.813333pt;}
.hc{height:46.186667pt;}
.h3{height:50.852800pt;}
.h7{height:54.960000pt;}
.h6{height:55.200000pt;}
.h13{height:55.424000pt;}
.hd{height:61.848000pt;}
.h11{height:63.914667pt;}
.h18{height:69.413333pt;}
.h4{height:73.301333pt;}
.h5{height:89.809037pt;}
.h10{height:103.511498pt;}
.h2{height:164.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:45.738800pt;}
.x1a{left:56.692933pt;}
.x11{left:64.252000pt;}
.x19{left:68.504000pt;}
.x4{left:72.428667pt;}
.xe{left:80.026000pt;}
.x9{left:83.149600pt;}
.xf{left:86.026000pt;}
.xa{left:143.622000pt;}
.x16{left:162.515333pt;}
.x12{left:287.243867pt;}
.x6{left:288.658800pt;}
.x1b{left:359.055067pt;}
.x2{left:375.137067pt;}
.x17{left:431.218933pt;}
.xb{left:457.322800pt;}
.xc{left:476.220400pt;}
.x13{left:503.048267pt;}
.x5{left:531.496000pt;}
.x15{left:545.832400pt;}
.x10{left:550.866133pt;}
.x14{left:551.817467pt;}
.x1{left:605.141733pt;}
.x1c{left:646.623867pt;}
.x7{left:718.552933pt;}
.x8{left:724.552933pt;}
.xd{left:734.204000pt;}
.x18{left:744.929200pt;}
}




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