
    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_382371068b6e6fde4e8c2301.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988000;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_3bc0015ad4bf03c8556f5269.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.747000;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_365606b0f14e4f26deaae531.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979000;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_a979dab6d74cfd038a99567c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_ef19f395b60d90e1b6c17b4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201000;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_5c50db74d91513847da4c23b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_6434b4c68bc79a696fef9c96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.221000;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_cb6dc3cc1de90f74884bbef0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979000;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_cbf42db16c02ec8ee561c040.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_1c8b9b0c8b8a61df776eb1ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.271000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3d45a3a3134d7b1958adc814.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f1c3a380ef9ecaa2add2e988.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.175000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3aee9b38a8426348a3c93c82.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.255000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_08c9d2f6906e0aba57251473.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.195000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4fc3e2d642a3a5672e3b4c88.woff2')format("woff");}.fff{font-family:fff;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5bae0cdb6d64deafb706890d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c0da6dffce0b7e3cc74b5730.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.271000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2adba26fb65cd338be68e30f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.201000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d8506bc12c6804d114950685.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5a9fd286ba80c5a7a0d0c22e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.120000;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:ff16;src:url('chunks/assets/font_5387be429786f46058832cf4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.255000;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:ff17;src:url('chunks/assets/font_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.271000;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:ff18;src:url('chunks/assets/font_c0da6dffce0b7e3cc74b5730.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;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:ff19;src:url('chunks/assets/font_3cd50d520127e2deca740966.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.764648;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:ff1a;src:url('chunks/assets/font_0e9f0f66dff26ab7d1426607.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.233000;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:ff1b;src:url('chunks/assets/font_681642b37df9560b7841088d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.988000;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:ff1c;src:url('chunks/assets/font_43eaa6dab07a95e556545b6e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.747000;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:ff1d;src:url('chunks/assets/font_6a26a94aa0ae63476bbe63e8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;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:ff1e;src:url('chunks/assets/font_6a26a94aa0ae63476bbe63e8.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940000;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:ff1f;src:url('chunks/assets/font_5387be429786f46058832cf4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.255000;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:ff20;src:url('chunks/assets/font_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.271000;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:ff21;src:url('chunks/assets/font_c0da6dffce0b7e3cc74b5730.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.999000;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:ff22;src:url('chunks/assets/font_6a26a94aa0ae63476bbe63e8.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.940000;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:ff23;src:url('chunks/assets/font_cfa2d1492af19309556dfdd1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.931000;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:ff24;src:url('chunks/assets/font_5387be429786f46058832cf4.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.255000;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:ff25;src:url('chunks/assets/font_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.271000;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:ff26;src:url('chunks/assets/font_c0da6dffce0b7e3cc74b5730.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.999000;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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246292,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246679,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246681,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247239,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247287,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m5f{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);}
.m9a{transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247526,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247826,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247866,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248293,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248324,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248826,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249321,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249619,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249817,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m29{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.md0{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250529,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.mcc{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);}
.m3d{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250931,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250938,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251226,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251607,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251952,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251987,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252174,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252289,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.252319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252319,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252321,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252331,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252495,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.mc9{transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252648,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252679,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252714,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252762,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253058,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253071,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253117,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253119,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253333,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253721,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253876,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254924,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255555,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.257498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257498,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257507,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.257736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257736,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257862,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257919,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258052,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258471,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259205,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.259279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259279,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.260043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260043,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260093,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.260212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260212,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260767,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.260812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260812,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262166,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.594000px;}
.v3{vertical-align:-11.430000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.583800px;}
.v4{vertical-align:12.600000px;}
.ls18{letter-spacing:-1.134000px;}
.ls2b{letter-spacing:-0.855000px;}
.ls4f{letter-spacing:-0.756000px;}
.ls30{letter-spacing:-0.741000px;}
.ls3f{letter-spacing:-0.693000px;}
.ls1e{letter-spacing:-0.684000px;}
.ls4e{letter-spacing:-0.630000px;}
.ls1d{letter-spacing:-0.627000px;}
.ls44{letter-spacing:-0.567000px;}
.ls8{letter-spacing:-0.513000px;}
.ls6{letter-spacing:-0.504000px;}
.ls50{letter-spacing:-0.456000px;}
.ls17{letter-spacing:-0.441000px;}
.ls29{letter-spacing:-0.399000px;}
.ls3b{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.342000px;}
.ls27{letter-spacing:-0.315000px;}
.ls51{letter-spacing:-0.285000px;}
.ls19{letter-spacing:-0.252000px;}
.ls1f{letter-spacing:-0.228000px;}
.ls1a{letter-spacing:-0.189000px;}
.ls3c{letter-spacing:-0.176400px;}
.ls20{letter-spacing:-0.171000px;}
.ls1c{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.114000px;}
.ls1b{letter-spacing:-0.063000px;}
.ls28{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001800px;}
.ls2{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.010200px;}
.lsd{letter-spacing:0.031500px;}
.ls52{letter-spacing:0.057000px;}
.lsb{letter-spacing:0.063000px;}
.ls41{letter-spacing:0.094500px;}
.ls12{letter-spacing:0.114000px;}
.ls63{letter-spacing:0.119700px;}
.ls5b{letter-spacing:0.123975px;}
.ls59{letter-spacing:0.124302px;}
.ls14{letter-spacing:0.126000px;}
.ls5a{letter-spacing:0.128250px;}
.ls2f{letter-spacing:0.157500px;}
.ls25{letter-spacing:0.171000px;}
.lsc{letter-spacing:0.189000px;}
.ls32{letter-spacing:0.195300px;}
.ls26{letter-spacing:0.228000px;}
.ls5c{letter-spacing:0.241127px;}
.ls15{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.285000px;}
.ls2e{letter-spacing:0.315000px;}
.ls5d{letter-spacing:0.323918px;}
.ls5e{letter-spacing:0.324900px;}
.ls23{letter-spacing:0.342000px;}
.ls46{letter-spacing:0.346500px;}
.ls3a{letter-spacing:0.347700px;}
.ls47{letter-spacing:0.363375px;}
.ls55{letter-spacing:0.366000px;}
.ls33{letter-spacing:0.378000px;}
.ls48{letter-spacing:0.399000px;}
.ls43{letter-spacing:0.409500px;}
.ls4d{letter-spacing:0.414675px;}
.ls4c{letter-spacing:0.414911px;}
.ls13{letter-spacing:0.441000px;}
.ls24{letter-spacing:0.456000px;}
.ls3d{letter-spacing:0.472500px;}
.ls5f{letter-spacing:0.484500px;}
.lse{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.513000px;}
.ls35{letter-spacing:0.567000px;}
.ls54{letter-spacing:0.570000px;}
.ls42{letter-spacing:0.598500px;}
.ls10{letter-spacing:0.605861px;}
.ls11{letter-spacing:0.627000px;}
.ls16{letter-spacing:0.630000px;}
.ls4b{letter-spacing:0.684000px;}
.ls4a{letter-spacing:0.688275px;}
.lsa{letter-spacing:0.693000px;}
.ls37{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.855000px;}
.ls9{letter-spacing:0.882000px;}
.ls45{letter-spacing:0.945000px;}
.ls49{letter-spacing:1.026000px;}
.lsf{letter-spacing:1.083000px;}
.ls39{letter-spacing:1.526400px;}
.ls62{letter-spacing:1.710000px;}
.ls57{letter-spacing:1.752750px;}
.ls58{letter-spacing:1.761300px;}
.ls56{letter-spacing:1.761588px;}
.ls61{letter-spacing:2.052000px;}
.ls60{letter-spacing:2.059529px;}
.ls38{letter-spacing:2.308500px;}
.ls5{letter-spacing:3.146400px;}
.ls22{letter-spacing:3.199200px;}
.ls34{letter-spacing:3.591000px;}
.ls36{letter-spacing:4.561200px;}
.ls40{letter-spacing:606.641800px;}
.ls2d{letter-spacing:1323.240000px;}
.ls31{letter-spacing:1412.458874px;}
.ls3e{letter-spacing:1459.636210px;}
.ls2c{letter-spacing:1542.720000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,255,0),0 0.015em rgb(0,255,0),0.015em 0 rgb(0,255,0),0 -0.015em  rgb(0,255,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,255,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws61{word-spacing:-1542.720000px;}
.ws6b{word-spacing:-1412.458874px;}
.ws62{word-spacing:-1323.240000px;}
.ws9a{word-spacing:-606.641800px;}
.ws56{word-spacing:-57.000000px;}
.ws1b{word-spacing:-16.632000px;}
.ws22{word-spacing:-16.380000px;}
.ws9c{word-spacing:-16.348500px;}
.ws55{word-spacing:-16.002000px;}
.wscb{word-spacing:-15.960000px;}
.ws21{word-spacing:-15.813000px;}
.ws1c{word-spacing:-15.750000px;}
.ws53{word-spacing:-15.687000px;}
.ws6e{word-spacing:-15.624000px;}
.ws8d{word-spacing:-15.498000px;}
.ws64{word-spacing:-15.435000px;}
.ws6d{word-spacing:-15.372000px;}
.ws54{word-spacing:-15.309000px;}
.ws8e{word-spacing:-15.057000px;}
.wscc{word-spacing:-14.763000px;}
.wsa{word-spacing:-14.535000px;}
.wsc{word-spacing:-14.250000px;}
.wsa6{word-spacing:-14.193000px;}
.wsb{word-spacing:-14.136000px;}
.wsa7{word-spacing:-14.079000px;}
.wsa5{word-spacing:-13.794000px;}
.wsc9{word-spacing:-13.737000px;}
.ws63{word-spacing:-13.509000px;}
.wsd{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.344000px;}
.wsc6{word-spacing:-12.448800px;}
.wsc5{word-spacing:-12.440250px;}
.ws52{word-spacing:-12.000000px;}
.ws1e{word-spacing:-11.812500px;}
.ws0{word-spacing:-11.676000px;}
.wsa8{word-spacing:-11.375775px;}
.ws9{word-spacing:-11.172000px;}
.wsa9{word-spacing:-11.102175px;}
.ws5{word-spacing:-11.088000px;}
.wsa4{word-spacing:-11.050875px;}
.ws1d{word-spacing:-11.025000px;}
.wsca{word-spacing:-11.012400px;}
.ws4{word-spacing:-11.004000px;}
.wsc7{word-spacing:-10.815750px;}
.wsc8{word-spacing:-10.811475px;}
.wscd{word-spacing:-10.807200px;}
.ws20{word-spacing:-10.687500px;}
.ws8{word-spacing:-10.008000px;}
.ws1f{word-spacing:-9.975000px;}
.ws2{word-spacing:-9.340800px;}
.ws1{word-spacing:-8.757000px;}
.ws7{word-spacing:-6.426000px;}
.wsbe{word-spacing:-6.270000px;}
.wsb5{word-spacing:-4.473000px;}
.ws84{word-spacing:-4.032000px;}
.ws24{word-spacing:-3.969000px;}
.ws28{word-spacing:-3.906000px;}
.ws71{word-spacing:-3.843000px;}
.ws2c{word-spacing:-3.780000px;}
.ws2e{word-spacing:-3.717000px;}
.ws32{word-spacing:-3.654000px;}
.ws5c{word-spacing:-3.648000px;}
.ws15{word-spacing:-3.591000px;}
.ws42{word-spacing:-3.534000px;}
.ws79{word-spacing:-3.528000px;}
.wsb3{word-spacing:-3.402000px;}
.ws17{word-spacing:-3.363000px;}
.ws87{word-spacing:-3.339000px;}
.ws72{word-spacing:-3.276000px;}
.ws2a{word-spacing:-3.087000px;}
.wsc4{word-spacing:-3.078000px;}
.ws14{word-spacing:-2.964000px;}
.ws96{word-spacing:-2.898000px;}
.ws93{word-spacing:-2.835000px;}
.ws11{word-spacing:-2.793000px;}
.ws60{word-spacing:-2.772000px;}
.ws59{word-spacing:-2.736000px;}
.ws31{word-spacing:-2.709000px;}
.ws18{word-spacing:-2.679000px;}
.wsab{word-spacing:-2.583000px;}
.ws95{word-spacing:-2.520000px;}
.ws82{word-spacing:-2.457000px;}
.ws2b{word-spacing:-2.394000px;}
.ws4d{word-spacing:-2.331000px;}
.wsc3{word-spacing:-2.280000px;}
.ws5b{word-spacing:-2.205000px;}
.ws19{word-spacing:-2.166000px;}
.ws35{word-spacing:-2.142000px;}
.ws94{word-spacing:-2.079000px;}
.ws33{word-spacing:-2.016000px;}
.wsac{word-spacing:-1.953000px;}
.wsb2{word-spacing:-1.890000px;}
.wsc2{word-spacing:-1.881000px;}
.wsbc{word-spacing:-1.710000px;}
.wsa2{word-spacing:-1.701000px;}
.ws78{word-spacing:-1.638000px;}
.ws6c{word-spacing:-1.596000px;}
.wsb0{word-spacing:-1.575000px;}
.ws69{word-spacing:-1.512000px;}
.ws74{word-spacing:-1.449000px;}
.wsbb{word-spacing:-1.425000px;}
.ws83{word-spacing:-1.386000px;}
.ws48{word-spacing:-1.311000px;}
.ws9b{word-spacing:-1.302000px;}
.ws57{word-spacing:-1.260000px;}
.ws8f{word-spacing:-1.197000px;}
.wsd6{word-spacing:-1.140000px;}
.ws6a{word-spacing:-1.134000px;}
.wsad{word-spacing:-1.071000px;}
.ws7a{word-spacing:-1.008000px;}
.ws45{word-spacing:-0.969000px;}
.wsa0{word-spacing:-0.882000px;}
.wsb1{word-spacing:-0.819000px;}
.ws6f{word-spacing:-0.756000px;}
.ws75{word-spacing:-0.693000px;}
.ws4f{word-spacing:-0.630000px;}
.wsbd{word-spacing:-0.627000px;}
.ws40{word-spacing:-0.570000px;}
.ws51{word-spacing:-0.567000px;}
.wsd5{word-spacing:-0.513000px;}
.wsb4{word-spacing:-0.504000px;}
.ws2f{word-spacing:-0.441000px;}
.ws26{word-spacing:-0.378000px;}
.ws86{word-spacing:-0.315000px;}
.ws3b{word-spacing:-0.285000px;}
.ws5a{word-spacing:-0.252000px;}
.ws46{word-spacing:-0.228000px;}
.ws85{word-spacing:-0.189000px;}
.wsd7{word-spacing:-0.171000px;}
.ws4c{word-spacing:-0.126000px;}
.ws4e{word-spacing:-0.063000px;}
.ws6{word-spacing:0.000000px;}
.ws49{word-spacing:0.057000px;}
.ws34{word-spacing:0.063000px;}
.wsd8{word-spacing:0.114000px;}
.ws30{word-spacing:0.126000px;}
.wsb9{word-spacing:0.171000px;}
.ws7c{word-spacing:0.176400px;}
.ws25{word-spacing:0.189000px;}
.ws41{word-spacing:0.228000px;}
.ws29{word-spacing:0.252000px;}
.ws89{word-spacing:0.285000px;}
.wsce{word-spacing:0.342000px;}
.wsa1{word-spacing:0.378000px;}
.wsd1{word-spacing:0.399000px;}
.ws23{word-spacing:0.441000px;}
.wse{word-spacing:0.504000px;}
.ws9e{word-spacing:0.567000px;}
.wsba{word-spacing:0.570000px;}
.ws44{word-spacing:0.627000px;}
.ws81{word-spacing:0.693000px;}
.ws27{word-spacing:0.756000px;}
.ws9d{word-spacing:0.819000px;}
.wsbf{word-spacing:0.855000px;}
.ws7f{word-spacing:0.882000px;}
.ws70{word-spacing:0.945000px;}
.ws97{word-spacing:1.008000px;}
.ws91{word-spacing:1.071000px;}
.wsd0{word-spacing:1.140000px;}
.wsc0{word-spacing:1.368000px;}
.wsaa{word-spacing:1.386000px;}
.ws16{word-spacing:1.482000px;}
.ws77{word-spacing:1.512000px;}
.ws5f{word-spacing:1.539000px;}
.ws7e{word-spacing:1.575000px;}
.wscf{word-spacing:1.596000px;}
.ws98{word-spacing:1.638000px;}
.ws10{word-spacing:1.653000px;}
.ws76{word-spacing:1.764000px;}
.ws13{word-spacing:2.052000px;}
.ws65{word-spacing:2.079000px;}
.wsd4{word-spacing:2.109000px;}
.wsd9{word-spacing:2.166000px;}
.ws80{word-spacing:2.205000px;}
.wsc1{word-spacing:2.223000px;}
.ws66{word-spacing:2.268000px;}
.ws8a{word-spacing:2.280000px;}
.ws8b{word-spacing:2.337000px;}
.wsda{word-spacing:2.394000px;}
.ws4a{word-spacing:2.508000px;}
.ws58{word-spacing:2.520000px;}
.ws68{word-spacing:2.646000px;}
.ws92{word-spacing:2.709000px;}
.ws67{word-spacing:2.772000px;}
.ws7d{word-spacing:2.835000px;}
.wsb7{word-spacing:2.850000px;}
.wsa3{word-spacing:2.898000px;}
.ws43{word-spacing:2.964000px;}
.wsae{word-spacing:3.024000px;}
.wsaf{word-spacing:3.087000px;}
.ws5d{word-spacing:3.135000px;}
.wsb6{word-spacing:3.150000px;}
.ws5e{word-spacing:3.192000px;}
.ws8c{word-spacing:3.249000px;}
.ws90{word-spacing:3.276000px;}
.ws12{word-spacing:3.306000px;}
.ws50{word-spacing:3.339000px;}
.ws88{word-spacing:3.363000px;}
.ws99{word-spacing:3.465000px;}
.wsb8{word-spacing:3.477000px;}
.ws73{word-spacing:3.528000px;}
.wsf{word-spacing:3.534000px;}
.ws47{word-spacing:3.591000px;}
.ws7b{word-spacing:3.780000px;}
.ws9f{word-spacing:3.843000px;}
.ws2d{word-spacing:3.906000px;}
.ws4b{word-spacing:3.969000px;}
.wsd3{word-spacing:5.358000px;}
.wsd2{word-spacing:6.441000px;}
.ws3c{word-spacing:275.823000px;}
.ws39{word-spacing:280.098000px;}
.ws3d{word-spacing:280.212000px;}
.ws36{word-spacing:281.694000px;}
.ws37{word-spacing:286.083000px;}
.ws38{word-spacing:294.063000px;}
.ws3f{word-spacing:296.115000px;}
.ws3a{word-spacing:303.069000px;}
.ws3e{word-spacing:316.236000px;}
.ws1a{word-spacing:2335.780800px;}
._18{margin-left:-18.889800px;}
._8{margin-left:-15.096000px;}
._12{margin-left:-13.697100px;}
._1b{margin-left:-11.340000px;}
._15{margin-left:-9.992100px;}
._7{margin-left:-7.652400px;}
._1{margin-left:-6.430500px;}
._1a{margin-left:-5.315700px;}
._5{margin-left:-4.300800px;}
._0{margin-left:-2.902200px;}
._2{margin-left:-1.524600px;}
._3{width:1.029000px;}
._13{width:2.109000px;}
._6{width:3.306000px;}
._19{width:4.335055px;}
._1c{width:7.374059px;}
._1d{width:9.225824px;}
._16{width:146.547000px;}
._9{width:161.139000px;}
._10{width:167.238000px;}
._17{width:169.060800px;}
._a{width:189.012000px;}
._14{width:202.931100px;}
._11{width:210.347100px;}
._e{width:222.870000px;}
._f{width:227.145000px;}
._c{width:233.300400px;}
._d{width:238.545000px;}
._b{width:263.551800px;}
._4{width:372.864600px;}
.fc3{color:rgb(16,15,13);}
.fc2{color:transparent;}
.fc1{color:rgb(35,80,169);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:31.500000px;}
.fs3{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fsd{font-size:39.900000px;}
.fs0{font-size:42.000000px;}
.fse{font-size:42.750000px;}
.fs13{font-size:43.993800px;}
.fsb{font-size:44.100000px;}
.fsc{font-size:47.250000px;}
.fsf{font-size:47.967000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs12{font-size:54.992400px;}
.fs6{font-size:57.000000px;}
.fs10{font-size:59.959200px;}
.fs11{font-size:59.998200px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:53.145300px;}
.y29{bottom:53.318100px;}
.y28{bottom:53.318250px;}
.y189{bottom:125.241150px;}
.y8f{bottom:125.650950px;}
.y3f{bottom:126.028350px;}
.y13c{bottom:126.043050px;}
.y108{bottom:126.044550px;}
.yc3{bottom:126.046050px;}
.yd1{bottom:126.047550px;}
.y27{bottom:126.310500px;}
.y4f{bottom:126.485550px;}
.yde{bottom:127.044450px;}
.y26{bottom:138.312000px;}
.y4e{bottom:138.487050px;}
.y188{bottom:140.122950px;}
.y8e{bottom:140.532900px;}
.ydd{bottom:141.921450px;}
.y3e{bottom:142.528350px;}
.ye7{bottom:143.980800px;}
.y13b{bottom:143.982300px;}
.y107{bottom:143.983800px;}
.yc2{bottom:143.985300px;}
.y4d{bottom:150.488550px;}
.y187{bottom:155.014650px;}
.y8d{bottom:155.414700px;}
.ydc{bottom:156.803400px;}
.y3d{bottom:159.028350px;}
.y25{bottom:159.417000px;}
.y13a{bottom:161.921550px;}
.yc1{bottom:161.923050px;}
.y4c{bottom:162.490050px;}
.y186{bottom:169.891650px;}
.y8c{bottom:170.291700px;}
.y24{bottom:171.418500px;}
.ydb{bottom:171.685200px;}
.y4b{bottom:174.491550px;}
.y3c{bottom:175.522350px;}
.y12b{bottom:179.857800px;}
.ye6{bottom:179.859300px;}
.yc0{bottom:179.860800px;}
.y23{bottom:183.420000px;}
.y185{bottom:184.768650px;}
.y8b{bottom:185.173650px;}
.y4a{bottom:186.493050px;}
.yda{bottom:186.567150px;}
.y3b{bottom:192.023850px;}
.y22{bottom:195.421500px;}
.ye8{bottom:197.797050px;}
.ybf{bottom:197.798550px;}
.y49{bottom:198.494550px;}
.y184{bottom:199.650450px;}
.yd9{bottom:201.449100px;}
.y128{bottom:206.728650px;}
.yd0{bottom:206.966100px;}
.y3a{bottom:208.525350px;}
.y48{bottom:210.496050px;}
.y183{bottom:214.532400px;}
.y155{bottom:215.731800px;}
.y130{bottom:215.733150px;}
.ybe{bottom:215.736300px;}
.y8a{bottom:220.009050px;}
.y21{bottom:220.180500px;}
.y127{bottom:221.605650px;}
.ycf{bottom:221.848050px;}
.y39{bottom:225.026850px;}
.y182{bottom:229.414350px;}
.yd8{bottom:229.937250px;}
.y20{bottom:232.780500px;}
.y154{bottom:233.671050px;}
.y106{bottom:233.672400px;}
.ybd{bottom:233.674050px;}
.y89{bottom:234.857550px;}
.y126{bottom:236.487600px;}
.yce{bottom:236.729850px;}
.y38{bottom:241.528350px;}
.y181{bottom:244.296150px;}
.yd7{bottom:244.819050px;}
.y1f{bottom:245.380500px;}
.y88{bottom:249.706050px;}
.y125{bottom:251.369550px;}
.y139{bottom:251.610300px;}
.ybc{bottom:251.611650px;}
.ye5{bottom:256.374450px;}
.y37{bottom:258.028350px;}
.y180{bottom:259.178100px;}
.yd6{bottom:259.701000px;}
.y87{bottom:264.554550px;}
.y1e{bottom:266.485500px;}
.ybb{bottom:269.549550px;}
.ye4{bottom:271.256250px;}
.y17f{bottom:274.060050px;}
.y36{bottom:274.523100px;}
.yd5{bottom:274.582800px;}
.y124{bottom:278.156850px;}
.y1d{bottom:279.085500px;}
.y86{bottom:279.403050px;}
.y12f{bottom:287.485800px;}
.yba{bottom:287.487300px;}
.y17e{bottom:288.941850px;}
.y123{bottom:293.038650px;}
.y85{bottom:294.251550px;}
.y17d{bottom:303.823800px;}
.ycd{bottom:305.417550px;}
.y105{bottom:305.423550px;}
.yb9{bottom:305.425050px;}
.yd4{bottom:306.472650px;}
.y122{bottom:307.920600px;}
.y57{bottom:308.357550px;}
.y35{bottom:308.651850px;}
.y84{bottom:309.101550px;}
.yf7{bottom:311.704350px;}
.y17c{bottom:318.710550px;}
.y56{bottom:320.359050px;}
.y121{bottom:322.802550px;}
.ycc{bottom:323.356800px;}
.y12a{bottom:323.361300px;}
.yb8{bottom:323.362800px;}
.y83{bottom:323.959050px;}
.yf6{bottom:324.461850px;}
.y34{bottom:325.153350px;}
.y55{bottom:332.360550px;}
.y17b{bottom:333.587550px;}
.yf5{bottom:337.219350px;}
.y120{bottom:337.689300px;}
.y104{bottom:338.150550px;}
.y82{bottom:338.807550px;}
.yd3{bottom:341.293050px;}
.ycb{bottom:341.296050px;}
.yb7{bottom:341.300550px;}
.y33{bottom:341.654850px;}
.y54{bottom:344.362050px;}
.y17a{bottom:348.469350px;}
.y11f{bottom:352.566300px;}
.y81{bottom:353.656050px;}
.y53{bottom:356.363550px;}
.y32{bottom:358.156350px;}
.yd2{bottom:359.232300px;}
.yca{bottom:359.235300px;}
.y103{bottom:359.236800px;}
.yb6{bottom:359.238300px;}
.y179{bottom:363.351300px;}
.y11e{bottom:367.448250px;}
.y52{bottom:368.365050px;}
.y80{bottom:368.504550px;}
.y31{bottom:374.657850px;}
.y138{bottom:377.167050px;}
.y153{bottom:377.170050px;}
.yc9{bottom:377.174550px;}
.yb5{bottom:377.176050px;}
.y178{bottom:378.233250px;}
.y51{bottom:380.366550px;}
.y11d{bottom:382.330050px;}
.y7f{bottom:383.353050px;}
.y30{bottom:391.159350px;}
.y50{bottom:392.368050px;}
.y177{bottom:393.120000px;}
.y137{bottom:395.106300px;}
.y152{bottom:395.109300px;}
.yb4{bottom:395.110800px;}
.y102{bottom:395.112300px;}
.yc8{bottom:395.113800px;}
.y11c{bottom:397.216800px;}
.y7e{bottom:398.201550px;}
.yf0{bottom:402.333358px;}
.y2f{bottom:407.659350px;}
.y176{bottom:407.997000px;}
.y11b{bottom:412.093800px;}
.y151{bottom:413.048550px;}
.yb3{bottom:413.050050px;}
.y7d{bottom:413.051550px;}
.y175{bottom:422.878950px;}
.y2e{bottom:424.159350px;}
.y11a{bottom:426.975750px;}
.yc7{bottom:430.984800px;}
.y12e{bottom:430.986300px;}
.y129{bottom:430.987800px;}
.y7c{bottom:430.989300px;}
.y174{bottom:437.760750px;}
.yc6{bottom:448.924050px;}
.y12d{bottom:448.925550px;}
.yb2{bottom:448.927050px;}
.y173{bottom:452.642700px;}
.yef{bottom:453.694023px;}
.y119{bottom:453.763200px;}
.y2d{bottom:458.290200px;}
.y136{bottom:466.861800px;}
.yc5{bottom:466.863300px;}
.y7b{bottom:466.864800px;}
.y172{bottom:467.524500px;}
.y2c{bottom:469.540200px;}
.y2b{bottom:480.792000px;}
.y171{bottom:482.406450px;}
.y118{bottom:484.795050px;}
.y12c{bottom:484.801050px;}
.y7a{bottom:484.802550px;}
.y170{bottom:497.288250px;}
.y1c{bottom:498.306450px;}
.y117{bottom:502.734300px;}
.y135{bottom:502.738800px;}
.y79{bottom:502.740300px;}
.y16f{bottom:512.179950px;}
.y2a{bottom:513.300000px;}
.y1b{bottom:514.554450px;}
.y101{bottom:520.670550px;}
.y78{bottom:520.678050px;}
.ye0{bottom:523.701900px;}
.y1a{bottom:526.554450px;}
.y16e{bottom:527.056950px;}
.yb1{bottom:530.000700px;}
.ydf{bottom:536.459400px;}
.y100{bottom:538.609800px;}
.y77{bottom:538.615800px;}
.y134{bottom:540.957900px;}
.y16d{bottom:541.933950px;}
.yb0{bottom:544.882650px;}
.y133{bottom:553.715400px;}
.ye2{bottom:553.766400px;}
.y19{bottom:555.562500px;}
.yff{bottom:556.549050px;}
.y116{bottom:556.552050px;}
.y76{bottom:556.553550px;}
.y16c{bottom:556.815900px;}
.yaf{bottom:559.764450px;}
.ye1{bottom:568.599000px;}
.y16b{bottom:571.697700px;}
.y18{bottom:571.810500px;}
.y150{bottom:574.479300px;}
.yfe{bottom:574.488300px;}
.y75{bottom:574.491300px;}
.yae{bottom:574.661100px;}
.y16a{bottom:586.579650px;}
.y1b5{bottom:589.283700px;}
.yad{bottom:589.538100px;}
.y14f{bottom:592.418550px;}
.y74{bottom:592.427550px;}
.y115{bottom:592.429050px;}
.y17{bottom:600.818250px;}
.y169{bottom:601.461600px;}
.y1b4{bottom:604.160700px;}
.yac{bottom:604.415100px;}
.y14e{bottom:610.357800px;}
.y73{bottom:610.366800px;}
.yf1{bottom:613.735919px;}
.y168{bottom:616.343400px;}
.y16{bottom:617.070300px;}
.y1b3{bottom:619.037700px;}
.yab{bottom:619.292100px;}
.yea{bottom:624.930417px;}
.y14d{bottom:628.297050px;}
.y72{bottom:628.304550px;}
.y167{bottom:631.225350px;}
.yaa{bottom:631.323900px;}
.y15{bottom:633.326250px;}
.ya9{bottom:634.173900px;}
.y146{bottom:641.795400px;}
.y166{bottom:646.107150px;}
.y14c{bottom:646.236300px;}
.y71{bottom:646.240800px;}
.yfd{bottom:646.242300px;}
.ya8{bottom:649.055850px;}
.y14{bottom:649.578300px;}
.y1aa{bottom:655.170750px;}
.y1b2{bottom:655.175700px;}
.y165{bottom:660.989100px;}
.ya7{bottom:663.947550px;}
.y114{bottom:664.175550px;}
.y70{bottom:664.180050px;}
.y13{bottom:665.826300px;}
.y1a9{bottom:670.052700px;}
.yec{bottom:674.845877px;}
.y164{bottom:675.871050px;}
.ya6{bottom:678.824550px;}
.y113{bottom:682.114800px;}
.y6f{bottom:682.117800px;}
.y1a8{bottom:684.934650px;}
.y163{bottom:690.762750px;}
.ya5{bottom:693.701550px;}
.y1a7{bottom:699.816450px;}
.y1b1{bottom:699.826200px;}
.y112{bottom:700.054050px;}
.y6e{bottom:700.055550px;}
.yeb{bottom:702.211050px;}
.y162{bottom:705.639750px;}
.ya4{bottom:708.583350px;}
.y1a6{bottom:714.698400px;}
.y1b0{bottom:714.703200px;}
.y6d{bottom:717.993300px;}
.y161{bottom:720.516750px;}
.ya3{bottom:723.475050px;}
.y1af{bottom:729.580200px;}
.y1a5{bottom:729.585150px;}
.ye9{bottom:732.808200px;}
.y160{bottom:735.398550px;}
.y6c{bottom:735.931050px;}
.ya2{bottom:738.352050px;}
.yed{bottom:741.076312px;}
.y1a4{bottom:744.462150px;}
.y15f{bottom:750.280500px;}
.ya1{bottom:753.229050px;}
.y111{bottom:753.864300px;}
.y6b{bottom:753.868800px;}
.y1a3{bottom:759.344100px;}
.y15e{bottom:765.162300px;}
.ya0{bottom:768.111000px;}
.y110{bottom:771.803550px;}
.y6a{bottom:771.806550px;}
.y1a2{bottom:774.225900px;}
.y15d{bottom:780.044250px;}
.yee{bottom:780.217384px;}
.y9f{bottom:782.992800px;}
.y1a1{bottom:789.107850px;}
.y10f{bottom:789.742800px;}
.yfc{bottom:789.744300px;}
.y13d{bottom:790.700850px;}
.y9e{bottom:797.874750px;}
.y44{bottom:802.969500px;}
.y1a0{bottom:803.989800px;}
.y69{bottom:807.677550px;}
.yfb{bottom:807.682050px;}
.yf2{bottom:809.896965px;}
.y9d{bottom:812.756550px;}
.y19f{bottom:818.871600px;}
.ye3{bottom:822.547050px;}
.yfa{bottom:825.618300px;}
.y10e{bottom:825.619800px;}
.y19e{bottom:833.753550px;}
.y9c{bottom:839.544000px;}
.y12{bottom:839.679600px;}
.y43{bottom:840.484350px;}
.yf9{bottom:843.557550px;}
.y132{bottom:844.448536px;}
.yf4{bottom:845.943094px;}
.y19d{bottom:848.635500px;}
.y11{bottom:854.688450px;}
.y42{bottom:856.982850px;}
.y68{bottom:861.495300px;}
.y19c{bottom:863.517300px;}
.y9b{bottom:866.331450px;}
.y41{bottom:873.481350px;}
.y10{bottom:878.187450px;}
.y19b{bottom:878.399100px;}
.y14b{bottom:879.430050px;}
.y67{bottom:879.433050px;}
.y145{bottom:881.586262px;}
.y40{bottom:889.981350px;}
.yf{bottom:890.787450px;}
.y19a{bottom:893.281050px;}
.y144{bottom:895.554293px;}
.y9a{bottom:897.367800px;}
.y14a{bottom:897.369300px;}
.y66{bottom:897.370800px;}
.y13e{bottom:900.118650px;}
.ye{bottom:903.387450px;}
.y199{bottom:908.163000px;}
.y143{bottom:909.511326px;}
.y15c{bottom:915.304050px;}
.y65{bottom:915.308550px;}
.yd{bottom:915.987450px;}
.y198{bottom:923.044800px;}
.y142{bottom:923.479358px;}
.yc{bottom:928.587450px;}
.y99{bottom:933.243300px;}
.y64{bottom:933.246300px;}
.y13f{bottom:933.861895px;}
.y141{bottom:937.436391px;}
.y1ae{bottom:937.926750px;}
.y197{bottom:937.941450px;}
.yb{bottom:941.187450px;}
.y15b{bottom:951.182550px;}
.y63{bottom:951.184050px;}
.y140{bottom:951.404422px;}
.y1ad{bottom:952.808550px;}
.y196{bottom:952.818450px;}
.ya{bottom:953.787450px;}
.y9{bottom:966.387450px;}
.y1ac{bottom:967.690500px;}
.y195{bottom:967.695450px;}
.y62{bottom:969.120300px;}
.y98{bottom:969.121800px;}
.y8{bottom:978.987450px;}
.y194{bottom:982.572450px;}
.y10d{bottom:987.055050px;}
.y61{bottom:987.059550px;}
.y47{bottom:989.007900px;}
.y7{bottom:991.587450px;}
.y193{bottom:997.454250px;}
.y15a{bottom:1004.989050px;}
.y10c{bottom:1004.994300px;}
.y60{bottom:1004.997300px;}
.y6{bottom:1008.438450px;}
.y97{bottom:1011.506400px;}
.y192{bottom:1012.336200px;}
.y1ab{bottom:1012.341000px;}
.y46{bottom:1019.007900px;}
.y159{bottom:1022.928300px;}
.y5f{bottom:1022.935050px;}
.y96{bottom:1026.388350px;}
.y191{bottom:1027.218000px;}
.y5{bottom:1033.794300px;}
.y158{bottom:1040.867550px;}
.y149{bottom:1040.868150px;}
.y5e{bottom:1040.872800px;}
.y95{bottom:1041.275100px;}
.y190{bottom:1042.099950px;}
.y45{bottom:1049.007900px;}
.y94{bottom:1056.152100px;}
.y18f{bottom:1056.981750px;}
.y148{bottom:1058.807400px;}
.y5d{bottom:1058.809050px;}
.y10b{bottom:1058.810550px;}
.y4{bottom:1059.150300px;}
.y93{bottom:1071.033900px;}
.y18e{bottom:1071.863700px;}
.y147{bottom:1076.746650px;}
.y5c{bottom:1076.748300px;}
.y3{bottom:1084.504500px;}
.y92{bottom:1085.925600px;}
.y18d{bottom:1086.745650px;}
.y157{bottom:1094.685300px;}
.y5b{bottom:1094.685900px;}
.y91{bottom:1100.802600px;}
.y18c{bottom:1101.627450px;}
.yf8{bottom:1112.622300px;}
.y10a{bottom:1112.623800px;}
.y156{bottom:1112.624550px;}
.yf3{bottom:1113.031350px;}
.y90{bottom:1115.679600px;}
.y18b{bottom:1116.509400px;}
.y2{bottom:1118.367000px;}
.y131{bottom:1123.965150px;}
.y5a{bottom:1130.561550px;}
.y109{bottom:1130.563800px;}
.y18a{bottom:1131.391350px;}
.y1{bottom:1135.219500px;}
.y59{bottom:1202.244000px;}
.yc4{bottom:1202.244150px;}
.hd{height:28.296000px;}
.h9{height:30.702000px;}
.h24{height:31.763524px;}
.h3{height:32.340000px;}
.ha{height:33.012000px;}
.h1e{height:35.063877px;}
.h1d{height:36.380250px;}
.h19{height:36.588300px;}
.h7{height:36.960000px;}
.h15{height:38.514000px;}
.h2{height:38.934000px;}
.h5{height:38.940000px;}
.h6{height:38.940600px;}
.h4{height:38.947200px;}
.h23{height:39.704513px;}
.hb{height:39.942000px;}
.h11{height:40.086000px;}
.h20{height:40.439700px;}
.h8{height:40.782000px;}
.h1f{height:43.830175px;}
.h22{height:43.858684px;}
.h10{height:43.860000px;}
.h1a{height:44.016000px;}
.h13{height:48.222000px;}
.h1c{height:48.507000px;}
.h14{height:49.518000px;}
.he{height:50.901000px;}
.hf{height:52.269000px;}
.h18{height:53.613000px;}
.hc{height:55.020000px;}
.h25{height:56.259000px;}
.h16{height:57.771000px;}
.h17{height:57.777000px;}
.h21{height:57.783000px;}
.h12{height:70.176000px;}
.h1b{height:573.480000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:744.120000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.761150px;}
.x1{left:75.153600px;}
.x28{left:81.147900px;}
.x29{left:82.431600px;}
.x1a{left:83.475900px;}
.x49{left:85.068300px;}
.x1b{left:87.217650px;}
.x33{left:89.879250px;}
.x4d{left:91.417350px;}
.x2{left:96.413400px;}
.x4e{left:101.873850px;}
.x3{left:109.169400px;}
.x11{left:110.629200px;}
.x5{left:116.929200px;}
.x4a{left:119.015250px;}
.x17{left:120.160200px;}
.x2b{left:123.739850px;}
.xd{left:129.685050px;}
.x2c{left:133.320300px;}
.x2a{left:140.077200px;}
.x12{left:141.854700px;}
.x13{left:152.708700px;}
.xf{left:161.726700px;}
.x14{left:163.684200px;}
.x18{left:164.939700px;}
.x4b{left:166.942200px;}
.x15{left:170.825700px;}
.x10{left:172.513200px;}
.xe{left:175.159200px;}
.x16{left:176.563200px;}
.x34{left:181.226700px;}
.x2e{left:183.926783px;}
.x19{left:185.864700px;}
.x4c{left:193.997100px;}
.x35{left:197.574000px;}
.x4f{left:202.277100px;}
.x50{left:251.449050px;}
.x7{left:275.312850px;}
.x3d{left:286.841400px;}
.x3b{left:296.944416px;}
.x2d{left:299.941456px;}
.x2f{left:319.852990px;}
.x6{left:379.976850px;}
.xc{left:387.998400px;}
.x1c{left:457.086600px;}
.x30{left:465.926882px;}
.x22{left:469.842600px;}
.x26{left:471.461250px;}
.x3e{left:474.094500px;}
.x38{left:484.376250px;}
.x39{left:486.972750px;}
.x3f{left:496.924050px;}
.x42{left:505.359150px;}
.x58{left:509.330400px;}
.x1e{left:512.857200px;}
.x51{left:518.914950px;}
.x36{left:523.315200px;}
.x1f{left:537.593100px;}
.x3a{left:539.041050px;}
.x1d{left:544.082850px;}
.x24{left:546.168600px;}
.x43{left:550.776150px;}
.x52{left:552.387300px;}
.x23{left:562.620000px;}
.x40{left:565.770450px;}
.x59{left:570.078300px;}
.x3c{left:578.936550px;}
.x44{left:586.533600px;}
.x25{left:587.874600px;}
.x5a{left:595.550850px;}
.x47{left:597.056700px;}
.x41{left:599.626500px;}
.x9{left:609.483750px;}
.x37{left:615.373950px;}
.x48{left:620.031750px;}
.x45{left:629.407650px;}
.x53{left:643.504650px;}
.xa{left:649.187250px;}
.x5e{left:655.753500px;}
.xb{left:657.385500px;}
.x5b{left:662.334600px;}
.x46{left:670.460100px;}
.x20{left:678.603600px;}
.x21{left:683.550450px;}
.x54{left:687.769050px;}
.x8{left:697.140300px;}
.x31{left:706.868438px;}
.x5c{left:725.579550px;}
.x32{left:729.130973px;}
.x55{left:749.707800px;}
.x5d{left:776.931300px;}
.x4{left:786.802350px;}
.x56{left:792.289950px;}
.x57{left:813.946800px;}
@media print{
.v2{vertical-align:-11.194667pt;}
.v3{vertical-align:-10.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.518933pt;}
.v4{vertical-align:11.200000pt;}
.ls18{letter-spacing:-1.008000pt;}
.ls2b{letter-spacing:-0.760000pt;}
.ls4f{letter-spacing:-0.672000pt;}
.ls30{letter-spacing:-0.658667pt;}
.ls3f{letter-spacing:-0.616000pt;}
.ls1e{letter-spacing:-0.608000pt;}
.ls4e{letter-spacing:-0.560000pt;}
.ls1d{letter-spacing:-0.557333pt;}
.ls44{letter-spacing:-0.504000pt;}
.ls8{letter-spacing:-0.456000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls50{letter-spacing:-0.405333pt;}
.ls17{letter-spacing:-0.392000pt;}
.ls29{letter-spacing:-0.354667pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.304000pt;}
.ls27{letter-spacing:-0.280000pt;}
.ls51{letter-spacing:-0.253333pt;}
.ls19{letter-spacing:-0.224000pt;}
.ls1f{letter-spacing:-0.202667pt;}
.ls1a{letter-spacing:-0.168000pt;}
.ls3c{letter-spacing:-0.156800pt;}
.ls20{letter-spacing:-0.152000pt;}
.ls1c{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls1b{letter-spacing:-0.056000pt;}
.ls28{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001600pt;}
.ls2{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.009067pt;}
.lsd{letter-spacing:0.028000pt;}
.ls52{letter-spacing:0.050667pt;}
.lsb{letter-spacing:0.056000pt;}
.ls41{letter-spacing:0.084000pt;}
.ls12{letter-spacing:0.101333pt;}
.ls63{letter-spacing:0.106400pt;}
.ls5b{letter-spacing:0.110200pt;}
.ls59{letter-spacing:0.110491pt;}
.ls14{letter-spacing:0.112000pt;}
.ls5a{letter-spacing:0.114000pt;}
.ls2f{letter-spacing:0.140000pt;}
.ls25{letter-spacing:0.152000pt;}
.lsc{letter-spacing:0.168000pt;}
.ls32{letter-spacing:0.173600pt;}
.ls26{letter-spacing:0.202667pt;}
.ls5c{letter-spacing:0.214335pt;}
.ls15{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.253333pt;}
.ls2e{letter-spacing:0.280000pt;}
.ls5d{letter-spacing:0.287927pt;}
.ls5e{letter-spacing:0.288800pt;}
.ls23{letter-spacing:0.304000pt;}
.ls46{letter-spacing:0.308000pt;}
.ls3a{letter-spacing:0.309067pt;}
.ls47{letter-spacing:0.323000pt;}
.ls55{letter-spacing:0.325333pt;}
.ls33{letter-spacing:0.336000pt;}
.ls48{letter-spacing:0.354667pt;}
.ls43{letter-spacing:0.364000pt;}
.ls4d{letter-spacing:0.368600pt;}
.ls4c{letter-spacing:0.368809pt;}
.ls13{letter-spacing:0.392000pt;}
.ls24{letter-spacing:0.405333pt;}
.ls3d{letter-spacing:0.420000pt;}
.ls5f{letter-spacing:0.430667pt;}
.lse{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.456000pt;}
.ls35{letter-spacing:0.504000pt;}
.ls54{letter-spacing:0.506667pt;}
.ls42{letter-spacing:0.532000pt;}
.ls10{letter-spacing:0.538543pt;}
.ls11{letter-spacing:0.557333pt;}
.ls16{letter-spacing:0.560000pt;}
.ls4b{letter-spacing:0.608000pt;}
.ls4a{letter-spacing:0.611800pt;}
.lsa{letter-spacing:0.616000pt;}
.ls37{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.760000pt;}
.ls9{letter-spacing:0.784000pt;}
.ls45{letter-spacing:0.840000pt;}
.ls49{letter-spacing:0.912000pt;}
.lsf{letter-spacing:0.962667pt;}
.ls39{letter-spacing:1.356800pt;}
.ls62{letter-spacing:1.520000pt;}
.ls57{letter-spacing:1.558000pt;}
.ls58{letter-spacing:1.565600pt;}
.ls56{letter-spacing:1.565856pt;}
.ls61{letter-spacing:1.824000pt;}
.ls60{letter-spacing:1.830693pt;}
.ls38{letter-spacing:2.052000pt;}
.ls5{letter-spacing:2.796800pt;}
.ls22{letter-spacing:2.843733pt;}
.ls34{letter-spacing:3.192000pt;}
.ls36{letter-spacing:4.054400pt;}
.ls40{letter-spacing:539.237156pt;}
.ls2d{letter-spacing:1176.213333pt;}
.ls31{letter-spacing:1255.518999pt;}
.ls3e{letter-spacing:1297.454409pt;}
.ls2c{letter-spacing:1371.306667pt;}
.ws61{word-spacing:-1371.306667pt;}
.ws6b{word-spacing:-1255.518999pt;}
.ws62{word-spacing:-1176.213333pt;}
.ws9a{word-spacing:-539.237156pt;}
.ws56{word-spacing:-50.666667pt;}
.ws1b{word-spacing:-14.784000pt;}
.ws22{word-spacing:-14.560000pt;}
.ws9c{word-spacing:-14.532000pt;}
.ws55{word-spacing:-14.224000pt;}
.wscb{word-spacing:-14.186667pt;}
.ws21{word-spacing:-14.056000pt;}
.ws1c{word-spacing:-14.000000pt;}
.ws53{word-spacing:-13.944000pt;}
.ws6e{word-spacing:-13.888000pt;}
.ws8d{word-spacing:-13.776000pt;}
.ws64{word-spacing:-13.720000pt;}
.ws6d{word-spacing:-13.664000pt;}
.ws54{word-spacing:-13.608000pt;}
.ws8e{word-spacing:-13.384000pt;}
.wscc{word-spacing:-13.122667pt;}
.wsa{word-spacing:-12.920000pt;}
.wsc{word-spacing:-12.666667pt;}
.wsa6{word-spacing:-12.616000pt;}
.wsb{word-spacing:-12.565333pt;}
.wsa7{word-spacing:-12.514667pt;}
.wsa5{word-spacing:-12.261333pt;}
.wsc9{word-spacing:-12.210667pt;}
.ws63{word-spacing:-12.008000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.861333pt;}
.wsc6{word-spacing:-11.065600pt;}
.wsc5{word-spacing:-11.058000pt;}
.ws52{word-spacing:-10.666667pt;}
.ws1e{word-spacing:-10.500000pt;}
.ws0{word-spacing:-10.378667pt;}
.wsa8{word-spacing:-10.111800pt;}
.ws9{word-spacing:-9.930667pt;}
.wsa9{word-spacing:-9.868600pt;}
.ws5{word-spacing:-9.856000pt;}
.wsa4{word-spacing:-9.823000pt;}
.ws1d{word-spacing:-9.800000pt;}
.wsca{word-spacing:-9.788800pt;}
.ws4{word-spacing:-9.781333pt;}
.wsc7{word-spacing:-9.614000pt;}
.wsc8{word-spacing:-9.610200pt;}
.wscd{word-spacing:-9.606400pt;}
.ws20{word-spacing:-9.500000pt;}
.ws8{word-spacing:-8.896000pt;}
.ws1f{word-spacing:-8.866667pt;}
.ws2{word-spacing:-8.302933pt;}
.ws1{word-spacing:-7.784000pt;}
.ws7{word-spacing:-5.712000pt;}
.wsbe{word-spacing:-5.573333pt;}
.wsb5{word-spacing:-3.976000pt;}
.ws84{word-spacing:-3.584000pt;}
.ws24{word-spacing:-3.528000pt;}
.ws28{word-spacing:-3.472000pt;}
.ws71{word-spacing:-3.416000pt;}
.ws2c{word-spacing:-3.360000pt;}
.ws2e{word-spacing:-3.304000pt;}
.ws32{word-spacing:-3.248000pt;}
.ws5c{word-spacing:-3.242667pt;}
.ws15{word-spacing:-3.192000pt;}
.ws42{word-spacing:-3.141333pt;}
.ws79{word-spacing:-3.136000pt;}
.wsb3{word-spacing:-3.024000pt;}
.ws17{word-spacing:-2.989333pt;}
.ws87{word-spacing:-2.968000pt;}
.ws72{word-spacing:-2.912000pt;}
.ws2a{word-spacing:-2.744000pt;}
.wsc4{word-spacing:-2.736000pt;}
.ws14{word-spacing:-2.634667pt;}
.ws96{word-spacing:-2.576000pt;}
.ws93{word-spacing:-2.520000pt;}
.ws11{word-spacing:-2.482667pt;}
.ws60{word-spacing:-2.464000pt;}
.ws59{word-spacing:-2.432000pt;}
.ws31{word-spacing:-2.408000pt;}
.ws18{word-spacing:-2.381333pt;}
.wsab{word-spacing:-2.296000pt;}
.ws95{word-spacing:-2.240000pt;}
.ws82{word-spacing:-2.184000pt;}
.ws2b{word-spacing:-2.128000pt;}
.ws4d{word-spacing:-2.072000pt;}
.wsc3{word-spacing:-2.026667pt;}
.ws5b{word-spacing:-1.960000pt;}
.ws19{word-spacing:-1.925333pt;}
.ws35{word-spacing:-1.904000pt;}
.ws94{word-spacing:-1.848000pt;}
.ws33{word-spacing:-1.792000pt;}
.wsac{word-spacing:-1.736000pt;}
.wsb2{word-spacing:-1.680000pt;}
.wsc2{word-spacing:-1.672000pt;}
.wsbc{word-spacing:-1.520000pt;}
.wsa2{word-spacing:-1.512000pt;}
.ws78{word-spacing:-1.456000pt;}
.ws6c{word-spacing:-1.418667pt;}
.wsb0{word-spacing:-1.400000pt;}
.ws69{word-spacing:-1.344000pt;}
.ws74{word-spacing:-1.288000pt;}
.wsbb{word-spacing:-1.266667pt;}
.ws83{word-spacing:-1.232000pt;}
.ws48{word-spacing:-1.165333pt;}
.ws9b{word-spacing:-1.157333pt;}
.ws57{word-spacing:-1.120000pt;}
.ws8f{word-spacing:-1.064000pt;}
.wsd6{word-spacing:-1.013333pt;}
.ws6a{word-spacing:-1.008000pt;}
.wsad{word-spacing:-0.952000pt;}
.ws7a{word-spacing:-0.896000pt;}
.ws45{word-spacing:-0.861333pt;}
.wsa0{word-spacing:-0.784000pt;}
.wsb1{word-spacing:-0.728000pt;}
.ws6f{word-spacing:-0.672000pt;}
.ws75{word-spacing:-0.616000pt;}
.ws4f{word-spacing:-0.560000pt;}
.wsbd{word-spacing:-0.557333pt;}
.ws40{word-spacing:-0.506667pt;}
.ws51{word-spacing:-0.504000pt;}
.wsd5{word-spacing:-0.456000pt;}
.wsb4{word-spacing:-0.448000pt;}
.ws2f{word-spacing:-0.392000pt;}
.ws26{word-spacing:-0.336000pt;}
.ws86{word-spacing:-0.280000pt;}
.ws3b{word-spacing:-0.253333pt;}
.ws5a{word-spacing:-0.224000pt;}
.ws46{word-spacing:-0.202667pt;}
.ws85{word-spacing:-0.168000pt;}
.wsd7{word-spacing:-0.152000pt;}
.ws4c{word-spacing:-0.112000pt;}
.ws4e{word-spacing:-0.056000pt;}
.ws6{word-spacing:0.000000pt;}
.ws49{word-spacing:0.050667pt;}
.ws34{word-spacing:0.056000pt;}
.wsd8{word-spacing:0.101333pt;}
.ws30{word-spacing:0.112000pt;}
.wsb9{word-spacing:0.152000pt;}
.ws7c{word-spacing:0.156800pt;}
.ws25{word-spacing:0.168000pt;}
.ws41{word-spacing:0.202667pt;}
.ws29{word-spacing:0.224000pt;}
.ws89{word-spacing:0.253333pt;}
.wsce{word-spacing:0.304000pt;}
.wsa1{word-spacing:0.336000pt;}
.wsd1{word-spacing:0.354667pt;}
.ws23{word-spacing:0.392000pt;}
.wse{word-spacing:0.448000pt;}
.ws9e{word-spacing:0.504000pt;}
.wsba{word-spacing:0.506667pt;}
.ws44{word-spacing:0.557333pt;}
.ws81{word-spacing:0.616000pt;}
.ws27{word-spacing:0.672000pt;}
.ws9d{word-spacing:0.728000pt;}
.wsbf{word-spacing:0.760000pt;}
.ws7f{word-spacing:0.784000pt;}
.ws70{word-spacing:0.840000pt;}
.ws97{word-spacing:0.896000pt;}
.ws91{word-spacing:0.952000pt;}
.wsd0{word-spacing:1.013333pt;}
.wsc0{word-spacing:1.216000pt;}
.wsaa{word-spacing:1.232000pt;}
.ws16{word-spacing:1.317333pt;}
.ws77{word-spacing:1.344000pt;}
.ws5f{word-spacing:1.368000pt;}
.ws7e{word-spacing:1.400000pt;}
.wscf{word-spacing:1.418667pt;}
.ws98{word-spacing:1.456000pt;}
.ws10{word-spacing:1.469333pt;}
.ws76{word-spacing:1.568000pt;}
.ws13{word-spacing:1.824000pt;}
.ws65{word-spacing:1.848000pt;}
.wsd4{word-spacing:1.874667pt;}
.wsd9{word-spacing:1.925333pt;}
.ws80{word-spacing:1.960000pt;}
.wsc1{word-spacing:1.976000pt;}
.ws66{word-spacing:2.016000pt;}
.ws8a{word-spacing:2.026667pt;}
.ws8b{word-spacing:2.077333pt;}
.wsda{word-spacing:2.128000pt;}
.ws4a{word-spacing:2.229333pt;}
.ws58{word-spacing:2.240000pt;}
.ws68{word-spacing:2.352000pt;}
.ws92{word-spacing:2.408000pt;}
.ws67{word-spacing:2.464000pt;}
.ws7d{word-spacing:2.520000pt;}
.wsb7{word-spacing:2.533333pt;}
.wsa3{word-spacing:2.576000pt;}
.ws43{word-spacing:2.634667pt;}
.wsae{word-spacing:2.688000pt;}
.wsaf{word-spacing:2.744000pt;}
.ws5d{word-spacing:2.786667pt;}
.wsb6{word-spacing:2.800000pt;}
.ws5e{word-spacing:2.837333pt;}
.ws8c{word-spacing:2.888000pt;}
.ws90{word-spacing:2.912000pt;}
.ws12{word-spacing:2.938667pt;}
.ws50{word-spacing:2.968000pt;}
.ws88{word-spacing:2.989333pt;}
.ws99{word-spacing:3.080000pt;}
.wsb8{word-spacing:3.090667pt;}
.ws73{word-spacing:3.136000pt;}
.wsf{word-spacing:3.141333pt;}
.ws47{word-spacing:3.192000pt;}
.ws7b{word-spacing:3.360000pt;}
.ws9f{word-spacing:3.416000pt;}
.ws2d{word-spacing:3.472000pt;}
.ws4b{word-spacing:3.528000pt;}
.wsd3{word-spacing:4.762667pt;}
.wsd2{word-spacing:5.725333pt;}
.ws3c{word-spacing:245.176000pt;}
.ws39{word-spacing:248.976000pt;}
.ws3d{word-spacing:249.077333pt;}
.ws36{word-spacing:250.394667pt;}
.ws37{word-spacing:254.296000pt;}
.ws38{word-spacing:261.389333pt;}
.ws3f{word-spacing:263.213333pt;}
.ws3a{word-spacing:269.394667pt;}
.ws3e{word-spacing:281.098667pt;}
.ws1a{word-spacing:2076.249600pt;}
._18{margin-left:-16.790933pt;}
._8{margin-left:-13.418667pt;}
._12{margin-left:-12.175200pt;}
._1b{margin-left:-10.080000pt;}
._15{margin-left:-8.881867pt;}
._7{margin-left:-6.802133pt;}
._1{margin-left:-5.716000pt;}
._1a{margin-left:-4.725067pt;}
._5{margin-left:-3.822933pt;}
._0{margin-left:-2.579733pt;}
._2{margin-left:-1.355200pt;}
._3{width:0.914667pt;}
._13{width:1.874667pt;}
._6{width:2.938667pt;}
._19{width:3.853382pt;}
._1c{width:6.554719pt;}
._1d{width:8.200732pt;}
._16{width:130.264000pt;}
._9{width:143.234667pt;}
._10{width:148.656000pt;}
._17{width:150.276267pt;}
._a{width:168.010667pt;}
._14{width:180.383200pt;}
._11{width:186.975200pt;}
._e{width:198.106667pt;}
._f{width:201.906667pt;}
._c{width:207.378133pt;}
._d{width:212.040000pt;}
._b{width:234.268267pt;}
._4{width:331.435200pt;}
.fs1{font-size:28.000000pt;}
.fs3{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fsd{font-size:35.466667pt;}
.fs0{font-size:37.333333pt;}
.fse{font-size:38.000000pt;}
.fs13{font-size:39.105600pt;}
.fsb{font-size:39.200000pt;}
.fsc{font-size:42.000000pt;}
.fsf{font-size:42.637333pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs12{font-size:48.882133pt;}
.fs6{font-size:50.666667pt;}
.fs10{font-size:53.297067pt;}
.fs11{font-size:53.331733pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:47.240267pt;}
.y29{bottom:47.393867pt;}
.y28{bottom:47.394000pt;}
.y189{bottom:111.325467pt;}
.y8f{bottom:111.689733pt;}
.y3f{bottom:112.025200pt;}
.y13c{bottom:112.038267pt;}
.y108{bottom:112.039600pt;}
.yc3{bottom:112.040933pt;}
.yd1{bottom:112.042267pt;}
.y27{bottom:112.276000pt;}
.y4f{bottom:112.431600pt;}
.yde{bottom:112.928400pt;}
.y26{bottom:122.944000pt;}
.y4e{bottom:123.099600pt;}
.y188{bottom:124.553733pt;}
.y8e{bottom:124.918133pt;}
.ydd{bottom:126.152400pt;}
.y3e{bottom:126.691867pt;}
.ye7{bottom:127.982933pt;}
.y13b{bottom:127.984267pt;}
.y107{bottom:127.985600pt;}
.yc2{bottom:127.986933pt;}
.y4d{bottom:133.767600pt;}
.y187{bottom:137.790800pt;}
.y8d{bottom:138.146400pt;}
.ydc{bottom:139.380800pt;}
.y3d{bottom:141.358533pt;}
.y25{bottom:141.704000pt;}
.y13a{bottom:143.930267pt;}
.yc1{bottom:143.931600pt;}
.y4c{bottom:144.435600pt;}
.y186{bottom:151.014800pt;}
.y8c{bottom:151.370400pt;}
.y24{bottom:152.372000pt;}
.ydb{bottom:152.609067pt;}
.y4b{bottom:155.103600pt;}
.y3c{bottom:156.019867pt;}
.y12b{bottom:159.873600pt;}
.ye6{bottom:159.874933pt;}
.yc0{bottom:159.876267pt;}
.y23{bottom:163.040000pt;}
.y185{bottom:164.238800pt;}
.y8b{bottom:164.598800pt;}
.y4a{bottom:165.771600pt;}
.yda{bottom:165.837467pt;}
.y3b{bottom:170.687867pt;}
.y22{bottom:173.708000pt;}
.ye8{bottom:175.819600pt;}
.ybf{bottom:175.820933pt;}
.y49{bottom:176.439600pt;}
.y184{bottom:177.467067pt;}
.yd9{bottom:179.065867pt;}
.y128{bottom:183.758800pt;}
.yd0{bottom:183.969867pt;}
.y3a{bottom:185.355867pt;}
.y48{bottom:187.107600pt;}
.y183{bottom:190.695467pt;}
.y155{bottom:191.761600pt;}
.y130{bottom:191.762800pt;}
.ybe{bottom:191.765600pt;}
.y8a{bottom:195.563600pt;}
.y21{bottom:195.716000pt;}
.y127{bottom:196.982800pt;}
.ycf{bottom:197.198267pt;}
.y39{bottom:200.023867pt;}
.y182{bottom:203.923867pt;}
.yd8{bottom:204.388667pt;}
.y20{bottom:206.916000pt;}
.y154{bottom:207.707600pt;}
.y106{bottom:207.708800pt;}
.ybd{bottom:207.710267pt;}
.y89{bottom:208.762267pt;}
.y126{bottom:210.211200pt;}
.yce{bottom:210.426533pt;}
.y38{bottom:214.691867pt;}
.y181{bottom:217.152133pt;}
.yd7{bottom:217.616933pt;}
.y1f{bottom:218.116000pt;}
.y88{bottom:221.960933pt;}
.y125{bottom:223.439600pt;}
.y139{bottom:223.653600pt;}
.ybc{bottom:223.654800pt;}
.ye5{bottom:227.888400pt;}
.y37{bottom:229.358533pt;}
.y180{bottom:230.380533pt;}
.yd6{bottom:230.845333pt;}
.y87{bottom:235.159600pt;}
.y1e{bottom:236.876000pt;}
.ybb{bottom:239.599600pt;}
.ye4{bottom:241.116667pt;}
.y17f{bottom:243.608933pt;}
.y36{bottom:244.020533pt;}
.yd5{bottom:244.073600pt;}
.y124{bottom:247.250533pt;}
.y1d{bottom:248.076000pt;}
.y86{bottom:248.358267pt;}
.y12f{bottom:255.542933pt;}
.yba{bottom:255.544267pt;}
.y17e{bottom:256.837200pt;}
.y123{bottom:260.478800pt;}
.y85{bottom:261.556933pt;}
.y17d{bottom:270.065600pt;}
.ycd{bottom:271.482267pt;}
.y105{bottom:271.487600pt;}
.yb9{bottom:271.488933pt;}
.yd4{bottom:272.420133pt;}
.y122{bottom:273.707200pt;}
.y57{bottom:274.095600pt;}
.y35{bottom:274.357200pt;}
.y84{bottom:274.756933pt;}
.yf7{bottom:277.070533pt;}
.y17c{bottom:283.298267pt;}
.y56{bottom:284.763600pt;}
.y121{bottom:286.935600pt;}
.ycc{bottom:287.428267pt;}
.y12a{bottom:287.432267pt;}
.yb8{bottom:287.433600pt;}
.y83{bottom:287.963600pt;}
.yf6{bottom:288.410533pt;}
.y34{bottom:289.025200pt;}
.y55{bottom:295.431600pt;}
.y17b{bottom:296.522267pt;}
.yf5{bottom:299.750533pt;}
.y120{bottom:300.168267pt;}
.y104{bottom:300.578267pt;}
.y82{bottom:301.162267pt;}
.yd3{bottom:303.371600pt;}
.ycb{bottom:303.374267pt;}
.yb7{bottom:303.378267pt;}
.y33{bottom:303.693200pt;}
.y54{bottom:306.099600pt;}
.y17a{bottom:309.750533pt;}
.y11f{bottom:313.392267pt;}
.y81{bottom:314.360933pt;}
.y53{bottom:316.767600pt;}
.y32{bottom:318.361200pt;}
.yd2{bottom:319.317600pt;}
.yca{bottom:319.320267pt;}
.y103{bottom:319.321600pt;}
.yb6{bottom:319.322933pt;}
.y179{bottom:322.978933pt;}
.y11e{bottom:326.620667pt;}
.y52{bottom:327.435600pt;}
.y80{bottom:327.559600pt;}
.y31{bottom:333.029200pt;}
.y138{bottom:335.259600pt;}
.y153{bottom:335.262267pt;}
.yc9{bottom:335.266267pt;}
.yb5{bottom:335.267600pt;}
.y178{bottom:336.207333pt;}
.y51{bottom:338.103600pt;}
.y11d{bottom:339.848933pt;}
.y7f{bottom:340.758267pt;}
.y30{bottom:347.697200pt;}
.y50{bottom:348.771600pt;}
.y177{bottom:349.440000pt;}
.y137{bottom:351.205600pt;}
.y152{bottom:351.208267pt;}
.yb4{bottom:351.209600pt;}
.y102{bottom:351.210933pt;}
.yc8{bottom:351.212267pt;}
.y11c{bottom:353.081600pt;}
.y7e{bottom:353.956933pt;}
.yf0{bottom:357.629651pt;}
.y2f{bottom:362.363867pt;}
.y176{bottom:362.664000pt;}
.y11b{bottom:366.305600pt;}
.y151{bottom:367.154267pt;}
.yb3{bottom:367.155600pt;}
.y7d{bottom:367.156933pt;}
.y175{bottom:375.892400pt;}
.y2e{bottom:377.030533pt;}
.y11a{bottom:379.534000pt;}
.yc7{bottom:383.097600pt;}
.y12e{bottom:383.098933pt;}
.y129{bottom:383.100267pt;}
.y7c{bottom:383.101600pt;}
.y174{bottom:389.120667pt;}
.yc6{bottom:399.043600pt;}
.y12d{bottom:399.044933pt;}
.yb2{bottom:399.046267pt;}
.y173{bottom:402.349067pt;}
.yef{bottom:403.283576pt;}
.y119{bottom:403.345067pt;}
.y2d{bottom:407.369067pt;}
.y136{bottom:414.988267pt;}
.yc5{bottom:414.989600pt;}
.y7b{bottom:414.990933pt;}
.y172{bottom:415.577333pt;}
.y2c{bottom:417.369067pt;}
.y2b{bottom:427.370667pt;}
.y171{bottom:428.805733pt;}
.y118{bottom:430.928933pt;}
.y12c{bottom:430.934267pt;}
.y7a{bottom:430.935600pt;}
.y170{bottom:442.034000pt;}
.y1c{bottom:442.939067pt;}
.y117{bottom:446.874933pt;}
.y135{bottom:446.878933pt;}
.y79{bottom:446.880267pt;}
.y16f{bottom:455.271067pt;}
.y2a{bottom:456.266667pt;}
.y1b{bottom:457.381733pt;}
.y101{bottom:462.818267pt;}
.y78{bottom:462.824933pt;}
.ye0{bottom:465.512800pt;}
.y1a{bottom:468.048400pt;}
.y16e{bottom:468.495067pt;}
.yb1{bottom:471.111733pt;}
.ydf{bottom:476.852800pt;}
.y100{bottom:478.764267pt;}
.y77{bottom:478.769600pt;}
.y134{bottom:480.851467pt;}
.y16d{bottom:481.719067pt;}
.yb0{bottom:484.340133pt;}
.y133{bottom:492.191467pt;}
.ye2{bottom:492.236800pt;}
.y19{bottom:493.833333pt;}
.yff{bottom:494.710267pt;}
.y116{bottom:494.712933pt;}
.y76{bottom:494.714267pt;}
.y16c{bottom:494.947467pt;}
.yaf{bottom:497.568400pt;}
.ye1{bottom:505.421333pt;}
.y16b{bottom:508.175733pt;}
.y18{bottom:508.276000pt;}
.y150{bottom:510.648267pt;}
.yfe{bottom:510.656267pt;}
.y75{bottom:510.658933pt;}
.yae{bottom:510.809867pt;}
.y16a{bottom:521.404133pt;}
.y1b5{bottom:523.807733pt;}
.yad{bottom:524.033867pt;}
.y14f{bottom:526.594267pt;}
.y74{bottom:526.602267pt;}
.y115{bottom:526.603600pt;}
.y17{bottom:534.060667pt;}
.y169{bottom:534.632533pt;}
.y1b4{bottom:537.031733pt;}
.yac{bottom:537.257867pt;}
.y14e{bottom:542.540267pt;}
.y73{bottom:542.548267pt;}
.yf1{bottom:545.543039pt;}
.y168{bottom:547.860800pt;}
.y16{bottom:548.506933pt;}
.y1b3{bottom:550.255733pt;}
.yab{bottom:550.481867pt;}
.yea{bottom:555.493704pt;}
.y14d{bottom:558.486267pt;}
.y72{bottom:558.492933pt;}
.y167{bottom:561.089200pt;}
.yaa{bottom:561.176800pt;}
.y15{bottom:562.956667pt;}
.ya9{bottom:563.710133pt;}
.y146{bottom:570.484800pt;}
.y166{bottom:574.317467pt;}
.y14c{bottom:574.432267pt;}
.y71{bottom:574.436267pt;}
.yfd{bottom:574.437600pt;}
.ya8{bottom:576.938533pt;}
.y14{bottom:577.402933pt;}
.y1aa{bottom:582.374000pt;}
.y1b2{bottom:582.378400pt;}
.y165{bottom:587.545867pt;}
.ya7{bottom:590.175600pt;}
.y114{bottom:590.378267pt;}
.y70{bottom:590.382267pt;}
.y13{bottom:591.845600pt;}
.y1a9{bottom:595.602400pt;}
.yec{bottom:599.863001pt;}
.y164{bottom:600.774267pt;}
.ya6{bottom:603.399600pt;}
.y113{bottom:606.324267pt;}
.y6f{bottom:606.326933pt;}
.y1a8{bottom:608.830800pt;}
.y163{bottom:614.011333pt;}
.ya5{bottom:616.623600pt;}
.y1a7{bottom:622.059067pt;}
.y1b1{bottom:622.067733pt;}
.y112{bottom:622.270267pt;}
.y6e{bottom:622.271600pt;}
.yeb{bottom:624.187600pt;}
.y162{bottom:627.235333pt;}
.ya4{bottom:629.851867pt;}
.y1a6{bottom:635.287467pt;}
.y1b0{bottom:635.291733pt;}
.y6d{bottom:638.216267pt;}
.y161{bottom:640.459333pt;}
.ya3{bottom:643.088933pt;}
.y1af{bottom:648.515733pt;}
.y1a5{bottom:648.520133pt;}
.ye9{bottom:651.385067pt;}
.y160{bottom:653.687600pt;}
.y6c{bottom:654.160933pt;}
.ya2{bottom:656.312933pt;}
.yed{bottom:658.734499pt;}
.y1a4{bottom:661.744133pt;}
.y15f{bottom:666.916000pt;}
.ya1{bottom:669.536933pt;}
.y111{bottom:670.101600pt;}
.y6b{bottom:670.105600pt;}
.y1a3{bottom:674.972533pt;}
.y15e{bottom:680.144267pt;}
.ya0{bottom:682.765333pt;}
.y110{bottom:686.047600pt;}
.y6a{bottom:686.050267pt;}
.y1a2{bottom:688.200800pt;}
.y15d{bottom:693.372667pt;}
.yee{bottom:693.526563pt;}
.y9f{bottom:695.993600pt;}
.y1a1{bottom:701.429200pt;}
.y10f{bottom:701.993600pt;}
.yfc{bottom:701.994933pt;}
.y13d{bottom:702.845200pt;}
.y9e{bottom:709.222000pt;}
.y44{bottom:713.750667pt;}
.y1a0{bottom:714.657600pt;}
.y69{bottom:717.935600pt;}
.yfb{bottom:717.939600pt;}
.yf2{bottom:719.908413pt;}
.y9d{bottom:722.450267pt;}
.y19f{bottom:727.885867pt;}
.ye3{bottom:731.152933pt;}
.yfa{bottom:733.882933pt;}
.y10e{bottom:733.884267pt;}
.y19e{bottom:741.114267pt;}
.y9c{bottom:746.261333pt;}
.y12{bottom:746.381867pt;}
.y43{bottom:747.097200pt;}
.yf9{bottom:749.828933pt;}
.y132{bottom:750.620921pt;}
.yf4{bottom:751.949417pt;}
.y19d{bottom:754.342667pt;}
.y11{bottom:759.723067pt;}
.y42{bottom:761.762533pt;}
.y68{bottom:765.773600pt;}
.y19c{bottom:767.570933pt;}
.y9b{bottom:770.072400pt;}
.y41{bottom:776.427867pt;}
.y10{bottom:780.611067pt;}
.y19b{bottom:780.799200pt;}
.y14b{bottom:781.715600pt;}
.y67{bottom:781.718267pt;}
.y145{bottom:783.632233pt;}
.y40{bottom:791.094533pt;}
.yf{bottom:791.811067pt;}
.y19a{bottom:794.027600pt;}
.y144{bottom:796.048261pt;}
.y9a{bottom:797.660267pt;}
.y14a{bottom:797.661600pt;}
.y66{bottom:797.662933pt;}
.y13e{bottom:800.105467pt;}
.ye{bottom:803.011067pt;}
.y199{bottom:807.256000pt;}
.y143{bottom:808.454512pt;}
.y15c{bottom:813.603600pt;}
.y65{bottom:813.607600pt;}
.yd{bottom:814.211067pt;}
.y198{bottom:820.484267pt;}
.y142{bottom:820.870540pt;}
.yc{bottom:825.411067pt;}
.y99{bottom:829.549600pt;}
.y64{bottom:829.552267pt;}
.y13f{bottom:830.099462pt;}
.y141{bottom:833.276792pt;}
.y1ae{bottom:833.712667pt;}
.y197{bottom:833.725733pt;}
.yb{bottom:836.611067pt;}
.y15b{bottom:845.495600pt;}
.y63{bottom:845.496933pt;}
.y140{bottom:845.692820pt;}
.y1ad{bottom:846.940933pt;}
.y196{bottom:846.949733pt;}
.ya{bottom:847.811067pt;}
.y9{bottom:859.011067pt;}
.y1ac{bottom:860.169333pt;}
.y195{bottom:860.173733pt;}
.y62{bottom:861.440267pt;}
.y98{bottom:861.441600pt;}
.y8{bottom:870.211067pt;}
.y194{bottom:873.397733pt;}
.y10d{bottom:877.382267pt;}
.y61{bottom:877.386267pt;}
.y47{bottom:879.118133pt;}
.y7{bottom:881.411067pt;}
.y193{bottom:886.626000pt;}
.y15a{bottom:893.323600pt;}
.y10c{bottom:893.328267pt;}
.y60{bottom:893.330933pt;}
.y6{bottom:896.389733pt;}
.y97{bottom:899.116800pt;}
.y192{bottom:899.854400pt;}
.y1ab{bottom:899.858667pt;}
.y46{bottom:905.784800pt;}
.y159{bottom:909.269600pt;}
.y5f{bottom:909.275600pt;}
.y96{bottom:912.345200pt;}
.y191{bottom:913.082667pt;}
.y5{bottom:918.928267pt;}
.y158{bottom:925.215600pt;}
.y149{bottom:925.216133pt;}
.y5e{bottom:925.220267pt;}
.y95{bottom:925.577867pt;}
.y190{bottom:926.311067pt;}
.y45{bottom:932.451467pt;}
.y94{bottom:938.801867pt;}
.y18f{bottom:939.539333pt;}
.y148{bottom:941.162133pt;}
.y5d{bottom:941.163600pt;}
.y10b{bottom:941.164933pt;}
.y4{bottom:941.466933pt;}
.y93{bottom:952.030133pt;}
.y18e{bottom:952.767733pt;}
.y147{bottom:957.108133pt;}
.y5c{bottom:957.109600pt;}
.y3{bottom:964.004000pt;}
.y92{bottom:965.267200pt;}
.y18d{bottom:965.996133pt;}
.y157{bottom:973.053600pt;}
.y5b{bottom:973.054133pt;}
.y91{bottom:978.491200pt;}
.y18c{bottom:979.224400pt;}
.yf8{bottom:988.997600pt;}
.y10a{bottom:988.998933pt;}
.y156{bottom:988.999600pt;}
.yf3{bottom:989.361200pt;}
.y90{bottom:991.715200pt;}
.y18b{bottom:992.452800pt;}
.y2{bottom:994.104000pt;}
.y131{bottom:999.080133pt;}
.y5a{bottom:1004.943600pt;}
.y109{bottom:1004.945600pt;}
.y18a{bottom:1005.681200pt;}
.y1{bottom:1009.084000pt;}
.y59{bottom:1068.661333pt;}
.yc4{bottom:1068.661467pt;}
.hd{height:25.152000pt;}
.h9{height:27.290667pt;}
.h24{height:28.234243pt;}
.h3{height:28.746667pt;}
.ha{height:29.344000pt;}
.h1e{height:31.167891pt;}
.h1d{height:32.338000pt;}
.h19{height:32.522933pt;}
.h7{height:32.853333pt;}
.h15{height:34.234667pt;}
.h2{height:34.608000pt;}
.h5{height:34.613333pt;}
.h6{height:34.613867pt;}
.h4{height:34.619733pt;}
.h23{height:35.292900pt;}
.hb{height:35.504000pt;}
.h11{height:35.632000pt;}
.h20{height:35.946400pt;}
.h8{height:36.250667pt;}
.h1f{height:38.960156pt;}
.h22{height:38.985497pt;}
.h10{height:38.986667pt;}
.h1a{height:39.125333pt;}
.h13{height:42.864000pt;}
.h1c{height:43.117333pt;}
.h14{height:44.016000pt;}
.he{height:45.245333pt;}
.hf{height:46.461333pt;}
.h18{height:47.656000pt;}
.hc{height:48.906667pt;}
.h25{height:50.008000pt;}
.h16{height:51.352000pt;}
.h17{height:51.357333pt;}
.h21{height:51.362667pt;}
.h12{height:62.378667pt;}
.h1b{height:509.760000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:661.440000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.898800pt;}
.x1{left:66.803200pt;}
.x28{left:72.131467pt;}
.x29{left:73.272533pt;}
.x1a{left:74.200800pt;}
.x49{left:75.616267pt;}
.x1b{left:77.526800pt;}
.x33{left:79.892667pt;}
.x4d{left:81.259867pt;}
.x2{left:85.700800pt;}
.x4e{left:90.554533pt;}
.x3{left:97.039467pt;}
.x11{left:98.337067pt;}
.x5{left:103.937067pt;}
.x4a{left:105.791333pt;}
.x17{left:106.809067pt;}
.x2b{left:109.990978pt;}
.xd{left:115.275600pt;}
.x2c{left:118.506933pt;}
.x2a{left:124.513067pt;}
.x12{left:126.093067pt;}
.x13{left:135.741067pt;}
.xf{left:143.757067pt;}
.x14{left:145.497067pt;}
.x18{left:146.613067pt;}
.x4b{left:148.393067pt;}
.x15{left:151.845067pt;}
.x10{left:153.345067pt;}
.xe{left:155.697067pt;}
.x16{left:156.945067pt;}
.x34{left:161.090400pt;}
.x2e{left:163.490474pt;}
.x19{left:165.213067pt;}
.x4c{left:172.441867pt;}
.x35{left:175.621333pt;}
.x4f{left:179.801867pt;}
.x50{left:223.510267pt;}
.x7{left:244.722533pt;}
.x3d{left:254.970133pt;}
.x3b{left:263.950592pt;}
.x2d{left:266.614627pt;}
.x2f{left:284.313769pt;}
.x6{left:337.757200pt;}
.xc{left:344.887467pt;}
.x1c{left:406.299200pt;}
.x30{left:414.157229pt;}
.x22{left:417.637867pt;}
.x26{left:419.076667pt;}
.x3e{left:421.417333pt;}
.x38{left:430.556667pt;}
.x39{left:432.864667pt;}
.x3f{left:441.710267pt;}
.x42{left:449.208133pt;}
.x58{left:452.738133pt;}
.x1e{left:455.873067pt;}
.x51{left:461.257733pt;}
.x36{left:465.169067pt;}
.x1f{left:477.860533pt;}
.x3a{left:479.147600pt;}
.x1d{left:483.629200pt;}
.x24{left:485.483200pt;}
.x43{left:489.578800pt;}
.x52{left:491.010933pt;}
.x23{left:500.106667pt;}
.x40{left:502.907067pt;}
.x59{left:506.736267pt;}
.x3c{left:514.610267pt;}
.x44{left:521.363200pt;}
.x25{left:522.555200pt;}
.x5a{left:529.378533pt;}
.x47{left:530.717067pt;}
.x41{left:533.001333pt;}
.x9{left:541.763333pt;}
.x37{left:546.999067pt;}
.x48{left:551.139333pt;}
.x45{left:559.473467pt;}
.x53{left:572.004133pt;}
.xa{left:577.055333pt;}
.x5e{left:582.892000pt;}
.xb{left:584.342667pt;}
.x5b{left:588.741867pt;}
.x46{left:595.964533pt;}
.x20{left:603.203200pt;}
.x21{left:607.600400pt;}
.x54{left:611.350267pt;}
.x8{left:619.680267pt;}
.x31{left:628.327501pt;}
.x5c{left:644.959600pt;}
.x32{left:648.116420pt;}
.x55{left:666.406933pt;}
.x5d{left:690.605600pt;}
.x4{left:699.379867pt;}
.x56{left:704.257733pt;}
.x57{left:723.508267pt;}
}




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