
    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_52a7a02a3335a5ed61189e93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.063000;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_866a4a420e544f8b925dbf18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.037000;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_79d60c5db9a29ae01b9fa8f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.037000;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_4273f20baa8a040d605ad0cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063000;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_790ed5036fbe437fb2939567.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060000;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_873830bce38ed5be6af71541.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.800000;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_5969daf8ddf6cee9ecea45da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751000;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_f17f6ac0c9a6c75164920156.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.768000;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_18d4916ac6542fa65aabdeb9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b07f0ad1377806829765c2cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.029000;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_c587617bade3e500965ab740.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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_864ec91f723ba6d9e2b7a28a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142090;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_79d60c5db9a29ae01b9fa8f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.037000;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_ed7cbb7668e20a9f0a515de5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.935000;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_79d60c5db9a29ae01b9fa8f2.woff2')format("woff");}.fff{font-family:fff;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ed7cbb7668e20a9f0a515de5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ed7cbb7668e20a9f0a515de5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9dc3a6fa71c98ca3b0f77b05.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2089cd1521004abe1a1ed3e8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1e4ed106ea576952f6a59058.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0032053d0e24d1437f9dddae.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.956000;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;}
.m104{transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245022,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245119,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.245203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245203,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245322,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245361,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245389,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245511,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245669,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245681,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245767,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245808,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245828,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245853,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245958,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.246061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246061,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246111,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246186,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246209,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.246341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246341,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246363,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246406,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246469,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246506,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246628,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246644,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246653,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246703,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246764,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.246803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246803,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.246853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246853,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246858,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246997,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247131,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247197,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247211,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.247247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247247,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247292,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247322,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247367,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247392,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247397,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247431,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247486,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247489,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247516,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247611,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247656,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247664,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247687,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247697,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247709,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247719,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247808,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m112{transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247833,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247981,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248067,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248278,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m12c{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);}
.m1{transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248606,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248644,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248694,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248803,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.mdd{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);}
.m108{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249008,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249142,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249189,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249358,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m17c{transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249434,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249481,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.m16f{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);}
.m186{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.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);}
.m74{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250672,0.000000,0.000000,0.250000,0,0);}
.me6{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);}
.mb2{transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250728,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250778,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250956,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251281,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251378,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251619,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251653,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251758,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251861,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252091,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252183,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252314,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252436,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252478,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252528,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252578,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.252659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252659,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252681,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252683,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252694,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252731,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252733,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252858,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.252909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252909,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253066,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253269,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253283,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253717,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253828,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253872,0.000000,0.000000,0.250000,0,0);}
.m183{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253956,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253997,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254122,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254450,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.254559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254559,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254683,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254734,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254791,0.000000,0.000000,0.250000,0,0);}
.m188{transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254942,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.990400px;}
.v3{vertical-align:21.978000px;}
.ls2b{letter-spacing:-10.638000px;}
.ls55{letter-spacing:-9.408000px;}
.ls3e{letter-spacing:-9.072000px;}
.ls3c{letter-spacing:-6.768000px;}
.ls54{letter-spacing:-6.384000px;}
.ls3d{letter-spacing:-5.616000px;}
.ls61{letter-spacing:-5.520000px;}
.ls34{letter-spacing:-5.424000px;}
.ls5e{letter-spacing:-5.184000px;}
.ls38{letter-spacing:-5.040000px;}
.ls5b{letter-spacing:-4.896000px;}
.ls58{letter-spacing:-4.800000px;}
.ls43{letter-spacing:-4.752000px;}
.ls64{letter-spacing:-4.656000px;}
.ls53{letter-spacing:-4.464000px;}
.ls63{letter-spacing:-4.320000px;}
.ls47{letter-spacing:-4.272000px;}
.ls50{letter-spacing:-4.080000px;}
.ls41{letter-spacing:-3.936000px;}
.ls49{letter-spacing:-3.840000px;}
.ls5d{letter-spacing:-3.600000px;}
.ls4c{letter-spacing:-3.360000px;}
.ls1e{letter-spacing:-3.132000px;}
.ls33{letter-spacing:-3.024000px;}
.ls4d{letter-spacing:-2.976000px;}
.ls4f{letter-spacing:-2.880000px;}
.ls3f{letter-spacing:-2.832000px;}
.ls51{letter-spacing:-2.784000px;}
.ls32{letter-spacing:-2.496000px;}
.ls62{letter-spacing:-2.256000px;}
.ls4b{letter-spacing:-2.016000px;}
.ls44{letter-spacing:-1.968000px;}
.ls36{letter-spacing:-1.872000px;}
.ls4a{letter-spacing:-1.824000px;}
.ls45{letter-spacing:-1.680000px;}
.ls5c{letter-spacing:-1.632000px;}
.ls2a{letter-spacing:-1.566000px;}
.ls18{letter-spacing:-1.512000px;}
.ls3b{letter-spacing:-1.488000px;}
.ls46{letter-spacing:-1.344000px;}
.ls5a{letter-spacing:-1.200000px;}
.ls31{letter-spacing:-1.152000px;}
.ls59{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.918000px;}
.ls4e{letter-spacing:-0.912000px;}
.ls2c{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.810000px;}
.ls52{letter-spacing:-0.768000px;}
.lsa{letter-spacing:-0.702000px;}
.ls26{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.594000px;}
.ls23{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.378000px;}
.ls2e{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.300000px;}
.ls30{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.060000px;}
.ls42{letter-spacing:0.096000px;}
.ls1f{letter-spacing:0.120000px;}
.ls60{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.252000px;}
.ls28{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.324000px;}
.ls2f{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.714000px;}
.ls35{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.768000px;}
.ls48{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.864000px;}
.ls5f{letter-spacing:1.056000px;}
.ls24{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.404000px;}
.ls57{letter-spacing:1.584000px;}
.ls21{letter-spacing:1.674000px;}
.ls40{letter-spacing:1.824000px;}
.ls22{letter-spacing:2.646000px;}
.ls19{letter-spacing:3.110400px;}
.ls1c{letter-spacing:4.093200px;}
.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;}
}
.wse7{word-spacing:-30.624000px;}
.ws137{word-spacing:-29.088000px;}
.ws13f{word-spacing:-28.272000px;}
.ws103{word-spacing:-27.936000px;}
.ws106{word-spacing:-27.888000px;}
.ws13a{word-spacing:-27.792000px;}
.wsda{word-spacing:-27.648000px;}
.ws13b{word-spacing:-27.600000px;}
.wsfe{word-spacing:-27.456000px;}
.wse2{word-spacing:-27.312000px;}
.ws13e{word-spacing:-27.168000px;}
.wsfd{word-spacing:-27.120000px;}
.ws102{word-spacing:-26.976000px;}
.wsdd{word-spacing:-26.928000px;}
.wsfc{word-spacing:-26.832000px;}
.ws104{word-spacing:-26.784000px;}
.ws153{word-spacing:-26.544000px;}
.wsfa{word-spacing:-26.304000px;}
.ws109{word-spacing:-26.016000px;}
.wse6{word-spacing:-25.968000px;}
.ws107{word-spacing:-25.920000px;}
.wsdb{word-spacing:-25.776000px;}
.ws105{word-spacing:-25.440000px;}
.ws14d{word-spacing:-25.200000px;}
.ws101{word-spacing:-24.960000px;}
.wse8{word-spacing:-24.864000px;}
.ws108{word-spacing:-24.720000px;}
.wsff{word-spacing:-24.528000px;}
.ws154{word-spacing:-24.480000px;}
.ws11d{word-spacing:-24.336000px;}
.ws155{word-spacing:-24.144000px;}
.wsfb{word-spacing:-24.048000px;}
.ws139{word-spacing:-24.000000px;}
.ws13d{word-spacing:-23.904000px;}
.wsde{word-spacing:-23.760000px;}
.ws14e{word-spacing:-23.616000px;}
.wsdc{word-spacing:-23.376000px;}
.ws152{word-spacing:-23.280000px;}
.wse4{word-spacing:-23.184000px;}
.ws11e{word-spacing:-22.416000px;}
.wse3{word-spacing:-22.032000px;}
.wsd7{word-spacing:-15.876000px;}
.wsd8{word-spacing:-15.336000px;}
.wscc{word-spacing:-15.120000px;}
.ws86{word-spacing:-15.066000px;}
.wscb{word-spacing:-14.850000px;}
.wsd6{word-spacing:-14.580000px;}
.wscf{word-spacing:-13.602600px;}
.ws122{word-spacing:-12.633600px;}
.ws26{word-spacing:-12.480000px;}
.ws11f{word-spacing:-12.412800px;}
.wsaa{word-spacing:-12.300000px;}
.ws13c{word-spacing:-12.163200px;}
.wse5{word-spacing:-12.158400px;}
.wscd{word-spacing:-11.700000px;}
.wsb5{word-spacing:-11.460000px;}
.ws121{word-spacing:-10.800000px;}
.ws9{word-spacing:-10.176000px;}
.ws10a{word-spacing:-9.936000px;}
.ws151{word-spacing:-9.696000px;}
.ws120{word-spacing:-9.648000px;}
.wse0{word-spacing:-9.600000px;}
.ws100{word-spacing:-9.552000px;}
.wsdf{word-spacing:-9.456000px;}
.ws150{word-spacing:-9.360000px;}
.wsf9{word-spacing:-9.312000px;}
.wse1{word-spacing:-9.264000px;}
.ws14f{word-spacing:-9.216000px;}
.ws138{word-spacing:-8.928000px;}
.wsd9{word-spacing:-8.880000px;}
.ws6{word-spacing:-8.400000px;}
.ws1{word-spacing:-7.200000px;}
.ws2{word-spacing:-6.912000px;}
.wsab{word-spacing:-5.076000px;}
.ws71{word-spacing:-4.536000px;}
.wsc4{word-spacing:-4.482000px;}
.ws3b{word-spacing:-3.132000px;}
.ws34{word-spacing:-3.078000px;}
.ws87{word-spacing:-3.024000px;}
.ws8b{word-spacing:-2.970000px;}
.ws4b{word-spacing:-2.916000px;}
.ws7f{word-spacing:-2.862000px;}
.ws5f{word-spacing:-2.808000px;}
.ws38{word-spacing:-2.754000px;}
.ws90{word-spacing:-2.700000px;}
.wsa0{word-spacing:-2.646000px;}
.ws31{word-spacing:-2.592000px;}
.ws51{word-spacing:-2.538000px;}
.ws135{word-spacing:-2.496000px;}
.ws84{word-spacing:-2.484000px;}
.wsac{word-spacing:-2.430000px;}
.wsbc{word-spacing:-2.376000px;}
.ws115{word-spacing:-2.352000px;}
.ws77{word-spacing:-2.322000px;}
.ws20{word-spacing:-2.304000px;}
.wsb0{word-spacing:-2.268000px;}
.wsf5{word-spacing:-2.256000px;}
.ws41{word-spacing:-2.214000px;}
.wsf6{word-spacing:-2.208000px;}
.ws6f{word-spacing:-2.160000px;}
.ws63{word-spacing:-2.106000px;}
.ws50{word-spacing:-2.052000px;}
.ws72{word-spacing:-1.998000px;}
.ws1f{word-spacing:-1.968000px;}
.wsb1{word-spacing:-1.944000px;}
.ws17{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.890000px;}
.ws12f{word-spacing:-1.872000px;}
.ws6a{word-spacing:-1.836000px;}
.ws1b{word-spacing:-1.824000px;}
.wsc{word-spacing:-1.800000px;}
.ws55{word-spacing:-1.782000px;}
.ws14c{word-spacing:-1.776000px;}
.ws9f{word-spacing:-1.728000px;}
.ws128{word-spacing:-1.680000px;}
.ws2b{word-spacing:-1.674000px;}
.ws123{word-spacing:-1.632000px;}
.ws124{word-spacing:-1.584000px;}
.ws96{word-spacing:-1.566000px;}
.ws158{word-spacing:-1.536000px;}
.wsa7{word-spacing:-1.512000px;}
.ws12e{word-spacing:-1.488000px;}
.ws54{word-spacing:-1.458000px;}
.ws74{word-spacing:-1.404000px;}
.ws146{word-spacing:-1.392000px;}
.ws2c{word-spacing:-1.350000px;}
.ws13{word-spacing:-1.344000px;}
.wsc2{word-spacing:-1.320000px;}
.ws43{word-spacing:-1.296000px;}
.ws12a{word-spacing:-1.248000px;}
.ws82{word-spacing:-1.242000px;}
.ws12{word-spacing:-1.200000px;}
.ws2f{word-spacing:-1.188000px;}
.ws12d{word-spacing:-1.152000px;}
.ws7d{word-spacing:-1.134000px;}
.ws93{word-spacing:-1.080000px;}
.ws140{word-spacing:-1.056000px;}
.ws2e{word-spacing:-1.026000px;}
.ws141{word-spacing:-1.008000px;}
.ws7c{word-spacing:-0.972000px;}
.ws1e{word-spacing:-0.960000px;}
.ws40{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.864000px;}
.ws45{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.816000px;}
.ws7e{word-spacing:-0.810000px;}
.ws127{word-spacing:-0.768000px;}
.ws8c{word-spacing:-0.756000px;}
.wsd{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.714000px;}
.ws3e{word-spacing:-0.702000px;}
.wse9{word-spacing:-0.672000px;}
.ws6b{word-spacing:-0.648000px;}
.ws0{word-spacing:-0.624000px;}
.ws28{word-spacing:-0.600000px;}
.ws36{word-spacing:-0.594000px;}
.ws110{word-spacing:-0.576000px;}
.ws27{word-spacing:-0.570000px;}
.wsc3{word-spacing:-0.540000px;}
.ws111{word-spacing:-0.528000px;}
.ws6c{word-spacing:-0.486000px;}
.ws119{word-spacing:-0.480000px;}
.ws78{word-spacing:-0.432000px;}
.wsf1{word-spacing:-0.384000px;}
.wsa8{word-spacing:-0.378000px;}
.wseb{word-spacing:-0.336000px;}
.ws3f{word-spacing:-0.324000px;}
.ws6d{word-spacing:-0.300000px;}
.wsf3{word-spacing:-0.288000px;}
.wsb9{word-spacing:-0.270000px;}
.ws10{word-spacing:-0.252000px;}
.ws6e{word-spacing:-0.240000px;}
.ws4f{word-spacing:-0.216000px;}
.ws9d{word-spacing:-0.180000px;}
.ws9b{word-spacing:-0.162000px;}
.ws14a{word-spacing:-0.144000px;}
.wsa3{word-spacing:-0.120000px;}
.ws5d{word-spacing:-0.108000px;}
.wsf4{word-spacing:-0.096000px;}
.ws98{word-spacing:-0.060000px;}
.ws2d{word-spacing:-0.054000px;}
.ws156{word-spacing:-0.048000px;}
.ws7{word-spacing:-0.036000px;}
.ws8{word-spacing:-0.032249px;}
.wsb{word-spacing:0.000000px;}
.ws1c{word-spacing:0.048000px;}
.ws5a{word-spacing:0.054000px;}
.wsef{word-spacing:0.096000px;}
.ws4d{word-spacing:0.108000px;}
.ws133{word-spacing:0.144000px;}
.ws48{word-spacing:0.162000px;}
.wsa6{word-spacing:0.180000px;}
.ws114{word-spacing:0.192000px;}
.ws94{word-spacing:0.216000px;}
.ws11{word-spacing:0.240000px;}
.ws5b{word-spacing:0.270000px;}
.wsec{word-spacing:0.288000px;}
.ws4e{word-spacing:0.300000px;}
.ws81{word-spacing:0.324000px;}
.ws15d{word-spacing:0.336000px;}
.ws88{word-spacing:0.378000px;}
.ws12c{word-spacing:0.384000px;}
.ws60{word-spacing:0.432000px;}
.ws66{word-spacing:0.480000px;}
.ws29{word-spacing:0.486000px;}
.ws12b{word-spacing:0.528000px;}
.wsc0{word-spacing:0.540000px;}
.ws7a{word-spacing:0.594000px;}
.ws145{word-spacing:0.624000px;}
.ws56{word-spacing:0.648000px;}
.ws3d{word-spacing:0.702000px;}
.ws8a{word-spacing:0.756000px;}
.ws11c{word-spacing:0.768000px;}
.ws89{word-spacing:0.810000px;}
.ws131{word-spacing:0.816000px;}
.ws30{word-spacing:0.864000px;}
.wsea{word-spacing:0.912000px;}
.wsbd{word-spacing:0.918000px;}
.ws129{word-spacing:0.960000px;}
.wsae{word-spacing:0.972000px;}
.ws149{word-spacing:1.008000px;}
.ws9e{word-spacing:1.026000px;}
.ws14b{word-spacing:1.056000px;}
.ws46{word-spacing:1.080000px;}
.ws10f{word-spacing:1.104000px;}
.ws95{word-spacing:1.134000px;}
.ws58{word-spacing:1.188000px;}
.wsa5{word-spacing:1.242000px;}
.ws19{word-spacing:1.296000px;}
.wsf2{word-spacing:1.344000px;}
.ws2a{word-spacing:1.350000px;}
.ws132{word-spacing:1.392000px;}
.ws4c{word-spacing:1.404000px;}
.ws75{word-spacing:1.458000px;}
.ws5c{word-spacing:1.512000px;}
.ws85{word-spacing:1.566000px;}
.wsaf{word-spacing:1.620000px;}
.ws49{word-spacing:1.674000px;}
.ws64{word-spacing:1.728000px;}
.ws1a{word-spacing:1.776000px;}
.ws4a{word-spacing:1.782000px;}
.wsa9{word-spacing:1.836000px;}
.wsad{word-spacing:1.890000px;}
.ws68{word-spacing:1.944000px;}
.ws136{word-spacing:1.968000px;}
.ws52{word-spacing:1.998000px;}
.ws157{word-spacing:2.016000px;}
.ws47{word-spacing:2.052000px;}
.ws144{word-spacing:2.064000px;}
.wsba{word-spacing:2.106000px;}
.ws143{word-spacing:2.112000px;}
.ws99{word-spacing:2.160000px;}
.ws61{word-spacing:2.214000px;}
.ws1d{word-spacing:2.256000px;}
.ws5e{word-spacing:2.268000px;}
.ws79{word-spacing:2.322000px;}
.ws83{word-spacing:2.376000px;}
.ws10e{word-spacing:2.400000px;}
.wsb4{word-spacing:2.430000px;}
.wsf0{word-spacing:2.448000px;}
.wsc8{word-spacing:2.484000px;}
.wsed{word-spacing:2.496000px;}
.ws80{word-spacing:2.538000px;}
.wsf7{word-spacing:2.544000px;}
.wsb6{word-spacing:2.592000px;}
.ws112{word-spacing:2.640000px;}
.wsb2{word-spacing:2.646000px;}
.ws134{word-spacing:2.688000px;}
.ws70{word-spacing:2.700000px;}
.wsb3{word-spacing:2.754000px;}
.ws10b{word-spacing:2.784000px;}
.ws91{word-spacing:2.808000px;}
.ws44{word-spacing:2.814000px;}
.ws148{word-spacing:2.832000px;}
.ws3a{word-spacing:2.862000px;}
.ws142{word-spacing:2.880000px;}
.ws62{word-spacing:2.916000px;}
.ws130{word-spacing:2.928000px;}
.ws9a{word-spacing:2.970000px;}
.wsee{word-spacing:2.976000px;}
.ws18{word-spacing:3.024000px;}
.wsc7{word-spacing:3.078000px;}
.ws16{word-spacing:3.120000px;}
.ws42{word-spacing:3.132000px;}
.ws24{word-spacing:3.168000px;}
.ws8d{word-spacing:3.186000px;}
.ws21{word-spacing:3.216000px;}
.wsa2{word-spacing:3.240000px;}
.ws37{word-spacing:3.294000px;}
.ws92{word-spacing:3.348000px;}
.ws11b{word-spacing:3.360000px;}
.ws69{word-spacing:3.402000px;}
.wsb7{word-spacing:3.456000px;}
.ws33{word-spacing:3.510000px;}
.ws3c{word-spacing:3.564000px;}
.ws125{word-spacing:3.600000px;}
.ws9c{word-spacing:3.618000px;}
.ws15a{word-spacing:3.648000px;}
.ws57{word-spacing:3.672000px;}
.ws59{word-spacing:3.726000px;}
.wsa1{word-spacing:3.780000px;}
.ws8e{word-spacing:3.834000px;}
.wsca{word-spacing:3.888000px;}
.wsbf{word-spacing:3.942000px;}
.wsbb{word-spacing:3.996000px;}
.ws32{word-spacing:4.104000px;}
.wsc9{word-spacing:4.212000px;}
.ws39{word-spacing:4.266000px;}
.wsc1{word-spacing:4.320000px;}
.ws8f{word-spacing:4.374000px;}
.wsc5{word-spacing:4.428000px;}
.ws76{word-spacing:4.482000px;}
.wsd1{word-spacing:4.536000px;}
.wsd2{word-spacing:4.590000px;}
.wsa4{word-spacing:4.644000px;}
.wsc6{word-spacing:4.698000px;}
.wsbe{word-spacing:4.806000px;}
.ws97{word-spacing:4.860000px;}
.wsce{word-spacing:4.914000px;}
.ws7b{word-spacing:4.968000px;}
.ws65{word-spacing:5.022000px;}
.ws53{word-spacing:5.076000px;}
.ws147{word-spacing:5.088000px;}
.wsd0{word-spacing:5.130000px;}
.wsd3{word-spacing:5.184000px;}
.wsb8{word-spacing:5.238000px;}
.ws67{word-spacing:5.292000px;}
.wsf8{word-spacing:5.376000px;}
.wsd4{word-spacing:5.616000px;}
.ws23{word-spacing:6.048000px;}
.ws116{word-spacing:6.432000px;}
.wsd5{word-spacing:6.642000px;}
.ws118{word-spacing:7.344000px;}
.ws11a{word-spacing:7.392000px;}
.ws15c{word-spacing:7.728000px;}
.ws117{word-spacing:7.872000px;}
.ws15b{word-spacing:8.064000px;}
.ws22{word-spacing:8.544000px;}
.ws73{word-spacing:8.964000px;}
.ws10c{word-spacing:9.024000px;}
.ws159{word-spacing:9.408000px;}
.ws10d{word-spacing:9.792000px;}
.wse{word-spacing:10.800000px;}
.ws113{word-spacing:11.808000px;}
.ws126{word-spacing:13.632000px;}
.wsa{word-spacing:28.476000px;}
.ws25{word-spacing:49.800000px;}
.ws3{word-spacing:140.580000px;}
.ws5{word-spacing:148.536000px;}
.ws4{word-spacing:161.316000px;}
._1a{margin-left:-13.819200px;}
._18{margin-left:-10.920000px;}
._17{margin-left:-9.157417px;}
._16{margin-left:-7.944000px;}
._15{margin-left:-6.320072px;}
._3{margin-left:-5.299200px;}
._b{margin-left:-3.904200px;}
._4{margin-left:-2.550928px;}
._1{margin-left:-1.368000px;}
._0{width:1.375200px;}
._7{width:2.457600px;}
._6{width:3.518400px;}
._e{width:4.705528px;}
._c{width:5.931000px;}
._14{width:7.082345px;}
._19{width:8.419200px;}
._12{width:9.595200px;}
._13{width:11.039672px;}
._9{width:24.270000px;}
._2{width:30.600000px;}
._8{width:35.392800px;}
._5{width:38.352000px;}
._11{width:43.562400px;}
._d{width:44.644800px;}
._a{width:91.680000px;}
._10{width:105.300000px;}
._f{width:107.764800px;}
.fc3{color:rgb(0,159,227);}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs3{font-size:32.249400px;}
.fs0{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:42.099900px;}
.y7{bottom:44.114100px;}
.y2d{bottom:52.887150px;}
.y5d{bottom:52.890150px;}
.y2c{bottom:62.029650px;}
.y5c{bottom:62.242650px;}
.y6{bottom:72.374100px;}
.y2e{bottom:75.217350px;}
.y5{bottom:83.624100px;}
.y59{bottom:102.047400px;}
.y64{bottom:102.180150px;}
.y99{bottom:102.718950px;}
.yd{bottom:113.372700px;}
.y58{bottom:115.172400px;}
.ycc{bottom:116.905500px;}
.y98{bottom:117.718950px;}
.y63{bottom:119.055150px;}
.yc{bottom:131.128200px;}
.ycb{bottom:131.905500px;}
.y97{bottom:132.718950px;}
.y62{bottom:135.930150px;}
.yca{bottom:146.905500px;}
.y96{bottom:147.718950px;}
.yb{bottom:148.364100px;}
.yf{bottom:148.736673px;}
.y73{bottom:151.601850px;}
.y61{bottom:152.805150px;}
.ye{bottom:157.371450px;}
.ya{bottom:157.715100px;}
.yc9{bottom:161.905500px;}
.y95{bottom:162.718950px;}
.y9{bottom:167.066100px;}
.y57{bottom:169.680150px;}
.yc8{bottom:176.905500px;}
.y94{bottom:177.718950px;}
.y8{bottom:185.553450px;}
.y56{bottom:186.555150px;}
.yc7{bottom:191.905500px;}
.y93{bottom:192.718950px;}
.y55{bottom:203.430150px;}
.yc6{bottom:206.905500px;}
.y92{bottom:207.718950px;}
.y54{bottom:220.305150px;}
.yc5{bottom:221.905500px;}
.y91{bottom:222.718950px;}
.y70{bottom:227.605800px;}
.yc4{bottom:236.905500px;}
.y53{bottom:237.180150px;}
.y90{bottom:237.718950px;}
.yc3{bottom:251.905500px;}
.y8f{bottom:252.718950px;}
.y52{bottom:254.055150px;}
.yc2{bottom:266.905500px;}
.y8e{bottom:267.718950px;}
.y51{bottom:270.930150px;}
.y2b{bottom:274.228350px;}
.y66{bottom:278.230800px;}
.yc1{bottom:281.905500px;}
.y8d{bottom:282.718950px;}
.y72{bottom:286.601850px;}
.y50{bottom:287.805150px;}
.y2a{bottom:289.228350px;}
.yc0{bottom:296.905500px;}
.y8c{bottom:297.718950px;}
.y29{bottom:304.228350px;}
.y4f{bottom:304.680150px;}
.ybf{bottom:311.905500px;}
.y8b{bottom:312.718950px;}
.y28{bottom:319.228350px;}
.y4e{bottom:321.555150px;}
.ybe{bottom:326.905500px;}
.y8a{bottom:327.718950px;}
.y27{bottom:334.228350px;}
.y4d{bottom:338.430150px;}
.ybd{bottom:341.905500px;}
.y89{bottom:342.718950px;}
.y26{bottom:349.228350px;}
.y4c{bottom:355.305150px;}
.ybc{bottom:356.905500px;}
.y88{bottom:357.718950px;}
.ybb{bottom:371.905500px;}
.y4b{bottom:372.180150px;}
.y87{bottom:372.718950px;}
.y25{bottom:381.236250px;}
.yba{bottom:386.905500px;}
.y86{bottom:387.718950px;}
.y4a{bottom:389.055150px;}
.y24{bottom:396.236250px;}
.yb9{bottom:401.905500px;}
.y85{bottom:402.718950px;}
.y49{bottom:405.930150px;}
.yb8{bottom:416.905500px;}
.y84{bottom:417.718950px;}
.y6a{bottom:421.601850px;}
.y48{bottom:422.805150px;}
.y23{bottom:428.244150px;}
.yb7{bottom:431.905500px;}
.y83{bottom:432.718950px;}
.y47{bottom:439.680150px;}
.y22{bottom:443.244150px;}
.yb6{bottom:446.905500px;}
.y82{bottom:447.718950px;}
.y46{bottom:456.555150px;}
.y21{bottom:458.244150px;}
.yb5{bottom:461.905500px;}
.y81{bottom:462.718950px;}
.y6c{bottom:463.855800px;}
.y20{bottom:473.244150px;}
.y45{bottom:473.430150px;}
.yb4{bottom:476.905500px;}
.y80{bottom:477.718950px;}
.y1f{bottom:488.244150px;}
.y44{bottom:490.305150px;}
.yb3{bottom:491.905500px;}
.y7f{bottom:492.718950px;}
.y1e{bottom:503.244150px;}
.yb2{bottom:506.905500px;}
.y43{bottom:507.180150px;}
.y7e{bottom:507.718950px;}
.y1d{bottom:518.244150px;}
.yb1{bottom:521.905500px;}
.y7d{bottom:522.718950px;}
.y42{bottom:524.055150px;}
.y68{bottom:531.355800px;}
.y1c{bottom:533.244150px;}
.yb0{bottom:536.905500px;}
.y7c{bottom:537.718950px;}
.y71{bottom:539.726850px;}
.y41{bottom:540.930150px;}
.y1b{bottom:548.244150px;}
.yaf{bottom:551.905500px;}
.y7b{bottom:552.718950px;}
.y40{bottom:557.805150px;}
.y1a{bottom:563.244150px;}
.y67{bottom:565.105800px;}
.yae{bottom:566.905500px;}
.y7a{bottom:567.718950px;}
.y3f{bottom:574.680150px;}
.y19{bottom:578.244150px;}
.yad{bottom:581.905500px;}
.y60{bottom:581.980800px;}
.y79{bottom:582.718950px;}
.y3e{bottom:591.555150px;}
.y18{bottom:593.244150px;}
.yac{bottom:596.905500px;}
.y78{bottom:597.718950px;}
.y6f{bottom:598.855800px;}
.y17{bottom:608.244150px;}
.y3d{bottom:608.430150px;}
.yab{bottom:611.905500px;}
.y77{bottom:612.718950px;}
.y6e{bottom:615.730800px;}
.y16{bottom:623.244150px;}
.y3c{bottom:625.305150px;}
.yaa{bottom:626.905500px;}
.y76{bottom:627.718950px;}
.y15{bottom:638.244150px;}
.ya9{bottom:641.905500px;}
.y3b{bottom:642.180150px;}
.y75{bottom:642.718950px;}
.y14{bottom:653.247150px;}
.ya8{bottom:656.905500px;}
.y3a{bottom:659.055150px;}
.ya7{bottom:671.905500px;}
.y74{bottom:674.726850px;}
.y39{bottom:675.930150px;}
.ya6{bottom:686.905500px;}
.y38{bottom:692.805150px;}
.y13{bottom:697.467150px;}
.y6d{bottom:700.105800px;}
.ya5{bottom:701.905500px;}
.y37{bottom:709.680150px;}
.y12{bottom:712.467150px;}
.ya4{bottom:716.905500px;}
.y36{bottom:726.555150px;}
.ya3{bottom:731.905500px;}
.y35{bottom:743.430150px;}
.y11{bottom:744.475050px;}
.ya2{bottom:746.905500px;}
.y69{bottom:750.730800px;}
.y34{bottom:760.305150px;}
.ya1{bottom:761.905500px;}
.y10{bottom:774.475050px;}
.ya0{bottom:776.905500px;}
.y33{bottom:777.180150px;}
.y6b{bottom:784.480800px;}
.y9f{bottom:791.905500px;}
.y32{bottom:794.055150px;}
.y65{bottom:801.355800px;}
.y9e{bottom:806.905500px;}
.y31{bottom:810.930150px;}
.y9d{bottom:821.905500px;}
.y30{bottom:827.805150px;}
.y9c{bottom:836.905500px;}
.y5f{bottom:844.680150px;}
.y9b{bottom:851.905500px;}
.y3{bottom:854.078850px;}
.y5e{bottom:861.555150px;}
.y2f{bottom:864.655500px;}
.y9a{bottom:866.905500px;}
.y2{bottom:868.322850px;}
.y5b{bottom:897.360150px;}
.y1{bottom:907.423350px;}
.y5a{bottom:910.485150px;}
.h7{height:23.864556px;}
.hc{height:23.940000px;}
.h8{height:24.316048px;}
.h2{height:29.268000px;}
.h5{height:29.736000px;}
.h10{height:30.156000px;}
.h6{height:34.692000px;}
.h14{height:35.136000px;}
.hb{height:38.304000px;}
.hf{height:38.636719px;}
.h15{height:38.880000px;}
.h4{height:39.024000px;}
.h3{height:39.648000px;}
.h11{height:43.080000px;}
.h12{height:44.040000px;}
.ha{height:48.780000px;}
.h13{height:49.560000px;}
.he{height:49.675781px;}
.hd{height:50.220852px;}
.h9{height:88.080000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:127.810050px;}
.x9{left:144.569100px;}
.x1{left:204.094500px;}
.xb{left:256.740900px;}
.x4{left:263.622000px;}
.x3{left:265.039350px;}
.x7{left:421.890600px;}
.x6{left:448.658100px;}
.xa{left:474.080400px;}
.x8{left:477.596400px;}
.xd{left:514.936800px;}
.x2{left:537.578100px;}
.xc{left:548.691450px;}
@media print{
.v2{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.658133pt;}
.v3{vertical-align:19.536000pt;}
.ls2b{letter-spacing:-9.456000pt;}
.ls55{letter-spacing:-8.362667pt;}
.ls3e{letter-spacing:-8.064000pt;}
.ls3c{letter-spacing:-6.016000pt;}
.ls54{letter-spacing:-5.674667pt;}
.ls3d{letter-spacing:-4.992000pt;}
.ls61{letter-spacing:-4.906667pt;}
.ls34{letter-spacing:-4.821333pt;}
.ls5e{letter-spacing:-4.608000pt;}
.ls38{letter-spacing:-4.480000pt;}
.ls5b{letter-spacing:-4.352000pt;}
.ls58{letter-spacing:-4.266667pt;}
.ls43{letter-spacing:-4.224000pt;}
.ls64{letter-spacing:-4.138667pt;}
.ls53{letter-spacing:-3.968000pt;}
.ls63{letter-spacing:-3.840000pt;}
.ls47{letter-spacing:-3.797333pt;}
.ls50{letter-spacing:-3.626667pt;}
.ls41{letter-spacing:-3.498667pt;}
.ls49{letter-spacing:-3.413333pt;}
.ls5d{letter-spacing:-3.200000pt;}
.ls4c{letter-spacing:-2.986667pt;}
.ls1e{letter-spacing:-2.784000pt;}
.ls33{letter-spacing:-2.688000pt;}
.ls4d{letter-spacing:-2.645333pt;}
.ls4f{letter-spacing:-2.560000pt;}
.ls3f{letter-spacing:-2.517333pt;}
.ls51{letter-spacing:-2.474667pt;}
.ls32{letter-spacing:-2.218667pt;}
.ls62{letter-spacing:-2.005333pt;}
.ls4b{letter-spacing:-1.792000pt;}
.ls44{letter-spacing:-1.749333pt;}
.ls36{letter-spacing:-1.664000pt;}
.ls4a{letter-spacing:-1.621333pt;}
.ls45{letter-spacing:-1.493333pt;}
.ls5c{letter-spacing:-1.450667pt;}
.ls2a{letter-spacing:-1.392000pt;}
.ls18{letter-spacing:-1.344000pt;}
.ls3b{letter-spacing:-1.322667pt;}
.ls46{letter-spacing:-1.194667pt;}
.ls5a{letter-spacing:-1.066667pt;}
.ls31{letter-spacing:-1.024000pt;}
.ls59{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.816000pt;}
.ls4e{letter-spacing:-0.810667pt;}
.ls2c{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.720000pt;}
.ls52{letter-spacing:-0.682667pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.528000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls2e{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls30{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls42{letter-spacing:0.085333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls60{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.224000pt;}
.ls28{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.288000pt;}
.ls2f{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.634667pt;}
.ls35{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.682667pt;}
.ls48{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.938667pt;}
.ls24{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.248000pt;}
.ls57{letter-spacing:1.408000pt;}
.ls21{letter-spacing:1.488000pt;}
.ls40{letter-spacing:1.621333pt;}
.ls22{letter-spacing:2.352000pt;}
.ls19{letter-spacing:2.764800pt;}
.ls1c{letter-spacing:3.638400pt;}
.wse7{word-spacing:-27.221333pt;}
.ws137{word-spacing:-25.856000pt;}
.ws13f{word-spacing:-25.130667pt;}
.ws103{word-spacing:-24.832000pt;}
.ws106{word-spacing:-24.789333pt;}
.ws13a{word-spacing:-24.704000pt;}
.wsda{word-spacing:-24.576000pt;}
.ws13b{word-spacing:-24.533333pt;}
.wsfe{word-spacing:-24.405333pt;}
.wse2{word-spacing:-24.277333pt;}
.ws13e{word-spacing:-24.149333pt;}
.wsfd{word-spacing:-24.106667pt;}
.ws102{word-spacing:-23.978667pt;}
.wsdd{word-spacing:-23.936000pt;}
.wsfc{word-spacing:-23.850667pt;}
.ws104{word-spacing:-23.808000pt;}
.ws153{word-spacing:-23.594667pt;}
.wsfa{word-spacing:-23.381333pt;}
.ws109{word-spacing:-23.125333pt;}
.wse6{word-spacing:-23.082667pt;}
.ws107{word-spacing:-23.040000pt;}
.wsdb{word-spacing:-22.912000pt;}
.ws105{word-spacing:-22.613333pt;}
.ws14d{word-spacing:-22.400000pt;}
.ws101{word-spacing:-22.186667pt;}
.wse8{word-spacing:-22.101333pt;}
.ws108{word-spacing:-21.973333pt;}
.wsff{word-spacing:-21.802667pt;}
.ws154{word-spacing:-21.760000pt;}
.ws11d{word-spacing:-21.632000pt;}
.ws155{word-spacing:-21.461333pt;}
.wsfb{word-spacing:-21.376000pt;}
.ws139{word-spacing:-21.333333pt;}
.ws13d{word-spacing:-21.248000pt;}
.wsde{word-spacing:-21.120000pt;}
.ws14e{word-spacing:-20.992000pt;}
.wsdc{word-spacing:-20.778667pt;}
.ws152{word-spacing:-20.693333pt;}
.wse4{word-spacing:-20.608000pt;}
.ws11e{word-spacing:-19.925333pt;}
.wse3{word-spacing:-19.584000pt;}
.wsd7{word-spacing:-14.112000pt;}
.wsd8{word-spacing:-13.632000pt;}
.wscc{word-spacing:-13.440000pt;}
.ws86{word-spacing:-13.392000pt;}
.wscb{word-spacing:-13.200000pt;}
.wsd6{word-spacing:-12.960000pt;}
.wscf{word-spacing:-12.091200pt;}
.ws122{word-spacing:-11.229867pt;}
.ws26{word-spacing:-11.093333pt;}
.ws11f{word-spacing:-11.033600pt;}
.wsaa{word-spacing:-10.933333pt;}
.ws13c{word-spacing:-10.811733pt;}
.wse5{word-spacing:-10.807467pt;}
.wscd{word-spacing:-10.400000pt;}
.wsb5{word-spacing:-10.186667pt;}
.ws121{word-spacing:-9.600000pt;}
.ws9{word-spacing:-9.045333pt;}
.ws10a{word-spacing:-8.832000pt;}
.ws151{word-spacing:-8.618667pt;}
.ws120{word-spacing:-8.576000pt;}
.wse0{word-spacing:-8.533333pt;}
.ws100{word-spacing:-8.490667pt;}
.wsdf{word-spacing:-8.405333pt;}
.ws150{word-spacing:-8.320000pt;}
.wsf9{word-spacing:-8.277333pt;}
.wse1{word-spacing:-8.234667pt;}
.ws14f{word-spacing:-8.192000pt;}
.ws138{word-spacing:-7.936000pt;}
.wsd9{word-spacing:-7.893333pt;}
.ws6{word-spacing:-7.466667pt;}
.ws1{word-spacing:-6.400000pt;}
.ws2{word-spacing:-6.144000pt;}
.wsab{word-spacing:-4.512000pt;}
.ws71{word-spacing:-4.032000pt;}
.wsc4{word-spacing:-3.984000pt;}
.ws3b{word-spacing:-2.784000pt;}
.ws34{word-spacing:-2.736000pt;}
.ws87{word-spacing:-2.688000pt;}
.ws8b{word-spacing:-2.640000pt;}
.ws4b{word-spacing:-2.592000pt;}
.ws7f{word-spacing:-2.544000pt;}
.ws5f{word-spacing:-2.496000pt;}
.ws38{word-spacing:-2.448000pt;}
.ws90{word-spacing:-2.400000pt;}
.wsa0{word-spacing:-2.352000pt;}
.ws31{word-spacing:-2.304000pt;}
.ws51{word-spacing:-2.256000pt;}
.ws135{word-spacing:-2.218667pt;}
.ws84{word-spacing:-2.208000pt;}
.wsac{word-spacing:-2.160000pt;}
.wsbc{word-spacing:-2.112000pt;}
.ws115{word-spacing:-2.090667pt;}
.ws77{word-spacing:-2.064000pt;}
.ws20{word-spacing:-2.048000pt;}
.wsb0{word-spacing:-2.016000pt;}
.wsf5{word-spacing:-2.005333pt;}
.ws41{word-spacing:-1.968000pt;}
.wsf6{word-spacing:-1.962667pt;}
.ws6f{word-spacing:-1.920000pt;}
.ws63{word-spacing:-1.872000pt;}
.ws50{word-spacing:-1.824000pt;}
.ws72{word-spacing:-1.776000pt;}
.ws1f{word-spacing:-1.749333pt;}
.wsb1{word-spacing:-1.728000pt;}
.ws17{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.680000pt;}
.ws12f{word-spacing:-1.664000pt;}
.ws6a{word-spacing:-1.632000pt;}
.ws1b{word-spacing:-1.621333pt;}
.wsc{word-spacing:-1.600000pt;}
.ws55{word-spacing:-1.584000pt;}
.ws14c{word-spacing:-1.578667pt;}
.ws9f{word-spacing:-1.536000pt;}
.ws128{word-spacing:-1.493333pt;}
.ws2b{word-spacing:-1.488000pt;}
.ws123{word-spacing:-1.450667pt;}
.ws124{word-spacing:-1.408000pt;}
.ws96{word-spacing:-1.392000pt;}
.ws158{word-spacing:-1.365333pt;}
.wsa7{word-spacing:-1.344000pt;}
.ws12e{word-spacing:-1.322667pt;}
.ws54{word-spacing:-1.296000pt;}
.ws74{word-spacing:-1.248000pt;}
.ws146{word-spacing:-1.237333pt;}
.ws2c{word-spacing:-1.200000pt;}
.ws13{word-spacing:-1.194667pt;}
.wsc2{word-spacing:-1.173333pt;}
.ws43{word-spacing:-1.152000pt;}
.ws12a{word-spacing:-1.109333pt;}
.ws82{word-spacing:-1.104000pt;}
.ws12{word-spacing:-1.066667pt;}
.ws2f{word-spacing:-1.056000pt;}
.ws12d{word-spacing:-1.024000pt;}
.ws7d{word-spacing:-1.008000pt;}
.ws93{word-spacing:-0.960000pt;}
.ws140{word-spacing:-0.938667pt;}
.ws2e{word-spacing:-0.912000pt;}
.ws141{word-spacing:-0.896000pt;}
.ws7c{word-spacing:-0.864000pt;}
.ws1e{word-spacing:-0.853333pt;}
.ws40{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.768000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.725333pt;}
.ws7e{word-spacing:-0.720000pt;}
.ws127{word-spacing:-0.682667pt;}
.ws8c{word-spacing:-0.672000pt;}
.wsd{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.634667pt;}
.ws3e{word-spacing:-0.624000pt;}
.wse9{word-spacing:-0.597333pt;}
.ws6b{word-spacing:-0.576000pt;}
.ws0{word-spacing:-0.554667pt;}
.ws28{word-spacing:-0.533333pt;}
.ws36{word-spacing:-0.528000pt;}
.ws110{word-spacing:-0.512000pt;}
.ws27{word-spacing:-0.506667pt;}
.wsc3{word-spacing:-0.480000pt;}
.ws111{word-spacing:-0.469333pt;}
.ws6c{word-spacing:-0.432000pt;}
.ws119{word-spacing:-0.426667pt;}
.ws78{word-spacing:-0.384000pt;}
.wsf1{word-spacing:-0.341333pt;}
.wsa8{word-spacing:-0.336000pt;}
.wseb{word-spacing:-0.298667pt;}
.ws3f{word-spacing:-0.288000pt;}
.ws6d{word-spacing:-0.266667pt;}
.wsf3{word-spacing:-0.256000pt;}
.wsb9{word-spacing:-0.240000pt;}
.ws10{word-spacing:-0.224000pt;}
.ws6e{word-spacing:-0.213333pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws9d{word-spacing:-0.160000pt;}
.ws9b{word-spacing:-0.144000pt;}
.ws14a{word-spacing:-0.128000pt;}
.wsa3{word-spacing:-0.106667pt;}
.ws5d{word-spacing:-0.096000pt;}
.wsf4{word-spacing:-0.085333pt;}
.ws98{word-spacing:-0.053333pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws156{word-spacing:-0.042667pt;}
.ws7{word-spacing:-0.032000pt;}
.ws8{word-spacing:-0.028666pt;}
.wsb{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.042667pt;}
.ws5a{word-spacing:0.048000pt;}
.wsef{word-spacing:0.085333pt;}
.ws4d{word-spacing:0.096000pt;}
.ws133{word-spacing:0.128000pt;}
.ws48{word-spacing:0.144000pt;}
.wsa6{word-spacing:0.160000pt;}
.ws114{word-spacing:0.170667pt;}
.ws94{word-spacing:0.192000pt;}
.ws11{word-spacing:0.213333pt;}
.ws5b{word-spacing:0.240000pt;}
.wsec{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.266667pt;}
.ws81{word-spacing:0.288000pt;}
.ws15d{word-spacing:0.298667pt;}
.ws88{word-spacing:0.336000pt;}
.ws12c{word-spacing:0.341333pt;}
.ws60{word-spacing:0.384000pt;}
.ws66{word-spacing:0.426667pt;}
.ws29{word-spacing:0.432000pt;}
.ws12b{word-spacing:0.469333pt;}
.wsc0{word-spacing:0.480000pt;}
.ws7a{word-spacing:0.528000pt;}
.ws145{word-spacing:0.554667pt;}
.ws56{word-spacing:0.576000pt;}
.ws3d{word-spacing:0.624000pt;}
.ws8a{word-spacing:0.672000pt;}
.ws11c{word-spacing:0.682667pt;}
.ws89{word-spacing:0.720000pt;}
.ws131{word-spacing:0.725333pt;}
.ws30{word-spacing:0.768000pt;}
.wsea{word-spacing:0.810667pt;}
.wsbd{word-spacing:0.816000pt;}
.ws129{word-spacing:0.853333pt;}
.wsae{word-spacing:0.864000pt;}
.ws149{word-spacing:0.896000pt;}
.ws9e{word-spacing:0.912000pt;}
.ws14b{word-spacing:0.938667pt;}
.ws46{word-spacing:0.960000pt;}
.ws10f{word-spacing:0.981333pt;}
.ws95{word-spacing:1.008000pt;}
.ws58{word-spacing:1.056000pt;}
.wsa5{word-spacing:1.104000pt;}
.ws19{word-spacing:1.152000pt;}
.wsf2{word-spacing:1.194667pt;}
.ws2a{word-spacing:1.200000pt;}
.ws132{word-spacing:1.237333pt;}
.ws4c{word-spacing:1.248000pt;}
.ws75{word-spacing:1.296000pt;}
.ws5c{word-spacing:1.344000pt;}
.ws85{word-spacing:1.392000pt;}
.wsaf{word-spacing:1.440000pt;}
.ws49{word-spacing:1.488000pt;}
.ws64{word-spacing:1.536000pt;}
.ws1a{word-spacing:1.578667pt;}
.ws4a{word-spacing:1.584000pt;}
.wsa9{word-spacing:1.632000pt;}
.wsad{word-spacing:1.680000pt;}
.ws68{word-spacing:1.728000pt;}
.ws136{word-spacing:1.749333pt;}
.ws52{word-spacing:1.776000pt;}
.ws157{word-spacing:1.792000pt;}
.ws47{word-spacing:1.824000pt;}
.ws144{word-spacing:1.834667pt;}
.wsba{word-spacing:1.872000pt;}
.ws143{word-spacing:1.877333pt;}
.ws99{word-spacing:1.920000pt;}
.ws61{word-spacing:1.968000pt;}
.ws1d{word-spacing:2.005333pt;}
.ws5e{word-spacing:2.016000pt;}
.ws79{word-spacing:2.064000pt;}
.ws83{word-spacing:2.112000pt;}
.ws10e{word-spacing:2.133333pt;}
.wsb4{word-spacing:2.160000pt;}
.wsf0{word-spacing:2.176000pt;}
.wsc8{word-spacing:2.208000pt;}
.wsed{word-spacing:2.218667pt;}
.ws80{word-spacing:2.256000pt;}
.wsf7{word-spacing:2.261333pt;}
.wsb6{word-spacing:2.304000pt;}
.ws112{word-spacing:2.346667pt;}
.wsb2{word-spacing:2.352000pt;}
.ws134{word-spacing:2.389333pt;}
.ws70{word-spacing:2.400000pt;}
.wsb3{word-spacing:2.448000pt;}
.ws10b{word-spacing:2.474667pt;}
.ws91{word-spacing:2.496000pt;}
.ws44{word-spacing:2.501333pt;}
.ws148{word-spacing:2.517333pt;}
.ws3a{word-spacing:2.544000pt;}
.ws142{word-spacing:2.560000pt;}
.ws62{word-spacing:2.592000pt;}
.ws130{word-spacing:2.602667pt;}
.ws9a{word-spacing:2.640000pt;}
.wsee{word-spacing:2.645333pt;}
.ws18{word-spacing:2.688000pt;}
.wsc7{word-spacing:2.736000pt;}
.ws16{word-spacing:2.773333pt;}
.ws42{word-spacing:2.784000pt;}
.ws24{word-spacing:2.816000pt;}
.ws8d{word-spacing:2.832000pt;}
.ws21{word-spacing:2.858667pt;}
.wsa2{word-spacing:2.880000pt;}
.ws37{word-spacing:2.928000pt;}
.ws92{word-spacing:2.976000pt;}
.ws11b{word-spacing:2.986667pt;}
.ws69{word-spacing:3.024000pt;}
.wsb7{word-spacing:3.072000pt;}
.ws33{word-spacing:3.120000pt;}
.ws3c{word-spacing:3.168000pt;}
.ws125{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.216000pt;}
.ws15a{word-spacing:3.242667pt;}
.ws57{word-spacing:3.264000pt;}
.ws59{word-spacing:3.312000pt;}
.wsa1{word-spacing:3.360000pt;}
.ws8e{word-spacing:3.408000pt;}
.wsca{word-spacing:3.456000pt;}
.wsbf{word-spacing:3.504000pt;}
.wsbb{word-spacing:3.552000pt;}
.ws32{word-spacing:3.648000pt;}
.wsc9{word-spacing:3.744000pt;}
.ws39{word-spacing:3.792000pt;}
.wsc1{word-spacing:3.840000pt;}
.ws8f{word-spacing:3.888000pt;}
.wsc5{word-spacing:3.936000pt;}
.ws76{word-spacing:3.984000pt;}
.wsd1{word-spacing:4.032000pt;}
.wsd2{word-spacing:4.080000pt;}
.wsa4{word-spacing:4.128000pt;}
.wsc6{word-spacing:4.176000pt;}
.wsbe{word-spacing:4.272000pt;}
.ws97{word-spacing:4.320000pt;}
.wsce{word-spacing:4.368000pt;}
.ws7b{word-spacing:4.416000pt;}
.ws65{word-spacing:4.464000pt;}
.ws53{word-spacing:4.512000pt;}
.ws147{word-spacing:4.522667pt;}
.wsd0{word-spacing:4.560000pt;}
.wsd3{word-spacing:4.608000pt;}
.wsb8{word-spacing:4.656000pt;}
.ws67{word-spacing:4.704000pt;}
.wsf8{word-spacing:4.778667pt;}
.wsd4{word-spacing:4.992000pt;}
.ws23{word-spacing:5.376000pt;}
.ws116{word-spacing:5.717333pt;}
.wsd5{word-spacing:5.904000pt;}
.ws118{word-spacing:6.528000pt;}
.ws11a{word-spacing:6.570667pt;}
.ws15c{word-spacing:6.869333pt;}
.ws117{word-spacing:6.997333pt;}
.ws15b{word-spacing:7.168000pt;}
.ws22{word-spacing:7.594667pt;}
.ws73{word-spacing:7.968000pt;}
.ws10c{word-spacing:8.021333pt;}
.ws159{word-spacing:8.362667pt;}
.ws10d{word-spacing:8.704000pt;}
.wse{word-spacing:9.600000pt;}
.ws113{word-spacing:10.496000pt;}
.ws126{word-spacing:12.117333pt;}
.wsa{word-spacing:25.312000pt;}
.ws25{word-spacing:44.266667pt;}
.ws3{word-spacing:124.960000pt;}
.ws5{word-spacing:132.032000pt;}
.ws4{word-spacing:143.392000pt;}
._1a{margin-left:-12.283733pt;}
._18{margin-left:-9.706667pt;}
._17{margin-left:-8.139927pt;}
._16{margin-left:-7.061333pt;}
._15{margin-left:-5.617842pt;}
._3{margin-left:-4.710400pt;}
._b{margin-left:-3.470400pt;}
._4{margin-left:-2.267491pt;}
._1{margin-left:-1.216000pt;}
._0{width:1.222400pt;}
._7{width:2.184533pt;}
._6{width:3.127467pt;}
._e{width:4.182691pt;}
._c{width:5.272000pt;}
._14{width:6.295418pt;}
._19{width:7.483733pt;}
._12{width:8.529067pt;}
._13{width:9.813042pt;}
._9{width:21.573333pt;}
._2{width:27.200000pt;}
._8{width:31.460267pt;}
._5{width:34.090667pt;}
._11{width:38.722133pt;}
._d{width:39.684267pt;}
._a{width:81.493333pt;}
._10{width:93.600000pt;}
._f{width:95.790933pt;}
.fs6{font-size:26.666667pt;}
.fs3{font-size:28.666133pt;}
.fs0{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:37.422133pt;}
.y7{bottom:39.212533pt;}
.y2d{bottom:47.010800pt;}
.y5d{bottom:47.013467pt;}
.y2c{bottom:55.137467pt;}
.y5c{bottom:55.326800pt;}
.y6{bottom:64.332533pt;}
.y2e{bottom:66.859867pt;}
.y5{bottom:74.332533pt;}
.y59{bottom:90.708800pt;}
.y64{bottom:90.826800pt;}
.y99{bottom:91.305733pt;}
.yd{bottom:100.775733pt;}
.y58{bottom:102.375467pt;}
.ycc{bottom:103.916000pt;}
.y98{bottom:104.639067pt;}
.y63{bottom:105.826800pt;}
.yc{bottom:116.558400pt;}
.ycb{bottom:117.249333pt;}
.y97{bottom:117.972400pt;}
.y62{bottom:120.826800pt;}
.yca{bottom:130.582667pt;}
.y96{bottom:131.305733pt;}
.yb{bottom:131.879200pt;}
.yf{bottom:132.210376pt;}
.y73{bottom:134.757200pt;}
.y61{bottom:135.826800pt;}
.ye{bottom:139.885733pt;}
.ya{bottom:140.191200pt;}
.yc9{bottom:143.916000pt;}
.y95{bottom:144.639067pt;}
.y9{bottom:148.503200pt;}
.y57{bottom:150.826800pt;}
.yc8{bottom:157.249333pt;}
.y94{bottom:157.972400pt;}
.y8{bottom:164.936400pt;}
.y56{bottom:165.826800pt;}
.yc7{bottom:170.582667pt;}
.y93{bottom:171.305733pt;}
.y55{bottom:180.826800pt;}
.yc6{bottom:183.916000pt;}
.y92{bottom:184.639067pt;}
.y54{bottom:195.826800pt;}
.yc5{bottom:197.249333pt;}
.y91{bottom:197.972400pt;}
.y70{bottom:202.316267pt;}
.yc4{bottom:210.582667pt;}
.y53{bottom:210.826800pt;}
.y90{bottom:211.305733pt;}
.yc3{bottom:223.916000pt;}
.y8f{bottom:224.639067pt;}
.y52{bottom:225.826800pt;}
.yc2{bottom:237.249333pt;}
.y8e{bottom:237.972400pt;}
.y51{bottom:240.826800pt;}
.y2b{bottom:243.758533pt;}
.y66{bottom:247.316267pt;}
.yc1{bottom:250.582667pt;}
.y8d{bottom:251.305733pt;}
.y72{bottom:254.757200pt;}
.y50{bottom:255.826800pt;}
.y2a{bottom:257.091867pt;}
.yc0{bottom:263.916000pt;}
.y8c{bottom:264.639067pt;}
.y29{bottom:270.425200pt;}
.y4f{bottom:270.826800pt;}
.ybf{bottom:277.249333pt;}
.y8b{bottom:277.972400pt;}
.y28{bottom:283.758533pt;}
.y4e{bottom:285.826800pt;}
.ybe{bottom:290.582667pt;}
.y8a{bottom:291.305733pt;}
.y27{bottom:297.091867pt;}
.y4d{bottom:300.826800pt;}
.ybd{bottom:303.916000pt;}
.y89{bottom:304.639067pt;}
.y26{bottom:310.425200pt;}
.y4c{bottom:315.826800pt;}
.ybc{bottom:317.249333pt;}
.y88{bottom:317.972400pt;}
.ybb{bottom:330.582667pt;}
.y4b{bottom:330.826800pt;}
.y87{bottom:331.305733pt;}
.y25{bottom:338.876667pt;}
.yba{bottom:343.916000pt;}
.y86{bottom:344.639067pt;}
.y4a{bottom:345.826800pt;}
.y24{bottom:352.210000pt;}
.yb9{bottom:357.249333pt;}
.y85{bottom:357.972400pt;}
.y49{bottom:360.826800pt;}
.yb8{bottom:370.582667pt;}
.y84{bottom:371.305733pt;}
.y6a{bottom:374.757200pt;}
.y48{bottom:375.826800pt;}
.y23{bottom:380.661467pt;}
.yb7{bottom:383.916000pt;}
.y83{bottom:384.639067pt;}
.y47{bottom:390.826800pt;}
.y22{bottom:393.994800pt;}
.yb6{bottom:397.249333pt;}
.y82{bottom:397.972400pt;}
.y46{bottom:405.826800pt;}
.y21{bottom:407.328133pt;}
.yb5{bottom:410.582667pt;}
.y81{bottom:411.305733pt;}
.y6c{bottom:412.316267pt;}
.y20{bottom:420.661467pt;}
.y45{bottom:420.826800pt;}
.yb4{bottom:423.916000pt;}
.y80{bottom:424.639067pt;}
.y1f{bottom:433.994800pt;}
.y44{bottom:435.826800pt;}
.yb3{bottom:437.249333pt;}
.y7f{bottom:437.972400pt;}
.y1e{bottom:447.328133pt;}
.yb2{bottom:450.582667pt;}
.y43{bottom:450.826800pt;}
.y7e{bottom:451.305733pt;}
.y1d{bottom:460.661467pt;}
.yb1{bottom:463.916000pt;}
.y7d{bottom:464.639067pt;}
.y42{bottom:465.826800pt;}
.y68{bottom:472.316267pt;}
.y1c{bottom:473.994800pt;}
.yb0{bottom:477.249333pt;}
.y7c{bottom:477.972400pt;}
.y71{bottom:479.757200pt;}
.y41{bottom:480.826800pt;}
.y1b{bottom:487.328133pt;}
.yaf{bottom:490.582667pt;}
.y7b{bottom:491.305733pt;}
.y40{bottom:495.826800pt;}
.y1a{bottom:500.661467pt;}
.y67{bottom:502.316267pt;}
.yae{bottom:503.916000pt;}
.y7a{bottom:504.639067pt;}
.y3f{bottom:510.826800pt;}
.y19{bottom:513.994800pt;}
.yad{bottom:517.249333pt;}
.y60{bottom:517.316267pt;}
.y79{bottom:517.972400pt;}
.y3e{bottom:525.826800pt;}
.y18{bottom:527.328133pt;}
.yac{bottom:530.582667pt;}
.y78{bottom:531.305733pt;}
.y6f{bottom:532.316267pt;}
.y17{bottom:540.661467pt;}
.y3d{bottom:540.826800pt;}
.yab{bottom:543.916000pt;}
.y77{bottom:544.639067pt;}
.y6e{bottom:547.316267pt;}
.y16{bottom:553.994800pt;}
.y3c{bottom:555.826800pt;}
.yaa{bottom:557.249333pt;}
.y76{bottom:557.972400pt;}
.y15{bottom:567.328133pt;}
.ya9{bottom:570.582667pt;}
.y3b{bottom:570.826800pt;}
.y75{bottom:571.305733pt;}
.y14{bottom:580.664133pt;}
.ya8{bottom:583.916000pt;}
.y3a{bottom:585.826800pt;}
.ya7{bottom:597.249333pt;}
.y74{bottom:599.757200pt;}
.y39{bottom:600.826800pt;}
.ya6{bottom:610.582667pt;}
.y38{bottom:615.826800pt;}
.y13{bottom:619.970800pt;}
.y6d{bottom:622.316267pt;}
.ya5{bottom:623.916000pt;}
.y37{bottom:630.826800pt;}
.y12{bottom:633.304133pt;}
.ya4{bottom:637.249333pt;}
.y36{bottom:645.826800pt;}
.ya3{bottom:650.582667pt;}
.y35{bottom:660.826800pt;}
.y11{bottom:661.755600pt;}
.ya2{bottom:663.916000pt;}
.y69{bottom:667.316267pt;}
.y34{bottom:675.826800pt;}
.ya1{bottom:677.249333pt;}
.y10{bottom:688.422267pt;}
.ya0{bottom:690.582667pt;}
.y33{bottom:690.826800pt;}
.y6b{bottom:697.316267pt;}
.y9f{bottom:703.916000pt;}
.y32{bottom:705.826800pt;}
.y65{bottom:712.316267pt;}
.y9e{bottom:717.249333pt;}
.y31{bottom:720.826800pt;}
.y9d{bottom:730.582667pt;}
.y30{bottom:735.826800pt;}
.y9c{bottom:743.916000pt;}
.y5f{bottom:750.826800pt;}
.y9b{bottom:757.249333pt;}
.y3{bottom:759.181200pt;}
.y5e{bottom:765.826800pt;}
.y2f{bottom:768.582667pt;}
.y9a{bottom:770.582667pt;}
.y2{bottom:771.842533pt;}
.y5b{bottom:797.653467pt;}
.y1{bottom:806.598533pt;}
.y5a{bottom:809.320133pt;}
.h7{height:21.212939pt;}
.hc{height:21.280000pt;}
.h8{height:21.614265pt;}
.h2{height:26.016000pt;}
.h5{height:26.432000pt;}
.h10{height:26.805333pt;}
.h6{height:30.837333pt;}
.h14{height:31.232000pt;}
.hb{height:34.048000pt;}
.hf{height:34.343750pt;}
.h15{height:34.560000pt;}
.h4{height:34.688000pt;}
.h3{height:35.242667pt;}
.h11{height:38.293333pt;}
.h12{height:39.146667pt;}
.ha{height:43.360000pt;}
.h13{height:44.053333pt;}
.he{height:44.156250pt;}
.hd{height:44.640757pt;}
.h9{height:78.293333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:113.608933pt;}
.x9{left:128.505867pt;}
.x1{left:181.417333pt;}
.xb{left:228.214133pt;}
.x4{left:234.330667pt;}
.x3{left:235.590533pt;}
.x7{left:375.013867pt;}
.x6{left:398.807200pt;}
.xa{left:421.404800pt;}
.x8{left:424.530133pt;}
.xd{left:457.721600pt;}
.x2{left:477.847200pt;}
.xc{left:487.725733pt;}
}




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