
    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_8abb86200a4e4f52bf0f09d2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.077000;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_f38c8259f2148ccbb25eb84d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_13d3fd6bdeba3ed917f3a203.woff')format("woff");}.ff3{font-family:ff3;line-height:1.073000;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_47dd7cf295d9dac32a319034.woff')format("woff");}.ff4{font-family:ff4;line-height:0.955000;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_30dc5950879d7772abec6859.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096000;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_6fa2f778b79419fcfa32db4f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea5dc8364b76457e76847433.woff')format("woff");}.ff7{font-family:ff7;line-height:0.845000;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_a8b23b94d2e4768cbe0a5cff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.026000;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_96b305ebd6ff05e6c5c5c426.woff')format("woff");}.ff9{font-family:ff9;line-height:1.077000;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_30dc5950879d7772abec6859.woff')format("woff");}.ffa{font-family:ffa;line-height:1.096000;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_f38c8259f2148ccbb25eb84d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.076000;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;}
.mdb{transform:matrix(0.242627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242627,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.242752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242752,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.242759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242759,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.242923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242923,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.243022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243022,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.243027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243027,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243077,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243486,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243520,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.243527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243527,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.243536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243536,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243555,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243666,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243698,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.243707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243707,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.243807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243807,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243860,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244036,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244164,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.244198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244198,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244291,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.244368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244368,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.244391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244391,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244459,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244612,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244757,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245018,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245060,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245073,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.245091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245091,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.245184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245184,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.245223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245223,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245227,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.245588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245588,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m67{transform:matrix(0.245607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245607,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245636,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245939,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246136,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247009,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247177,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247648,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248164,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248166,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248384,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.mcb{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);}
.m97{transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m7f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m7b{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m79{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.me7{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,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);}
.m41{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251073,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251216,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251264,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251518,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251866,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252189,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m37{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252491,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252752,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252843,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.253061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253061,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253126,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253186,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253273,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253532,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253534,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253707,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.254028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254028,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254261,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.254295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254295,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254439,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254475,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254866,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254902,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254907,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254930,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254932,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254943,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.v4{vertical-align:-21.978000px;}
.v3{vertical-align:-18.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.980000px;}
.v2{vertical-align:21.978600px;}
.v1{vertical-align:27.972000px;}
.ls39{letter-spacing:-6.270000px;}
.ls4c{letter-spacing:-5.544000px;}
.ls42{letter-spacing:-4.092000px;}
.ls10{letter-spacing:-4.026000px;}
.ls6e{letter-spacing:-3.780000px;}
.ls2d{letter-spacing:-3.078000px;}
.ls7a{letter-spacing:-2.700000px;}
.ls71{letter-spacing:-2.400000px;}
.ls6a{letter-spacing:-2.088000px;}
.lsf{letter-spacing:-2.046000px;}
.ls3c{letter-spacing:-1.980000px;}
.ls6d{letter-spacing:-1.860000px;}
.ls7b{letter-spacing:-1.800000px;}
.ls4b{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-1.188000px;}
.ls69{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.990000px;}
.ls33{letter-spacing:-0.961950px;}
.ls70{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.858000px;}
.ls3d{letter-spacing:-0.840000px;}
.ls75{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.764313px;}
.ls26{letter-spacing:-0.654126px;}
.ls2c{letter-spacing:-0.498465px;}
.ls19{letter-spacing:-0.461736px;}
.ls28{letter-spacing:-0.396000px;}
.ls32{letter-spacing:-0.384780px;}
.ls1f{letter-spacing:-0.332310px;}
.ls3b{letter-spacing:-0.330000px;}
.ls37{letter-spacing:-0.269346px;}
.ls34{letter-spacing:-0.265848px;}
.ls5c{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.192390px;}
.ls3e{letter-spacing:-0.174900px;}
.ls3a{letter-spacing:-0.166155px;}
.ls2b{letter-spacing:-0.132000px;}
.ls47{letter-spacing:-0.120000px;}
.ls1d{letter-spacing:-0.099693px;}
.ls3{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000017px;}
.lsd{letter-spacing:0.000072px;}
.lsb{letter-spacing:0.011400px;}
.lsa{letter-spacing:0.045600px;}
.ls49{letter-spacing:0.066462px;}
.ls76{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.132000px;}
.ls77{letter-spacing:0.240000px;}
.ls2f{letter-spacing:0.263981px;}
.ls64{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.264007px;}
.ls2{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.342000px;}
.ls57{letter-spacing:0.396000px;}
.ls1e{letter-spacing:0.456000px;}
.ls60{letter-spacing:0.461988px;}
.ls6{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.498465px;}
.ls1c{letter-spacing:0.500214px;}
.ls43{letter-spacing:0.528000px;}
.ls73{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.564927px;}
.ls4a{letter-spacing:0.570000px;}
.ls27{letter-spacing:0.577170px;}
.ls29{letter-spacing:0.594000px;}
.ls72{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.631389px;}
.ls66{letter-spacing:0.654126px;}
.ls2a{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.697851px;}
.ls79{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.726000px;}
.ls1a{letter-spacing:0.731082px;}
.ls6b{letter-spacing:0.780000px;}
.ls40{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.809400px;}
.ls7d{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.960000px;}
.ls8{letter-spacing:0.991800px;}
.ls53{letter-spacing:1.129854px;}
.ls5d{letter-spacing:1.163085px;}
.ls6f{letter-spacing:1.200000px;}
.ls50{letter-spacing:1.231296px;}
.ls78{letter-spacing:1.260000px;}
.ls5a{letter-spacing:1.308252px;}
.ls54{letter-spacing:1.362471px;}
.ls67{letter-spacing:1.428930px;}
.ls48{letter-spacing:1.462164px;}
.ls51{letter-spacing:1.500642px;}
.ls46{letter-spacing:1.539120px;}
.ls5e{letter-spacing:1.561857px;}
.ls65{letter-spacing:1.577598px;}
.ls7c{letter-spacing:1.620000px;}
.ls56{letter-spacing:1.635000px;}
.ls41{letter-spacing:1.650000px;}
.ls9{letter-spacing:1.681500px;}
.lsc{letter-spacing:1.721400px;}
.ls5b{letter-spacing:1.769988px;}
.ls55{letter-spacing:1.827705px;}
.ls22{letter-spacing:1.848000px;}
.ls74{letter-spacing:1.980000px;}
.ls52{letter-spacing:2.039334px;}
.ls63{letter-spacing:2.112000px;}
.ls5f{letter-spacing:4.554000px;}
.ls4f{letter-spacing:28.287330px;}
.ls59{letter-spacing:28.519950px;}
.ls44{letter-spacing:28.619610px;}
.ls61{letter-spacing:28.652850px;}
.ls4e{letter-spacing:28.719330px;}
.ls58{letter-spacing:28.918710px;}
.ls4d{letter-spacing:28.951950px;}
.ls14{letter-spacing:29.383950px;}
.ls62{letter-spacing:29.450430px;}
.ls25{letter-spacing:29.516850px;}
.ls15{letter-spacing:29.616570px;}
.ls45{letter-spacing:30.015330px;}
.ls12{letter-spacing:30.214710px;}
.ls36{letter-spacing:30.247950px;}
.ls30{letter-spacing:30.347670px;}
.ls13{letter-spacing:30.414090px;}
.ls24{letter-spacing:30.580290px;}
.ls31{letter-spacing:30.846090px;}
.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;}
}
.wsca{word-spacing:-14.976000px;}
.ws7a{word-spacing:-14.190000px;}
.ws79{word-spacing:-13.464000px;}
.wse3{word-spacing:-13.380000px;}
.wsc9{word-spacing:-13.332000px;}
.wsb7{word-spacing:-13.200000px;}
.ws5d{word-spacing:-13.134000px;}
.wsc6{word-spacing:-13.002000px;}
.ws2b{word-spacing:-12.870000px;}
.ws78{word-spacing:-12.804000px;}
.wsdc{word-spacing:-12.780000px;}
.ws14{word-spacing:-12.551400px;}
.ws15{word-spacing:-12.540000px;}
.ws4{word-spacing:-12.511500px;}
.ws2{word-spacing:-12.480000px;}
.wsb6{word-spacing:-12.276000px;}
.ws76{word-spacing:-12.210000px;}
.ws5c{word-spacing:-12.144000px;}
.wscd{word-spacing:-12.120000px;}
.wsce{word-spacing:-12.060000px;}
.wse0{word-spacing:-12.000000px;}
.ws88{word-spacing:-11.880000px;}
.wsdf{word-spacing:-11.700000px;}
.ws29{word-spacing:-11.682000px;}
.wsda{word-spacing:-11.460000px;}
.ws1{word-spacing:-11.400000px;}
.ws2d{word-spacing:-11.286000px;}
.ws0{word-spacing:-10.920000px;}
.wsdb{word-spacing:-10.740000px;}
.ws3{word-spacing:-10.380000px;}
.wscb{word-spacing:-9.660000px;}
.wsde{word-spacing:-9.600000px;}
.ws77{word-spacing:-9.420000px;}
.wsa9{word-spacing:-9.080808px;}
.wsdd{word-spacing:-8.700000px;}
.wsa8{word-spacing:-8.619072px;}
.ws86{word-spacing:-8.185320px;}
.ws9c{word-spacing:-8.141595px;}
.ws2a{word-spacing:-8.041902px;}
.ws49{word-spacing:-7.887990px;}
.wsab{word-spacing:-7.875747px;}
.ws89{word-spacing:-7.776054px;}
.ws4b{word-spacing:-7.752000px;}
.wsb8{word-spacing:-7.742820px;}
.ws9b{word-spacing:-7.676361px;}
.wscc{word-spacing:-7.620000px;}
.wsaa{word-spacing:-7.476975px;}
.ws9a{word-spacing:-7.443744px;}
.ws87{word-spacing:-7.310820px;}
.ws28{word-spacing:-7.118430px;}
.ws2f{word-spacing:-7.011741px;}
.wsb9{word-spacing:-6.945279px;}
.ws4c{word-spacing:-6.878817px;}
.ws30{word-spacing:-6.812355px;}
.ws8a{word-spacing:-6.380352px;}
.ws5b{word-spacing:-6.348870px;}
.ws2c{word-spacing:-6.214197px;}
.ws6b{word-spacing:-6.147735px;}
.ws5e{word-spacing:-6.048042px;}
.ws2e{word-spacing:-5.981580px;}
.ws4a{word-spacing:-5.815425px;}
.ws5f{word-spacing:-5.549577px;}
.ws53{word-spacing:-2.112000px;}
.ws42{word-spacing:-2.109000px;}
.ws24{word-spacing:-2.052000px;}
.ws9f{word-spacing:-2.039334px;}
.ws85{word-spacing:-1.938000px;}
.ws48{word-spacing:-1.710000px;}
.wsea{word-spacing:-1.620000px;}
.wsbf{word-spacing:-1.577598px;}
.ws9e{word-spacing:-1.500642px;}
.ws20{word-spacing:-1.311000px;}
.ws9d{word-spacing:-1.231296px;}
.wsd9{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.197000px;}
.ws23{word-spacing:-1.083000px;}
.ws58{word-spacing:-0.969000px;}
.wsd5{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.858000px;}
.ws3f{word-spacing:-0.855000px;}
.wsed{word-spacing:-0.840000px;}
.wsc5{word-spacing:-0.798000px;}
.wsd4{word-spacing:-0.780000px;}
.wse6{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.660000px;}
.wsc2{word-spacing:-0.654126px;}
.wsad{word-spacing:-0.594000px;}
.wsb0{word-spacing:-0.577170px;}
.ws83{word-spacing:-0.528000px;}
.wsa7{word-spacing:-0.513000px;}
.ws3a{word-spacing:-0.500214px;}
.wse7{word-spacing:-0.480000px;}
.ws6d{word-spacing:-0.462000px;}
.ws3d{word-spacing:-0.399000px;}
.ws27{word-spacing:-0.342000px;}
.wsbe{word-spacing:-0.330000px;}
.wsb5{word-spacing:-0.285000px;}
.wse{word-spacing:-0.264000px;}
.ws7{word-spacing:-0.240000px;}
.ws63{word-spacing:-0.198000px;}
.ws8e{word-spacing:-0.180000px;}
.ws64{word-spacing:-0.132000px;}
.wsa0{word-spacing:-0.120000px;}
.wsa5{word-spacing:-0.114000px;}
.ws16{word-spacing:-0.066000px;}
.ws12{word-spacing:-0.045600px;}
.ws13{word-spacing:-0.011400px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.057000px;}
.ws31{word-spacing:0.060000px;}
.ws1a{word-spacing:0.066000px;}
.ws8f{word-spacing:0.120000px;}
.ws18{word-spacing:0.132000px;}
.wsa2{word-spacing:0.171000px;}
.ws7f{word-spacing:0.174900px;}
.ws62{word-spacing:0.198000px;}
.ws9{word-spacing:0.240000px;}
.ws17{word-spacing:0.264000px;}
.ws6c{word-spacing:0.269346px;}
.ws8{word-spacing:0.300000px;}
.ws1b{word-spacing:0.330000px;}
.ws60{word-spacing:0.384780px;}
.ws1f{word-spacing:0.396000px;}
.wsa4{word-spacing:0.399000px;}
.ws8b{word-spacing:0.420000px;}
.ws47{word-spacing:0.456000px;}
.ws34{word-spacing:0.461736px;}
.wsa3{word-spacing:0.513000px;}
.ws38{word-spacing:0.528000px;}
.wsee{word-spacing:0.540000px;}
.ws96{word-spacing:0.594000px;}
.ws90{word-spacing:0.600000px;}
.ws4e{word-spacing:0.654126px;}
.ws39{word-spacing:0.660000px;}
.ws46{word-spacing:0.684000px;}
.wsd7{word-spacing:0.720000px;}
.ws61{word-spacing:0.726000px;}
.wseb{word-spacing:0.780000px;}
.wsba{word-spacing:0.792000px;}
.ws40{word-spacing:0.798000px;}
.ws7b{word-spacing:0.858000px;}
.wsa{word-spacing:0.900000px;}
.wsc3{word-spacing:0.924000px;}
.ws43{word-spacing:1.026000px;}
.ws82{word-spacing:1.056000px;}
.ws7e{word-spacing:1.080000px;}
.ws66{word-spacing:1.140000px;}
.ws6{word-spacing:1.188000px;}
.ws41{word-spacing:1.197000px;}
.wsd1{word-spacing:1.254000px;}
.wsec{word-spacing:1.260000px;}
.ws37{word-spacing:1.320000px;}
.wsd{word-spacing:1.386000px;}
.ws6f{word-spacing:1.452000px;}
.wsd6{word-spacing:1.500000px;}
.ws36{word-spacing:1.518000px;}
.ws59{word-spacing:1.539000px;}
.ws8d{word-spacing:1.560000px;}
.ws1c{word-spacing:1.584000px;}
.ws69{word-spacing:1.596000px;}
.ws1d{word-spacing:1.650000px;}
.wsa6{word-spacing:1.710000px;}
.ws51{word-spacing:1.716000px;}
.ws92{word-spacing:1.740000px;}
.wsc8{word-spacing:1.782000px;}
.wse5{word-spacing:1.800000px;}
.wsf{word-spacing:1.914000px;}
.ws19{word-spacing:2.046000px;}
.ws93{word-spacing:2.280000px;}
.wsc0{word-spacing:2.310000px;}
.wsae{word-spacing:2.376000px;}
.wsd3{word-spacing:2.400000px;}
.wsb{word-spacing:2.460000px;}
.wsb3{word-spacing:2.508000px;}
.wscf{word-spacing:2.574000px;}
.wsd0{word-spacing:2.640000px;}
.wsc4{word-spacing:2.679000px;}
.ws35{word-spacing:2.706000px;}
.ws74{word-spacing:2.736000px;}
.ws84{word-spacing:2.760000px;}
.wsc7{word-spacing:2.772000px;}
.ws50{word-spacing:2.837993px;}
.ws26{word-spacing:2.850000px;}
.ws4f{word-spacing:2.904000px;}
.ws21{word-spacing:2.906994px;}
.wsd8{word-spacing:2.940000px;}
.ws3e{word-spacing:2.964000px;}
.wsb2{word-spacing:2.970000px;}
.wsa1{word-spacing:3.021000px;}
.wsb1{word-spacing:3.036000px;}
.wsb4{word-spacing:3.249000px;}
.ws98{word-spacing:3.300000px;}
.ws45{word-spacing:3.420000px;}
.ws7d{word-spacing:3.480000px;}
.ws6e{word-spacing:3.498000px;}
.ws6a{word-spacing:3.534000px;}
.ws97{word-spacing:3.564000px;}
.ws71{word-spacing:3.591000px;}
.ws8c{word-spacing:3.696000px;}
.ws80{word-spacing:3.828000px;}
.wse8{word-spacing:3.840000px;}
.ws57{word-spacing:3.894000px;}
.wse9{word-spacing:3.900000px;}
.ws56{word-spacing:3.960000px;}
.ws44{word-spacing:3.990000px;}
.ws7c{word-spacing:4.020000px;}
.ws1e{word-spacing:4.092000px;}
.ws55{word-spacing:4.158000px;}
.wsbc{word-spacing:4.290000px;}
.ws67{word-spacing:4.332000px;}
.ws32{word-spacing:4.422000px;}
.wsbb{word-spacing:4.554000px;}
.ws73{word-spacing:4.560000px;}
.ws75{word-spacing:4.617000px;}
.wsbd{word-spacing:4.620000px;}
.ws81{word-spacing:4.680000px;}
.ws65{word-spacing:4.731000px;}
.wsc1{word-spacing:4.752000px;}
.ws68{word-spacing:4.845000px;}
.ws95{word-spacing:5.280000px;}
.wsd2{word-spacing:5.544000px;}
.wse4{word-spacing:5.580000px;}
.ws33{word-spacing:5.675993px;}
.ws99{word-spacing:5.808000px;}
.ws3b{word-spacing:5.940000px;}
.ws3c{word-spacing:6.006000px;}
.wsaf{word-spacing:6.138000px;}
.ws91{word-spacing:6.240000px;}
.ws70{word-spacing:6.270000px;}
.ws25{word-spacing:6.441000px;}
.wsac{word-spacing:6.996000px;}
.ws11{word-spacing:7.039500px;}
.wsc{word-spacing:7.440000px;}
.ws22{word-spacing:8.265000px;}
.ws4d{word-spacing:8.514000px;}
.ws94{word-spacing:9.120000px;}
.ws72{word-spacing:11.115000px;}
.wse1{word-spacing:11.460000px;}
.wse2{word-spacing:11.580000px;}
._e{margin-left:-10.801357px;}
._10{margin-left:-9.548100px;}
._a{margin-left:-8.235300px;}
._d{margin-left:-6.942000px;}
._4{margin-left:-5.385600px;}
._5{margin-left:-3.948000px;}
._3{margin-left:-2.313600px;}
._1{margin-left:-1.200000px;}
._0{width:1.140000px;}
._2{width:2.142000px;}
._6{width:3.781800px;}
._b{width:5.076000px;}
._c{width:6.630000px;}
._f{width:8.198100px;}
._9{width:11.179500px;}
._7{width:45.899754px;}
._8{width:49.688088px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.231000px;}
.fs8{font-size:34.980000px;}
.fs4{font-size:38.478000px;}
.fs2{font-size:48.972000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:54.147000px;}
.y79{bottom:85.039350px;}
.y4c{bottom:85.039500px;}
.y176{bottom:87.483600px;}
.y23{bottom:89.785500px;}
.y139{bottom:90.094950px;}
.y155{bottom:91.594950px;}
.y78{bottom:102.139350px;}
.y4b{bottom:102.139500px;}
.y175{bottom:105.483600px;}
.y90{bottom:106.884750px;}
.y22{bottom:106.885500px;}
.y138{bottom:109.594950px;}
.y21{bottom:119.239500px;}
.y8f{bottom:119.239650px;}
.y174{bottom:123.483600px;}
.y77{bottom:123.984600px;}
.y4a{bottom:123.984750px;}
.y154{bottom:127.594950px;}
.y137{bottom:129.094950px;}
.y20{bottom:136.339500px;}
.y49{bottom:136.339650px;}
.y10e{bottom:140.611800px;}
.y97{bottom:141.084750px;}
.y127{bottom:141.084900px;}
.y173{bottom:141.483600px;}
.y153{bottom:145.594950px;}
.y136{bottom:148.594950px;}
.y76{bottom:153.439500px;}
.y96{bottom:153.439650px;}
.y48{bottom:158.184900px;}
.y1f{bottom:158.185500px;}
.y172{bottom:159.483600px;}
.y10d{bottom:160.111800px;}
.y152{bottom:163.594950px;}
.y135{bottom:168.094950px;}
.y75{bottom:170.539500px;}
.y95{bottom:170.539650px;}
.y47{bottom:170.539800px;}
.y171{bottom:177.483600px;}
.y10c{bottom:179.611800px;}
.y151{bottom:181.594950px;}
.y134{bottom:187.594950px;}
.y74{bottom:187.639500px;}
.y94{bottom:187.639650px;}
.y46{bottom:187.639800px;}
.yb9{bottom:192.384750px;}
.y170{bottom:195.483600px;}
.y126{bottom:197.466600px;}
.y150{bottom:199.594950px;}
.yd4{bottom:200.466600px;}
.yf1{bottom:202.383600px;}
.y133{bottom:207.094950px;}
.y73{bottom:209.484750px;}
.y93{bottom:209.484900px;}
.y45{bottom:209.485050px;}
.y10b{bottom:211.867800px;}
.y16f{bottom:213.483600px;}
.y125{bottom:216.966600px;}
.y14f{bottom:217.594950px;}
.yd3{bottom:218.466600px;}
.yf0{bottom:220.383600px;}
.y72{bottom:221.839650px;}
.y118{bottom:221.839800px;}
.y44{bottom:226.585200px;}
.y132{bottom:226.594950px;}
.y16e{bottom:231.483600px;}
.y14e{bottom:235.594950px;}
.y8e{bottom:236.466600px;}
.y1d{bottom:237.807750px;}
.yef{bottom:238.383600px;}
.y71{bottom:238.939650px;}
.y117{bottom:238.939800px;}
.y43{bottom:238.940100px;}
.yb8{bottom:241.167750px;}
.y131{bottom:246.094950px;}
.y16d{bottom:249.483600px;}
.y14d{bottom:253.594950px;}
.yd2{bottom:254.466600px;}
.y8d{bottom:255.966600px;}
.y116{bottom:256.039800px;}
.yee{bottom:256.383600px;}
.y1b{bottom:257.307750px;}
.yb7{bottom:260.667750px;}
.y70{bottom:260.784900px;}
.y42{bottom:260.785350px;}
.y1c{bottom:262.802250px;}
.y130{bottom:265.594950px;}
.y10a{bottom:267.483600px;}
.y14c{bottom:271.594950px;}
.y6f{bottom:273.139800px;}
.y41{bottom:273.140250px;}
.y8c{bottom:275.463600px;}
.y11f{bottom:275.466600px;}
.y1a{bottom:276.807750px;}
.yb6{bottom:280.167750px;}
.y12f{bottom:285.094950px;}
.y16c{bottom:285.483600px;}
.y109{bottom:286.983600px;}
.y14b{bottom:289.594950px;}
.y6e{bottom:290.239800px;}
.yd1{bottom:291.966600px;}
.yed{bottom:293.883600px;}
.y8b{bottom:294.966600px;}
.y115{bottom:294.985050px;}
.y40{bottom:294.985500px;}
.y19{bottom:296.307750px;}
.yb5{bottom:299.667750px;}
.y16b{bottom:303.483600px;}
.y12e{bottom:304.594950px;}
.y108{bottom:306.483600px;}
.y14a{bottom:307.594950px;}
.yd0{bottom:311.466600px;}
.y6d{bottom:312.085050px;}
.yec{bottom:313.683450px;}
.y8a{bottom:314.466600px;}
.yb4{bottom:319.167750px;}
.y16a{bottom:321.483600px;}
.y12d{bottom:324.094950px;}
.y6c{bottom:324.439950px;}
.y149{bottom:325.594950px;}
.y107{bottom:325.983600px;}
.y18{bottom:328.563750px;}
.ycf{bottom:330.966600px;}
.y89{bottom:333.966600px;}
.yb3{bottom:338.667750px;}
.y124{bottom:339.461100px;}
.y169{bottom:339.483600px;}
.y114{bottom:341.466600px;}
.y6b{bottom:341.539950px;}
.y12c{bottom:343.594950px;}
.y106{bottom:345.483600px;}
.y3f{bottom:346.594950px;}
.yeb{bottom:352.983600px;}
.y11e{bottom:353.463600px;}
.y88{bottom:353.466600px;}
.y168{bottom:357.483600px;}
.yb2{bottom:358.167750px;}
.y6a{bottom:358.639950px;}
.y113{bottom:359.466600px;}
.y148{bottom:361.594950px;}
.y12b{bottom:363.094950px;}
.y3e{bottom:364.594950px;}
.y105{bottom:364.983600px;}
.yce{bottom:369.966600px;}
.yea{bottom:370.983600px;}
.y87{bottom:372.966600px;}
.y167{bottom:375.483600px;}
.y112{bottom:377.466600px;}
.yb1{bottom:377.667750px;}
.y147{bottom:379.594950px;}
.y69{bottom:380.485200px;}
.y12a{bottom:382.594950px;}
.y17{bottom:384.179550px;}
.y104{bottom:384.483600px;}
.ycd{bottom:387.966600px;}
.ye9{bottom:388.983600px;}
.y86{bottom:392.466600px;}
.y166{bottom:393.483600px;}
.y111{bottom:395.466600px;}
.yb0{bottom:397.167750px;}
.y146{bottom:397.594950px;}
.y3d{bottom:402.094950px;}
.y16{bottom:402.179550px;}
.y103{bottom:403.977600px;}
.ycc{bottom:405.966600px;}
.ye8{bottom:406.983600px;}
.y165{bottom:411.483600px;}
.y85{bottom:411.966600px;}
.y110{bottom:413.466600px;}
.y145{bottom:415.594950px;}
.yaf{bottom:416.667750px;}
.y68{bottom:418.980600px;}
.y3c{bottom:421.594950px;}
.y102{bottom:423.480600px;}
.ycb{bottom:423.966600px;}
.ye7{bottom:424.983600px;}
.y164{bottom:429.483600px;}
.y84{bottom:431.466600px;}
.y144{bottom:433.594950px;}
.yae{bottom:436.167750px;}
.y15{bottom:438.179550px;}
.y65{bottom:438.477600px;}
.y67{bottom:438.483600px;}
.y3b{bottom:441.094950px;}
.yca{bottom:441.966600px;}
.ye6{bottom:442.983600px;}
.y66{bottom:443.978100px;}
.y163{bottom:447.483600px;}
.y83{bottom:450.966600px;}
.y143{bottom:451.594950px;}
.yad{bottom:455.667750px;}
.y14{bottom:456.179550px;}
.y64{bottom:457.980600px;}
.yc9{bottom:459.966600px;}
.y3a{bottom:460.594950px;}
.ye5{bottom:460.983600px;}
.y101{bottom:462.483600px;}
.y162{bottom:465.483600px;}
.y142{bottom:469.594950px;}
.y82{bottom:470.466600px;}
.y129{bottom:473.350950px;}
.y13{bottom:474.179550px;}
.yac{bottom:475.167750px;}
.y63{bottom:477.483600px;}
.ye4{bottom:478.983600px;}
.y39{bottom:480.094950px;}
.y100{bottom:481.983600px;}
.y161{bottom:483.483600px;}
.y141{bottom:487.594950px;}
.y11d{bottom:489.960600px;}
.y81{bottom:489.966600px;}
.y12{bottom:492.179400px;}
.yab{bottom:494.667750px;}
.y62{bottom:496.983600px;}
.yc8{bottom:497.466600px;}
.y38{bottom:499.594950px;}
.yff{bottom:501.483600px;}
.y140{bottom:505.594950px;}
.y11c{bottom:509.463600px;}
.y80{bottom:509.466600px;}
.y11{bottom:510.179400px;}
.yaa{bottom:514.167750px;}
.ye3{bottom:514.983600px;}
.y61{bottom:516.483600px;}
.yc7{bottom:516.966600px;}
.y160{bottom:519.483600px;}
.yfe{bottom:520.983600px;}
.y13f{bottom:523.594950px;}
.y10{bottom:528.179400px;}
.y7f{bottom:528.966600px;}
.y37{bottom:531.850950px;}
.ye2{bottom:532.983600px;}
.ya9{bottom:533.667750px;}
.y11b{bottom:534.461100px;}
.y60{bottom:535.983600px;}
.yc6{bottom:536.466600px;}
.y15f{bottom:537.483600px;}
.yfd{bottom:540.483600px;}
.y13e{bottom:541.594950px;}
.yf{bottom:546.179400px;}
.y128{bottom:548.463600px;}
.y7e{bottom:548.466600px;}
.ya8{bottom:553.167750px;}
.y123{bottom:553.961100px;}
.y5f{bottom:555.480600px;}
.y15e{bottom:555.483600px;}
.yc5{bottom:555.966600px;}
.y13d{bottom:559.594950px;}
.yfc{bottom:559.983600px;}
.ye{bottom:564.179400px;}
.y122{bottom:567.957600px;}
.y7d{bottom:567.966600px;}
.ye1{bottom:570.480600px;}
.ya7{bottom:572.667750px;}
.y15d{bottom:573.483600px;}
.y5e{bottom:574.983600px;}
.yc4{bottom:575.466600px;}
.yfb{bottom:579.483600px;}
.yd{bottom:582.179400px;}
.y121{bottom:587.460600px;}
.y36{bottom:587.466600px;}
.ye0{bottom:589.983600px;}
.y13c{bottom:590.350950px;}
.y15c{bottom:591.483600px;}
.ya6{bottom:592.164750px;}
.y5c{bottom:594.483600px;}
.yc3{bottom:594.966600px;}
.yfa{bottom:598.983600px;}
.y5d{bottom:599.978100px;}
.yc{bottom:600.179400px;}
.y120{bottom:606.963600px;}
.y35{bottom:606.966600px;}
.ydf{bottom:609.483600px;}
.ya5{bottom:611.667750px;}
.y5b{bottom:613.983600px;}
.yc2{bottom:614.466600px;}
.yb{bottom:618.179400px;}
.yf9{bottom:618.483600px;}
.y34{bottom:626.466600px;}
.y15b{bottom:627.483600px;}
.yde{bottom:628.983600px;}
.ya4{bottom:631.167750px;}
.y5a{bottom:633.483600px;}
.yc1{bottom:633.966600px;}
.ya{bottom:636.179400px;}
.yf8{bottom:637.983600px;}
.y15a{bottom:645.483600px;}
.y33{bottom:645.966600px;}
.ydd{bottom:648.483600px;}
.ya3{bottom:650.667750px;}
.y10f{bottom:651.461100px;}
.y58{bottom:652.983600px;}
.yc0{bottom:653.466600px;}
.y9{bottom:654.179400px;}
.yf7{bottom:657.483600px;}
.y59{bottom:658.478100px;}
.y159{bottom:663.483600px;}
.y13b{bottom:665.463600px;}
.y31{bottom:665.466600px;}
.ydc{bottom:667.983600px;}
.ya2{bottom:670.167750px;}
.y32{bottom:670.961100px;}
.y8{bottom:672.179400px;}
.y57{bottom:672.483600px;}
.ybf{bottom:672.966600px;}
.yf6{bottom:676.983600px;}
.y158{bottom:681.483600px;}
.y30{bottom:684.966600px;}
.ydb{bottom:687.483600px;}
.ya1{bottom:689.667750px;}
.y7{bottom:690.179400px;}
.y55{bottom:691.983600px;}
.yf5{bottom:696.483600px;}
.y56{bottom:697.478100px;}
.y157{bottom:699.483600px;}
.y2e{bottom:704.466600px;}
.yda{bottom:706.983600px;}
.y6{bottom:708.179400px;}
.ya0{bottom:709.167750px;}
.y2f{bottom:709.961100px;}
.y54{bottom:711.483600px;}
.ybe{bottom:711.966600px;}
.y156{bottom:717.483600px;}
.y2d{bottom:723.966600px;}
.yd9{bottom:726.483600px;}
.y9f{bottom:728.667750px;}
.ybd{bottom:729.966600px;}
.y53{bottom:730.983600px;}
.yf4{bottom:735.483600px;}
.y11a{bottom:743.463600px;}
.y2c{bottom:743.466600px;}
.yd8{bottom:745.983600px;}
.ybc{bottom:747.966600px;}
.y9e{bottom:748.167750px;}
.y52{bottom:750.483600px;}
.yf3{bottom:753.483600px;}
.y92{bottom:762.963600px;}
.y2b{bottom:762.966600px;}
.yd7{bottom:765.483600px;}
.ybb{bottom:765.966600px;}
.y9d{bottom:767.667750px;}
.yf2{bottom:771.483600px;}
.y13a{bottom:782.463600px;}
.y2a{bottom:782.466600px;}
.yba{bottom:783.966600px;}
.yd6{bottom:784.983600px;}
.y9c{bottom:787.167900px;}
.y51{bottom:789.483600px;}
.y5{bottom:789.958950px;}
.y29{bottom:801.966600px;}
.yd5{bottom:804.483600px;}
.y9a{bottom:806.667900px;}
.y50{bottom:807.483600px;}
.y9b{bottom:812.162400px;}
.y7c{bottom:821.463600px;}
.y28{bottom:821.466600px;}
.y4f{bottom:825.483600px;}
.y99{bottom:826.167900px;}
.y119{bottom:826.961100px;}
.y4{bottom:831.018900px;}
.y7a{bottom:840.963600px;}
.y27{bottom:840.966600px;}
.y4e{bottom:843.483600px;}
.y7b{bottom:846.461100px;}
.y3{bottom:856.218900px;}
.y98{bottom:858.423750px;}
.y26{bottom:860.466600px;}
.y4d{bottom:861.483600px;}
.y177{bottom:861.492150px;}
.y91{bottom:865.961100px;}
.y2{bottom:896.916750px;}
.y25{bottom:896.922150px;}
.y1e{bottom:922.351200px;}
.y1{bottom:922.677150px;}
.hb{height:25.189098px;}
.hd{height:27.132000px;}
.h10{height:27.132600px;}
.h9{height:31.128702px;}
.ha{height:41.580000px;}
.hc{height:43.206000px;}
.he{height:46.113000px;}
.h3{height:48.480000px;}
.h2{height:48.540000px;}
.h6{height:48.720000px;}
.h8{height:53.394000px;}
.hf{height:53.406000px;}
.h11{height:53.430000px;}
.h5{height:55.836000px;}
.h7{height:60.912000px;}
.h4{height:69.972000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xa{left:85.039350px;}
.xe{left:102.047250px;}
.x9{left:104.342700px;}
.x3{left:106.299150px;}
.x8{left:123.307050px;}
.xd{left:127.559100px;}
.x4{left:148.818900px;}
.x1c{left:170.078700px;}
.x2{left:189.397200px;}
.x27{left:195.491100px;}
.x28{left:205.236150px;}
.x13{left:221.073900px;}
.x14{left:229.891200px;}
.x7{left:237.413550px;}
.x1d{left:271.747350px;}
.x1e{left:281.333100px;}
.x1a{left:319.981200px;}
.x1b{left:329.231400px;}
.x19{left:351.815700px;}
.xf{left:361.286250px;}
.x1f{left:364.285800px;}
.x10{left:365.956650px;}
.x20{left:373.768950px;}
.x5{left:404.687700px;}
.x6{left:409.358100px;}
.x17{left:414.083100px;}
.x18{left:423.254100px;}
.xb{left:438.716100px;}
.xc{left:443.369100px;}
.x25{left:478.534350px;}
.x22{left:484.077600px;}
.x29{left:486.010350px;}
.x26{left:488.025300px;}
.x11{left:490.258650px;}
.x23{left:493.747200px;}
.x2a{left:495.517950px;}
.x12{left:499.199850px;}
.x21{left:564.409200px;}
.x15{left:567.114300px;}
.x1{left:573.855600px;}
.x16{left:576.578700px;}
.x24{left:590.600850px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v3{vertical-align:-16.874667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.760000pt;}
.v2{vertical-align:19.536533pt;}
.v1{vertical-align:24.864000pt;}
.ls39{letter-spacing:-5.573333pt;}
.ls4c{letter-spacing:-4.928000pt;}
.ls42{letter-spacing:-3.637333pt;}
.ls10{letter-spacing:-3.578667pt;}
.ls6e{letter-spacing:-3.360000pt;}
.ls2d{letter-spacing:-2.736000pt;}
.ls7a{letter-spacing:-2.400000pt;}
.ls71{letter-spacing:-2.133333pt;}
.ls6a{letter-spacing:-1.856000pt;}
.lsf{letter-spacing:-1.818667pt;}
.ls3c{letter-spacing:-1.760000pt;}
.ls6d{letter-spacing:-1.653333pt;}
.ls7b{letter-spacing:-1.600000pt;}
.ls4b{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-1.056000pt;}
.ls69{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.880000pt;}
.ls33{letter-spacing:-0.855067pt;}
.ls70{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.762667pt;}
.ls3d{letter-spacing:-0.746667pt;}
.ls75{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.679389pt;}
.ls26{letter-spacing:-0.581445pt;}
.ls2c{letter-spacing:-0.443080pt;}
.ls19{letter-spacing:-0.410432pt;}
.ls28{letter-spacing:-0.352000pt;}
.ls32{letter-spacing:-0.342027pt;}
.ls1f{letter-spacing:-0.295387pt;}
.ls3b{letter-spacing:-0.293333pt;}
.ls37{letter-spacing:-0.239419pt;}
.ls34{letter-spacing:-0.236309pt;}
.ls5c{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.171013pt;}
.ls3e{letter-spacing:-0.155467pt;}
.ls3a{letter-spacing:-0.147693pt;}
.ls2b{letter-spacing:-0.117333pt;}
.ls47{letter-spacing:-0.106667pt;}
.ls1d{letter-spacing:-0.088616pt;}
.ls3{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000015pt;}
.lsd{letter-spacing:0.000064pt;}
.lsb{letter-spacing:0.010133pt;}
.lsa{letter-spacing:0.040533pt;}
.ls49{letter-spacing:0.059077pt;}
.ls76{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.117333pt;}
.ls77{letter-spacing:0.213333pt;}
.ls2f{letter-spacing:0.234650pt;}
.ls64{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.234673pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.304000pt;}
.ls57{letter-spacing:0.352000pt;}
.ls1e{letter-spacing:0.405333pt;}
.ls60{letter-spacing:0.410656pt;}
.ls6{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.443080pt;}
.ls1c{letter-spacing:0.444635pt;}
.ls43{letter-spacing:0.469333pt;}
.ls73{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.502157pt;}
.ls4a{letter-spacing:0.506667pt;}
.ls27{letter-spacing:0.513040pt;}
.ls29{letter-spacing:0.528000pt;}
.ls72{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.561235pt;}
.ls66{letter-spacing:0.581445pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.620312pt;}
.ls79{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.645333pt;}
.ls1a{letter-spacing:0.649851pt;}
.ls6b{letter-spacing:0.693333pt;}
.ls40{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.719467pt;}
.ls7d{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.881600pt;}
.ls53{letter-spacing:1.004315pt;}
.ls5d{letter-spacing:1.033853pt;}
.ls6f{letter-spacing:1.066667pt;}
.ls50{letter-spacing:1.094485pt;}
.ls78{letter-spacing:1.120000pt;}
.ls5a{letter-spacing:1.162891pt;}
.ls54{letter-spacing:1.211085pt;}
.ls67{letter-spacing:1.270160pt;}
.ls48{letter-spacing:1.299701pt;}
.ls51{letter-spacing:1.333904pt;}
.ls46{letter-spacing:1.368107pt;}
.ls5e{letter-spacing:1.388317pt;}
.ls65{letter-spacing:1.402309pt;}
.ls7c{letter-spacing:1.440000pt;}
.ls56{letter-spacing:1.453333pt;}
.ls41{letter-spacing:1.466667pt;}
.ls9{letter-spacing:1.494667pt;}
.lsc{letter-spacing:1.530133pt;}
.ls5b{letter-spacing:1.573323pt;}
.ls55{letter-spacing:1.624627pt;}
.ls22{letter-spacing:1.642667pt;}
.ls74{letter-spacing:1.760000pt;}
.ls52{letter-spacing:1.812741pt;}
.ls63{letter-spacing:1.877333pt;}
.ls5f{letter-spacing:4.048000pt;}
.ls4f{letter-spacing:25.144293pt;}
.ls59{letter-spacing:25.351067pt;}
.ls44{letter-spacing:25.439653pt;}
.ls61{letter-spacing:25.469200pt;}
.ls4e{letter-spacing:25.528293pt;}
.ls58{letter-spacing:25.705520pt;}
.ls4d{letter-spacing:25.735067pt;}
.ls14{letter-spacing:26.119067pt;}
.ls62{letter-spacing:26.178160pt;}
.ls25{letter-spacing:26.237200pt;}
.ls15{letter-spacing:26.325840pt;}
.ls45{letter-spacing:26.680293pt;}
.ls12{letter-spacing:26.857520pt;}
.ls36{letter-spacing:26.887067pt;}
.ls30{letter-spacing:26.975707pt;}
.ls13{letter-spacing:27.034747pt;}
.ls24{letter-spacing:27.182480pt;}
.ls31{letter-spacing:27.418747pt;}
.wsca{word-spacing:-13.312000pt;}
.ws7a{word-spacing:-12.613333pt;}
.ws79{word-spacing:-11.968000pt;}
.wse3{word-spacing:-11.893333pt;}
.wsc9{word-spacing:-11.850667pt;}
.wsb7{word-spacing:-11.733333pt;}
.ws5d{word-spacing:-11.674667pt;}
.wsc6{word-spacing:-11.557333pt;}
.ws2b{word-spacing:-11.440000pt;}
.ws78{word-spacing:-11.381333pt;}
.wsdc{word-spacing:-11.360000pt;}
.ws14{word-spacing:-11.156800pt;}
.ws15{word-spacing:-11.146667pt;}
.ws4{word-spacing:-11.121333pt;}
.ws2{word-spacing:-11.093333pt;}
.wsb6{word-spacing:-10.912000pt;}
.ws76{word-spacing:-10.853333pt;}
.ws5c{word-spacing:-10.794667pt;}
.wscd{word-spacing:-10.773333pt;}
.wsce{word-spacing:-10.720000pt;}
.wse0{word-spacing:-10.666667pt;}
.ws88{word-spacing:-10.560000pt;}
.wsdf{word-spacing:-10.400000pt;}
.ws29{word-spacing:-10.384000pt;}
.wsda{word-spacing:-10.186667pt;}
.ws1{word-spacing:-10.133333pt;}
.ws2d{word-spacing:-10.032000pt;}
.ws0{word-spacing:-9.706667pt;}
.wsdb{word-spacing:-9.546667pt;}
.ws3{word-spacing:-9.226667pt;}
.wscb{word-spacing:-8.586667pt;}
.wsde{word-spacing:-8.533333pt;}
.ws77{word-spacing:-8.373333pt;}
.wsa9{word-spacing:-8.071829pt;}
.wsdd{word-spacing:-7.733333pt;}
.wsa8{word-spacing:-7.661397pt;}
.ws86{word-spacing:-7.275840pt;}
.ws9c{word-spacing:-7.236973pt;}
.ws2a{word-spacing:-7.148357pt;}
.ws49{word-spacing:-7.011547pt;}
.wsab{word-spacing:-7.000664pt;}
.ws89{word-spacing:-6.912048pt;}
.ws4b{word-spacing:-6.890667pt;}
.wsb8{word-spacing:-6.882506pt;}
.ws9b{word-spacing:-6.823432pt;}
.wscc{word-spacing:-6.773333pt;}
.wsaa{word-spacing:-6.646200pt;}
.ws9a{word-spacing:-6.616661pt;}
.ws87{word-spacing:-6.498507pt;}
.ws28{word-spacing:-6.327493pt;}
.ws2f{word-spacing:-6.232659pt;}
.wsb9{word-spacing:-6.173581pt;}
.ws4c{word-spacing:-6.114504pt;}
.ws30{word-spacing:-6.055427pt;}
.ws8a{word-spacing:-5.671424pt;}
.ws5b{word-spacing:-5.643440pt;}
.ws2c{word-spacing:-5.523731pt;}
.ws6b{word-spacing:-5.464653pt;}
.ws5e{word-spacing:-5.376037pt;}
.ws2e{word-spacing:-5.316960pt;}
.ws4a{word-spacing:-5.169267pt;}
.ws5f{word-spacing:-4.932957pt;}
.ws53{word-spacing:-1.877333pt;}
.ws42{word-spacing:-1.874667pt;}
.ws24{word-spacing:-1.824000pt;}
.ws9f{word-spacing:-1.812741pt;}
.ws85{word-spacing:-1.722667pt;}
.ws48{word-spacing:-1.520000pt;}
.wsea{word-spacing:-1.440000pt;}
.wsbf{word-spacing:-1.402309pt;}
.ws9e{word-spacing:-1.333904pt;}
.ws20{word-spacing:-1.165333pt;}
.ws9d{word-spacing:-1.094485pt;}
.wsd9{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.064000pt;}
.ws23{word-spacing:-0.962667pt;}
.ws58{word-spacing:-0.861333pt;}
.wsd5{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.762667pt;}
.ws3f{word-spacing:-0.760000pt;}
.wsed{word-spacing:-0.746667pt;}
.wsc5{word-spacing:-0.709333pt;}
.wsd4{word-spacing:-0.693333pt;}
.wse6{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.586667pt;}
.wsc2{word-spacing:-0.581445pt;}
.wsad{word-spacing:-0.528000pt;}
.wsb0{word-spacing:-0.513040pt;}
.ws83{word-spacing:-0.469333pt;}
.wsa7{word-spacing:-0.456000pt;}
.ws3a{word-spacing:-0.444635pt;}
.wse7{word-spacing:-0.426667pt;}
.ws6d{word-spacing:-0.410667pt;}
.ws3d{word-spacing:-0.354667pt;}
.ws27{word-spacing:-0.304000pt;}
.wsbe{word-spacing:-0.293333pt;}
.wsb5{word-spacing:-0.253333pt;}
.wse{word-spacing:-0.234667pt;}
.ws7{word-spacing:-0.213333pt;}
.ws63{word-spacing:-0.176000pt;}
.ws8e{word-spacing:-0.160000pt;}
.ws64{word-spacing:-0.117333pt;}
.wsa0{word-spacing:-0.106667pt;}
.wsa5{word-spacing:-0.101333pt;}
.ws16{word-spacing:-0.058667pt;}
.ws12{word-spacing:-0.040533pt;}
.ws13{word-spacing:-0.010133pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.050667pt;}
.ws31{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.058667pt;}
.ws8f{word-spacing:0.106667pt;}
.ws18{word-spacing:0.117333pt;}
.wsa2{word-spacing:0.152000pt;}
.ws7f{word-spacing:0.155467pt;}
.ws62{word-spacing:0.176000pt;}
.ws9{word-spacing:0.213333pt;}
.ws17{word-spacing:0.234667pt;}
.ws6c{word-spacing:0.239419pt;}
.ws8{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.293333pt;}
.ws60{word-spacing:0.342027pt;}
.ws1f{word-spacing:0.352000pt;}
.wsa4{word-spacing:0.354667pt;}
.ws8b{word-spacing:0.373333pt;}
.ws47{word-spacing:0.405333pt;}
.ws34{word-spacing:0.410432pt;}
.wsa3{word-spacing:0.456000pt;}
.ws38{word-spacing:0.469333pt;}
.wsee{word-spacing:0.480000pt;}
.ws96{word-spacing:0.528000pt;}
.ws90{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.581445pt;}
.ws39{word-spacing:0.586667pt;}
.ws46{word-spacing:0.608000pt;}
.wsd7{word-spacing:0.640000pt;}
.ws61{word-spacing:0.645333pt;}
.wseb{word-spacing:0.693333pt;}
.wsba{word-spacing:0.704000pt;}
.ws40{word-spacing:0.709333pt;}
.ws7b{word-spacing:0.762667pt;}
.wsa{word-spacing:0.800000pt;}
.wsc3{word-spacing:0.821333pt;}
.ws43{word-spacing:0.912000pt;}
.ws82{word-spacing:0.938667pt;}
.ws7e{word-spacing:0.960000pt;}
.ws66{word-spacing:1.013333pt;}
.ws6{word-spacing:1.056000pt;}
.ws41{word-spacing:1.064000pt;}
.wsd1{word-spacing:1.114667pt;}
.wsec{word-spacing:1.120000pt;}
.ws37{word-spacing:1.173333pt;}
.wsd{word-spacing:1.232000pt;}
.ws6f{word-spacing:1.290667pt;}
.wsd6{word-spacing:1.333333pt;}
.ws36{word-spacing:1.349333pt;}
.ws59{word-spacing:1.368000pt;}
.ws8d{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.408000pt;}
.ws69{word-spacing:1.418667pt;}
.ws1d{word-spacing:1.466667pt;}
.wsa6{word-spacing:1.520000pt;}
.ws51{word-spacing:1.525333pt;}
.ws92{word-spacing:1.546667pt;}
.wsc8{word-spacing:1.584000pt;}
.wse5{word-spacing:1.600000pt;}
.wsf{word-spacing:1.701333pt;}
.ws19{word-spacing:1.818667pt;}
.ws93{word-spacing:2.026667pt;}
.wsc0{word-spacing:2.053333pt;}
.wsae{word-spacing:2.112000pt;}
.wsd3{word-spacing:2.133333pt;}
.wsb{word-spacing:2.186667pt;}
.wsb3{word-spacing:2.229333pt;}
.wscf{word-spacing:2.288000pt;}
.wsd0{word-spacing:2.346667pt;}
.wsc4{word-spacing:2.381333pt;}
.ws35{word-spacing:2.405333pt;}
.ws74{word-spacing:2.432000pt;}
.ws84{word-spacing:2.453333pt;}
.wsc7{word-spacing:2.464000pt;}
.ws50{word-spacing:2.522661pt;}
.ws26{word-spacing:2.533333pt;}
.ws4f{word-spacing:2.581333pt;}
.ws21{word-spacing:2.583995pt;}
.wsd8{word-spacing:2.613333pt;}
.ws3e{word-spacing:2.634667pt;}
.wsb2{word-spacing:2.640000pt;}
.wsa1{word-spacing:2.685333pt;}
.wsb1{word-spacing:2.698667pt;}
.wsb4{word-spacing:2.888000pt;}
.ws98{word-spacing:2.933333pt;}
.ws45{word-spacing:3.040000pt;}
.ws7d{word-spacing:3.093333pt;}
.ws6e{word-spacing:3.109333pt;}
.ws6a{word-spacing:3.141333pt;}
.ws97{word-spacing:3.168000pt;}
.ws71{word-spacing:3.192000pt;}
.ws8c{word-spacing:3.285333pt;}
.ws80{word-spacing:3.402667pt;}
.wse8{word-spacing:3.413333pt;}
.ws57{word-spacing:3.461333pt;}
.wse9{word-spacing:3.466667pt;}
.ws56{word-spacing:3.520000pt;}
.ws44{word-spacing:3.546667pt;}
.ws7c{word-spacing:3.573333pt;}
.ws1e{word-spacing:3.637333pt;}
.ws55{word-spacing:3.696000pt;}
.wsbc{word-spacing:3.813333pt;}
.ws67{word-spacing:3.850667pt;}
.ws32{word-spacing:3.930667pt;}
.wsbb{word-spacing:4.048000pt;}
.ws73{word-spacing:4.053333pt;}
.ws75{word-spacing:4.104000pt;}
.wsbd{word-spacing:4.106667pt;}
.ws81{word-spacing:4.160000pt;}
.ws65{word-spacing:4.205333pt;}
.wsc1{word-spacing:4.224000pt;}
.ws68{word-spacing:4.306667pt;}
.ws95{word-spacing:4.693333pt;}
.wsd2{word-spacing:4.928000pt;}
.wse4{word-spacing:4.960000pt;}
.ws33{word-spacing:5.045327pt;}
.ws99{word-spacing:5.162667pt;}
.ws3b{word-spacing:5.280000pt;}
.ws3c{word-spacing:5.338667pt;}
.wsaf{word-spacing:5.456000pt;}
.ws91{word-spacing:5.546667pt;}
.ws70{word-spacing:5.573333pt;}
.ws25{word-spacing:5.725333pt;}
.wsac{word-spacing:6.218667pt;}
.ws11{word-spacing:6.257333pt;}
.wsc{word-spacing:6.613333pt;}
.ws22{word-spacing:7.346667pt;}
.ws4d{word-spacing:7.568000pt;}
.ws94{word-spacing:8.106667pt;}
.ws72{word-spacing:9.880000pt;}
.wse1{word-spacing:10.186667pt;}
.wse2{word-spacing:10.293333pt;}
._e{margin-left:-9.601206pt;}
._10{margin-left:-8.487200pt;}
._a{margin-left:-7.320267pt;}
._d{margin-left:-6.170667pt;}
._4{margin-left:-4.787200pt;}
._5{margin-left:-3.509333pt;}
._3{margin-left:-2.056533pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.013333pt;}
._2{width:1.904000pt;}
._6{width:3.361600pt;}
._b{width:4.512000pt;}
._c{width:5.893333pt;}
._f{width:7.287200pt;}
._9{width:9.937333pt;}
._7{width:40.799781pt;}
._8{width:44.167189pt;}
.fs6{font-size:29.538667pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:34.202667pt;}
.fs2{font-size:43.530667pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:48.130667pt;}
.y79{bottom:75.590533pt;}
.y4c{bottom:75.590667pt;}
.y176{bottom:77.763200pt;}
.y23{bottom:79.809333pt;}
.y139{bottom:80.084400pt;}
.y155{bottom:81.417733pt;}
.y78{bottom:90.790533pt;}
.y4b{bottom:90.790667pt;}
.y175{bottom:93.763200pt;}
.y90{bottom:95.008667pt;}
.y22{bottom:95.009333pt;}
.y138{bottom:97.417733pt;}
.y21{bottom:105.990667pt;}
.y8f{bottom:105.990800pt;}
.y174{bottom:109.763200pt;}
.y77{bottom:110.208533pt;}
.y4a{bottom:110.208667pt;}
.y154{bottom:113.417733pt;}
.y137{bottom:114.751067pt;}
.y20{bottom:121.190667pt;}
.y49{bottom:121.190800pt;}
.y10e{bottom:124.988267pt;}
.y97{bottom:125.408667pt;}
.y127{bottom:125.408800pt;}
.y173{bottom:125.763200pt;}
.y153{bottom:129.417733pt;}
.y136{bottom:132.084400pt;}
.y76{bottom:136.390667pt;}
.y96{bottom:136.390800pt;}
.y48{bottom:140.608800pt;}
.y1f{bottom:140.609333pt;}
.y172{bottom:141.763200pt;}
.y10d{bottom:142.321600pt;}
.y152{bottom:145.417733pt;}
.y135{bottom:149.417733pt;}
.y75{bottom:151.590667pt;}
.y95{bottom:151.590800pt;}
.y47{bottom:151.590933pt;}
.y171{bottom:157.763200pt;}
.y10c{bottom:159.654933pt;}
.y151{bottom:161.417733pt;}
.y134{bottom:166.751067pt;}
.y74{bottom:166.790667pt;}
.y94{bottom:166.790800pt;}
.y46{bottom:166.790933pt;}
.yb9{bottom:171.008667pt;}
.y170{bottom:173.763200pt;}
.y126{bottom:175.525867pt;}
.y150{bottom:177.417733pt;}
.yd4{bottom:178.192533pt;}
.yf1{bottom:179.896533pt;}
.y133{bottom:184.084400pt;}
.y73{bottom:186.208667pt;}
.y93{bottom:186.208800pt;}
.y45{bottom:186.208933pt;}
.y10b{bottom:188.326933pt;}
.y16f{bottom:189.763200pt;}
.y125{bottom:192.859200pt;}
.y14f{bottom:193.417733pt;}
.yd3{bottom:194.192533pt;}
.yf0{bottom:195.896533pt;}
.y72{bottom:197.190800pt;}
.y118{bottom:197.190933pt;}
.y44{bottom:201.409067pt;}
.y132{bottom:201.417733pt;}
.y16e{bottom:205.763200pt;}
.y14e{bottom:209.417733pt;}
.y8e{bottom:210.192533pt;}
.y1d{bottom:211.384667pt;}
.yef{bottom:211.896533pt;}
.y71{bottom:212.390800pt;}
.y117{bottom:212.390933pt;}
.y43{bottom:212.391200pt;}
.yb8{bottom:214.371333pt;}
.y131{bottom:218.751067pt;}
.y16d{bottom:221.763200pt;}
.y14d{bottom:225.417733pt;}
.yd2{bottom:226.192533pt;}
.y8d{bottom:227.525867pt;}
.y116{bottom:227.590933pt;}
.yee{bottom:227.896533pt;}
.y1b{bottom:228.718000pt;}
.yb7{bottom:231.704667pt;}
.y70{bottom:231.808800pt;}
.y42{bottom:231.809200pt;}
.y1c{bottom:233.602000pt;}
.y130{bottom:236.084400pt;}
.y10a{bottom:237.763200pt;}
.y14c{bottom:241.417733pt;}
.y6f{bottom:242.790933pt;}
.y41{bottom:242.791333pt;}
.y8c{bottom:244.856533pt;}
.y11f{bottom:244.859200pt;}
.y1a{bottom:246.051333pt;}
.yb6{bottom:249.038000pt;}
.y12f{bottom:253.417733pt;}
.y16c{bottom:253.763200pt;}
.y109{bottom:255.096533pt;}
.y14b{bottom:257.417733pt;}
.y6e{bottom:257.990933pt;}
.yd1{bottom:259.525867pt;}
.yed{bottom:261.229867pt;}
.y8b{bottom:262.192533pt;}
.y115{bottom:262.208933pt;}
.y40{bottom:262.209333pt;}
.y19{bottom:263.384667pt;}
.yb5{bottom:266.371333pt;}
.y16b{bottom:269.763200pt;}
.y12e{bottom:270.751067pt;}
.y108{bottom:272.429867pt;}
.y14a{bottom:273.417733pt;}
.yd0{bottom:276.859200pt;}
.y6d{bottom:277.408933pt;}
.yec{bottom:278.829733pt;}
.y8a{bottom:279.525867pt;}
.yb4{bottom:283.704667pt;}
.y16a{bottom:285.763200pt;}
.y12d{bottom:288.084400pt;}
.y6c{bottom:288.391067pt;}
.y149{bottom:289.417733pt;}
.y107{bottom:289.763200pt;}
.y18{bottom:292.056667pt;}
.ycf{bottom:294.192533pt;}
.y89{bottom:296.859200pt;}
.yb3{bottom:301.038000pt;}
.y124{bottom:301.743200pt;}
.y169{bottom:301.763200pt;}
.y114{bottom:303.525867pt;}
.y6b{bottom:303.591067pt;}
.y12c{bottom:305.417733pt;}
.y106{bottom:307.096533pt;}
.y3f{bottom:308.084400pt;}
.yeb{bottom:313.763200pt;}
.y11e{bottom:314.189867pt;}
.y88{bottom:314.192533pt;}
.y168{bottom:317.763200pt;}
.yb2{bottom:318.371333pt;}
.y6a{bottom:318.791067pt;}
.y113{bottom:319.525867pt;}
.y148{bottom:321.417733pt;}
.y12b{bottom:322.751067pt;}
.y3e{bottom:324.084400pt;}
.y105{bottom:324.429867pt;}
.yce{bottom:328.859200pt;}
.yea{bottom:329.763200pt;}
.y87{bottom:331.525867pt;}
.y167{bottom:333.763200pt;}
.y112{bottom:335.525867pt;}
.yb1{bottom:335.704667pt;}
.y147{bottom:337.417733pt;}
.y69{bottom:338.209067pt;}
.y12a{bottom:340.084400pt;}
.y17{bottom:341.492933pt;}
.y104{bottom:341.763200pt;}
.ycd{bottom:344.859200pt;}
.ye9{bottom:345.763200pt;}
.y86{bottom:348.859200pt;}
.y166{bottom:349.763200pt;}
.y111{bottom:351.525867pt;}
.yb0{bottom:353.038000pt;}
.y146{bottom:353.417733pt;}
.y3d{bottom:357.417733pt;}
.y16{bottom:357.492933pt;}
.y103{bottom:359.091200pt;}
.ycc{bottom:360.859200pt;}
.ye8{bottom:361.763200pt;}
.y165{bottom:365.763200pt;}
.y85{bottom:366.192533pt;}
.y110{bottom:367.525867pt;}
.y145{bottom:369.417733pt;}
.yaf{bottom:370.371333pt;}
.y68{bottom:372.427200pt;}
.y3c{bottom:374.751067pt;}
.y102{bottom:376.427200pt;}
.ycb{bottom:376.859200pt;}
.ye7{bottom:377.763200pt;}
.y164{bottom:381.763200pt;}
.y84{bottom:383.525867pt;}
.y144{bottom:385.417733pt;}
.yae{bottom:387.704667pt;}
.y15{bottom:389.492933pt;}
.y65{bottom:389.757867pt;}
.y67{bottom:389.763200pt;}
.y3b{bottom:392.084400pt;}
.yca{bottom:392.859200pt;}
.ye6{bottom:393.763200pt;}
.y66{bottom:394.647200pt;}
.y163{bottom:397.763200pt;}
.y83{bottom:400.859200pt;}
.y143{bottom:401.417733pt;}
.yad{bottom:405.038000pt;}
.y14{bottom:405.492933pt;}
.y64{bottom:407.093867pt;}
.yc9{bottom:408.859200pt;}
.y3a{bottom:409.417733pt;}
.ye5{bottom:409.763200pt;}
.y101{bottom:411.096533pt;}
.y162{bottom:413.763200pt;}
.y142{bottom:417.417733pt;}
.y82{bottom:418.192533pt;}
.y129{bottom:420.756400pt;}
.y13{bottom:421.492933pt;}
.yac{bottom:422.371333pt;}
.y63{bottom:424.429867pt;}
.ye4{bottom:425.763200pt;}
.y39{bottom:426.751067pt;}
.y100{bottom:428.429867pt;}
.y161{bottom:429.763200pt;}
.y141{bottom:433.417733pt;}
.y11d{bottom:435.520533pt;}
.y81{bottom:435.525867pt;}
.y12{bottom:437.492800pt;}
.yab{bottom:439.704667pt;}
.y62{bottom:441.763200pt;}
.yc8{bottom:442.192533pt;}
.y38{bottom:444.084400pt;}
.yff{bottom:445.763200pt;}
.y140{bottom:449.417733pt;}
.y11c{bottom:452.856533pt;}
.y80{bottom:452.859200pt;}
.y11{bottom:453.492800pt;}
.yaa{bottom:457.038000pt;}
.ye3{bottom:457.763200pt;}
.y61{bottom:459.096533pt;}
.yc7{bottom:459.525867pt;}
.y160{bottom:461.763200pt;}
.yfe{bottom:463.096533pt;}
.y13f{bottom:465.417733pt;}
.y10{bottom:469.492800pt;}
.y7f{bottom:470.192533pt;}
.y37{bottom:472.756400pt;}
.ye2{bottom:473.763200pt;}
.ya9{bottom:474.371333pt;}
.y11b{bottom:475.076533pt;}
.y60{bottom:476.429867pt;}
.yc6{bottom:476.859200pt;}
.y15f{bottom:477.763200pt;}
.yfd{bottom:480.429867pt;}
.y13e{bottom:481.417733pt;}
.yf{bottom:485.492800pt;}
.y128{bottom:487.523200pt;}
.y7e{bottom:487.525867pt;}
.ya8{bottom:491.704667pt;}
.y123{bottom:492.409867pt;}
.y5f{bottom:493.760533pt;}
.y15e{bottom:493.763200pt;}
.yc5{bottom:494.192533pt;}
.y13d{bottom:497.417733pt;}
.yfc{bottom:497.763200pt;}
.ye{bottom:501.492800pt;}
.y122{bottom:504.851200pt;}
.y7d{bottom:504.859200pt;}
.ye1{bottom:507.093867pt;}
.ya7{bottom:509.038000pt;}
.y15d{bottom:509.763200pt;}
.y5e{bottom:511.096533pt;}
.yc4{bottom:511.525867pt;}
.yfb{bottom:515.096533pt;}
.yd{bottom:517.492800pt;}
.y121{bottom:522.187200pt;}
.y36{bottom:522.192533pt;}
.ye0{bottom:524.429867pt;}
.y13c{bottom:524.756400pt;}
.y15c{bottom:525.763200pt;}
.ya6{bottom:526.368667pt;}
.y5c{bottom:528.429867pt;}
.yc3{bottom:528.859200pt;}
.yfa{bottom:532.429867pt;}
.y5d{bottom:533.313867pt;}
.yc{bottom:533.492800pt;}
.y120{bottom:539.523200pt;}
.y35{bottom:539.525867pt;}
.ydf{bottom:541.763200pt;}
.ya5{bottom:543.704667pt;}
.y5b{bottom:545.763200pt;}
.yc2{bottom:546.192533pt;}
.yb{bottom:549.492800pt;}
.yf9{bottom:549.763200pt;}
.y34{bottom:556.859200pt;}
.y15b{bottom:557.763200pt;}
.yde{bottom:559.096533pt;}
.ya4{bottom:561.038000pt;}
.y5a{bottom:563.096533pt;}
.yc1{bottom:563.525867pt;}
.ya{bottom:565.492800pt;}
.yf8{bottom:567.096533pt;}
.y15a{bottom:573.763200pt;}
.y33{bottom:574.192533pt;}
.ydd{bottom:576.429867pt;}
.ya3{bottom:578.371333pt;}
.y10f{bottom:579.076533pt;}
.y58{bottom:580.429867pt;}
.yc0{bottom:580.859200pt;}
.y9{bottom:581.492800pt;}
.yf7{bottom:584.429867pt;}
.y59{bottom:585.313867pt;}
.y159{bottom:589.763200pt;}
.y13b{bottom:591.523200pt;}
.y31{bottom:591.525867pt;}
.ydc{bottom:593.763200pt;}
.ya2{bottom:595.704667pt;}
.y32{bottom:596.409867pt;}
.y8{bottom:597.492800pt;}
.y57{bottom:597.763200pt;}
.ybf{bottom:598.192533pt;}
.yf6{bottom:601.763200pt;}
.y158{bottom:605.763200pt;}
.y30{bottom:608.859200pt;}
.ydb{bottom:611.096533pt;}
.ya1{bottom:613.038000pt;}
.y7{bottom:613.492800pt;}
.y55{bottom:615.096533pt;}
.yf5{bottom:619.096533pt;}
.y56{bottom:619.980533pt;}
.y157{bottom:621.763200pt;}
.y2e{bottom:626.192533pt;}
.yda{bottom:628.429867pt;}
.y6{bottom:629.492800pt;}
.ya0{bottom:630.371333pt;}
.y2f{bottom:631.076533pt;}
.y54{bottom:632.429867pt;}
.ybe{bottom:632.859200pt;}
.y156{bottom:637.763200pt;}
.y2d{bottom:643.525867pt;}
.yd9{bottom:645.763200pt;}
.y9f{bottom:647.704667pt;}
.ybd{bottom:648.859200pt;}
.y53{bottom:649.763200pt;}
.yf4{bottom:653.763200pt;}
.y11a{bottom:660.856533pt;}
.y2c{bottom:660.859200pt;}
.yd8{bottom:663.096533pt;}
.ybc{bottom:664.859200pt;}
.y9e{bottom:665.038000pt;}
.y52{bottom:667.096533pt;}
.yf3{bottom:669.763200pt;}
.y92{bottom:678.189867pt;}
.y2b{bottom:678.192533pt;}
.yd7{bottom:680.429867pt;}
.ybb{bottom:680.859200pt;}
.y9d{bottom:682.371333pt;}
.yf2{bottom:685.763200pt;}
.y13a{bottom:695.523200pt;}
.y2a{bottom:695.525867pt;}
.yba{bottom:696.859200pt;}
.yd6{bottom:697.763200pt;}
.y9c{bottom:699.704800pt;}
.y51{bottom:701.763200pt;}
.y5{bottom:702.185733pt;}
.y29{bottom:712.859200pt;}
.yd5{bottom:715.096533pt;}
.y9a{bottom:717.038133pt;}
.y50{bottom:717.763200pt;}
.y9b{bottom:721.922133pt;}
.y7c{bottom:730.189867pt;}
.y28{bottom:730.192533pt;}
.y4f{bottom:733.763200pt;}
.y99{bottom:734.371467pt;}
.y119{bottom:735.076533pt;}
.y4{bottom:738.683467pt;}
.y7a{bottom:747.523200pt;}
.y27{bottom:747.525867pt;}
.y4e{bottom:749.763200pt;}
.y7b{bottom:752.409867pt;}
.y3{bottom:761.083467pt;}
.y98{bottom:763.043333pt;}
.y26{bottom:764.859200pt;}
.y4d{bottom:765.763200pt;}
.y177{bottom:765.770800pt;}
.y91{bottom:769.743200pt;}
.y2{bottom:797.259333pt;}
.y25{bottom:797.264133pt;}
.y1e{bottom:819.867733pt;}
.y1{bottom:820.157467pt;}
.hb{height:22.390309pt;}
.hd{height:24.117333pt;}
.h10{height:24.117867pt;}
.h9{height:27.669957pt;}
.ha{height:36.960000pt;}
.hc{height:38.405333pt;}
.he{height:40.989333pt;}
.h3{height:43.093333pt;}
.h2{height:43.146667pt;}
.h6{height:43.306667pt;}
.h8{height:47.461333pt;}
.hf{height:47.472000pt;}
.h11{height:47.493333pt;}
.h5{height:49.632000pt;}
.h7{height:54.144000pt;}
.h4{height:62.197333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xa{left:75.590533pt;}
.xe{left:90.708667pt;}
.x9{left:92.749067pt;}
.x3{left:94.488133pt;}
.x8{left:109.606267pt;}
.xd{left:113.385867pt;}
.x4{left:132.283467pt;}
.x1c{left:151.181067pt;}
.x2{left:168.353067pt;}
.x27{left:173.769867pt;}
.x28{left:182.432133pt;}
.x13{left:196.510133pt;}
.x14{left:204.347733pt;}
.x7{left:211.034267pt;}
.x1d{left:241.553200pt;}
.x1e{left:250.073867pt;}
.x1a{left:284.427733pt;}
.x1b{left:292.650133pt;}
.x19{left:312.725067pt;}
.xf{left:321.143333pt;}
.x1f{left:323.809600pt;}
.x10{left:325.294800pt;}
.x20{left:332.239067pt;}
.x5{left:359.722400pt;}
.x6{left:363.873867pt;}
.x17{left:368.073867pt;}
.x18{left:376.225867pt;}
.xb{left:389.969867pt;}
.xc{left:394.105867pt;}
.x25{left:425.363867pt;}
.x22{left:430.291200pt;}
.x29{left:432.009200pt;}
.x26{left:433.800267pt;}
.x11{left:435.785467pt;}
.x23{left:438.886400pt;}
.x2a{left:440.460400pt;}
.x12{left:443.733200pt;}
.x21{left:501.697067pt;}
.x15{left:504.101600pt;}
.x1{left:510.093867pt;}
.x16{left:512.514400pt;}
.x24{left:524.978533pt;}
}




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