
    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_437f1f6a3448ffb02eb1ca65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.141000;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_90c1a04c25093fd3605b21e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_d67a633b8ab55cb5d803a51b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119000;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_9ccd855266682e5cb5994632.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_90c1a04c25093fd3605b21e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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_b5231c226d86886494072526.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245285,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245334,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245410,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.245437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245437,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245520,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245673,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245698,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245793,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245802,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.245849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245849,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.245854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245854,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245880,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245973,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245998,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246117,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246246,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246261,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246346,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246711,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246720,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246846,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247402,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247420,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247427,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247654,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.247871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247871,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247883,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248237,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248263,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.mf7{transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248476,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248854,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248873,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249429,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,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);}
.m91{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250072,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250076,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m89{transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250654,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251005,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251034,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.251124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251124,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251134,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251317,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251449,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251451,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251502,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251506,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251556,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.m171{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);}
.mc9{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.251666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251666,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251732,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251749,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251766,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251841,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252041,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252044,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.md3{transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252288,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252454,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252458,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.252534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252534,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252539,0.000000,0.000000,0.250000,0,0);}
.m170{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);}
.m80{transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252617,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252624,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m30{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.252754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252754,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252793,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.252861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252861,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252932,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252951,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253041,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253154,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253261,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253264,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253271,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.253324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253324,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253341,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.253351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253351,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253456,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253471,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253476,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253602,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253607,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253612,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253624,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253654,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.253678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253678,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253688,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.253776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253776,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253798,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253802,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253976,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253998,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254046,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.254102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254102,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254117,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.254144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254144,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254159,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254227,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254273,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254288,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254339,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254361,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254493,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254532,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254573,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254644,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254654,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254724,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254729,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254754,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254812,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254817,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254841,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254856,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254912,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254922,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.me7{transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262269,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-48.000000px;}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-4.305000px;}
.ls39{letter-spacing:-3.136500px;}
.ls31{letter-spacing:-3.075000px;}
.ls33{letter-spacing:-0.615000px;}
.ls24{letter-spacing:-0.553500px;}
.ls17{letter-spacing:-0.492000px;}
.ls38{letter-spacing:-0.430500px;}
.ls28{letter-spacing:-0.369000px;}
.ls16{letter-spacing:-0.307500px;}
.ls18{letter-spacing:-0.246000px;}
.ls4d{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.184500px;}
.ls4b{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.123000px;}
.ls19{letter-spacing:-0.061500px;}
.ls4c{letter-spacing:-0.054000px;}
.ls13{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.001500px;}
.ls3d{letter-spacing:0.024078px;}
.ls1c{letter-spacing:0.030750px;}
.ls49{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.061500px;}
.ls2b{letter-spacing:0.092250px;}
.ls46{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.123000px;}
.ls21{letter-spacing:0.153750px;}
.ls48{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.184500px;}
.ls43{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.246000px;}
.ls3c{letter-spacing:0.261265px;}
.ls20{letter-spacing:0.276750px;}
.lse{letter-spacing:0.307500px;}
.ls26{letter-spacing:0.338250px;}
.ls7{letter-spacing:0.369000px;}
.ls29{letter-spacing:0.399750px;}
.ls12{letter-spacing:0.430500px;}
.ls45{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.461250px;}
.lsb{letter-spacing:0.492000px;}
.ls36{letter-spacing:0.522750px;}
.ls47{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.553500px;}
.ls9{letter-spacing:0.584250px;}
.ls35{letter-spacing:0.602441px;}
.ls1d{letter-spacing:0.615000px;}
.ls22{letter-spacing:0.676500px;}
.ls1e{letter-spacing:0.738000px;}
.ls1a{letter-spacing:0.799500px;}
.ls2e{letter-spacing:0.861000px;}
.ls44{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.867147px;}
.ls1b{letter-spacing:0.922500px;}
.ls37{letter-spacing:0.953250px;}
.ls8{letter-spacing:0.984000px;}
.ls4{letter-spacing:1.045500px;}
.ls42{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.107000px;}
.ls10{letter-spacing:1.230000px;}
.ls0{letter-spacing:1.278912px;}
.ls2d{letter-spacing:1.291500px;}
.ls41{letter-spacing:1.322250px;}
.ls23{letter-spacing:1.353000px;}
.ls1{letter-spacing:1.414500px;}
.ls2a{letter-spacing:1.476000px;}
.ls30{letter-spacing:1.537500px;}
.ls11{letter-spacing:1.599000px;}
.ls27{letter-spacing:1.660500px;}
.ls25{letter-spacing:1.722000px;}
.ls3e{letter-spacing:1.752750px;}
.ls34{letter-spacing:1.783500px;}
.ls3f{letter-spacing:1.814250px;}
.ls2f{letter-spacing:1.845000px;}
.ls3{letter-spacing:1.855382px;}
.ls40{letter-spacing:2.029500px;}
.ls2{letter-spacing:2.091000px;}
.lsc{letter-spacing:2.460000px;}
.ls4a{letter-spacing:3.075000px;}
.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;}
}
.ws93{word-spacing:-13.837500px;}
.wsa3{word-spacing:-13.776000px;}
.ws60{word-spacing:-13.243500px;}
.ws94{word-spacing:-13.222500px;}
.wsa4{word-spacing:-12.976500px;}
.wsa5{word-spacing:-12.853500px;}
.wsbe{word-spacing:-12.669000px;}
.wsa1{word-spacing:-12.546000px;}
.ws4a{word-spacing:-12.484500px;}
.ws80{word-spacing:-12.300000px;}
.ws0{word-spacing:-12.238500px;}
.wsca{word-spacing:-12.150000px;}
.ws81{word-spacing:-9.225000px;}
.wsa2{word-spacing:-9.163500px;}
.ws36{word-spacing:-4.182000px;}
.ws11{word-spacing:-3.505500px;}
.ws72{word-spacing:-3.013500px;}
.wsbb{word-spacing:-2.952000px;}
.ws59{word-spacing:-2.890500px;}
.wsc5{word-spacing:-2.706000px;}
.wsb4{word-spacing:-2.583000px;}
.ws3a{word-spacing:-2.460000px;}
.wsc6{word-spacing:-2.398500px;}
.ws37{word-spacing:-2.214000px;}
.wsb{word-spacing:-2.152500px;}
.ws4{word-spacing:-2.091000px;}
.ws21{word-spacing:-2.029500px;}
.wsa9{word-spacing:-1.906500px;}
.wsaa{word-spacing:-1.845000px;}
.wscf{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.783500px;}
.wsd9{word-spacing:-1.782000px;}
.ws24{word-spacing:-1.722000px;}
.wsc0{word-spacing:-1.660500px;}
.ws12{word-spacing:-1.537500px;}
.ws6f{word-spacing:-1.476000px;}
.ws70{word-spacing:-1.414500px;}
.ws42{word-spacing:-1.353000px;}
.ws40{word-spacing:-1.291500px;}
.ws63{word-spacing:-1.230000px;}
.ws6a{word-spacing:-1.168500px;}
.wsd4{word-spacing:-1.134000px;}
.ws44{word-spacing:-1.107000px;}
.ws5d{word-spacing:-1.045500px;}
.ws18{word-spacing:-0.984000px;}
.ws82{word-spacing:-0.922500px;}
.ws41{word-spacing:-0.861000px;}
.wsa8{word-spacing:-0.799500px;}
.ws8b{word-spacing:-0.738000px;}
.ws54{word-spacing:-0.676500px;}
.ws62{word-spacing:-0.615000px;}
.ws17{word-spacing:-0.553500px;}
.wsd6{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.492000px;}
.wsd8{word-spacing:-0.432000px;}
.ws6e{word-spacing:-0.430500px;}
.ws16{word-spacing:-0.369000px;}
.wsb6{word-spacing:-0.307500px;}
.ws69{word-spacing:-0.246000px;}
.ws52{word-spacing:-0.184500px;}
.ws7f{word-spacing:-0.123000px;}
.ws50{word-spacing:-0.061500px;}
.ws1{word-spacing:0.000000px;}
.ws91{word-spacing:0.061500px;}
.ws20{word-spacing:0.123000px;}
.ws96{word-spacing:0.184500px;}
.ws1b{word-spacing:0.246000px;}
.ws7e{word-spacing:0.307500px;}
.ws9e{word-spacing:0.369000px;}
.ws33{word-spacing:0.430500px;}
.ws1c{word-spacing:0.492000px;}
.wsa0{word-spacing:0.553500px;}
.ws7{word-spacing:0.615000px;}
.ws3c{word-spacing:0.676500px;}
.ws6{word-spacing:0.738000px;}
.ws29{word-spacing:0.799500px;}
.ws95{word-spacing:0.861000px;}
.ws7d{word-spacing:0.922500px;}
.ws34{word-spacing:0.984000px;}
.ws19{word-spacing:1.045500px;}
.ws32{word-spacing:1.107000px;}
.ws85{word-spacing:1.168500px;}
.ws38{word-spacing:1.230000px;}
.ws5c{word-spacing:1.291500px;}
.wse{word-spacing:1.353000px;}
.ws5b{word-spacing:1.476000px;}
.ws47{word-spacing:1.537500px;}
.wsde{word-spacing:1.599000px;}
.ws14{word-spacing:1.660500px;}
.wsd{word-spacing:1.722000px;}
.wsd1{word-spacing:1.782000px;}
.wsc{word-spacing:1.783500px;}
.wsd5{word-spacing:1.836000px;}
.ws28{word-spacing:1.845000px;}
.ws39{word-spacing:1.906500px;}
.wsa{word-spacing:2.029500px;}
.ws9{word-spacing:2.091000px;}
.ws86{word-spacing:2.152500px;}
.ws97{word-spacing:2.214000px;}
.ws45{word-spacing:2.275500px;}
.ws64{word-spacing:2.337000px;}
.wsc3{word-spacing:2.398500px;}
.wsae{word-spacing:2.460000px;}
.ws22{word-spacing:2.521500px;}
.wsf{word-spacing:2.583000px;}
.ws13{word-spacing:2.644500px;}
.ws9d{word-spacing:2.706000px;}
.ws4e{word-spacing:2.767500px;}
.wsc4{word-spacing:2.829000px;}
.ws5e{word-spacing:2.890500px;}
.ws3e{word-spacing:2.952000px;}
.ws1a{word-spacing:3.013500px;}
.wsb9{word-spacing:3.075000px;}
.wsb1{word-spacing:3.136500px;}
.ws51{word-spacing:3.198000px;}
.ws27{word-spacing:3.259500px;}
.ws4d{word-spacing:3.321000px;}
.wsd3{word-spacing:3.402000px;}
.ws23{word-spacing:3.444000px;}
.ws1e{word-spacing:3.505500px;}
.wsad{word-spacing:3.628500px;}
.wsbd{word-spacing:3.690000px;}
.wsb8{word-spacing:3.751500px;}
.ws2a{word-spacing:3.813000px;}
.wsb2{word-spacing:3.874500px;}
.wsb5{word-spacing:3.936000px;}
.wsaf{word-spacing:3.997500px;}
.wsd7{word-spacing:4.050000px;}
.ws6b{word-spacing:4.059000px;}
.wsb7{word-spacing:4.120500px;}
.wscb{word-spacing:4.182000px;}
.ws35{word-spacing:4.305000px;}
.ws15{word-spacing:4.366500px;}
.ws4b{word-spacing:4.428000px;}
.ws57{word-spacing:4.489500px;}
.ws7b{word-spacing:4.551000px;}
.ws7a{word-spacing:4.612500px;}
.ws2f{word-spacing:4.674000px;}
.wsbf{word-spacing:4.735500px;}
.ws56{word-spacing:4.797000px;}
.ws9c{word-spacing:4.858500px;}
.ws7c{word-spacing:5.043000px;}
.wsdd{word-spacing:5.104500px;}
.ws8a{word-spacing:5.166000px;}
.ws83{word-spacing:5.227500px;}
.ws49{word-spacing:5.289000px;}
.ws73{word-spacing:5.350500px;}
.ws98{word-spacing:5.412000px;}
.ws3f{word-spacing:5.473500px;}
.ws9f{word-spacing:5.596500px;}
.ws99{word-spacing:5.658000px;}
.ws31{word-spacing:5.719500px;}
.ws43{word-spacing:5.781000px;}
.ws71{word-spacing:5.842500px;}
.ws2c{word-spacing:5.965500px;}
.ws48{word-spacing:6.027000px;}
.ws76{word-spacing:6.150000px;}
.ws65{word-spacing:6.211500px;}
.ws84{word-spacing:6.396000px;}
.wsc1{word-spacing:6.519000px;}
.ws9a{word-spacing:6.580500px;}
.ws79{word-spacing:6.642000px;}
.wsd2{word-spacing:6.696000px;}
.ws2d{word-spacing:6.703500px;}
.ws55{word-spacing:6.765000px;}
.ws87{word-spacing:6.826500px;}
.ws67{word-spacing:6.888000px;}
.ws6d{word-spacing:6.949500px;}
.ws4f{word-spacing:7.011000px;}
.ws68{word-spacing:7.072500px;}
.ws5f{word-spacing:7.134000px;}
.ws10{word-spacing:7.257000px;}
.ws6c{word-spacing:7.318500px;}
.wsc7{word-spacing:7.380000px;}
.ws30{word-spacing:7.441500px;}
.ws8c{word-spacing:7.503000px;}
.wsba{word-spacing:7.564500px;}
.ws8{word-spacing:7.626000px;}
.ws3d{word-spacing:7.687500px;}
.wsce{word-spacing:7.810500px;}
.ws46{word-spacing:7.933500px;}
.ws1d{word-spacing:7.995000px;}
.wsd0{word-spacing:8.046000px;}
.wscc{word-spacing:8.056500px;}
.wsb0{word-spacing:8.118000px;}
.ws88{word-spacing:8.364000px;}
.ws77{word-spacing:8.487000px;}
.ws25{word-spacing:9.040500px;}
.wsc8{word-spacing:9.102000px;}
.ws8d{word-spacing:9.225000px;}
.wsac{word-spacing:9.471000px;}
.ws78{word-spacing:9.655500px;}
.ws8e{word-spacing:9.840000px;}
.ws2e{word-spacing:9.901500px;}
.ws75{word-spacing:9.963000px;}
.wsdb{word-spacing:10.147500px;}
.ws9b{word-spacing:10.332000px;}
.wsab{word-spacing:10.393500px;}
.ws66{word-spacing:10.455000px;}
.ws5{word-spacing:10.516500px;}
.wsa7{word-spacing:10.701000px;}
.ws2{word-spacing:10.824000px;}
.ws74{word-spacing:10.885500px;}
.ws8f{word-spacing:11.254500px;}
.wsbc{word-spacing:11.685000px;}
.ws58{word-spacing:11.992500px;}
.ws26{word-spacing:12.054000px;}
.ws89{word-spacing:12.361500px;}
.ws5a{word-spacing:12.484500px;}
.ws4c{word-spacing:12.730500px;}
.wsda{word-spacing:13.099500px;}
.wsc2{word-spacing:13.161000px;}
.wsa6{word-spacing:13.591500px;}
.ws90{word-spacing:13.653000px;}
.wscd{word-spacing:15.375000px;}
.ws3{word-spacing:15.621000px;}
.ws1f{word-spacing:18.450000px;}
.wsdc{word-spacing:22.939500px;}
.wsb3{word-spacing:588.755400px;}
.wsc9{word-spacing:591.708300px;}
.ws61{word-spacing:592.815000px;}
.ws92{word-spacing:593.490900px;}
.ws2b{word-spacing:595.766400px;}
._5{margin-left:-16.038000px;}
._c{margin-left:-8.128350px;}
._8{margin-left:-4.753950px;}
._4{margin-left:-3.745350px;}
._3{margin-left:-2.742900px;}
._1{margin-left:-1.197480px;}
._2{width:1.254600px;}
._7{width:2.387750px;}
._a{width:4.010110px;}
._b{width:5.066676px;}
._9{width:13.243500px;}
._0{width:1845.601680px;}
._6{width:2340.211147px;}
.fc1{color:rgb(0,22,137);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.899200px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:61.500000px;}
.fs4{font-size:115.816200px;}
.fs3{font-size:121.500000px;}
.fs6{font-size:180.000000px;}
.fs2{font-size:243.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.834700px;}
.y24{bottom:108.584700px;}
.y23{bottom:128.834700px;}
.y22{bottom:149.084700px;}
.y21{bottom:169.335000px;}
.y20{bottom:189.585000px;}
.y1f{bottom:209.835000px;}
.y1e{bottom:230.085000px;}
.y1d{bottom:250.335000px;}
.y1c{bottom:270.585000px;}
.y1b{bottom:290.835000px;}
.y1a{bottom:311.085000px;}
.y19{bottom:331.335000px;}
.y18{bottom:351.585000px;}
.y17{bottom:371.835000px;}
.y16{bottom:392.085000px;}
.y15{bottom:412.335000px;}
.y1{bottom:432.585000px;}
.y14{bottom:452.835000px;}
.y26{bottom:473.085000px;}
.y13{bottom:493.335000px;}
.y12{bottom:513.585000px;}
.y11{bottom:533.835000px;}
.y10{bottom:554.085000px;}
.yf{bottom:574.335000px;}
.ye{bottom:594.585000px;}
.yd{bottom:614.835000px;}
.y4b{bottom:626.625000px;}
.yc{bottom:635.085000px;}
.yb{bottom:655.335000px;}
.y4a{bottom:657.000000px;}
.ya{bottom:675.585000px;}
.y49{bottom:687.375000px;}
.y9{bottom:695.835000px;}
.y25{bottom:716.085000px;}
.y48{bottom:717.750000px;}
.y8{bottom:736.335000px;}
.y47{bottom:748.125000px;}
.y7{bottom:756.585000px;}
.y6{bottom:776.835000px;}
.y46{bottom:778.500000px;}
.y4e{bottom:786.960000px;}
.y5{bottom:797.085000px;}
.y4{bottom:817.335000px;}
.y3{bottom:837.585000px;}
.y4d{bottom:847.710000px;}
.y39{bottom:857.835000px;}
.y38{bottom:878.085000px;}
.y37{bottom:898.335000px;}
.y4c{bottom:908.460000px;}
.y36{bottom:918.585000px;}
.y35{bottom:938.835000px;}
.y2a{bottom:957.532500px;}
.y34{bottom:959.085000px;}
.y45{bottom:978.108000px;}
.y33{bottom:979.335000px;}
.y32{bottom:999.585000px;}
.y29{bottom:1006.677000px;}
.y44{bottom:1007.062500px;}
.y3a{bottom:1019.835000px;}
.y43{bottom:1036.017000px;}
.y31{bottom:1040.085000px;}
.y3e{bottom:1059.111000px;}
.y30{bottom:1060.335000px;}
.y42{bottom:1064.970000px;}
.y28{bottom:1067.427000px;}
.y2f{bottom:1080.585000px;}
.y3d{bottom:1089.486000px;}
.y41{bottom:1093.924500px;}
.y2e{bottom:1100.835000px;}
.y3c{bottom:1119.861000px;}
.y2d{bottom:1121.085000px;}
.y40{bottom:1122.879000px;}
.y27{bottom:1128.177000px;}
.y2c{bottom:1141.335000px;}
.y3b{bottom:1150.236000px;}
.y3f{bottom:1151.833500px;}
.y2b{bottom:1161.585000px;}
.h3{height:44.067264px;}
.h5{height:48.154500px;}
.h9{height:49.680000px;}
.h8{height:55.965000px;}
.h2{height:56.580000px;}
.h7{height:103.076418px;}
.h6{height:108.135000px;}
.ha{height:117.600000px;}
.h4{height:216.270000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-92.790000px;}
.x0{left:0.000000px;}
.x2{left:60.750000px;}
.x5{left:89.460000px;}
.x12{left:105.599400px;}
.x7{left:121.500000px;}
.x13{left:124.187550px;}
.x14{left:137.188350px;}
.x10{left:141.684600px;}
.x11{left:143.385150px;}
.x16{left:151.500000px;}
.xc{left:162.369000px;}
.x3{left:166.375500px;}
.xb{left:172.392000px;}
.xa{left:197.056500px;}
.x15{left:244.713000px;}
.xd{left:276.363000px;}
.xe{left:404.097000px;}
.x8{left:438.373500px;}
.x17{left:468.375000px;}
.xf{left:482.226000px;}
.x4{left:483.249000px;}
.x9{left:721.059000px;}
.x1{left:800.124000px;}
@media print{
.v1{vertical-align:-42.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-3.826667pt;}
.ls39{letter-spacing:-2.788000pt;}
.ls31{letter-spacing:-2.733333pt;}
.ls33{letter-spacing:-0.546667pt;}
.ls24{letter-spacing:-0.492000pt;}
.ls17{letter-spacing:-0.437333pt;}
.ls38{letter-spacing:-0.382667pt;}
.ls28{letter-spacing:-0.328000pt;}
.ls16{letter-spacing:-0.273333pt;}
.ls18{letter-spacing:-0.218667pt;}
.ls4d{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.164000pt;}
.ls4b{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.109333pt;}
.ls19{letter-spacing:-0.054667pt;}
.ls4c{letter-spacing:-0.048000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.001333pt;}
.ls3d{letter-spacing:0.021403pt;}
.ls1c{letter-spacing:0.027333pt;}
.ls49{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.054667pt;}
.ls2b{letter-spacing:0.082000pt;}
.ls46{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.109333pt;}
.ls21{letter-spacing:0.136667pt;}
.ls48{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.164000pt;}
.ls43{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.218667pt;}
.ls3c{letter-spacing:0.232235pt;}
.ls20{letter-spacing:0.246000pt;}
.lse{letter-spacing:0.273333pt;}
.ls26{letter-spacing:0.300667pt;}
.ls7{letter-spacing:0.328000pt;}
.ls29{letter-spacing:0.355333pt;}
.ls12{letter-spacing:0.382667pt;}
.ls45{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.410000pt;}
.lsb{letter-spacing:0.437333pt;}
.ls36{letter-spacing:0.464667pt;}
.ls47{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.492000pt;}
.ls9{letter-spacing:0.519333pt;}
.ls35{letter-spacing:0.535503pt;}
.ls1d{letter-spacing:0.546667pt;}
.ls22{letter-spacing:0.601333pt;}
.ls1e{letter-spacing:0.656000pt;}
.ls1a{letter-spacing:0.710667pt;}
.ls2e{letter-spacing:0.765333pt;}
.ls44{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.770797pt;}
.ls1b{letter-spacing:0.820000pt;}
.ls37{letter-spacing:0.847333pt;}
.ls8{letter-spacing:0.874667pt;}
.ls4{letter-spacing:0.929333pt;}
.ls42{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:0.984000pt;}
.ls10{letter-spacing:1.093333pt;}
.ls0{letter-spacing:1.136810pt;}
.ls2d{letter-spacing:1.148000pt;}
.ls41{letter-spacing:1.175333pt;}
.ls23{letter-spacing:1.202667pt;}
.ls1{letter-spacing:1.257333pt;}
.ls2a{letter-spacing:1.312000pt;}
.ls30{letter-spacing:1.366667pt;}
.ls11{letter-spacing:1.421333pt;}
.ls27{letter-spacing:1.476000pt;}
.ls25{letter-spacing:1.530667pt;}
.ls3e{letter-spacing:1.558000pt;}
.ls34{letter-spacing:1.585333pt;}
.ls3f{letter-spacing:1.612667pt;}
.ls2f{letter-spacing:1.640000pt;}
.ls3{letter-spacing:1.649229pt;}
.ls40{letter-spacing:1.804000pt;}
.ls2{letter-spacing:1.858667pt;}
.lsc{letter-spacing:2.186667pt;}
.ls4a{letter-spacing:2.733333pt;}
.ws93{word-spacing:-12.300000pt;}
.wsa3{word-spacing:-12.245333pt;}
.ws60{word-spacing:-11.772000pt;}
.ws94{word-spacing:-11.753333pt;}
.wsa4{word-spacing:-11.534667pt;}
.wsa5{word-spacing:-11.425333pt;}
.wsbe{word-spacing:-11.261333pt;}
.wsa1{word-spacing:-11.152000pt;}
.ws4a{word-spacing:-11.097333pt;}
.ws80{word-spacing:-10.933333pt;}
.ws0{word-spacing:-10.878667pt;}
.wsca{word-spacing:-10.800000pt;}
.ws81{word-spacing:-8.200000pt;}
.wsa2{word-spacing:-8.145333pt;}
.ws36{word-spacing:-3.717333pt;}
.ws11{word-spacing:-3.116000pt;}
.ws72{word-spacing:-2.678667pt;}
.wsbb{word-spacing:-2.624000pt;}
.ws59{word-spacing:-2.569333pt;}
.wsc5{word-spacing:-2.405333pt;}
.wsb4{word-spacing:-2.296000pt;}
.ws3a{word-spacing:-2.186667pt;}
.wsc6{word-spacing:-2.132000pt;}
.ws37{word-spacing:-1.968000pt;}
.wsb{word-spacing:-1.913333pt;}
.ws4{word-spacing:-1.858667pt;}
.ws21{word-spacing:-1.804000pt;}
.wsa9{word-spacing:-1.694667pt;}
.wsaa{word-spacing:-1.640000pt;}
.wscf{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.585333pt;}
.wsd9{word-spacing:-1.584000pt;}
.ws24{word-spacing:-1.530667pt;}
.wsc0{word-spacing:-1.476000pt;}
.ws12{word-spacing:-1.366667pt;}
.ws6f{word-spacing:-1.312000pt;}
.ws70{word-spacing:-1.257333pt;}
.ws42{word-spacing:-1.202667pt;}
.ws40{word-spacing:-1.148000pt;}
.ws63{word-spacing:-1.093333pt;}
.ws6a{word-spacing:-1.038667pt;}
.wsd4{word-spacing:-1.008000pt;}
.ws44{word-spacing:-0.984000pt;}
.ws5d{word-spacing:-0.929333pt;}
.ws18{word-spacing:-0.874667pt;}
.ws82{word-spacing:-0.820000pt;}
.ws41{word-spacing:-0.765333pt;}
.wsa8{word-spacing:-0.710667pt;}
.ws8b{word-spacing:-0.656000pt;}
.ws54{word-spacing:-0.601333pt;}
.ws62{word-spacing:-0.546667pt;}
.ws17{word-spacing:-0.492000pt;}
.wsd6{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.437333pt;}
.wsd8{word-spacing:-0.384000pt;}
.ws6e{word-spacing:-0.382667pt;}
.ws16{word-spacing:-0.328000pt;}
.wsb6{word-spacing:-0.273333pt;}
.ws69{word-spacing:-0.218667pt;}
.ws52{word-spacing:-0.164000pt;}
.ws7f{word-spacing:-0.109333pt;}
.ws50{word-spacing:-0.054667pt;}
.ws1{word-spacing:0.000000pt;}
.ws91{word-spacing:0.054667pt;}
.ws20{word-spacing:0.109333pt;}
.ws96{word-spacing:0.164000pt;}
.ws1b{word-spacing:0.218667pt;}
.ws7e{word-spacing:0.273333pt;}
.ws9e{word-spacing:0.328000pt;}
.ws33{word-spacing:0.382667pt;}
.ws1c{word-spacing:0.437333pt;}
.wsa0{word-spacing:0.492000pt;}
.ws7{word-spacing:0.546667pt;}
.ws3c{word-spacing:0.601333pt;}
.ws6{word-spacing:0.656000pt;}
.ws29{word-spacing:0.710667pt;}
.ws95{word-spacing:0.765333pt;}
.ws7d{word-spacing:0.820000pt;}
.ws34{word-spacing:0.874667pt;}
.ws19{word-spacing:0.929333pt;}
.ws32{word-spacing:0.984000pt;}
.ws85{word-spacing:1.038667pt;}
.ws38{word-spacing:1.093333pt;}
.ws5c{word-spacing:1.148000pt;}
.wse{word-spacing:1.202667pt;}
.ws5b{word-spacing:1.312000pt;}
.ws47{word-spacing:1.366667pt;}
.wsde{word-spacing:1.421333pt;}
.ws14{word-spacing:1.476000pt;}
.wsd{word-spacing:1.530667pt;}
.wsd1{word-spacing:1.584000pt;}
.wsc{word-spacing:1.585333pt;}
.wsd5{word-spacing:1.632000pt;}
.ws28{word-spacing:1.640000pt;}
.ws39{word-spacing:1.694667pt;}
.wsa{word-spacing:1.804000pt;}
.ws9{word-spacing:1.858667pt;}
.ws86{word-spacing:1.913333pt;}
.ws97{word-spacing:1.968000pt;}
.ws45{word-spacing:2.022667pt;}
.ws64{word-spacing:2.077333pt;}
.wsc3{word-spacing:2.132000pt;}
.wsae{word-spacing:2.186667pt;}
.ws22{word-spacing:2.241333pt;}
.wsf{word-spacing:2.296000pt;}
.ws13{word-spacing:2.350667pt;}
.ws9d{word-spacing:2.405333pt;}
.ws4e{word-spacing:2.460000pt;}
.wsc4{word-spacing:2.514667pt;}
.ws5e{word-spacing:2.569333pt;}
.ws3e{word-spacing:2.624000pt;}
.ws1a{word-spacing:2.678667pt;}
.wsb9{word-spacing:2.733333pt;}
.wsb1{word-spacing:2.788000pt;}
.ws51{word-spacing:2.842667pt;}
.ws27{word-spacing:2.897333pt;}
.ws4d{word-spacing:2.952000pt;}
.wsd3{word-spacing:3.024000pt;}
.ws23{word-spacing:3.061333pt;}
.ws1e{word-spacing:3.116000pt;}
.wsad{word-spacing:3.225333pt;}
.wsbd{word-spacing:3.280000pt;}
.wsb8{word-spacing:3.334667pt;}
.ws2a{word-spacing:3.389333pt;}
.wsb2{word-spacing:3.444000pt;}
.wsb5{word-spacing:3.498667pt;}
.wsaf{word-spacing:3.553333pt;}
.wsd7{word-spacing:3.600000pt;}
.ws6b{word-spacing:3.608000pt;}
.wsb7{word-spacing:3.662667pt;}
.wscb{word-spacing:3.717333pt;}
.ws35{word-spacing:3.826667pt;}
.ws15{word-spacing:3.881333pt;}
.ws4b{word-spacing:3.936000pt;}
.ws57{word-spacing:3.990667pt;}
.ws7b{word-spacing:4.045333pt;}
.ws7a{word-spacing:4.100000pt;}
.ws2f{word-spacing:4.154667pt;}
.wsbf{word-spacing:4.209333pt;}
.ws56{word-spacing:4.264000pt;}
.ws9c{word-spacing:4.318667pt;}
.ws7c{word-spacing:4.482667pt;}
.wsdd{word-spacing:4.537333pt;}
.ws8a{word-spacing:4.592000pt;}
.ws83{word-spacing:4.646667pt;}
.ws49{word-spacing:4.701333pt;}
.ws73{word-spacing:4.756000pt;}
.ws98{word-spacing:4.810667pt;}
.ws3f{word-spacing:4.865333pt;}
.ws9f{word-spacing:4.974667pt;}
.ws99{word-spacing:5.029333pt;}
.ws31{word-spacing:5.084000pt;}
.ws43{word-spacing:5.138667pt;}
.ws71{word-spacing:5.193333pt;}
.ws2c{word-spacing:5.302667pt;}
.ws48{word-spacing:5.357333pt;}
.ws76{word-spacing:5.466667pt;}
.ws65{word-spacing:5.521333pt;}
.ws84{word-spacing:5.685333pt;}
.wsc1{word-spacing:5.794667pt;}
.ws9a{word-spacing:5.849333pt;}
.ws79{word-spacing:5.904000pt;}
.wsd2{word-spacing:5.952000pt;}
.ws2d{word-spacing:5.958667pt;}
.ws55{word-spacing:6.013333pt;}
.ws87{word-spacing:6.068000pt;}
.ws67{word-spacing:6.122667pt;}
.ws6d{word-spacing:6.177333pt;}
.ws4f{word-spacing:6.232000pt;}
.ws68{word-spacing:6.286667pt;}
.ws5f{word-spacing:6.341333pt;}
.ws10{word-spacing:6.450667pt;}
.ws6c{word-spacing:6.505333pt;}
.wsc7{word-spacing:6.560000pt;}
.ws30{word-spacing:6.614667pt;}
.ws8c{word-spacing:6.669333pt;}
.wsba{word-spacing:6.724000pt;}
.ws8{word-spacing:6.778667pt;}
.ws3d{word-spacing:6.833333pt;}
.wsce{word-spacing:6.942667pt;}
.ws46{word-spacing:7.052000pt;}
.ws1d{word-spacing:7.106667pt;}
.wsd0{word-spacing:7.152000pt;}
.wscc{word-spacing:7.161333pt;}
.wsb0{word-spacing:7.216000pt;}
.ws88{word-spacing:7.434667pt;}
.ws77{word-spacing:7.544000pt;}
.ws25{word-spacing:8.036000pt;}
.wsc8{word-spacing:8.090667pt;}
.ws8d{word-spacing:8.200000pt;}
.wsac{word-spacing:8.418667pt;}
.ws78{word-spacing:8.582667pt;}
.ws8e{word-spacing:8.746667pt;}
.ws2e{word-spacing:8.801333pt;}
.ws75{word-spacing:8.856000pt;}
.wsdb{word-spacing:9.020000pt;}
.ws9b{word-spacing:9.184000pt;}
.wsab{word-spacing:9.238667pt;}
.ws66{word-spacing:9.293333pt;}
.ws5{word-spacing:9.348000pt;}
.wsa7{word-spacing:9.512000pt;}
.ws2{word-spacing:9.621333pt;}
.ws74{word-spacing:9.676000pt;}
.ws8f{word-spacing:10.004000pt;}
.wsbc{word-spacing:10.386667pt;}
.ws58{word-spacing:10.660000pt;}
.ws26{word-spacing:10.714667pt;}
.ws89{word-spacing:10.988000pt;}
.ws5a{word-spacing:11.097333pt;}
.ws4c{word-spacing:11.316000pt;}
.wsda{word-spacing:11.644000pt;}
.wsc2{word-spacing:11.698667pt;}
.wsa6{word-spacing:12.081333pt;}
.ws90{word-spacing:12.136000pt;}
.wscd{word-spacing:13.666667pt;}
.ws3{word-spacing:13.885333pt;}
.ws1f{word-spacing:16.400000pt;}
.wsdc{word-spacing:20.390667pt;}
.wsb3{word-spacing:523.338133pt;}
.wsc9{word-spacing:525.962933pt;}
.ws61{word-spacing:526.946667pt;}
.ws92{word-spacing:527.547467pt;}
.ws2b{word-spacing:529.570133pt;}
._5{margin-left:-14.256000pt;}
._c{margin-left:-7.225200pt;}
._8{margin-left:-4.225733pt;}
._4{margin-left:-3.329200pt;}
._3{margin-left:-2.438133pt;}
._1{margin-left:-1.064427pt;}
._2{width:1.115200pt;}
._7{width:2.122444pt;}
._a{width:3.564543pt;}
._b{width:4.503712pt;}
._9{width:11.772000pt;}
._0{width:1640.534827pt;}
._6{width:2080.187686pt;}
.fs1{font-size:42.577067pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:54.666667pt;}
.fs4{font-size:102.947733pt;}
.fs3{font-size:108.000000pt;}
.fs6{font-size:160.000000pt;}
.fs2{font-size:216.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.519733pt;}
.y24{bottom:96.519733pt;}
.y23{bottom:114.519733pt;}
.y22{bottom:132.519733pt;}
.y21{bottom:150.520000pt;}
.y20{bottom:168.520000pt;}
.y1f{bottom:186.520000pt;}
.y1e{bottom:204.520000pt;}
.y1d{bottom:222.520000pt;}
.y1c{bottom:240.520000pt;}
.y1b{bottom:258.520000pt;}
.y1a{bottom:276.520000pt;}
.y19{bottom:294.520000pt;}
.y18{bottom:312.520000pt;}
.y17{bottom:330.520000pt;}
.y16{bottom:348.520000pt;}
.y15{bottom:366.520000pt;}
.y1{bottom:384.520000pt;}
.y14{bottom:402.520000pt;}
.y26{bottom:420.520000pt;}
.y13{bottom:438.520000pt;}
.y12{bottom:456.520000pt;}
.y11{bottom:474.520000pt;}
.y10{bottom:492.520000pt;}
.yf{bottom:510.520000pt;}
.ye{bottom:528.520000pt;}
.yd{bottom:546.520000pt;}
.y4b{bottom:557.000000pt;}
.yc{bottom:564.520000pt;}
.yb{bottom:582.520000pt;}
.y4a{bottom:584.000000pt;}
.ya{bottom:600.520000pt;}
.y49{bottom:611.000000pt;}
.y9{bottom:618.520000pt;}
.y25{bottom:636.520000pt;}
.y48{bottom:638.000000pt;}
.y8{bottom:654.520000pt;}
.y47{bottom:665.000000pt;}
.y7{bottom:672.520000pt;}
.y6{bottom:690.520000pt;}
.y46{bottom:692.000000pt;}
.y4e{bottom:699.520000pt;}
.y5{bottom:708.520000pt;}
.y4{bottom:726.520000pt;}
.y3{bottom:744.520000pt;}
.y4d{bottom:753.520000pt;}
.y39{bottom:762.520000pt;}
.y38{bottom:780.520000pt;}
.y37{bottom:798.520000pt;}
.y4c{bottom:807.520000pt;}
.y36{bottom:816.520000pt;}
.y35{bottom:834.520000pt;}
.y2a{bottom:851.140000pt;}
.y34{bottom:852.520000pt;}
.y45{bottom:869.429333pt;}
.y33{bottom:870.520000pt;}
.y32{bottom:888.520000pt;}
.y29{bottom:894.824000pt;}
.y44{bottom:895.166667pt;}
.y3a{bottom:906.520000pt;}
.y43{bottom:920.904000pt;}
.y31{bottom:924.520000pt;}
.y3e{bottom:941.432000pt;}
.y30{bottom:942.520000pt;}
.y42{bottom:946.640000pt;}
.y28{bottom:948.824000pt;}
.y2f{bottom:960.520000pt;}
.y3d{bottom:968.432000pt;}
.y41{bottom:972.377333pt;}
.y2e{bottom:978.520000pt;}
.y3c{bottom:995.432000pt;}
.y2d{bottom:996.520000pt;}
.y40{bottom:998.114667pt;}
.y27{bottom:1002.824000pt;}
.y2c{bottom:1014.520000pt;}
.y3b{bottom:1022.432000pt;}
.y3f{bottom:1023.852000pt;}
.y2b{bottom:1032.520000pt;}
.h3{height:39.170901pt;}
.h5{height:42.804000pt;}
.h9{height:44.160000pt;}
.h8{height:49.746667pt;}
.h2{height:50.293333pt;}
.h7{height:91.623483pt;}
.h6{height:96.120000pt;}
.ha{height:104.533333pt;}
.h4{height:192.240000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-82.480000pt;}
.x0{left:0.000000pt;}
.x2{left:54.000000pt;}
.x5{left:79.520000pt;}
.x12{left:93.866133pt;}
.x7{left:108.000000pt;}
.x13{left:110.388933pt;}
.x14{left:121.945200pt;}
.x10{left:125.941867pt;}
.x11{left:127.453467pt;}
.x16{left:134.666667pt;}
.xc{left:144.328000pt;}
.x3{left:147.889333pt;}
.xb{left:153.237333pt;}
.xa{left:175.161333pt;}
.x15{left:217.522667pt;}
.xd{left:245.656000pt;}
.xe{left:359.197333pt;}
.x8{left:389.665333pt;}
.x17{left:416.333333pt;}
.xf{left:428.645333pt;}
.x4{left:429.554667pt;}
.x9{left:640.941333pt;}
.x1{left:711.221333pt;}
}




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