
    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_f534eb5bd2489062e8452800.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8bdb43e97829f310ac184fe6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_88e85768d1b16764779558c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078000;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_74b0259da86a2afe265683a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_32a6145f20b62c7b8b89ce2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.078000;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_49550bcc735c8e1827d76c82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_8fce4794d80c75c7da08c389.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_3f624b5bcf108f7cf4ec42a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.821000;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_59d278bbf4baa67707461333.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984333;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_a17bf70223e9f20fdc2d9c9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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;}
.ma3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m93{transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.m4f{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249428,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249706,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m92{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m99{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);}
.mac{transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251517,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251531,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m8c{transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m4{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252469,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.976000px;}
.ls27{letter-spacing:-1.920000px;}
.lsb{letter-spacing:-1.380000px;}
.lsf{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.140000px;}
.ls10{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.900000px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.027000px;}
.ls4{letter-spacing:0.030000px;}
.ls23{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.081000px;}
.lsd{letter-spacing:0.090000px;}
.ls21{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.135000px;}
.lse{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.300000px;}
.ls2b{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.390000px;}
.ls2d{letter-spacing:0.405000px;}
.ls9{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.510000px;}
.ls29{letter-spacing:0.513000px;}
.ls25{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.840000px;}
.ls19{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.680000px;}
.ls12{letter-spacing:2.100000px;}
.ls15{letter-spacing:2.130000px;}
.ls17{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.190000px;}
.ls1c{letter-spacing:2.220000px;}
.ls13{letter-spacing:2.340000px;}
.ls14{letter-spacing:2.400000px;}
.ls16{letter-spacing:2.460000px;}
.ls2a{letter-spacing:8.888400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.ws61{word-spacing:-16.500000px;}
.ws62{word-spacing:-15.420000px;}
.ws2{word-spacing:-15.000000px;}
.ws60{word-spacing:-13.920000px;}
.ws14a{word-spacing:-13.770000px;}
.wsfe{word-spacing:-13.500000px;}
.ws7d{word-spacing:-5.700000px;}
.ws146{word-spacing:-3.510000px;}
.ws12a{word-spacing:-3.186000px;}
.ws5{word-spacing:-3.000000px;}
.ws30{word-spacing:-2.940000px;}
.ws52{word-spacing:-2.880000px;}
.ws15d{word-spacing:-2.862000px;}
.ws92{word-spacing:-2.820000px;}
.wsa2{word-spacing:-2.700000px;}
.wsc5{word-spacing:-2.646000px;}
.ws6{word-spacing:-2.640000px;}
.ws126{word-spacing:-2.592000px;}
.ws42{word-spacing:-2.580000px;}
.ws29{word-spacing:-2.520000px;}
.wsd7{word-spacing:-2.484000px;}
.ws118{word-spacing:-2.460000px;}
.ws130{word-spacing:-2.430000px;}
.ws4e{word-spacing:-2.400000px;}
.wse1{word-spacing:-2.376000px;}
.ws3a{word-spacing:-2.340000px;}
.ws159{word-spacing:-2.322000px;}
.ws4c{word-spacing:-2.280000px;}
.ws12c{word-spacing:-2.268000px;}
.wsa{word-spacing:-2.220000px;}
.ws86{word-spacing:-2.160000px;}
.ws111{word-spacing:-2.106000px;}
.ws31{word-spacing:-2.100000px;}
.wsec{word-spacing:-2.040000px;}
.ws90{word-spacing:-1.980000px;}
.wsc8{word-spacing:-1.890000px;}
.wsac{word-spacing:-1.860000px;}
.ws9d{word-spacing:-1.800000px;}
.ws122{word-spacing:-1.674000px;}
.wsd{word-spacing:-1.620000px;}
.ws54{word-spacing:-1.560000px;}
.wse0{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.500000px;}
.ws108{word-spacing:-1.458000px;}
.ws40{word-spacing:-1.440000px;}
.ws53{word-spacing:-1.380000px;}
.ws87{word-spacing:-1.320000px;}
.wsca{word-spacing:-1.296000px;}
.ws47{word-spacing:-1.260000px;}
.ws84{word-spacing:-1.200000px;}
.ws83{word-spacing:-1.140000px;}
.wsc4{word-spacing:-1.134000px;}
.ws9c{word-spacing:-1.080000px;}
.wse9{word-spacing:-1.026000px;}
.ws3c{word-spacing:-1.020000px;}
.ws15e{word-spacing:-0.972000px;}
.ws119{word-spacing:-0.900000px;}
.ws132{word-spacing:-0.864000px;}
.ws3{word-spacing:-0.840000px;}
.ws128{word-spacing:-0.810000px;}
.ws16{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.720000px;}
.wsa5{word-spacing:-0.660000px;}
.ws115{word-spacing:-0.648000px;}
.wsa0{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.540000px;}
.ws8a{word-spacing:-0.480000px;}
.wsba{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.420000px;}
.wsa3{word-spacing:-0.378000px;}
.ws93{word-spacing:-0.360000px;}
.wsd5{word-spacing:-0.324000px;}
.ws5e{word-spacing:-0.300000px;}
.ws144{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.240000px;}
.wsb6{word-spacing:-0.180000px;}
.ws141{word-spacing:-0.162000px;}
.ws77{word-spacing:-0.120000px;}
.ws131{word-spacing:-0.108000px;}
.ws27{word-spacing:-0.060000px;}
.wsff{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws14c{word-spacing:0.054000px;}
.ws13c{word-spacing:0.108000px;}
.ws5a{word-spacing:0.120000px;}
.wsdc{word-spacing:0.162000px;}
.ws26{word-spacing:0.180000px;}
.ws116{word-spacing:0.216000px;}
.ws34{word-spacing:0.240000px;}
.ws106{word-spacing:0.270000px;}
.ws64{word-spacing:0.300000px;}
.ws140{word-spacing:0.324000px;}
.ws1e{word-spacing:0.360000px;}
.wse2{word-spacing:0.378000px;}
.ws94{word-spacing:0.420000px;}
.ws41{word-spacing:0.480000px;}
.wsda{word-spacing:0.486000px;}
.wsa4{word-spacing:0.540000px;}
.wsd8{word-spacing:0.594000px;}
.ws70{word-spacing:0.600000px;}
.wsef{word-spacing:0.660000px;}
.wseb{word-spacing:0.702000px;}
.ws59{word-spacing:0.720000px;}
.ws6e{word-spacing:0.780000px;}
.ws150{word-spacing:0.810000px;}
.ws63{word-spacing:0.840000px;}
.wsb2{word-spacing:0.864000px;}
.wsbf{word-spacing:0.918000px;}
.ws7c{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws15f{word-spacing:1.026000px;}
.ws35{word-spacing:1.080000px;}
.ws125{word-spacing:1.134000px;}
.ws23{word-spacing:1.140000px;}
.ws104{word-spacing:1.188000px;}
.wsc7{word-spacing:1.242000px;}
.wsc{word-spacing:1.260000px;}
.wsde{word-spacing:1.296000px;}
.ws3b{word-spacing:1.320000px;}
.ws13b{word-spacing:1.350000px;}
.ws10{word-spacing:1.380000px;}
.ws12e{word-spacing:1.404000px;}
.ws49{word-spacing:1.440000px;}
.wsd0{word-spacing:1.458000px;}
.ws33{word-spacing:1.500000px;}
.ws164{word-spacing:1.512000px;}
.ws89{word-spacing:1.560000px;}
.wsb9{word-spacing:1.620000px;}
.ws136{word-spacing:1.674000px;}
.wsa6{word-spacing:1.680000px;}
.ws133{word-spacing:1.728000px;}
.ws43{word-spacing:1.740000px;}
.ws12b{word-spacing:1.782000px;}
.ws11{word-spacing:1.800000px;}
.ws142{word-spacing:1.836000px;}
.ws82{word-spacing:1.860000px;}
.ws153{word-spacing:1.890000px;}
.ws39{word-spacing:1.920000px;}
.ws8f{word-spacing:1.980000px;}
.ws65{word-spacing:2.040000px;}
.ws114{word-spacing:2.052000px;}
.ws98{word-spacing:2.100000px;}
.ws15a{word-spacing:2.106000px;}
.ws109{word-spacing:2.160000px;}
.ws160{word-spacing:2.214000px;}
.ws71{word-spacing:2.220000px;}
.ws14d{word-spacing:2.268000px;}
.ws22{word-spacing:2.280000px;}
.wsb1{word-spacing:2.322000px;}
.ws8b{word-spacing:2.340000px;}
.wsdb{word-spacing:2.376000px;}
.ws3d{word-spacing:2.400000px;}
.ws10c{word-spacing:2.430000px;}
.ws50{word-spacing:2.460000px;}
.wsd9{word-spacing:2.484000px;}
.ws9{word-spacing:2.520000px;}
.ws15b{word-spacing:2.538000px;}
.ws6a{word-spacing:2.580000px;}
.ws103{word-spacing:2.592000px;}
.ws139{word-spacing:2.646000px;}
.ws7a{word-spacing:2.700000px;}
.wsbc{word-spacing:2.760000px;}
.ws100{word-spacing:2.808000px;}
.wsf7{word-spacing:2.820000px;}
.ws112{word-spacing:2.916000px;}
.ws25{word-spacing:2.940000px;}
.ws4f{word-spacing:3.000000px;}
.ws76{word-spacing:3.060000px;}
.wse6{word-spacing:3.078000px;}
.ws57{word-spacing:3.120000px;}
.ws91{word-spacing:3.180000px;}
.ws121{word-spacing:3.186000px;}
.ws2a{word-spacing:3.240000px;}
.ws113{word-spacing:3.348000px;}
.ws5f{word-spacing:3.360000px;}
.ws120{word-spacing:3.402000px;}
.ws15{word-spacing:3.420000px;}
.wse5{word-spacing:3.456000px;}
.ws1d{word-spacing:3.480000px;}
.ws74{word-spacing:3.540000px;}
.ws12d{word-spacing:3.564000px;}
.wse8{word-spacing:3.600000px;}
.ws85{word-spacing:3.720000px;}
.wsc0{word-spacing:3.726000px;}
.ws20{word-spacing:3.780000px;}
.wsc2{word-spacing:3.834000px;}
.ws4b{word-spacing:3.840000px;}
.ws163{word-spacing:3.888000px;}
.ws48{word-spacing:3.900000px;}
.ws127{word-spacing:3.942000px;}
.ws12f{word-spacing:3.996000px;}
.wsd2{word-spacing:4.020000px;}
.ws69{word-spacing:4.080000px;}
.wsce{word-spacing:4.104000px;}
.ws2b{word-spacing:4.140000px;}
.ws145{word-spacing:4.158000px;}
.ws73{word-spacing:4.200000px;}
.wsea{word-spacing:4.212000px;}
.ws5c{word-spacing:4.260000px;}
.ws147{word-spacing:4.266000px;}
.ws79{word-spacing:4.320000px;}
.ws155{word-spacing:4.374000px;}
.ws17{word-spacing:4.380000px;}
.ws11c{word-spacing:4.428000px;}
.ws81{word-spacing:4.440000px;}
.ws80{word-spacing:4.500000px;}
.ws13a{word-spacing:4.536000px;}
.ws75{word-spacing:4.560000px;}
.wsc1{word-spacing:4.698000px;}
.wsbb{word-spacing:4.740000px;}
.wscf{word-spacing:4.752000px;}
.ws46{word-spacing:4.800000px;}
.wse4{word-spacing:4.806000px;}
.ws137{word-spacing:4.860000px;}
.ws138{word-spacing:4.914000px;}
.ws95{word-spacing:4.920000px;}
.wsaf{word-spacing:4.968000px;}
.ws66{word-spacing:4.980000px;}
.ws154{word-spacing:5.022000px;}
.ws1f{word-spacing:5.040000px;}
.ws11a{word-spacing:5.076000px;}
.ws88{word-spacing:5.100000px;}
.wscc{word-spacing:5.160000px;}
.ws4a{word-spacing:5.220000px;}
.ws143{word-spacing:5.238000px;}
.ws9f{word-spacing:5.280000px;}
.ws123{word-spacing:5.292000px;}
.ws117{word-spacing:5.340000px;}
.ws14b{word-spacing:5.400000px;}
.ws10a{word-spacing:5.454000px;}
.wsd1{word-spacing:5.460000px;}
.ws97{word-spacing:5.520000px;}
.ws157{word-spacing:5.562000px;}
.ws2c{word-spacing:5.580000px;}
.ws156{word-spacing:5.616000px;}
.wsdf{word-spacing:5.640000px;}
.ws101{word-spacing:5.670000px;}
.ws96{word-spacing:5.700000px;}
.ws5b{word-spacing:5.760000px;}
.wsd4{word-spacing:5.778000px;}
.ws152{word-spacing:5.832000px;}
.ws7e{word-spacing:5.880000px;}
.ws14f{word-spacing:5.886000px;}
.ws99{word-spacing:5.940000px;}
.wsb4{word-spacing:5.994000px;}
.ws55{word-spacing:6.000000px;}
.ws56{word-spacing:6.060000px;}
.ws135{word-spacing:6.102000px;}
.ws6f{word-spacing:6.120000px;}
.wsc9{word-spacing:6.156000px;}
.ws10d{word-spacing:6.210000px;}
.wsa7{word-spacing:6.240000px;}
.ws44{word-spacing:6.300000px;}
.ws134{word-spacing:6.318000px;}
.ws12{word-spacing:6.360000px;}
.ws19{word-spacing:6.420000px;}
.wsdd{word-spacing:6.480000px;}
.ws10e{word-spacing:6.534000px;}
.ws6b{word-spacing:6.540000px;}
.ws9b{word-spacing:6.600000px;}
.ws8{word-spacing:6.660000px;}
.wsc6{word-spacing:6.696000px;}
.wsa8{word-spacing:6.720000px;}
.wsb3{word-spacing:6.750000px;}
.ws24{word-spacing:6.780000px;}
.ws102{word-spacing:6.804000px;}
.ws4d{word-spacing:6.840000px;}
.ws129{word-spacing:6.858000px;}
.wsb7{word-spacing:6.960000px;}
.ws13e{word-spacing:6.966000px;}
.wsad{word-spacing:7.020000px;}
.ws3e{word-spacing:7.080000px;}
.wsa1{word-spacing:7.140000px;}
.wse7{word-spacing:7.260000px;}
.wsc3{word-spacing:7.320000px;}
.ws32{word-spacing:7.380000px;}
.ws11d{word-spacing:7.398000px;}
.ws7{word-spacing:7.440000px;}
.ws11e{word-spacing:7.452000px;}
.ws13{word-spacing:7.500000px;}
.wsb0{word-spacing:7.506000px;}
.ws3f{word-spacing:7.560000px;}
.ws37{word-spacing:7.680000px;}
.ws38{word-spacing:7.800000px;}
.ws148{word-spacing:7.938000px;}
.ws14e{word-spacing:7.992000px;}
.wsae{word-spacing:8.100000px;}
.wsab{word-spacing:8.160000px;}
.ws1c{word-spacing:8.280000px;}
.ws2d{word-spacing:8.340000px;}
.ws105{word-spacing:8.370000px;}
.ws10b{word-spacing:8.424000px;}
.ws58{word-spacing:8.460000px;}
.wsed{word-spacing:8.580000px;}
.wsb{word-spacing:8.700000px;}
.wsfd{word-spacing:8.760000px;}
.wsb5{word-spacing:8.880000px;}
.ws8d{word-spacing:8.940000px;}
.ws51{word-spacing:9.000000px;}
.ws13d{word-spacing:9.126000px;}
.ws72{word-spacing:9.180000px;}
.ws7b{word-spacing:9.240000px;}
.ws15c{word-spacing:9.288000px;}
.wscb{word-spacing:9.480000px;}
.ws11b{word-spacing:9.558000px;}
.ws4{word-spacing:9.780000px;}
.ws149{word-spacing:9.828000px;}
.wsbd{word-spacing:9.840000px;}
.ws2e{word-spacing:10.020000px;}
.ws151{word-spacing:10.044000px;}
.wsf8{word-spacing:10.140000px;}
.wsf0{word-spacing:10.320000px;}
.wsbe{word-spacing:10.740000px;}
.ws124{word-spacing:10.746000px;}
.wsd3{word-spacing:10.962000px;}
.ws78{word-spacing:11.280000px;}
.ws8e{word-spacing:11.400000px;}
.ws8c{word-spacing:11.640000px;}
.ws11f{word-spacing:11.664000px;}
.ws67{word-spacing:11.880000px;}
.ws158{word-spacing:11.934000px;}
.ws9e{word-spacing:12.360000px;}
.ws13f{word-spacing:12.690000px;}
.ws18{word-spacing:12.720000px;}
.wsaa{word-spacing:12.960000px;}
.wsa9{word-spacing:13.020000px;}
.wsee{word-spacing:13.260000px;}
.ws45{word-spacing:13.740000px;}
.wsb8{word-spacing:13.770000px;}
.wsfb{word-spacing:14.340000px;}
.ws68{word-spacing:14.640000px;}
.ws14{word-spacing:15.420000px;}
.wsfc{word-spacing:15.660000px;}
.wsd6{word-spacing:15.780000px;}
.ws9a{word-spacing:16.080000px;}
.ws10f{word-spacing:16.200000px;}
.ws162{word-spacing:17.280000px;}
.ws6d{word-spacing:17.940000px;}
.ws6c{word-spacing:18.120000px;}
.wsf9{word-spacing:18.900000px;}
.ws110{word-spacing:19.332000px;}
.ws7f{word-spacing:19.440000px;}
.ws1b{word-spacing:20.040000px;}
.ws161{word-spacing:20.196000px;}
.wscd{word-spacing:20.940000px;}
.wsfa{word-spacing:21.480000px;}
.wse{word-spacing:23.220000px;}
.ws107{word-spacing:25.650000px;}
.wse3{word-spacing:27.660000px;}
.ws1a{word-spacing:32.640000px;}
.wsf6{word-spacing:94.704000px;}
.wsf5{word-spacing:121.440000px;}
.wsf2{word-spacing:137.856000px;}
.wsf4{word-spacing:212.160000px;}
.wsf3{word-spacing:324.576000px;}
.wsf1{word-spacing:337.920000px;}
._8{margin-left:-23.100000px;}
._c{margin-left:-19.603200px;}
._9{margin-left:-17.160000px;}
._b{margin-left:-14.700000px;}
._f{margin-left:-10.697400px;}
._6{margin-left:-8.491200px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.520000px;}
._3{margin-left:-4.284000px;}
._a{margin-left:-3.240000px;}
._1{margin-left:-1.996800px;}
._4{width:1.380000px;}
._7{width:2.688000px;}
._0{width:5.587200px;}
._e{width:151.200000px;}
._d{width:297.936000px;}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1a{bottom:36.996600px;}
.y101{bottom:64.802100px;}
.ye3{bottom:64.993050px;}
.y6f{bottom:72.992100px;}
.y3c{bottom:73.975500px;}
.y100{bottom:79.802100px;}
.ye2{bottom:79.993050px;}
.y171{bottom:83.274600px;}
.y140{bottom:83.280600px;}
.y6e{bottom:90.992100px;}
.yff{bottom:94.802100px;}
.ye1{bottom:94.993050px;}
.y170{bottom:98.273100px;}
.y13f{bottom:98.279100px;}
.y14{bottom:99.795000px;}
.y6d{bottom:108.992100px;}
.yfe{bottom:109.802100px;}
.ye0{bottom:109.994550px;}
.y16f{bottom:113.276100px;}
.y13e{bottom:113.277600px;}
.y18{bottom:113.670000px;}
.yfd{bottom:124.809600px;}
.ydf{bottom:124.993050px;}
.y6c{bottom:126.992100px;}
.y35{bottom:126.992250px;}
.y16e{bottom:128.274600px;}
.y13d{bottom:128.276100px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.yfc{bottom:139.808100px;}
.yde{bottom:139.993050px;}
.y16d{bottom:143.273100px;}
.y13c{bottom:143.274600px;}
.y6b{bottom:144.992100px;}
.y34{bottom:144.992250px;}
.yfb{bottom:154.806600px;}
.y15{bottom:154.950000px;}
.ydd{bottom:154.996050px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y13b{bottom:158.273100px;}
.y93{bottom:158.492100px;}
.y6a{bottom:162.992100px;}
.y33{bottom:162.992250px;}
.yfa{bottom:169.805100px;}
.ydc{bottom:169.994550px;}
.y92{bottom:171.992100px;}
.y13a{bottom:173.273100px;}
.y16c{bottom:173.294100px;}
.y69{bottom:180.992100px;}
.y32{bottom:180.992250px;}
.yf9{bottom:184.803600px;}
.ydb{bottom:184.993050px;}
.y91{bottom:185.492100px;}
.y139{bottom:188.285100px;}
.y16b{bottom:188.292600px;}
.y68{bottom:198.992100px;}
.y31{bottom:198.992250px;}
.yf8{bottom:199.802100px;}
.yda{bottom:199.993050px;}
.y138{bottom:203.283600px;}
.y16a{bottom:203.291100px;}
.y90{bottom:212.492100px;}
.yf7{bottom:214.802100px;}
.yd9{bottom:214.993050px;}
.y67{bottom:216.992100px;}
.y30{bottom:216.992250px;}
.y137{bottom:218.282100px;}
.y169{bottom:218.289600px;}
.ya1{bottom:221.492100px;}
.y8f{bottom:225.992100px;}
.yf6{bottom:229.812600px;}
.yd8{bottom:229.993050px;}
.y136{bottom:233.280600px;}
.y168{bottom:233.288100px;}
.y66{bottom:234.992100px;}
.y2f{bottom:234.992250px;}
.y8e{bottom:239.492100px;}
.yf5{bottom:244.811100px;}
.yd7{bottom:244.994550px;}
.y135{bottom:248.279100px;}
.y167{bottom:248.286600px;}
.y72{bottom:248.492100px;}
.y65{bottom:252.992100px;}
.y2e{bottom:252.992250px;}
.y194{bottom:253.265250px;}
.yf4{bottom:259.809600px;}
.yd6{bottom:259.993050px;}
.y71{bottom:261.992100px;}
.y134{bottom:263.277600px;}
.y166{bottom:263.285100px;}
.y193{bottom:268.263750px;}
.y1a7{bottom:268.642950px;}
.y64{bottom:270.992100px;}
.y2d{bottom:270.992250px;}
.yf3{bottom:274.808100px;}
.yd5{bottom:274.993050px;}
.y79{bottom:275.492100px;}
.y133{bottom:278.276100px;}
.y165{bottom:278.283600px;}
.y192{bottom:283.262250px;}
.y1a6{bottom:283.641450px;}
.y63{bottom:288.992100px;}
.y2c{bottom:288.992250px;}
.yf2{bottom:289.806600px;}
.yd4{bottom:289.997550px;}
.y132{bottom:293.274600px;}
.y164{bottom:293.282100px;}
.y191{bottom:298.260750px;}
.y1a5{bottom:298.639950px;}
.yf1{bottom:304.805100px;}
.yd3{bottom:304.996050px;}
.y62{bottom:306.992100px;}
.y2b{bottom:306.992250px;}
.y131{bottom:308.273100px;}
.y163{bottom:308.280600px;}
.y190{bottom:313.260750px;}
.y1a4{bottom:313.638450px;}
.yf0{bottom:319.803600px;}
.yd2{bottom:319.994550px;}
.y81{bottom:320.492100px;}
.y130{bottom:323.273100px;}
.y162{bottom:323.279100px;}
.y61{bottom:324.992100px;}
.y2a{bottom:324.992250px;}
.y18f{bottom:328.260750px;}
.y1a3{bottom:328.636950px;}
.y80{bottom:333.992100px;}
.yef{bottom:334.802100px;}
.yd1{bottom:334.993050px;}
.y12f{bottom:338.273100px;}
.y161{bottom:338.277600px;}
.y60{bottom:342.992100px;}
.y29{bottom:342.992250px;}
.y18e{bottom:343.260750px;}
.y1a2{bottom:343.635450px;}
.ya{bottom:344.680500px;}
.y7f{bottom:347.492100px;}
.yee{bottom:349.803600px;}
.yd0{bottom:349.993050px;}
.y12e{bottom:353.273100px;}
.y160{bottom:353.276100px;}
.y18d{bottom:358.260750px;}
.y1a1{bottom:358.636950px;}
.y5f{bottom:360.992100px;}
.y28{bottom:360.992250px;}
.yed{bottom:364.802100px;}
.ycf{bottom:364.999050px;}
.ya8{bottom:365.492100px;}
.y12d{bottom:368.273100px;}
.y15f{bottom:368.274600px;}
.y18c{bottom:373.260750px;}
.y1a0{bottom:373.635450px;}
.y7e{bottom:374.492100px;}
.y5e{bottom:378.992100px;}
.y27{bottom:378.992250px;}
.yec{bottom:379.802100px;}
.yce{bottom:379.997550px;}
.y12c{bottom:383.273100px;}
.ya0{bottom:383.492100px;}
.yd{bottom:386.490000px;}
.y7d{bottom:387.992100px;}
.y18b{bottom:388.260750px;}
.y19f{bottom:388.635450px;}
.ya7{bottom:392.492100px;}
.yeb{bottom:394.802100px;}
.ycd{bottom:394.996050px;}
.y9{bottom:395.689500px;}
.y5d{bottom:396.992100px;}
.y26{bottom:396.992250px;}
.y15e{bottom:398.273100px;}
.y12b{bottom:398.274600px;}
.y7c{bottom:401.492100px;}
.y18a{bottom:403.260750px;}
.y19e{bottom:403.638450px;}
.ya6{bottom:405.992100px;}
.yea{bottom:409.802100px;}
.ycc{bottom:409.994550px;}
.y9f{bottom:410.492100px;}
.y12a{bottom:413.273100px;}
.y15d{bottom:413.279100px;}
.y5c{bottom:414.992100px;}
.y25{bottom:414.992250px;}
.y189{bottom:418.277100px;}
.y19d{bottom:418.636950px;}
.ya5{bottom:419.492100px;}
.y9e{bottom:423.992100px;}
.ye9{bottom:424.808100px;}
.ycb{bottom:424.993050px;}
.y129{bottom:428.273100px;}
.y15c{bottom:428.277600px;}
.y5b{bottom:432.992100px;}
.y24{bottom:432.992250px;}
.y188{bottom:433.275600px;}
.y19c{bottom:433.635450px;}
.yb{bottom:434.850000px;}
.y9d{bottom:437.492100px;}
.ye8{bottom:439.806600px;}
.yca{bottom:439.993050px;}
.y8d{bottom:441.992100px;}
.y128{bottom:443.273100px;}
.y15b{bottom:443.276100px;}
.ya4{bottom:446.492100px;}
.y8{bottom:446.698500px;}
.y187{bottom:448.274100px;}
.y19b{bottom:448.635450px;}
.y5a{bottom:450.992100px;}
.y23{bottom:450.992250px;}
.ye7{bottom:454.805100px;}
.yc9{bottom:454.993050px;}
.y8c{bottom:455.492100px;}
.y127{bottom:458.273100px;}
.y15a{bottom:458.274600px;}
.ya3{bottom:459.992100px;}
.y186{bottom:463.272600px;}
.y19a{bottom:463.641450px;}
.y78{bottom:464.492100px;}
.y59{bottom:468.992100px;}
.y22{bottom:468.992250px;}
.ye6{bottom:469.803600px;}
.yc8{bottom:469.993050px;}
.y159{bottom:473.273100px;}
.y126{bottom:473.282100px;}
.ya2{bottom:473.492100px;}
.y77{bottom:477.992100px;}
.y185{bottom:478.271100px;}
.y199{bottom:478.639950px;}
.y8b{bottom:482.492100px;}
.ye5{bottom:484.802100px;}
.yc7{bottom:484.993050px;}
.y58{bottom:486.992100px;}
.y21{bottom:486.992250px;}
.y11{bottom:488.055000px;}
.y158{bottom:488.273100px;}
.y125{bottom:488.280600px;}
.y76{bottom:491.492100px;}
.y184{bottom:493.269600px;}
.y198{bottom:493.638450px;}
.y8a{bottom:495.992100px;}
.y7{bottom:497.707500px;}
.ye4{bottom:499.802100px;}
.yc6{bottom:499.993050px;}
.y157{bottom:503.273100px;}
.y124{bottom:503.279100px;}
.y57{bottom:504.992100px;}
.y20{bottom:504.992250px;}
.y183{bottom:508.268100px;}
.y197{bottom:508.636950px;}
.y89{bottom:509.492100px;}
.yc5{bottom:514.993050px;}
.y156{bottom:518.273100px;}
.y123{bottom:518.277600px;}
.y75{bottom:518.492100px;}
.y56{bottom:522.992100px;}
.y36{bottom:522.992250px;}
.y182{bottom:523.266600px;}
.y196{bottom:523.635450px;}
.y74{bottom:531.992100px;}
.y155{bottom:533.273100px;}
.y122{bottom:533.276100px;}
.y12{bottom:538.230000px;}
.y181{bottom:538.265100px;}
.y195{bottom:538.635450px;}
.y55{bottom:540.992100px;}
.y1f{bottom:540.992250px;}
.y73{bottom:545.492100px;}
.y154{bottom:548.273100px;}
.y121{bottom:548.274600px;}
.y6{bottom:548.716500px;}
.y180{bottom:553.263600px;}
.yc3{bottom:558.761400px;}
.y54{bottom:558.992100px;}
.y120{bottom:563.273100px;}
.yc2{bottom:572.261400px;}
.y53{bottom:576.992100px;}
.y11f{bottom:578.273100px;}
.yc1{bottom:585.761400px;}
.y19{bottom:589.605000px;}
.y153{bottom:593.273100px;}
.y11e{bottom:593.280600px;}
.y52{bottom:594.992100px;}
.yc0{bottom:599.261400px;}
.y5{bottom:599.725500px;}
.y152{bottom:608.273100px;}
.y11d{bottom:608.279100px;}
.y51{bottom:612.992100px;}
.ybf{bottom:620.261400px;}
.y151{bottom:623.273100px;}
.y11c{bottom:623.277600px;}
.y50{bottom:630.992100px;}
.ye{bottom:631.920000px;}
.ybe{bottom:633.761400px;}
.y103{bottom:636.307200px;}
.y3b{bottom:637.423350px;}
.y150{bottom:638.273100px;}
.y11b{bottom:638.276100px;}
.ybd{bottom:647.261400px;}
.y4f{bottom:648.992100px;}
.y102{bottom:649.054200px;}
.y11a{bottom:653.274600px;}
.y14f{bottom:653.276100px;}
.y9c{bottom:657.992100px;}
.ybc{bottom:660.761400px;}
.y4e{bottom:666.992100px;}
.y119{bottom:668.273100px;}
.y14e{bottom:668.274600px;}
.y9b{bottom:671.492100px;}
.ybb{bottom:674.261400px;}
.y3a{bottom:677.203200px;}
.y118{bottom:683.273100px;}
.y4d{bottom:684.992100px;}
.yba{bottom:687.761400px;}
.y39{bottom:695.958450px;}
.y14d{bottom:698.273100px;}
.y178{bottom:698.274600px;}
.y117{bottom:698.276100px;}
.y9a{bottom:698.492100px;}
.y4c{bottom:702.992100px;}
.yb9{bottom:708.761400px;}
.y99{bottom:711.992100px;}
.y14c{bottom:713.273100px;}
.y116{bottom:713.274600px;}
.y17f{bottom:713.279100px;}
.y38{bottom:714.713700px;}
.y4b{bottom:720.992100px;}
.yb8{bottom:722.261400px;}
.y98{bottom:725.492100px;}
.y115{bottom:728.273100px;}
.y14b{bottom:728.277600px;}
.y37{bottom:733.468950px;}
.yb7{bottom:735.761400px;}
.y4a{bottom:738.992100px;}
.y114{bottom:743.273100px;}
.y14a{bottom:743.276100px;}
.yb6{bottom:749.261400px;}
.y49{bottom:756.992100px;}
.y113{bottom:758.273100px;}
.y149{bottom:758.274600px;}
.yb5{bottom:770.261400px;}
.y112{bottom:773.273100px;}
.y1e{bottom:773.862600px;}
.y48{bottom:774.992100px;}
.y4{bottom:778.225500px;}
.yb4{bottom:783.761400px;}
.y111{bottom:788.273100px;}
.y47{bottom:792.992100px;}
.yb3{bottom:797.261400px;}
.y110{bottom:803.273100px;}
.y148{bottom:803.276100px;}
.y177{bottom:803.277600px;}
.y17e{bottom:803.279100px;}
.y1d{bottom:807.997950px;}
.yb2{bottom:810.761400px;}
.y46{bottom:810.992100px;}
.y13{bottom:815.670000px;}
.y10f{bottom:818.273100px;}
.y147{bottom:818.274600px;}
.y176{bottom:818.276100px;}
.y17d{bottom:818.277600px;}
.yb1{bottom:824.261400px;}
.y45{bottom:828.992100px;}
.y146{bottom:833.273100px;}
.y10e{bottom:833.274600px;}
.y17c{bottom:833.276100px;}
.yb0{bottom:845.261400px;}
.y1c{bottom:845.499450px;}
.y44{bottom:846.992100px;}
.y10d{bottom:848.273100px;}
.y17b{bottom:848.274600px;}
.yaf{bottom:858.761400px;}
.y10c{bottom:863.273100px;}
.y145{bottom:863.274600px;}
.y43{bottom:864.992100px;}
.yae{bottom:872.261400px;}
.y97{bottom:873.992100px;}
.y144{bottom:878.273100px;}
.y10b{bottom:878.274600px;}
.y175{bottom:878.276100px;}
.y42{bottom:882.992100px;}
.y1b{bottom:883.000950px;}
.y96{bottom:887.492100px;}
.y88{bottom:890.273100px;}
.yad{bottom:893.261400px;}
.y10a{bottom:893.273100px;}
.y174{bottom:893.274600px;}
.y41{bottom:900.992100px;}
.y87{bottom:903.773100px;}
.y3{bottom:905.716500px;}
.yac{bottom:906.761400px;}
.y109{bottom:908.273100px;}
.y143{bottom:908.277600px;}
.y95{bottom:914.492100px;}
.y86{bottom:917.273100px;}
.y40{bottom:918.992100px;}
.y173{bottom:923.273100px;}
.y108{bottom:923.276100px;}
.yab{bottom:927.773400px;}
.y94{bottom:927.992100px;}
.y85{bottom:930.773100px;}
.yaa{bottom:934.529400px;}
.y3f{bottom:936.992100px;}
.y17a{bottom:938.273100px;}
.y107{bottom:938.274600px;}
.y84{bottom:944.273100px;}
.y106{bottom:953.273100px;}
.y3e{bottom:954.992100px;}
.y83{bottom:957.773100px;}
.y2{bottom:964.228500px;}
.ya9{bottom:964.781400px;}
.y105{bottom:968.273100px;}
.y82{bottom:971.273100px;}
.y70{bottom:972.992100px;}
.y172{bottom:983.273100px;}
.y104{bottom:983.274600px;}
.y142{bottom:983.285100px;}
.y7b{bottom:984.773100px;}
.y1{bottom:989.716500px;}
.y3d{bottom:990.992100px;}
.y179{bottom:998.271600px;}
.y7a{bottom:998.273100px;}
.y141{bottom:998.283600px;}
.yc4{bottom:998.579250px;}
.h10{height:27.432000px;}
.h11{height:32.004000px;}
.h4{height:33.000000px;}
.h14{height:36.000000px;}
.hb{height:38.250000px;}
.h19{height:38.610000px;}
.h17{height:38.862000px;}
.h18{height:40.500000px;}
.h16{height:41.088000px;}
.h12{height:42.920000px;}
.hd{height:43.656000px;}
.h13{height:43.686000px;}
.he{height:45.000000px;}
.hf{height:48.540000px;}
.h3{height:58.406250px;}
.h15{height:62.976000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hc{height:111.642000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1062.750000px;}
.h9{height:1062.991500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:748.347000px;}
.wa{width:748.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x10{left:72.283500px;}
.x16{left:76.523250px;}
.xb{left:85.039350px;}
.x1d{left:93.543300px;}
.xc{left:97.795350px;}
.x19{left:106.299150px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x14{left:161.579250px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x15{left:288.071250px;}
.xf{left:294.025950px;}
.x12{left:352.350600px;}
.x13{left:365.107200px;}
.x11{left:378.425100px;}
.xd{left:391.181100px;}
.x1e{left:399.682800px;}
.xe{left:403.937100px;}
.x1a{left:412.440900px;}
.x17{left:414.551250px;}
.xa{left:444.617850px;}
.x18{left:541.043250px;}
.x1b{left:572.866950px;}
.x1c{left:670.202250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.978667pt;}
.ls27{letter-spacing:-1.706667pt;}
.lsb{letter-spacing:-1.226667pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.013333pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.024000pt;}
.ls4{letter-spacing:0.026667pt;}
.ls23{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.072000pt;}
.lsd{letter-spacing:0.080000pt;}
.ls21{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.120000pt;}
.lse{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls2b{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.346667pt;}
.ls2d{letter-spacing:0.360000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.453333pt;}
.ls29{letter-spacing:0.456000pt;}
.ls25{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.746667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.493333pt;}
.ls12{letter-spacing:1.866667pt;}
.ls15{letter-spacing:1.893333pt;}
.ls17{letter-spacing:1.920000pt;}
.ls18{letter-spacing:1.946667pt;}
.ls1c{letter-spacing:1.973333pt;}
.ls13{letter-spacing:2.080000pt;}
.ls14{letter-spacing:2.133333pt;}
.ls16{letter-spacing:2.186667pt;}
.ls2a{letter-spacing:7.900800pt;}
.ws0{word-spacing:-16.874667pt;}
.ws61{word-spacing:-14.666667pt;}
.ws62{word-spacing:-13.706667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws60{word-spacing:-12.373333pt;}
.ws14a{word-spacing:-12.240000pt;}
.wsfe{word-spacing:-12.000000pt;}
.ws7d{word-spacing:-5.066667pt;}
.ws146{word-spacing:-3.120000pt;}
.ws12a{word-spacing:-2.832000pt;}
.ws5{word-spacing:-2.666667pt;}
.ws30{word-spacing:-2.613333pt;}
.ws52{word-spacing:-2.560000pt;}
.ws15d{word-spacing:-2.544000pt;}
.ws92{word-spacing:-2.506667pt;}
.wsa2{word-spacing:-2.400000pt;}
.wsc5{word-spacing:-2.352000pt;}
.ws6{word-spacing:-2.346667pt;}
.ws126{word-spacing:-2.304000pt;}
.ws42{word-spacing:-2.293333pt;}
.ws29{word-spacing:-2.240000pt;}
.wsd7{word-spacing:-2.208000pt;}
.ws118{word-spacing:-2.186667pt;}
.ws130{word-spacing:-2.160000pt;}
.ws4e{word-spacing:-2.133333pt;}
.wse1{word-spacing:-2.112000pt;}
.ws3a{word-spacing:-2.080000pt;}
.ws159{word-spacing:-2.064000pt;}
.ws4c{word-spacing:-2.026667pt;}
.ws12c{word-spacing:-2.016000pt;}
.wsa{word-spacing:-1.973333pt;}
.ws86{word-spacing:-1.920000pt;}
.ws111{word-spacing:-1.872000pt;}
.ws31{word-spacing:-1.866667pt;}
.wsec{word-spacing:-1.813333pt;}
.ws90{word-spacing:-1.760000pt;}
.wsc8{word-spacing:-1.680000pt;}
.wsac{word-spacing:-1.653333pt;}
.ws9d{word-spacing:-1.600000pt;}
.ws122{word-spacing:-1.488000pt;}
.wsd{word-spacing:-1.440000pt;}
.ws54{word-spacing:-1.386667pt;}
.wse0{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.333333pt;}
.ws108{word-spacing:-1.296000pt;}
.ws40{word-spacing:-1.280000pt;}
.ws53{word-spacing:-1.226667pt;}
.ws87{word-spacing:-1.173333pt;}
.wsca{word-spacing:-1.152000pt;}
.ws47{word-spacing:-1.120000pt;}
.ws84{word-spacing:-1.066667pt;}
.ws83{word-spacing:-1.013333pt;}
.wsc4{word-spacing:-1.008000pt;}
.ws9c{word-spacing:-0.960000pt;}
.wse9{word-spacing:-0.912000pt;}
.ws3c{word-spacing:-0.906667pt;}
.ws15e{word-spacing:-0.864000pt;}
.ws119{word-spacing:-0.800000pt;}
.ws132{word-spacing:-0.768000pt;}
.ws3{word-spacing:-0.746667pt;}
.ws128{word-spacing:-0.720000pt;}
.ws16{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.640000pt;}
.wsa5{word-spacing:-0.586667pt;}
.ws115{word-spacing:-0.576000pt;}
.wsa0{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.480000pt;}
.ws8a{word-spacing:-0.426667pt;}
.wsba{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.373333pt;}
.wsa3{word-spacing:-0.336000pt;}
.ws93{word-spacing:-0.320000pt;}
.wsd5{word-spacing:-0.288000pt;}
.ws5e{word-spacing:-0.266667pt;}
.ws144{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.213333pt;}
.wsb6{word-spacing:-0.160000pt;}
.ws141{word-spacing:-0.144000pt;}
.ws77{word-spacing:-0.106667pt;}
.ws131{word-spacing:-0.096000pt;}
.ws27{word-spacing:-0.053333pt;}
.wsff{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14c{word-spacing:0.048000pt;}
.ws13c{word-spacing:0.096000pt;}
.ws5a{word-spacing:0.106667pt;}
.wsdc{word-spacing:0.144000pt;}
.ws26{word-spacing:0.160000pt;}
.ws116{word-spacing:0.192000pt;}
.ws34{word-spacing:0.213333pt;}
.ws106{word-spacing:0.240000pt;}
.ws64{word-spacing:0.266667pt;}
.ws140{word-spacing:0.288000pt;}
.ws1e{word-spacing:0.320000pt;}
.wse2{word-spacing:0.336000pt;}
.ws94{word-spacing:0.373333pt;}
.ws41{word-spacing:0.426667pt;}
.wsda{word-spacing:0.432000pt;}
.wsa4{word-spacing:0.480000pt;}
.wsd8{word-spacing:0.528000pt;}
.ws70{word-spacing:0.533333pt;}
.wsef{word-spacing:0.586667pt;}
.wseb{word-spacing:0.624000pt;}
.ws59{word-spacing:0.640000pt;}
.ws6e{word-spacing:0.693333pt;}
.ws150{word-spacing:0.720000pt;}
.ws63{word-spacing:0.746667pt;}
.wsb2{word-spacing:0.768000pt;}
.wsbf{word-spacing:0.816000pt;}
.ws7c{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws15f{word-spacing:0.912000pt;}
.ws35{word-spacing:0.960000pt;}
.ws125{word-spacing:1.008000pt;}
.ws23{word-spacing:1.013333pt;}
.ws104{word-spacing:1.056000pt;}
.wsc7{word-spacing:1.104000pt;}
.wsc{word-spacing:1.120000pt;}
.wsde{word-spacing:1.152000pt;}
.ws3b{word-spacing:1.173333pt;}
.ws13b{word-spacing:1.200000pt;}
.ws10{word-spacing:1.226667pt;}
.ws12e{word-spacing:1.248000pt;}
.ws49{word-spacing:1.280000pt;}
.wsd0{word-spacing:1.296000pt;}
.ws33{word-spacing:1.333333pt;}
.ws164{word-spacing:1.344000pt;}
.ws89{word-spacing:1.386667pt;}
.wsb9{word-spacing:1.440000pt;}
.ws136{word-spacing:1.488000pt;}
.wsa6{word-spacing:1.493333pt;}
.ws133{word-spacing:1.536000pt;}
.ws43{word-spacing:1.546667pt;}
.ws12b{word-spacing:1.584000pt;}
.ws11{word-spacing:1.600000pt;}
.ws142{word-spacing:1.632000pt;}
.ws82{word-spacing:1.653333pt;}
.ws153{word-spacing:1.680000pt;}
.ws39{word-spacing:1.706667pt;}
.ws8f{word-spacing:1.760000pt;}
.ws65{word-spacing:1.813333pt;}
.ws114{word-spacing:1.824000pt;}
.ws98{word-spacing:1.866667pt;}
.ws15a{word-spacing:1.872000pt;}
.ws109{word-spacing:1.920000pt;}
.ws160{word-spacing:1.968000pt;}
.ws71{word-spacing:1.973333pt;}
.ws14d{word-spacing:2.016000pt;}
.ws22{word-spacing:2.026667pt;}
.wsb1{word-spacing:2.064000pt;}
.ws8b{word-spacing:2.080000pt;}
.wsdb{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.133333pt;}
.ws10c{word-spacing:2.160000pt;}
.ws50{word-spacing:2.186667pt;}
.wsd9{word-spacing:2.208000pt;}
.ws9{word-spacing:2.240000pt;}
.ws15b{word-spacing:2.256000pt;}
.ws6a{word-spacing:2.293333pt;}
.ws103{word-spacing:2.304000pt;}
.ws139{word-spacing:2.352000pt;}
.ws7a{word-spacing:2.400000pt;}
.wsbc{word-spacing:2.453333pt;}
.ws100{word-spacing:2.496000pt;}
.wsf7{word-spacing:2.506667pt;}
.ws112{word-spacing:2.592000pt;}
.ws25{word-spacing:2.613333pt;}
.ws4f{word-spacing:2.666667pt;}
.ws76{word-spacing:2.720000pt;}
.wse6{word-spacing:2.736000pt;}
.ws57{word-spacing:2.773333pt;}
.ws91{word-spacing:2.826667pt;}
.ws121{word-spacing:2.832000pt;}
.ws2a{word-spacing:2.880000pt;}
.ws113{word-spacing:2.976000pt;}
.ws5f{word-spacing:2.986667pt;}
.ws120{word-spacing:3.024000pt;}
.ws15{word-spacing:3.040000pt;}
.wse5{word-spacing:3.072000pt;}
.ws1d{word-spacing:3.093333pt;}
.ws74{word-spacing:3.146667pt;}
.ws12d{word-spacing:3.168000pt;}
.wse8{word-spacing:3.200000pt;}
.ws85{word-spacing:3.306667pt;}
.wsc0{word-spacing:3.312000pt;}
.ws20{word-spacing:3.360000pt;}
.wsc2{word-spacing:3.408000pt;}
.ws4b{word-spacing:3.413333pt;}
.ws163{word-spacing:3.456000pt;}
.ws48{word-spacing:3.466667pt;}
.ws127{word-spacing:3.504000pt;}
.ws12f{word-spacing:3.552000pt;}
.wsd2{word-spacing:3.573333pt;}
.ws69{word-spacing:3.626667pt;}
.wsce{word-spacing:3.648000pt;}
.ws2b{word-spacing:3.680000pt;}
.ws145{word-spacing:3.696000pt;}
.ws73{word-spacing:3.733333pt;}
.wsea{word-spacing:3.744000pt;}
.ws5c{word-spacing:3.786667pt;}
.ws147{word-spacing:3.792000pt;}
.ws79{word-spacing:3.840000pt;}
.ws155{word-spacing:3.888000pt;}
.ws17{word-spacing:3.893333pt;}
.ws11c{word-spacing:3.936000pt;}
.ws81{word-spacing:3.946667pt;}
.ws80{word-spacing:4.000000pt;}
.ws13a{word-spacing:4.032000pt;}
.ws75{word-spacing:4.053333pt;}
.wsc1{word-spacing:4.176000pt;}
.wsbb{word-spacing:4.213333pt;}
.wscf{word-spacing:4.224000pt;}
.ws46{word-spacing:4.266667pt;}
.wse4{word-spacing:4.272000pt;}
.ws137{word-spacing:4.320000pt;}
.ws138{word-spacing:4.368000pt;}
.ws95{word-spacing:4.373333pt;}
.wsaf{word-spacing:4.416000pt;}
.ws66{word-spacing:4.426667pt;}
.ws154{word-spacing:4.464000pt;}
.ws1f{word-spacing:4.480000pt;}
.ws11a{word-spacing:4.512000pt;}
.ws88{word-spacing:4.533333pt;}
.wscc{word-spacing:4.586667pt;}
.ws4a{word-spacing:4.640000pt;}
.ws143{word-spacing:4.656000pt;}
.ws9f{word-spacing:4.693333pt;}
.ws123{word-spacing:4.704000pt;}
.ws117{word-spacing:4.746667pt;}
.ws14b{word-spacing:4.800000pt;}
.ws10a{word-spacing:4.848000pt;}
.wsd1{word-spacing:4.853333pt;}
.ws97{word-spacing:4.906667pt;}
.ws157{word-spacing:4.944000pt;}
.ws2c{word-spacing:4.960000pt;}
.ws156{word-spacing:4.992000pt;}
.wsdf{word-spacing:5.013333pt;}
.ws101{word-spacing:5.040000pt;}
.ws96{word-spacing:5.066667pt;}
.ws5b{word-spacing:5.120000pt;}
.wsd4{word-spacing:5.136000pt;}
.ws152{word-spacing:5.184000pt;}
.ws7e{word-spacing:5.226667pt;}
.ws14f{word-spacing:5.232000pt;}
.ws99{word-spacing:5.280000pt;}
.wsb4{word-spacing:5.328000pt;}
.ws55{word-spacing:5.333333pt;}
.ws56{word-spacing:5.386667pt;}
.ws135{word-spacing:5.424000pt;}
.ws6f{word-spacing:5.440000pt;}
.wsc9{word-spacing:5.472000pt;}
.ws10d{word-spacing:5.520000pt;}
.wsa7{word-spacing:5.546667pt;}
.ws44{word-spacing:5.600000pt;}
.ws134{word-spacing:5.616000pt;}
.ws12{word-spacing:5.653333pt;}
.ws19{word-spacing:5.706667pt;}
.wsdd{word-spacing:5.760000pt;}
.ws10e{word-spacing:5.808000pt;}
.ws6b{word-spacing:5.813333pt;}
.ws9b{word-spacing:5.866667pt;}
.ws8{word-spacing:5.920000pt;}
.wsc6{word-spacing:5.952000pt;}
.wsa8{word-spacing:5.973333pt;}
.wsb3{word-spacing:6.000000pt;}
.ws24{word-spacing:6.026667pt;}
.ws102{word-spacing:6.048000pt;}
.ws4d{word-spacing:6.080000pt;}
.ws129{word-spacing:6.096000pt;}
.wsb7{word-spacing:6.186667pt;}
.ws13e{word-spacing:6.192000pt;}
.wsad{word-spacing:6.240000pt;}
.ws3e{word-spacing:6.293333pt;}
.wsa1{word-spacing:6.346667pt;}
.wse7{word-spacing:6.453333pt;}
.wsc3{word-spacing:6.506667pt;}
.ws32{word-spacing:6.560000pt;}
.ws11d{word-spacing:6.576000pt;}
.ws7{word-spacing:6.613333pt;}
.ws11e{word-spacing:6.624000pt;}
.ws13{word-spacing:6.666667pt;}
.wsb0{word-spacing:6.672000pt;}
.ws3f{word-spacing:6.720000pt;}
.ws37{word-spacing:6.826667pt;}
.ws38{word-spacing:6.933333pt;}
.ws148{word-spacing:7.056000pt;}
.ws14e{word-spacing:7.104000pt;}
.wsae{word-spacing:7.200000pt;}
.wsab{word-spacing:7.253333pt;}
.ws1c{word-spacing:7.360000pt;}
.ws2d{word-spacing:7.413333pt;}
.ws105{word-spacing:7.440000pt;}
.ws10b{word-spacing:7.488000pt;}
.ws58{word-spacing:7.520000pt;}
.wsed{word-spacing:7.626667pt;}
.wsb{word-spacing:7.733333pt;}
.wsfd{word-spacing:7.786667pt;}
.wsb5{word-spacing:7.893333pt;}
.ws8d{word-spacing:7.946667pt;}
.ws51{word-spacing:8.000000pt;}
.ws13d{word-spacing:8.112000pt;}
.ws72{word-spacing:8.160000pt;}
.ws7b{word-spacing:8.213333pt;}
.ws15c{word-spacing:8.256000pt;}
.wscb{word-spacing:8.426667pt;}
.ws11b{word-spacing:8.496000pt;}
.ws4{word-spacing:8.693333pt;}
.ws149{word-spacing:8.736000pt;}
.wsbd{word-spacing:8.746667pt;}
.ws2e{word-spacing:8.906667pt;}
.ws151{word-spacing:8.928000pt;}
.wsf8{word-spacing:9.013333pt;}
.wsf0{word-spacing:9.173333pt;}
.wsbe{word-spacing:9.546667pt;}
.ws124{word-spacing:9.552000pt;}
.wsd3{word-spacing:9.744000pt;}
.ws78{word-spacing:10.026667pt;}
.ws8e{word-spacing:10.133333pt;}
.ws8c{word-spacing:10.346667pt;}
.ws11f{word-spacing:10.368000pt;}
.ws67{word-spacing:10.560000pt;}
.ws158{word-spacing:10.608000pt;}
.ws9e{word-spacing:10.986667pt;}
.ws13f{word-spacing:11.280000pt;}
.ws18{word-spacing:11.306667pt;}
.wsaa{word-spacing:11.520000pt;}
.wsa9{word-spacing:11.573333pt;}
.wsee{word-spacing:11.786667pt;}
.ws45{word-spacing:12.213333pt;}
.wsb8{word-spacing:12.240000pt;}
.wsfb{word-spacing:12.746667pt;}
.ws68{word-spacing:13.013333pt;}
.ws14{word-spacing:13.706667pt;}
.wsfc{word-spacing:13.920000pt;}
.wsd6{word-spacing:14.026667pt;}
.ws9a{word-spacing:14.293333pt;}
.ws10f{word-spacing:14.400000pt;}
.ws162{word-spacing:15.360000pt;}
.ws6d{word-spacing:15.946667pt;}
.ws6c{word-spacing:16.106667pt;}
.wsf9{word-spacing:16.800000pt;}
.ws110{word-spacing:17.184000pt;}
.ws7f{word-spacing:17.280000pt;}
.ws1b{word-spacing:17.813333pt;}
.ws161{word-spacing:17.952000pt;}
.wscd{word-spacing:18.613333pt;}
.wsfa{word-spacing:19.093333pt;}
.wse{word-spacing:20.640000pt;}
.ws107{word-spacing:22.800000pt;}
.wse3{word-spacing:24.586667pt;}
.ws1a{word-spacing:29.013333pt;}
.wsf6{word-spacing:84.181333pt;}
.wsf5{word-spacing:107.946667pt;}
.wsf2{word-spacing:122.538667pt;}
.wsf4{word-spacing:188.586667pt;}
.wsf3{word-spacing:288.512000pt;}
.wsf1{word-spacing:300.373333pt;}
._8{margin-left:-20.533333pt;}
._c{margin-left:-17.425067pt;}
._9{margin-left:-15.253333pt;}
._b{margin-left:-13.066667pt;}
._f{margin-left:-9.508800pt;}
._6{margin-left:-7.547733pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-4.906667pt;}
._3{margin-left:-3.808000pt;}
._a{margin-left:-2.880000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.226667pt;}
._7{width:2.389333pt;}
._0{width:4.966400pt;}
._e{width:134.400000pt;}
._d{width:264.832000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1a{bottom:32.885867pt;}
.y101{bottom:57.601867pt;}
.ye3{bottom:57.771600pt;}
.y6f{bottom:64.881867pt;}
.y3c{bottom:65.756000pt;}
.y100{bottom:70.935200pt;}
.ye2{bottom:71.104933pt;}
.y171{bottom:74.021867pt;}
.y140{bottom:74.027200pt;}
.y6e{bottom:80.881867pt;}
.yff{bottom:84.268533pt;}
.ye1{bottom:84.438267pt;}
.y170{bottom:87.353867pt;}
.y13f{bottom:87.359200pt;}
.y14{bottom:88.706667pt;}
.y6d{bottom:96.881867pt;}
.yfe{bottom:97.601867pt;}
.ye0{bottom:97.772933pt;}
.y16f{bottom:100.689867pt;}
.y13e{bottom:100.691200pt;}
.y18{bottom:101.040000pt;}
.yfd{bottom:110.941867pt;}
.ydf{bottom:111.104933pt;}
.y6c{bottom:112.881867pt;}
.y35{bottom:112.882000pt;}
.y16e{bottom:114.021867pt;}
.y13d{bottom:114.023200pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.yfc{bottom:124.273867pt;}
.yde{bottom:124.438267pt;}
.y16d{bottom:127.353867pt;}
.y13c{bottom:127.355200pt;}
.y6b{bottom:128.881867pt;}
.y34{bottom:128.882000pt;}
.yfb{bottom:137.605867pt;}
.y15{bottom:137.733333pt;}
.ydd{bottom:137.774267pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y13b{bottom:140.687200pt;}
.y93{bottom:140.881867pt;}
.y6a{bottom:144.881867pt;}
.y33{bottom:144.882000pt;}
.yfa{bottom:150.937867pt;}
.ydc{bottom:151.106267pt;}
.y92{bottom:152.881867pt;}
.y13a{bottom:154.020533pt;}
.y16c{bottom:154.039200pt;}
.y69{bottom:160.881867pt;}
.y32{bottom:160.882000pt;}
.yf9{bottom:164.269867pt;}
.ydb{bottom:164.438267pt;}
.y91{bottom:164.881867pt;}
.y139{bottom:167.364533pt;}
.y16b{bottom:167.371200pt;}
.y68{bottom:176.881867pt;}
.y31{bottom:176.882000pt;}
.yf8{bottom:177.601867pt;}
.yda{bottom:177.771600pt;}
.y138{bottom:180.696533pt;}
.y16a{bottom:180.703200pt;}
.y90{bottom:188.881867pt;}
.yf7{bottom:190.935200pt;}
.yd9{bottom:191.104933pt;}
.y67{bottom:192.881867pt;}
.y30{bottom:192.882000pt;}
.y137{bottom:194.028533pt;}
.y169{bottom:194.035200pt;}
.ya1{bottom:196.881867pt;}
.y8f{bottom:200.881867pt;}
.yf6{bottom:204.277867pt;}
.yd8{bottom:204.438267pt;}
.y136{bottom:207.360533pt;}
.y168{bottom:207.367200pt;}
.y66{bottom:208.881867pt;}
.y2f{bottom:208.882000pt;}
.y8e{bottom:212.881867pt;}
.yf5{bottom:217.609867pt;}
.yd7{bottom:217.772933pt;}
.y135{bottom:220.692533pt;}
.y167{bottom:220.699200pt;}
.y72{bottom:220.881867pt;}
.y65{bottom:224.881867pt;}
.y2e{bottom:224.882000pt;}
.y194{bottom:225.124667pt;}
.yf4{bottom:230.941867pt;}
.yd6{bottom:231.104933pt;}
.y71{bottom:232.881867pt;}
.y134{bottom:234.024533pt;}
.y166{bottom:234.031200pt;}
.y193{bottom:238.456667pt;}
.y1a7{bottom:238.793733pt;}
.y64{bottom:240.881867pt;}
.y2d{bottom:240.882000pt;}
.yf3{bottom:244.273867pt;}
.yd5{bottom:244.438267pt;}
.y79{bottom:244.881867pt;}
.y133{bottom:247.356533pt;}
.y165{bottom:247.363200pt;}
.y192{bottom:251.788667pt;}
.y1a6{bottom:252.125733pt;}
.y63{bottom:256.881867pt;}
.y2c{bottom:256.882000pt;}
.yf2{bottom:257.605867pt;}
.yd4{bottom:257.775600pt;}
.y132{bottom:260.688533pt;}
.y164{bottom:260.695200pt;}
.y191{bottom:265.120667pt;}
.y1a5{bottom:265.457733pt;}
.yf1{bottom:270.937867pt;}
.yd3{bottom:271.107600pt;}
.y62{bottom:272.881867pt;}
.y2b{bottom:272.882000pt;}
.y131{bottom:274.020533pt;}
.y163{bottom:274.027200pt;}
.y190{bottom:278.454000pt;}
.y1a4{bottom:278.789733pt;}
.yf0{bottom:284.269867pt;}
.yd2{bottom:284.439600pt;}
.y81{bottom:284.881867pt;}
.y130{bottom:287.353867pt;}
.y162{bottom:287.359200pt;}
.y61{bottom:288.881867pt;}
.y2a{bottom:288.882000pt;}
.y18f{bottom:291.787333pt;}
.y1a3{bottom:292.121733pt;}
.y80{bottom:296.881867pt;}
.yef{bottom:297.601867pt;}
.yd1{bottom:297.771600pt;}
.y12f{bottom:300.687200pt;}
.y161{bottom:300.691200pt;}
.y60{bottom:304.881867pt;}
.y29{bottom:304.882000pt;}
.y18e{bottom:305.120667pt;}
.y1a2{bottom:305.453733pt;}
.ya{bottom:306.382667pt;}
.y7f{bottom:308.881867pt;}
.yee{bottom:310.936533pt;}
.yd0{bottom:311.104933pt;}
.y12e{bottom:314.020533pt;}
.y160{bottom:314.023200pt;}
.y18d{bottom:318.454000pt;}
.y1a1{bottom:318.788400pt;}
.y5f{bottom:320.881867pt;}
.y28{bottom:320.882000pt;}
.yed{bottom:324.268533pt;}
.ycf{bottom:324.443600pt;}
.ya8{bottom:324.881867pt;}
.y12d{bottom:327.353867pt;}
.y15f{bottom:327.355200pt;}
.y18c{bottom:331.787333pt;}
.y1a0{bottom:332.120400pt;}
.y7e{bottom:332.881867pt;}
.y5e{bottom:336.881867pt;}
.y27{bottom:336.882000pt;}
.yec{bottom:337.601867pt;}
.yce{bottom:337.775600pt;}
.y12c{bottom:340.687200pt;}
.ya0{bottom:340.881867pt;}
.yd{bottom:343.546667pt;}
.y7d{bottom:344.881867pt;}
.y18b{bottom:345.120667pt;}
.y19f{bottom:345.453733pt;}
.ya7{bottom:348.881867pt;}
.yeb{bottom:350.935200pt;}
.ycd{bottom:351.107600pt;}
.y9{bottom:351.724000pt;}
.y5d{bottom:352.881867pt;}
.y26{bottom:352.882000pt;}
.y15e{bottom:354.020533pt;}
.y12b{bottom:354.021867pt;}
.y7c{bottom:356.881867pt;}
.y18a{bottom:358.454000pt;}
.y19e{bottom:358.789733pt;}
.ya6{bottom:360.881867pt;}
.yea{bottom:364.268533pt;}
.ycc{bottom:364.439600pt;}
.y9f{bottom:364.881867pt;}
.y12a{bottom:367.353867pt;}
.y15d{bottom:367.359200pt;}
.y5c{bottom:368.881867pt;}
.y25{bottom:368.882000pt;}
.y189{bottom:371.801867pt;}
.y19d{bottom:372.121733pt;}
.ya5{bottom:372.881867pt;}
.y9e{bottom:376.881867pt;}
.ye9{bottom:377.607200pt;}
.ycb{bottom:377.771600pt;}
.y129{bottom:380.687200pt;}
.y15c{bottom:380.691200pt;}
.y5b{bottom:384.881867pt;}
.y24{bottom:384.882000pt;}
.y188{bottom:385.133867pt;}
.y19c{bottom:385.453733pt;}
.yb{bottom:386.533333pt;}
.y9d{bottom:388.881867pt;}
.ye8{bottom:390.939200pt;}
.yca{bottom:391.104933pt;}
.y8d{bottom:392.881867pt;}
.y128{bottom:394.020533pt;}
.y15b{bottom:394.023200pt;}
.ya4{bottom:396.881867pt;}
.y8{bottom:397.065333pt;}
.y187{bottom:398.465867pt;}
.y19b{bottom:398.787067pt;}
.y5a{bottom:400.881867pt;}
.y23{bottom:400.882000pt;}
.ye7{bottom:404.271200pt;}
.yc9{bottom:404.438267pt;}
.y8c{bottom:404.881867pt;}
.y127{bottom:407.353867pt;}
.y15a{bottom:407.355200pt;}
.ya3{bottom:408.881867pt;}
.y186{bottom:411.797867pt;}
.y19a{bottom:412.125733pt;}
.y78{bottom:412.881867pt;}
.y59{bottom:416.881867pt;}
.y22{bottom:416.882000pt;}
.ye6{bottom:417.603200pt;}
.yc8{bottom:417.771600pt;}
.y159{bottom:420.687200pt;}
.y126{bottom:420.695200pt;}
.ya2{bottom:420.881867pt;}
.y77{bottom:424.881867pt;}
.y185{bottom:425.129867pt;}
.y199{bottom:425.457733pt;}
.y8b{bottom:428.881867pt;}
.ye5{bottom:430.935200pt;}
.yc7{bottom:431.104933pt;}
.y58{bottom:432.881867pt;}
.y21{bottom:432.882000pt;}
.y11{bottom:433.826667pt;}
.y158{bottom:434.020533pt;}
.y125{bottom:434.027200pt;}
.y76{bottom:436.881867pt;}
.y184{bottom:438.461867pt;}
.y198{bottom:438.789733pt;}
.y8a{bottom:440.881867pt;}
.y7{bottom:442.406667pt;}
.ye4{bottom:444.268533pt;}
.yc6{bottom:444.438267pt;}
.y157{bottom:447.353867pt;}
.y124{bottom:447.359200pt;}
.y57{bottom:448.881867pt;}
.y20{bottom:448.882000pt;}
.y183{bottom:451.793867pt;}
.y197{bottom:452.121733pt;}
.y89{bottom:452.881867pt;}
.yc5{bottom:457.771600pt;}
.y156{bottom:460.687200pt;}
.y123{bottom:460.691200pt;}
.y75{bottom:460.881867pt;}
.y56{bottom:464.881867pt;}
.y36{bottom:464.882000pt;}
.y182{bottom:465.125867pt;}
.y196{bottom:465.453733pt;}
.y74{bottom:472.881867pt;}
.y155{bottom:474.020533pt;}
.y122{bottom:474.023200pt;}
.y12{bottom:478.426667pt;}
.y181{bottom:478.457867pt;}
.y195{bottom:478.787067pt;}
.y55{bottom:480.881867pt;}
.y1f{bottom:480.882000pt;}
.y73{bottom:484.881867pt;}
.y154{bottom:487.353867pt;}
.y121{bottom:487.355200pt;}
.y6{bottom:487.748000pt;}
.y180{bottom:491.789867pt;}
.yc3{bottom:496.676800pt;}
.y54{bottom:496.881867pt;}
.y120{bottom:500.687200pt;}
.yc2{bottom:508.676800pt;}
.y53{bottom:512.881867pt;}
.y11f{bottom:514.020533pt;}
.yc1{bottom:520.676800pt;}
.y19{bottom:524.093333pt;}
.y153{bottom:527.353867pt;}
.y11e{bottom:527.360533pt;}
.y52{bottom:528.881867pt;}
.yc0{bottom:532.676800pt;}
.y5{bottom:533.089333pt;}
.y152{bottom:540.687200pt;}
.y11d{bottom:540.692533pt;}
.y51{bottom:544.881867pt;}
.ybf{bottom:551.343467pt;}
.y151{bottom:554.020533pt;}
.y11c{bottom:554.024533pt;}
.y50{bottom:560.881867pt;}
.ye{bottom:561.706667pt;}
.ybe{bottom:563.343467pt;}
.y103{bottom:565.606400pt;}
.y3b{bottom:566.598533pt;}
.y150{bottom:567.353867pt;}
.y11b{bottom:567.356533pt;}
.ybd{bottom:575.343467pt;}
.y4f{bottom:576.881867pt;}
.y102{bottom:576.937067pt;}
.y11a{bottom:580.688533pt;}
.y14f{bottom:580.689867pt;}
.y9c{bottom:584.881867pt;}
.ybc{bottom:587.343467pt;}
.y4e{bottom:592.881867pt;}
.y119{bottom:594.020533pt;}
.y14e{bottom:594.021867pt;}
.y9b{bottom:596.881867pt;}
.ybb{bottom:599.343467pt;}
.y3a{bottom:601.958400pt;}
.y118{bottom:607.353867pt;}
.y4d{bottom:608.881867pt;}
.yba{bottom:611.343467pt;}
.y39{bottom:618.629733pt;}
.y14d{bottom:620.687200pt;}
.y178{bottom:620.688533pt;}
.y117{bottom:620.689867pt;}
.y9a{bottom:620.881867pt;}
.y4c{bottom:624.881867pt;}
.yb9{bottom:630.010133pt;}
.y99{bottom:632.881867pt;}
.y14c{bottom:634.020533pt;}
.y116{bottom:634.021867pt;}
.y17f{bottom:634.025867pt;}
.y38{bottom:635.301067pt;}
.y4b{bottom:640.881867pt;}
.yb8{bottom:642.010133pt;}
.y98{bottom:644.881867pt;}
.y115{bottom:647.353867pt;}
.y14b{bottom:647.357867pt;}
.y37{bottom:651.972400pt;}
.yb7{bottom:654.010133pt;}
.y4a{bottom:656.881867pt;}
.y114{bottom:660.687200pt;}
.y14a{bottom:660.689867pt;}
.yb6{bottom:666.010133pt;}
.y49{bottom:672.881867pt;}
.y113{bottom:674.020533pt;}
.y149{bottom:674.021867pt;}
.yb5{bottom:684.676800pt;}
.y112{bottom:687.353867pt;}
.y1e{bottom:687.877867pt;}
.y48{bottom:688.881867pt;}
.y4{bottom:691.756000pt;}
.yb4{bottom:696.676800pt;}
.y111{bottom:700.687200pt;}
.y47{bottom:704.881867pt;}
.yb3{bottom:708.676800pt;}
.y110{bottom:714.020533pt;}
.y148{bottom:714.023200pt;}
.y177{bottom:714.024533pt;}
.y17e{bottom:714.025867pt;}
.y1d{bottom:718.220400pt;}
.yb2{bottom:720.676800pt;}
.y46{bottom:720.881867pt;}
.y13{bottom:725.040000pt;}
.y10f{bottom:727.353867pt;}
.y147{bottom:727.355200pt;}
.y176{bottom:727.356533pt;}
.y17d{bottom:727.357867pt;}
.yb1{bottom:732.676800pt;}
.y45{bottom:736.881867pt;}
.y146{bottom:740.687200pt;}
.y10e{bottom:740.688533pt;}
.y17c{bottom:740.689867pt;}
.yb0{bottom:751.343467pt;}
.y1c{bottom:751.555067pt;}
.y44{bottom:752.881867pt;}
.y10d{bottom:754.020533pt;}
.y17b{bottom:754.021867pt;}
.yaf{bottom:763.343467pt;}
.y10c{bottom:767.353867pt;}
.y145{bottom:767.355200pt;}
.y43{bottom:768.881867pt;}
.yae{bottom:775.343467pt;}
.y97{bottom:776.881867pt;}
.y144{bottom:780.687200pt;}
.y10b{bottom:780.688533pt;}
.y175{bottom:780.689867pt;}
.y42{bottom:784.881867pt;}
.y1b{bottom:784.889733pt;}
.y96{bottom:788.881867pt;}
.y88{bottom:791.353867pt;}
.yad{bottom:794.010133pt;}
.y10a{bottom:794.020533pt;}
.y174{bottom:794.021867pt;}
.y41{bottom:800.881867pt;}
.y87{bottom:803.353867pt;}
.y3{bottom:805.081333pt;}
.yac{bottom:806.010133pt;}
.y109{bottom:807.353867pt;}
.y143{bottom:807.357867pt;}
.y95{bottom:812.881867pt;}
.y86{bottom:815.353867pt;}
.y40{bottom:816.881867pt;}
.y173{bottom:820.687200pt;}
.y108{bottom:820.689867pt;}
.yab{bottom:824.687467pt;}
.y94{bottom:824.881867pt;}
.y85{bottom:827.353867pt;}
.yaa{bottom:830.692800pt;}
.y3f{bottom:832.881867pt;}
.y17a{bottom:834.020533pt;}
.y107{bottom:834.021867pt;}
.y84{bottom:839.353867pt;}
.y106{bottom:847.353867pt;}
.y3e{bottom:848.881867pt;}
.y83{bottom:851.353867pt;}
.y2{bottom:857.092000pt;}
.ya9{bottom:857.583467pt;}
.y105{bottom:860.687200pt;}
.y82{bottom:863.353867pt;}
.y70{bottom:864.881867pt;}
.y172{bottom:874.020533pt;}
.y104{bottom:874.021867pt;}
.y142{bottom:874.031200pt;}
.y7b{bottom:875.353867pt;}
.y1{bottom:879.748000pt;}
.y3d{bottom:880.881867pt;}
.y179{bottom:887.352533pt;}
.y7a{bottom:887.353867pt;}
.y141{bottom:887.363200pt;}
.yc4{bottom:887.626000pt;}
.h10{height:24.384000pt;}
.h11{height:28.448000pt;}
.h4{height:29.333333pt;}
.h14{height:32.000000pt;}
.hb{height:34.000000pt;}
.h19{height:34.320000pt;}
.h17{height:34.544000pt;}
.h18{height:36.000000pt;}
.h16{height:36.522667pt;}
.h12{height:38.151111pt;}
.hd{height:38.805333pt;}
.h13{height:38.832000pt;}
.he{height:40.000000pt;}
.hf{height:43.146667pt;}
.h3{height:51.916667pt;}
.h15{height:55.978667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hc{height:99.237333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:944.666667pt;}
.h9{height:944.881333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:665.197333pt;}
.wa{width:665.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x10{left:64.252000pt;}
.x16{left:68.020667pt;}
.xb{left:75.590533pt;}
.x1d{left:83.149600pt;}
.xc{left:86.929200pt;}
.x19{left:94.488133pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x14{left:143.626000pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x15{left:256.063333pt;}
.xf{left:261.356400pt;}
.x12{left:313.200533pt;}
.x13{left:324.539733pt;}
.x11{left:336.377867pt;}
.xd{left:347.716533pt;}
.x1e{left:355.273600pt;}
.xe{left:359.055200pt;}
.x1a{left:366.614133pt;}
.x17{left:368.490000pt;}
.xa{left:395.215867pt;}
.x18{left:480.927333pt;}
.x1b{left:509.215067pt;}
.x1c{left:595.735333pt;}
}




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