
    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_2d7d49c8f6ad4f481e26939b.woff2')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_574c518b08e62736554da36e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_118822c5a8a34015429e5b67.woff2')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_bfc2248f1f119c594438eac7.woff2')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_962297c0a2ef4b3e504c8a19.woff2')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_494bbeb826b0899515661aa7.woff2')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_1b96de626f57f052152656c0.woff2')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_bf8ed6b45585c70657a0f22d.woff2')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_3490e2660603100f513c6409.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8595aa1766d573dd7c2e9c30.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e658bb1301eba877a61dcfa7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2d7d49c8f6ad4f481e26939b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6e6df9d3512efa7734a41a1d.woff2')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_f5de67de1ef3e707660c9fd3.woff2')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_3490e2660603100f513c6409.woff2')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_8595aa1766d573dd7c2e9c30.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_72be3325fbdfa8f4ca983858.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3490e2660603100f513c6409.woff2')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_8595aa1766d573dd7c2e9c30.woff2')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_3490e2660603100f513c6409.woff2')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_8595aa1766d573dd7c2e9c30.woff2')format("woff");}.ff15{font-family:ff15;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;}
.m3b{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);}
.mc{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);}
.m7b{transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245053,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245063,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245452,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245707,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.246157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246157,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246177,0.000000,0.000000,0.250000,0,0);}
.ma8{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);}
.m1b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m8{transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246583,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m36{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246838,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.ma6{transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.mac{transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);}
.m9f{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);}
.ma7{transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248065,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m31{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m11{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);}
.ma0{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);}
.mb3{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.maa{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);}
.m1d{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);}
.m63{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);}
.m58{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.m26{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m9c{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m91{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);}
.ma3{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);}
.m43{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);}
.m46{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m84{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m68{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m2d{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);}
.m99{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m98{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);}
.m40{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6e{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m66{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m88{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);}
.m87{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251037,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.ma2{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);}
.m71{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251968,0.000000,0.000000,0.250000,0,0);}
.m9a{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);}
.m38{transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m54{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253068,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253072,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253197,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253207,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253777,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253890,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254063,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254488,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254860,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.272000px;}
.ls2f{letter-spacing:-2.941343px;}
.ls4c{letter-spacing:-2.304000px;}
.ls2e{letter-spacing:-1.336974px;}
.ls2a{letter-spacing:-1.320000px;}
.ls33{letter-spacing:-1.200000px;}
.ls28{letter-spacing:-1.134000px;}
.ls32{letter-spacing:-1.080000px;}
.ls31{letter-spacing:-1.020000px;}
.ls35{letter-spacing:-0.960000px;}
.ls3f{letter-spacing:-0.912000px;}
.ls36{letter-spacing:-0.900000px;}
.ls37{letter-spacing:-0.840000px;}
.ls38{letter-spacing:-0.720000px;}
.ls3e{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.540000px;}
.ls34{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.300000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls27{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.300000px;}
.ls45{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.510000px;}
.ls48{letter-spacing:0.528000px;}
.ls2b{letter-spacing:0.540000px;}
.ls3a{letter-spacing:0.570000px;}
.lsc{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.630000px;}
.ls30{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.735336px;}
.ls4a{letter-spacing:0.768000px;}
.ls1c{letter-spacing:0.780000px;}
.ls3d{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.840000px;}
.ls49{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.900000px;}
.ls4e{letter-spacing:0.912000px;}
.ls0{letter-spacing:0.960000px;}
.ls4d{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls47{letter-spacing:1.056000px;}
.ls2{letter-spacing:1.080000px;}
.ls21{letter-spacing:1.140000px;}
.ls8{letter-spacing:1.170000px;}
.ls4{letter-spacing:1.198800px;}
.ls15{letter-spacing:1.200000px;}
.ls4b{letter-spacing:1.248000px;}
.ls10{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.320000px;}
.ls3c{letter-spacing:1.380000px;}
.ls22{letter-spacing:1.440000px;}
.ls43{letter-spacing:1.470000px;}
.ls16{letter-spacing:1.500000px;}
.lse{letter-spacing:1.560000px;}
.ls14{letter-spacing:1.620000px;}
.ls1b{letter-spacing:1.770000px;}
.ls3b{letter-spacing:1.800000px;}
.ls42{letter-spacing:1.860000px;}
.ls19{letter-spacing:1.920000px;}
.lsd{letter-spacing:1.980000px;}
.ls41{letter-spacing:2.100000px;}
.ls1d{letter-spacing:2.220000px;}
.ls9{letter-spacing:2.250000px;}
.ls1f{letter-spacing:2.280000px;}
.ls44{letter-spacing:2.580000px;}
.ls17{letter-spacing:2.760000px;}
.ls2c{letter-spacing:2.940000px;}
.ls6{letter-spacing:2.941344px;}
.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;}
.ws4e{word-spacing:-19.440000px;}
.ws12{word-spacing:-16.200000px;}
.ws10{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.700000px;}
.ws3{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.100000px;}
.ws17{word-spacing:-14.040000px;}
.ws16{word-spacing:-13.920000px;}
.ws11{word-spacing:-13.680000px;}
.ws13{word-spacing:-12.960000px;}
.ws14{word-spacing:-12.480000px;}
.ws62{word-spacing:-9.696000px;}
.ws15{word-spacing:-9.648000px;}
.ws6a{word-spacing:-3.300000px;}
.ws34{word-spacing:-3.120000px;}
.ws23{word-spacing:-3.060000px;}
.ws5f{word-spacing:-2.520000px;}
.ws1d{word-spacing:-2.340000px;}
.ws20{word-spacing:-2.280000px;}
.ws21{word-spacing:-2.220000px;}
.ws40{word-spacing:-1.980000px;}
.ws5a{word-spacing:-1.920000px;}
.ws56{word-spacing:-1.860000px;}
.ws74{word-spacing:-1.824000px;}
.ws6b{word-spacing:-1.776000px;}
.ws66{word-spacing:-1.680000px;}
.ws69{word-spacing:-1.620000px;}
.ws36{word-spacing:-1.560000px;}
.ws25{word-spacing:-1.500000px;}
.ws3f{word-spacing:-1.380000px;}
.ws2e{word-spacing:-1.320000px;}
.ws29{word-spacing:-1.200000px;}
.ws30{word-spacing:-1.140000px;}
.ws9{word-spacing:-1.080000px;}
.ws51{word-spacing:-1.020000px;}
.ws1{word-spacing:-1.008000px;}
.ws67{word-spacing:-0.960000px;}
.ws50{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.840000px;}
.ws4a{word-spacing:-0.828000px;}
.ws2d{word-spacing:-0.780000px;}
.ws54{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.660000px;}
.ws61{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.528000px;}
.ws3c{word-spacing:-0.480000px;}
.ws65{word-spacing:-0.420000px;}
.ws3b{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.180000px;}
.ws1a{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws2f{word-spacing:0.060000px;}
.ws42{word-spacing:0.120000px;}
.ws72{word-spacing:0.192000px;}
.ws6f{word-spacing:0.288000px;}
.ws58{word-spacing:0.360000px;}
.ws70{word-spacing:0.384000px;}
.ws6d{word-spacing:0.432000px;}
.ws2b{word-spacing:0.480000px;}
.wsa{word-spacing:0.540000px;}
.ws43{word-spacing:0.600000px;}
.ws8{word-spacing:0.630000px;}
.ws3d{word-spacing:0.660000px;}
.ws4b{word-spacing:0.684000px;}
.ws7{word-spacing:0.720000px;}
.ws49{word-spacing:0.780000px;}
.ws4c{word-spacing:0.912000px;}
.ws71{word-spacing:0.960000px;}
.ws68{word-spacing:1.020000px;}
.wse{word-spacing:1.080000px;}
.ws4f{word-spacing:1.380000px;}
.ws55{word-spacing:1.500000px;}
.ws35{word-spacing:1.560000px;}
.ws39{word-spacing:1.604369px;}
.ws6{word-spacing:1.620000px;}
.ws57{word-spacing:1.680000px;}
.ws64{word-spacing:1.800000px;}
.ws48{word-spacing:1.920000px;}
.ws53{word-spacing:1.980000px;}
.ws5c{word-spacing:2.040000px;}
.ws6e{word-spacing:2.112000px;}
.ws5{word-spacing:2.206008px;}
.ws46{word-spacing:2.280000px;}
.ws41{word-spacing:2.340000px;}
.ws3e{word-spacing:2.640000px;}
.ws38{word-spacing:2.880000px;}
.ws47{word-spacing:2.940000px;}
.ws6c{word-spacing:2.976000px;}
.ws73{word-spacing:3.024000px;}
.ws60{word-spacing:3.060000px;}
.ws45{word-spacing:3.240000px;}
.ws24{word-spacing:3.420000px;}
.ws52{word-spacing:3.540000px;}
.ws5e{word-spacing:3.600000px;}
.ws2a{word-spacing:3.660000px;}
.ws1c{word-spacing:3.720000px;}
.ws22{word-spacing:3.780000px;}
.ws1e{word-spacing:3.900000px;}
.ws1f{word-spacing:4.320000px;}
.ws27{word-spacing:4.380000px;}
.ws5d{word-spacing:4.800000px;}
.ws44{word-spacing:4.980000px;}
.ws5b{word-spacing:5.580000px;}
.ws2c{word-spacing:6.300000px;}
.ws31{word-spacing:6.540000px;}
.ws32{word-spacing:6.720000px;}
.ws63{word-spacing:8.580000px;}
.ws26{word-spacing:9.840000px;}
.wsd{word-spacing:11.183400px;}
.ws37{word-spacing:14.460000px;}
.ws4d{word-spacing:88.740000px;}
.wsb{word-spacing:89.640000px;}
.wsc{word-spacing:2290.549200px;}
._6{margin-left:-11.032173px;}
._8{margin-left:-8.156160px;}
._5{margin-left:-6.162116px;}
._7{margin-left:-4.229359px;}
._3{margin-left:-3.073704px;}
._1{margin-left:-1.645020px;}
._0{width:1.525140px;}
._2{width:3.027452px;}
._4{width:4.195774px;}
._9{width:5.438400px;}
.fc3{color:rgb(179,31,47);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(116,114,115);}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(64,187,98);}
.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;}
.fsa{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs9{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.fsd{font-size:114.000000px;}
.fsb{font-size:133.697400px;}
.fs3{font-size:147.067200px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:48.330750px;}
.ye7{bottom:60.464400px;}
.y61{bottom:66.330750px;}
.y8c{bottom:66.330900px;}
.yf{bottom:66.344250px;}
.y1f{bottom:66.380250px;}
.y2d{bottom:66.434250px;}
.ye6{bottom:73.964400px;}
.y60{bottom:84.330750px;}
.y8b{bottom:84.330900px;}
.ye{bottom:84.339750px;}
.y1e{bottom:84.375750px;}
.ye5{bottom:93.842400px;}
.y5f{bottom:102.330750px;}
.y8a{bottom:102.330900px;}
.yd{bottom:102.335250px;}
.y1d{bottom:102.371250px;}
.y2c{bottom:102.425250px;}
.ye4{bottom:107.342400px;}
.yc{bottom:120.330750px;}
.y8f{bottom:120.330900px;}
.y1c{bottom:120.366750px;}
.y2b{bottom:120.420750px;}
.ye3{bottom:120.836400px;}
.y5e{bottom:138.330750px;}
.y89{bottom:138.330900px;}
.y2a{bottom:138.416250px;}
.ye2{bottom:140.720400px;}
.ye1{bottom:154.220400px;}
.y5d{bottom:156.330750px;}
.y8e{bottom:156.330900px;}
.y1b{bottom:156.371250px;}
.y29{bottom:156.411750px;}
.ye0{bottom:167.720400px;}
.y5c{bottom:174.330750px;}
.y8d{bottom:174.330900px;}
.y1a{bottom:174.366750px;}
.y28{bottom:174.407250px;}
.ydf{bottom:187.598250px;}
.y5b{bottom:192.330750px;}
.y88{bottom:192.330900px;}
.y19{bottom:192.362250px;}
.yde{bottom:201.098250px;}
.y5a{bottom:210.330750px;}
.y87{bottom:210.330900px;}
.y18{bottom:210.357750px;}
.y27{bottom:210.411750px;}
.ydd{bottom:214.598250px;}
.y73{bottom:220.929300px;}
.y59{bottom:228.330750px;}
.y86{bottom:228.330900px;}
.y17{bottom:228.353250px;}
.y26{bottom:228.407250px;}
.ydc{bottom:234.476250px;}
.y72{bottom:238.929300px;}
.y58{bottom:246.330750px;}
.y85{bottom:246.330900px;}
.y16{bottom:246.348750px;}
.ydb{bottom:247.976250px;}
.y71{bottom:256.929300px;}
.y57{bottom:264.330750px;}
.y84{bottom:264.330900px;}
.y15{bottom:264.344250px;}
.y25{bottom:264.411750px;}
.yda{bottom:267.854250px;}
.y70{bottom:274.929300px;}
.yd9{bottom:281.354250px;}
.y56{bottom:282.330750px;}
.y83{bottom:282.330900px;}
.y14{bottom:282.339750px;}
.y24{bottom:282.407250px;}
.y6f{bottom:292.929300px;}
.yd8{bottom:294.848100px;}
.y55{bottom:300.330750px;}
.y82{bottom:300.330900px;}
.y23{bottom:300.402750px;}
.y6e{bottom:310.929300px;}
.yd7{bottom:314.732100px;}
.y54{bottom:318.330750px;}
.y81{bottom:318.330900px;}
.y13{bottom:318.344250px;}
.yd6{bottom:328.232100px;}
.y6d{bottom:328.929300px;}
.y53{bottom:336.330750px;}
.y80{bottom:336.330900px;}
.y12{bottom:336.339750px;}
.y22{bottom:336.393750px;}
.yd5{bottom:341.732100px;}
.y6c{bottom:346.929300px;}
.y52{bottom:354.330750px;}
.y7f{bottom:354.330900px;}
.y11{bottom:354.335250px;}
.y21{bottom:354.389250px;}
.yd4{bottom:361.604100px;}
.y10{bottom:372.330750px;}
.y7e{bottom:372.330900px;}
.y20{bottom:372.384750px;}
.yd3{bottom:375.104100px;}
.y6b{bottom:377.679300px;}
.yd2{bottom:388.604100px;}
.y51{bottom:390.330750px;}
.y7d{bottom:390.330900px;}
.y6a{bottom:395.679300px;}
.yd1{bottom:402.104100px;}
.y96{bottom:408.330750px;}
.y7c{bottom:408.330900px;}
.y3{bottom:410.215350px;}
.y69{bottom:413.679300px;}
.yd0{bottom:421.988100px;}
.y50{bottom:426.330750px;}
.y7b{bottom:426.330900px;}
.y68{bottom:431.679300px;}
.ycf{bottom:435.488100px;}
.y4f{bottom:444.330750px;}
.y7a{bottom:444.330900px;}
.y67{bottom:449.679300px;}
.yce{bottom:455.366100px;}
.y4e{bottom:462.330750px;}
.y79{bottom:462.330900px;}
.ycd{bottom:468.866100px;}
.y74{bottom:476.752050px;}
.y4d{bottom:480.330750px;}
.y78{bottom:480.330900px;}
.y4c{bottom:498.330750px;}
.y77{bottom:498.330900px;}
.y4b{bottom:516.330750px;}
.y76{bottom:516.330900px;}
.yc9{bottom:534.330600px;}
.y4a{bottom:534.330750px;}
.yc8{bottom:552.330600px;}
.y49{bottom:552.330750px;}
.y90{bottom:565.537650px;}
.yc7{bottom:570.330600px;}
.y48{bottom:570.330750px;}
.y91{bottom:585.070800px;}
.yc6{bottom:588.330600px;}
.yb{bottom:588.330750px;}
.yc5{bottom:606.330600px;}
.ya{bottom:606.330750px;}
.y39{bottom:623.711400px;}
.yc4{bottom:624.330600px;}
.y47{bottom:624.330750px;}
.y38{bottom:641.711400px;}
.yc3{bottom:642.330600px;}
.y46{bottom:642.330750px;}
.y37{bottom:659.711400px;}
.yc2{bottom:660.330600px;}
.y45{bottom:660.330750px;}
.y36{bottom:677.711400px;}
.yc1{bottom:678.330600px;}
.y44{bottom:678.330750px;}
.y9{bottom:678.573150px;}
.y35{bottom:695.711400px;}
.yc0{bottom:696.330600px;}
.y43{bottom:696.330750px;}
.y8{bottom:708.565650px;}
.y34{bottom:713.711400px;}
.ybf{bottom:714.330600px;}
.y42{bottom:714.330750px;}
.ybe{bottom:732.330600px;}
.y41{bottom:732.330750px;}
.y7{bottom:738.558150px;}
.y66{bottom:741.020400px;}
.y95{bottom:745.830750px;}
.ycc{bottom:750.330600px;}
.y40{bottom:750.330750px;}
.ybd{bottom:763.830600px;}
.ycb{bottom:768.330600px;}
.y3f{bottom:768.330750px;}
.y6{bottom:768.550650px;}
.ybc{bottom:786.330600px;}
.y3e{bottom:786.330750px;}
.yca{bottom:804.330600px;}
.y3d{bottom:804.330750px;}
.ya9{bottom:819.135450px;}
.y3c{bottom:822.330750px;}
.ya8{bottom:835.632450px;}
.ybb{bottom:840.330600px;}
.y3b{bottom:840.330750px;}
.ya7{bottom:852.129450px;}
.y3a{bottom:858.326400px;}
.yba{bottom:858.330600px;}
.y62{bottom:858.330750px;}
.y5{bottom:867.924421px;}
.ya6{bottom:868.626450px;}
.yb9{bottom:876.330600px;}
.ya3{bottom:876.330750px;}
.ya5{bottom:885.123450px;}
.yb8{bottom:894.330600px;}
.ya4{bottom:901.620450px;}
.y4{bottom:908.037000px;}
.yb7{bottom:912.330600px;}
.yb6{bottom:930.330600px;}
.ya2{bottom:930.330750px;}
.yaa{bottom:930.649500px;}
.y33{bottom:948.153300px;}
.yb5{bottom:948.330600px;}
.ya1{bottom:948.330750px;}
.yb4{bottom:966.330600px;}
.ya0{bottom:966.330750px;}
.y32{bottom:981.144300px;}
.yb3{bottom:984.330600px;}
.y9f{bottom:984.330750px;}
.yb2{bottom:1002.330600px;}
.y9e{bottom:1002.330750px;}
.y31{bottom:1011.153300px;}
.yb1{bottom:1020.330600px;}
.y9d{bottom:1020.330750px;}
.y2{bottom:1021.381500px;}
.yb0{bottom:1038.330600px;}
.y9c{bottom:1038.330750px;}
.y30{bottom:1041.162300px;}
.y94{bottom:1046.593950px;}
.yaf{bottom:1056.330600px;}
.y9b{bottom:1056.330750px;}
.yae{bottom:1074.330600px;}
.y9a{bottom:1074.330750px;}
.y93{bottom:1081.107450px;}
.y64{bottom:1084.259865px;}
.yad{bottom:1092.330600px;}
.y99{bottom:1092.330750px;}
.yac{bottom:1110.330600px;}
.y98{bottom:1110.330750px;}
.y92{bottom:1115.620950px;}
.y63{bottom:1121.026650px;}
.yab{bottom:1128.330600px;}
.y97{bottom:1128.330750px;}
.y1{bottom:1199.642850px;}
.y2e{bottom:1214.502000px;}
.y75{bottom:1214.517000px;}
.y2f{bottom:1214.820000px;}
.h15{height:30.816000px;}
.h19{height:40.752000px;}
.h9{height:41.088000px;}
.h8{height:41.568000px;}
.hb{height:45.846000px;}
.h17{height:46.224000px;}
.he{height:46.386000px;}
.ha{height:47.034000px;}
.h12{height:50.940000px;}
.h11{height:51.360000px;}
.h16{height:51.540000px;}
.hc{height:51.960000px;}
.h3{height:57.209400px;}
.h6{height:62.100000px;}
.h13{height:62.352000px;}
.hd{height:69.579000px;}
.hf{height:71.904000px;}
.h10{height:72.156000px;}
.h18{height:78.090000px;}
.h7{height:78.390000px;}
.h4{height:82.464000px;}
.h14{height:116.450435px;}
.h5{height:128.095531px;}
.h2{height:185.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:44.297700px;}
.x3{left:51.456150px;}
.x14{left:72.283500px;}
.x1e{left:76.535400px;}
.x19{left:80.255850px;}
.x4{left:81.482250px;}
.x12{left:90.029250px;}
.x9{left:93.434550px;}
.x13{left:96.779250px;}
.x1d{left:150.596850px;}
.x1a{left:161.574750px;}
.xa{left:323.153550px;}
.x6{left:324.741150px;}
.xb{left:344.409450px;}
.x15{left:374.577450px;}
.x16{left:403.936950px;}
.x2{left:422.029200px;}
.x17{left:425.196750px;}
.x1b{left:514.488150px;}
.x1c{left:535.747950px;}
.xc{left:595.275600px;}
.x5{left:597.933000px;}
.xd{left:616.535400px;}
.x1{left:680.784450px;}
.x11{left:696.960000px;}
.x7{left:808.372050px;}
.x8{left:815.122050px;}
.x10{left:825.210000px;}
.xe{left:838.053150px;}
.x18{left:859.081200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.130667pt;}
.ls2f{letter-spacing:-2.614527pt;}
.ls4c{letter-spacing:-2.048000pt;}
.ls2e{letter-spacing:-1.188421pt;}
.ls2a{letter-spacing:-1.173333pt;}
.ls33{letter-spacing:-1.066667pt;}
.ls28{letter-spacing:-1.008000pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls31{letter-spacing:-0.906667pt;}
.ls35{letter-spacing:-0.853333pt;}
.ls3f{letter-spacing:-0.810667pt;}
.ls36{letter-spacing:-0.800000pt;}
.ls37{letter-spacing:-0.746667pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls3e{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.266667pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls27{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.266667pt;}
.ls45{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.453333pt;}
.ls48{letter-spacing:0.469333pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls3a{letter-spacing:0.506667pt;}
.lsc{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.560000pt;}
.ls30{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.653632pt;}
.ls4a{letter-spacing:0.682667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls3d{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.746667pt;}
.ls49{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls4e{letter-spacing:0.810667pt;}
.ls0{letter-spacing:0.853333pt;}
.ls4d{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls47{letter-spacing:0.938667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls21{letter-spacing:1.013333pt;}
.ls8{letter-spacing:1.040000pt;}
.ls4{letter-spacing:1.065600pt;}
.ls15{letter-spacing:1.066667pt;}
.ls4b{letter-spacing:1.109333pt;}
.ls10{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls3c{letter-spacing:1.226667pt;}
.ls22{letter-spacing:1.280000pt;}
.ls43{letter-spacing:1.306667pt;}
.ls16{letter-spacing:1.333333pt;}
.lse{letter-spacing:1.386667pt;}
.ls14{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.573333pt;}
.ls3b{letter-spacing:1.600000pt;}
.ls42{letter-spacing:1.653333pt;}
.ls19{letter-spacing:1.706667pt;}
.lsd{letter-spacing:1.760000pt;}
.ls41{letter-spacing:1.866667pt;}
.ls1d{letter-spacing:1.973333pt;}
.ls9{letter-spacing:2.000000pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls44{letter-spacing:2.293333pt;}
.ls17{letter-spacing:2.453333pt;}
.ls2c{letter-spacing:2.613333pt;}
.ls6{letter-spacing:2.614528pt;}
.ws0{word-spacing:-21.333333pt;}
.ws4e{word-spacing:-17.280000pt;}
.ws12{word-spacing:-14.400000pt;}
.ws10{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.066667pt;}
.ws3{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.533333pt;}
.ws17{word-spacing:-12.480000pt;}
.ws16{word-spacing:-12.373333pt;}
.ws11{word-spacing:-12.160000pt;}
.ws13{word-spacing:-11.520000pt;}
.ws14{word-spacing:-11.093333pt;}
.ws62{word-spacing:-8.618667pt;}
.ws15{word-spacing:-8.576000pt;}
.ws6a{word-spacing:-2.933333pt;}
.ws34{word-spacing:-2.773333pt;}
.ws23{word-spacing:-2.720000pt;}
.ws5f{word-spacing:-2.240000pt;}
.ws1d{word-spacing:-2.080000pt;}
.ws20{word-spacing:-2.026667pt;}
.ws21{word-spacing:-1.973333pt;}
.ws40{word-spacing:-1.760000pt;}
.ws5a{word-spacing:-1.706667pt;}
.ws56{word-spacing:-1.653333pt;}
.ws74{word-spacing:-1.621333pt;}
.ws6b{word-spacing:-1.578667pt;}
.ws66{word-spacing:-1.493333pt;}
.ws69{word-spacing:-1.440000pt;}
.ws36{word-spacing:-1.386667pt;}
.ws25{word-spacing:-1.333333pt;}
.ws3f{word-spacing:-1.226667pt;}
.ws2e{word-spacing:-1.173333pt;}
.ws29{word-spacing:-1.066667pt;}
.ws30{word-spacing:-1.013333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws51{word-spacing:-0.906667pt;}
.ws1{word-spacing:-0.896000pt;}
.ws67{word-spacing:-0.853333pt;}
.ws50{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.746667pt;}
.ws4a{word-spacing:-0.736000pt;}
.ws2d{word-spacing:-0.693333pt;}
.ws54{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.586667pt;}
.ws61{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.469333pt;}
.ws3c{word-spacing:-0.426667pt;}
.ws65{word-spacing:-0.373333pt;}
.ws3b{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.160000pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053333pt;}
.ws42{word-spacing:0.106667pt;}
.ws72{word-spacing:0.170667pt;}
.ws6f{word-spacing:0.256000pt;}
.ws58{word-spacing:0.320000pt;}
.ws70{word-spacing:0.341333pt;}
.ws6d{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.426667pt;}
.wsa{word-spacing:0.480000pt;}
.ws43{word-spacing:0.533333pt;}
.ws8{word-spacing:0.560000pt;}
.ws3d{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.608000pt;}
.ws7{word-spacing:0.640000pt;}
.ws49{word-spacing:0.693333pt;}
.ws4c{word-spacing:0.810667pt;}
.ws71{word-spacing:0.853333pt;}
.ws68{word-spacing:0.906667pt;}
.wse{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.226667pt;}
.ws55{word-spacing:1.333333pt;}
.ws35{word-spacing:1.386667pt;}
.ws39{word-spacing:1.426106pt;}
.ws6{word-spacing:1.440000pt;}
.ws57{word-spacing:1.493333pt;}
.ws64{word-spacing:1.600000pt;}
.ws48{word-spacing:1.706667pt;}
.ws53{word-spacing:1.760000pt;}
.ws5c{word-spacing:1.813333pt;}
.ws6e{word-spacing:1.877333pt;}
.ws5{word-spacing:1.960896pt;}
.ws46{word-spacing:2.026667pt;}
.ws41{word-spacing:2.080000pt;}
.ws3e{word-spacing:2.346667pt;}
.ws38{word-spacing:2.560000pt;}
.ws47{word-spacing:2.613333pt;}
.ws6c{word-spacing:2.645333pt;}
.ws73{word-spacing:2.688000pt;}
.ws60{word-spacing:2.720000pt;}
.ws45{word-spacing:2.880000pt;}
.ws24{word-spacing:3.040000pt;}
.ws52{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.200000pt;}
.ws2a{word-spacing:3.253333pt;}
.ws1c{word-spacing:3.306667pt;}
.ws22{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.840000pt;}
.ws27{word-spacing:3.893333pt;}
.ws5d{word-spacing:4.266667pt;}
.ws44{word-spacing:4.426667pt;}
.ws5b{word-spacing:4.960000pt;}
.ws2c{word-spacing:5.600000pt;}
.ws31{word-spacing:5.813333pt;}
.ws32{word-spacing:5.973333pt;}
.ws63{word-spacing:7.626667pt;}
.ws26{word-spacing:8.746667pt;}
.wsd{word-spacing:9.940800pt;}
.ws37{word-spacing:12.853333pt;}
.ws4d{word-spacing:78.880000pt;}
.wsb{word-spacing:79.680000pt;}
.wsc{word-spacing:2036.043733pt;}
._6{margin-left:-9.806376pt;}
._8{margin-left:-7.249920pt;}
._5{margin-left:-5.477436pt;}
._7{margin-left:-3.759430pt;}
._3{margin-left:-2.732182pt;}
._1{margin-left:-1.462240pt;}
._0{width:1.355680pt;}
._2{width:2.691068pt;}
._4{width:3.729577pt;}
._9{width:4.834133pt;}
.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;}
.fsa{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs9{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.fsd{font-size:101.333333pt;}
.fsb{font-size:118.842133pt;}
.fs3{font-size:130.726400pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:42.960667pt;}
.ye7{bottom:53.746133pt;}
.y61{bottom:58.960667pt;}
.y8c{bottom:58.960800pt;}
.yf{bottom:58.972667pt;}
.y1f{bottom:59.004667pt;}
.y2d{bottom:59.052667pt;}
.ye6{bottom:65.746133pt;}
.y60{bottom:74.960667pt;}
.y8b{bottom:74.960800pt;}
.ye{bottom:74.968667pt;}
.y1e{bottom:75.000667pt;}
.ye5{bottom:83.415467pt;}
.y5f{bottom:90.960667pt;}
.y8a{bottom:90.960800pt;}
.yd{bottom:90.964667pt;}
.y1d{bottom:90.996667pt;}
.y2c{bottom:91.044667pt;}
.ye4{bottom:95.415467pt;}
.yc{bottom:106.960667pt;}
.y8f{bottom:106.960800pt;}
.y1c{bottom:106.992667pt;}
.y2b{bottom:107.040667pt;}
.ye3{bottom:107.410133pt;}
.y5e{bottom:122.960667pt;}
.y89{bottom:122.960800pt;}
.y2a{bottom:123.036667pt;}
.ye2{bottom:125.084800pt;}
.ye1{bottom:137.084800pt;}
.y5d{bottom:138.960667pt;}
.y8e{bottom:138.960800pt;}
.y1b{bottom:138.996667pt;}
.y29{bottom:139.032667pt;}
.ye0{bottom:149.084800pt;}
.y5c{bottom:154.960667pt;}
.y8d{bottom:154.960800pt;}
.y1a{bottom:154.992667pt;}
.y28{bottom:155.028667pt;}
.ydf{bottom:166.754000pt;}
.y5b{bottom:170.960667pt;}
.y88{bottom:170.960800pt;}
.y19{bottom:170.988667pt;}
.yde{bottom:178.754000pt;}
.y5a{bottom:186.960667pt;}
.y87{bottom:186.960800pt;}
.y18{bottom:186.984667pt;}
.y27{bottom:187.032667pt;}
.ydd{bottom:190.754000pt;}
.y73{bottom:196.381600pt;}
.y59{bottom:202.960667pt;}
.y86{bottom:202.960800pt;}
.y17{bottom:202.980667pt;}
.y26{bottom:203.028667pt;}
.ydc{bottom:208.423333pt;}
.y72{bottom:212.381600pt;}
.y58{bottom:218.960667pt;}
.y85{bottom:218.960800pt;}
.y16{bottom:218.976667pt;}
.ydb{bottom:220.423333pt;}
.y71{bottom:228.381600pt;}
.y57{bottom:234.960667pt;}
.y84{bottom:234.960800pt;}
.y15{bottom:234.972667pt;}
.y25{bottom:235.032667pt;}
.yda{bottom:238.092667pt;}
.y70{bottom:244.381600pt;}
.yd9{bottom:250.092667pt;}
.y56{bottom:250.960667pt;}
.y83{bottom:250.960800pt;}
.y14{bottom:250.968667pt;}
.y24{bottom:251.028667pt;}
.y6f{bottom:260.381600pt;}
.yd8{bottom:262.087200pt;}
.y55{bottom:266.960667pt;}
.y82{bottom:266.960800pt;}
.y23{bottom:267.024667pt;}
.y6e{bottom:276.381600pt;}
.yd7{bottom:279.761867pt;}
.y54{bottom:282.960667pt;}
.y81{bottom:282.960800pt;}
.y13{bottom:282.972667pt;}
.yd6{bottom:291.761867pt;}
.y6d{bottom:292.381600pt;}
.y53{bottom:298.960667pt;}
.y80{bottom:298.960800pt;}
.y12{bottom:298.968667pt;}
.y22{bottom:299.016667pt;}
.yd5{bottom:303.761867pt;}
.y6c{bottom:308.381600pt;}
.y52{bottom:314.960667pt;}
.y7f{bottom:314.960800pt;}
.y11{bottom:314.964667pt;}
.y21{bottom:315.012667pt;}
.yd4{bottom:321.425867pt;}
.y10{bottom:330.960667pt;}
.y7e{bottom:330.960800pt;}
.y20{bottom:331.008667pt;}
.yd3{bottom:333.425867pt;}
.y6b{bottom:335.714933pt;}
.yd2{bottom:345.425867pt;}
.y51{bottom:346.960667pt;}
.y7d{bottom:346.960800pt;}
.y6a{bottom:351.714933pt;}
.yd1{bottom:357.425867pt;}
.y96{bottom:362.960667pt;}
.y7c{bottom:362.960800pt;}
.y3{bottom:364.635867pt;}
.y69{bottom:367.714933pt;}
.yd0{bottom:375.100533pt;}
.y50{bottom:378.960667pt;}
.y7b{bottom:378.960800pt;}
.y68{bottom:383.714933pt;}
.ycf{bottom:387.100533pt;}
.y4f{bottom:394.960667pt;}
.y7a{bottom:394.960800pt;}
.y67{bottom:399.714933pt;}
.yce{bottom:404.769867pt;}
.y4e{bottom:410.960667pt;}
.y79{bottom:410.960800pt;}
.ycd{bottom:416.769867pt;}
.y74{bottom:423.779600pt;}
.y4d{bottom:426.960667pt;}
.y78{bottom:426.960800pt;}
.y4c{bottom:442.960667pt;}
.y77{bottom:442.960800pt;}
.y4b{bottom:458.960667pt;}
.y76{bottom:458.960800pt;}
.yc9{bottom:474.960533pt;}
.y4a{bottom:474.960667pt;}
.yc8{bottom:490.960533pt;}
.y49{bottom:490.960667pt;}
.y90{bottom:502.700133pt;}
.yc7{bottom:506.960533pt;}
.y48{bottom:506.960667pt;}
.y91{bottom:520.062933pt;}
.yc6{bottom:522.960533pt;}
.yb{bottom:522.960667pt;}
.yc5{bottom:538.960533pt;}
.ya{bottom:538.960667pt;}
.y39{bottom:554.410133pt;}
.yc4{bottom:554.960533pt;}
.y47{bottom:554.960667pt;}
.y38{bottom:570.410133pt;}
.yc3{bottom:570.960533pt;}
.y46{bottom:570.960667pt;}
.y37{bottom:586.410133pt;}
.yc2{bottom:586.960533pt;}
.y45{bottom:586.960667pt;}
.y36{bottom:602.410133pt;}
.yc1{bottom:602.960533pt;}
.y44{bottom:602.960667pt;}
.y9{bottom:603.176133pt;}
.y35{bottom:618.410133pt;}
.yc0{bottom:618.960533pt;}
.y43{bottom:618.960667pt;}
.y8{bottom:629.836133pt;}
.y34{bottom:634.410133pt;}
.ybf{bottom:634.960533pt;}
.y42{bottom:634.960667pt;}
.ybe{bottom:650.960533pt;}
.y41{bottom:650.960667pt;}
.y7{bottom:656.496133pt;}
.y66{bottom:658.684800pt;}
.y95{bottom:662.960667pt;}
.ycc{bottom:666.960533pt;}
.y40{bottom:666.960667pt;}
.ybd{bottom:678.960533pt;}
.ycb{bottom:682.960533pt;}
.y3f{bottom:682.960667pt;}
.y6{bottom:683.156133pt;}
.ybc{bottom:698.960533pt;}
.y3e{bottom:698.960667pt;}
.yca{bottom:714.960533pt;}
.y3d{bottom:714.960667pt;}
.ya9{bottom:728.120400pt;}
.y3c{bottom:730.960667pt;}
.ya8{bottom:742.784400pt;}
.ybb{bottom:746.960533pt;}
.y3b{bottom:746.960667pt;}
.ya7{bottom:757.448400pt;}
.y3a{bottom:762.956800pt;}
.yba{bottom:762.960533pt;}
.y62{bottom:762.960667pt;}
.y5{bottom:771.488374pt;}
.ya6{bottom:772.112400pt;}
.yb9{bottom:778.960533pt;}
.ya3{bottom:778.960667pt;}
.ya5{bottom:786.776400pt;}
.yb8{bottom:794.960533pt;}
.ya4{bottom:801.440400pt;}
.y4{bottom:807.144000pt;}
.yb7{bottom:810.960533pt;}
.yb6{bottom:826.960533pt;}
.ya2{bottom:826.960667pt;}
.yaa{bottom:827.244000pt;}
.y33{bottom:842.802933pt;}
.yb5{bottom:842.960533pt;}
.ya1{bottom:842.960667pt;}
.yb4{bottom:858.960533pt;}
.ya0{bottom:858.960667pt;}
.y32{bottom:872.128267pt;}
.yb3{bottom:874.960533pt;}
.y9f{bottom:874.960667pt;}
.yb2{bottom:890.960533pt;}
.y9e{bottom:890.960667pt;}
.y31{bottom:898.802933pt;}
.yb1{bottom:906.960533pt;}
.y9d{bottom:906.960667pt;}
.y2{bottom:907.894667pt;}
.yb0{bottom:922.960533pt;}
.y9c{bottom:922.960667pt;}
.y30{bottom:925.477600pt;}
.y94{bottom:930.305733pt;}
.yaf{bottom:938.960533pt;}
.y9b{bottom:938.960667pt;}
.yae{bottom:954.960533pt;}
.y9a{bottom:954.960667pt;}
.y93{bottom:960.984400pt;}
.y64{bottom:963.786547pt;}
.yad{bottom:970.960533pt;}
.y99{bottom:970.960667pt;}
.yac{bottom:986.960533pt;}
.y98{bottom:986.960667pt;}
.y92{bottom:991.663067pt;}
.y63{bottom:996.468133pt;}
.yab{bottom:1002.960533pt;}
.y97{bottom:1002.960667pt;}
.y1{bottom:1066.349200pt;}
.y2e{bottom:1079.557333pt;}
.y75{bottom:1079.570667pt;}
.y2f{bottom:1079.840000pt;}
.h15{height:27.392000pt;}
.h19{height:36.224000pt;}
.h9{height:36.522667pt;}
.h8{height:36.949333pt;}
.hb{height:40.752000pt;}
.h17{height:41.088000pt;}
.he{height:41.232000pt;}
.ha{height:41.808000pt;}
.h12{height:45.280000pt;}
.h11{height:45.653333pt;}
.h16{height:45.813333pt;}
.hc{height:46.186667pt;}
.h3{height:50.852800pt;}
.h6{height:55.200000pt;}
.h13{height:55.424000pt;}
.hd{height:61.848000pt;}
.hf{height:63.914667pt;}
.h10{height:64.138667pt;}
.h18{height:69.413333pt;}
.h7{height:69.680000pt;}
.h4{height:73.301333pt;}
.h14{height:103.511498pt;}
.h5{height:113.862694pt;}
.h2{height:164.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:39.375733pt;}
.x3{left:45.738800pt;}
.x14{left:64.252000pt;}
.x1e{left:68.031467pt;}
.x19{left:71.338533pt;}
.x4{left:72.428667pt;}
.x12{left:80.026000pt;}
.x9{left:83.052933pt;}
.x13{left:86.026000pt;}
.x1d{left:133.863867pt;}
.x1a{left:143.622000pt;}
.xa{left:287.247600pt;}
.x6{left:288.658800pt;}
.xb{left:306.141733pt;}
.x15{left:332.957733pt;}
.x16{left:359.055067pt;}
.x2{left:375.137067pt;}
.x17{left:377.952667pt;}
.x1b{left:457.322800pt;}
.x1c{left:476.220400pt;}
.xc{left:529.133867pt;}
.x5{left:531.496000pt;}
.xd{left:548.031467pt;}
.x1{left:605.141733pt;}
.x11{left:619.520000pt;}
.x7{left:718.552933pt;}
.x8{left:724.552933pt;}
.x10{left:733.520000pt;}
.xe{left:744.936133pt;}
.x18{left:763.627733pt;}
}




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