
    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_b6ae12ceae2e5e53caa344bb.woff')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_f7cb6e3a0f00d6d1539a8553.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b1c921a2ea1b535e9a479e3c.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;}
.m3{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);}
.m6{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);}
.m13{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245280,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245282,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.245532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245532,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1b{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m2c{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);}
.m4a{transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246952,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247378,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m94{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);}
.m75{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248442,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m7a{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m73{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);}
.m39{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.m43{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.m89{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);}
.m1a{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,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);}
.m57{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m28{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);}
.m2a{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m6f{transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m82{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);}
.m78{transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251893,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251940,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m68{transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252145,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m54{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);}
.m12{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252638,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252765,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252867,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.m7f{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);}
.m79{transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253522,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253835,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254047,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls3c{letter-spacing:-5.400000px;}
.ls31{letter-spacing:-3.192000px;}
.ls30{letter-spacing:-2.964000px;}
.ls40{letter-spacing:-2.850000px;}
.ls38{letter-spacing:-1.824000px;}
.ls39{letter-spacing:-1.710000px;}
.ls23{letter-spacing:-1.604369px;}
.ls22{letter-spacing:-1.336974px;}
.ls21{letter-spacing:-1.134000px;}
.ls26{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-1.020000px;}
.ls27{letter-spacing:-0.960000px;}
.ls36{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.690000px;}
.ls11{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.780000px;}
.ls28{letter-spacing:0.792000px;}
.ls2a{letter-spacing:0.828000px;}
.ls17{letter-spacing:0.840000px;}
.ls1b{letter-spacing:0.900000px;}
.ls3d{letter-spacing:0.912000px;}
.ls0{letter-spacing:0.960000px;}
.ls34{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.050000px;}
.ls3f{letter-spacing:1.056000px;}
.ls2{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.198800px;}
.ls10{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.350000px;}
.ls2b{letter-spacing:1.380000px;}
.ls14{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.500000px;}
.ls33{letter-spacing:1.560000px;}
.ls35{letter-spacing:1.590000px;}
.lse{letter-spacing:1.620000px;}
.ls2c{letter-spacing:1.680000px;}
.ls2e{letter-spacing:1.740000px;}
.ls7{letter-spacing:1.800000px;}
.ls1a{letter-spacing:1.860000px;}
.ls2f{letter-spacing:1.920000px;}
.ls32{letter-spacing:1.980000px;}
.ls37{letter-spacing:2.040000px;}
.ls3a{letter-spacing:2.100000px;}
.lsd{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.220000px;}
.ls9{letter-spacing:2.250000px;}
.ls1d{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.640000px;}
.ls13{letter-spacing:2.820000px;}
.ls5{letter-spacing:2.941344px;}
.lsb{letter-spacing:2840.191200px;}
.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;}
.ws12{word-spacing:-16.020000px;}
.ws3{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.040000px;}
.ws10{word-spacing:-13.980000px;}
.wsf{word-spacing:-13.920000px;}
.wsd{word-spacing:-12.960000px;}
.wse{word-spacing:-12.480000px;}
.wsc{word-spacing:-12.366000px;}
.ws13{word-spacing:-9.648000px;}
.ws5{word-spacing:-2.941344px;}
.ws1d{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.340000px;}
.ws1f{word-spacing:-2.280000px;}
.ws22{word-spacing:-2.220000px;}
.ws3c{word-spacing:-2.160000px;}
.ws60{word-spacing:-1.920000px;}
.ws59{word-spacing:-1.860000px;}
.ws63{word-spacing:-1.824000px;}
.ws7{word-spacing:-1.800000px;}
.ws38{word-spacing:-1.680000px;}
.ws44{word-spacing:-1.620000px;}
.ws49{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.380000px;}
.ws8{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.320000px;}
.ws45{word-spacing:-1.260000px;}
.ws34{word-spacing:-1.200000px;}
.ws4d{word-spacing:-1.140000px;}
.ws9{word-spacing:-1.080000px;}
.ws42{word-spacing:-1.020000px;}
.ws1{word-spacing:-1.008000px;}
.ws4c{word-spacing:-0.960000px;}
.ws67{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.828000px;}
.ws19{word-spacing:-0.792000px;}
.ws6b{word-spacing:-0.780000px;}
.ws58{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.528000px;}
.ws5e{word-spacing:-0.480000px;}
.ws4b{word-spacing:-0.360000px;}
.ws68{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws5c{word-spacing:0.120000px;}
.ws6d{word-spacing:0.240000px;}
.ws1e{word-spacing:0.300000px;}
.ws5a{word-spacing:0.360000px;}
.ws64{word-spacing:0.384000px;}
.wsa{word-spacing:0.540000px;}
.ws61{word-spacing:0.570000px;}
.ws39{word-spacing:0.600000px;}
.ws46{word-spacing:0.684000px;}
.ws31{word-spacing:0.780000px;}
.ws4e{word-spacing:0.840000px;}
.ws47{word-spacing:0.912000px;}
.ws4a{word-spacing:0.960000px;}
.ws6a{word-spacing:1.008000px;}
.ws5d{word-spacing:1.020000px;}
.ws29{word-spacing:1.140000px;}
.ws3b{word-spacing:1.260000px;}
.ws37{word-spacing:1.320000px;}
.ws14{word-spacing:1.336974px;}
.ws3f{word-spacing:1.380000px;}
.ws69{word-spacing:1.392000px;}
.ws41{word-spacing:1.440000px;}
.ws4f{word-spacing:1.500000px;}
.ws30{word-spacing:1.560000px;}
.ws15{word-spacing:1.604369px;}
.ws56{word-spacing:1.680000px;}
.ws6{word-spacing:1.710000px;}
.ws66{word-spacing:1.824000px;}
.ws70{word-spacing:2.100000px;}
.ws5b{word-spacing:2.160000px;}
.ws33{word-spacing:2.340000px;}
.ws5f{word-spacing:2.520000px;}
.ws3a{word-spacing:2.580000px;}
.ws6e{word-spacing:2.700000px;}
.ws3e{word-spacing:2.760000px;}
.ws50{word-spacing:2.880000px;}
.ws35{word-spacing:2.940000px;}
.ws65{word-spacing:2.976000px;}
.ws55{word-spacing:3.120000px;}
.ws43{word-spacing:3.240000px;}
.ws40{word-spacing:3.360000px;}
.ws26{word-spacing:3.420000px;}
.ws57{word-spacing:3.540000px;}
.ws36{word-spacing:3.660000px;}
.ws1c{word-spacing:3.720000px;}
.ws20{word-spacing:3.780000px;}
.ws24{word-spacing:3.960000px;}
.ws54{word-spacing:4.020000px;}
.ws6c{word-spacing:4.260000px;}
.ws32{word-spacing:4.320000px;}
.ws53{word-spacing:4.800000px;}
.ws51{word-spacing:4.860000px;}
.ws52{word-spacing:5.040000px;}
.ws62{word-spacing:5.400000px;}
.ws6f{word-spacing:5.520000px;}
.ws25{word-spacing:5.820000px;}
.ws2c{word-spacing:6.060000px;}
.ws1b{word-spacing:6.180000px;}
.ws2d{word-spacing:6.240000px;}
.ws1a{word-spacing:6.540000px;}
.ws2a{word-spacing:7.440000px;}
.ws2b{word-spacing:9.120000px;}
.ws21{word-spacing:10.200000px;}
.wsb{word-spacing:11.183400px;}
.ws2f{word-spacing:606.992400px;}
.ws48{word-spacing:2794.351200px;}
._8{margin-left:-1395.102780px;}
._7{margin-left:-11.550780px;}
._2{margin-left:-7.590800px;}
._6{margin-left:-4.806579px;}
._4{margin-left:-3.031717px;}
._1{margin-left:-1.645020px;}
._0{width:1.531800px;}
._3{width:2.941344px;}
._9{width:4.612765px;}
._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);}
.fsb{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.600000px;}
.fsc{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;}
.y8e{bottom:46.741500px;}
.y8d{bottom:63.238500px;}
.y60{bottom:65.789700px;}
.y34{bottom:66.330750px;}
.yf{bottom:66.344250px;}
.y1f{bottom:66.380250px;}
.y2f{bottom:66.434250px;}
.ycd{bottom:67.975800px;}
.ycc{bottom:81.475800px;}
.y33{bottom:84.330750px;}
.ye{bottom:84.339750px;}
.y1e{bottom:84.375750px;}
.y2e{bottom:84.429750px;}
.y8f{bottom:87.725250px;}
.ycb{bottom:101.353650px;}
.ya7{bottom:102.330750px;}
.yd{bottom:102.335250px;}
.y1d{bottom:102.371250px;}
.y2d{bottom:102.425250px;}
.y61{bottom:111.114600px;}
.yca{bottom:114.853650px;}
.yc{bottom:120.330750px;}
.y1c{bottom:120.366750px;}
.y2c{bottom:120.420750px;}
.yc9{bottom:134.719350px;}
.ya6{bottom:138.330750px;}
.y89{bottom:138.330900px;}
.y2b{bottom:138.416250px;}
.yc8{bottom:154.603350px;}
.ya5{bottom:156.330750px;}
.y88{bottom:156.330900px;}
.y1b{bottom:156.371250px;}
.y2a{bottom:156.411750px;}
.yc7{bottom:168.103350px;}
.ya4{bottom:174.330750px;}
.y87{bottom:174.330900px;}
.y1a{bottom:174.366750px;}
.y29{bottom:174.407250px;}
.yc6{bottom:187.987350px;}
.ya3{bottom:192.330750px;}
.y86{bottom:192.330900px;}
.y19{bottom:192.362250px;}
.yc5{bottom:201.487350px;}
.ya2{bottom:210.330750px;}
.y85{bottom:210.330900px;}
.y18{bottom:210.357750px;}
.y28{bottom:210.411750px;}
.yc4{bottom:221.359350px;}
.ya1{bottom:228.330750px;}
.y84{bottom:228.330900px;}
.y17{bottom:228.353250px;}
.y27{bottom:228.407250px;}
.yc3{bottom:234.859350px;}
.ya0{bottom:246.330750px;}
.y83{bottom:246.330900px;}
.y16{bottom:246.348750px;}
.yc2{bottom:254.743350px;}
.y9f{bottom:264.330750px;}
.y82{bottom:264.330900px;}
.y15{bottom:264.344250px;}
.y26{bottom:264.411750px;}
.yc1{bottom:268.243350px;}
.y9e{bottom:282.330750px;}
.y81{bottom:282.330900px;}
.y14{bottom:282.339750px;}
.y25{bottom:282.407250px;}
.yc0{bottom:288.115350px;}
.y9d{bottom:300.330750px;}
.y80{bottom:300.330900px;}
.y24{bottom:300.402750px;}
.ybf{bottom:301.615350px;}
.y48{bottom:307.699050px;}
.y9c{bottom:318.330750px;}
.y7f{bottom:318.330900px;}
.y13{bottom:318.344250px;}
.y23{bottom:318.398250px;}
.ybe{bottom:321.499350px;}
.y47{bottom:325.699050px;}
.ybd{bottom:334.999350px;}
.y9b{bottom:336.330750px;}
.y7e{bottom:336.330900px;}
.y12{bottom:336.339750px;}
.y22{bottom:336.393750px;}
.y46{bottom:343.699050px;}
.y9a{bottom:354.330750px;}
.y7d{bottom:354.330900px;}
.y11{bottom:354.335250px;}
.y21{bottom:354.389250px;}
.ybc{bottom:354.877200px;}
.y45{bottom:361.699050px;}
.ybb{bottom:368.377200px;}
.y10{bottom:372.330750px;}
.y7c{bottom:372.330900px;}
.y20{bottom:372.384750px;}
.y44{bottom:379.699050px;}
.yba{bottom:388.261200px;}
.y99{bottom:390.330750px;}
.y7b{bottom:390.330900px;}
.y43{bottom:397.699050px;}
.yb9{bottom:408.133200px;}
.yb2{bottom:408.330750px;}
.y7a{bottom:408.330900px;}
.y3{bottom:410.215350px;}
.yb8{bottom:421.633200px;}
.y98{bottom:426.330750px;}
.y79{bottom:426.330900px;}
.y42{bottom:433.699050px;}
.y97{bottom:444.330750px;}
.y78{bottom:444.330900px;}
.y41{bottom:451.699050px;}
.y5e{bottom:462.330750px;}
.y77{bottom:462.330900px;}
.y40{bottom:469.699050px;}
.y5d{bottom:480.330750px;}
.y76{bottom:480.330900px;}
.y3f{bottom:487.699050px;}
.y5c{bottom:498.330750px;}
.y75{bottom:498.330900px;}
.y5b{bottom:516.330750px;}
.y74{bottom:516.330900px;}
.y5a{bottom:534.330750px;}
.y73{bottom:534.330900px;}
.y59{bottom:552.330750px;}
.y72{bottom:552.330900px;}
.y58{bottom:570.330750px;}
.y71{bottom:570.330900px;}
.yb{bottom:588.330750px;}
.y70{bottom:588.330900px;}
.ya{bottom:606.330750px;}
.y6f{bottom:606.330900px;}
.y57{bottom:624.330750px;}
.y6e{bottom:624.330900px;}
.y56{bottom:642.330750px;}
.y6d{bottom:642.330900px;}
.y55{bottom:660.330750px;}
.y6c{bottom:660.330900px;}
.y3e{bottom:660.754050px;}
.y54{bottom:678.330750px;}
.y6b{bottom:678.330900px;}
.y9{bottom:678.573150px;}
.y3d{bottom:678.754050px;}
.y53{bottom:696.330750px;}
.y8c{bottom:696.330900px;}
.y3c{bottom:696.754050px;}
.y8{bottom:708.565650px;}
.y5f{bottom:709.830750px;}
.y52{bottom:714.330750px;}
.y6a{bottom:714.330900px;}
.y3b{bottom:714.754050px;}
.y51{bottom:732.330750px;}
.y69{bottom:732.330900px;}
.y7{bottom:738.558150px;}
.y49{bottom:741.826800px;}
.y50{bottom:750.330750px;}
.y68{bottom:750.330900px;}
.y4f{bottom:768.330750px;}
.y67{bottom:768.330900px;}
.y6{bottom:768.550650px;}
.y4e{bottom:786.330750px;}
.y66{bottom:786.330900px;}
.y4d{bottom:804.330750px;}
.y65{bottom:804.330900px;}
.y64{bottom:822.327000px;}
.y4c{bottom:822.330750px;}
.y8b{bottom:822.330900px;}
.y63{bottom:840.327000px;}
.y4b{bottom:840.330750px;}
.yd0{bottom:840.330900px;}
.y62{bottom:858.327000px;}
.y4a{bottom:858.330750px;}
.y8a{bottom:858.330900px;}
.y5{bottom:867.924421px;}
.y96{bottom:876.330750px;}
.ycf{bottom:876.330900px;}
.y95{bottom:894.330750px;}
.yce{bottom:894.330900px;}
.y4{bottom:908.037000px;}
.yb1{bottom:912.330750px;}
.yb0{bottom:930.330750px;}
.y3a{bottom:946.558800px;}
.yaf{bottom:948.330750px;}
.y39{bottom:979.549800px;}
.y94{bottom:981.269700px;}
.yae{bottom:984.330750px;}
.yb7{bottom:988.206150px;}
.y38{bottom:1009.558800px;}
.y93{bottom:1015.783200px;}
.y2{bottom:1021.381500px;}
.yb6{bottom:1022.719650px;}
.yad{bottom:1038.330750px;}
.y37{bottom:1039.567800px;}
.y92{bottom:1050.296700px;}
.yac{bottom:1056.330750px;}
.yb5{bottom:1057.233150px;}
.yab{bottom:1074.330750px;}
.y91{bottom:1084.810200px;}
.y36{bottom:1085.715015px;}
.yb4{bottom:1091.746650px;}
.yaa{bottom:1092.330750px;}
.ya9{bottom:1110.330750px;}
.y90{bottom:1119.323700px;}
.y35{bottom:1122.481800px;}
.yb3{bottom:1126.260150px;}
.ya8{bottom:1128.330750px;}
.y1{bottom:1199.642850px;}
.y30{bottom:1214.502000px;}
.y32{bottom:1214.517000px;}
.y31{bottom:1214.820000px;}
.h13{height:30.816000px;}
.ha{height:37.098000px;}
.h1a{height:40.752000px;}
.h9{height:41.088000px;}
.h8{height:41.568000px;}
.hb{height:45.846000px;}
.h16{height:46.224000px;}
.he{height:46.386000px;}
.h17{height:47.034000px;}
.h18{height:50.328000px;}
.h14{height:50.940000px;}
.h12{height:51.360000px;}
.hf{height:51.540000px;}
.hc{height:51.960000px;}
.h3{height:57.209400px;}
.h7{height:61.830000px;}
.h6{height:62.100000px;}
.h15{height:62.352000px;}
.hd{height:69.579000px;}
.h11{height:71.904000px;}
.h19{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;}
.xa{left:44.297700px;}
.x3{left:51.456150px;}
.x11{left:72.283500px;}
.x1c{left:77.067000px;}
.x1a{left:78.612600px;}
.x4{left:81.482250px;}
.xf{left:90.029250px;}
.x9{left:93.543300px;}
.x10{left:96.779250px;}
.x16{left:161.574750px;}
.x15{left:182.834550px;}
.xb{left:323.149650px;}
.x6{left:324.741150px;}
.x12{left:403.936950px;}
.x13{left:405.000000px;}
.x2{left:422.029200px;}
.x1d{left:425.196750px;}
.x17{left:514.488150px;}
.x19{left:535.743150px;}
.xc{left:595.275600px;}
.x5{left:597.933000px;}
.x1{left:680.784450px;}
.x14{left:804.868500px;}
.xd{left:806.994450px;}
.x7{left:808.372050px;}
.x8{left:815.122050px;}
.x1b{left:826.653000px;}
.xe{left:833.594850px;}
.x18{left:838.107750px;}
@media print{
.v2{vertical-align:-1.077333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.130667pt;}
.ls3c{letter-spacing:-4.800000pt;}
.ls31{letter-spacing:-2.837333pt;}
.ls30{letter-spacing:-2.634667pt;}
.ls40{letter-spacing:-2.533333pt;}
.ls38{letter-spacing:-1.621333pt;}
.ls39{letter-spacing:-1.520000pt;}
.ls23{letter-spacing:-1.426106pt;}
.ls22{letter-spacing:-1.188421pt;}
.ls21{letter-spacing:-1.008000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.906667pt;}
.ls27{letter-spacing:-0.853333pt;}
.ls36{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.613333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls28{letter-spacing:0.704000pt;}
.ls2a{letter-spacing:0.736000pt;}
.ls17{letter-spacing:0.746667pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.810667pt;}
.ls0{letter-spacing:0.853333pt;}
.ls34{letter-spacing:0.880000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:0.933333pt;}
.ls3f{letter-spacing:0.938667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.065600pt;}
.ls10{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.200000pt;}
.ls2b{letter-spacing:1.226667pt;}
.ls14{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.333333pt;}
.ls33{letter-spacing:1.386667pt;}
.ls35{letter-spacing:1.413333pt;}
.lse{letter-spacing:1.440000pt;}
.ls2c{letter-spacing:1.493333pt;}
.ls2e{letter-spacing:1.546667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:1.653333pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls32{letter-spacing:1.760000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls3a{letter-spacing:1.866667pt;}
.lsd{letter-spacing:1.920000pt;}
.lsc{letter-spacing:1.973333pt;}
.ls9{letter-spacing:2.000000pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.346667pt;}
.ls13{letter-spacing:2.506667pt;}
.ls5{letter-spacing:2.614528pt;}
.lsb{letter-spacing:2524.614400pt;}
.ws0{word-spacing:-21.333333pt;}
.ws12{word-spacing:-14.240000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.480000pt;}
.ws10{word-spacing:-12.426667pt;}
.wsf{word-spacing:-12.373333pt;}
.wsd{word-spacing:-11.520000pt;}
.wse{word-spacing:-11.093333pt;}
.wsc{word-spacing:-10.992000pt;}
.ws13{word-spacing:-8.576000pt;}
.ws5{word-spacing:-2.614528pt;}
.ws1d{word-spacing:-2.346667pt;}
.ws23{word-spacing:-2.080000pt;}
.ws1f{word-spacing:-2.026667pt;}
.ws22{word-spacing:-1.973333pt;}
.ws3c{word-spacing:-1.920000pt;}
.ws60{word-spacing:-1.706667pt;}
.ws59{word-spacing:-1.653333pt;}
.ws63{word-spacing:-1.621333pt;}
.ws7{word-spacing:-1.600000pt;}
.ws38{word-spacing:-1.493333pt;}
.ws44{word-spacing:-1.440000pt;}
.ws49{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.226667pt;}
.ws8{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.173333pt;}
.ws45{word-spacing:-1.120000pt;}
.ws34{word-spacing:-1.066667pt;}
.ws4d{word-spacing:-1.013333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws42{word-spacing:-0.906667pt;}
.ws1{word-spacing:-0.896000pt;}
.ws4c{word-spacing:-0.853333pt;}
.ws67{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.736000pt;}
.ws19{word-spacing:-0.704000pt;}
.ws6b{word-spacing:-0.693333pt;}
.ws58{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.469333pt;}
.ws5e{word-spacing:-0.426667pt;}
.ws4b{word-spacing:-0.320000pt;}
.ws68{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.106667pt;}
.ws6d{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.266667pt;}
.ws5a{word-spacing:0.320000pt;}
.ws64{word-spacing:0.341333pt;}
.wsa{word-spacing:0.480000pt;}
.ws61{word-spacing:0.506667pt;}
.ws39{word-spacing:0.533333pt;}
.ws46{word-spacing:0.608000pt;}
.ws31{word-spacing:0.693333pt;}
.ws4e{word-spacing:0.746667pt;}
.ws47{word-spacing:0.810667pt;}
.ws4a{word-spacing:0.853333pt;}
.ws6a{word-spacing:0.896000pt;}
.ws5d{word-spacing:0.906667pt;}
.ws29{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.120000pt;}
.ws37{word-spacing:1.173333pt;}
.ws14{word-spacing:1.188421pt;}
.ws3f{word-spacing:1.226667pt;}
.ws69{word-spacing:1.237333pt;}
.ws41{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.333333pt;}
.ws30{word-spacing:1.386667pt;}
.ws15{word-spacing:1.426106pt;}
.ws56{word-spacing:1.493333pt;}
.ws6{word-spacing:1.520000pt;}
.ws66{word-spacing:1.621333pt;}
.ws70{word-spacing:1.866667pt;}
.ws5b{word-spacing:1.920000pt;}
.ws33{word-spacing:2.080000pt;}
.ws5f{word-spacing:2.240000pt;}
.ws3a{word-spacing:2.293333pt;}
.ws6e{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.453333pt;}
.ws50{word-spacing:2.560000pt;}
.ws35{word-spacing:2.613333pt;}
.ws65{word-spacing:2.645333pt;}
.ws55{word-spacing:2.773333pt;}
.ws43{word-spacing:2.880000pt;}
.ws40{word-spacing:2.986667pt;}
.ws26{word-spacing:3.040000pt;}
.ws57{word-spacing:3.146667pt;}
.ws36{word-spacing:3.253333pt;}
.ws1c{word-spacing:3.306667pt;}
.ws20{word-spacing:3.360000pt;}
.ws24{word-spacing:3.520000pt;}
.ws54{word-spacing:3.573333pt;}
.ws6c{word-spacing:3.786667pt;}
.ws32{word-spacing:3.840000pt;}
.ws53{word-spacing:4.266667pt;}
.ws51{word-spacing:4.320000pt;}
.ws52{word-spacing:4.480000pt;}
.ws62{word-spacing:4.800000pt;}
.ws6f{word-spacing:4.906667pt;}
.ws25{word-spacing:5.173333pt;}
.ws2c{word-spacing:5.386667pt;}
.ws1b{word-spacing:5.493333pt;}
.ws2d{word-spacing:5.546667pt;}
.ws1a{word-spacing:5.813333pt;}
.ws2a{word-spacing:6.613333pt;}
.ws2b{word-spacing:8.106667pt;}
.ws21{word-spacing:9.066667pt;}
.wsb{word-spacing:9.940800pt;}
.ws2f{word-spacing:539.548800pt;}
.ws48{word-spacing:2483.867733pt;}
._8{margin-left:-1240.091360pt;}
._7{margin-left:-10.267360pt;}
._2{margin-left:-6.747378pt;}
._6{margin-left:-4.272515pt;}
._4{margin-left:-2.694860pt;}
._1{margin-left:-1.462240pt;}
._0{width:1.361600pt;}
._3{width:2.614528pt;}
._9{width:4.100236pt;}
._5{width:5.936724pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:59.200000pt;}
.fsc{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;}
.y8e{bottom:41.548000pt;}
.y8d{bottom:56.212000pt;}
.y60{bottom:58.479733pt;}
.y34{bottom:58.960667pt;}
.yf{bottom:58.972667pt;}
.y1f{bottom:59.004667pt;}
.y2f{bottom:59.052667pt;}
.ycd{bottom:60.422933pt;}
.ycc{bottom:72.422933pt;}
.y33{bottom:74.960667pt;}
.ye{bottom:74.968667pt;}
.y1e{bottom:75.000667pt;}
.y2e{bottom:75.048667pt;}
.y8f{bottom:77.978000pt;}
.ycb{bottom:90.092133pt;}
.ya7{bottom:90.960667pt;}
.yd{bottom:90.964667pt;}
.y1d{bottom:90.996667pt;}
.y2d{bottom:91.044667pt;}
.y61{bottom:98.768533pt;}
.yca{bottom:102.092133pt;}
.yc{bottom:106.960667pt;}
.y1c{bottom:106.992667pt;}
.y2c{bottom:107.040667pt;}
.yc9{bottom:119.750533pt;}
.ya6{bottom:122.960667pt;}
.y89{bottom:122.960800pt;}
.y2b{bottom:123.036667pt;}
.yc8{bottom:137.425200pt;}
.ya5{bottom:138.960667pt;}
.y88{bottom:138.960800pt;}
.y1b{bottom:138.996667pt;}
.y2a{bottom:139.032667pt;}
.yc7{bottom:149.425200pt;}
.ya4{bottom:154.960667pt;}
.y87{bottom:154.960800pt;}
.y1a{bottom:154.992667pt;}
.y29{bottom:155.028667pt;}
.yc6{bottom:167.099867pt;}
.ya3{bottom:170.960667pt;}
.y86{bottom:170.960800pt;}
.y19{bottom:170.988667pt;}
.yc5{bottom:179.099867pt;}
.ya2{bottom:186.960667pt;}
.y85{bottom:186.960800pt;}
.y18{bottom:186.984667pt;}
.y28{bottom:187.032667pt;}
.yc4{bottom:196.763867pt;}
.ya1{bottom:202.960667pt;}
.y84{bottom:202.960800pt;}
.y17{bottom:202.980667pt;}
.y27{bottom:203.028667pt;}
.yc3{bottom:208.763867pt;}
.ya0{bottom:218.960667pt;}
.y83{bottom:218.960800pt;}
.y16{bottom:218.976667pt;}
.yc2{bottom:226.438533pt;}
.y9f{bottom:234.960667pt;}
.y82{bottom:234.960800pt;}
.y15{bottom:234.972667pt;}
.y26{bottom:235.032667pt;}
.yc1{bottom:238.438533pt;}
.y9e{bottom:250.960667pt;}
.y81{bottom:250.960800pt;}
.y14{bottom:250.968667pt;}
.y25{bottom:251.028667pt;}
.yc0{bottom:256.102533pt;}
.y9d{bottom:266.960667pt;}
.y80{bottom:266.960800pt;}
.y24{bottom:267.024667pt;}
.ybf{bottom:268.102533pt;}
.y48{bottom:273.510267pt;}
.y9c{bottom:282.960667pt;}
.y7f{bottom:282.960800pt;}
.y13{bottom:282.972667pt;}
.y23{bottom:283.020667pt;}
.ybe{bottom:285.777200pt;}
.y47{bottom:289.510267pt;}
.ybd{bottom:297.777200pt;}
.y9b{bottom:298.960667pt;}
.y7e{bottom:298.960800pt;}
.y12{bottom:298.968667pt;}
.y22{bottom:299.016667pt;}
.y46{bottom:305.510267pt;}
.y9a{bottom:314.960667pt;}
.y7d{bottom:314.960800pt;}
.y11{bottom:314.964667pt;}
.y21{bottom:315.012667pt;}
.ybc{bottom:315.446400pt;}
.y45{bottom:321.510267pt;}
.ybb{bottom:327.446400pt;}
.y10{bottom:330.960667pt;}
.y7c{bottom:330.960800pt;}
.y20{bottom:331.008667pt;}
.y44{bottom:337.510267pt;}
.yba{bottom:345.121067pt;}
.y99{bottom:346.960667pt;}
.y7b{bottom:346.960800pt;}
.y43{bottom:353.510267pt;}
.yb9{bottom:362.785067pt;}
.yb2{bottom:362.960667pt;}
.y7a{bottom:362.960800pt;}
.y3{bottom:364.635867pt;}
.yb8{bottom:374.785067pt;}
.y98{bottom:378.960667pt;}
.y79{bottom:378.960800pt;}
.y42{bottom:385.510267pt;}
.y97{bottom:394.960667pt;}
.y78{bottom:394.960800pt;}
.y41{bottom:401.510267pt;}
.y5e{bottom:410.960667pt;}
.y77{bottom:410.960800pt;}
.y40{bottom:417.510267pt;}
.y5d{bottom:426.960667pt;}
.y76{bottom:426.960800pt;}
.y3f{bottom:433.510267pt;}
.y5c{bottom:442.960667pt;}
.y75{bottom:442.960800pt;}
.y5b{bottom:458.960667pt;}
.y74{bottom:458.960800pt;}
.y5a{bottom:474.960667pt;}
.y73{bottom:474.960800pt;}
.y59{bottom:490.960667pt;}
.y72{bottom:490.960800pt;}
.y58{bottom:506.960667pt;}
.y71{bottom:506.960800pt;}
.yb{bottom:522.960667pt;}
.y70{bottom:522.960800pt;}
.ya{bottom:538.960667pt;}
.y6f{bottom:538.960800pt;}
.y57{bottom:554.960667pt;}
.y6e{bottom:554.960800pt;}
.y56{bottom:570.960667pt;}
.y6d{bottom:570.960800pt;}
.y55{bottom:586.960667pt;}
.y6c{bottom:586.960800pt;}
.y3e{bottom:587.336933pt;}
.y54{bottom:602.960667pt;}
.y6b{bottom:602.960800pt;}
.y9{bottom:603.176133pt;}
.y3d{bottom:603.336933pt;}
.y53{bottom:618.960667pt;}
.y8c{bottom:618.960800pt;}
.y3c{bottom:619.336933pt;}
.y8{bottom:629.836133pt;}
.y5f{bottom:630.960667pt;}
.y52{bottom:634.960667pt;}
.y6a{bottom:634.960800pt;}
.y3b{bottom:635.336933pt;}
.y51{bottom:650.960667pt;}
.y69{bottom:650.960800pt;}
.y7{bottom:656.496133pt;}
.y49{bottom:659.401600pt;}
.y50{bottom:666.960667pt;}
.y68{bottom:666.960800pt;}
.y4f{bottom:682.960667pt;}
.y67{bottom:682.960800pt;}
.y6{bottom:683.156133pt;}
.y4e{bottom:698.960667pt;}
.y66{bottom:698.960800pt;}
.y4d{bottom:714.960667pt;}
.y65{bottom:714.960800pt;}
.y64{bottom:730.957333pt;}
.y4c{bottom:730.960667pt;}
.y8b{bottom:730.960800pt;}
.y63{bottom:746.957333pt;}
.y4b{bottom:746.960667pt;}
.yd0{bottom:746.960800pt;}
.y62{bottom:762.957333pt;}
.y4a{bottom:762.960667pt;}
.y8a{bottom:762.960800pt;}
.y5{bottom:771.488374pt;}
.y96{bottom:778.960667pt;}
.ycf{bottom:778.960800pt;}
.y95{bottom:794.960667pt;}
.yce{bottom:794.960800pt;}
.y4{bottom:807.144000pt;}
.yb1{bottom:810.960667pt;}
.yb0{bottom:826.960667pt;}
.y3a{bottom:841.385600pt;}
.yaf{bottom:842.960667pt;}
.y39{bottom:870.710933pt;}
.y94{bottom:872.239733pt;}
.yae{bottom:874.960667pt;}
.yb7{bottom:878.405467pt;}
.y38{bottom:897.385600pt;}
.y93{bottom:902.918400pt;}
.y2{bottom:907.894667pt;}
.yb6{bottom:909.084133pt;}
.yad{bottom:922.960667pt;}
.y37{bottom:924.060267pt;}
.y92{bottom:933.597067pt;}
.yac{bottom:938.960667pt;}
.yb5{bottom:939.762800pt;}
.yab{bottom:954.960667pt;}
.y91{bottom:964.275733pt;}
.y36{bottom:965.080013pt;}
.yb4{bottom:970.441467pt;}
.yaa{bottom:970.960667pt;}
.ya9{bottom:986.960667pt;}
.y90{bottom:994.954400pt;}
.y35{bottom:997.761600pt;}
.yb3{bottom:1001.120133pt;}
.ya8{bottom:1002.960667pt;}
.y1{bottom:1066.349200pt;}
.y30{bottom:1079.557333pt;}
.y32{bottom:1079.570667pt;}
.y31{bottom:1079.840000pt;}
.h13{height:27.392000pt;}
.ha{height:32.976000pt;}
.h1a{height:36.224000pt;}
.h9{height:36.522667pt;}
.h8{height:36.949333pt;}
.hb{height:40.752000pt;}
.h16{height:41.088000pt;}
.he{height:41.232000pt;}
.h17{height:41.808000pt;}
.h18{height:44.736000pt;}
.h14{height:45.280000pt;}
.h12{height:45.653333pt;}
.hf{height:45.813333pt;}
.hc{height:46.186667pt;}
.h3{height:50.852800pt;}
.h7{height:54.960000pt;}
.h6{height:55.200000pt;}
.h15{height:55.424000pt;}
.hd{height:61.848000pt;}
.h11{height:63.914667pt;}
.h19{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;}
.xa{left:39.375733pt;}
.x3{left:45.738800pt;}
.x11{left:64.252000pt;}
.x1c{left:68.504000pt;}
.x1a{left:69.877867pt;}
.x4{left:72.428667pt;}
.xf{left:80.026000pt;}
.x9{left:83.149600pt;}
.x10{left:86.026000pt;}
.x16{left:143.622000pt;}
.x15{left:162.519600pt;}
.xb{left:287.244133pt;}
.x6{left:288.658800pt;}
.x12{left:359.055067pt;}
.x13{left:360.000000pt;}
.x2{left:375.137067pt;}
.x1d{left:377.952667pt;}
.x17{left:457.322800pt;}
.x19{left:476.216133pt;}
.xc{left:529.133867pt;}
.x5{left:531.496000pt;}
.x1{left:605.141733pt;}
.x14{left:715.438667pt;}
.xd{left:717.328400pt;}
.x7{left:718.552933pt;}
.x8{left:724.552933pt;}
.x1b{left:734.802667pt;}
.xe{left:740.973200pt;}
.x18{left:744.984667pt;}
}




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