
    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_1105b2490d7b8087689b4fdc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128000;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_00d54b1c288e42e53ec0373f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_54b3f20ee8484be64a114bee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112000;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_d6af746547f86ff81fb2d6c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8edfb930f83cd772cecedc7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_8edfb930f83cd772cecedc7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aa76c2768456de440401b9bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8edfb930f83cd772cecedc7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247540,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247560,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247577,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247717,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248096,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248422,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248628,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248647,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.m9e{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);}
.m98{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m9d{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m135{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);}
.mdc{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);}
.m102{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250481,0.000000,0.000000,0.250000,0,0);}
.me3{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);}
.mde{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.mf8{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250894,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250937,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m6d{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251329,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251372,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m4a{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251563,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.ma4{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);}
.m100{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251837,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.mb2{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252117,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.979400px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.979000px;}
.ls24{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-1.140000px;}
.ls23{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls2a{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.210000px;}
.ls25{letter-spacing:-0.209880px;}
.ls4{letter-spacing:-0.192000px;}
.ls11{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.167904px;}
.ls39{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.139920px;}
.ls6{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.120000px;}
.ls2d{letter-spacing:-0.111936px;}
.ls1a{letter-spacing:-0.104940px;}
.ls17{letter-spacing:-0.096000px;}
.ls18{letter-spacing:-0.083952px;}
.ls2e{letter-spacing:-0.069960px;}
.ls8{letter-spacing:-0.060000px;}
.ls16{letter-spacing:-0.055968px;}
.ls38{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.034980px;}
.ls7{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.030000px;}
.ls28{letter-spacing:0.034980px;}
.ls32{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.055968px;}
.ls1{letter-spacing:0.060000px;}
.ls1c{letter-spacing:0.069960px;}
.lsa{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.096000px;}
.ls2c{letter-spacing:0.104940px;}
.ls37{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.135000px;}
.ls14{letter-spacing:0.139920px;}
.ls30{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.168808px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.210000px;}
.ls34{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.390000px;}
.ls2b{letter-spacing:0.420000px;}
.lse{letter-spacing:0.510000px;}
.ls31{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.600000px;}
.ls36{letter-spacing:1.788600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-14.400000px;}
.ws83{word-spacing:-12.240000px;}
.ws56{word-spacing:-12.120000px;}
.ws7b{word-spacing:-12.060000px;}
.ws41{word-spacing:-12.000000px;}
.ws34{word-spacing:-11.940000px;}
.ws82{word-spacing:-11.880000px;}
.ws2f{word-spacing:-11.820000px;}
.ws50{word-spacing:-11.760000px;}
.ws5f{word-spacing:-11.640000px;}
.ws5d{word-spacing:-11.400000px;}
.ws8a{word-spacing:-10.800000px;}
.ws5e{word-spacing:-10.740000px;}
.ws23{word-spacing:-9.600000px;}
.ws49{word-spacing:-9.456000px;}
.wsc{word-spacing:-7.345800px;}
.ws78{word-spacing:-7.065960px;}
.ws69{word-spacing:-7.030980px;}
.ws42{word-spacing:-6.996000px;}
.ws68{word-spacing:-6.961020px;}
.ws60{word-spacing:-6.786120px;}
.ws22{word-spacing:-5.652768px;}
.ws10{word-spacing:-5.596800px;}
.ws48{word-spacing:-5.540832px;}
.ws6d{word-spacing:-2.112000px;}
.ws89{word-spacing:-1.980000px;}
.ws55{word-spacing:-1.920000px;}
.ws37{word-spacing:-1.860000px;}
.ws9{word-spacing:-1.800000px;}
.ws24{word-spacing:-1.740000px;}
.ws52{word-spacing:-1.680000px;}
.ws1f{word-spacing:-1.620000px;}
.ws7d{word-spacing:-1.560000px;}
.ws3{word-spacing:-1.512000px;}
.ws59{word-spacing:-1.500000px;}
.ws4f{word-spacing:-1.488000px;}
.ws2{word-spacing:-1.440000px;}
.wsb{word-spacing:-1.380000px;}
.ws64{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.302000px;}
.ws87{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.260000px;}
.ws32{word-spacing:-1.200000px;}
.ws7a{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.ws85{word-spacing:-1.020000px;}
.ws93{word-spacing:-0.972000px;}
.ws81{word-spacing:-0.960000px;}
.ws28{word-spacing:-0.900000px;}
.ws20{word-spacing:-0.840000px;}
.ws2b{word-spacing:-0.780000px;}
.ws44{word-spacing:-0.720000px;}
.ws19{word-spacing:-0.660000px;}
.ws3e{word-spacing:-0.600000px;}
.ws5c{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.420000px;}
.ws90{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.360000px;}
.ws92{word-spacing:-0.324000px;}
.ws39{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.240000px;}
.ws91{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.180000px;}
.ws94{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.150000px;}
.ws71{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.139920px;}
.ws1b{word-spacing:-0.120000px;}
.ws74{word-spacing:-0.104940px;}
.ws2e{word-spacing:-0.096000px;}
.ws5b{word-spacing:-0.069960px;}
.ws1{word-spacing:-0.060000px;}
.ws8c{word-spacing:-0.054000px;}
.ws47{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws57{word-spacing:0.034980px;}
.ws8d{word-spacing:0.054000px;}
.wse{word-spacing:0.060000px;}
.ws79{word-spacing:0.069960px;}
.ws4d{word-spacing:0.083952px;}
.ws4c{word-spacing:0.096000px;}
.ws54{word-spacing:0.104940px;}
.ws76{word-spacing:0.111936px;}
.ws18{word-spacing:0.120000px;}
.ws62{word-spacing:0.139920px;}
.ws4e{word-spacing:0.144000px;}
.ws8f{word-spacing:0.162000px;}
.ws6c{word-spacing:0.167904px;}
.ws1e{word-spacing:0.180000px;}
.ws77{word-spacing:0.192000px;}
.ws25{word-spacing:0.240000px;}
.ws6e{word-spacing:0.288000px;}
.ws16{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.ws2a{word-spacing:0.420000px;}
.ws26{word-spacing:0.480000px;}
.ws95{word-spacing:0.486000px;}
.ws63{word-spacing:0.540000px;}
.ws6a{word-spacing:0.600000px;}
.ws17{word-spacing:0.660000px;}
.ws36{word-spacing:0.720000px;}
.ws2d{word-spacing:0.780000px;}
.ws61{word-spacing:0.840000px;}
.ws6f{word-spacing:0.900000px;}
.ws72{word-spacing:0.960000px;}
.ws8{word-spacing:1.020000px;}
.wsd{word-spacing:1.080000px;}
.ws38{word-spacing:1.140000px;}
.ws7e{word-spacing:1.200000px;}
.ws31{word-spacing:1.260000px;}
.ws80{word-spacing:1.320000px;}
.ws1d{word-spacing:1.380000px;}
.ws5a{word-spacing:1.440000px;}
.ws3d{word-spacing:1.500000px;}
.ws8e{word-spacing:1.512000px;}
.ws88{word-spacing:1.536000px;}
.ws75{word-spacing:1.560000px;}
.ws4b{word-spacing:1.620000px;}
.ws6b{word-spacing:1.680000px;}
.ws21{word-spacing:1.740000px;}
.ws1a{word-spacing:1.800000px;}
.ws14{word-spacing:1.860000px;}
.ws66{word-spacing:1.920000px;}
.ws5{word-spacing:1.974000px;}
.ws3b{word-spacing:1.980000px;}
.ws58{word-spacing:2.040000px;}
.ws33{word-spacing:2.100000px;}
.ws65{word-spacing:2.160000px;}
.ws73{word-spacing:2.220000px;}
.ws30{word-spacing:2.280000px;}
.wsa{word-spacing:2.340000px;}
.ws40{word-spacing:2.352000px;}
.ws7{word-spacing:2.400000px;}
.ws43{word-spacing:2.460000px;}
.ws84{word-spacing:2.520000px;}
.ws11{word-spacing:2.580000px;}
.ws1c{word-spacing:2.640000px;}
.ws27{word-spacing:2.700000px;}
.ws35{word-spacing:2.760000px;}
.ws4a{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.ws46{word-spacing:2.940000px;}
.ws7c{word-spacing:3.060000px;}
.ws86{word-spacing:3.720000px;}
.ws7f{word-spacing:3.840000px;}
.ws67{word-spacing:4.440000px;}
.ws2c{word-spacing:5.040000px;}
.ws8b{word-spacing:5.508000px;}
.ws3a{word-spacing:6.000000px;}
._8{margin-left:-9.572400px;}
._7{margin-left:-6.842413px;}
._4{margin-left:-5.764800px;}
._1{margin-left:-4.089600px;}
._0{margin-left:-2.361600px;}
._2{margin-left:-1.337400px;}
._5{width:1.266864px;}
._3{width:2.406000px;}
._6{width:3.671136px;}
._9{width:5.088864px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs5{font-size:36.729000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:50.226900px;}
.y18{bottom:54.502500px;}
.y5{bottom:86.740200px;}
.y3e{bottom:86.740350px;}
.y128{bottom:87.048750px;}
.yb5{bottom:90.736350px;}
.y4{bottom:99.490200px;}
.yaf{bottom:101.740350px;}
.y111{bottom:101.740500px;}
.y156{bottom:103.438800px;}
.y66{bottom:105.736200px;}
.y3d{bottom:105.736350px;}
.yb4{bottom:105.736500px;}
.y8b{bottom:106.998300px;}
.y127{bottom:107.298750px;}
.y3{bottom:112.240200px;}
.yc3{bottom:116.740350px;}
.y12a{bottom:116.740650px;}
.y155{bottom:120.137400px;}
.y12e{bottom:120.736500px;}
.yb3{bottom:120.736650px;}
.y2{bottom:124.990200px;}
.y8a{bottom:127.256400px;}
.y126{bottom:127.548750px;}
.yc2{bottom:131.740350px;}
.y12d{bottom:131.740650px;}
.yb2{bottom:131.740800px;}
.y129{bottom:135.736650px;}
.ye3{bottom:135.736800px;}
.y154{bottom:136.836000px;}
.y65{bottom:138.000000px;}
.y3c{bottom:138.000150px;}
.ydf{bottom:140.517150px;}
.y1{bottom:141.992100px;}
.yc1{bottom:146.740350px;}
.y10f{bottom:146.740800px;}
.y89{bottom:147.514500px;}
.yae{bottom:147.798750px;}
.y12c{bottom:150.736650px;}
.yb1{bottom:150.736800px;}
.ye2{bottom:150.736950px;}
.y107{bottom:153.048750px;}
.y153{bottom:153.534600px;}
.y3b{bottom:158.304150px;}
.y64{bottom:158.529900px;}
.yde{bottom:160.767150px;}
.yc0{bottom:161.740350px;}
.y10e{bottom:161.740950px;}
.ybf{bottom:165.736350px;}
.y88{bottom:167.772600px;}
.yad{bottom:168.048750px;}
.y152{bottom:170.233200px;}
.y106{bottom:173.148750px;}
.ybe{bottom:176.740500px;}
.y3a{bottom:178.608150px;}
.y63{bottom:179.059950px;}
.y10d{bottom:180.736950px;}
.ydd{bottom:181.017150px;}
.y151{bottom:186.931800px;}
.y87{bottom:188.030700px;}
.yac{bottom:188.298750px;}
.y105{bottom:193.248750px;}
.ybd{bottom:195.736500px;}
.y125{bottom:196.132950px;}
.y39{bottom:198.912150px;}
.y62{bottom:199.589850px;}
.ydc{bottom:201.267150px;}
.y150{bottom:203.630400px;}
.y86{bottom:208.288950px;}
.yab{bottom:208.548750px;}
.y104{bottom:213.348750px;}
.y124{bottom:216.382950px;}
.y38{bottom:219.216000px;}
.y61{bottom:220.119900px;}
.y14f{bottom:220.329000px;}
.ydb{bottom:221.517150px;}
.y85{bottom:228.547050px;}
.yaa{bottom:228.798750px;}
.y10c{bottom:232.040850px;}
.y103{bottom:233.448750px;}
.ybc{bottom:236.632950px;}
.y14e{bottom:237.027600px;}
.y37{bottom:239.520000px;}
.y60{bottom:240.649800px;}
.yda{bottom:241.767150px;}
.y84{bottom:248.805150px;}
.ya9{bottom:249.048750px;}
.y10b{bottom:252.290850px;}
.y102{bottom:253.548750px;}
.y14d{bottom:253.726200px;}
.ybb{bottom:256.882950px;}
.y36{bottom:259.824000px;}
.y5f{bottom:261.179700px;}
.yd9{bottom:262.017150px;}
.y83{bottom:269.063250px;}
.ya8{bottom:269.298750px;}
.y14c{bottom:270.424800px;}
.y10a{bottom:272.540850px;}
.y101{bottom:273.648750px;}
.yba{bottom:277.132950px;}
.y35{bottom:280.128000px;}
.y5e{bottom:281.709750px;}
.yd8{bottom:282.267150px;}
.y14b{bottom:287.123400px;}
.y82{bottom:289.321350px;}
.ya7{bottom:289.548750px;}
.y109{bottom:292.790850px;}
.y100{bottom:293.748750px;}
.yb9{bottom:297.382950px;}
.y34{bottom:300.432000px;}
.y5d{bottom:302.239650px;}
.yd7{bottom:302.517150px;}
.y14a{bottom:303.822000px;}
.y81{bottom:309.579450px;}
.ya6{bottom:309.798750px;}
.yff{bottom:313.848750px;}
.yb8{bottom:317.632950px;}
.y149{bottom:320.520600px;}
.y33{bottom:320.736000px;}
.yd6{bottom:322.767150px;}
.y5c{bottom:322.769700px;}
.y80{bottom:329.837550px;}
.ya5{bottom:330.048750px;}
.yfe{bottom:333.948750px;}
.y148{bottom:337.219200px;}
.y123{bottom:337.882950px;}
.y32{bottom:341.040000px;}
.yd5{bottom:343.017150px;}
.y5b{bottom:343.299600px;}
.yb7{bottom:346.386900px;}
.y7f{bottom:350.095650px;}
.ya4{bottom:350.298750px;}
.y147{bottom:353.917800px;}
.yfd{bottom:354.048750px;}
.y122{bottom:358.132950px;}
.y31{bottom:361.344000px;}
.yd4{bottom:363.267150px;}
.y5a{bottom:363.829650px;}
.y7e{bottom:370.353900px;}
.ya3{bottom:370.548750px;}
.y146{bottom:370.616400px;}
.yfc{bottom:374.148750px;}
.y121{bottom:378.382950px;}
.y30{bottom:381.647850px;}
.y59{bottom:384.359550px;}
.y145{bottom:387.315000px;}
.y7d{bottom:390.612000px;}
.ya2{bottom:390.798750px;}
.yfb{bottom:394.248750px;}
.y120{bottom:398.632950px;}
.yd2{bottom:400.525050px;}
.y2f{bottom:401.952000px;}
.y144{bottom:404.013600px;}
.y58{bottom:404.889450px;}
.yd3{bottom:405.520050px;}
.y7c{bottom:410.870100px;}
.ya1{bottom:411.048750px;}
.yfa{bottom:414.348750px;}
.y11f{bottom:418.882950px;}
.y143{bottom:420.712200px;}
.yd1{bottom:420.775050px;}
.y2e{bottom:422.255850px;}
.y57{bottom:425.419500px;}
.y7b{bottom:431.128200px;}
.ya0{bottom:431.298750px;}
.yf9{bottom:434.448750px;}
.yb6{bottom:436.293750px;}
.y142{bottom:437.410800px;}
.y11e{bottom:439.132950px;}
.yd0{bottom:441.025050px;}
.y2d{bottom:442.559850px;}
.y56{bottom:445.949400px;}
.y7a{bottom:451.386300px;}
.y9f{bottom:451.548750px;}
.y15{bottom:452.502300px;}
.y141{bottom:454.109550px;}
.yf8{bottom:454.548750px;}
.y108{bottom:456.543750px;}
.y11d{bottom:459.382950px;}
.ycf{bottom:461.275050px;}
.y2c{bottom:462.863850px;}
.y55{bottom:466.479450px;}
.y140{bottom:470.808000px;}
.y79{bottom:471.644400px;}
.y9e{bottom:471.798750px;}
.yf7{bottom:474.648750px;}
.y11c{bottom:479.632950px;}
.y2b{bottom:483.167850px;}
.y54{bottom:487.009350px;}
.y13f{bottom:487.506750px;}
.y78{bottom:491.902500px;}
.y9d{bottom:492.048750px;}
.yf6{bottom:494.748750px;}
.yb0{bottom:497.043750px;}
.y14{bottom:498.264150px;}
.yce{bottom:498.532950px;}
.y11b{bottom:499.882950px;}
.y2a{bottom:503.471850px;}
.y13e{bottom:504.205200px;}
.y53{bottom:507.539400px;}
.y77{bottom:512.160600px;}
.y9c{bottom:512.298750px;}
.yf5{bottom:514.848750px;}
.ye1{bottom:517.293750px;}
.y13{bottom:518.514150px;}
.ycd{bottom:518.782950px;}
.y11a{bottom:520.132950px;}
.y13d{bottom:520.903950px;}
.y29{bottom:523.775850px;}
.y52{bottom:528.069300px;}
.y76{bottom:532.418850px;}
.y9b{bottom:532.548750px;}
.yf4{bottom:534.948750px;}
.y12{bottom:538.764150px;}
.ycc{bottom:539.032950px;}
.y119{bottom:540.382950px;}
.y28{bottom:544.079700px;}
.y13c{bottom:546.106500px;}
.y51{bottom:548.599200px;}
.y75{bottom:552.676950px;}
.y9a{bottom:552.798750px;}
.yf3{bottom:555.048750px;}
.y11{bottom:559.014150px;}
.ycb{bottom:559.282950px;}
.y118{bottom:560.632950px;}
.y27{bottom:564.383850px;}
.y50{bottom:569.129250px;}
.y74{bottom:572.935050px;}
.y99{bottom:573.048750px;}
.yf2{bottom:575.148750px;}
.y110{bottom:578.043750px;}
.y10{bottom:579.264150px;}
.yca{bottom:579.532950px;}
.y117{bottom:580.882950px;}
.y26{bottom:584.687700px;}
.y4f{bottom:589.659150px;}
.y13b{bottom:590.716800px;}
.y73{bottom:593.193150px;}
.y98{bottom:593.298750px;}
.yf1{bottom:595.248750px;}
.yf{bottom:599.514150px;}
.yc9{bottom:599.782950px;}
.y116{bottom:601.132950px;}
.y25{bottom:604.991700px;}
.y4e{bottom:610.189200px;}
.y13a{bottom:611.165400px;}
.y72{bottom:613.451250px;}
.y97{bottom:613.548750px;}
.yf0{bottom:615.348750px;}
.ye{bottom:619.764150px;}
.y115{bottom:621.382950px;}
.y24{bottom:625.295700px;}
.y4d{bottom:630.719100px;}
.y139{bottom:631.614000px;}
.y71{bottom:633.709350px;}
.y96{bottom:633.798750px;}
.yef{bottom:635.448750px;}
.yc8{bottom:637.040850px;}
.yd{bottom:640.014150px;}
.y114{bottom:641.632950px;}
.y23{bottom:645.599700px;}
.y4c{bottom:651.249000px;}
.y138{bottom:652.062600px;}
.y70{bottom:653.967450px;}
.y95{bottom:654.048750px;}
.yee{bottom:655.548750px;}
.yc7{bottom:657.290850px;}
.yc{bottom:660.264150px;}
.y22{bottom:665.903700px;}
.y113{bottom:670.386900px;}
.y4b{bottom:671.779050px;}
.y137{bottom:672.511200px;}
.y6f{bottom:674.225700px;}
.y94{bottom:674.298750px;}
.yed{bottom:675.648750px;}
.yc6{bottom:677.540850px;}
.y21{bottom:686.207700px;}
.y4a{bottom:692.308950px;}
.y136{bottom:692.959800px;}
.y6e{bottom:694.483800px;}
.y93{bottom:694.548750px;}
.yec{bottom:695.748750px;}
.yc5{bottom:697.790850px;}
.y20{bottom:706.511700px;}
.y49{bottom:712.839000px;}
.y135{bottom:713.408550px;}
.y6d{bottom:714.741900px;}
.y92{bottom:714.798750px;}
.yeb{bottom:715.848750px;}
.yc4{bottom:718.040850px;}
.y15f{bottom:726.059100px;}
.y1f{bottom:726.815700px;}
.y48{bottom:733.368900px;}
.y134{bottom:733.857000px;}
.y6c{bottom:735.000000px;}
.y91{bottom:735.048750px;}
.yea{bottom:735.948750px;}
.y15e{bottom:742.559100px;}
.y1e{bottom:747.119550px;}
.yb{bottom:752.797650px;}
.y47{bottom:753.898800px;}
.y133{bottom:754.305750px;}
.y6b{bottom:755.258100px;}
.y90{bottom:755.298750px;}
.ye9{bottom:756.048750px;}
.y15d{bottom:759.059100px;}
.y1d{bottom:767.423550px;}
.ya{bottom:773.797650px;}
.y46{bottom:774.428850px;}
.y132{bottom:774.754350px;}
.y6a{bottom:775.516200px;}
.y8f{bottom:775.548750px;}
.y15c{bottom:775.559100px;}
.ye8{bottom:776.148750px;}
.y12b{bottom:780.543750px;}
.y1c{bottom:787.727550px;}
.y15b{bottom:792.059100px;}
.y45{bottom:794.958750px;}
.y131{bottom:795.202950px;}
.y69{bottom:795.774300px;}
.y8e{bottom:795.798750px;}
.ye7{bottom:796.248750px;}
.y9{bottom:807.553500px;}
.y1b{bottom:808.031550px;}
.y15a{bottom:808.559100px;}
.y44{bottom:815.488800px;}
.y130{bottom:815.651400px;}
.y68{bottom:816.032550px;}
.y8d{bottom:816.048750px;}
.ye5{bottom:816.348750px;}
.y112{bottom:821.043750px;}
.ye6{bottom:821.343750px;}
.y159{bottom:825.059100px;}
.y43{bottom:836.018700px;}
.y12f{bottom:836.100150px;}
.y67{bottom:836.290500px;}
.y8c{bottom:836.298750px;}
.ye4{bottom:836.448600px;}
.y1a{bottom:836.839500px;}
.y158{bottom:841.559100px;}
.y19{bottom:855.793500px;}
.y42{bottom:856.548750px;}
.y157{bottom:858.059100px;}
.ye0{bottom:861.543750px;}
.y8{bottom:880.653450px;}
.y7{bottom:880.653600px;}
.y6{bottom:893.253600px;}
.y17{bottom:898.288950px;}
.y40{bottom:898.290300px;}
.y16{bottom:898.309800px;}
.y3f{bottom:898.311150px;}
.h10{height:19.756704px;}
.he{height:23.472000px;}
.hd{height:24.240000px;}
.h11{height:29.313240px;}
.h4{height:29.652000px;}
.h9{height:33.888000px;}
.h3{height:35.196000px;}
.h15{height:38.124000px;}
.h12{height:39.456000px;}
.h2{height:40.224000px;}
.h8{height:42.360000px;}
.hc{height:42.540000px;}
.h16{height:44.388000px;}
.ha{height:44.478000px;}
.h14{height:45.252000px;}
.h13{height:49.293240px;}
.hf{height:49.320000px;}
.h5{height:50.280000px;}
.hb{height:52.794000px;}
.h7{height:59.184000px;}
.h6{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x1{left:170.078700px;}
.x6{left:180.605850px;}
.x14{left:183.530700px;}
.x5{left:191.338650px;}
.x15{left:253.474200px;}
.x16{left:261.991650px;}
.x17{left:301.005450px;}
.x18{left:309.337650px;}
.xd{left:318.278400px;}
.xe{left:326.635050px;}
.xf{left:329.503500px;}
.x19{left:335.951400px;}
.x3{left:337.987650px;}
.x1a{left:344.407950px;}
.x10{left:365.696400px;}
.x11{left:374.055450px;}
.x7{left:381.199500px;}
.x8{left:385.341000px;}
.x2{left:441.664650px;}
.x9{left:469.602300px;}
.xa{left:473.752050px;}
.x12{left:548.883300px;}
.x13{left:557.319450px;}
.xc{left:565.711200px;}
.xb{left:569.892450px;}
@media print{
.v3{vertical-align:-17.759467pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.648000pt;}
.ls24{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.186667pt;}
.ls25{letter-spacing:-0.186560pt;}
.ls4{letter-spacing:-0.170667pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.149248pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.124373pt;}
.ls6{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls2d{letter-spacing:-0.099499pt;}
.ls1a{letter-spacing:-0.093280pt;}
.ls17{letter-spacing:-0.085333pt;}
.ls18{letter-spacing:-0.074624pt;}
.ls2e{letter-spacing:-0.062187pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:-0.049749pt;}
.ls38{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.031093pt;}
.ls7{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026667pt;}
.ls28{letter-spacing:0.031093pt;}
.ls32{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.049749pt;}
.ls1{letter-spacing:0.053333pt;}
.ls1c{letter-spacing:0.062187pt;}
.lsa{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.085333pt;}
.ls2c{letter-spacing:0.093280pt;}
.ls37{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.120000pt;}
.ls14{letter-spacing:0.124373pt;}
.ls30{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.150051pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.186667pt;}
.ls34{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.346667pt;}
.ls2b{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.453333pt;}
.ls31{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls36{letter-spacing:1.589867pt;}
.ws0{word-spacing:-12.800000pt;}
.ws83{word-spacing:-10.880000pt;}
.ws56{word-spacing:-10.773333pt;}
.ws7b{word-spacing:-10.720000pt;}
.ws41{word-spacing:-10.666667pt;}
.ws34{word-spacing:-10.613333pt;}
.ws82{word-spacing:-10.560000pt;}
.ws2f{word-spacing:-10.506667pt;}
.ws50{word-spacing:-10.453333pt;}
.ws5f{word-spacing:-10.346667pt;}
.ws5d{word-spacing:-10.133333pt;}
.ws8a{word-spacing:-9.600000pt;}
.ws5e{word-spacing:-9.546667pt;}
.ws23{word-spacing:-8.533333pt;}
.ws49{word-spacing:-8.405333pt;}
.wsc{word-spacing:-6.529600pt;}
.ws78{word-spacing:-6.280853pt;}
.ws69{word-spacing:-6.249760pt;}
.ws42{word-spacing:-6.218667pt;}
.ws68{word-spacing:-6.187573pt;}
.ws60{word-spacing:-6.032107pt;}
.ws22{word-spacing:-5.024683pt;}
.ws10{word-spacing:-4.974933pt;}
.ws48{word-spacing:-4.925184pt;}
.ws6d{word-spacing:-1.877333pt;}
.ws89{word-spacing:-1.760000pt;}
.ws55{word-spacing:-1.706667pt;}
.ws37{word-spacing:-1.653333pt;}
.ws9{word-spacing:-1.600000pt;}
.ws24{word-spacing:-1.546667pt;}
.ws52{word-spacing:-1.493333pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws7d{word-spacing:-1.386667pt;}
.ws3{word-spacing:-1.344000pt;}
.ws59{word-spacing:-1.333333pt;}
.ws4f{word-spacing:-1.322667pt;}
.ws2{word-spacing:-1.280000pt;}
.wsb{word-spacing:-1.226667pt;}
.ws64{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.157333pt;}
.ws87{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.120000pt;}
.ws32{word-spacing:-1.066667pt;}
.ws7a{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws85{word-spacing:-0.906667pt;}
.ws93{word-spacing:-0.864000pt;}
.ws81{word-spacing:-0.853333pt;}
.ws28{word-spacing:-0.800000pt;}
.ws20{word-spacing:-0.746667pt;}
.ws2b{word-spacing:-0.693333pt;}
.ws44{word-spacing:-0.640000pt;}
.ws19{word-spacing:-0.586667pt;}
.ws3e{word-spacing:-0.533333pt;}
.ws5c{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.373333pt;}
.ws90{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.320000pt;}
.ws92{word-spacing:-0.288000pt;}
.ws39{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws91{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.160000pt;}
.ws94{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.133333pt;}
.ws71{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.124373pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws74{word-spacing:-0.093280pt;}
.ws2e{word-spacing:-0.085333pt;}
.ws5b{word-spacing:-0.062187pt;}
.ws1{word-spacing:-0.053333pt;}
.ws8c{word-spacing:-0.048000pt;}
.ws47{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws57{word-spacing:0.031093pt;}
.ws8d{word-spacing:0.048000pt;}
.wse{word-spacing:0.053333pt;}
.ws79{word-spacing:0.062187pt;}
.ws4d{word-spacing:0.074624pt;}
.ws4c{word-spacing:0.085333pt;}
.ws54{word-spacing:0.093280pt;}
.ws76{word-spacing:0.099499pt;}
.ws18{word-spacing:0.106667pt;}
.ws62{word-spacing:0.124373pt;}
.ws4e{word-spacing:0.128000pt;}
.ws8f{word-spacing:0.144000pt;}
.ws6c{word-spacing:0.149248pt;}
.ws1e{word-spacing:0.160000pt;}
.ws77{word-spacing:0.170667pt;}
.ws25{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.256000pt;}
.ws16{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.ws2a{word-spacing:0.373333pt;}
.ws26{word-spacing:0.426667pt;}
.ws95{word-spacing:0.432000pt;}
.ws63{word-spacing:0.480000pt;}
.ws6a{word-spacing:0.533333pt;}
.ws17{word-spacing:0.586667pt;}
.ws36{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.693333pt;}
.ws61{word-spacing:0.746667pt;}
.ws6f{word-spacing:0.800000pt;}
.ws72{word-spacing:0.853333pt;}
.ws8{word-spacing:0.906667pt;}
.wsd{word-spacing:0.960000pt;}
.ws38{word-spacing:1.013333pt;}
.ws7e{word-spacing:1.066667pt;}
.ws31{word-spacing:1.120000pt;}
.ws80{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.226667pt;}
.ws5a{word-spacing:1.280000pt;}
.ws3d{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.344000pt;}
.ws88{word-spacing:1.365333pt;}
.ws75{word-spacing:1.386667pt;}
.ws4b{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.493333pt;}
.ws21{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws14{word-spacing:1.653333pt;}
.ws66{word-spacing:1.706667pt;}
.ws5{word-spacing:1.754667pt;}
.ws3b{word-spacing:1.760000pt;}
.ws58{word-spacing:1.813333pt;}
.ws33{word-spacing:1.866667pt;}
.ws65{word-spacing:1.920000pt;}
.ws73{word-spacing:1.973333pt;}
.ws30{word-spacing:2.026667pt;}
.wsa{word-spacing:2.080000pt;}
.ws40{word-spacing:2.090667pt;}
.ws7{word-spacing:2.133333pt;}
.ws43{word-spacing:2.186667pt;}
.ws84{word-spacing:2.240000pt;}
.ws11{word-spacing:2.293333pt;}
.ws1c{word-spacing:2.346667pt;}
.ws27{word-spacing:2.400000pt;}
.ws35{word-spacing:2.453333pt;}
.ws4a{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.ws46{word-spacing:2.613333pt;}
.ws7c{word-spacing:2.720000pt;}
.ws86{word-spacing:3.306667pt;}
.ws7f{word-spacing:3.413333pt;}
.ws67{word-spacing:3.946667pt;}
.ws2c{word-spacing:4.480000pt;}
.ws8b{word-spacing:4.896000pt;}
.ws3a{word-spacing:5.333333pt;}
._8{margin-left:-8.508800pt;}
._7{margin-left:-6.082145pt;}
._4{margin-left:-5.124267pt;}
._1{margin-left:-3.635200pt;}
._0{margin-left:-2.099200pt;}
._2{margin-left:-1.188800pt;}
._5{width:1.126101pt;}
._3{width:2.138667pt;}
._6{width:3.263232pt;}
._9{width:4.523434pt;}
.fs6{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:32.648000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:44.646133pt;}
.y18{bottom:48.446667pt;}
.y5{bottom:77.102400pt;}
.y3e{bottom:77.102533pt;}
.y128{bottom:77.376667pt;}
.yb5{bottom:80.654533pt;}
.y4{bottom:88.435733pt;}
.yaf{bottom:90.435867pt;}
.y111{bottom:90.436000pt;}
.y156{bottom:91.945600pt;}
.y66{bottom:93.987733pt;}
.y3d{bottom:93.987867pt;}
.yb4{bottom:93.988000pt;}
.y8b{bottom:95.109600pt;}
.y127{bottom:95.376667pt;}
.y3{bottom:99.769067pt;}
.yc3{bottom:103.769200pt;}
.y12a{bottom:103.769467pt;}
.y155{bottom:106.788800pt;}
.y12e{bottom:107.321333pt;}
.yb3{bottom:107.321467pt;}
.y2{bottom:111.102400pt;}
.y8a{bottom:113.116800pt;}
.y126{bottom:113.376667pt;}
.yc2{bottom:117.102533pt;}
.y12d{bottom:117.102800pt;}
.yb2{bottom:117.102933pt;}
.y129{bottom:120.654800pt;}
.ye3{bottom:120.654933pt;}
.y154{bottom:121.632000pt;}
.y65{bottom:122.666667pt;}
.y3c{bottom:122.666800pt;}
.ydf{bottom:124.904133pt;}
.y1{bottom:126.215200pt;}
.yc1{bottom:130.435867pt;}
.y10f{bottom:130.436267pt;}
.y89{bottom:131.124000pt;}
.yae{bottom:131.376667pt;}
.y12c{bottom:133.988133pt;}
.yb1{bottom:133.988267pt;}
.ye2{bottom:133.988400pt;}
.y107{bottom:136.043333pt;}
.y153{bottom:136.475200pt;}
.y3b{bottom:140.714800pt;}
.y64{bottom:140.915467pt;}
.yde{bottom:142.904133pt;}
.yc0{bottom:143.769200pt;}
.y10e{bottom:143.769733pt;}
.ybf{bottom:147.321200pt;}
.y88{bottom:149.131200pt;}
.yad{bottom:149.376667pt;}
.y152{bottom:151.318400pt;}
.y106{bottom:153.910000pt;}
.ybe{bottom:157.102667pt;}
.y3a{bottom:158.762800pt;}
.y63{bottom:159.164400pt;}
.y10d{bottom:160.655067pt;}
.ydd{bottom:160.904133pt;}
.y151{bottom:166.161600pt;}
.y87{bottom:167.138400pt;}
.yac{bottom:167.376667pt;}
.y105{bottom:171.776667pt;}
.ybd{bottom:173.988000pt;}
.y125{bottom:174.340400pt;}
.y39{bottom:176.810800pt;}
.y62{bottom:177.413200pt;}
.ydc{bottom:178.904133pt;}
.y150{bottom:181.004800pt;}
.y86{bottom:185.145733pt;}
.yab{bottom:185.376667pt;}
.y104{bottom:189.643333pt;}
.y124{bottom:192.340400pt;}
.y38{bottom:194.858667pt;}
.y61{bottom:195.662133pt;}
.y14f{bottom:195.848000pt;}
.ydb{bottom:196.904133pt;}
.y85{bottom:203.152933pt;}
.yaa{bottom:203.376667pt;}
.y10c{bottom:206.258533pt;}
.y103{bottom:207.510000pt;}
.ybc{bottom:210.340400pt;}
.y14e{bottom:210.691200pt;}
.y37{bottom:212.906667pt;}
.y60{bottom:213.910933pt;}
.yda{bottom:214.904133pt;}
.y84{bottom:221.160133pt;}
.ya9{bottom:221.376667pt;}
.y10b{bottom:224.258533pt;}
.y102{bottom:225.376667pt;}
.y14d{bottom:225.534400pt;}
.ybb{bottom:228.340400pt;}
.y36{bottom:230.954667pt;}
.y5f{bottom:232.159733pt;}
.yd9{bottom:232.904133pt;}
.y83{bottom:239.167333pt;}
.ya8{bottom:239.376667pt;}
.y14c{bottom:240.377600pt;}
.y10a{bottom:242.258533pt;}
.y101{bottom:243.243333pt;}
.yba{bottom:246.340400pt;}
.y35{bottom:249.002667pt;}
.y5e{bottom:250.408667pt;}
.yd8{bottom:250.904133pt;}
.y14b{bottom:255.220800pt;}
.y82{bottom:257.174533pt;}
.ya7{bottom:257.376667pt;}
.y109{bottom:260.258533pt;}
.y100{bottom:261.110000pt;}
.yb9{bottom:264.340400pt;}
.y34{bottom:267.050667pt;}
.y5d{bottom:268.657467pt;}
.yd7{bottom:268.904133pt;}
.y14a{bottom:270.064000pt;}
.y81{bottom:275.181733pt;}
.ya6{bottom:275.376667pt;}
.yff{bottom:278.976667pt;}
.yb8{bottom:282.340400pt;}
.y149{bottom:284.907200pt;}
.y33{bottom:285.098667pt;}
.yd6{bottom:286.904133pt;}
.y5c{bottom:286.906400pt;}
.y80{bottom:293.188933pt;}
.ya5{bottom:293.376667pt;}
.yfe{bottom:296.843333pt;}
.y148{bottom:299.750400pt;}
.y123{bottom:300.340400pt;}
.y32{bottom:303.146667pt;}
.yd5{bottom:304.904133pt;}
.y5b{bottom:305.155200pt;}
.yb7{bottom:307.899467pt;}
.y7f{bottom:311.196133pt;}
.ya4{bottom:311.376667pt;}
.y147{bottom:314.593600pt;}
.yfd{bottom:314.710000pt;}
.y122{bottom:318.340400pt;}
.y31{bottom:321.194667pt;}
.yd4{bottom:322.904133pt;}
.y5a{bottom:323.404133pt;}
.y7e{bottom:329.203467pt;}
.ya3{bottom:329.376667pt;}
.y146{bottom:329.436800pt;}
.yfc{bottom:332.576667pt;}
.y121{bottom:336.340400pt;}
.y30{bottom:339.242533pt;}
.y59{bottom:341.652933pt;}
.y145{bottom:344.280000pt;}
.y7d{bottom:347.210667pt;}
.ya2{bottom:347.376667pt;}
.yfb{bottom:350.443333pt;}
.y120{bottom:354.340400pt;}
.yd2{bottom:356.022267pt;}
.y2f{bottom:357.290667pt;}
.y144{bottom:359.123200pt;}
.y58{bottom:359.901733pt;}
.yd3{bottom:360.462267pt;}
.y7c{bottom:365.217867pt;}
.ya1{bottom:365.376667pt;}
.yfa{bottom:368.310000pt;}
.y11f{bottom:372.340400pt;}
.y143{bottom:373.966400pt;}
.yd1{bottom:374.022267pt;}
.y2e{bottom:375.338533pt;}
.y57{bottom:378.150667pt;}
.y7b{bottom:383.225067pt;}
.ya0{bottom:383.376667pt;}
.yf9{bottom:386.176667pt;}
.yb6{bottom:387.816667pt;}
.y142{bottom:388.809600pt;}
.y11e{bottom:390.340400pt;}
.yd0{bottom:392.022267pt;}
.y2d{bottom:393.386533pt;}
.y56{bottom:396.399467pt;}
.y7a{bottom:401.232267pt;}
.y9f{bottom:401.376667pt;}
.y15{bottom:402.224267pt;}
.y141{bottom:403.652933pt;}
.yf8{bottom:404.043333pt;}
.y108{bottom:405.816667pt;}
.y11d{bottom:408.340400pt;}
.ycf{bottom:410.022267pt;}
.y2c{bottom:411.434533pt;}
.y55{bottom:414.648400pt;}
.y140{bottom:418.496000pt;}
.y79{bottom:419.239467pt;}
.y9e{bottom:419.376667pt;}
.yf7{bottom:421.910000pt;}
.y11c{bottom:426.340400pt;}
.y2b{bottom:429.482533pt;}
.y54{bottom:432.897200pt;}
.y13f{bottom:433.339333pt;}
.y78{bottom:437.246667pt;}
.y9d{bottom:437.376667pt;}
.yf6{bottom:439.776667pt;}
.yb0{bottom:441.816667pt;}
.y14{bottom:442.901467pt;}
.yce{bottom:443.140400pt;}
.y11b{bottom:444.340400pt;}
.y2a{bottom:447.530533pt;}
.y13e{bottom:448.182400pt;}
.y53{bottom:451.146133pt;}
.y77{bottom:455.253867pt;}
.y9c{bottom:455.376667pt;}
.yf5{bottom:457.643333pt;}
.ye1{bottom:459.816667pt;}
.y13{bottom:460.901467pt;}
.ycd{bottom:461.140400pt;}
.y11a{bottom:462.340400pt;}
.y13d{bottom:463.025733pt;}
.y29{bottom:465.578533pt;}
.y52{bottom:469.394933pt;}
.y76{bottom:473.261200pt;}
.y9b{bottom:473.376667pt;}
.yf4{bottom:475.510000pt;}
.y12{bottom:478.901467pt;}
.ycc{bottom:479.140400pt;}
.y119{bottom:480.340400pt;}
.y28{bottom:483.626400pt;}
.y13c{bottom:485.428000pt;}
.y51{bottom:487.643733pt;}
.y75{bottom:491.268400pt;}
.y9a{bottom:491.376667pt;}
.yf3{bottom:493.376667pt;}
.y11{bottom:496.901467pt;}
.ycb{bottom:497.140400pt;}
.y118{bottom:498.340400pt;}
.y27{bottom:501.674533pt;}
.y50{bottom:505.892667pt;}
.y74{bottom:509.275600pt;}
.y99{bottom:509.376667pt;}
.yf2{bottom:511.243333pt;}
.y110{bottom:513.816667pt;}
.y10{bottom:514.901467pt;}
.yca{bottom:515.140400pt;}
.y117{bottom:516.340400pt;}
.y26{bottom:519.722400pt;}
.y4f{bottom:524.141467pt;}
.y13b{bottom:525.081600pt;}
.y73{bottom:527.282800pt;}
.y98{bottom:527.376667pt;}
.yf1{bottom:529.110000pt;}
.yf{bottom:532.901467pt;}
.yc9{bottom:533.140400pt;}
.y116{bottom:534.340400pt;}
.y25{bottom:537.770400pt;}
.y4e{bottom:542.390400pt;}
.y13a{bottom:543.258133pt;}
.y72{bottom:545.290000pt;}
.y97{bottom:545.376667pt;}
.yf0{bottom:546.976667pt;}
.ye{bottom:550.901467pt;}
.y115{bottom:552.340400pt;}
.y24{bottom:555.818400pt;}
.y4d{bottom:560.639200pt;}
.y139{bottom:561.434667pt;}
.y71{bottom:563.297200pt;}
.y96{bottom:563.376667pt;}
.yef{bottom:564.843333pt;}
.yc8{bottom:566.258533pt;}
.yd{bottom:568.901467pt;}
.y114{bottom:570.340400pt;}
.y23{bottom:573.866400pt;}
.y4c{bottom:578.888000pt;}
.y138{bottom:579.611200pt;}
.y70{bottom:581.304400pt;}
.y95{bottom:581.376667pt;}
.yee{bottom:582.710000pt;}
.yc7{bottom:584.258533pt;}
.yc{bottom:586.901467pt;}
.y22{bottom:591.914400pt;}
.y113{bottom:595.899467pt;}
.y4b{bottom:597.136933pt;}
.y137{bottom:597.787733pt;}
.y6f{bottom:599.311733pt;}
.y94{bottom:599.376667pt;}
.yed{bottom:600.576667pt;}
.yc6{bottom:602.258533pt;}
.y21{bottom:609.962400pt;}
.y4a{bottom:615.385733pt;}
.y136{bottom:615.964267pt;}
.y6e{bottom:617.318933pt;}
.y93{bottom:617.376667pt;}
.yec{bottom:618.443333pt;}
.yc5{bottom:620.258533pt;}
.y20{bottom:628.010400pt;}
.y49{bottom:633.634667pt;}
.y135{bottom:634.140933pt;}
.y6d{bottom:635.326133pt;}
.y92{bottom:635.376667pt;}
.yeb{bottom:636.310000pt;}
.yc4{bottom:638.258533pt;}
.y15f{bottom:645.385867pt;}
.y1f{bottom:646.058400pt;}
.y48{bottom:651.883467pt;}
.y134{bottom:652.317333pt;}
.y6c{bottom:653.333333pt;}
.y91{bottom:653.376667pt;}
.yea{bottom:654.176667pt;}
.y15e{bottom:660.052533pt;}
.y1e{bottom:664.106267pt;}
.yb{bottom:669.153467pt;}
.y47{bottom:670.132267pt;}
.y133{bottom:670.494000pt;}
.y6b{bottom:671.340533pt;}
.y90{bottom:671.376667pt;}
.ye9{bottom:672.043333pt;}
.y15d{bottom:674.719200pt;}
.y1d{bottom:682.154267pt;}
.ya{bottom:687.820133pt;}
.y46{bottom:688.381200pt;}
.y132{bottom:688.670533pt;}
.y6a{bottom:689.347733pt;}
.y8f{bottom:689.376667pt;}
.y15c{bottom:689.385867pt;}
.ye8{bottom:689.910000pt;}
.y12b{bottom:693.816667pt;}
.y1c{bottom:700.202267pt;}
.y15b{bottom:704.052533pt;}
.y45{bottom:706.630000pt;}
.y131{bottom:706.847067pt;}
.y69{bottom:707.354933pt;}
.y8e{bottom:707.376667pt;}
.ye7{bottom:707.776667pt;}
.y9{bottom:717.825333pt;}
.y1b{bottom:718.250267pt;}
.y15a{bottom:718.719200pt;}
.y44{bottom:724.878933pt;}
.y130{bottom:725.023467pt;}
.y68{bottom:725.362267pt;}
.y8d{bottom:725.376667pt;}
.ye5{bottom:725.643333pt;}
.y112{bottom:729.816667pt;}
.ye6{bottom:730.083333pt;}
.y159{bottom:733.385867pt;}
.y43{bottom:743.127733pt;}
.y12f{bottom:743.200133pt;}
.y67{bottom:743.369333pt;}
.y8c{bottom:743.376667pt;}
.ye4{bottom:743.509867pt;}
.y1a{bottom:743.857333pt;}
.y158{bottom:748.052533pt;}
.y19{bottom:760.705333pt;}
.y42{bottom:761.376667pt;}
.y157{bottom:762.719200pt;}
.ye0{bottom:765.816667pt;}
.y8{bottom:782.803067pt;}
.y7{bottom:782.803200pt;}
.y6{bottom:794.003200pt;}
.y17{bottom:798.479067pt;}
.y40{bottom:798.480267pt;}
.y16{bottom:798.497600pt;}
.y3f{bottom:798.498800pt;}
.h10{height:17.561515pt;}
.he{height:20.864000pt;}
.hd{height:21.546667pt;}
.h11{height:26.056213pt;}
.h4{height:26.357333pt;}
.h9{height:30.122667pt;}
.h3{height:31.285333pt;}
.h15{height:33.888000pt;}
.h12{height:35.072000pt;}
.h2{height:35.754667pt;}
.h8{height:37.653333pt;}
.hc{height:37.813333pt;}
.h16{height:39.456000pt;}
.ha{height:39.536000pt;}
.h14{height:40.224000pt;}
.h13{height:43.816213pt;}
.hf{height:43.840000pt;}
.h5{height:44.693333pt;}
.hb{height:46.928000pt;}
.h7{height:52.608000pt;}
.h6{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x1{left:151.181067pt;}
.x6{left:160.538533pt;}
.x14{left:163.138400pt;}
.x5{left:170.078800pt;}
.x15{left:225.310400pt;}
.x16{left:232.881467pt;}
.x17{left:267.560400pt;}
.x18{left:274.966800pt;}
.xd{left:282.914133pt;}
.xe{left:290.342267pt;}
.xf{left:292.892000pt;}
.x19{left:298.623467pt;}
.x3{left:300.433467pt;}
.x1a{left:306.140400pt;}
.x10{left:325.063467pt;}
.x11{left:332.493733pt;}
.x7{left:338.844000pt;}
.x8{left:342.525333pt;}
.x2{left:392.590800pt;}
.x9{left:417.424267pt;}
.xa{left:421.112933pt;}
.x12{left:487.896267pt;}
.x13{left:495.395067pt;}
.xc{left:502.854400pt;}
.xb{left:506.571067pt;}
}




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