
    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_91ee7ba576c87ffb51acaa0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_db7d6fa41f4ebd5a8126ec73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_c706bb3bfa7f2003692fb24b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.262000;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_bdf5eadf27ed8ce3bd72d172.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165000;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_7436ed3ddd0d4d332acaf710.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.261000;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_04d0ab46934eab09b2f88226.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.279900;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_1a12f2ffb11e4f795984225a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184000;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_1af8201f94bb9e116e9bbf3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.165000;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_165373d68fb1489f220881db.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.261000;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_bdf5eadf27ed8ce3bd72d172.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.165000;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;}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248141,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248289,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248479,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248591,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m93{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m4d{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.m60{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);}
.m19{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249632,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.mb{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);}
.m36{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249834,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.m26{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250087,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250271,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m2b{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250799,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250913,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252218,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.774000px;}
.v1{vertical-align:21.966600px;}
.ls16{letter-spacing:-5.400000px;}
.ls18{letter-spacing:-3.510000px;}
.ls1d{letter-spacing:-3.432000px;}
.ls1a{letter-spacing:-3.300000px;}
.ls12{letter-spacing:-0.858000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls32{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.462000px;}
.ls2c{letter-spacing:-0.399000px;}
.lsc{letter-spacing:-0.396000px;}
.ls2d{letter-spacing:-0.342000px;}
.lsb{letter-spacing:-0.330000px;}
.ls24{letter-spacing:-0.285000px;}
.lsa{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.264000px;}
.ls2b{letter-spacing:-0.228000px;}
.ls6{letter-spacing:-0.198000px;}
.ls2a{letter-spacing:-0.171000px;}
.lsd{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.115434px;}
.ls4{letter-spacing:-0.114000px;}
.ls33{letter-spacing:-0.099693px;}
.ls10{letter-spacing:-0.076956px;}
.ls5{letter-spacing:-0.066000px;}
.ls28{letter-spacing:-0.057000px;}
.ls2{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000120px;}
.ls1c{letter-spacing:0.038478px;}
.ls23{letter-spacing:0.057000px;}
.ls8{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.099693px;}
.ls15{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.171000px;}
.ls1b{letter-spacing:0.198000px;}
.ls31{letter-spacing:0.228000px;}
.ls14{letter-spacing:0.264000px;}
.lse{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.285000px;}
.ls27{letter-spacing:0.342000px;}
.ls17{letter-spacing:0.396000px;}
.ls29{letter-spacing:0.399000px;}
.ls2f{letter-spacing:0.513000px;}
.ls22{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.741000px;}
.ls9{letter-spacing:0.792000px;}
.ls25{letter-spacing:0.798000px;}
.ls21{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.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;}
}
.ws1{word-spacing:-16.632000px;}
.ws72{word-spacing:-13.926000px;}
.ws84{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws32{word-spacing:-13.068000px;}
.ws65{word-spacing:-12.870000px;}
.ws4d{word-spacing:-12.798000px;}
.wsc9{word-spacing:-12.258000px;}
.wsca{word-spacing:-12.141000px;}
.ws4e{word-spacing:-11.970000px;}
.wsc5{word-spacing:-11.913000px;}
.wsd4{word-spacing:-11.799000px;}
.ws98{word-spacing:-11.685000px;}
.ws86{word-spacing:-11.115000px;}
.ws85{word-spacing:-10.830000px;}
.ws73{word-spacing:-8.118858px;}
.ws2{word-spacing:-8.080380px;}
.ws64{word-spacing:-7.964946px;}
.wsba{word-spacing:-6.978510px;}
.wsd2{word-spacing:-6.878817px;}
.ws36{word-spacing:-3.432000px;}
.ws78{word-spacing:-3.366000px;}
.ws3d{word-spacing:-2.970000px;}
.wscc{word-spacing:-2.964000px;}
.ws6d{word-spacing:-2.904000px;}
.ws27{word-spacing:-2.838000px;}
.ws9{word-spacing:-2.772000px;}
.ws56{word-spacing:-2.706000px;}
.wsb2{word-spacing:-2.679000px;}
.ws1c{word-spacing:-2.640000px;}
.ws34{word-spacing:-2.574000px;}
.ws88{word-spacing:-2.508000px;}
.wsa0{word-spacing:-2.451000px;}
.ws7e{word-spacing:-2.442000px;}
.ws5{word-spacing:-2.394000px;}
.ws40{word-spacing:-2.376000px;}
.ws9f{word-spacing:-2.337000px;}
.ws42{word-spacing:-2.310000px;}
.wsb3{word-spacing:-2.280000px;}
.ws48{word-spacing:-2.244000px;}
.ws9c{word-spacing:-2.223000px;}
.wsd6{word-spacing:-2.166000px;}
.ws19{word-spacing:-2.112000px;}
.wsbc{word-spacing:-1.995000px;}
.ws82{word-spacing:-1.980000px;}
.ws80{word-spacing:-1.938000px;}
.ws1a{word-spacing:-1.914000px;}
.wsa2{word-spacing:-1.881000px;}
.ws38{word-spacing:-1.848000px;}
.ws25{word-spacing:-1.782000px;}
.wsa3{word-spacing:-1.710000px;}
.wsc{word-spacing:-1.650000px;}
.ws46{word-spacing:-1.584000px;}
.ws53{word-spacing:-1.518000px;}
.wsc0{word-spacing:-1.482000px;}
.ws15{word-spacing:-1.452000px;}
.wsbb{word-spacing:-1.425000px;}
.ws69{word-spacing:-1.386000px;}
.ws3{word-spacing:-1.350000px;}
.wscf{word-spacing:-1.311000px;}
.ws31{word-spacing:-1.254000px;}
.wsc4{word-spacing:-1.197000px;}
.ws54{word-spacing:-1.188000px;}
.wsc7{word-spacing:-1.140000px;}
.ws7d{word-spacing:-1.122000px;}
.wscd{word-spacing:-1.083000px;}
.ws41{word-spacing:-1.056000px;}
.ws37{word-spacing:-0.990000px;}
.wsc1{word-spacing:-0.969000px;}
.ws4f{word-spacing:-0.924000px;}
.wsa6{word-spacing:-0.912000px;}
.ws5f{word-spacing:-0.858000px;}
.wsb0{word-spacing:-0.855000px;}
.ws2d{word-spacing:-0.792000px;}
.ws61{word-spacing:-0.741000px;}
.ws45{word-spacing:-0.726000px;}
.ws10{word-spacing:-0.720000px;}
.wsd5{word-spacing:-0.684000px;}
.wsb{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.594000px;}
.ws90{word-spacing:-0.570000px;}
.ws59{word-spacing:-0.528000px;}
.wsab{word-spacing:-0.513000px;}
.ws6b{word-spacing:-0.462000px;}
.wsc8{word-spacing:-0.399000px;}
.ws2b{word-spacing:-0.396000px;}
.ws5c{word-spacing:-0.330000px;}
.ws9e{word-spacing:-0.285000px;}
.ws26{word-spacing:-0.264000px;}
.wsbd{word-spacing:-0.228000px;}
.ws18{word-spacing:-0.198000px;}
.ws8c{word-spacing:-0.171000px;}
.ws49{word-spacing:-0.132000px;}
.wsce{word-spacing:-0.114000px;}
.ws4c{word-spacing:-0.099693px;}
.ws22{word-spacing:-0.066000px;}
.ws95{word-spacing:-0.057000px;}
.ws4{word-spacing:0.000000px;}
.wsac{word-spacing:0.057000px;}
.ws71{word-spacing:0.066000px;}
.ws35{word-spacing:0.076956px;}
.wscb{word-spacing:0.099693px;}
.wsa1{word-spacing:0.114000px;}
.ws50{word-spacing:0.132000px;}
.wsa5{word-spacing:0.171000px;}
.ws1e{word-spacing:0.198000px;}
.ws6{word-spacing:0.228000px;}
.ws2e{word-spacing:0.264000px;}
.ws24{word-spacing:0.330000px;}
.ws60{word-spacing:0.342000px;}
.ws3b{word-spacing:0.396000px;}
.ws8f{word-spacing:0.399000px;}
.wsc6{word-spacing:0.456000px;}
.ws5e{word-spacing:0.462000px;}
.ws57{word-spacing:0.528000px;}
.ws23{word-spacing:0.594000px;}
.wsb8{word-spacing:0.627000px;}
.ws3a{word-spacing:0.660000px;}
.wsc2{word-spacing:0.684000px;}
.ws28{word-spacing:0.726000px;}
.wsc3{word-spacing:0.741000px;}
.wsd{word-spacing:0.792000px;}
.ws3c{word-spacing:0.858000px;}
.ws8{word-spacing:0.924000px;}
.ws2c{word-spacing:0.990000px;}
.ws3f{word-spacing:1.056000px;}
.ws8a{word-spacing:1.083000px;}
.ws1d{word-spacing:1.122000px;}
.ws3e{word-spacing:1.188000px;}
.ws89{word-spacing:1.197000px;}
.ws44{word-spacing:1.254000px;}
.wsaa{word-spacing:1.311000px;}
.ws5d{word-spacing:1.320000px;}
.ws6c{word-spacing:1.386000px;}
.wsbf{word-spacing:1.425000px;}
.ws2f{word-spacing:1.452000px;}
.wsa9{word-spacing:1.482000px;}
.ws75{word-spacing:1.518000px;}
.ws16{word-spacing:1.584000px;}
.ws70{word-spacing:1.650000px;}
.ws5b{word-spacing:1.716000px;}
.ws8b{word-spacing:1.767000px;}
.ws67{word-spacing:1.782000px;}
.ws47{word-spacing:1.848000px;}
.wsb1{word-spacing:1.881000px;}
.ws14{word-spacing:1.914000px;}
.ws94{word-spacing:1.938000px;}
.ws1f{word-spacing:2.046000px;}
.ws93{word-spacing:2.109000px;}
.ws58{word-spacing:2.112000px;}
.wsb7{word-spacing:2.166000px;}
.wse{word-spacing:2.178000px;}
.ws6e{word-spacing:2.244000px;}
.wsb6{word-spacing:2.280000px;}
.ws5a{word-spacing:2.310000px;}
.wsb4{word-spacing:2.337000px;}
.ws20{word-spacing:2.376000px;}
.wsaf{word-spacing:2.394000px;}
.ws30{word-spacing:2.442000px;}
.wsb5{word-spacing:2.451000px;}
.ws6a{word-spacing:2.508000px;}
.wsae{word-spacing:2.565000px;}
.ws13{word-spacing:2.574000px;}
.ws55{word-spacing:2.640000px;}
.ws83{word-spacing:2.706000px;}
.ws2a{word-spacing:2.838000px;}
.wsa7{word-spacing:2.850000px;}
.ws12{word-spacing:2.904000px;}
.ws52{word-spacing:2.970000px;}
.ws92{word-spacing:3.021000px;}
.ws29{word-spacing:3.036000px;}
.ws8e{word-spacing:3.078000px;}
.ws7a{word-spacing:3.102000px;}
.ws7f{word-spacing:3.168000px;}
.ws91{word-spacing:3.249000px;}
.ws6f{word-spacing:3.300000px;}
.ws8d{word-spacing:3.306000px;}
.ws9d{word-spacing:3.363000px;}
.wsad{word-spacing:3.420000px;}
.ws76{word-spacing:3.432000px;}
.ws4a{word-spacing:3.477000px;}
.ws66{word-spacing:3.498000px;}
.wsd1{word-spacing:3.534000px;}
.wsbe{word-spacing:3.591000px;}
.wsf{word-spacing:3.630000px;}
.ws96{word-spacing:3.648000px;}
.ws11{word-spacing:3.696000px;}
.ws9b{word-spacing:3.705000px;}
.ws68{word-spacing:3.762000px;}
.ws87{word-spacing:3.828000px;}
.wsa8{word-spacing:3.876000px;}
.ws43{word-spacing:3.894000px;}
.ws4b{word-spacing:3.933000px;}
.ws7b{word-spacing:3.960000px;}
.wsa4{word-spacing:3.990000px;}
.ws51{word-spacing:4.092000px;}
.ws7{word-spacing:4.158000px;}
.ws74{word-spacing:4.224000px;}
.ws39{word-spacing:4.356000px;}
.wsa{word-spacing:4.422000px;}
.ws1b{word-spacing:4.554000px;}
.ws21{word-spacing:4.620000px;}
.ws9a{word-spacing:4.788000px;}
.ws99{word-spacing:5.130000px;}
.wsd3{word-spacing:1842.052200px;}
.ws7c{word-spacing:1846.588200px;}
.ws97{word-spacing:1849.450200px;}
.wsb9{word-spacing:1850.638200px;}
.wsd0{word-spacing:1850.854200px;}
.ws17{word-spacing:1852.258200px;}
.ws81{word-spacing:1855.768200px;}
.ws33{word-spacing:1857.388200px;}
.ws77{word-spacing:1858.144200px;}
.ws63{word-spacing:1866.028200px;}
.ws62{word-spacing:1870.510200px;}
._16{margin-left:-2620.296000px;}
._b{margin-left:-2618.946000px;}
._a{margin-left:-17.957942px;}
._14{margin-left:-16.788000px;}
._c{margin-left:-15.210000px;}
._11{margin-left:-13.428000px;}
._f{margin-left:-12.138000px;}
._4{margin-left:-11.130000px;}
._13{margin-left:-10.104171px;}
._8{margin-left:-8.916000px;}
._10{margin-left:-7.479000px;}
._7{margin-left:-6.384000px;}
._5{margin-left:-4.500000px;}
._3{margin-left:-3.060000px;}
._2{margin-left:-1.620000px;}
._0{width:1.080000px;}
._1{width:2.160000px;}
._e{width:3.213000px;}
._6{width:4.356000px;}
._9{width:5.394000px;}
._17{width:9.364785px;}
._18{width:12.252000px;}
._15{width:14.424000px;}
._12{width:43.776000px;}
._d{width:48.735000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:89.716500px;}
.y68{bottom:89.716650px;}
.y138{bottom:89.718750px;}
.yb8{bottom:89.718900px;}
.y9c{bottom:89.719350px;}
.y86{bottom:89.721150px;}
.yec{bottom:89.739600px;}
.y11d{bottom:89.751000px;}
.y137{bottom:107.716500px;}
.y66{bottom:107.716650px;}
.y85{bottom:107.718900px;}
.y22{bottom:109.700850px;}
.yeb{bottom:109.718100px;}
.y11c{bottom:109.729500px;}
.y67{bottom:112.461900px;}
.y65{bottom:125.716650px;}
.y49{bottom:129.685050px;}
.y21{bottom:129.690600px;}
.yab{bottom:129.696000px;}
.yea{bottom:129.696600px;}
.y11b{bottom:129.708000px;}
.yd2{bottom:129.759900px;}
.y87{bottom:148.181100px;}
.y48{bottom:149.669250px;}
.y20{bottom:149.672100px;}
.ye9{bottom:149.675100px;}
.yaa{bottom:149.677500px;}
.yb7{bottom:149.685900px;}
.y11a{bottom:149.686500px;}
.y12c{bottom:149.692350px;}
.yd1{bottom:149.738400px;}
.y134{bottom:167.385900px;}
.y1f{bottom:169.653600px;}
.ya3{bottom:169.659000px;}
.yc2{bottom:169.661850px;}
.y119{bottom:169.665000px;}
.yb6{bottom:169.667400px;}
.y12b{bottom:169.670850px;}
.yd0{bottom:169.716900px;}
.y1e{bottom:189.637800px;}
.y64{bottom:189.640500px;}
.yc1{bottom:189.643350px;}
.y118{bottom:189.643500px;}
.yb5{bottom:189.648900px;}
.y103{bottom:189.649350px;}
.ycf{bottom:189.695400px;}
.y47{bottom:209.622000px;}
.yc0{bottom:209.624850px;}
.y1d{bottom:209.627550px;}
.y102{bottom:209.627850px;}
.y84{bottom:209.630400px;}
.ye8{bottom:209.639400px;}
.yce{bottom:209.673900px;}
.y63{bottom:229.606350px;}
.y1c{bottom:229.609050px;}
.y83{bottom:229.611900px;}
.ye7{bottom:229.617900px;}
.ycd{bottom:229.652400px;}
.y46{bottom:249.590550px;}
.y1b{bottom:249.593400px;}
.y62{bottom:249.596100px;}
.ye6{bottom:249.596400px;}
.y9b{bottom:249.601650px;}
.y117{bottom:249.602100px;}
.ycc{bottom:249.630900px;}
.ya5{bottom:254.070750px;}
.y1a{bottom:269.574900px;}
.y61{bottom:269.577600px;}
.y116{bottom:269.580600px;}
.y9a{bottom:269.583150px;}
.ycb{bottom:269.609400px;}
.ya4{bottom:272.068500px;}
.y19{bottom:289.559100px;}
.y99{bottom:289.564650px;}
.y101{bottom:289.564800px;}
.ybf{bottom:289.567350px;}
.yca{bottom:289.587900px;}
.y45{bottom:309.543300px;}
.y82{bottom:309.546150px;}
.ya9{bottom:309.547650px;}
.ybe{bottom:309.548850px;}
.yb4{bottom:309.551550px;}
.yc9{bottom:309.566400px;}
.ye5{bottom:309.572100px;}
.y98{bottom:329.527650px;}
.y60{bottom:329.530350px;}
.y18{bottom:329.531850px;}
.yb3{bottom:329.533050px;}
.y12a{bottom:329.533350px;}
.y44{bottom:329.541450px;}
.yc8{bottom:329.544900px;}
.ye4{bottom:329.550600px;}
.y17{bottom:349.511850px;}
.y81{bottom:349.514550px;}
.y43{bottom:349.522950px;}
.yc7{bottom:349.523400px;}
.ye3{bottom:349.529100px;}
.y100{bottom:349.546350px;}
.y5f{bottom:369.496050px;}
.yc6{bottom:369.501900px;}
.y42{bottom:369.504450px;}
.ye2{bottom:369.507600px;}
.y80{bottom:369.509850px;}
.yff{bottom:369.524850px;}
.y97{bottom:389.480400px;}
.y5e{bottom:389.483100px;}
.y41{bottom:389.485950px;}
.ye1{bottom:389.486100px;}
.y7f{bottom:389.491350px;}
.yfe{bottom:389.503350px;}
.y5d{bottom:409.464600px;}
.y40{bottom:409.467450px;}
.yb2{bottom:409.470150px;}
.y7e{bottom:409.472850px;}
.y16{bottom:409.481100px;}
.yfd{bottom:409.481850px;}
.y3f{bottom:429.448950px;}
.yb1{bottom:429.451650px;}
.y7d{bottom:429.454350px;}
.yfc{bottom:429.460350px;}
.y15{bottom:429.462600px;}
.ybd{bottom:429.465450px;}
.y115{bottom:429.500700px;}
.yc5{bottom:431.433150px;}
.y3e{bottom:449.433150px;}
.y5c{bottom:449.435850px;}
.yfb{bottom:449.438850px;}
.y14{bottom:449.444100px;}
.ybc{bottom:449.446950px;}
.ye0{bottom:449.456100px;}
.y114{bottom:449.479200px;}
.y3d{bottom:469.417350px;}
.y13{bottom:469.425600px;}
.ya2{bottom:469.428450px;}
.ydf{bottom:469.434600px;}
.y113{bottom:469.457700px;}
.y3c{bottom:489.401700px;}
.y12{bottom:489.407100px;}
.ya1{bottom:489.409950px;}
.yde{bottom:489.413100px;}
.y112{bottom:489.436200px;}
.y3b{bottom:509.385900px;}
.y11{bottom:509.388600px;}
.ya0{bottom:509.391450px;}
.ydd{bottom:509.391600px;}
.y111{bottom:509.414700px;}
.y10{bottom:529.370100px;}
.y9f{bottom:529.372950px;}
.y129{bottom:529.381650px;}
.y110{bottom:529.393200px;}
.yfa{bottom:529.410450px;}
.y136{bottom:542.409450px;}
.yf{bottom:549.354450px;}
.y3a{bottom:549.357150px;}
.y5b{bottom:549.359850px;}
.y128{bottom:549.360150px;}
.y10f{bottom:549.371700px;}
.yf9{bottom:549.388950px;}
.y135{bottom:560.409450px;}
.y7c{bottom:569.338650px;}
.y39{bottom:569.341350px;}
.ye{bottom:569.344200px;}
.y10e{bottom:569.350200px;}
.ydc{bottom:569.355900px;}
.yf8{bottom:569.367450px;}
.y96{bottom:589.322850px;}
.yd{bottom:589.325700px;}
.y7b{bottom:589.328400px;}
.y10d{bottom:589.328700px;}
.y38{bottom:589.331100px;}
.ydb{bottom:589.334400px;}
.yf7{bottom:589.345950px;}
.yc{bottom:609.307200px;}
.y7a{bottom:609.309900px;}
.y37{bottom:609.312600px;}
.yda{bottom:609.312900px;}
.yf6{bottom:609.324450px;}
.y127{bottom:609.330150px;}
.y79{bottom:629.291400px;}
.y36{bottom:629.294100px;}
.ya8{bottom:629.296950px;}
.y95{bottom:629.299650px;}
.y5a{bottom:629.302350px;}
.yf5{bottom:629.302950px;}
.y126{bottom:629.308650px;}
.yb{bottom:649.275600px;}
.ya7{bottom:649.278450px;}
.y94{bottom:649.281150px;}
.yf4{bottom:649.281450px;}
.y59{bottom:649.283850px;}
.y125{bottom:649.287150px;}
.y35{bottom:669.259950px;}
.y93{bottom:669.262650px;}
.y58{bottom:669.265350px;}
.y124{bottom:669.265650px;}
.yb0{bottom:669.279150px;}
.y78{bottom:689.244150px;}
.y57{bottom:689.246850px;}
.y10c{bottom:689.249850px;}
.yaf{bottom:689.260650px;}
.y56{bottom:709.228350px;}
.y34{bottom:709.231200px;}
.y9e{bottom:709.233900px;}
.yf3{bottom:709.239900px;}
.yae{bottom:709.242150px;}
.yd9{bottom:709.245750px;}
.y77{bottom:709.247700px;}
.y55{bottom:729.212700px;}
.y33{bottom:729.215400px;}
.yf2{bottom:729.218400px;}
.yad{bottom:729.223650px;}
.yd8{bottom:729.224250px;}
.y76{bottom:729.229200px;}
.y123{bottom:729.241500px;}
.y32{bottom:749.196900px;}
.yc4{bottom:749.199750px;}
.yd7{bottom:749.202750px;}
.y92{bottom:749.205150px;}
.y75{bottom:749.210700px;}
.y122{bottom:749.220000px;}
.ya{bottom:752.539200px;}
.y31{bottom:769.181250px;}
.y91{bottom:769.186650px;}
.y74{bottom:769.192200px;}
.y121{bottom:769.198500px;}
.y10b{bottom:769.238700px;}
.y9{bottom:770.539200px;}
.yc3{bottom:789.165450px;}
.y54{bottom:789.168150px;}
.y73{bottom:789.173700px;}
.ya6{bottom:789.176400px;}
.y120{bottom:789.177000px;}
.y30{bottom:789.181950px;}
.y10a{bottom:789.217200px;}
.y133{bottom:797.108700px;}
.y53{bottom:809.149650px;}
.y72{bottom:809.155200px;}
.y11f{bottom:809.155500px;}
.y90{bottom:809.157900px;}
.y2f{bottom:809.163450px;}
.y109{bottom:809.195700px;}
.y132{bottom:815.106450px;}
.y52{bottom:829.134000px;}
.y71{bottom:829.136700px;}
.y8f{bottom:829.139400px;}
.y2e{bottom:829.144950px;}
.y108{bottom:829.174200px;}
.y8{bottom:831.061200px;}
.y131{bottom:833.104200px;}
.y7{bottom:849.058950px;}
.yac{bottom:849.118200px;}
.y8e{bottom:849.120900px;}
.y2d{bottom:849.126450px;}
.y51{bottom:849.129150px;}
.yf1{bottom:849.129600px;}
.y70{bottom:849.140100px;}
.yd6{bottom:849.141150px;}
.y107{bottom:849.152700px;}
.y130{bottom:851.101950px;}
.y6{bottom:867.058950px;}
.y8d{bottom:869.102400px;}
.y2c{bottom:869.107950px;}
.yf0{bottom:869.108100px;}
.y50{bottom:869.110650px;}
.yd5{bottom:869.119650px;}
.y6f{bottom:869.121600px;}
.y106{bottom:869.131200px;}
.y11e{bottom:873.847650px;}
.y5{bottom:885.058950px;}
.y8c{bottom:889.086600px;}
.y2b{bottom:889.089450px;}
.y4f{bottom:889.092150px;}
.yd4{bottom:889.098150px;}
.y6e{bottom:889.103100px;}
.y105{bottom:889.109700px;}
.y9d{bottom:894.581250px;}
.y2a{bottom:909.070950px;}
.y4e{bottom:909.073650px;}
.y8b{bottom:909.076350px;}
.yd3{bottom:909.076650px;}
.ybb{bottom:909.079200px;}
.y6d{bottom:909.084600px;}
.y104{bottom:909.088200px;}
.y29{bottom:929.055150px;}
.y8a{bottom:929.057850px;}
.yba{bottom:929.060700px;}
.y6c{bottom:929.066100px;}
.yef{bottom:929.066700px;}
.y4d{bottom:949.039350px;}
.yb9{bottom:949.042200px;}
.yee{bottom:949.045200px;}
.y6b{bottom:949.047600px;}
.y28{bottom:949.050450px;}
.y12f{bottom:949.062450px;}
.y4{bottom:954.082650px;}
.y4b{bottom:969.023700px;}
.y6a{bottom:969.029100px;}
.y27{bottom:969.031950px;}
.y12e{bottom:969.040950px;}
.y4c{bottom:974.518200px;}
.y4a{bottom:989.007900px;}
.y69{bottom:989.010600px;}
.y26{bottom:989.013450px;}
.y12d{bottom:989.019450px;}
.y89{bottom:994.502400px;}
.y3{bottom:997.585350px;}
.y88{bottom:1008.992100px;}
.y25{bottom:1008.994950px;}
.yed{bottom:1008.997950px;}
.y2{bottom:1026.094350px;}
.y24{bottom:1028.976450px;}
.y1{bottom:1082.225850px;}
.hb{height:32.466687px;}
.ha{height:37.593006px;}
.h2{height:50.868000px;}
.hc{height:52.098000px;}
.h6{height:55.689000px;}
.h9{height:56.601000px;}
.h5{height:56.700000px;}
.h8{height:64.482000px;}
.h7{height:68.040000px;}
.h4{height:73.476000px;}
.h3{height:96.390000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x6{left:67.684500px;}
.x4{left:72.283500px;}
.x2{left:78.890250px;}
.x1{left:80.787450px;}
.x10{left:85.256550px;}
.x18{left:88.911900px;}
.x5{left:92.613600px;}
.xa{left:93.777300px;}
.x3{left:101.453250px;}
.xf{left:102.567000px;}
.x11{left:241.793550px;}
.x12{left:249.225000px;}
.x8{left:273.974550px;}
.x9{left:281.361450px;}
.x13{left:378.554100px;}
.x14{left:385.985550px;}
.x1d{left:409.870950px;}
.x19{left:431.605800px;}
.x1a{left:439.682700px;}
.x1b{left:452.954850px;}
.x1c{left:460.601550px;}
.x15{left:472.769250px;}
.x16{left:483.768450px;}
.xb{left:647.620950px;}
.xc{left:654.118950px;}
.x1e{left:712.978350px;}
.x17{left:715.718850px;}
.xd{left:716.927250px;}
.x7{left:719.026500px;}
.xe{left:726.489300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.688000pt;}
.v1{vertical-align:19.525867pt;}
.ls16{letter-spacing:-4.800000pt;}
.ls18{letter-spacing:-3.120000pt;}
.ls1d{letter-spacing:-3.050667pt;}
.ls1a{letter-spacing:-2.933333pt;}
.ls12{letter-spacing:-0.762667pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.410667pt;}
.ls2c{letter-spacing:-0.354667pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls2d{letter-spacing:-0.304000pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls24{letter-spacing:-0.253333pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.234667pt;}
.ls2b{letter-spacing:-0.202667pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls2a{letter-spacing:-0.152000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.102608pt;}
.ls4{letter-spacing:-0.101333pt;}
.ls33{letter-spacing:-0.088616pt;}
.ls10{letter-spacing:-0.068405pt;}
.ls5{letter-spacing:-0.058667pt;}
.ls28{letter-spacing:-0.050667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000107pt;}
.ls1c{letter-spacing:0.034203pt;}
.ls23{letter-spacing:0.050667pt;}
.ls8{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.088616pt;}
.ls15{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.152000pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls31{letter-spacing:0.202667pt;}
.ls14{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.253333pt;}
.ls27{letter-spacing:0.304000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls29{letter-spacing:0.354667pt;}
.ls2f{letter-spacing:0.456000pt;}
.ls22{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.658667pt;}
.ls9{letter-spacing:0.704000pt;}
.ls25{letter-spacing:0.709333pt;}
.ls21{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws72{word-spacing:-12.378667pt;}
.ws84{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws32{word-spacing:-11.616000pt;}
.ws65{word-spacing:-11.440000pt;}
.ws4d{word-spacing:-11.376000pt;}
.wsc9{word-spacing:-10.896000pt;}
.wsca{word-spacing:-10.792000pt;}
.ws4e{word-spacing:-10.640000pt;}
.wsc5{word-spacing:-10.589333pt;}
.wsd4{word-spacing:-10.488000pt;}
.ws98{word-spacing:-10.386667pt;}
.ws86{word-spacing:-9.880000pt;}
.ws85{word-spacing:-9.626667pt;}
.ws73{word-spacing:-7.216763pt;}
.ws2{word-spacing:-7.182560pt;}
.ws64{word-spacing:-7.079952pt;}
.wsba{word-spacing:-6.203120pt;}
.wsd2{word-spacing:-6.114504pt;}
.ws36{word-spacing:-3.050667pt;}
.ws78{word-spacing:-2.992000pt;}
.ws3d{word-spacing:-2.640000pt;}
.wscc{word-spacing:-2.634667pt;}
.ws6d{word-spacing:-2.581333pt;}
.ws27{word-spacing:-2.522667pt;}
.ws9{word-spacing:-2.464000pt;}
.ws56{word-spacing:-2.405333pt;}
.wsb2{word-spacing:-2.381333pt;}
.ws1c{word-spacing:-2.346667pt;}
.ws34{word-spacing:-2.288000pt;}
.ws88{word-spacing:-2.229333pt;}
.wsa0{word-spacing:-2.178667pt;}
.ws7e{word-spacing:-2.170667pt;}
.ws5{word-spacing:-2.128000pt;}
.ws40{word-spacing:-2.112000pt;}
.ws9f{word-spacing:-2.077333pt;}
.ws42{word-spacing:-2.053333pt;}
.wsb3{word-spacing:-2.026667pt;}
.ws48{word-spacing:-1.994667pt;}
.ws9c{word-spacing:-1.976000pt;}
.wsd6{word-spacing:-1.925333pt;}
.ws19{word-spacing:-1.877333pt;}
.wsbc{word-spacing:-1.773333pt;}
.ws82{word-spacing:-1.760000pt;}
.ws80{word-spacing:-1.722667pt;}
.ws1a{word-spacing:-1.701333pt;}
.wsa2{word-spacing:-1.672000pt;}
.ws38{word-spacing:-1.642667pt;}
.ws25{word-spacing:-1.584000pt;}
.wsa3{word-spacing:-1.520000pt;}
.wsc{word-spacing:-1.466667pt;}
.ws46{word-spacing:-1.408000pt;}
.ws53{word-spacing:-1.349333pt;}
.wsc0{word-spacing:-1.317333pt;}
.ws15{word-spacing:-1.290667pt;}
.wsbb{word-spacing:-1.266667pt;}
.ws69{word-spacing:-1.232000pt;}
.ws3{word-spacing:-1.200000pt;}
.wscf{word-spacing:-1.165333pt;}
.ws31{word-spacing:-1.114667pt;}
.wsc4{word-spacing:-1.064000pt;}
.ws54{word-spacing:-1.056000pt;}
.wsc7{word-spacing:-1.013333pt;}
.ws7d{word-spacing:-0.997333pt;}
.wscd{word-spacing:-0.962667pt;}
.ws41{word-spacing:-0.938667pt;}
.ws37{word-spacing:-0.880000pt;}
.wsc1{word-spacing:-0.861333pt;}
.ws4f{word-spacing:-0.821333pt;}
.wsa6{word-spacing:-0.810667pt;}
.ws5f{word-spacing:-0.762667pt;}
.wsb0{word-spacing:-0.760000pt;}
.ws2d{word-spacing:-0.704000pt;}
.ws61{word-spacing:-0.658667pt;}
.ws45{word-spacing:-0.645333pt;}
.ws10{word-spacing:-0.640000pt;}
.wsd5{word-spacing:-0.608000pt;}
.wsb{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.528000pt;}
.ws90{word-spacing:-0.506667pt;}
.ws59{word-spacing:-0.469333pt;}
.wsab{word-spacing:-0.456000pt;}
.ws6b{word-spacing:-0.410667pt;}
.wsc8{word-spacing:-0.354667pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws5c{word-spacing:-0.293333pt;}
.ws9e{word-spacing:-0.253333pt;}
.ws26{word-spacing:-0.234667pt;}
.wsbd{word-spacing:-0.202667pt;}
.ws18{word-spacing:-0.176000pt;}
.ws8c{word-spacing:-0.152000pt;}
.ws49{word-spacing:-0.117333pt;}
.wsce{word-spacing:-0.101333pt;}
.ws4c{word-spacing:-0.088616pt;}
.ws22{word-spacing:-0.058667pt;}
.ws95{word-spacing:-0.050667pt;}
.ws4{word-spacing:0.000000pt;}
.wsac{word-spacing:0.050667pt;}
.ws71{word-spacing:0.058667pt;}
.ws35{word-spacing:0.068405pt;}
.wscb{word-spacing:0.088616pt;}
.wsa1{word-spacing:0.101333pt;}
.ws50{word-spacing:0.117333pt;}
.wsa5{word-spacing:0.152000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws6{word-spacing:0.202667pt;}
.ws2e{word-spacing:0.234667pt;}
.ws24{word-spacing:0.293333pt;}
.ws60{word-spacing:0.304000pt;}
.ws3b{word-spacing:0.352000pt;}
.ws8f{word-spacing:0.354667pt;}
.wsc6{word-spacing:0.405333pt;}
.ws5e{word-spacing:0.410667pt;}
.ws57{word-spacing:0.469333pt;}
.ws23{word-spacing:0.528000pt;}
.wsb8{word-spacing:0.557333pt;}
.ws3a{word-spacing:0.586667pt;}
.wsc2{word-spacing:0.608000pt;}
.ws28{word-spacing:0.645333pt;}
.wsc3{word-spacing:0.658667pt;}
.wsd{word-spacing:0.704000pt;}
.ws3c{word-spacing:0.762667pt;}
.ws8{word-spacing:0.821333pt;}
.ws2c{word-spacing:0.880000pt;}
.ws3f{word-spacing:0.938667pt;}
.ws8a{word-spacing:0.962667pt;}
.ws1d{word-spacing:0.997333pt;}
.ws3e{word-spacing:1.056000pt;}
.ws89{word-spacing:1.064000pt;}
.ws44{word-spacing:1.114667pt;}
.wsaa{word-spacing:1.165333pt;}
.ws5d{word-spacing:1.173333pt;}
.ws6c{word-spacing:1.232000pt;}
.wsbf{word-spacing:1.266667pt;}
.ws2f{word-spacing:1.290667pt;}
.wsa9{word-spacing:1.317333pt;}
.ws75{word-spacing:1.349333pt;}
.ws16{word-spacing:1.408000pt;}
.ws70{word-spacing:1.466667pt;}
.ws5b{word-spacing:1.525333pt;}
.ws8b{word-spacing:1.570667pt;}
.ws67{word-spacing:1.584000pt;}
.ws47{word-spacing:1.642667pt;}
.wsb1{word-spacing:1.672000pt;}
.ws14{word-spacing:1.701333pt;}
.ws94{word-spacing:1.722667pt;}
.ws1f{word-spacing:1.818667pt;}
.ws93{word-spacing:1.874667pt;}
.ws58{word-spacing:1.877333pt;}
.wsb7{word-spacing:1.925333pt;}
.wse{word-spacing:1.936000pt;}
.ws6e{word-spacing:1.994667pt;}
.wsb6{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.053333pt;}
.wsb4{word-spacing:2.077333pt;}
.ws20{word-spacing:2.112000pt;}
.wsaf{word-spacing:2.128000pt;}
.ws30{word-spacing:2.170667pt;}
.wsb5{word-spacing:2.178667pt;}
.ws6a{word-spacing:2.229333pt;}
.wsae{word-spacing:2.280000pt;}
.ws13{word-spacing:2.288000pt;}
.ws55{word-spacing:2.346667pt;}
.ws83{word-spacing:2.405333pt;}
.ws2a{word-spacing:2.522667pt;}
.wsa7{word-spacing:2.533333pt;}
.ws12{word-spacing:2.581333pt;}
.ws52{word-spacing:2.640000pt;}
.ws92{word-spacing:2.685333pt;}
.ws29{word-spacing:2.698667pt;}
.ws8e{word-spacing:2.736000pt;}
.ws7a{word-spacing:2.757333pt;}
.ws7f{word-spacing:2.816000pt;}
.ws91{word-spacing:2.888000pt;}
.ws6f{word-spacing:2.933333pt;}
.ws8d{word-spacing:2.938667pt;}
.ws9d{word-spacing:2.989333pt;}
.wsad{word-spacing:3.040000pt;}
.ws76{word-spacing:3.050667pt;}
.ws4a{word-spacing:3.090667pt;}
.ws66{word-spacing:3.109333pt;}
.wsd1{word-spacing:3.141333pt;}
.wsbe{word-spacing:3.192000pt;}
.wsf{word-spacing:3.226667pt;}
.ws96{word-spacing:3.242667pt;}
.ws11{word-spacing:3.285333pt;}
.ws9b{word-spacing:3.293333pt;}
.ws68{word-spacing:3.344000pt;}
.ws87{word-spacing:3.402667pt;}
.wsa8{word-spacing:3.445333pt;}
.ws43{word-spacing:3.461333pt;}
.ws4b{word-spacing:3.496000pt;}
.ws7b{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.546667pt;}
.ws51{word-spacing:3.637333pt;}
.ws7{word-spacing:3.696000pt;}
.ws74{word-spacing:3.754667pt;}
.ws39{word-spacing:3.872000pt;}
.wsa{word-spacing:3.930667pt;}
.ws1b{word-spacing:4.048000pt;}
.ws21{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.256000pt;}
.ws99{word-spacing:4.560000pt;}
.wsd3{word-spacing:1637.379733pt;}
.ws7c{word-spacing:1641.411733pt;}
.ws97{word-spacing:1643.955733pt;}
.wsb9{word-spacing:1645.011733pt;}
.wsd0{word-spacing:1645.203733pt;}
.ws17{word-spacing:1646.451733pt;}
.ws81{word-spacing:1649.571733pt;}
.ws33{word-spacing:1651.011733pt;}
.ws77{word-spacing:1651.683733pt;}
.ws63{word-spacing:1658.691733pt;}
.ws62{word-spacing:1662.675733pt;}
._16{margin-left:-2329.152000pt;}
._b{margin-left:-2327.952000pt;}
._a{margin-left:-15.962616pt;}
._14{margin-left:-14.922667pt;}
._c{margin-left:-13.520000pt;}
._11{margin-left:-11.936000pt;}
._f{margin-left:-10.789333pt;}
._4{margin-left:-9.893333pt;}
._13{margin-left:-8.981485pt;}
._8{margin-left:-7.925333pt;}
._10{margin-left:-6.648000pt;}
._7{margin-left:-5.674667pt;}
._5{margin-left:-4.000000pt;}
._3{margin-left:-2.720000pt;}
._2{margin-left:-1.440000pt;}
._0{width:0.960000pt;}
._1{width:1.920000pt;}
._e{width:2.856000pt;}
._6{width:3.872000pt;}
._9{width:4.794667pt;}
._17{width:8.324253pt;}
._18{width:10.890667pt;}
._15{width:12.821333pt;}
._12{width:38.912000pt;}
._d{width:43.320000pt;}
.fs8{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:79.748000pt;}
.y68{bottom:79.748133pt;}
.y138{bottom:79.750000pt;}
.yb8{bottom:79.750133pt;}
.y9c{bottom:79.750533pt;}
.y86{bottom:79.752133pt;}
.yec{bottom:79.768533pt;}
.y11d{bottom:79.778667pt;}
.y137{bottom:95.748000pt;}
.y66{bottom:95.748133pt;}
.y85{bottom:95.750133pt;}
.y22{bottom:97.511867pt;}
.yeb{bottom:97.527200pt;}
.y11c{bottom:97.537333pt;}
.y67{bottom:99.966133pt;}
.y65{bottom:111.748133pt;}
.y49{bottom:115.275600pt;}
.y21{bottom:115.280533pt;}
.yab{bottom:115.285333pt;}
.yea{bottom:115.285867pt;}
.y11b{bottom:115.296000pt;}
.yd2{bottom:115.342133pt;}
.y87{bottom:131.716533pt;}
.y48{bottom:133.039333pt;}
.y20{bottom:133.041867pt;}
.ye9{bottom:133.044533pt;}
.yaa{bottom:133.046667pt;}
.yb7{bottom:133.054133pt;}
.y11a{bottom:133.054667pt;}
.y12c{bottom:133.059867pt;}
.yd1{bottom:133.100800pt;}
.y134{bottom:148.787467pt;}
.y1f{bottom:150.803200pt;}
.ya3{bottom:150.808000pt;}
.yc2{bottom:150.810533pt;}
.y119{bottom:150.813333pt;}
.yb6{bottom:150.815467pt;}
.y12b{bottom:150.818533pt;}
.yd0{bottom:150.859467pt;}
.y1e{bottom:168.566933pt;}
.y64{bottom:168.569333pt;}
.yc1{bottom:168.571867pt;}
.y118{bottom:168.572000pt;}
.yb5{bottom:168.576800pt;}
.y103{bottom:168.577200pt;}
.ycf{bottom:168.618133pt;}
.y47{bottom:186.330667pt;}
.yc0{bottom:186.333200pt;}
.y1d{bottom:186.335600pt;}
.y102{bottom:186.335867pt;}
.y84{bottom:186.338133pt;}
.ye8{bottom:186.346133pt;}
.yce{bottom:186.376800pt;}
.y63{bottom:204.094533pt;}
.y1c{bottom:204.096933pt;}
.y83{bottom:204.099467pt;}
.ye7{bottom:204.104800pt;}
.ycd{bottom:204.135467pt;}
.y46{bottom:221.858267pt;}
.y1b{bottom:221.860800pt;}
.y62{bottom:221.863200pt;}
.ye6{bottom:221.863467pt;}
.y9b{bottom:221.868133pt;}
.y117{bottom:221.868533pt;}
.ycc{bottom:221.894133pt;}
.ya5{bottom:225.840667pt;}
.y1a{bottom:239.622133pt;}
.y61{bottom:239.624533pt;}
.y116{bottom:239.627200pt;}
.y9a{bottom:239.629467pt;}
.ycb{bottom:239.652800pt;}
.ya4{bottom:241.838667pt;}
.y19{bottom:257.385867pt;}
.y99{bottom:257.390800pt;}
.y101{bottom:257.390933pt;}
.ybf{bottom:257.393200pt;}
.yca{bottom:257.411467pt;}
.y45{bottom:275.149600pt;}
.y82{bottom:275.152133pt;}
.ya9{bottom:275.153467pt;}
.ybe{bottom:275.154533pt;}
.yb4{bottom:275.156933pt;}
.yc9{bottom:275.170133pt;}
.ye5{bottom:275.175200pt;}
.y98{bottom:292.913467pt;}
.y60{bottom:292.915867pt;}
.y18{bottom:292.917200pt;}
.yb3{bottom:292.918267pt;}
.y12a{bottom:292.918533pt;}
.y44{bottom:292.925733pt;}
.yc8{bottom:292.928800pt;}
.ye4{bottom:292.933867pt;}
.y17{bottom:310.677200pt;}
.y81{bottom:310.679600pt;}
.y43{bottom:310.687067pt;}
.yc7{bottom:310.687467pt;}
.ye3{bottom:310.692533pt;}
.y100{bottom:310.707867pt;}
.y5f{bottom:328.440933pt;}
.yc6{bottom:328.446133pt;}
.y42{bottom:328.448400pt;}
.ye2{bottom:328.451200pt;}
.y80{bottom:328.453200pt;}
.yff{bottom:328.466533pt;}
.y97{bottom:346.204800pt;}
.y5e{bottom:346.207200pt;}
.y41{bottom:346.209733pt;}
.ye1{bottom:346.209867pt;}
.y7f{bottom:346.214533pt;}
.yfe{bottom:346.225200pt;}
.y5d{bottom:363.968533pt;}
.y40{bottom:363.971067pt;}
.yb2{bottom:363.973467pt;}
.y7e{bottom:363.975867pt;}
.y16{bottom:363.983200pt;}
.yfd{bottom:363.983867pt;}
.y3f{bottom:381.732400pt;}
.yb1{bottom:381.734800pt;}
.y7d{bottom:381.737200pt;}
.yfc{bottom:381.742533pt;}
.y15{bottom:381.744533pt;}
.ybd{bottom:381.747067pt;}
.y115{bottom:381.778400pt;}
.yc5{bottom:383.496133pt;}
.y3e{bottom:399.496133pt;}
.y5c{bottom:399.498533pt;}
.yfb{bottom:399.501200pt;}
.y14{bottom:399.505867pt;}
.ybc{bottom:399.508400pt;}
.ye0{bottom:399.516533pt;}
.y114{bottom:399.537067pt;}
.y3d{bottom:417.259867pt;}
.y13{bottom:417.267200pt;}
.ya2{bottom:417.269733pt;}
.ydf{bottom:417.275200pt;}
.y113{bottom:417.295733pt;}
.y3c{bottom:435.023733pt;}
.y12{bottom:435.028533pt;}
.ya1{bottom:435.031067pt;}
.yde{bottom:435.033867pt;}
.y112{bottom:435.054400pt;}
.y3b{bottom:452.787467pt;}
.y11{bottom:452.789867pt;}
.ya0{bottom:452.792400pt;}
.ydd{bottom:452.792533pt;}
.y111{bottom:452.813067pt;}
.y10{bottom:470.551200pt;}
.y9f{bottom:470.553733pt;}
.y129{bottom:470.561467pt;}
.y110{bottom:470.571733pt;}
.yfa{bottom:470.587067pt;}
.y136{bottom:482.141733pt;}
.yf{bottom:488.315067pt;}
.y3a{bottom:488.317467pt;}
.y5b{bottom:488.319867pt;}
.y128{bottom:488.320133pt;}
.y10f{bottom:488.330400pt;}
.yf9{bottom:488.345733pt;}
.y135{bottom:498.141733pt;}
.y7c{bottom:506.078800pt;}
.y39{bottom:506.081200pt;}
.ye{bottom:506.083733pt;}
.y10e{bottom:506.089067pt;}
.ydc{bottom:506.094133pt;}
.yf8{bottom:506.104400pt;}
.y96{bottom:523.842533pt;}
.yd{bottom:523.845067pt;}
.y7b{bottom:523.847467pt;}
.y10d{bottom:523.847733pt;}
.y38{bottom:523.849867pt;}
.ydb{bottom:523.852800pt;}
.yf7{bottom:523.863067pt;}
.yc{bottom:541.606400pt;}
.y7a{bottom:541.608800pt;}
.y37{bottom:541.611200pt;}
.yda{bottom:541.611467pt;}
.yf6{bottom:541.621733pt;}
.y127{bottom:541.626800pt;}
.y79{bottom:559.370133pt;}
.y36{bottom:559.372533pt;}
.ya8{bottom:559.375067pt;}
.y95{bottom:559.377467pt;}
.y5a{bottom:559.379867pt;}
.yf5{bottom:559.380400pt;}
.y126{bottom:559.385467pt;}
.yb{bottom:577.133867pt;}
.ya7{bottom:577.136400pt;}
.y94{bottom:577.138800pt;}
.yf4{bottom:577.139067pt;}
.y59{bottom:577.141200pt;}
.y125{bottom:577.144133pt;}
.y35{bottom:594.897733pt;}
.y93{bottom:594.900133pt;}
.y58{bottom:594.902533pt;}
.y124{bottom:594.902800pt;}
.yb0{bottom:594.914800pt;}
.y78{bottom:612.661467pt;}
.y57{bottom:612.663867pt;}
.y10c{bottom:612.666533pt;}
.yaf{bottom:612.676133pt;}
.y56{bottom:630.425200pt;}
.y34{bottom:630.427733pt;}
.y9e{bottom:630.430133pt;}
.yf3{bottom:630.435467pt;}
.yae{bottom:630.437467pt;}
.yd9{bottom:630.440667pt;}
.y77{bottom:630.442400pt;}
.y55{bottom:648.189067pt;}
.y33{bottom:648.191467pt;}
.yf2{bottom:648.194133pt;}
.yad{bottom:648.198800pt;}
.yd8{bottom:648.199333pt;}
.y76{bottom:648.203733pt;}
.y123{bottom:648.214667pt;}
.y32{bottom:665.952800pt;}
.yc4{bottom:665.955333pt;}
.yd7{bottom:665.958000pt;}
.y92{bottom:665.960133pt;}
.y75{bottom:665.965067pt;}
.y122{bottom:665.973333pt;}
.ya{bottom:668.923733pt;}
.y31{bottom:683.716667pt;}
.y91{bottom:683.721467pt;}
.y74{bottom:683.726400pt;}
.y121{bottom:683.732000pt;}
.y10b{bottom:683.767733pt;}
.y9{bottom:684.923733pt;}
.yc3{bottom:701.480400pt;}
.y54{bottom:701.482800pt;}
.y73{bottom:701.487733pt;}
.ya6{bottom:701.490133pt;}
.y120{bottom:701.490667pt;}
.y30{bottom:701.495067pt;}
.y10a{bottom:701.526400pt;}
.y133{bottom:708.541067pt;}
.y53{bottom:719.244133pt;}
.y72{bottom:719.249067pt;}
.y11f{bottom:719.249333pt;}
.y90{bottom:719.251467pt;}
.y2f{bottom:719.256400pt;}
.y109{bottom:719.285067pt;}
.y132{bottom:724.539067pt;}
.y52{bottom:737.008000pt;}
.y71{bottom:737.010400pt;}
.y8f{bottom:737.012800pt;}
.y2e{bottom:737.017733pt;}
.y108{bottom:737.043733pt;}
.y8{bottom:738.721067pt;}
.y131{bottom:740.537067pt;}
.y7{bottom:754.719067pt;}
.yac{bottom:754.771733pt;}
.y8e{bottom:754.774133pt;}
.y2d{bottom:754.779067pt;}
.y51{bottom:754.781467pt;}
.yf1{bottom:754.781867pt;}
.y70{bottom:754.791200pt;}
.yd6{bottom:754.792133pt;}
.y107{bottom:754.802400pt;}
.y130{bottom:756.535067pt;}
.y6{bottom:770.719067pt;}
.y8d{bottom:772.535467pt;}
.y2c{bottom:772.540400pt;}
.yf0{bottom:772.540533pt;}
.y50{bottom:772.542800pt;}
.yd5{bottom:772.550800pt;}
.y6f{bottom:772.552533pt;}
.y106{bottom:772.561067pt;}
.y11e{bottom:776.753467pt;}
.y5{bottom:786.719067pt;}
.y8c{bottom:790.299200pt;}
.y2b{bottom:790.301733pt;}
.y4f{bottom:790.304133pt;}
.yd4{bottom:790.309467pt;}
.y6e{bottom:790.313867pt;}
.y105{bottom:790.319733pt;}
.y9d{bottom:795.183333pt;}
.y2a{bottom:808.063067pt;}
.y4e{bottom:808.065467pt;}
.y8b{bottom:808.067867pt;}
.yd3{bottom:808.068133pt;}
.ybb{bottom:808.070400pt;}
.y6d{bottom:808.075200pt;}
.y104{bottom:808.078400pt;}
.y29{bottom:825.826800pt;}
.y8a{bottom:825.829200pt;}
.yba{bottom:825.831733pt;}
.y6c{bottom:825.836533pt;}
.yef{bottom:825.837067pt;}
.y4d{bottom:843.590533pt;}
.yb9{bottom:843.593067pt;}
.yee{bottom:843.595733pt;}
.y6b{bottom:843.597867pt;}
.y28{bottom:843.600400pt;}
.y12f{bottom:843.611067pt;}
.y4{bottom:848.073467pt;}
.y4b{bottom:861.354400pt;}
.y6a{bottom:861.359200pt;}
.y27{bottom:861.361733pt;}
.y12e{bottom:861.369733pt;}
.y4c{bottom:866.238400pt;}
.y4a{bottom:879.118133pt;}
.y69{bottom:879.120533pt;}
.y26{bottom:879.123067pt;}
.y12d{bottom:879.128400pt;}
.y89{bottom:884.002133pt;}
.y3{bottom:886.742533pt;}
.y88{bottom:896.881867pt;}
.y25{bottom:896.884400pt;}
.yed{bottom:896.887067pt;}
.y2{bottom:912.083867pt;}
.y24{bottom:914.645733pt;}
.y1{bottom:961.978533pt;}
.hb{height:28.859277pt;}
.ha{height:33.416005pt;}
.h2{height:45.216000pt;}
.hc{height:46.309333pt;}
.h6{height:49.501333pt;}
.h9{height:50.312000pt;}
.h5{height:50.400000pt;}
.h8{height:57.317333pt;}
.h7{height:60.480000pt;}
.h4{height:65.312000pt;}
.h3{height:85.680000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x6{left:60.164000pt;}
.x4{left:64.252000pt;}
.x2{left:70.124667pt;}
.x1{left:71.811067pt;}
.x10{left:75.783600pt;}
.x18{left:79.032800pt;}
.x5{left:82.323200pt;}
.xa{left:83.357600pt;}
.x3{left:90.180667pt;}
.xf{left:91.170667pt;}
.x11{left:214.927600pt;}
.x12{left:221.533333pt;}
.x8{left:243.532933pt;}
.x9{left:250.099067pt;}
.x13{left:336.492533pt;}
.x14{left:343.098267pt;}
.x1d{left:364.329733pt;}
.x19{left:383.649600pt;}
.x1a{left:390.829067pt;}
.x1b{left:402.626533pt;}
.x1c{left:409.423600pt;}
.x15{left:420.239333pt;}
.x16{left:430.016400pt;}
.xb{left:575.663067pt;}
.xc{left:581.439067pt;}
.x1e{left:633.758533pt;}
.x17{left:636.194533pt;}
.xd{left:637.268667pt;}
.x7{left:639.134667pt;}
.xe{left:645.768267pt;}
}




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