
    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_7f1afd2d1d1fdd993e790095.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e6e45d71a99cad38c3655c62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_799e8c0f9dc739bea918fbf8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_61c0a46a4bb6b9f059550df5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_afa00b7cd103001fff92fd53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1604a63473bfff2161fc693e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_178efa84ecfe067299d5485c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160048;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_175822b4db92fbb535fa7bbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160048;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_0ee5042641e3904e24921cdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166000;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_51769e4500db08441e45208e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.166000;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_9bdbabd981d29f601cfb7f54.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_911e140ecad3b43af985701a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1d6ef593eb9ae096ae1669c7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200900;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_7fbd270f0818387f10a70e84.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_afa83a0c95d0ab24f677e308.woff2')format("woff");}.fff{font-family:fff;line-height:1.200900;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;}
.mc{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);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247865,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247998,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248144,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m5c{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.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248313,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248349,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248363,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248696,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m20{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m106{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);}
.m54{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249147,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m71{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);}
.md4{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m100{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);}
.m24{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.md7{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);}
.m96{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.mdd{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.mde{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.m4d{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.mdc{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);}
.m98{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m1e{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m7{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);}
.mc2{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m5a{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);}
.m95{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252348,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252362,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.mee{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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.951200px;}
.ls8e{letter-spacing:-7.920000px;}
.ls96{letter-spacing:-5.574000px;}
.ls4c{letter-spacing:-5.406000px;}
.ls9b{letter-spacing:-5.340000px;}
.ls50{letter-spacing:-4.353600px;}
.ls20{letter-spacing:-3.600000px;}
.ls38{letter-spacing:-3.522000px;}
.ls98{letter-spacing:-3.300000px;}
.ls3a{letter-spacing:-2.760000px;}
.ls2e{letter-spacing:-2.700000px;}
.ls93{letter-spacing:-2.580000px;}
.ls5f{letter-spacing:-2.484000px;}
.ls6c{letter-spacing:-2.280000px;}
.ls7a{letter-spacing:-1.890000px;}
.ls2f{letter-spacing:-1.794000px;}
.ls7b{letter-spacing:-1.368000px;}
.ls76{letter-spacing:-1.350000px;}
.ls9a{letter-spacing:-1.140000px;}
.ls1a{letter-spacing:-1.032000px;}
.ls19{letter-spacing:-0.888000px;}
.ls75{letter-spacing:-0.882000px;}
.ls87{letter-spacing:-0.810000px;}
.ls36{letter-spacing:-0.786000px;}
.ls4d{letter-spacing:-0.732000px;}
.ls94{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.678000px;}
.ls59{letter-spacing:-0.672000px;}
.ls49{letter-spacing:-0.540000px;}
.ls8a{letter-spacing:-0.516000px;}
.ls58{letter-spacing:-0.489720px;}
.ls97{letter-spacing:-0.454740px;}
.ls6e{letter-spacing:-0.438000px;}
.ls95{letter-spacing:-0.419760px;}
.ls8d{letter-spacing:-0.360000px;}
.ls9c{letter-spacing:-0.314820px;}
.ls99{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.209880px;}
.ls3c{letter-spacing:-0.192000px;}
.ls22{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.150000px;}
.ls3b{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.139920px;}
.ls18{letter-spacing:-0.120000px;}
.ls37{letter-spacing:-0.104940px;}
.ls70{letter-spacing:-0.096000px;}
.ls21{letter-spacing:-0.060000px;}
.ls3e{letter-spacing:-0.048000px;}
.ls6f{letter-spacing:-0.034980px;}
.ls9d{letter-spacing:-0.024000px;}
.lse{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000060px;}
.lsa0{letter-spacing:0.000300px;}
.ls6d{letter-spacing:0.034980px;}
.ls6a{letter-spacing:0.043200px;}
.ls35{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.078000px;}
.ls82{letter-spacing:0.084000px;}
.ls44{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.114000px;}
.ls11{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.139920px;}
.ls3d{letter-spacing:0.144000px;}
.ls73{letter-spacing:0.168000px;}
.ls0{letter-spacing:0.171000px;}
.ls7d{letter-spacing:0.174000px;}
.ls88{letter-spacing:0.174900px;}
.lsa{letter-spacing:0.180000px;}
.ls4f{letter-spacing:0.192000px;}
.ls61{letter-spacing:0.210000px;}
.ls51{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.222000px;}
.ls92{letter-spacing:0.230400px;}
.ls1c{letter-spacing:0.240000px;}
.ls77{letter-spacing:0.252000px;}
.ls65{letter-spacing:0.264000px;}
.ls79{letter-spacing:0.270000px;}
.ls89{letter-spacing:0.279840px;}
.ls31{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.312000px;}
.ls42{letter-spacing:0.324000px;}
.ls4a{letter-spacing:0.330000px;}
.ls25{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.534000px;}
.ls74{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.600000px;}
.ls83{letter-spacing:0.630000px;}
.ls72{letter-spacing:0.648000px;}
.ls46{letter-spacing:0.660000px;}
.ls9f{letter-spacing:0.690000px;}
.ls13{letter-spacing:0.720000px;}
.ls85{letter-spacing:0.780000px;}
.ls81{letter-spacing:0.840000px;}
.ls71{letter-spacing:0.846000px;}
.ls84{letter-spacing:0.960000px;}
.ls68{letter-spacing:0.998400px;}
.ls69{letter-spacing:1.003200px;}
.ls1e{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.098000px;}
.ls43{letter-spacing:1.123200px;}
.ls62{letter-spacing:1.326000px;}
.ls10{letter-spacing:1.350000px;}
.ls1f{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.620000px;}
.ls8b{letter-spacing:1.632000px;}
.ls78{letter-spacing:1.734000px;}
.ls3{letter-spacing:1.881000px;}
.ls32{letter-spacing:1.902000px;}
.ls47{letter-spacing:1.914000px;}
.ls5c{letter-spacing:1.962000px;}
.ls7e{letter-spacing:2.106000px;}
.ls2a{letter-spacing:2.394000px;}
.ls66{letter-spacing:2.400000px;}
.ls64{letter-spacing:2.586000px;}
.ls6{letter-spacing:2.741700px;}
.ls55{letter-spacing:2.742000px;}
.ls45{letter-spacing:2.826000px;}
.ls9e{letter-spacing:2.874000px;}
.ls63{letter-spacing:2.934000px;}
.ls17{letter-spacing:2.976000px;}
.ls52{letter-spacing:2.982000px;}
.ls53{letter-spacing:2.988000px;}
.ls33{letter-spacing:3.216000px;}
.lsc{letter-spacing:3.355200px;}
.lsd{letter-spacing:3.360000px;}
.ls6b{letter-spacing:3.403200px;}
.ls1{letter-spacing:3.647965px;}
.ls90{letter-spacing:3.660000px;}
.ls60{letter-spacing:3.678000px;}
.ls14{letter-spacing:3.720000px;}
.ls16{letter-spacing:3.768000px;}
.ls8f{letter-spacing:3.780000px;}
.ls80{letter-spacing:3.912000px;}
.ls15{letter-spacing:3.972000px;}
.ls2{letter-spacing:3.990000px;}
.ls5{letter-spacing:4.069800px;}
.ls1d{letter-spacing:4.080000px;}
.ls67{letter-spacing:4.122000px;}
.ls7f{letter-spacing:4.140000px;}
.ls5b{letter-spacing:4.164000px;}
.ls5a{letter-spacing:4.182000px;}
.ls41{letter-spacing:4.194000px;}
.ls1b{letter-spacing:4.200000px;}
.ls8c{letter-spacing:4.212000px;}
.ls27{letter-spacing:4.260000px;}
.ls28{letter-spacing:4.266000px;}
.ls5d{letter-spacing:4.296000px;}
.ls7c{letter-spacing:4.326000px;}
.lsb{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.440000px;}
.ls26{letter-spacing:4.500000px;}
.ls86{letter-spacing:4.560000px;}
.ls40{letter-spacing:7.410000px;}
.ls56{letter-spacing:25.007983px;}
.ls34{letter-spacing:28.944000px;}
.ls91{letter-spacing:31.104019px;}
.ls48{letter-spacing:33.359982px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-17.352000px;}
.ws7{word-spacing:-16.632000px;}
.ws1c{word-spacing:-16.302000px;}
.ws1b{word-spacing:-15.972000px;}
.ws39{word-spacing:-15.552000px;}
.wsc{word-spacing:-14.148000px;}
.wsb{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws1d{word-spacing:-12.822000px;}
.ws26{word-spacing:-12.798000px;}
.wsa{word-spacing:-12.600000px;}
.ws33{word-spacing:-12.540000px;}
.ws43{word-spacing:-12.474000px;}
.ws11{word-spacing:-12.450000px;}
.wse{word-spacing:-12.312000px;}
.ws1a{word-spacing:-12.258000px;}
.ws37{word-spacing:-12.084000px;}
.ws2c{word-spacing:-11.718000px;}
.wsf{word-spacing:-11.700000px;}
.ws2f{word-spacing:-11.448000px;}
.ws46{word-spacing:-10.710000px;}
.ws30{word-spacing:-10.320000px;}
.ws21{word-spacing:-10.296000px;}
.ws20{word-spacing:-10.272000px;}
.ws15{word-spacing:-10.224000px;}
.ws19{word-spacing:-10.176000px;}
.ws25{word-spacing:-10.128000px;}
.ws2a{word-spacing:-10.123200px;}
.ws17{word-spacing:-10.080000px;}
.ws42{word-spacing:-10.056000px;}
.ws2e{word-spacing:-9.984000px;}
.ws44{word-spacing:-9.945000px;}
.ws14{word-spacing:-9.888000px;}
.ws24{word-spacing:-9.408000px;}
.ws3b{word-spacing:-7.992000px;}
.ws36{word-spacing:-7.625640px;}
.ws1e{word-spacing:-7.485720px;}
.ws12{word-spacing:-7.345800px;}
.ws29{word-spacing:-7.310820px;}
.ws40{word-spacing:-7.260000px;}
.ws13{word-spacing:-7.205880px;}
.ws1f{word-spacing:-7.135920px;}
.ws41{word-spacing:-7.030980px;}
.ws3d{word-spacing:-6.891060px;}
.ws5{word-spacing:-1.404000px;}
.ws23{word-spacing:-0.480000px;}
.ws35{word-spacing:-0.360000px;}
.ws3a{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.057000px;}
.ws45{word-spacing:-0.051000px;}
.ws18{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.060000px;}
.ws28{word-spacing:0.180000px;}
.ws38{word-spacing:0.456000px;}
.ws3f{word-spacing:0.480000px;}
.ws2d{word-spacing:0.822000px;}
.ws8{word-spacing:0.828000px;}
.ws9{word-spacing:0.972000px;}
.ws3e{word-spacing:1.080000px;}
.ws32{word-spacing:1.308000px;}
.ws47{word-spacing:1689.445800px;}
.ws27{word-spacing:1711.801800px;}
.ws10{word-spacing:1714.879800px;}
.ws16{word-spacing:1716.067800px;}
.ws22{word-spacing:1716.283800px;}
.ws3c{word-spacing:1719.307800px;}
.ws2b{word-spacing:1719.361800px;}
.ws4{word-spacing:1721.197800px;}
.ws34{word-spacing:1721.521800px;}
.ws31{word-spacing:1723.573800px;}
._f{margin-left:-2178.090000px;}
._19{margin-left:-2176.470000px;}
._4{margin-left:-16.704000px;}
._13{margin-left:-13.593600px;}
._a{margin-left:-12.103200px;}
._14{margin-left:-10.559723px;}
._e{margin-left:-9.456000px;}
._1{margin-left:-7.680000px;}
._9{margin-left:-6.002700px;}
._5{margin-left:-4.500000px;}
._0{margin-left:-2.880000px;}
._3{margin-left:-1.440000px;}
._2{width:1.430400px;}
._7{width:2.676000px;}
._6{width:3.819000px;}
._8{width:4.837200px;}
._11{width:6.452400px;}
._20{width:8.640000px;}
._1a{width:22.320000px;}
._1d{width:24.959976px;}
._1b{width:27.119988px;}
._1c{width:28.560000px;}
._1f{width:29.952000px;}
._18{width:31.200000px;}
._16{width:33.024000px;}
._17{width:34.992024px;}
._1e{width:36.576000px;}
._15{width:39.552015px;}
._12{width:47.135985px;}
._c{width:49.920000px;}
._d{width:52.128000px;}
._10{width:53.520000px;}
._b{width:56.160000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:59.527650px;}
.y49{bottom:59.527800px;}
.y6b{bottom:59.527950px;}
.y24{bottom:74.527650px;}
.y48{bottom:74.527800px;}
.y6a{bottom:74.527950px;}
.y95{bottom:89.527650px;}
.y47{bottom:89.527800px;}
.y23{bottom:89.527950px;}
.yb6{bottom:96.944850px;}
.y94{bottom:104.527650px;}
.y46{bottom:104.527800px;}
.y22{bottom:104.527950px;}
.ya3{bottom:104.528100px;}
.y11a{bottom:109.076700px;}
.yee{bottom:115.653600px;}
.yb5{bottom:115.657200px;}
.ye1{bottom:119.527650px;}
.y45{bottom:119.527800px;}
.y21{bottom:119.527950px;}
.ya2{bottom:119.528100px;}
.y119{bottom:126.327450px;}
.yb4{bottom:134.362200px;}
.yc3{bottom:134.369550px;}
.ye0{bottom:134.527800px;}
.y20{bottom:134.527950px;}
.y7a{bottom:134.528100px;}
.y118{bottom:143.578200px;}
.ydf{bottom:149.527800px;}
.y69{bottom:149.527950px;}
.y79{bottom:149.528100px;}
.y44{bottom:153.070800px;}
.yc2{bottom:153.074550px;}
.y117{bottom:160.828950px;}
.y93{bottom:164.527950px;}
.y68{bottom:164.528100px;}
.ycd{bottom:164.528250px;}
.y43{bottom:171.779550px;}
.y1f{bottom:171.783150px;}
.yf9{bottom:171.786750px;}
.y116{bottom:178.079700px;}
.y92{bottom:179.527950px;}
.y67{bottom:179.528100px;}
.ycc{bottom:179.528250px;}
.y1e{bottom:190.488150px;}
.y42{bottom:190.491750px;}
.yed{bottom:190.499100px;}
.yfb{bottom:194.527950px;}
.y78{bottom:194.528100px;}
.y91{bottom:194.528250px;}
.y115{bottom:195.330450px;}
.y1d{bottom:209.196750px;}
.yec{bottom:209.204100px;}
.yc1{bottom:209.207850px;}
.ya1{bottom:209.528100px;}
.y90{bottom:209.528250px;}
.y77{bottom:209.528400px;}
.y114{bottom:212.581200px;}
.ya0{bottom:224.528100px;}
.y8f{bottom:224.528250px;}
.y76{bottom:224.528400px;}
.y1b{bottom:227.905500px;}
.yeb{bottom:227.909100px;}
.yc0{bottom:227.912850px;}
.y113{bottom:229.831950px;}
.y1c{bottom:232.900500px;}
.y9f{bottom:239.528100px;}
.y8e{bottom:239.528250px;}
.y75{bottom:239.528400px;}
.y1a{bottom:246.614100px;}
.ybf{bottom:246.617850px;}
.y112{bottom:247.082700px;}
.y9e{bottom:254.528100px;}
.y8d{bottom:254.528250px;}
.y74{bottom:254.528400px;}
.y111{bottom:264.333450px;}
.y19{bottom:265.322850px;}
.y41{bottom:265.326450px;}
.yaa{bottom:265.333800px;}
.yb3{bottom:265.352100px;}
.y8c{bottom:269.528250px;}
.y110{bottom:281.584200px;}
.y18{bottom:284.031450px;}
.ya9{bottom:284.038800px;}
.yb2{bottom:284.057100px;}
.y8b{bottom:284.528250px;}
.y10f{bottom:298.834950px;}
.y8a{bottom:299.528250px;}
.y9d{bottom:299.528400px;}
.y40{bottom:302.740200px;}
.ya8{bottom:302.743800px;}
.y17{bottom:302.747400px;}
.ybe{bottom:302.751150px;}
.yb1{bottom:302.762100px;}
.yf7{bottom:307.735200px;}
.yd9{bottom:313.606350px;}
.y89{bottom:314.528250px;}
.y9c{bottom:314.528400px;}
.y10e{bottom:316.085700px;}
.y59{bottom:321.448800px;}
.y16{bottom:321.452400px;}
.y66{bottom:321.456150px;}
.yb0{bottom:321.467100px;}
.y88{bottom:329.528250px;}
.y9b{bottom:329.528400px;}
.y10d{bottom:333.336450px;}
.y15{bottom:340.157400px;}
.y65{bottom:340.161150px;}
.yaf{bottom:340.172100px;}
.y87{bottom:344.528250px;}
.y10c{bottom:350.587200px;}
.y14{bottom:358.866150px;}
.y73{bottom:358.869750px;}
.yae{bottom:358.877100px;}
.yd8{bottom:358.880850px;}
.y10b{bottom:367.837950px;}
.y13{bottom:377.574750px;}
.y9a{bottom:377.578500px;}
.yad{bottom:377.582100px;}
.yd7{bottom:377.585850px;}
.y10a{bottom:385.088700px;}
.y3f{bottom:396.283500px;}
.y12{bottom:396.287100px;}
.yd6{bottom:396.290850px;}
.y64{bottom:396.294450px;}
.y109{bottom:402.339450px;}
.y11{bottom:414.992100px;}
.yd5{bottom:414.995850px;}
.y58{bottom:414.999450px;}
.y86{bottom:415.003050px;}
.yf6{bottom:415.010400px;}
.y108{bottom:419.590200px;}
.yea{bottom:419.987100px;}
.y3e{bottom:433.700850px;}
.y57{bottom:433.704450px;}
.y85{bottom:433.708050px;}
.yf5{bottom:433.715400px;}
.y107{bottom:436.840950px;}
.ycb{bottom:438.695700px;}
.y3d{bottom:452.409450px;}
.y84{bottom:452.413050px;}
.yca{bottom:452.416800px;}
.yf4{bottom:452.420400px;}
.yde{bottom:452.431350px;}
.y106{bottom:454.091700px;}
.y135{bottom:460.343100px;}
.y3c{bottom:471.118050px;}
.y99{bottom:471.121800px;}
.y83{bottom:471.125400px;}
.ydd{bottom:471.136350px;}
.y105{bottom:471.342450px;}
.y134{bottom:477.593850px;}
.y63{bottom:481.984200px;}
.y10{bottom:486.650100px;}
.y104{bottom:488.593200px;}
.y3b{bottom:489.826800px;}
.y82{bottom:489.830400px;}
.yd0{bottom:489.834000px;}
.ydc{bottom:489.841350px;}
.ya7{bottom:494.821800px;}
.y133{bottom:494.844600px;}
.yf{bottom:504.650100px;}
.y103{bottom:505.843950px;}
.y3a{bottom:508.535400px;}
.ycf{bottom:508.539000px;}
.ydb{bottom:508.546350px;}
.y132{bottom:512.095350px;}
.ya6{bottom:522.401550px;}
.y102{bottom:523.094700px;}
.y39{bottom:527.244000px;}
.y72{bottom:527.251350px;}
.ye9{bottom:527.262300px;}
.y131{bottom:529.346100px;}
.y101{bottom:540.345450px;}
.y38{bottom:545.952750px;}
.y71{bottom:545.956350px;}
.yac{bottom:545.960100px;}
.ye8{bottom:545.967300px;}
.ybd{bottom:545.971050px;}
.y130{bottom:546.596850px;}
.yf3{bottom:550.947750px;}
.yc9{bottom:556.818900px;}
.y100{bottom:557.596200px;}
.y12f{bottom:563.847600px;}
.y37{bottom:564.661350px;}
.yab{bottom:564.665100px;}
.y56{bottom:564.668700px;}
.yd4{bottom:564.672300px;}
.ybc{bottom:564.676050px;}
.ye{bottom:565.174200px;}
.y62{bottom:569.656350px;}
.yff{bottom:574.846950px;}
.y12e{bottom:581.098350px;}
.yd{bottom:583.171950px;}
.y36{bottom:583.370100px;}
.y55{bottom:583.373700px;}
.yd3{bottom:583.377300px;}
.ybb{bottom:583.381050px;}
.yf2{bottom:583.384650px;}
.yfe{bottom:592.097700px;}
.y12d{bottom:598.349100px;}
.yc{bottom:601.169700px;}
.y54{bottom:602.078700px;}
.y98{bottom:602.082300px;}
.y61{bottom:602.086050px;}
.yf1{bottom:602.089650px;}
.yfd{bottom:609.348450px;}
.y35{bottom:612.944850px;}
.y12c{bottom:615.599850px;}
.yb{bottom:619.169700px;}
.y53{bottom:620.787300px;}
.y60{bottom:620.791050px;}
.yf0{bottom:620.794650px;}
.y81{bottom:620.802000px;}
.y12b{bottom:632.850600px;}
.ya{bottom:637.171950px;}
.y52{bottom:639.496050px;}
.yef{bottom:639.499650px;}
.yc8{bottom:639.503400px;}
.y80{bottom:639.507000px;}
.yfc{bottom:643.606350px;}
.y12a{bottom:650.101350px;}
.y9{bottom:655.169700px;}
.y34{bottom:658.204650px;}
.yc7{bottom:658.208400px;}
.y7f{bottom:658.212000px;}
.yd2{bottom:658.215750px;}
.yfa{bottom:663.199650px;}
.y129{bottom:667.352100px;}
.y8{bottom:673.169700px;}
.y33{bottom:676.913400px;}
.y7e{bottom:676.917000px;}
.yd1{bottom:676.920750px;}
.y70{bottom:681.908400px;}
.y128{bottom:684.602850px;}
.y51{bottom:687.779550px;}
.y97{bottom:690.779550px;}
.y7{bottom:691.169700px;}
.y5f{bottom:695.622000px;}
.ya5{bottom:695.625750px;}
.y32{bottom:695.629350px;}
.y127{bottom:701.853600px;}
.y6{bottom:709.169700px;}
.y5e{bottom:714.330750px;}
.y31{bottom:714.334350px;}
.y126{bottom:719.104350px;}
.y6f{bottom:719.325600px;}
.y5{bottom:727.169700px;}
.y30{bottom:733.039350px;}
.y7d{bottom:733.042950px;}
.y5d{bottom:733.046700px;}
.y50{bottom:733.053900px;}
.yba{bottom:733.057650px;}
.ye7{bottom:733.061250px;}
.y125{bottom:736.355100px;}
.yf8{bottom:743.905500px;}
.y2f{bottom:751.747950px;}
.y5c{bottom:751.751700px;}
.y7c{bottom:751.755300px;}
.y4f{bottom:751.758900px;}
.yb9{bottom:751.762650px;}
.ye6{bottom:751.766250px;}
.y124{bottom:753.605850px;}
.y5b{bottom:770.456700px;}
.y7b{bottom:770.460300px;}
.y4e{bottom:770.463900px;}
.y2e{bottom:770.467650px;}
.ye5{bottom:770.471250px;}
.yc6{bottom:770.475000px;}
.y123{bottom:770.856600px;}
.y122{bottom:788.107350px;}
.y5a{bottom:789.165300px;}
.y4d{bottom:789.168900px;}
.y2d{bottom:789.172650px;}
.ye4{bottom:789.176250px;}
.yc5{bottom:789.180000px;}
.y4{bottom:796.193400px;}
.y121{bottom:805.358100px;}
.y4c{bottom:807.873900px;}
.y2c{bottom:807.877650px;}
.ye3{bottom:807.881250px;}
.yc4{bottom:807.885000px;}
.yce{bottom:807.888600px;}
.y96{bottom:812.869050px;}
.y120{bottom:822.608850px;}
.y2b{bottom:826.582650px;}
.ye2{bottom:826.586250px;}
.yb8{bottom:826.590000px;}
.y4b{bottom:826.593600px;}
.y11f{bottom:839.859600px;}
.y3{bottom:842.729250px;}
.yda{bottom:845.289750px;}
.y2a{bottom:845.291250px;}
.yb7{bottom:845.295000px;}
.y4a{bottom:845.298600px;}
.y6e{bottom:845.302350px;}
.y11e{bottom:857.110350px;}
.ya4{bottom:864.000000px;}
.y29{bottom:864.003600px;}
.y6d{bottom:864.007350px;}
.y2{bottom:871.217250px;}
.y11d{bottom:874.361100px;}
.y28{bottom:882.708600px;}
.y6c{bottom:882.712350px;}
.y11c{bottom:891.611850px;}
.y1{bottom:899.705250px;}
.y27{bottom:901.417350px;}
.y11b{bottom:908.862600px;}
.y26{bottom:954.666900px;}
.h8{height:31.482000px;}
.h9{height:43.200000px;}
.he{height:45.900000px;}
.ha{height:50.868000px;}
.hd{height:51.030000px;}
.h6{height:51.300000px;}
.h5{height:52.098000px;}
.h7{height:54.000000px;}
.h4{height:56.700000px;}
.hc{height:62.172000px;}
.h3{height:67.824000px;}
.hb{height:68.040000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x15{left:67.869900px;}
.x6{left:72.283500px;}
.x1f{left:76.373850px;}
.x20{left:78.072450px;}
.x1{left:79.727250px;}
.x2{left:81.023250px;}
.xc{left:89.450250px;}
.x8{left:92.874300px;}
.x7{left:93.937500px;}
.x19{left:97.673250px;}
.x5{left:102.080250px;}
.x23{left:106.981950px;}
.x1d{left:137.442300px;}
.x1e{left:138.881250px;}
.x11{left:229.659900px;}
.x12{left:238.769400px;}
.x3{left:263.780100px;}
.x4{left:268.033200px;}
.xf{left:301.503750px;}
.x10{left:307.678050px;}
.xa{left:398.987550px;}
.xb{left:403.473300px;}
.x17{left:443.502750px;}
.x18{left:451.966350px;}
.x21{left:463.192350px;}
.x22{left:470.377200px;}
.x13{left:505.280850px;}
.x14{left:513.905100px;}
.x1a{left:549.824400px;}
.x1b{left:558.632250px;}
.x1c{left:607.195800px;}
.x9{left:609.744000px;}
.x16{left:612.795150px;}
.xd{left:616.580850px;}
.xe{left:624.628350px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.734400pt;}
.ls8e{letter-spacing:-7.040000pt;}
.ls96{letter-spacing:-4.954667pt;}
.ls4c{letter-spacing:-4.805333pt;}
.ls9b{letter-spacing:-4.746667pt;}
.ls50{letter-spacing:-3.869867pt;}
.ls20{letter-spacing:-3.200000pt;}
.ls38{letter-spacing:-3.130667pt;}
.ls98{letter-spacing:-2.933333pt;}
.ls3a{letter-spacing:-2.453333pt;}
.ls2e{letter-spacing:-2.400000pt;}
.ls93{letter-spacing:-2.293333pt;}
.ls5f{letter-spacing:-2.208000pt;}
.ls6c{letter-spacing:-2.026667pt;}
.ls7a{letter-spacing:-1.680000pt;}
.ls2f{letter-spacing:-1.594667pt;}
.ls7b{letter-spacing:-1.216000pt;}
.ls76{letter-spacing:-1.200000pt;}
.ls9a{letter-spacing:-1.013333pt;}
.ls1a{letter-spacing:-0.917333pt;}
.ls19{letter-spacing:-0.789333pt;}
.ls75{letter-spacing:-0.784000pt;}
.ls87{letter-spacing:-0.720000pt;}
.ls36{letter-spacing:-0.698667pt;}
.ls4d{letter-spacing:-0.650667pt;}
.ls94{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.602667pt;}
.ls59{letter-spacing:-0.597333pt;}
.ls49{letter-spacing:-0.480000pt;}
.ls8a{letter-spacing:-0.458667pt;}
.ls58{letter-spacing:-0.435307pt;}
.ls97{letter-spacing:-0.404213pt;}
.ls6e{letter-spacing:-0.389333pt;}
.ls95{letter-spacing:-0.373120pt;}
.ls8d{letter-spacing:-0.320000pt;}
.ls9c{letter-spacing:-0.279840pt;}
.ls99{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.186560pt;}
.ls3c{letter-spacing:-0.170667pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.133333pt;}
.ls3b{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.124373pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls37{letter-spacing:-0.093280pt;}
.ls70{letter-spacing:-0.085333pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls3e{letter-spacing:-0.042667pt;}
.ls6f{letter-spacing:-0.031093pt;}
.ls9d{letter-spacing:-0.021333pt;}
.lse{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000053pt;}
.lsa0{letter-spacing:0.000267pt;}
.ls6d{letter-spacing:0.031093pt;}
.ls6a{letter-spacing:0.038400pt;}
.ls35{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.069333pt;}
.ls82{letter-spacing:0.074667pt;}
.ls44{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.101333pt;}
.ls11{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.124373pt;}
.ls3d{letter-spacing:0.128000pt;}
.ls73{letter-spacing:0.149333pt;}
.ls0{letter-spacing:0.152000pt;}
.ls7d{letter-spacing:0.154667pt;}
.ls88{letter-spacing:0.155467pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4f{letter-spacing:0.170667pt;}
.ls61{letter-spacing:0.186667pt;}
.ls51{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.197333pt;}
.ls92{letter-spacing:0.204800pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls77{letter-spacing:0.224000pt;}
.ls65{letter-spacing:0.234667pt;}
.ls79{letter-spacing:0.240000pt;}
.ls89{letter-spacing:0.248747pt;}
.ls31{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.277333pt;}
.ls42{letter-spacing:0.288000pt;}
.ls4a{letter-spacing:0.293333pt;}
.ls25{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.474667pt;}
.ls74{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls83{letter-spacing:0.560000pt;}
.ls72{letter-spacing:0.576000pt;}
.ls46{letter-spacing:0.586667pt;}
.ls9f{letter-spacing:0.613333pt;}
.ls13{letter-spacing:0.640000pt;}
.ls85{letter-spacing:0.693333pt;}
.ls81{letter-spacing:0.746667pt;}
.ls71{letter-spacing:0.752000pt;}
.ls84{letter-spacing:0.853333pt;}
.ls68{letter-spacing:0.887467pt;}
.ls69{letter-spacing:0.891733pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls23{letter-spacing:0.976000pt;}
.ls43{letter-spacing:0.998400pt;}
.ls62{letter-spacing:1.178667pt;}
.ls10{letter-spacing:1.200000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls8b{letter-spacing:1.450667pt;}
.ls78{letter-spacing:1.541333pt;}
.ls3{letter-spacing:1.672000pt;}
.ls32{letter-spacing:1.690667pt;}
.ls47{letter-spacing:1.701333pt;}
.ls5c{letter-spacing:1.744000pt;}
.ls7e{letter-spacing:1.872000pt;}
.ls2a{letter-spacing:2.128000pt;}
.ls66{letter-spacing:2.133333pt;}
.ls64{letter-spacing:2.298667pt;}
.ls6{letter-spacing:2.437067pt;}
.ls55{letter-spacing:2.437333pt;}
.ls45{letter-spacing:2.512000pt;}
.ls9e{letter-spacing:2.554667pt;}
.ls63{letter-spacing:2.608000pt;}
.ls17{letter-spacing:2.645333pt;}
.ls52{letter-spacing:2.650667pt;}
.ls53{letter-spacing:2.656000pt;}
.ls33{letter-spacing:2.858667pt;}
.lsc{letter-spacing:2.982400pt;}
.lsd{letter-spacing:2.986667pt;}
.ls6b{letter-spacing:3.025067pt;}
.ls1{letter-spacing:3.242636pt;}
.ls90{letter-spacing:3.253333pt;}
.ls60{letter-spacing:3.269333pt;}
.ls14{letter-spacing:3.306667pt;}
.ls16{letter-spacing:3.349333pt;}
.ls8f{letter-spacing:3.360000pt;}
.ls80{letter-spacing:3.477333pt;}
.ls15{letter-spacing:3.530667pt;}
.ls2{letter-spacing:3.546667pt;}
.ls5{letter-spacing:3.617600pt;}
.ls1d{letter-spacing:3.626667pt;}
.ls67{letter-spacing:3.664000pt;}
.ls7f{letter-spacing:3.680000pt;}
.ls5b{letter-spacing:3.701333pt;}
.ls5a{letter-spacing:3.717333pt;}
.ls41{letter-spacing:3.728000pt;}
.ls1b{letter-spacing:3.733333pt;}
.ls8c{letter-spacing:3.744000pt;}
.ls27{letter-spacing:3.786667pt;}
.ls28{letter-spacing:3.792000pt;}
.ls5d{letter-spacing:3.818667pt;}
.ls7c{letter-spacing:3.845333pt;}
.lsb{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:3.946667pt;}
.ls26{letter-spacing:4.000000pt;}
.ls86{letter-spacing:4.053333pt;}
.ls40{letter-spacing:6.586667pt;}
.ls56{letter-spacing:22.229318pt;}
.ls34{letter-spacing:25.728000pt;}
.ls91{letter-spacing:27.648017pt;}
.ls48{letter-spacing:29.653317pt;}
.wsd{word-spacing:-15.424000pt;}
.ws7{word-spacing:-14.784000pt;}
.ws1c{word-spacing:-14.490667pt;}
.ws1b{word-spacing:-14.197333pt;}
.ws39{word-spacing:-13.824000pt;}
.wsc{word-spacing:-12.576000pt;}
.wsb{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1d{word-spacing:-11.397333pt;}
.ws26{word-spacing:-11.376000pt;}
.wsa{word-spacing:-11.200000pt;}
.ws33{word-spacing:-11.146667pt;}
.ws43{word-spacing:-11.088000pt;}
.ws11{word-spacing:-11.066667pt;}
.wse{word-spacing:-10.944000pt;}
.ws1a{word-spacing:-10.896000pt;}
.ws37{word-spacing:-10.741333pt;}
.ws2c{word-spacing:-10.416000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws2f{word-spacing:-10.176000pt;}
.ws46{word-spacing:-9.520000pt;}
.ws30{word-spacing:-9.173333pt;}
.ws21{word-spacing:-9.152000pt;}
.ws20{word-spacing:-9.130667pt;}
.ws15{word-spacing:-9.088000pt;}
.ws19{word-spacing:-9.045333pt;}
.ws25{word-spacing:-9.002667pt;}
.ws2a{word-spacing:-8.998400pt;}
.ws17{word-spacing:-8.960000pt;}
.ws42{word-spacing:-8.938667pt;}
.ws2e{word-spacing:-8.874667pt;}
.ws44{word-spacing:-8.840000pt;}
.ws14{word-spacing:-8.789333pt;}
.ws24{word-spacing:-8.362667pt;}
.ws3b{word-spacing:-7.104000pt;}
.ws36{word-spacing:-6.778347pt;}
.ws1e{word-spacing:-6.653973pt;}
.ws12{word-spacing:-6.529600pt;}
.ws29{word-spacing:-6.498507pt;}
.ws40{word-spacing:-6.453333pt;}
.ws13{word-spacing:-6.405227pt;}
.ws1f{word-spacing:-6.343040pt;}
.ws41{word-spacing:-6.249760pt;}
.ws3d{word-spacing:-6.125387pt;}
.ws5{word-spacing:-1.248000pt;}
.ws23{word-spacing:-0.426667pt;}
.ws35{word-spacing:-0.320000pt;}
.ws3a{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.050667pt;}
.ws45{word-spacing:-0.045333pt;}
.ws18{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.053333pt;}
.ws28{word-spacing:0.160000pt;}
.ws38{word-spacing:0.405333pt;}
.ws3f{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.730667pt;}
.ws8{word-spacing:0.736000pt;}
.ws9{word-spacing:0.864000pt;}
.ws3e{word-spacing:0.960000pt;}
.ws32{word-spacing:1.162667pt;}
.ws47{word-spacing:1501.729600pt;}
.ws27{word-spacing:1521.601600pt;}
.ws10{word-spacing:1524.337600pt;}
.ws16{word-spacing:1525.393600pt;}
.ws22{word-spacing:1525.585600pt;}
.ws3c{word-spacing:1528.273600pt;}
.ws2b{word-spacing:1528.321600pt;}
.ws4{word-spacing:1529.953600pt;}
.ws34{word-spacing:1530.241600pt;}
.ws31{word-spacing:1532.065600pt;}
._f{margin-left:-1936.080000pt;}
._19{margin-left:-1934.640000pt;}
._4{margin-left:-14.848000pt;}
._13{margin-left:-12.083200pt;}
._a{margin-left:-10.758400pt;}
._14{margin-left:-9.386421pt;}
._e{margin-left:-8.405333pt;}
._1{margin-left:-6.826667pt;}
._9{margin-left:-5.335733pt;}
._5{margin-left:-4.000000pt;}
._0{margin-left:-2.560000pt;}
._3{margin-left:-1.280000pt;}
._2{width:1.271467pt;}
._7{width:2.378667pt;}
._6{width:3.394667pt;}
._8{width:4.299733pt;}
._11{width:5.735467pt;}
._20{width:7.680000pt;}
._1a{width:19.840000pt;}
._1d{width:22.186645pt;}
._1b{width:24.106656pt;}
._1c{width:25.386667pt;}
._1f{width:26.624000pt;}
._18{width:27.733333pt;}
._16{width:29.354667pt;}
._17{width:31.104021pt;}
._1e{width:32.512000pt;}
._15{width:35.157346pt;}
._12{width:41.898653pt;}
._c{width:44.373333pt;}
._d{width:46.336000pt;}
._10{width:47.573333pt;}
._b{width:49.920000pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:52.913467pt;}
.y49{bottom:52.913600pt;}
.y6b{bottom:52.913733pt;}
.y24{bottom:66.246800pt;}
.y48{bottom:66.246933pt;}
.y6a{bottom:66.247067pt;}
.y95{bottom:79.580133pt;}
.y47{bottom:79.580267pt;}
.y23{bottom:79.580400pt;}
.yb6{bottom:86.173200pt;}
.y94{bottom:92.913467pt;}
.y46{bottom:92.913600pt;}
.y22{bottom:92.913733pt;}
.ya3{bottom:92.913867pt;}
.y11a{bottom:96.957067pt;}
.yee{bottom:102.803200pt;}
.yb5{bottom:102.806400pt;}
.ye1{bottom:106.246800pt;}
.y45{bottom:106.246933pt;}
.y21{bottom:106.247067pt;}
.ya2{bottom:106.247200pt;}
.y119{bottom:112.291067pt;}
.yb4{bottom:119.433067pt;}
.yc3{bottom:119.439600pt;}
.ye0{bottom:119.580267pt;}
.y20{bottom:119.580400pt;}
.y7a{bottom:119.580533pt;}
.y118{bottom:127.625067pt;}
.ydf{bottom:132.913600pt;}
.y69{bottom:132.913733pt;}
.y79{bottom:132.913867pt;}
.y44{bottom:136.062933pt;}
.yc2{bottom:136.066267pt;}
.y117{bottom:142.959067pt;}
.y93{bottom:146.247067pt;}
.y68{bottom:146.247200pt;}
.ycd{bottom:146.247333pt;}
.y43{bottom:152.692933pt;}
.y1f{bottom:152.696133pt;}
.yf9{bottom:152.699333pt;}
.y116{bottom:158.293067pt;}
.y92{bottom:159.580400pt;}
.y67{bottom:159.580533pt;}
.ycc{bottom:159.580667pt;}
.y1e{bottom:169.322800pt;}
.y42{bottom:169.326000pt;}
.yed{bottom:169.332533pt;}
.yfb{bottom:172.913733pt;}
.y78{bottom:172.913867pt;}
.y91{bottom:172.914000pt;}
.y115{bottom:173.627067pt;}
.y1d{bottom:185.952667pt;}
.yec{bottom:185.959200pt;}
.yc1{bottom:185.962533pt;}
.ya1{bottom:186.247200pt;}
.y90{bottom:186.247333pt;}
.y77{bottom:186.247467pt;}
.y114{bottom:188.961067pt;}
.ya0{bottom:199.580533pt;}
.y8f{bottom:199.580667pt;}
.y76{bottom:199.580800pt;}
.y1b{bottom:202.582667pt;}
.yeb{bottom:202.585867pt;}
.yc0{bottom:202.589200pt;}
.y113{bottom:204.295067pt;}
.y1c{bottom:207.022667pt;}
.y9f{bottom:212.913867pt;}
.y8e{bottom:212.914000pt;}
.y75{bottom:212.914133pt;}
.y1a{bottom:219.212533pt;}
.ybf{bottom:219.215867pt;}
.y112{bottom:219.629067pt;}
.y9e{bottom:226.247200pt;}
.y8d{bottom:226.247333pt;}
.y74{bottom:226.247467pt;}
.y111{bottom:234.963067pt;}
.y19{bottom:235.842533pt;}
.y41{bottom:235.845733pt;}
.yaa{bottom:235.852267pt;}
.yb3{bottom:235.868533pt;}
.y8c{bottom:239.580667pt;}
.y110{bottom:250.297067pt;}
.y18{bottom:252.472400pt;}
.ya9{bottom:252.478933pt;}
.yb2{bottom:252.495200pt;}
.y8b{bottom:252.914000pt;}
.y10f{bottom:265.631067pt;}
.y8a{bottom:266.247333pt;}
.y9d{bottom:266.247467pt;}
.y40{bottom:269.102400pt;}
.ya8{bottom:269.105600pt;}
.y17{bottom:269.108800pt;}
.ybe{bottom:269.112133pt;}
.yb1{bottom:269.121867pt;}
.yf7{bottom:273.542400pt;}
.yd9{bottom:278.761200pt;}
.y89{bottom:279.580667pt;}
.y9c{bottom:279.580800pt;}
.y10e{bottom:280.965067pt;}
.y59{bottom:285.732267pt;}
.y16{bottom:285.735467pt;}
.y66{bottom:285.738800pt;}
.yb0{bottom:285.748533pt;}
.y88{bottom:292.914000pt;}
.y9b{bottom:292.914133pt;}
.y10d{bottom:296.299067pt;}
.y15{bottom:302.362133pt;}
.y65{bottom:302.365467pt;}
.yaf{bottom:302.375200pt;}
.y87{bottom:306.247333pt;}
.y10c{bottom:311.633067pt;}
.y14{bottom:318.992133pt;}
.y73{bottom:318.995333pt;}
.yae{bottom:319.001867pt;}
.yd8{bottom:319.005200pt;}
.y10b{bottom:326.967067pt;}
.y13{bottom:335.622000pt;}
.y9a{bottom:335.625333pt;}
.yad{bottom:335.628533pt;}
.yd7{bottom:335.631867pt;}
.y10a{bottom:342.301067pt;}
.y3f{bottom:352.252000pt;}
.y12{bottom:352.255200pt;}
.yd6{bottom:352.258533pt;}
.y64{bottom:352.261733pt;}
.y109{bottom:357.635067pt;}
.y11{bottom:368.881867pt;}
.yd5{bottom:368.885200pt;}
.y58{bottom:368.888400pt;}
.y86{bottom:368.891600pt;}
.yf6{bottom:368.898133pt;}
.y108{bottom:372.969067pt;}
.yea{bottom:373.321867pt;}
.y3e{bottom:385.511867pt;}
.y57{bottom:385.515067pt;}
.y85{bottom:385.518267pt;}
.yf5{bottom:385.524800pt;}
.y107{bottom:388.303067pt;}
.ycb{bottom:389.951733pt;}
.y3d{bottom:402.141733pt;}
.y84{bottom:402.144933pt;}
.yca{bottom:402.148267pt;}
.yf4{bottom:402.151467pt;}
.yde{bottom:402.161200pt;}
.y106{bottom:403.637067pt;}
.y135{bottom:409.193867pt;}
.y3c{bottom:418.771600pt;}
.y99{bottom:418.774933pt;}
.y83{bottom:418.778133pt;}
.ydd{bottom:418.787867pt;}
.y105{bottom:418.971067pt;}
.y134{bottom:424.527867pt;}
.y63{bottom:428.430400pt;}
.y10{bottom:432.577867pt;}
.y104{bottom:434.305067pt;}
.y3b{bottom:435.401600pt;}
.y82{bottom:435.404800pt;}
.yd0{bottom:435.408000pt;}
.ydc{bottom:435.414533pt;}
.ya7{bottom:439.841600pt;}
.y133{bottom:439.861867pt;}
.yf{bottom:448.577867pt;}
.y103{bottom:449.639067pt;}
.y3a{bottom:452.031467pt;}
.ycf{bottom:452.034667pt;}
.ydb{bottom:452.041200pt;}
.y132{bottom:455.195867pt;}
.ya6{bottom:464.356933pt;}
.y102{bottom:464.973067pt;}
.y39{bottom:468.661333pt;}
.y72{bottom:468.667867pt;}
.ye9{bottom:468.677600pt;}
.y131{bottom:470.529867pt;}
.y101{bottom:480.307067pt;}
.y38{bottom:485.291333pt;}
.y71{bottom:485.294533pt;}
.yac{bottom:485.297867pt;}
.ye8{bottom:485.304267pt;}
.ybd{bottom:485.307600pt;}
.y130{bottom:485.863867pt;}
.yf3{bottom:489.731333pt;}
.yc9{bottom:494.950133pt;}
.y100{bottom:495.641067pt;}
.y12f{bottom:501.197867pt;}
.y37{bottom:501.921200pt;}
.yab{bottom:501.924533pt;}
.y56{bottom:501.927733pt;}
.yd4{bottom:501.930933pt;}
.ybc{bottom:501.934267pt;}
.ye{bottom:502.377067pt;}
.y62{bottom:506.361200pt;}
.yff{bottom:510.975067pt;}
.y12e{bottom:516.531867pt;}
.yd{bottom:518.375067pt;}
.y36{bottom:518.551200pt;}
.y55{bottom:518.554400pt;}
.yd3{bottom:518.557600pt;}
.ybb{bottom:518.560933pt;}
.yf2{bottom:518.564133pt;}
.yfe{bottom:526.309067pt;}
.y12d{bottom:531.865867pt;}
.yc{bottom:534.373067pt;}
.y54{bottom:535.181067pt;}
.y98{bottom:535.184267pt;}
.y61{bottom:535.187600pt;}
.yf1{bottom:535.190800pt;}
.yfd{bottom:541.643067pt;}
.y35{bottom:544.839867pt;}
.y12c{bottom:547.199867pt;}
.yb{bottom:550.373067pt;}
.y53{bottom:551.810933pt;}
.y60{bottom:551.814267pt;}
.yf0{bottom:551.817467pt;}
.y81{bottom:551.824000pt;}
.y12b{bottom:562.533867pt;}
.ya{bottom:566.375067pt;}
.y52{bottom:568.440933pt;}
.yef{bottom:568.444133pt;}
.yc8{bottom:568.447467pt;}
.y80{bottom:568.450667pt;}
.yfc{bottom:572.094533pt;}
.y12a{bottom:577.867867pt;}
.y9{bottom:582.373067pt;}
.y34{bottom:585.070800pt;}
.yc7{bottom:585.074133pt;}
.y7f{bottom:585.077333pt;}
.yd2{bottom:585.080667pt;}
.yfa{bottom:589.510800pt;}
.y129{bottom:593.201867pt;}
.y8{bottom:598.373067pt;}
.y33{bottom:601.700800pt;}
.y7e{bottom:601.704000pt;}
.yd1{bottom:601.707333pt;}
.y70{bottom:606.140800pt;}
.y128{bottom:608.535867pt;}
.y51{bottom:611.359600pt;}
.y97{bottom:614.026267pt;}
.y7{bottom:614.373067pt;}
.y5f{bottom:618.330667pt;}
.ya5{bottom:618.334000pt;}
.y32{bottom:618.337200pt;}
.y127{bottom:623.869867pt;}
.y6{bottom:630.373067pt;}
.y5e{bottom:634.960667pt;}
.y31{bottom:634.963867pt;}
.y126{bottom:639.203867pt;}
.y6f{bottom:639.400533pt;}
.y5{bottom:646.373067pt;}
.y30{bottom:651.590533pt;}
.y7d{bottom:651.593733pt;}
.y5d{bottom:651.597067pt;}
.y50{bottom:651.603467pt;}
.yba{bottom:651.606800pt;}
.ye7{bottom:651.610000pt;}
.y125{bottom:654.537867pt;}
.yf8{bottom:661.249333pt;}
.y2f{bottom:668.220400pt;}
.y5c{bottom:668.223733pt;}
.y7c{bottom:668.226933pt;}
.y4f{bottom:668.230133pt;}
.yb9{bottom:668.233467pt;}
.ye6{bottom:668.236667pt;}
.y124{bottom:669.871867pt;}
.y5b{bottom:684.850400pt;}
.y7b{bottom:684.853600pt;}
.y4e{bottom:684.856800pt;}
.y2e{bottom:684.860133pt;}
.ye5{bottom:684.863333pt;}
.yc6{bottom:684.866667pt;}
.y123{bottom:685.205867pt;}
.y122{bottom:700.539867pt;}
.y5a{bottom:701.480267pt;}
.y4d{bottom:701.483467pt;}
.y2d{bottom:701.486800pt;}
.ye4{bottom:701.490000pt;}
.yc5{bottom:701.493333pt;}
.y4{bottom:707.727467pt;}
.y121{bottom:715.873867pt;}
.y4c{bottom:718.110133pt;}
.y2c{bottom:718.113467pt;}
.ye3{bottom:718.116667pt;}
.yc4{bottom:718.120000pt;}
.yce{bottom:718.123200pt;}
.y96{bottom:722.550267pt;}
.y120{bottom:731.207867pt;}
.y2b{bottom:734.740133pt;}
.ye2{bottom:734.743333pt;}
.yb8{bottom:734.746667pt;}
.y4b{bottom:734.749867pt;}
.y11f{bottom:746.541867pt;}
.y3{bottom:749.092667pt;}
.yda{bottom:751.368667pt;}
.y2a{bottom:751.370000pt;}
.yb7{bottom:751.373333pt;}
.y4a{bottom:751.376533pt;}
.y6e{bottom:751.379867pt;}
.y11e{bottom:761.875867pt;}
.ya4{bottom:768.000000pt;}
.y29{bottom:768.003200pt;}
.y6d{bottom:768.006533pt;}
.y2{bottom:774.415333pt;}
.y11d{bottom:777.209867pt;}
.y28{bottom:784.629867pt;}
.y6c{bottom:784.633200pt;}
.y11c{bottom:792.543867pt;}
.y1{bottom:799.738000pt;}
.y27{bottom:801.259867pt;}
.y11b{bottom:807.877867pt;}
.y26{bottom:848.592800pt;}
.h8{height:27.984000pt;}
.h9{height:38.400000pt;}
.he{height:40.800000pt;}
.ha{height:45.216000pt;}
.hd{height:45.360000pt;}
.h6{height:45.600000pt;}
.h5{height:46.309333pt;}
.h7{height:48.000000pt;}
.h4{height:50.400000pt;}
.hc{height:55.264000pt;}
.h3{height:60.288000pt;}
.hb{height:60.480000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x15{left:60.328800pt;}
.x6{left:64.252000pt;}
.x1f{left:67.887867pt;}
.x20{left:69.397733pt;}
.x1{left:70.868667pt;}
.x2{left:72.020667pt;}
.xc{left:79.511333pt;}
.x8{left:82.554933pt;}
.x7{left:83.500000pt;}
.x19{left:86.820667pt;}
.x5{left:90.738000pt;}
.x23{left:95.095067pt;}
.x1d{left:122.170933pt;}
.x1e{left:123.450000pt;}
.x11{left:204.142133pt;}
.x12{left:212.239467pt;}
.x3{left:234.471200pt;}
.x4{left:238.251733pt;}
.xf{left:268.003333pt;}
.x10{left:273.491600pt;}
.xa{left:354.655600pt;}
.xb{left:358.642933pt;}
.x17{left:394.224667pt;}
.x18{left:401.747867pt;}
.x21{left:411.726533pt;}
.x22{left:418.113067pt;}
.x13{left:449.138533pt;}
.x14{left:456.804533pt;}
.x1a{left:488.732800pt;}
.x1b{left:496.562000pt;}
.x1c{left:539.729600pt;}
.x9{left:541.994667pt;}
.x16{left:544.706800pt;}
.xd{left:548.071867pt;}
.xe{left:555.225200pt;}
}




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